1 /* 2 * Redistribution and use in source and binary forms, with or without 3 * modification, are permitted provided that: (1) source code 4 * distributions retain the above copyright notice and this paragraph 5 * in its entirety, and (2) distributions including binary code include 6 * the above copyright notice and this paragraph in its entirety in 7 * the documentation or other materials provided with the distribution. 8 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND 9 * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT 10 * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 11 * FOR A PARTICULAR PURPOSE. 12 * 13 * Original code by Hannes Gredler (hannes@juniper.net) 14 */ 15 16 #include <sys/cdefs.h> 17 #ifndef lint 18 __RCSID("$NetBSD: oui.c,v 1.5 2015/03/31 21:59:35 christos Exp $"); 19 #endif 20 21 #define NETDISSECT_REWORKED 22 #ifdef HAVE_CONFIG_H 23 #include "config.h" 24 #endif 25 26 #include <tcpdump-stdinc.h> 27 #include "interface.h" 28 #include "oui.h" 29 30 /* FIXME complete OUI list using a script */ 31 32 const struct tok oui_values[] = { 33 { OUI_ENCAP_ETHER, "Ethernet" }, 34 { OUI_CISCO, "Cisco" }, 35 { OUI_NORTEL, "Nortel Networks SONMP" }, 36 { OUI_CISCO_90, "Cisco bridged" }, 37 { OUI_RFC2684, "Ethernet bridged" }, 38 { OUI_ATM_FORUM, "ATM Forum" }, 39 { OUI_CABLE_BPDU, "DOCSIS Spanning Tree" }, 40 { OUI_APPLETALK, "Appletalk" }, 41 { OUI_JUNIPER, "Juniper" }, 42 { OUI_HP, "Hewlett-Packard" }, 43 { OUI_IEEE_8021_PRIVATE, "IEEE 802.1 Private"}, 44 { OUI_IEEE_8023_PRIVATE, "IEEE 802.3 Private"}, 45 { OUI_TIA, "ANSI/TIA"}, 46 { OUI_DCBX, "DCBX"}, 47 { OUI_NICIRA, "Nicira Networks" }, 48 { OUI_BSN, "Big Switch Networks" }, 49 { OUI_VELLO, "Vello Systems" }, 50 { OUI_HP2, "HP" }, 51 { OUI_HPLABS, "HP-Labs" }, 52 { OUI_INFOBLOX, "Infoblox Inc" }, 53 { OUI_ONLAB, "Open Networking Lab" }, 54 { OUI_FREESCALE, "Freescale" }, 55 { OUI_NETRONOME, "Netronome" }, 56 { 0, NULL } 57 }; 58 59 /* 60 * SMI Network Management Private Enterprise Codes for organizations. 61 * 62 * XXX - these also appear in FreeRadius dictionary files, with items such 63 * as 64 * 65 * VENDOR Cisco 9 66 * 67 * List taken from Ethereal's epan/sminmpec.c. 68 */ 69 const struct tok smi_values[] = { 70 { SMI_IETF, "IETF (reserved)"}, 71 { SMI_ACC, "ACC"}, 72 { SMI_CISCO, "Cisco"}, 73 { SMI_HEWLETT_PACKARD, "Hewlett Packard"}, 74 { SMI_SUN_MICROSYSTEMS, "Sun Microsystems"}, 75 { SMI_MERIT, "Merit"}, 76 { SMI_SHIVA, "Shiva"}, 77 { SMI_ERICSSON, "Ericsson AB"}, 78 { SMI_CISCO_VPN5000, "Cisco VPN 5000"}, 79 { SMI_LIVINGSTON, "Livingston"}, 80 { SMI_MICROSOFT, "Microsoft"}, 81 { SMI_3COM, "3Com"}, 82 { SMI_ASCEND, "Ascend"}, 83 { SMI_BAY, "Bay Networks"}, 84 { SMI_FOUNDRY, "Foundry"}, 85 { SMI_VERSANET, "Versanet"}, 86 { SMI_REDBACK, "Redback"}, 87 { SMI_JUNIPER, "Juniper Networks"}, 88 { SMI_APTIS, "Aptis"}, 89 { SMI_CISCO_VPN3000, "Cisco VPN 3000"}, 90 { SMI_COSINE, "CoSine Communications"}, 91 { SMI_NETSCREEN, "Netscreen"}, 92 { SMI_SHASTA, "Shasta"}, 93 { SMI_NOMADIX, "Nomadix"}, 94 { SMI_SIEMENS, "Siemens"}, 95 { SMI_CABLELABS, "CableLabs"}, 96 { SMI_UNISPHERE, "Unisphere Networks"}, 97 { SMI_CISCO_BBSM, "Cisco BBSM"}, 98 { SMI_THE3GPP2, "3rd Generation Partnership Project 2 (3GPP2)"}, 99 { SMI_IP_UNPLUGGED, "ipUnplugged"}, 100 { SMI_ISSANNI, "Issanni Communications"}, 101 { SMI_QUINTUM, "Quintum"}, 102 { SMI_INTERLINK, "Interlink"}, 103 { SMI_COLUBRIS, "Colubris"}, 104 { SMI_COLUMBIA_UNIVERSITY, "Columbia University"}, 105 { SMI_THE3GPP, "3GPP"}, 106 { SMI_GEMTEK_SYSTEMS, "Gemtek-Systems"}, 107 { SMI_WIFI_ALLIANCE, "Wi-Fi Alliance"}, 108 { 0, NULL} 109 }; 110