11de50e9fSSam Leffler /* 21de50e9fSSam Leffler * Redistribution and use in source and binary forms, with or without 31de50e9fSSam Leffler * modification, are permitted provided that: (1) source code 41de50e9fSSam Leffler * distributions retain the above copyright notice and this paragraph 51de50e9fSSam Leffler * in its entirety, and (2) distributions including binary code include 61de50e9fSSam Leffler * the above copyright notice and this paragraph in its entirety in 71de50e9fSSam Leffler * the documentation or other materials provided with the distribution. 81de50e9fSSam Leffler * THIS SOFTWARE IS PROVIDED ``AS IS'' AND 91de50e9fSSam Leffler * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT 101de50e9fSSam Leffler * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 111de50e9fSSam Leffler * FOR A PARTICULAR PURPOSE. 121de50e9fSSam Leffler * 130bff6a5aSEd Maste * Original code by Hannes Gredler (hannes@gredler.at) 141de50e9fSSam Leffler */ 151de50e9fSSam Leffler 16*ee67461eSJoseph Mingrone #include <config.h> 171de50e9fSSam Leffler 18*ee67461eSJoseph Mingrone #include "netdissect-stdinc.h" 193340d773SGleb Smirnoff #include "netdissect.h" 201de50e9fSSam Leffler #include "l2vpn.h" 211de50e9fSSam Leffler 223340d773SGleb Smirnoff /* 233340d773SGleb Smirnoff * BGP Layer 2 Encapsulation Types 243340d773SGleb Smirnoff * 253340d773SGleb Smirnoff * RFC 6624 263340d773SGleb Smirnoff * 27*ee67461eSJoseph Mingrone * https://www.iana.org/assignments/bgp-parameters/bgp-parameters.xhtml#bgp-l2-encapsulation-types-registry 283340d773SGleb Smirnoff */ 2927df3f5dSRui Paulo const struct tok l2vpn_encaps_values[] = { 303340d773SGleb Smirnoff { 0, "Reserved"}, 313340d773SGleb Smirnoff { 1, "Frame Relay"}, 323340d773SGleb Smirnoff { 2, "ATM AAL5 SDU VCC transport"}, 333340d773SGleb Smirnoff { 3, "ATM transparent cell transport"}, 343340d773SGleb Smirnoff { 4, "Ethernet (VLAN) Tagged Mode"}, 353340d773SGleb Smirnoff { 5, "Ethernet Raw Mode"}, 363340d773SGleb Smirnoff { 6, "Cisco HDLC"}, 373340d773SGleb Smirnoff { 7, "PPP"}, 383340d773SGleb Smirnoff { 8, "SONET/SDH Circuit Emulation Service over MPLS"}, 393340d773SGleb Smirnoff { 9, "ATM n-to-one VCC cell transport"}, 403340d773SGleb Smirnoff { 10, "ATM n-to-one VPC cell transport"}, 413340d773SGleb Smirnoff { 11, "IP layer 2 transport"}, 423340d773SGleb Smirnoff { 15, "Frame Relay Port mode"}, 433340d773SGleb Smirnoff { 17, "Structure-agnostic E1 over packet"}, 443340d773SGleb Smirnoff { 18, "Structure-agnostic T1 (DS1) over packet"}, 453340d773SGleb Smirnoff { 19, "VPLS"}, 463340d773SGleb Smirnoff { 20, "Structure-agnostic T3 (DS3) over packet"}, 473340d773SGleb Smirnoff { 21, "Nx64kbit/s Basic Service using Structure-aware"}, 483340d773SGleb Smirnoff { 25, "Frame Relay DLCI"}, 493340d773SGleb Smirnoff { 40, "Structure-agnostic E3 over packet"}, 503340d773SGleb Smirnoff { 41, "Octet-aligned playload for Structure-agnostic DS1 circuits"}, 513340d773SGleb Smirnoff { 42, "E1 Nx64kbit/s with CAS using Structure-aware"}, 523340d773SGleb Smirnoff { 43, "DS1 (ESF) Nx64kbit/s with CAS using Structure-aware"}, 533340d773SGleb Smirnoff { 44, "DS1 (SF) Nx64kbit/s with CAS using Structure-aware"}, 543340d773SGleb Smirnoff { 0, NULL} 553340d773SGleb Smirnoff }; 563340d773SGleb Smirnoff 573340d773SGleb Smirnoff /* 583340d773SGleb Smirnoff * MPLS Pseudowire Types 593340d773SGleb Smirnoff * 603340d773SGleb Smirnoff * RFC 4446 613340d773SGleb Smirnoff * 62*ee67461eSJoseph Mingrone * https://www.iana.org/assignments/pwe3-parameters/pwe3-parameters.xhtml#pwe3-parameters-2 633340d773SGleb Smirnoff */ 643340d773SGleb Smirnoff const struct tok mpls_pw_types_values[] = { 653340d773SGleb Smirnoff { 0x0000, "Reserved"}, 663340d773SGleb Smirnoff { 0x0001, "Frame Relay DLCI (Martini Mode)"}, 673340d773SGleb Smirnoff { 0x0002, "ATM AAL5 SDU VCC transport"}, 683340d773SGleb Smirnoff { 0x0003, "ATM transparent cell transport"}, 693340d773SGleb Smirnoff { 0x0004, "Ethernet VLAN"}, 703340d773SGleb Smirnoff { 0x0005, "Ethernet"}, 713340d773SGleb Smirnoff { 0x0006, "Cisco-HDLC"}, 723340d773SGleb Smirnoff { 0x0007, "PPP"}, 733340d773SGleb Smirnoff { 0x0008, "SONET/SDH Circuit Emulation Service over MPLS"}, 743340d773SGleb Smirnoff { 0x0009, "ATM n-to-one VCC cell transport"}, 753340d773SGleb Smirnoff { 0x000a, "ATM n-to-one VPC cell transport"}, 763340d773SGleb Smirnoff { 0x000b, "IP Layer2 Transport"}, 773340d773SGleb Smirnoff { 0x000c, "ATM one-to-one VCC Cell Mode"}, 783340d773SGleb Smirnoff { 0x000d, "ATM one-to-one VPC Cell Mode"}, 793340d773SGleb Smirnoff { 0x000e, "ATM AAL5 PDU VCC transport"}, 803340d773SGleb Smirnoff { 0x000f, "Frame-Relay Port mode"}, 813340d773SGleb Smirnoff { 0x0010, "SONET/SDH Circuit Emulation over Packet"}, 823340d773SGleb Smirnoff { 0x0011, "Structure-agnostic E1 over Packet"}, 833340d773SGleb Smirnoff { 0x0012, "Structure-agnostic T1 (DS1) over Packet"}, 843340d773SGleb Smirnoff { 0x0013, "Structure-agnostic E3 over Packet"}, 853340d773SGleb Smirnoff { 0x0014, "Structure-agnostic T3 (DS3) over Packet"}, 863340d773SGleb Smirnoff { 0x0015, "CESoPSN basic mode"}, 873340d773SGleb Smirnoff { 0x0016, "TDMoIP basic mode"}, 883340d773SGleb Smirnoff { 0x0017, "CESoPSN TDM with CAS"}, 893340d773SGleb Smirnoff { 0x0018, "TDMoIP TDM with CAS"}, 903340d773SGleb Smirnoff { 0x0019, "Frame Relay DLCI"}, 913340d773SGleb Smirnoff { 0x0040, "IP-interworking"}, 921de50e9fSSam Leffler { 0, NULL} 931de50e9fSSam Leffler }; 94