Add some additional Cisco Protocol ID values, and URLs for documents
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Sat, 25 Oct 2003 06:10:21 +0000 (06:10 +0000)
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Sat, 25 Oct 2003 06:10:21 +0000 (06:10 +0000)
that contain them.

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8777 f5534014-38df-0310-8fa8-9805f1628bb7

packet-cisco-oui.c

index 449a10e0d359c39c7ba0e14db0b60ccf7f288a93..0e0d4c04851c169b4b426396e26e153f2765f64a 100644 (file)
@@ -1,7 +1,7 @@
 /* packet-cisco-oui.c
  * Register an LLC dissector table for Cisco's OUI 00:00:0c
  *
- * $Id: packet-cisco-oui.c,v 1.1 2003/09/03 06:27:03 guy Exp $
+ * $Id: packet-cisco-oui.c,v 1.2 2003/10/25 06:10:21 guy Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
 
 static int hf_llc_cisco_pid = -1;
 
+/*
+ * See various Cisco documents, including
+ *
+ *     http://www.cisco.com/univercd/cc/td/doc/product/lan/trsrb/vlan.htm
+ *
+ * and
+ *
+ *     http://www.cisco.com/en/US/products/hw/switches/ps663/products_tech_note09186a0080094713.shtml
+ *
+ * for various PID values - and for a DRIP frame format.
+ */
 static const value_string cisco_pid_vals[] = {
        { 0x0102,       "DRIP" },
+       { 0x0104,       "PagP" },       /* Port Aggregation Protocol */
+       { 0x010b,       "PVSTP+" },     /* Spanning tree of some sort */
+       { 0x010c,       "VLAN Bridge" },
+       { 0x0111,       "UDLD" },       /* Unidirectional Link Detection */
        { 0x2000,       "CDP" },
        { 0x2001,       "CGMP" },
        { 0x2003,       "VTP" },
+       { 0x2004,       "DTP" },        /* Dynamic Trunking Protocol */
+       { 0x200a,       "STP Uplink Fast" },
        { 0,            NULL }
 };