1 /* sminmpec.h
2  * SMI Network Management Private Enterprise Codes for organizations
3  *
4  * Wireshark - Network traffic analyzer
5  * By Gerald Combs <gerald@wireshark.org>
6  * Copyright 2004 Gerald Combs
7  *
8  * SPDX-License-Identifier: GPL-2.0-or-later
9  */
10 
11 #ifndef __SMINMPEC_H__
12 #define __SMINMPEC_H__
13 
14 /*
15  * These are SMI Network Management Private Enterprise Codes for
16  * organizations; see
17  *
18  *  http://www.iana.org/assignments/enterprise-numbers
19  *
20  * for a list.
21  */
22 #define VENDOR_IETF                     0 /* reserved - used by the IETF in L2TP? */
23 #define VENDOR_ACC                      5
24 #define VENDOR_CISCO                    9
25 #define VENDOR_HEWLETT_PACKARD         11
26 #define VENDOR_SUN_MICROSYSTEMS        42
27 #define VENDOR_MERIT                   61
28 #define VENDOR_AT_AND_T                74
29 #define VENDOR_MOTOROLA               161
30 #define VENDOR_SHIVA                  166
31 #define VENDOR_ERICSSON               193
32 #define VENDOR_CISCO_VPN5000          255
33 #define VENDOR_LIVINGSTON             307
34 #define VENDOR_MICROSOFT              311
35 #define VENDOR_3COM                   429
36 #define VENDOR_ASCEND                 529
37 #define VENDOR_BAY                   1584
38 #define VENDOR_FOUNDRY               1991
39 #define VENDOR_VERSANET              2180
40 #define VENDOR_REDBACK               2352
41 #define VENDOR_JUNIPER               2636
42 #define VENDOR_APTIS                 2637
43 #define VENDOR_DT_AG                 2937
44 #define VENDOR_IXIA                  3054
45 #define VENDOR_CISCO_VPN3000         3076
46 #define VENDOR_COSINE                3085
47 #define VENDOR_SHASTA                3199
48 #define VENDOR_NETSCREEN             3224
49 #define VENDOR_NOMADIX               3309
50 #define VENDOR_T_MOBILE              3414 /* Former VoiceStream Wireless, Inc. */
51 #define VENDOR_BROADBAND_FORUM       3561 /* Former ADSL Forum */
52 #define VENDOR_ZTE                   3902
53 #define VENDOR_SIEMENS               4329
54 #define VENDOR_CABLELABS             4491
55 #define VENDOR_UNISPHERE             4874
56 #define VENDOR_CISCO_BBSM            5263
57 #define VENDOR_THE3GPP2              5535
58 #define VENDOR_SKT_TELECOM           5806
59 #define VENDOR_IP_UNPLUGGED          5925
60 #define VENDOR_ISSANNI               5948
61 #define VENDOR_NETSCALER             5951
62 #define VENDOR_DE_TE_MOBIL           6490
63 #define VENDOR_QUINTUM               6618
64 #define VENDOR_INTERLINK             6728
65 #define VENDOR_CNCTC                 7951
66 #define VENDOR_STARENT_NETWORKS      8164
67 #define VENDOR_COLUBRIS              8744
68 #define VENDOR_THE3GPP              10415
69 #define VENDOR_GEMTEK_SYSTEMS       10529
70 #define VENDOR_BARRACUDA            10704 /* Former phion Information Technologies */
71 #define VENDOR_ERICSSON_PKT_CORE    10923
72 #define VENDOR_DACOM                11665
73 #define VENDOR_COLUMBIA_UNIVERSITY  11862
74 #define VENDOR_FORTINET             12356
75 #define VENDOR_VERIZON              12951
76 #define VENDOR_PLIXER               13745
77 #define VENDOR_WIFI_ALLIANCE        14122
78 #define VENDOR_T_SYSTEMS_NOVA       16787
79 #define VENDOR_TRAVELPING           18681
80 #define VENDOR_CHINATELECOM_GUANZHOU 20942
81 #define VENDOR_GIGAMON              26866
82 #define VENDOR_CACE                 32622
83 /* Greater than 32,767 need to be tagged unsigned. */
84 #define VENDOR_FASTIP               33610u
85 #define VENDOR_NTOP                 35632u
86 #define VENDOR_ERICSSON_CANADA_INC  46098u
87 #define VENDOR_NIAGARA_NETWORKS     47729u
88 #define VENDOR_CISCO_WIFI           4232704
89 
90 #endif /* __SMINMPEC_H__ */
91