0x81fd and 0x81ff appear to be for the Cabletron Interswitch Message

Protocol, although the packets I've seen with 0x81fd don't look like the
ISMP packets described in RFC 2641/2642/2643.

svn path=/trunk/; revision=8645
This commit is contained in:
Guy Harris 2003-10-08 06:44:15 +00:00
parent 4d8d3073fc
commit 41440d30e5
2 changed files with 13 additions and 2 deletions

View File

@ -1,7 +1,7 @@
/* etypes.h
* Defines ethernet packet types, similar to tcpdump's ethertype.h
*
* $Id: etypes.h,v 1.34 2003/06/11 09:17:00 guy Exp $
* $Id: etypes.h,v 1.35 2003/10/08 06:44:15 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -151,6 +151,14 @@
#define ETHERTYPE_WCP 0x80ff /* Wellfleet Compression Protocol */
#endif
#ifndef ETHERTYPE_ISMP
#define ETHERTYPE_ISMP 0x81fd /* Cabletron Interswitch Message Protocol */
#endif
#ifndef ETHERTYPE_ISMP_TBFLOOD
#define ETHERTYPE_ISMP_TBFLOOD 0x81ff /* Cabletron Interswitch Message Protocol */
#endif
#ifndef ETHERTYPE_IPv6
#define ETHERTYPE_IPv6 0x86dd
#endif

View File

@ -1,7 +1,7 @@
/* ethertype.c
* Routines for calling the right protocol for the ethertype.
*
* $Id: packet-ethertype.c,v 1.38 2003/10/01 07:11:44 guy Exp $
* $Id: packet-ethertype.c,v 1.39 2003/10/08 06:44:15 guy Exp $
*
* Gilbert Ramirez <gram@alumni.rice.edu>
*
@ -59,6 +59,9 @@ const value_string etype_vals[] = {
{ETHERTYPE_TRAIN, "Netmon Train" },
{ETHERTYPE_LOOP, "Loopback" }, /* Ethernet Loopback */
{ETHERTYPE_WCP, "Wellfleet Compression Protocol" },
{ETHERTYPE_ISMP, "Cabletron Interswitch Message Protocol" },
{ETHERTYPE_ISMP_TBFLOOD, "Cabletron SFVLAN 1.8 Tag-Based Flood" },
/* for ISMP, see RFC 2641, RFC 2642, RFC 2643 */
{ETHERTYPE_PPPOED, "PPPoE Discovery" },
{ETHERTYPE_PPPOES, "PPPoE Session" },
{ETHERTYPE_INTEL_ANS, "Intel ANS probe" },