-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCTRON-OIDS
8370 lines (7215 loc) · 200 KB
/
CTRON-OIDS
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
CTRON-OIDS DEFINITIONS ::= BEGIN
IMPORTS
enterprises
FROM RFC1155-SMI;
cabletron OBJECT IDENTIFIER ::= { enterprises 52 }
-- Organization
-- Enterasys Networks
-- ContactInfo
-- Postal: Enterasys Networks
-- 50 Minuteman Rd.
-- Andover, MA 01801-1008
-- USA
-- Phone: +1 978 684 1000
-- E-mail: [email protected]
-- WWW: http://www.enterasys.com
-- Description
-- ctron-oids.txt
-- Part Number: 2170562-01
-- LAST-UPDATED "200311041539Z" - Tue Nov 4 15:39 GMT 2003
-- REVISION "200311041539Z" - Tue Nov 4 15:39 GMT 2003
-- DESCRIPTION "Added OIDs for powerPC8241 and powerPC8245."
--
-- REVISION "September 11, 2001"
-- DESCRIPTION "Revision: 1.19.15"
--
-- This module provides authoritative definitions for part
-- of the naming tree below:
--
-- cabletron { enterprises 52 }
--
-- This module will be extended, as additional sub-sections
-- of this naming tree are defined.
--
-- Enterasys Networks reserves the right to make changes in
-- specification and other information contained in this document
-- without prior notice. The reader should consult Enterasys Networks
-- to determine whether any such changes have been made.
--
-- In no event shall Enterasys Networks be liable for any incidental,
-- indirect, special, or consequential damages whatsoever (including
-- but not limited to lost profits) arising out of or related to this
-- document or the information contained in it, even if Enterasys
-- Networks has been advised of, known, or should have known, the
-- possibility of such damages.
--
-- Enterasys grants vendors, end-users, and other interested parties
-- a non-exclusive license to use this Specification in connection
-- with the management of Enterasys or Cabletron products.
--
-- Copyright February 1999 Cabletron Systems
-- Copyright September 2001 Enterasys Networks
--
-- The assigned enterprise MIB tree for Cabletron System
namingTree OBJECT IDENTIFIER ::= { cabletron 3 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- All Cabletron identification object identifiers.
v2conformance OBJECT IDENTIFIER ::= { cabletron 5 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Cabletron v2conformance tree. All MIBs which comply to v2
-- standards are identified under this branch. The actual
-- object definitions for the compliance statements and agent
-- ability statements are contained in their corresponding
-- MIB module.
trapDefinitions OBJECT IDENTIFIER ::= { cabletron 6 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- With the advent of SNMPv2 all traps are identified via
-- an OID. This branch of the Cabletron naming tree is
-- reserved for all Cabletron trap definitions.
chassisType OBJECT IDENTIFIER ::= { namingTree 1 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- This is the chassis type naming tree. Every chassis has a
-- unique value in this branch.
ctUnknown OBJECT IDENTIFIER ::= { chassisType 1 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- If the chassis type is unknown this value is used.
ctMMAC8 OBJECT IDENTIFIER ::= { chassisType 2 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- The MMAC8 chassis.
ctMMAC5 OBJECT IDENTIFIER ::= { chassisType 3 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- The MMAC5 chassis type.
ctMMAC3 OBJECT IDENTIFIER ::= { chassisType 4 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- The MMAC3 chassis type.
ctMINIMMAC OBJECT IDENTIFIER ::= { chassisType 5 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- The Mini-MMAC chassis type.
ctMRXI OBJECT IDENTIFIER ::= { chassisType 6 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- The MRXi-24 chassis type.
ctM3FNBShunt OBJECT IDENTIFIER ::= { chassisType 7 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
ctM5FNBShunt OBJECT IDENTIFIER ::= { chassisType 8 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
ctM8FNB OBJECT IDENTIFIER ::= { chassisType 9 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
ctNonFNB OBJECT IDENTIFIER ::= { chassisType 10 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- The non FNB chassis type.
ctMMAC3FNBShunt OBJECT IDENTIFIER ::= { chassisType 11 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
ctMMAC5FNBShunt OBJECT IDENTIFIER ::= { chassisType 12 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
ctMMAC8FNBShunt OBJECT IDENTIFIER ::= { chassisType 13 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
ctM8FNBShunt OBJECT IDENTIFIER ::= { chassisType 14 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
ctTRXI OBJECT IDENTIFIER ::= { chassisType 15 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- The TRXI chassis type.
ctStandAlone OBJECT IDENTIFIER ::= { chassisType 16 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- This type is used for all standalone chassis.
ctMMACPlus14 OBJECT IDENTIFIER ::= { chassisType 17 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- The 14 device slot MMAC Plus chassis.
ctMMACPlus6 OBJECT IDENTIFIER ::= { chassisType 18 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- The 6 device slot MMAC Plus chassis.
ctWanCyberSwitchNE2000 OBJECT IDENTIFIER ::= { chassisType 19 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- LAN/WAN Bridge/Router with 3 slots to accomodate multiple WAN
-- technologies. Up to 8 ISDN BRI ports or 2 PRI ports, Digital
-- Modem, V.35 and Dedicated Lines. Supports TCP/IP and optionally
-- IPX, Frame Relay and X.25. Supports ML-PPP and compression. Single
-- or dual port Ethernet capability.
ctWanCyberSwitchNe4000 OBJECT IDENTIFIER ::= { chassisType 20 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- LAN/WAN Bridge/Router with 6 slots to accomodate multiple WAN
-- technologies. Up to 16 ISDN BRI ports or 4 PRI ports, Digital
-- Modem, V.35 and Dedicated Lines. Supports TCP/IP and optionally
-- IPX, Frame Relay and X.25. Supports ML-PPP and compression. Single
-- or dual port Ethernet capability.
ctWanCyberSwitchNE5000 OBJECT IDENTIFIER ::= { chassisType 21 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- LAN/WAN Bridge/Router with 8 slots to accomodate multiple WAN
-- technologies. Up to 24 ISDN BRI ports or 6 PRI ports, Digital
-- Modem, V.35 and Dedicated Lines. Supports TCP/IP and optionally
-- IPX, Frame Relay and X.25. Supports ML-PPP and compression. Single
-- or dual port Ethernet capability.
moduleType OBJECT IDENTIFIER ::= { namingTree 2 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- This naming tree is for all older Cabletron modules. Newer
-- devices are defined under { namingTree 9 }.
mtThinMim1 OBJECT IDENTIFIER ::= { moduleType 16 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
mtFDMMIM24 OBJECT IDENTIFIER ::= { moduleType 32 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
mtFDMMIM14to46 OBJECT IDENTIFIER ::= { moduleType 33 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- FDDI to Ethernet Bridge/Management (MIM MMF A/B and 4 STP M ports,
-- 6 STP DB 9 M ports, 6 UTP M ports, 6 STP RJ45 M ports)
mtFDMMIM04To44 OBJECT IDENTIFIER ::= { moduleType 34 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- FDDI to Ethernet Bridge/Management MIM 4 SAS to 4 STP M ports
mtFDMMIM00 OBJECT IDENTIFIER ::= { moduleType 35 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- FDDI to Ethernet Bridge/Management MIM
mtFDMMIM30 OBJECT IDENTIFIER ::= { moduleType 39 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- FDDI to Ethernet Bridge/Management SMF A/B
mtFDCMIM28 OBJECT IDENTIFIER ::= { moduleType 40 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- FDDI Concentrator with 8 UTP M ports
mtFDCMIM18 OBJECT IDENTIFIER ::= { moduleType 41 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- FDDI Concentrator with 8 STP M ports
mtFDCMIM08 OBJECT IDENTIFIER ::= { moduleType 42 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- FDDI Concentrator with 8 PMD M ports
mtFDCMIM04 OBJECT IDENTIFIER ::= { moduleType 43 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- FDDI Concentrator with 4 PMD M ports
mtFDCMIM24 OBJECT IDENTIFIER ::= { moduleType 44 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- FDDI Concentrator with 4 UTP M ports
mtFDCMIM14 OBJECT IDENTIFIER ::= { moduleType 45 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- FDDI Concentrator with 4 STP M ports
mtFDCMIM38 OBJECT IDENTIFIER ::= { moduleType 46 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- FDDI Concentrator with 8 SMF M ports
mtFDCMIM34 OBJECT IDENTIFIER ::= { moduleType 47 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- FDDI Concentrator with 4 SMF M ports
mtTRMIM12 OBJECT IDENTIFIER ::= { moduleType 48 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 12 Port STP DB9s
mtTRMIM10R OBJECT IDENTIFIER ::= { moduleType 49 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 10 Port STP DB9s, Ring-In/Ring-Out copper
mtTRMIM22 OBJECT IDENTIFIER ::= { moduleType 50 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 12 Port UTP with RJ45s
mtTRMIM20R OBJECT IDENTIFIER ::= { moduleType 51 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 10 Port UTP with RJ45 with Ring-In/Ring-Out DB9
mtTRMIM62A OBJECT IDENTIFIER ::= { moduleType 52 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 12 port COAX with BNC connectors.
mtTRMIM24ToA OBJECT IDENTIFIER ::= { moduleType 54 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 24 Port UTP with RJ45, passive to active
mtTRMIM22ToA OBJECT IDENTIFIER ::= { moduleType 55 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 12 Port UTP with RJ45, passive to active
mtTRFMIM28 OBJECT IDENTIFIER ::= { moduleType 56 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 18 Port with multi-mode fiber ST connectors
mtTRFMIM22 OBJECT IDENTIFIER ::= { moduleType 57 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 12 Port multi-mode fiber with ST connectors
mtTRRMIMA OBJECT IDENTIFIER ::= { moduleType 58 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Token-Ring Repeater with copper/fiber Ring-In/Ring-Out
mtTRFMIM26 OBJECT IDENTIFIER ::= { moduleType 59 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 6 Port multi-mode fiber with ST connectors
mtTRMIM34A OBJECT IDENTIFIER ::= { moduleType 60 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 24 Port active UTP with 2 50 Pos
mtTRMIM32A OBJECT IDENTIFIER ::= { moduleType 61 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 12 Port active UTP with 1 50 Pos
mtTRMIM44ToA OBJECT IDENTIFIER ::= { moduleType 62 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 24 Port STP with shielded RJ45s, passive to active
mtTRMIM42ToA OBJECT IDENTIFIER ::= { moduleType 63 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 12 Port STP with shielded RJ45s, passive to active
mtTPMIMT1 OBJECT IDENTIFIER ::= { moduleType 65 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 10Base-T, 12 DB9s, non-ASIC based
mtTPMIMT OBJECT IDENTIFIER ::= { moduleType 66 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 10Base-T, 12 RJ45s non-ASIC based
mtTPMIMT3 OBJECT IDENTIFIER ::= { moduleType 67 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 10Base-T, 1 50 Pos., non-ASIC based
mtThinMim2 OBJECT IDENTIFIER ::= { moduleType 80 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
mtTPMIM24 OBJECT IDENTIFIER ::= { moduleType 96 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 10Base-T, 24 RJ45s, ASIC based
mtTPMIM22 OBJECT IDENTIFIER ::= { moduleType 97 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 10Base-T, 12 RJ45s, ASIC based
mtTPMIM34 OBJECT IDENTIFIER ::= { moduleType 98 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 10Base-T, 2 50 Pos, ASIC based
mtTPMIM32 OBJECT IDENTIFIER ::= { moduleType 99 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 10Base-T, 1 50 Pos, ASIC based
mtTPRMIM100I OBJECT IDENTIFIER ::= { moduleType 111 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- MMAC Module - 22 port (RJ45 with one EPIM slot)
-- 100Base-TX repeater module with management
mtTPRMIM33 OBJECT IDENTIFIER ::= { moduleType 112 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 13 Port 10Base-T, 1 50 Post with Ethernet Port Interface Module
mtTPRMIM36 OBJECT IDENTIFIER ::= { moduleType 113 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 26 Port 10Base-T, 2 50 Pos, AUI/Ethernet Port Interface Module
mtCXRMIM OBJECT IDENTIFIER ::= { moduleType 114 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 13 Port 10Base-2, with Ethernet Port Interface Module
mtFORMIM22 OBJECT IDENTIFIER ::= { moduleType 115 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 12 Port 10Base-FF/FOIRL, ST
mtTPRMIM20 OBJECT IDENTIFIER ::= { moduleType 116 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 9 Port 10Base-T RJ45s, with Ethernet Port Interface Module
mtTPRMIM22 OBJECT IDENTIFIER ::= { moduleType 117 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 21 Port 10Base-T RJ45s, with Ethernet Port Interface Module
mtTPRMIM20S OBJECT IDENTIFIER ::= { moduleType 118 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 9 Port 10Base-T RJ45s with one EPIM all ports support
-- LANVIEW/SECURE
mtTPRMIM22S OBJECT IDENTIFIER ::= { moduleType 119 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 21 Port 10Base-T RJ45s with one EPIM all ports support
-- LANVIEW/SECURE.
mtTPRMIM33S OBJECT IDENTIFIER ::= { moduleType 120 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 13 Port 10Base-T 1 50 Post with EPIM all ports support
-- LANVIEW/SECURE.
mtTPRMIM36S OBJECT IDENTIFIER ::= { moduleType 121 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 26 Port 10Base-T 2 50 Post with EPIM all ports support
-- LANVIEW/SECURE.
mtCXRMIMs OBJECT IDENTIFIER ::= { moduleType 122 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 13 Port 10Base-2 with EPIM all ports support
-- LANVIEW/SECURE.
mtFormim22S OBJECT IDENTIFIER ::= { moduleType 123 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 12 Port 10Base-FF/FIORL, ST all ports support
-- LANVIEW/SECURE.
mtFBRMIM26 OBJECT IDENTIFIER ::= { moduleType 126 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 6 Port 10Base-FB RIC Media Interface Module
mtFBRMIM22 OBJECT IDENTIFIER ::= { moduleType 127 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 12 Port 10Base-FB RIC Media Interface Module
mtFOMIM18 OBJECT IDENTIFIER ::= { moduleType 144 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- FOIRL, 18 Ports, SMA ASIC based
mtFOMIM12 OBJECT IDENTIFIER ::= { moduleType 146 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- FOIRL, 12 Ports, SMA ASIC based
mtFOMIM16 OBJECT IDENTIFIER ::= { moduleType 147 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- FOIRL, 6 Ports, SMA ASIC based
mtFOMIM28 OBJECT IDENTIFIER ::= { moduleType 148 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- FOIRL, 18 Ports, ST ASIC based
mtFOMIM22 OBJECT IDENTIFIER ::= { moduleType 150 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- FOIRL, 12 Ports, ST ASIC based
mtFOMIM26 OBJECT IDENTIFIER ::= { moduleType 151 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- FOIRL, 6 Ports, ST ASIC based
mtFOMIM38 OBJECT IDENTIFIER ::= { moduleType 152 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Single Mode Fiber, 18 Ports, ST
mtFOMIM32 OBJECT IDENTIFIER ::= { moduleType 154 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Single Mode Fiber, 12 Ports, ST
mtFOMIM36 OBJECT IDENTIFIER ::= { moduleType 155 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Single Mode Fiber, 6 Ports, ST
mtMT8MIM OBJECT IDENTIFIER ::= { moduleType 160 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
mtIRM2 OBJECT IDENTIFIER ::= { moduleType 176 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- ASIC Based IRM for Ethernet
mtIRBM OBJECT IDENTIFIER ::= { moduleType 177 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 2 Port Bridging/Management Module
mtIRM3 OBJECT IDENTIFIER ::= { moduleType 178 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Advanced IRM-2
mtTRMM1 OBJECT IDENTIFIER ::= { moduleType 179 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- New TRMM
mtTRMM2 OBJECT IDENTIFIER ::= { moduleType 180 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Token Ring to Token Ring Module-One frontpanel one
-- backplane
mtTRMMIM1 OBJECT IDENTIFIER ::= { moduleType 181 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Mid Chassis TRMM
mtEFDMIM OBJECT IDENTIFIER ::= { moduleType 182 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Ethernet to FDDI Bridge
mtTRMM4 OBJECT IDENTIFIER ::= { moduleType 183 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 4 port Token Ring Management Module.
mtTRBMIM OBJECT IDENTIFIER ::= { moduleType 184 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Token Ring to Token Ring Bridge module.
mtEMME OBJECT IDENTIFIER ::= { moduleType 185 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Ethernet 4 Port Bridging/Management
mtESXMIM OBJECT IDENTIFIER ::= { moduleType 186 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Ethernet Switching Module, IMIM
mtTRMM OBJECT IDENTIFIER ::= { moduleType 187 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Token Ring Management Module, slot 1
mtTRMMIM2 OBJECT IDENTIFIER ::= { moduleType 188 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Token Ring to Token Ring Bridge/Management Media Interface Modules
mtETWMIM OBJECT IDENTIFIER ::= { moduleType 189 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Ethernet/Token Ring/WAN Bridge
mtTRMMIM OBJECT IDENTIFIER ::= { moduleType 190 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Mid Chassis TRMM
mtESXMIMF2 OBJECT IDENTIFIER ::= { moduleType 191 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Ethernet switching module with multimode fiber ST
-- connectors.
mtFOT12or22 OBJECT IDENTIFIER ::= { moduleType 192 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- RESERVED for ESXMIM22 OBJECT IDENTIFIER ::= { moduleType 200 }
-- reserved for Jerry Baur
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- RESERVED for 100TPRMIM OBJECT IDENTIFIER ::= { moduleType 201 }
-- reserved for Jerry Baur
-- OBJECT-IDENTITY
-- Status
-- mandatory
mtTPTMIM OBJECT IDENTIFIER ::= { moduleType 208 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
mtFOT16or26 OBJECT IDENTIFIER ::= { moduleType 224 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
mtSNACRS232wRS232 OBJECT IDENTIFIER ::= { moduleType 240 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- RS232 with RS232 DB
mtSNACRS232wV35 OBJECT IDENTIFIER ::= { moduleType 241 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- RS232 with V.35 DB
mtSNACRS232wRS530 OBJECT IDENTIFIER ::= { moduleType 242 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- RS232 with RS530 DB
mtSNACRS232wNoDB OBJECT IDENTIFIER ::= { moduleType 243 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- RS232 without DB
mtSNACV35wRS232 OBJECT IDENTIFIER ::= { moduleType 244 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- V.35 with RS232 DB
mtSNACV35wV35 OBJECT IDENTIFIER ::= { moduleType 245 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- V.35 with V.35 DB
mtSNACV35wRS350 OBJECT IDENTIFIER ::= { moduleType 246 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- V.35 with RS530 DB
mtSNACV35wNoDB OBJECT IDENTIFIER ::= { moduleType 247 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- V.35 without DB
mtSNACRS530wRS232 OBJECT IDENTIFIER ::= { moduleType 248 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- RS530 with RS232 DB
mtSNACRS530wV35 OBJECT IDENTIFIER ::= { moduleType 249 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- RS530 with V.35 DB
mtSNACRS530wRS530 OBJECT IDENTIFIER ::= { moduleType 250 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- RS530 with RS530 DB
mtSNACRS530wNoDB OBJECT IDENTIFIER ::= { moduleType 251 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- RS530 without DB
mtSNACMIMConnectivity OBJECT IDENTIFIER ::= { moduleType 252 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- SNA Connectivity Media Interface Module
mtSNACConnectivityMIM OBJECT IDENTIFIER ::= { moduleType 253 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- SNA Connectivity Media Interface Module
mtSNACConnectivity OBJECT IDENTIFIER ::= { moduleType 254 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- SNA Connectivity Media Interface Module
mtNull OBJECT IDENTIFIER ::= { moduleType 255 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- No Media Interface Module Installed
mtTRMIMa10R OBJECT IDENTIFIER ::= { moduleType 305 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 10 Port STP DB9s, Ring-In/Ring-Out with autowrap feature
mtTRMIMa20R OBJECT IDENTIFIER ::= { moduleType 307 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 10 Port UTP with RJ45s with Ring-In/Ring-Out DB9 with autowrap feature
mtTRMIM22ARO OBJECT IDENTIFIER ::= { moduleType 311 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- active MIM with 12 UTP ports with Ring-Out capabilities (93 series)
mtTRRMIM2A OBJECT IDENTIFIER ::= { moduleType 314 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Token-Ring Repeater with 12 UTP RJ45s, DB9/Fiber Optic
-- Ring-In/Ring-Out
mtTRMIM24ARO OBJECT IDENTIFIER ::= { moduleType 566 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- active MIM with 24 UTP ports with Ring-Out capabilities (93 series)
mtTRRMIM4A OBJECT IDENTIFIER ::= { moduleType 570 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Token-Ring Repeater with 12 STP RJ45s, DB9/Fiber Optic
-- Ring-In/Ring-Out
mtTRRMIMAT OBJECT IDENTIFIER ::= { moduleType 826 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- repeater with no stations and TPIM Ring-In/Ring-Out
mtTRMIM42ARO OBJECT IDENTIFIER ::= { moduleType 831 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- active MIM with 12 STP ports with Ring-Out capabilities (93 series)
mtTRRMIM2AT OBJECT IDENTIFIER ::= { moduleType 1082 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- repeater with 12 active UTP stations and TPIM Ring-In/Ring-Out
mtTRMIM44ARO OBJECT IDENTIFIER ::= { moduleType 1086 }
-- OBJECT-IDENTITY
-- Status