14edb46e9SPaul Traina /* 24644f044SBill Fenner * Copyright (c) 1993, 1994, 1997 34edb46e9SPaul Traina * The Regents of the University of California. All rights reserved. 44edb46e9SPaul Traina * 54edb46e9SPaul Traina * Redistribution and use in source and binary forms, with or without 64edb46e9SPaul Traina * modification, are permitted provided that: (1) source code distributions 74edb46e9SPaul Traina * retain the above copyright notice and this paragraph in its entirety, (2) 84edb46e9SPaul Traina * distributions including binary code include the above copyright notice and 94edb46e9SPaul Traina * this paragraph in its entirety in the documentation or other materials 104edb46e9SPaul Traina * provided with the distribution, and (3) all advertising materials mentioning 114edb46e9SPaul Traina * features or use of this software display the following acknowledgement: 124edb46e9SPaul Traina * ``This product includes software developed by the University of California, 134edb46e9SPaul Traina * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of 144edb46e9SPaul Traina * the University nor the names of its contributors may be used to endorse 154edb46e9SPaul Traina * or promote products derived from this software without specific prior 164edb46e9SPaul Traina * written permission. 174edb46e9SPaul Traina * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED 184edb46e9SPaul Traina * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF 194edb46e9SPaul Traina * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 204edb46e9SPaul Traina */ 214edb46e9SPaul Traina 224edb46e9SPaul Traina /* 23f4d0c64aSSam Leffler * Definitions for information in the LLC header. 244edb46e9SPaul Traina */ 254edb46e9SPaul Traina 264edb46e9SPaul Traina #define LLC_U_FMT 3 274edb46e9SPaul Traina #define LLC_GSAP 1 282ebc47dbSSam Leffler #define LLC_IG 1 /* Individual / Group */ 294edb46e9SPaul Traina #define LLC_S_FMT 1 304edb46e9SPaul Traina 314edb46e9SPaul Traina #define LLC_U_POLL 0x10 32685295f4SBill Fenner #define LLC_IS_POLL 0x0100 334edb46e9SPaul Traina #define LLC_XID_FI 0x81 344edb46e9SPaul Traina 354edb46e9SPaul Traina #define LLC_U_CMD(u) ((u) & 0xef) 364edb46e9SPaul Traina #define LLC_UI 0x03 374edb46e9SPaul Traina #define LLC_UA 0x63 384edb46e9SPaul Traina #define LLC_DISC 0x43 394edb46e9SPaul Traina #define LLC_DM 0x0f 404edb46e9SPaul Traina #define LLC_SABME 0x6f 414edb46e9SPaul Traina #define LLC_TEST 0xe3 424edb46e9SPaul Traina #define LLC_XID 0xaf 434edb46e9SPaul Traina #define LLC_FRMR 0x87 444edb46e9SPaul Traina 45b5bfcb5dSMax Laier #define LLC_S_CMD(is) (((is) >> 2) & 0x03) 46685295f4SBill Fenner #define LLC_RR 0x0001 47685295f4SBill Fenner #define LLC_RNR 0x0005 48685295f4SBill Fenner #define LLC_REJ 0x0009 494edb46e9SPaul Traina 50685295f4SBill Fenner #define LLC_IS_NR(is) (((is) >> 9) & 0x7f) 51685295f4SBill Fenner #define LLC_I_NS(is) (((is) >> 1) & 0x7f) 524edb46e9SPaul Traina 534edb46e9SPaul Traina #ifndef LLCSAP_NULL 544edb46e9SPaul Traina #define LLCSAP_NULL 0x00 554edb46e9SPaul Traina #endif 564edb46e9SPaul Traina #ifndef LLCSAP_GLOBAL 574edb46e9SPaul Traina #define LLCSAP_GLOBAL 0xff 584edb46e9SPaul Traina #endif 59a90e161bSBill Fenner #ifndef LLCSAP_8021B_I 604edb46e9SPaul Traina #define LLCSAP_8021B_I 0x02 614edb46e9SPaul Traina #endif 62a90e161bSBill Fenner #ifndef LLCSAP_8021B_G 634edb46e9SPaul Traina #define LLCSAP_8021B_G 0x03 644edb46e9SPaul Traina #endif 652ebc47dbSSam Leffler #ifndef LLCSAP_SNA 662ebc47dbSSam Leffler #define LLCSAP_SNA 0x04 672ebc47dbSSam Leffler #endif 684edb46e9SPaul Traina #ifndef LLCSAP_IP 694edb46e9SPaul Traina #define LLCSAP_IP 0x06 704edb46e9SPaul Traina #endif 714edb46e9SPaul Traina #ifndef LLCSAP_PROWAYNM 724edb46e9SPaul Traina #define LLCSAP_PROWAYNM 0x0e 734edb46e9SPaul Traina #endif 744edb46e9SPaul Traina #ifndef LLCSAP_8021D 754edb46e9SPaul Traina #define LLCSAP_8021D 0x42 764edb46e9SPaul Traina #endif 774edb46e9SPaul Traina #ifndef LLCSAP_RS511 784edb46e9SPaul Traina #define LLCSAP_RS511 0x4e 794edb46e9SPaul Traina #endif 804edb46e9SPaul Traina #ifndef LLCSAP_ISO8208 814edb46e9SPaul Traina #define LLCSAP_ISO8208 0x7e 824edb46e9SPaul Traina #endif 834edb46e9SPaul Traina #ifndef LLCSAP_PROWAY 844edb46e9SPaul Traina #define LLCSAP_PROWAY 0x8e 854edb46e9SPaul Traina #endif 864edb46e9SPaul Traina #ifndef LLCSAP_SNAP 874edb46e9SPaul Traina #define LLCSAP_SNAP 0xaa 884edb46e9SPaul Traina #endif 89a90e161bSBill Fenner #ifndef LLCSAP_IPX 90a90e161bSBill Fenner #define LLCSAP_IPX 0xe0 91a90e161bSBill Fenner #endif 92a90e161bSBill Fenner #ifndef LLCSAP_NETBEUI 93a90e161bSBill Fenner #define LLCSAP_NETBEUI 0xf0 94a90e161bSBill Fenner #endif 954edb46e9SPaul Traina #ifndef LLCSAP_ISONS 964edb46e9SPaul Traina #define LLCSAP_ISONS 0xfe 974edb46e9SPaul Traina #endif 98a90e161bSBill Fenner 995b0fe478SBruce M Simpson /* 1005b0fe478SBruce M Simpson * PIDs for use with OUI_CISCO. 1015b0fe478SBruce M Simpson */ 1025b0fe478SBruce M Simpson #define PID_CISCO_CDP 0x2000 /* Cisco Discovery Protocol */ 103b5bfcb5dSMax Laier #define PID_CISCO_VTP 0x2003 /* Cisco VLAN Trunk Protocol */ 104b5bfcb5dSMax Laier #define PID_CISCO_DTP 0x2004 /* Cisco Dynamic Trunk Protocol */ 105a5779b6eSRui Paulo #define PID_CISCO_UDLD 0x0111 /* Unidirectional Link Detection */ 106a5779b6eSRui Paulo #define PID_CISCO_PVST 0x010b /* Per VLAN Spanning Tree+ and RPVST+ */ 107*3c602fabSXin LI #define PID_CISCO_VLANBRIDGE 0x010c /* "VLAN Bridge", according to Wireshark */ 1085b0fe478SBruce M Simpson 1095b0fe478SBruce M Simpson /* 1105b0fe478SBruce M Simpson * PIDs for use with OUI_RFC2684. 1115b0fe478SBruce M Simpson */ 1125b0fe478SBruce M Simpson #define PID_RFC2684_ETH_FCS 0x0001 /* Ethernet, with FCS */ 1135b0fe478SBruce M Simpson #define PID_RFC2684_ETH_NOFCS 0x0007 /* Ethernet, without FCS */ 1145b0fe478SBruce M Simpson #define PID_RFC2684_802_4_FCS 0x0002 /* 802.4, with FCS */ 1155b0fe478SBruce M Simpson #define PID_RFC2684_802_4_NOFCS 0x0008 /* 802.4, without FCS */ 1165b0fe478SBruce M Simpson #define PID_RFC2684_802_5_FCS 0x0003 /* 802.5, with FCS */ 1175b0fe478SBruce M Simpson #define PID_RFC2684_802_5_NOFCS 0x0009 /* 802.5, without FCS */ 1185b0fe478SBruce M Simpson #define PID_RFC2684_FDDI_FCS 0x0004 /* FDDI, with FCS */ 1195b0fe478SBruce M Simpson #define PID_RFC2684_FDDI_NOFCS 0x000a /* FDDI, without FCS */ 1205b0fe478SBruce M Simpson #define PID_RFC2684_802_6_FCS 0x0005 /* 802.6, with FCS */ 1215b0fe478SBruce M Simpson #define PID_RFC2684_802_6_NOFCS 0x000b /* 802.6, without FCS */ 1225b0fe478SBruce M Simpson #define PID_RFC2684_BPDU 0x000e /* BPDUs */ 123