-
Notifications
You must be signed in to change notification settings - Fork 0
/
ethernet.c
5055 lines (4989 loc) · 187 KB
/
ethernet.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (c) 2004 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <sys/types.h>
#include <sys/param.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/tree.h>
#include <stdio.h>
#include <stdlib.h>
#include <err.h>
#include <string.h>
#include <ctype.h>
#include <dumbnet.h>
#include "ethernet.h"
struct etherindex {
SPLAY_ENTRY(etherindex) node;
char *index_word;
struct ethernetcode **list;
size_t list_size;
size_t list_mem;
};
struct ethernetcode {
uint32_t prefix;
char *vendor;
int count;
};
static SPLAY_HEAD(ethertree, etherindex) etherroot;
static int
compare(struct etherindex *a, struct etherindex *b)
{
return (strcmp(a->index_word, b->index_word));
}
SPLAY_PROTOTYPE(ethertree, etherindex, node, compare);
SPLAY_GENERATE(ethertree, etherindex, node, compare);
/*
* These codes have been obtained from
*
* http://www.cavebear.com/CaveBear/Ethernet/vendor.html
*
* and other random sources on the Internet.
*/
static struct ethernetcode codes[] = {
{ 0x000000, "xerox corporation" },
{ 0x000001, "superlan-2u" },
{ 0x000002, "bbn (was internal usage only, no longer used)" },
{ 0x000003, "xerox corporation" },
{ 0x000004, "xerox corporation" },
{ 0x000005, "xerox corporation" },
{ 0x000006, "xerox corporation" },
{ 0x000007, "xerox corporation" },
{ 0x000008, "xerox corporation" },
{ 0x000009, "powerpipes?" },
{ 0x00000a, "omron tateisi electronics co." },
{ 0x00000b, "matrix corporation" },
{ 0x00000c, "cisco" },
{ 0x00000d, "fibronics ltd." },
{ 0x00000e, "fujitsu" },
{ 0x00000f, "next" },
{ 0x000010, "hughes" },
{ 0x000011, "tektrnix" },
{ 0x000012, "information technology limited" },
{ 0x000013, "camex" },
{ 0x000014, "netronix" },
{ 0x000015, "datapoint corporation" },
{ 0x000016, "du pont pixel systems" },
{ 0x000017, "tekelec" },
{ 0x000018, "webster" },
{ 0x000019, "applied dynamics international" },
{ 0x00001a, "amd" },
{ 0x00001b, "novell" },
{ 0x00001c, "jdr microdevices generic, ne2000 drivers" },
{ 0x00001d, "ctron" },
{ 0x00001e, "telsist industria electronica" },
{ 0x00001f, "cryptall communications corp." },
{ 0x000020, "diab" },
{ 0x000021, "sc&c" },
{ 0x000022, "visual technology" },
{ 0x000023, "abb automation ab, dept. q" },
{ 0x000024, "olicom" },
{ 0x000025, "ramtek corp." },
{ 0x000026, "sha-ken co., ltd." },
{ 0x000027, "japan radio company" },
{ 0x000028, "prodigy systems corporation" },
{ 0x000029, "imc" },
{ 0x00002a, "trw" },
{ 0x00002b, "crisp automation, inc" },
{ 0x00002c, "nrc - network resources corporation - multigate hub1+, hub2, etc" },
{ 0x00002d, "chromatics inc" },
{ 0x00002e, "societe evira" },
{ 0x00002f, "timeplex inc." },
{ 0x000030, "vg laboratory systems ltd" },
{ 0x000031, "qpsx communications pty ltd" },
{ 0x000032, "gpt limited (reassigned from gec computers ltd)" },
{ 0x000033, "egan machinery company" },
{ 0x000034, "network resources corporation" },
{ 0x000035, "spectragraphics corporation" },
{ 0x000036, "atari corporation" },
{ 0x000037, "oxford metrics ltd" },
{ 0x000038, "css labs" },
{ 0x000039, "intel" },
{ 0x00003a, "chyron corporation" },
{ 0x00003b, "hyundai/axil sun clones" },
{ 0x00003c, "auspex" },
{ 0x00003d, "at&t" },
{ 0x00003e, "simpact" },
{ 0x00003f, "syntrex inc" },
{ 0x000040, "applicon, inc." },
{ 0x000041, "ice corporation" },
{ 0x000042, "metier management systems ltd." },
{ 0x000043, "micro technology" },
{ 0x000044, "castell" },
{ 0x000045, "ford aerospace & comm. corp." },
{ 0x000046, "isc-br" },
{ 0x000047, "nicolet instruments corp." },
{ 0x000048, "epson" },
{ 0x000049, "apricot" },
{ 0x00004a, "adc codenoll technology corp." },
{ 0x00004b, "apt" },
{ 0x00004c, "nec" },
{ 0x00004d, "dci corporation" },
{ 0x00004e, "ampex corporation" },
{ 0x00004f, "logicraft 386-ware p.c. emulator" },
{ 0x000050, "radisys corporation" },
{ 0x000051, "hob electronic gmbh & co. kg" },
{ 0x000052, "optical data systems" },
{ 0x000053, "compucorp" },
{ 0x000054, "modicon, inc." },
{ 0x000055, "at&t" },
{ 0x000056, "dr. b. struck" },
{ 0x000057, "scitex corporation ltd." },
{ 0x000058, "racore computer products inc" },
{ 0x000059, "hellige gmbh" },
{ 0x00005a, "sk (schneider & koch in europe and syskonnect outside of europe)" },
{ 0x00005b, "eltec" },
{ 0x00005c, "telematics international inc." },
{ 0x00005d, "rce" },
{ 0x00005e, "u.s. department of defense (iana)" },
{ 0x00005f, "sumitomo" },
{ 0x000060, "kontron elektronik gmbh" },
{ 0x000061, "gateway communications" },
{ 0x000062, "honeywell" },
{ 0x000063, "hp" },
{ 0x000064, "yokogawa digital computer corp" },
{ 0x000065, "network general" },
{ 0x000066, "talaris" },
{ 0x000067, "soft * rite, inc." },
{ 0x000068, "rosemount controls" },
{ 0x000069, "sgi" },
{ 0x00006a, "computer consoles inc." },
{ 0x00006b, "mips" },
{ 0x00006d, "case" },
{ 0x00006e, "artisoft, inc." },
{ 0x00006f, "madge networks ltd. token-ring adapters" },
{ 0x000070, "hcl limited" },
{ 0x000071, "adra systems inc." },
{ 0x000072, "miniware technology" },
{ 0x000073, "dupont" },
{ 0x000074, "ricoh company ltd." },
{ 0x000075, "bell northern research (bnr)" },
{ 0x000076, "abekas video system" },
{ 0x000077, "interphase [used in other systems, e.g. mips, motorola]" },
{ 0x000078, "labtam australia" },
{ 0x000079, "networth incorporated [bought by compaq, used in netelligent series]" },
{ 0x00007a, "ardent" },
{ 0x00007b, "research machines" },
{ 0x00007c, "ampere incorporated" },
{ 0x00007d, "cray" },
{ 0x00007e, "netframe multiprocessor network servers" },
{ 0x00007f, "linotype-hell ag linotronic typesetters" },
{ 0x000080, "cray communications (formerly dowty network services) [also shows as harris (3m) (new) and/or imagen(?) elsewhere]" },
{ 0x000081, "synoptics" },
{ 0x000082, "lectra systemes sa" },
{ 0x000083, "tadpole technology [had optical data systems which is wrong according to both]" },
{ 0x000084, "aquila (?), adi systems inc.(?)" },
{ 0x000085, "canon inc." },
{ 0x000086, "gateway communications inc. (then megahertz & now 3com)" },
{ 0x000087, "hitachi" },
{ 0x000088, "computer network tech. corp." },
{ 0x000089, "cayman" },
{ 0x00008a, "datahouse information systems" },
{ 0x00008b, "infotron" },
{ 0x00008c, "alloy computer products, inc." },
{ 0x00008d, "verdix corporation" },
{ 0x00008e, "solbourne(?), jupiter(?) (i've had confirming mail on solbourne)" },
{ 0x00008f, "raytheon company" },
{ 0x000090, "microcom" },
{ 0x000091, "anritsu corporation" },
{ 0x000092, "unisys, cogent (both reported)" },
{ 0x000093, "proteon" },
{ 0x000094, "asante" },
{ 0x000095, "sony" },
{ 0x000096, "marconi electronics ltd." },
{ 0x000097, "epoch" },
{ 0x000098, "cross com" },
{ 0x000099, "memorex telex corporations" },
{ 0x00009a, "rc computer a/s" },
{ 0x00009b, "information international, inc" },
{ 0x00009c, "rolm mil-spec computers" },
{ 0x00009d, "locus computing corporation" },
{ 0x00009e, "marli s.a." },
{ 0x00009f, "ameristar technology" },
{ 0x0000a0, "sanyo" },
{ 0x0000a1, "marquette electric co." },
{ 0x0000a2, "wellfleet" },
{ 0x0000a3, "nat" },
{ 0x0000a4, "acorn" },
{ 0x0000a5, "csc" },
{ 0x0000a6, "network general (internal assignment, not for products)" },
{ 0x0000a7, "ncd" },
{ 0x0000a8, "stratus" },
{ 0x0000a9, "network systems" },
{ 0x0000aa, "xerox" },
{ 0x0000ab, "logic modeling corporation" },
{ 0x0000ac, "conware netzpartner [had apollo, claimed incorrect]" },
{ 0x0000ad, "bruker instruments inc." },
{ 0x0000ae, "dassault" },
{ 0x0000af, "nuclear data acquisition interface modules (aim)" },
{ 0x0000b0, "rnd" },
{ 0x0000b1, "alpha microsystems inc." },
{ 0x0000b2, "televideo systems, inc." },
{ 0x0000b3, "cimlinc" },
{ 0x0000b4, "edimax" },
{ 0x0000b5, "datability terminal servers" },
{ 0x0000b6, "micro-matic research" },
{ 0x0000b7, "dove fastnet" },
{ 0x0000b8, "seikosha co., ltd." },
{ 0x0000b9, "mcdonnell douglas computer sys" },
{ 0x0000ba, "siig, inc." },
{ 0x0000bb, "tri-data systems inc. netway products, 3274 emulators" },
{ 0x0000bc, "allen-bradley" },
{ 0x0000bd, "mitsubishi cable company" },
{ 0x0000be, "the nti group" },
{ 0x0000bf, "symmetric computer systems" },
{ 0x0000c0, "western digital now smc (std. microsystems corp.)" },
{ 0x0000c1, "olicom a/s" },
{ 0x0000c2, "information presentation tech." },
{ 0x0000c3, "harris corp computer sys div" },
{ 0x0000c4, "waters div. of millipore" },
{ 0x0000c5, "farallon computing inc" },
{ 0x0000c6, "hp intelligent networks operation (formerly eon systems)" },
{ 0x0000c7, "arix corporation" },
{ 0x0000c8, "altos" },
{ 0x0000c9, "emulex terminal servers, print servers" },
{ 0x0000ca, "lancity cable modems (now owned by baynetworks)" },
{ 0x0000cb, "compu-shack electronic gmbh" },
{ 0x0000cc, "densan co., ltd." },
{ 0x0000cd, "industrial research limited" },
{ 0x0000ce, "megadata corp." },
{ 0x0000cf, "hayes microcomputer products" },
{ 0x0000d0, "develcon electronics, ltd." },
{ 0x0000d1, "adaptec, inc. nodem product" },
{ 0x0000d2, "sbe inc" },
{ 0x0000d3, "wang labs" },
{ 0x0000d4, "puredata" },
{ 0x0000d5, "micrognosis international" },
{ 0x0000d6, "punch line holding" },
{ 0x0000d7, "dartmouth college (ned router)" },
{ 0x0000d8, "old novell ne1000's (before about 1987?) (also 3com)" },
{ 0x0000d9, "nippon telegraph & telephone" },
{ 0x0000da, "atex" },
{ 0x0000db, "british telecommunications plc" },
{ 0x0000dc, "hayes microcomputer products" },
{ 0x0000dd, "gould" },
{ 0x0000de, "unigraph" },
{ 0x0000df, "bell & howell pub sys div" },
{ 0x0000e0, "quadram corp." },
{ 0x0000e1, "hitachi" },
{ 0x0000e2, "acer counterpoint" },
{ 0x0000e3, "integrated micro products ltd" },
{ 0x0000e4, "mips?" },
{ 0x0000e5, "sigmex ltd." },
{ 0x0000e6, "aptor produits de comm indust" },
{ 0x0000e7, "star gate technologies" },
{ 0x0000e8, "accton technology corporation" },
{ 0x0000e9, "isicad, inc." },
{ 0x0000ea, "upnod ab" },
{ 0x0000eb, "matsushita comm. ind. co. ltd." },
{ 0x0000ec, "microprocess" },
{ 0x0000ed, "april" },
{ 0x0000ee, "network designers limited [also knx ltd, a former division]" },
{ 0x0000ef, "alantec (now owned by foresystems)" },
{ 0x0000f0, "samsung" },
{ 0x0000f1, "magna computer corporation" },
{ 0x0000f2, "spider communications (montreal, not spider systems)" },
{ 0x0000f3, "gandalf data ltd. - canada" },
{ 0x0000f4, "allied telesis, inc." },
{ 0x0000f5, "diamond sales limited" },
{ 0x0000f6, "madge" },
{ 0x0000f7, "youth keep enterprise co ltd" },
{ 0x0000f8, "dec" },
{ 0x0000f9, "quotron systems inc." },
{ 0x0000fa, "microsage computer systems inc" },
{ 0x0000fb, "rechner zur kommunikation" },
{ 0x0000fc, "meiko" },
{ 0x0000fd, "high level hardware (orion, uk)" },
{ 0x0000fe, "annapolis micro systems" },
{ 0x0000ff, "camtec electronics (uk) ltd." },
{ 0x000100, "equip'trans" },
{ 0x000102, "bbn (bolt beranek and newman, inc.) internal usage (not registered)" },
{ 0x000103, "3com corporation" },
{ 0x000104, "dvico co., ltd." },
{ 0x000105, "beckhoff gmbh" },
{ 0x000106, "tews datentechnik gmbh" },
{ 0x000107, "leiser gmbh" },
{ 0x000108, "avlab technology, inc." },
{ 0x000109, "nagano japan radio co., ltd." },
{ 0x00010a, "cis technology inc." },
{ 0x00010b, "space cyberlink, inc." },
{ 0x00010c, "system talks inc." },
{ 0x00010d, "coreco, inc." },
{ 0x00010e, "bri-link technologies co., ltd" },
{ 0x00010f, "nishan systems, inc." },
{ 0x000110, "gotham networks" },
{ 0x000111, "idigm inc." },
{ 0x000112, "shark multimedia inc." },
{ 0x000113, "olympus optical co., ltd." },
{ 0x000114, "kanda tsushin kogyo co., ltd." },
{ 0x000115, "extratech corporation" },
{ 0x000116, "netspect technologies, inc." },
{ 0x000117, "canal +" },
{ 0x000118, "ez digital co., ltd." },
{ 0x000119, "action controls pty. ltd." },
{ 0x00011a, "eeh datalink gmbh" },
{ 0x00011b, "unizone technologies, inc." },
{ 0x00011c, "universal talkware corporation" },
{ 0x00011d, "centillium communications" },
{ 0x00011e, "precidia technologies, inc." },
{ 0x00011f, "rc networks, inc." },
{ 0x000120, "oscilloquartz s.a." },
{ 0x000121, "rapidstream inc." },
{ 0x000122, "trend communications, ltd." },
{ 0x000123, "digital electronics corp." },
{ 0x000124, "acer incorporated" },
{ 0x000125, "yaesu musen co., ltd." },
{ 0x000126, "pac labs" },
{ 0x000127, "the open group limited" },
{ 0x000128, "enjoyweb, inc." },
{ 0x000129, "dfi inc." },
{ 0x00012a, "telematica sistems inteligente" },
{ 0x00012b, "telenet co., ltd." },
{ 0x00012c, "aravox technologies, inc." },
{ 0x00012d, "komodo technology" },
{ 0x00012e, "pc partner ltd." },
{ 0x00012f, "twinhead international corp" },
{ 0x000130, "extreme networks" },
{ 0x000131, "detection systems, inc." },
{ 0x000132, "dranetz - bmi" },
{ 0x000133, "kyowa electronic instruments c" },
{ 0x000134, "sig positec systems ag" },
{ 0x000135, "kdc corp." },
{ 0x000136, "cybertan technology, inc." },
{ 0x000137, "it farm corporation" },
{ 0x000138, "xavi technologies corp." },
{ 0x000139, "point multimedia systems" },
{ 0x00013a, "shelcad communications, ltd." },
{ 0x00013b, "bna systems" },
{ 0x00013c, "tiw systems" },
{ 0x00013d, "riscstation ltd." },
{ 0x00013e, "ascom tateco ab" },
{ 0x00013f, "neighbor world co., ltd." },
{ 0x000140, "sendtek corporation" },
{ 0x000141, "cable print" },
{ 0x000142, "cisco systems, inc." },
{ 0x000143, "ieee 802" },
{ 0x000144, "cereva networks, inc." },
{ 0x000145, "winsystems, inc." },
{ 0x000146, "tesco controls, inc." },
{ 0x000147, "zhone technologies" },
{ 0x000148, "x-traweb inc." },
{ 0x000149, "t.d.t. transfer data test gmbh" },
{ 0x00014a, "sony computer science labs., i" },
{ 0x00014b, "ennovate networks, inc." },
{ 0x00014c, "berkeley process control" },
{ 0x00014d, "shin kin enterprises co., ltd" },
{ 0x00014e, "win enterprises, inc." },
{ 0x00014f, "luminous networks, inc." },
{ 0x000150, "megahertz (now 3com) modem" },
{ 0x000151, "ensemble communications" },
{ 0x000152, "chromatek inc." },
{ 0x000153, "archtek telecom corporation" },
{ 0x000154, "g3m corporation" },
{ 0x000155, "promise technology, inc." },
{ 0x000156, "firewiredirect.com, inc." },
{ 0x000157, "syswave co., ltd" },
{ 0x000158, "electro industries/gauge tech" },
{ 0x000159, "s1 corporation" },
{ 0x00015a, "digital video broadcasting" },
{ 0x00015b, "italtel s.p.a/rf-up-i" },
{ 0x00015c, "cadant inc." },
{ 0x00015d, "pirus networks" },
{ 0x00015e, "best technology co., ltd." },
{ 0x00015f, "digital design gmbh" },
{ 0x000160, "elmex co., ltd." },
{ 0x000161, "meta machine technology" },
{ 0x000162, "cygnet technologies, inc." },
{ 0x000163, "ndc (national datacomm corporation)" },
{ 0x000164, "cisco systems, inc." },
{ 0x000165, "airswitch corporation" },
{ 0x000166, "tc group a/s" },
{ 0x000167, "hioki e.e. corporation" },
{ 0x000168, "w&g (wandel & goltermann) [incorrect according to w&g]" },
{ 0x000169, "celestix networks pte ltd." },
{ 0x00016a, "alitec" },
{ 0x00016b, "lightchip, inc." },
{ 0x00016c, "foxconn" },
{ 0x00016d, "triton network systems" },
{ 0x00016e, "conklin corporation" },
{ 0x00016f, "haitai electronics co., ltd." },
{ 0x000170, "ese embedded system engineer'g" },
{ 0x000171, "allied data technologies" },
{ 0x000172, "technoland co., ltd." },
{ 0x000173, "jni corporation" },
{ 0x000174, "cyberoptics corporation" },
{ 0x000175, "radiant communications corp." },
{ 0x000176, "orient silver enterprises" },
{ 0x000177, "edsl" },
{ 0x000178, "margi systems, inc." },
{ 0x000179, "wireless technology, inc." },
{ 0x00017a, "chengdu maipu electric industrial co., ltd." },
{ 0x00017b, "heidelberger druckmaschinen ag" },
{ 0x00017c, "ag-e gmbh" },
{ 0x00017d, "thermoquest" },
{ 0x00017e, "adtek system science co., ltd." },
{ 0x00017f, "experience music project" },
{ 0x000180, "aopen, inc." },
{ 0x000181, "nortel networks" },
{ 0x000182, "dica technologies ag" },
{ 0x000183, "anite telecoms" },
{ 0x000184, "sieb & meyer ag" },
{ 0x000185, "aloka co., ltd." },
{ 0x000186, "disch gmbh" },
{ 0x000187, "i2se gmbh" },
{ 0x000188, "lxco technologies ag" },
{ 0x000189, "refraction technology, inc." },
{ 0x00018a, "roi computer ag" },
{ 0x00018b, "netlinks co., ltd." },
{ 0x00018c, "mega vision" },
{ 0x00018d, "audesi technologies" },
{ 0x00018e, "logitec corporation" },
{ 0x00018f, "kenetec, inc." },
{ 0x000190, "smk-m" },
{ 0x000191, "syred data systems" },
{ 0x000192, "texas digital systems" },
{ 0x000193, "hanbyul telecom co., ltd." },
{ 0x000194, "capital equipment corporation" },
{ 0x000195, "sena technologies, inc." },
{ 0x000196, "cisco systems, inc." },
{ 0x000197, "cisco systems, inc." },
{ 0x000198, "darim vision" },
{ 0x000199, "heisei electronics" },
{ 0x00019a, "leunig gmbh" },
{ 0x00019b, "kyoto microcomputer co., ltd." },
{ 0x00019c, "jds uniphase inc." },
{ 0x00019d, "e-control systems, inc." },
{ 0x00019e, "ess technology, inc." },
{ 0x00019f, "phonex broadband" },
{ 0x0001a0, "infinilink corporation" },
{ 0x0001a1, "mag-tek, inc." },
{ 0x0001a2, "logical co., ltd." },
{ 0x0001a3, "genesys logic, inc." },
{ 0x0001a4, "microlink corporation" },
{ 0x0001a5, "nextcomm, inc." },
{ 0x0001a6, "scientific-atlanta arcodan a/s" },
{ 0x0001a7, "unex technology corporation" },
{ 0x0001a8, "welltech computer co., ltd." },
{ 0x0001a9, "bmw ag" },
{ 0x0001aa, "airspan communications, ltd." },
{ 0x0001ab, "main street networks" },
{ 0x0001ac, "sitara networks, inc." },
{ 0x0001ad, "coach master international d.b.a. cmi worldwide, inc." },
{ 0x0001ae, "trex enterprises" },
{ 0x0001af, "motorola computer group" },
{ 0x0001b0, "fulltek technology co., ltd." },
{ 0x0001b1, "general bandwidth" },
{ 0x0001b2, "digital processing systems, inc." },
{ 0x0001b3, "precision electronic manufacturing" },
{ 0x0001b4, "wayport, inc." },
{ 0x0001b5, "turin networks, inc." },
{ 0x0001b6, "saejin t&m co., ltd." },
{ 0x0001b7, "centos, inc." },
{ 0x0001b8, "netsensity, inc." },
{ 0x0001b9, "skf condition monitoring" },
{ 0x0001ba, "ic-net, inc." },
{ 0x0001bb, "frequentis" },
{ 0x0001bc, "brains corporation" },
{ 0x0001bd, "peterson electro-musical products, inc." },
{ 0x0001be, "gigalink co., ltd." },
{ 0x0001bf, "teleforce co., ltd." },
{ 0x0001c0, "compulab, ltd." },
{ 0x0001c1, "exbit technology" },
{ 0x0001c2, "ark research corp." },
{ 0x0001c3, "acromag, inc." },
{ 0x0001c4, "neowave, inc." },
{ 0x0001c5, "simpler networks" },
{ 0x0001c6, "quarry technologies" },
{ 0x0001c7, "cisco systems, inc." },
{ 0x0001c8, "thomas conrad corp." },
{ 0x0001c9, "cisco systems, inc." },
{ 0x0001ca, "geocast network systems, inc." },
{ 0x0001cb, "netgame, ltd." },
{ 0x0001cc, "japan total design communication co., ltd." },
{ 0x0001cd, "artem" },
{ 0x0001ce, "custom micro products, ltd." },
{ 0x0001cf, "alpha data parallel systems, ltd." },
{ 0x0001d0, "vitalpoint, inc." },
{ 0x0001d1, "conet communications, inc." },
{ 0x0001d2, "macpower peripherals, ltd." },
{ 0x0001d3, "paxcomm, inc." },
{ 0x0001d4, "leisure time, inc." },
{ 0x0001d5, "haedong info & comm co., ltd" },
{ 0x0001d6, "man roland druckmaschinen ag" },
{ 0x0001d7, "f5 networks, inc." },
{ 0x0001d8, "teltronics, inc." },
{ 0x0001d9, "sigma, inc." },
{ 0x0001da, "wincomm corporation" },
{ 0x0001db, "freecom technologies gmbh" },
{ 0x0001dc, "activetelco" },
{ 0x0001dd, "avail networks" },
{ 0x0001de, "trango systems, inc." },
{ 0x0001df, "isdn communications, ltd." },
{ 0x0001e0, "fast systems, inc." },
{ 0x0001e1, "kinpo electronics, inc." },
{ 0x0001e2, "ando electric corporation" },
{ 0x0001e3, "siemens ag" },
{ 0x0001e4, "sitera, inc." },
{ 0x0001e5, "supernet, inc." },
{ 0x0001e6, "hewlett-packard company" },
{ 0x0001e7, "hewlett-packard company" },
{ 0x0001e8, "force10 networks, inc." },
{ 0x0001e9, "litton marine systems b.v." },
{ 0x0001ea, "cirilium corp." },
{ 0x0001eb, "c-com corporation" },
{ 0x0001ec, "ericsson group" },
{ 0x0001ed, "seta corp." },
{ 0x0001ee, "comtrol europe, ltd." },
{ 0x0001ef, "camtel technology corp." },
{ 0x0001f0, "tridium, inc." },
{ 0x0001f1, "innovative concepts, inc." },
{ 0x0001f3, "qps, inc." },
{ 0x0001f4, "enterasys networks" },
{ 0x0001f5, "erim s.a." },
{ 0x0001f6, "association of musical electronics industry" },
{ 0x0001f7, "image display systems, inc." },
{ 0x0001f8, "adherent systems, ltd." },
{ 0x0001f9, "teraglobal communications corp." },
{ 0x0001fa, "compaq" },
{ 0x0001fb, "dotop technology, inc." },
{ 0x0001fc, "keyence corporation" },
{ 0x0001fd, "digital voice systems, inc." },
{ 0x0001fe, "digital equipment corporation" },
{ 0x0001ff, "data direct networks, inc." },
{ 0x000200, "net & sys co., ltd." },
{ 0x000201, "ifm electronic gmbh" },
{ 0x000202, "amino communications, ltd." },
{ 0x000203, "woonsang telecom, inc." },
{ 0x000204, "novell" },
{ 0x000205, "hamilton (sparc clones)" },
{ 0x000206, "telital r&d denmark a/s" },
{ 0x000208, "unify networks, inc." },
{ 0x000209, "shenzhen sed information technology co., ltd." },
{ 0x00020a, "gefran spa" },
{ 0x00020b, "native networks, inc." },
{ 0x00020c, "metro-optix" },
{ 0x00020d, "micronpc.com" },
{ 0x00020e, "laurel networks, inc." },
{ 0x00020f, "aatr" },
{ 0x000210, "fenecom" },
{ 0x000211, "nature worldwide technology corp." },
{ 0x000212, "sierracom" },
{ 0x000213, "s.d.e.l." },
{ 0x000214, "dtvro" },
{ 0x000215, "cotas computer technology a/b" },
{ 0x000216, "esi (extended systems, inc) print servers" },
{ 0x000217, "cisco systems, inc." },
{ 0x000218, "advanced scientific corp" },
{ 0x000219, "paralon technologies" },
{ 0x00021a, "zuma networks" },
{ 0x00021b, "kollmorgen-servotronix" },
{ 0x00021c, "network elements, inc." },
{ 0x00021d, "data general communication ltd." },
{ 0x00021e, "simtel s.r.l." },
{ 0x00021f, "aculab plc" },
{ 0x000220, "canon aptex, inc." },
{ 0x000221, "dsp application, ltd." },
{ 0x000222, "chromisys, inc." },
{ 0x000223, "clicktv" },
{ 0x000224, "lantern communications, inc." },
{ 0x000225, "certus technology, inc." },
{ 0x000226, "xesystems, inc." },
{ 0x000227, "esd gmbh" },
{ 0x000228, "necsom, ltd." },
{ 0x000229, "adtec corporation" },
{ 0x00022a, "asound electronic" },
{ 0x00022b, "tamura electric works, ltd." },
{ 0x00022c, "abb bomem, inc." },
{ 0x00022d, "agere systems" },
{ 0x00022e, "teac corp. r& d" },
{ 0x00022f, "p-cube, ltd." },
{ 0x000230, "intersoft electronics" },
{ 0x000231, "axis" },
{ 0x000232, "avision, inc." },
{ 0x000233, "mantra communications, inc." },
{ 0x000234, "imperial technology, inc." },
{ 0x000235, "paragon networks international" },
{ 0x000236, "init gmbh" },
{ 0x000237, "cosmo research corp." },
{ 0x000238, "serome technology, inc." },
{ 0x000239, "visicom" },
{ 0x00023a, "zsk stickmaschinen gmbh" },
{ 0x00023b, "redback networks" },
{ 0x00023c, "creative technology, ltd." },
{ 0x00023d, "nuspeed, inc." },
{ 0x00023e, "selta telematica s.p.a" },
{ 0x00023f, "compal electronics, inc." },
{ 0x000240, "seedek co., ltd." },
{ 0x000241, "amer.com" },
{ 0x000242, "videoframe systems" },
{ 0x000243, "raysis co., ltd." },
{ 0x000244, "surecom technology co." },
{ 0x000245, "lampus co, ltd." },
{ 0x000246, "all-win tech co., ltd." },
{ 0x000247, "great dragon information technology (group) co., ltd." },
{ 0x000248, "pila gmbh & co." },
{ 0x000249, "aviv infocom co, ltd." },
{ 0x00024a, "cisco systems, inc." },
{ 0x00024b, "cisco systems, inc." },
{ 0x00024c, "sibyte, inc." },
{ 0x00024d, "mannesman dematic colby pty. ltd." },
{ 0x00024e, "datacard group" },
{ 0x00024f, "ipm datacom s.r.l." },
{ 0x000250, "geyser networks, inc." },
{ 0x000251, "soma networks" },
{ 0x000252, "carrier corporation" },
{ 0x000253, "televideo, inc." },
{ 0x000254, "worldgate" },
{ 0x000255, "ibm corporation" },
{ 0x000256, "alpha processor, inc." },
{ 0x000257, "microcom corp." },
{ 0x000258, "flying packets communications" },
{ 0x000259, "tsann kuen china (shanghai)enterprise co., ltd. it group" },
{ 0x00025a, "catena networks" },
{ 0x00025b, "cambridge silicon radio" },
{ 0x00025c, "sci systems (kunshan) co., ltd." },
{ 0x00025e, "high technology ltd" },
{ 0x00025f, "nortel networks" },
{ 0x000260, "accordion networks, inc." },
{ 0x000261, "i3 micro technology ab" },
{ 0x000262, "soyo group soyo com tech co., ltd" },
{ 0x000263, "ups manufacturing srl" },
{ 0x000264, "audioramp.com" },
{ 0x000265, "virditech co. ltd." },
{ 0x000266, "thermalogic corporation" },
{ 0x000267, "node runner, inc." },
{ 0x000268, "harris government communications" },
{ 0x000269, "nadatel co., ltd" },
{ 0x00026a, "cocess telecom co., ltd." },
{ 0x00026b, "bcm computers co., ltd." },
{ 0x00026c, "philips cft" },
{ 0x00026d, "adept telecom" },
{ 0x00026e, "negen access, inc." },
{ 0x00026f, "senao international co., ltd." },
{ 0x000270, "crewave co., ltd." },
{ 0x000271, "vpacket communications" },
{ 0x000272, "cc&c technologies, inc." },
{ 0x000273, "coriolis networks" },
{ 0x000274, "tommy technologies corp." },
{ 0x000275, "smart technologies, inc." },
{ 0x000276, "primax electronics ltd." },
{ 0x000277, "cash systemes industrie" },
{ 0x000278, "samsung electro-mechanics co., ltd." },
{ 0x000279, "control applications, ltd." },
{ 0x00027a, "ioi technology corporation" },
{ 0x00027b, "amplify net, inc." },
{ 0x00027c, "trilithic, inc." },
{ 0x00027d, "cisco systems, inc." },
{ 0x00027e, "cisco systems, inc." },
{ 0x00027f, "ask-technologies.com" },
{ 0x000280, "mu net, inc." },
{ 0x000281, "red-m (communications) ltd." },
{ 0x000282, "viaclix, inc." },
{ 0x000283, "spectrum controls, inc." },
{ 0x000284, "alstom t&d p&c" },
{ 0x000285, "riverstone networks" },
{ 0x000286, "occam networks" },
{ 0x000287, "adapcom" },
{ 0x000288, "global village (pccard in mac portable)" },
{ 0x000289, "dne technologies" },
{ 0x00028a, "ambit microsystems corporation" },
{ 0x00028b, "vdsl systems oy" },
{ 0x00028c, "micrel-synergy semiconductor" },
{ 0x00028d, "movita technologies, inc." },
{ 0x00028e, "rapid 5 networks, inc." },
{ 0x00028f, "globetek, inc." },
{ 0x000290, "woorigisool, inc." },
{ 0x000291, "open network co., ltd." },
{ 0x000292, "logic innovations, inc." },
{ 0x000293, "solid data systems" },
{ 0x000294, "tokyo sokushin co., ltd." },
{ 0x000295, "ip.access limited" },
{ 0x000296, "lectron co,. ltd." },
{ 0x000297, "c-cor.net" },
{ 0x000298, "broadframe corporation" },
{ 0x000299, "apex, inc." },
{ 0x00029a, "storage apps" },
{ 0x00029b, "kreatel communications ab" },
{ 0x00029d, "merix corp." },
{ 0x00029e, "information equipment co., ltd." },
{ 0x00029f, "l-3 communication aviation recorders" },
{ 0x0002a0, "flatstack ltd." },
{ 0x0002a1, "world wide packets" },
{ 0x0002a2, "hilscher gmbh" },
{ 0x0002a3, "abb power automation" },
{ 0x0002a4, "addpac technology co., ltd." },
{ 0x0002a5, "compaq computer corporation" },
{ 0x0002a6, "effinet systems co., ltd." },
{ 0x0002a7, "vivace networks" },
{ 0x0002a8, "air link technology" },
{ 0x0002a9, "racom, s.r.o." },
{ 0x0002aa, "plcom co., ltd." },
{ 0x0002ab, "ctc union technologies co., ltd." },
{ 0x0002ac, "3par data" },
{ 0x0002ad, "asahi optical co., ltd." },
{ 0x0002ae, "scannex electronics ltd." },
{ 0x0002af, "telecruz technology, inc." },
{ 0x0002b0, "hokubu communication & industrial co., ltd." },
{ 0x0002b1, "anritsu, ltd." },
{ 0x0002b2, "cablevision" },
{ 0x0002b3, "intel corporation" },
{ 0x0002b4, "daphne" },
{ 0x0002b5, "avnet, inc." },
{ 0x0002b6, "acrosser technology co., ltd." },
{ 0x0002b7, "watanabe electric industry co., ltd." },
{ 0x0002b8, "whi konsult ab" },
{ 0x0002b9, "cisco systems, inc." },
{ 0x0002ba, "cisco systems, inc." },
{ 0x0002bb, "continuous computing" },
{ 0x0002bc, "lvl 7 systems, inc." },
{ 0x0002bd, "bionet co., ltd." },
{ 0x0002be, "totsu engineering, inc." },
{ 0x0002bf, "dotrocket, inc." },
{ 0x0002c0, "bencent tzeng industry co., ltd." },
{ 0x0002c1, "innovative electronic designs, inc." },
{ 0x0002c2, "net vision telecom" },
{ 0x0002c3, "arelnet ltd." },
{ 0x0002c4, "vector international buba" },
{ 0x0002c5, "evertz microsystems ltd." },
{ 0x0002c6, "data track technology plc" },
{ 0x0002c7, "alps electric co., ltd." },
{ 0x0002c8, "technocom communications technology (pte) ltd" },
{ 0x0002c9, "mellanox technologies" },
{ 0x0002ca, "endpoints, inc." },
{ 0x0002cb, "tristate ltd." },
{ 0x0002cc, "m.c.c.i" },
{ 0x0002cd, "teledream, inc." },
{ 0x0002ce, "foxjet, inc." },
{ 0x0002cf, "zygate communications, inc." },
{ 0x0002d0, "comdial corporation" },
{ 0x0002d1, "vivotek, inc." },
{ 0x0002d2, "workstation ag" },
{ 0x0002d3, "netbotz, inc." },
{ 0x0002d4, "pda peripherals, inc." },
{ 0x0002d5, "acr" },
{ 0x0002d6, "nice systems" },
{ 0x0002d7, "empeg ltd" },
{ 0x0002d8, "brecis communications corporation" },
{ 0x0002d9, "reliable controls" },
{ 0x0002da, "exio communications, inc." },
{ 0x0002db, "netsec" },
{ 0x0002dc, "fujitsu general limited" },
{ 0x0002dd, "bromax communications, ltd." },
{ 0x0002de, "astrodesign, inc." },
{ 0x0002df, "net com systems, inc." },
{ 0x0002e0, "etas gmbh" },
{ 0x0002e1, "integrated network corporation" },
{ 0x0002e2, "ndc infared engineering" },
{ 0x0002e3, "lite-on communications, inc." },
{ 0x0002e4, "jc hyun systems, inc." },
{ 0x0002e5, "timeware ltd." },
{ 0x0002e6, "gould instrument systems, inc." },
{ 0x0002e7, "cab gmbh & co kg" },
{ 0x0002e8, "e.d.&a." },
{ 0x0002e9, "cs systemes de securite - c3s" },
{ 0x0002ea, "videonics, inc." },
{ 0x0002eb, "easent communications" },
{ 0x0002ec, "maschoff design engineering" },
{ 0x0002ed, "dxo telecom co., ltd." },
{ 0x0002ee, "nokia danmark a/s" },
{ 0x0002ef, "ccc network systems group ltd." },
{ 0x0002f0, "ame optimedia technology co., ltd." },
{ 0x0002f1, "pinetron co., ltd." },
{ 0x0002f2, "edevice, inc." },
{ 0x0002f3, "media serve co., ltd." },
{ 0x0002f4, "pctel, inc." },
{ 0x0002f5, "vive synergies, inc." },
{ 0x0002f6, "equipe communications" },
{ 0x0002f7, "arm" },
{ 0x0002f8, "seakr engineering, inc." },
{ 0x0002f9, "mimos semiconductor sdn bhd" },
{ 0x0002fa, "dx antenna co., ltd." },
{ 0x0002fb, "baumuller aulugen-systemtechnik gmbh" },
{ 0x0002fc, "cisco systems, inc." },
{ 0x0002fd, "cisco systems, inc." },
{ 0x0002fe, "viditec, inc." },
{ 0x0002ff, "handan broad infocom" },
{ 0x000300, "netcontinuum, inc." },
{ 0x000301, "avantas networks corporation" },
{ 0x000302, "oasys telecom, inc." },
{ 0x000303, "jama electronics co., ltd." },
{ 0x000304, "pacific broadband communications" },
{ 0x000305, "smart network devices gmbh" },
{ 0x000306, "fusion in tech co., ltd." },
{ 0x000307, "secure works, inc." },
{ 0x000308, "am communications, inc." },
{ 0x000309, "texcel technology plc" },
{ 0x00030a, "argus technologies" },
{ 0x00030b, "hunter technology, inc." },
{ 0x00030c, "telesoft technologies ltd." },
{ 0x00030d, "uniwill computer corp." },
{ 0x00030e, "core communications co., ltd." },
{ 0x00030f, "legend digital china ltd." },
{ 0x000310, "link evolution corp." },
{ 0x000311, "micro technology co., ltd." },
{ 0x000312, "tr-systemtechnik gmbh" },
{ 0x000313, "access media spa" },
{ 0x000314, "teleware network systems" },
{ 0x000315, "cidco incorporated" },
{ 0x000316, "nobell communications, inc." },
{ 0x000317, "merlin systems, inc." },
{ 0x000318, "cyras systems, inc." },
{ 0x000319, "infineon ag" },
{ 0x00031a, "beijing broad telecom ltd., china" },
{ 0x00031b, "cellvision systems, inc." },
{ 0x00031c, "svenska hardvarufabriken ab" },
{ 0x00031d, "taiwan commate computer, inc." },
{ 0x00031e, "optranet, inc." },
{ 0x00031f, "condev ltd." },
{ 0x000320, "xpeed, inc." },
{ 0x000321, "reco research co., ltd." },
{ 0x000322, "idis co., ltd." },
{ 0x000323, "cornet technology, inc." },
{ 0x000324, "tottori sanyo electric co., ltd." },
{ 0x000325, "arima computer corp." },
{ 0x000326, "iwasaki information systems co., ltd." },
{ 0x000327, "act'l" },
{ 0x000328, "mace group, inc." },
{ 0x000329, "f3, inc." },
{ 0x00032a, "unidata communication systems, inc." },
{ 0x00032b, "gai datenfunksysteme gmbh" },
{ 0x00032c, "abb industrie ag" },
{ 0x00032d, "ibase technology, inc." },
{ 0x00032e, "scope information management, ltd." },
{ 0x00032f, "global sun technology, inc." },
{ 0x000330, "imagenics, co., ltd." },
{ 0x000331, "cisco systems, inc." },
{ 0x000332, "cisco systems, inc." },
{ 0x000333, "digitel co., ltd." },
{ 0x000334, "newport electronics" },
{ 0x000335, "mirae technology" },
{ 0x000336, "zetes technologies" },
{ 0x000337, "vaone, inc." },
{ 0x000338, "oak technology" },
{ 0x000339, "eurologic systems, ltd." },
{ 0x00033a, "silicon wave, inc." },
{ 0x00033b, "tami tech co., ltd." },
{ 0x00033c, "daiden co., ltd." },
{ 0x00033d, "ilshin lab" },
{ 0x00033e, "tateyama system laboratory co., ltd." },
{ 0x00033f, "bigband networks, ltd." },
{ 0x000340, "floware wireless systems, ltd." },
{ 0x000341, "axon digital design" },
{ 0x000342, "nortel networks" },
{ 0x000343, "martin professional a/s" },
{ 0x000344, "tietech.co., ltd." },
{ 0x000345, "routrek networks corporation" },
{ 0x000346, "hitachi kokusai electric, inc." },
{ 0x000347, "intel corporation" },
{ 0x000348, "norscan instruments, ltd." },
{ 0x000349, "vidicode datacommunicatie b.v." },
{ 0x00034a, "rias corporation" },
{ 0x00034b, "nortel networks" },
{ 0x00034c, "shanghai digivision technology co., ltd." },
{ 0x00034d, "chiaro networks, ltd." },
{ 0x00034e, "pos data company, ltd." },
{ 0x00034f, "sur-gard security" },
{ 0x000350, "bticino spa" },
{ 0x000351, "diebold, inc." },
{ 0x000352, "colubris networks" },
{ 0x000353, "mitac, inc." },
{ 0x000354, "fiber logic communications" },
{ 0x000355, "terabeam internet systems" },
{ 0x000356, "wincor nixdorf gmbh & co kg" },
{ 0x000357, "intervoice-brite, inc." },
{ 0x000358, "icable system co., ltd." },
{ 0x000359, "digitalsis" },
{ 0x00035a, "phototron limited" },
{ 0x00035b, "bridge wave communications" },
{ 0x00035c, "saint song corp." },
{ 0x00035d, "bosung hi-net co., ltd." },
{ 0x00035e, "metropolitan area networks, inc." },
{ 0x00035f, "schuehle mess - und. kontrollsysteme" },
{ 0x000360, "pac interactive technology, inc." },
{ 0x000361, "widcomm, inc." },
{ 0x000362, "vodtel communications, inc." },
{ 0x000363, "miraesys co., ltd." },
{ 0x000364, "scenix semiconductor, inc." },
{ 0x000365, "kira information & communications, ltd." },
{ 0x000366, "asm pacific technology" },
{ 0x000367, "jasmine networks, inc." },
{ 0x000368, "embedone co., ltd." },
{ 0x000369, "nippon antenna co., ltd." },
{ 0x00036a, "mainnet, ltd." },
{ 0x00036b, "cisco systems, inc." },
{ 0x00036c, "cisco systems, inc." },
{ 0x00036d, "runtop, inc." },
{ 0x00036e, "nicon systems (pty) limited" },
{ 0x00036f, "telsey spa" },
{ 0x000370, "nxtv, inc." },
{ 0x000371, "acomz networks corp." },
{ 0x000372, "ulan" },
{ 0x000373, "aselsan a.s" },
{ 0x000374, "hunter watertech" },
{ 0x000375, "netmedia, inc." },
{ 0x000376, "graphtec technology, inc." },
{ 0x000377, "gigabit wireless" },
{ 0x000378, "humax co., ltd." },
{ 0x000379, "proscend communications, inc." },
{ 0x00037a, "taiyo yuden co., ltd." },
{ 0x00037b, "idec izumi corporation" },
{ 0x00037c, "coax media" },
{ 0x00037d, "stellcom" },
{ 0x00037e, "portech communications, inc." },
{ 0x00037f, "atheros communications, inc." },
{ 0x000381, "ingenico international" },
{ 0x000382, "a-one co., ltd." },
{ 0x000383, "metera networks, inc." },
{ 0x000384, "aeta" },
{ 0x000385, "actelis networks, inc." },
{ 0x000386, "ho net, inc." },
{ 0x000387, "blaze network products" },
{ 0x000388, "fastfame technology co., ltd." },
{ 0x000389, "plantronics" },
{ 0x00038a, "america online, inc." },
{ 0x00038b, "plus-one i&t, inc." },
{ 0x00038c, "total impact" },
{ 0x00038d, "pcs revenue control systems, inc." },
{ 0x00038e, "atoga systems, inc." },
{ 0x00038f, "weinschel corporation" },
{ 0x000390, "digital video communications, inc." },
{ 0x000392, "hyundai teletek co., ltd." },
{ 0x000393, "apple computer, inc." },
{ 0x000394, "connect one" },
{ 0x000395, "california amplifier" },
{ 0x000396, "ez cast co., ltd." },
{ 0x000397, "watchfront electronics" },