forked from AlexandreYang/snmp-mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
A3COM-HUAWEI-ENTITY-VENDORTYPE-OID-MIB
executable file
·3360 lines (1887 loc) · 224 KB
/
A3COM-HUAWEI-ENTITY-VENDORTYPE-OID-MIB
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-2012 Hangzhou H3C Tech. Co., Ltd. All rights reserved.
--
-- Description:the definition of H3C Entity Vendortype OID
-- Reference:
-- Version: V4.59
-- History:
-- V1.0 2004.05.13 Created by lvzhenfeng, modified by gaolong.
-- V1.1 2004.05.22 Adjusted by gaolong and lvzhenfeng.
-- 1. Adjust module name to h3cEntityVendorTypeOID and its location is set to { h3c 3 }.
-- 2. Rename module name prefix from h3cevtModule to h3cevtModuleRt_
-- and h3cevtModuleSw_ for routers and switches seperately.
-- 3. Add h3cevtSubModuleRouter and h3cevtSubModuleSwitch under h3cevtModule.
-- 4. Split port type into two groups, one for routers, another for switches.
-- V1.11 2004.6.17 add h3cevtHotSwapFan node by limeng for garibaldi
-- V1.12 2004.7.19 add h3cevtModuleSwitchType {117-138}
-- V1.13 2004.7.29 add h3cevtPortSwitchType {50-58}
-- V1.14 2004.8.12 add h3cevtModuleSw_LSA1FP8U(h3cevtModuleSwitchType 139)
-- V1.15 2004.8.25 change enumeration name
-- from h3cevtModuleSw_LS81SFCA(120) to h3cevtModuleSw_LS81SRPG0(120),
-- from h3cevtModuleSw_LS81SFCB(121) to h3cevtModuleSw_LS81SRPG1(121),
-- from h3cevtModuleSw_LS81SFCC(122) to h3cevtModuleSw_LS81SRPG2(122),
-- from h3cevtModuleSw_LS81SFCD(123) to h3cevtModuleSw_LS81SRPG3(123).
-- modify comments for these enumerations as well.
-- V1.2 2004.8.26 add sub identifier of h3cevtPortSwitchType from 59 to 71.
-- V1.21 2004.09.08 add sub identifier of h3cevtModuleSwitchType from 140 to 148.
-- V1.3 2004-09-14 add subidentifier under h3cevtModuleSwitchType from 149 to 157 by wangyahui
-- add subidentifier under h3cevtModuleSwitchType from 158 to 159 by kangyinan
-- add subidentifier under h3cevtModuleSwitchType from 72 to 93 by wangyahui
-- add subidentifier under h3cevtModuleSwitchType from 94 to 96 by kangyinan
-- add type description for h3cevtModuleSw_SP4, h3cevtModuleSw_UP1, h3cevtModuleSw_XP4 by kangyinan
-- V2.0 2004-10-12 updated by gaolong
-- Change all underscore('_') characters to hyphen characters('-') because underscore character is not allowed in MIB module.
-- Remove some adjacent hyphens
-- V2.1 2004-10-19 add subidentifier under h3cevtModuleSwitchType from 160 to 162 by kangyinan
-- add subidentifier under h3cevtPortSwitchType 97 by kangyinan
-- V2.2 2004-09-18 add sub identifier for h3cevtModuleRouterType from 111 to 117 by taotao
-- V2.3 2004-11-18 add sub identifier 2 under h3cevtFan by liyutao
-- V2.4 2004-11-23 add subidentifier under h3cevtModuleSwitchType from 163 to 166 by zhangchengmei
-- V2.5 2004-12-04 add subidentifier 118 under h3cevtModuleRouterType by lizhiyong
-- V2.6 2004-12-23 add sub identifier 4 to 7 under h3cevtPowerSupply by Zhangjianfeng
-- add sub identifier 167 to 169 under h3cevtModuleSwitchType by Zhangjianfeng
-- V2.7 2004-12-26 add subidentifier 170 under h3cevtModuleSwitchType by wangyahui
-- v2.8 2004-12-23 add subidentifier under h3cevtModuleSwitchType from 171 to 172 and
-- add sub identifier 98 to 99 under h3cevtPortSwitchType by liyue
-- V2.9 2004-12-26 add sub identifier 173 under h3cevtModuleSwitchType by Zhangjianfeng
-- add sub identifier 100 for 24G cascade port under h3cevtPort by Zhangjianfeng
-- V3.0 2004-01-07 add subidentifier 174 and 175 under h3cevtModuleSwitchType by wangyahui
-- V3.1 2005-01-31 add subidentifier 176 under h3cevtModuleSwitchType by wangyahui
-- V3.2 2005-02-26 add subidentifier 177 under h3cevtModuleSwitchType by zhangchengmei
-- add subidentifier 101 to 137 under h3cevtPortSwitchType by zhangchengmei
-- add subidentifier 178 under h3cevtModuleSwitchType by zhouqiang
-- add subidentifier 138 under h3cevtPortSwitchType by zhouqiang
-- add subidentifier 179 to 180 under h3cevtModuleSwitchType by wangyahui
-- remove trailing spaces
-- V3.3 2005-03-22 add subidentifier 181 to 187 under h3cevtModuleSwitchType by zhangchengmei
-- V3.4 2004-12-29 add subidentifier 119 to 120 under h3cevtModuleRouterType by lizhiyong
-- V3.5 2005-04-12 add subidentifier 141 to 144 under h3cevtModuleRouterType by yinxiaoyu
-- add subidentifier 30 to 33 under h3cevtPortRouterType by yinxiaoyu
-- V3.6 2005-04-07 add subidentifier 121 to 140 under h3cevtModuleRouterType by taotao
-- change the name of subidentifier 118 under h3cevtModuleRouterType by taotao
-- adjust file format
-- V3.7 2005-05-10 add subidentifier 188 to 216 under h3cevtModuleSwitchType by zhangchengmei
-- V3.8 2005-06-12 add subidentifier 145 to 149 under h3cevtModuleRouterType,
-- add subidentifier 34 under h3cevtPortRouterType by wanghanlin
-- V3.9 2005-06-22 add subidentifier 150 under h3cevtModuleRouterType by yinxiaoyu
-- V4.0 2005-07-18 add subidentifier 217 to 219 under h3cevtModuleSwitchType by yangliming
-- add subidentifier 139 to 142 under h3cevtPortSwitchType by wangyahui
-- V4.01 2005-07-29 add subidentifier 220 to 225 under h3cevtModuleSwitchType by wangyahui
-- V4.02 2005-07-21 change the name of subidentifier 183 under h3cevtModuleSwitchType,
-- add subidentifier 226 to 227 under h3cevtModuleSwitchType by zhangchengmei
-- 2005-08-29 add subidentifier 143 under h3cevtPortSwitchType by qianxiaoyu
-- add subidentifier 151 to 161 under h3cevtModuleRouterType by taotao
-- add subidentifier 35 to 41 under h3cevtPortRouterType by taotao
-- V4.03 2005-09-07 add h3cevtCPU and h3cevtGeneralCPU by taotao
-- add subidentifier 162 to 163 under h3cevtModuleRouterType by taotao
-- adjust file format by gaolong
-- V4.04 2005-09-13 add subidentifier 228 to 253 under h3cevtModuleSwitchType by zhangchengmei
-- 2005-09-13 add subidentifier 257 to 268 under h3cevtModuleSwitchType by zhangchengmei
-- V4.05 2005-11-04 add subidentifier 144 to 149 under h3cevtPortSwitchType by zhangchengmei
-- add subidentifier 150 under h3cevtPortSwitchType by huangyuetao
-- add subidentifier 269 to 271 under h3cevtModuleSwitchType by yangxiaopeng
-- add subidentifier 272 under h3cevtModuleSwitchType by qianxiaoyu
-- add subidentifier 164 to 165 under h3cevtModuleRouterType by xuejiayong
-- V4.06 2005-11-24 add subidentifier 500 to 501 under h3cevtModuleSwitchType by wangyahui
-- V4.07 2005-11-28 add subidentifier 300 to 316 under h3cevtModuleSwitchType by zhangchengmei
-- V4.08 2005-12-09 add subidentifier 220 to 223 under h3cevtModuleRouterType by taotao
-- V4.09 2005-12-30 add subidentifier 151 to 170 under h3cevtPortSwitchType by zhangchengmei
-- V4.10 2006-01-04 add subidentifier 701 under h3cevtModuleSwitchType by qianxiaoyu
-- V4.11 2006-02-12 add subidentifier 200 to 219 under h3cevtModuleRouterType by liutinghai
-- add subidentifier 702 under h3cevtModuleSwitchType by chenxiaohui
-- add subidentifier 600 under h3cevtModuleRouterType by qujin
-- add subidentifier 317 under h3cevtModuleSwitchType by zhangchengmei
-- V4.12 2006-02-24 add subidentifier 703 under h3cevtModuleSwitchType by chijuntao
-- add subidentifier 224 to 228 under h3cevtModuleRouterType by taotao
-- V4.13 2006-02-27 add subidentifier 171 to 174 under h3cevtPortSwitchType by wangshunli
-- add subidentifier 318 to 336 under h3cevtModuleSwitchType by zhaiyingying
-- V4.14 2006-03-14 add subidentifier 175 under h3cevtPortSwitchType by wangyahui
-- add subidentifier 502 to 504 under h3cevtModuleSwitchType by wangyahui
-- V4.15 2006-04-03 add subidentifier 176 under h3cevtPortSwitchType by wangyahui
-- V4.16 2006-04-26 add subidentifier 229 to 233 under h3cevtModuleRouterType by taotao
-- V4.17 2006-04-21 add subidentifier 337 to 340 under h3cevtModuleSwitchType by zhaiyingying
-- V4.18 2006-06-05 add subidentifier 704 to 705 under h3cevtModuleSwitchType by zhangxianguo
-- add subidentifier 505 to 506 under h3cevtModuleSwitchType by zhangjianfeng
-- add subidentifier 341 to 349 under h3cevtModuleSwitchType by zhaiyingying
-- add subidentifier 177 to 178 under h3cevtPortSwitchType by zhangjianfeng
-- add subidentifier 179 to 180 under h3cevtPortSwitchType by zhangxianguo
-- V4.19 2006-08-23 add subidentifier 507 to 509 under h3cevtModuleSwitchType by wangyahui
-- modify object name of subidentifier 502 and 503 under h3cevtModuleSwitchType by wangyahui
-- add subidentifier 234 to 235 under h3cevtModuleRouterType by liutinghai
-- add subidentifier 350 to 357 under h3cevtModuleSwitchType by zhaiyingying
-- V4.20 2006-09-26 add subidentifier 510 to 514 under h3cevtModuleSwitchType by wangyahui
-- add subidentifier 601 to 603 under h3cevtModuleRouterType by zhoujianming
-- add subidentifier 236 to 239 under h3cevtModuleRouterType by qikai
-- add subidentifier 240 to 241 under h3cevtModuleRouterType by liutinghai
-- add subidentifier 800 to 801 under h3cevtModuleSwitchType by luoguixing
-- V4.21 2006-10-26 add subidentifier 358 to 370 under h3cevtModuleSwitchType by zhaiyingying
-- add subidentifier 183 under h3cevtPortSwitchType by zhaiyingying
-- add subidentifier 515 to 526 under h3cevtModuleSwitchType by wangyahui
-- add subidentifier 181 to 182 under h3cevtPortSwitchType by wangyahui
-- V4.22 2006-11-02 add subidentifier 527 to 536 under h3cevtModuleSwitchType by wangyahui
-- modify description of 511 to 513 under h3cevtModuleSwitchType by wangyahui
-- 2006-11-10 add subidentifier 371 to 378 under h3cevtModuleSwitchType by shuxiongtao
-- 2006-11-08 add subidentifier 184 to 185 under h3cevtPortSwitchType by zhaiyingying
-- V4.23 2006-12-04 add subidentifier 242 to 243 under h3cevtModuleRouterType by liutinghai
-- V4.24 2006-01-24 add subidentifier 244 to 245 under h3cevtModuleRouterType by liutinghai
-- V4.25 2007-03-19 add subidentifier 537 under h3cevtModuleSwitchType by wangyahui
-- V4.26 2007-04-12 add subidentifier 538 to 542 under h3cevtModuleSwitchType by wangyahui
-- V4.27 2007-04-25 add subidentifier 706 under h3cevtModuleSwitchType by zhangzongyi
-- add subidentifier 379 to 380 under h3cevtModuleSwitchType by zhaiyingying
-- add subidentifier 246 to 250 under h3cevtModuleRouterType by liutinghai
-- add subidentifier 42 under h3cevtPortRouterType by liutinghai
-- V4.28 2007-05-28 add subidentifier 707 under h3cevtModuleSwitchType by ligaoxu
-- add subidentifier 381 to 392 under h3cevtModuleSwitchType by shuxiongtao
-- modify name of subidentifier 371 and 374 under h3cevtModuleSwitchType by shuxiongtao
-- add subidentifier 251 to 253 under h3cevtModuleRouterType by qikai
-- add subidentifier 254 to 255 under h3cevtModuleRouterType by liutinghai
-- add subidentifier 186 under h3cevtPortSwitchType by jinzhaoqiong
-- V4.29 2007-07-09 add subidentifier 543 to 551 under h3cevtModuleSwitchType by zhangjianfeng
-- add subidentifier 552 to 554 under h3cevtModuleSwitchType by wangyahui
-- V4.30 2007-07-26 add subidentifier 400 under h3cevtModuleRouterType by xuejiayong
-- add subidentifier 708 under h3cevtModuleSwitchType by xiuyihong
-- add subidentifier 256 to 258 under h3cevtModuleRouterType by qikai
-- add subidentifier 259 to 263 under h3cevtModuleRouterType by liutinghai
-- add subidentifier 3 to 5 under h3cevtOther by gaolong
-- V4.31 2007-08-27 add subidentifier 187 to 188 under h3cevtPortSwitchType by ruanhan
-- add subidentifier 802 to 804 under h3cevtModuleSwitchType by luoguixing
-- add subidentifier 393 to 397 under h3cevtModuleSwitchType by shuxiongtao
-- V4.32 2007-09-25 add subidentifier 555 to 559 under h3cevtModuleSwitchType by wangyahui
-- add subidentifier 805 under h3cevtModuleSwitchType by luoguixing
-- add subidentifier 401 to 403 under h3cevtModuleRouterType by tanwen
-- add subidentifier 43 under h3cevtPortRouterType by qikai
-- add subidentifier 266 to 267 under h3cevtModuleRouterType by qikai
-- add subidentifier 398 to 399 under h3cevtModuleSwitchType by hexuefei
-- V4.33 2007-10-22 add subidentifier 189 under h3cevtPortSwitchType by liaoxin
-- add subidentifier 268 under h3cevtModuleRouterType by liutinghai
-- V4.34 2007-11-26 add subidentifier 269 to 273 under h3cevtModuleRouterType by liutinghai
-- add subidentifier 274 to 276 under h3cevtModuleRouterType by qikai
-- add subidentifier 404 to 406 under h3cevtModuleRouterType by chaiyaqin
-- add subidentifier 400 to 407 under h3cevtModuleSwitchType by shuxiongtao
-- V4.35 2007-12-27 add subidentifier 277 to 278 under h3cevtModuleRouterType by liutinghai
-- add subidentifier 560 to 568 under h3cevtModuleSwitchType by wangyahui
-- V4.36 2008-01-30 add subidentifier 408 under h3cevtModuleSwitchType by hexuefei
-- add subidentifier 569 to 572 under h3cevtModuleSwitchType by wangyahui
-- add subidentifier 279 to 280 under h3cevtModuleRouterType by qikai
-- add subidentifier 190 under h3cevtPortSwitchType by liujingya
-- V4.37 2008-02-20 add subidentifier 720 to 724 under h3cevtModuleSwitchType by chaiyaqin
-- add subidentifier 573 to 574 under h3cevtModuleSwitchType by zhangjianfeng
-- modify name of subidentifier 546 and 550 under h3cevtModuleSwitchType by zhangjianfeng
-- add subidentifier 575 to 576 under h3cevtModuleSwitchType by wangyahui
-- add subidentifier 281 under h3cevtModuleRouterType by liutinghai
-- V4.38 2008-03-31 add subidentifier 806 to 808 under h3cevtModuleSwitchType by luoguixing
-- add subidentifier 709 to 715 under h3cevtModuleSwitchType by wangcong
-- add subidentifier 191 to 196 under h3cevtPortSwitchType by wangcong
-- add subidentifier 44 under h3cevtPortRouterType by liutinghai
-- add subidentifier 409 to 431 under h3cevtModuleSwitchType by zhaiyingying
-- add subidentifier 432 under h3cevtModuleSwitchType by shuxiongtao
-- V4.39 2008-04-29 add subidentifier 577 to 589 under h3cevtModuleSwitchType by wangyahui
-- add subidentifier 407 to 409 under h3cevtModuleRouterType by tanwen
-- V4.40 2008-05-31 add subidentifier 410 to 413 under h3cevtModuleRouterType by tanwen
-- add subidentifier 282 to 284 under h3cevtModuleRouterType by qikai
-- add subidentifier 285 to 286 under h3cevtModuleRouterType by liutinghai
-- V4.41 2008-07-28 add subidentifier 590 to 592 under h3cevtModuleSwitchType by wangyahui
-- add subidentifier 287 to 289 under h3cevtModuleRouterType by qikai
-- add subidentifier 290 to 291 under h3cevtModuleRouterType by liutinghai
-- add subidentifier 45 to 46 under h3cevtPortRouterType by liutinghai
-- add subidentifier 809 to 810 under h3cevtModuleSwitchType by luoguixing
-- V4.42 2008-08-26 modify name of 379 and 399 under h3cevtModuleSwitchType by wangwei
-- modify description of 408 under h3cevtModuleSwitchType by wangwei
-- modify name and description of 804 under h3cevtModuleSwitchType by wangwei
-- add subidentifier 433 to 434 under h3cevtModuleSwitchType by wangwei
-- add subidentifier 593 to 595 under h3cevtModuleSwitchType by wangyahui
-- modify name and description of 256 and 288 under h3cevtPortRouterType by qikai
-- add subidentifier 292 to 293 under h3cevtPortRouterType by qikai
-- V4.43 2008-10-13 add subidentifier 725 under h3cevtModuleSwitchType by ruanhan
-- add subidentifier 197 under h3cevtPortSwitchType by ruanhan
-- add subidentifier 811 under h3cevtModuleSwitchType by luoguixing
-- add subidentifier 596 to 601 under h3cevtModuleSwitchType by wangyahui
-- V4.44 2008-11-04 add subidentifier 294 under h3cevtPortRouterType by qikai
-- add subidentifier 414 under h3cevtModuleRouterType by tanwen
-- V4.45 2008-12-01 add subidentifier 602 to 619 under h3cevtModuleSwitchType by wangyahui
-- add subidentifier 435 to 442 under h3cevtModuleSwitchType by zhaiyingying
-- modify name of 546 under h3cevtModuleSwitchType by zhangjianfeng
-- add subidentifier 295 under h3cevtPortRouterType by qikai
-- add subidentifier 443 under h3cevtModuleSwitchType by shuxiongtao
-- V4.46 2008-12-25 add subidentifier 620 to 622 under h3cevtModuleSwitchType by wangyahui
-- add subidentifier 716 to 718 under h3cevtModuleSwitchType by zhangshilin
-- add subidentifier 444 to 445 under h3cevtModuleSwitchType by wangchang
-- V4.47 2009-03-02 add subidentifier 446 to 452 under h3cevtModuleSwitchType by wangchang
-- add subidentifier 719 under h3cevtModuleSwitchType by zhangshilin
-- add subidentifier 623 to 633 under h3cevtModuleSwitchType by wangyahui
-- V4.48 2009-03-31 add subidentifier 415 under h3cevtModuleRouterType by tanwen
-- add subidentifier 296 under h3cevtPortRouterType by qikai
-- add subidentifier 297 to 298 under h3cevtPortRouterType by qianjialin
-- add subidentifier 453 to 464 under h3cevtModuleSwitchType by huyinxing
-- V4.49 2009-07-02 add subidentifier 299 to 302 under h3cevtModuleRouterType by qikai
-- add subidentifier 303 under h3cevtModuleRouterType by chenfeihu
-- add subidentifier 304 to 307 under h3cevtModuleRouterType by qianjialin
-- add subidentifier 634 to 637 under h3cevtModuleSwitchType by wangyahui
-- add subidentifier 604 to 606 under h3cevtModuleRouterType by chenjianhui
-- add subidentifier 465 to 468 under h3cevtModuleSwitchType by zhaiyingying
-- add subidentifier 469 to 472 under h3cevtModuleSwitchType by huyinxing
-- add subidentifier 198 under h3cevtPortSwitchType by huyinxing
-- add subidentifier 199 under h3cevtPortSwitchType by zhangjianfeng
-- V4.50 2009-08-28 add subidentifier 638 to 640 under h3cevtModuleSwitchType by wangyahui
-- add subidentifier 308 to 310 under h3cevtModuleRouterType by qianjialin
-- V4.51 2009-11-09 add subidentifier 726 under h3cevtModuleSwitchType by ruanhan
-- add subidentifier 641 under h3cevtModuleSwitchType by wangyahui
-- add subidentifier 473 to 477 under h3cevtModuleSwitchType by yudongyang
-- add subidentifier 478 to 485 under h3cevtModuleSwitchType by heweibin
-- V4.52 2009-12-31 add subidentifier 200 to 201 under h3cevtPortSwitchType by zhanghaiyang
-- add subidentifier 642 to 651 under h3cevtModuleSwitchType by wangyahui
-- add subidentifier 416 under h3cevtModuleRouterType by lixiaomin
-- add subidentifier 486 under h3cevtModuleSwitchType by yudongyang
-- add subidentifier 727 to 728 under h3cevtModuleSwitchType by xiaobing
-- add subidentifier 652 to 659 under h3cevtModuleSwitchType by wangyahui
-- add subidentifier 487 to 488 under h3cevtModuleSwitchType by huyinxing
-- add subidentifier 660 to 662 under h3cevtModuleSwitchType by wangyahui
-- add subidentifier 202 to 203 under h3cevtPortSwitchType by yangdonghong
-- V4.53 2010-03-03 add subidentifier 812 under h3cevtModuleSwitchType by mashuhang
-- add subidentifier 489 to 497 under h3cevtModuleSwitchType by liubuxiang
-- add subidentifier 498 to 499 under h3cevtModuleSwitchType by shikejun
-- add subidentifier 900 under h3cevtModuleSwitchType by yangqiulin
-- add subidentifier 901 to 902 under h3cevtModuleSwitchType by huyinxing
-- V4.54 2010-04-21 add subidentifier 903 to 904 under h3cevtModuleSwitchType by huyinxing
-- add subidentifier 905 to 907 under h3cevtModuleSwitchType by shikejun
-- add subidentifier 663 to 685 under h3cevtModuleSwitchType by wangyahui
-- add subidentifier 813 under h3cevtModuleSwitchType by mashuhang
-- add subidentifier 729 under h3cevtModuleSwitchType by zhangshilin
-- add subidentifier 908 to 913 under h3cevtModuleSwitchType by yangbin
-- add subidentifier 914 to 918 under h3cevtModuleSwitchType by huyinxing
-- add subidentifier 5000 to 5011 under h3cevtModuleRouterType by qianjialin
-- add subidentifier 919 to 927 under h3cevtModuleSwitchType by langgaoyi
-- V4.55 2011-01-31 add subidentifier 417 under h3cevtModuleRouterType by tanwen
-- add subidentifier 311 to 314 under h3cevtModuleRouterType by qianjialin
-- add subidentifier 686 to 691 under h3cevtModuleSwitchType by wangyahui
-- add subidentifier 928 to 929 under h3cevtModuleSwitchType by langgaoyi
-- V4.56 2011-04-22 add subidentifier 930 under h3cevtModuleSwitchType by liuhui
-- add subidentifier 814 to 815 under h3cevtModuleSwitchType by mashuhang
-- add subidentifier 692 to 694 under h3cevtModuleSwitchType by wangyahui
-- add subidentifier 204 under h3cevtPortSwitchType by yangliming
-- V4.57 2011-06-30 add subidentifier 695, 1201 to 1211 under h3cevtModuleSwitchType by wangyahui
-- add subidentifier 205 to 207 under h3cevtPortSwitchType by gaoruichang
-- V4.58 2011-08-31 add subidentifier 696 to 697 under h3cevtModuleSwitchType by langgaoyi
-- add subidentifier 208 under h3cevtPortSwitchType by wangshunli
-- add subidentifier 931 to 933 under h3cevtModuleSwitchType by langgaoyi
-- add subidentifier 934 under h3cevtModuleSwitchType by zhaohonghai
-- V4.59 2012-04-20 add subidentifier 935 to 938, 942 under h3cevtModuleSwitchType by wangjiangnan
-- add subidentifier 1212 to 1218 under h3cevtModuleSwitchType by wangyahui
-- add subidentifier 939 to 941 under h3cevtModuleSwitchType by herui
-- modify name of 205 to 207 under h3cevtPortSwitchType by xvman
-- add subidentifier 350 to 360 under h3cevtModuleRouterType by chenfeihu
-- add subidentifier 943 to 945 under h3cevtModuleSwitchType by langgaoyi
-- add subidentifier 209, 211 under h3cevtPortSwitchType by wangyahui
-- add subidentifier 730 to 731 under h3cevtModuleSwitchType by panxiyuan
-- add subidentifier 210 under h3cevtPortSwitchType by panxiyuan
-- add subidentifier 315 to 349 under h3cevtModuleRouterType by qianjialin
-- add subidentifier 946 to 948 under h3cevtModuleSwitchType by zhangheng
-- add subidentifier 949 to 956 under h3cevtModuleSwitchType by zhengjiang
-- add subidentifier 957 under h3cevtModuleSwitchType by zhaohonghai
-- add subidentifier 361 to 372 under h3cevtModuleRouterType by qianjialin
-- add subidentifier 212 under h3cevtPortSwitchType by wangyahui
-- add subidentifier 732 under h3cevtModuleSwitchType by houchengshuai
-- add subidentifier 1219 to 1230 under h3cevtModuleSwitchType by wangyahui
-- =================================================================
A3COM-HUAWEI-ENTITY-VENDORTYPE-OID-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY
FROM SNMPv2-SMI
h3c
FROM A3COM-HUAWEI-OID-MIB;
h3cEntityVendorTypeOID MODULE-IDENTITY
LAST-UPDATED "200903310000Z"
ORGANIZATION "Hangzhou H3C Technologies Co., Ltd."
CONTACT-INFO
"Platform Team H3C Technologies Co., Ltd.
Hai-Dian District Beijing P.R. China
Zip:100085
http://www.h3c.com"
DESCRIPTION
"The private MIB includes the definition of the object
identifiers on H3C products, which are used by the
entPhysicalTable of the ENTITY-MIB to uniquely identify the
type of each physical entry."
::= { h3c 3 }
h3cEntityVendortypeObjects OBJECT IDENTIFIER ::= { h3cEntityVendorTypeOID 1 }
-- This MIB assigns OIDs for use as the values of entPhysicalVendorType.
-- The subtrees in which the OID values are assigned, are structured
-- into a hierarchy based on the values of RFC 2037's PhysicalClass
-- textual convention. For reference, the definition of PhysicalClass
-- is as follows:
--
-- PhysicalClass ::= TEXTUAL-CONVENTION
-- STATUS current
-- DESCRIPTION
-- "An enumerated value which provides an indication of the
-- general hardware type of a particular physical entity."
-- SYNTAX INTEGER {
-- other(1),
-- unknown(2),
-- chassis(3),
-- backplane(4),
-- container(5), e.g. slot or daughter-card holder
-- powerSupply(6),
-- fan(7),
-- sensor(8),
-- module(9), e.g. plug-in card or daughter-card
-- port(10),
-- stack(11) e.g., stack of multiple chassis entities
-- }
--
h3cevtOther OBJECT IDENTIFIER ::= { h3cEntityVendortypeObjects 1 }
-- May be defined detailed in future.
h3cevtOtherUnknownCard OBJECT IDENTIFIER ::= { h3cevtOther 1 }
h3cevtCPU OBJECT IDENTIFIER ::= { h3cevtOther 2 }
h3cevtDOM OBJECT IDENTIFIER ::= { h3cevtOther 3 } -- Disk on Module
h3cevtCFCard OBJECT IDENTIFIER ::= { h3cevtOther 4 } -- Compact Flash Card
h3cevtHardDisk OBJECT IDENTIFIER ::= { h3cevtOther 5 } -- Hard Disk
-- h3cevtGeneralCPU is a general vendor type of CPU. It is used only for
-- general purpose. It is strongly recommended that this object should not
-- be used to present the specific CPU vendor type in most cases. More
-- accurate and clear vendor types should be defined to present specific CPU.
h3cevtGeneralCPU OBJECT IDENTIFIER ::= { h3cevtCPU 1 }
h3cevtUnknown OBJECT IDENTIFIER ::= { h3cEntityVendortypeObjects 2 }
h3cevtChassis OBJECT IDENTIFIER ::= { h3cEntityVendortypeObjects 3 }
-- chassis OID assignments
-- May be substituted by sysObjectID. So none is assigned at present.
--
--backplane
-- The enumeration 'backplane' is applicable if the physical
-- entity class is some sort of device for aggregating and
-- forwarding networking traffic, such as a shared backplane in
-- a modular ethernet switch. Note that an agent may model a
-- backplane as a single physical entity, which is actually
-- implemented as multiple discrete physical components (within
-- a chassis or stack).
--
h3cevtBackplane OBJECT IDENTIFIER ::= { h3cEntityVendortypeObjects 4 }
--
-- h3cevtContainer section:
--
h3cevtContainer OBJECT IDENTIFIER ::= { h3cEntityVendortypeObjects 5 }
--
-- h3cevtPowerSupply section:
--
h3cevtPowerSupply OBJECT IDENTIFIER ::= { h3cEntityVendortypeObjects 6 }
h3cevtPowerSupplyAC OBJECT IDENTIFIER ::= { h3cevtPowerSupply 2 }
h3cevtPowerSupplyDC OBJECT IDENTIFIER ::= { h3cevtPowerSupply 3 }
h3cevtPowerSupplySTD130W OBJECT IDENTIFIER ::= { h3cevtPowerSupply 4 } -- Standard 130W PSU
h3cevtPowerSupplySTD180W OBJECT IDENTIFIER ::= { h3cevtPowerSupply 5 } -- Standard 180W PSU
h3cevtPowerSupplyPOE24Port OBJECT IDENTIFIER ::= { h3cevtPowerSupply 6 } -- 24 Port POE PSU 480W
h3cevtPowerSupplyPOE48Port OBJECT IDENTIFIER ::= { h3cevtPowerSupply 7 } -- 48 Port POE PSU 480W
--
-- h3cevtFan section:
--
h3cevtFan OBJECT IDENTIFIER ::= { h3cEntityVendortypeObjects 7 }
h3cevtHotSwapFan OBJECT IDENTIFIER ::= { h3cevtFan 1 }
h3cevtNonHotSwapFan OBJECT IDENTIFIER ::= { h3cevtFan 2 }
--
-- h3cevtSensor section:
--
h3cevtSensor OBJECT IDENTIFIER ::= { h3cEntityVendortypeObjects 8 }
h3cevtSensorTemperature OBJECT IDENTIFIER ::= { h3cevtSensor 1 }
h3cevtSensorVoltage OBJECT IDENTIFIER ::= { h3cevtSensor 2 }
h3cevtSensorFanSpeed OBJECT IDENTIFIER ::= { h3cevtSensor 3 }
--
-- h3cevtModule section:
--
h3cevtModule OBJECT IDENTIFIER ::= { h3cEntityVendortypeObjects 9 }
-- h3cevtModule is subdivided into sections like Router and Switch. These represent
-- cards used only on the router and switch.
-- h3cevtModuleCommonCards contains cards that can be used interchangeably
-- across more than one platform
-- Acronyms used in the h3cevtModule section:
--
h3cevtModuleUnknownCard OBJECT IDENTIFIER ::= { h3cevtModule 1 }
-- h3cevtModuleCommonCards - cards and subcards common to more
-- than one platform
h3cevtModuleCommonCards OBJECT IDENTIFIER ::= { h3cevtModule 2 }
-- h3cevtModuleRouterType cards are slot-cards specific to the Router.
h3cevtModuleRouterType OBJECT IDENTIFIER ::= { h3cevtModule 3 }
--h3cevtModuleRt-Unavailable OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 1 }
h3cevtModuleRt-As OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 2 }
h3cevtModuleRt-Sa OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 3 }
h3cevtModuleRt-Bi OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 4 }
h3cevtModuleRt-E12 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 5 }
h3cevtModuleRt-E14 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 6 }
h3cevtModuleRt-Fe1 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 7 }
h3cevtModuleRt-E1 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 8 }
h3cevtModuleRt-Fe2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 9 }
h3cevtModuleRt-Vi2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 11 }
h3cevtModuleRt-Vi4 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 12 }
h3cevtModuleRt-Vi30 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 13 }
h3cevtModuleRt-S1b OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 14 }
h3cevtModuleRt-Sa2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 15 }
h3cevtModuleRt-As16 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 16 }
h3cevtModuleRt-New8as OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 17 }
h3cevtModuleRt-Sa1 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 18 }
h3cevtModuleRt-Fxs2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 19 }
h3cevtModuleRt-Fxo2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 20 }
h3cevtModuleRt-Em2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 21 }
h3cevtModuleRt-Fxs4 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 22 }
h3cevtModuleRt-Fxo4 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 23 }
h3cevtModuleRt-Em4 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 24 }
h3cevtModuleRt-Sab OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 25 }
h3cevtModuleRt-E1vi OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 26 }
h3cevtModuleRt-Am12 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 27 }
h3cevtModuleRt-Am6 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 28 }
h3cevtModuleRt-Ndec OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 29 }
h3cevtModuleRt-Newsa2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 30 }
h3cevtModuleRt-Aux OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 31 }
h3cevtModuleRt-Console OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 32 }
h3cevtModuleRt-Sic-wan OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 33 }
h3cevtModuleRt-Sic-1fe OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 34 }
h3cevtModuleRt-Sic-1sa OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 35 }
h3cevtModuleRt-Sic-3as OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 36 }
h3cevtModuleRt-Sic-1e1 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 37 }
h3cevtModuleRt-Sic-1t1 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 38 }
h3cevtModuleRt-Sic-1bu OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 39 }
h3cevtModuleRt-Sic-2bu OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 40 }
h3cevtModuleRt-Sic-1bs OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 41 }
h3cevtModuleRt-Sic-2bs OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 42 }
h3cevtModuleRt-Sic-1am OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 43 }
h3cevtModuleRt-Sic-2am OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 44 }
h3cevtModuleRt-Sic-1em OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 45 }
h3cevtModuleRt-Sic-2em OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 46 }
h3cevtModuleRt-Sic-1fxs OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 47 }
h3cevtModuleRt-Sic-2fxs OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 48 }
h3cevtModuleRt-Sic-1fxo OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 49 }
h3cevtModuleRt-Sic-2fxo OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 50 }
h3cevtModuleRt-Fcm6 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 51 }
h3cevtModuleRt-Sa8 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 52 }
h3cevtModuleRt-T11 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 53 }
h3cevtModuleRt-T12 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 54 }
h3cevtModuleRt-T14 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 55 }
h3cevtModuleRt-T1vi OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 56 }
h3cevtModuleRt-Fcm4 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 57 }
h3cevtModuleRt-Fcm2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 58 }
h3cevtModuleRt-Rtb21ce3 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 59 }
h3cevtModuleRt-Ame6 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 60 }
h3cevtModuleRt-Ame12 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 61 }
h3cevtModuleRt-E11-f OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 65 }
h3cevtModuleRt-E12-f OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 66 }
h3cevtModuleRt-E14-f OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 67 }
h3cevtModuleRt-T11-f OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 68 }
h3cevtModuleRt-T12-f OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 69 }
h3cevtModuleRt-T14-f OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 70 }
h3cevtModuleRt-E11-f-17 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 71 }
h3cevtModuleRt-T11-f-17 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 72 }
h3cevtModuleRt-Rtb21ct3 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 73 }
h3cevtModuleRt-Atmadsl1 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 74 }
h3cevtModuleRt-Atmadsl2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 75 }
h3cevtModuleRt-Atm155m OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 76 }
h3cevtModuleRt-Ase8 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 77 }
h3cevtModuleRt-Ase16 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 78 }
h3cevtModuleRt-Sae4 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 79 }
h3cevtModuleRt-Sae2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 80 }
h3cevtModuleRt-Atmshdsl1 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 90 }
h3cevtModuleRt-Atmshdsl2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 91 }
h3cevtModuleRt-Atmshdsl4 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 92 }
h3cevtModuleRt-Atm25m OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 93 }
h3cevtModuleRt-Atme3 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 94 }
h3cevtModuleRt-Atmt3 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 95 }
h3cevtModuleRt-Xdsl-fec OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 96 }
h3cevtModuleRt-Xdsl-adsl OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 97 }
h3cevtModuleRt-Xdsl-gshdsl OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 98 }
h3cevtModuleRt-Xdsl-bri OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 99 }
h3cevtModuleRt-Xdsl-scc OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 100 }
h3cevtModuleRt-Ge1 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 101 }
h3cevtModuleRt-Pos155m OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 102 }
h3cevtModuleRt-Cpos OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 103 }
h3cevtModuleRt-Fe1op OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 104 }
h3cevtModuleRt-Sae8 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 105 }
h3cevtModuleRt-Atm155m-mm OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 106 }
h3cevtModuleRt-Atm155m-sm OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 107 }
h3cevtModuleRt-Atm155m-sml OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 108 }
h3cevtModuleRt-Fe1op-sfx OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 109 }
h3cevtModuleRt-Fe1op-mfx OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 110 }
h3cevtModuleRt-Cpos-t1 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 111 }
h3cevtModuleRt-Ge1op OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 112 }
h3cevtModuleRt-Ge2op OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 113 }
h3cevtModuleRt-Ge2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 114 }
h3cevtModuleRt-Fix-1wan OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 115 }
h3cevtModuleRt-Fix-1sae OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 116 }
h3cevtModuleRt-Cavium OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 117 }
h3cevtModuleRt-Sic1Eth OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 118 }
h3cevtModuleRt-atm1ADSLI OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 119 }
h3cevtModuleRt-atm2ADSLI OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 120 }
h3cevtModuleRt-fix-e11 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 121 }
h3cevtModuleRt-fix-t11 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 122 }
h3cevtModuleRt-e18-75 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 123 }
h3cevtModuleRt-e18-120 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 124 }
h3cevtModuleRt-t18 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 125 }
h3cevtModuleRt-sic-1vifxs OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 126 }
h3cevtModuleRt-sic-1vifxo OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 127 }
h3cevtModuleRt-sic-2vifxs OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 128 }
h3cevtModuleRt-sic-2vifxo OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 129 }
h3cevtModuleRt-xdsl-fec-new OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 130 }
h3cevtModuleRt-xdsl-sa OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 131 }
h3cevtModuleRt-bs4 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 132 }
h3cevtModuleRt-ima-8e175 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 133 }
h3cevtModuleRt-ima-8e1120 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 134 }
h3cevtModuleRt-ima-4e175 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 135 }
h3cevtModuleRt-ima-4e1120 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 136 }
h3cevtModuleRt-ima-8t1 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 137 }
h3cevtModuleRt-ima-4t1 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 138 }
h3cevtModuleRt-sic-1t1f OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 139 }
h3cevtModuleRt-sic-1e1f OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 140 }
h3cevtModuleRt-VG-16fxs OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 141 }
h3cevtModuleRt-VG-32fxs OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 142 }
h3cevtModuleRt-VG-8fxo OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 143 }
h3cevtModuleRt-VG-2fe OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 144 }
h3cevtModuleRt-sib OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 145 } -- SIB card
h3cevtModuleRt-cie32 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 146 } -- 32M SSRAM CIE card
h3cevtModuleRt-cie64 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 147 } -- 64M SSRAM CIE card
h3cevtModuleRt-cie96 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 148 } -- 96M SSRAM CIE card
h3cevtModuleRt-Fe4 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 149 } -- 4FE card
h3cevtModuleRt-fxs4fxo1 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 150 } -- 4 Port Foreign Exchange Station and 1 Port Foreign Exchange Office Interface
h3cevtModuleRt-atm1shdsl4wire OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 151 } -- G.SHDSL 4 wire MIM card, 1 port
h3cevtModuleRt-atmIma4shdsl OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 152 } -- G.SHDSL 8 wire MIM card, 4 ports
h3cevtModuleRt-ls4 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 153 } -- 4 Ports Layer 2 Lanswitch Module
h3cevtModuleRt-ls8 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 154 } -- 8 Ports Layer 2 Lanswitch Module
h3cevtModuleRt-ls16 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 155 } -- 16 Ports Layer 2 Lanswitch Module
h3cevtModuleRt-sic-adls2plus-isdn OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 156 } -- ADLS2Plus SIC card, ISDN port
h3cevtModuleRt-sic-adls2plus-pots OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 157 } -- ADLS2Plus SIC card, POTS port
h3cevtModuleRt-ft3 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 158 } -- 1 Port Fractional T3 module
h3cevtModuleRt-ce32 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 159 } -- 2 Port Channelized E3 module
h3cevtModuleRt-bsv2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 160 } -- 2 Port BSV module
h3cevtModuleRt-bsv4 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 161 } -- 4 Port BSV module
h3cevtModuleRt-RPU OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 162 } -- Route processing unit
h3cevtModuleRt-ERPU OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 163 } -- Enhanced route processing unit
h3cevtModuleRt-SSL OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 164 } -- SSL Encrypt Card
h3cevtModuleRt-NSA OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 165 } -- NSA Encrypt Card
--
-- 166 to 199 reserved for other devices
--
--
-- 200 to 399 reserved for normal routers
--
h3cevtModuleRT-SIC-1GEC OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 200 } -- 1-Port 10M/100M/1000M COMBO Ethernet Interface SIC Module
h3cevtModuleRT-24FSW OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 201 } -- 24-Port 10M/100M and 2-Port 1000BASE-T/1000BASE-X(COMBO) Ethernet L2 Switch Module
h3cevtModuleRT-24FSWP OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 202 } -- 24-Port 10M/100M(WITH POE) and 2-Port 1000BASE-T/1000BASE-X(COMBO) Ethernet L2 Switch Module
h3cevtModuleRT-16FSW OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 203 } -- 16-Port 10M/100M Ethernet L2 Switch Module
h3cevtModuleRT-16FSWP OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 204 } -- 16-Port 10M/100M(WITH POE) Ethernet L2 Switch Module
h3cevtModuleRT-1VE1 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 205 } -- 1-Port Voice E1 Module
h3cevtModuleRT-1VT1 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 206 } -- 1-Port Voice T1 Module
h3cevtModuleRT-2VE1 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 207 } -- 2-Port Voice E1 Module
h3cevtModuleRT-2VT1 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 208 } -- 2-Port Voice T1 Module
h3cevtModuleRT-SIC-4FSW OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 209 } -- 4-Port 10M/100M Ethernet L2 Switch Module (RJ45)
h3cevtModuleRT-SIC-4FSWP OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 210 } -- 4-Port 10M/100M Ethernet L2 Switch Module(RJ45,WITH POE)
h3cevtModuleRT-DSIC-9FSW OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 211 } -- 9-Port 10M/100M Ethernet L2 Switch Module(RJ45)
h3cevtModuleRT-DSIC-9FSWP OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 212 } -- 9-Port 10M/100M Ethernet L2 Switch Module(RJ45,WITH POE)
h3cevtModuleRT-SIC-1VE1 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 213 } -- 1-Port Voice E1 SIC Interface Module
h3cevtModuleRT-SIC-1VT1 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 214 } -- 1-Port Voice T1 SIC Interface Module
h3cevtModuleRT-VCPM OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 215 } -- Voice Co-Processing Module
h3cevtModuleRT-VPM OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 216 } -- 32-Channels Voice Processing Module
h3cevtModuleRT-VPMA OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 217 } -- 16-Channels Voice Processing Module
h3cevtModuleRT-VPMB OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 218 } -- 8-Channels Voice Processing Module
h3cevtModuleRT-VPMC OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 219 } -- 24-Channels Voice Processing Module
h3cevtModuleRt-fe18-75 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 220 } -- 8 Port FE1(75 O) module
h3cevtModuleRt-fe18-120 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 221 } -- 8 Port FE1(120 O) module
h3cevtModuleRt-ft18 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 222 } -- 8 Port FT1 module
h3cevtModuleRt-CF OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 223 } -- Compact Flash Card
h3cevtModuleRt-bsv2-v2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 224 } -- 2 Port BSV Version 2
h3cevtModuleRt-e1vi1-v2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 225 } -- E1VI Version 2
h3cevtModuleRt-e1vi2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 226 } -- 2 Port E1VI
h3cevtModuleRt-t1vi1-v2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 227 } -- T1VI Version 2
h3cevtModuleRt-t1vi2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 228 } -- 2 Port T1VI
h3cevtModuleRt-osm OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 229 } -- Open Service Module
h3cevtModuleRt-sd707 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 230 } -- Encryption Accelerator
h3cevtModuleRt-dm-epri OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 231 } -- E1 Pri Digital Modem
h3cevtModuleRt-dm-tpri OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 232 } -- T1 Pri Digital Modem
h3cevtModuleRt-ERPU-H OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 233 } -- Enhanced route processing unit with only one optic GE interface
h3cevtModuleRT-SIC-1BSV OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 234 } -- 1-Port Bri S/T VoiceInterface SIC Module
h3cevtModuleRT-SIC-2BSV OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 235 } -- 2-Port Bri S/T VoiceInterface SIC Module
h3cevtModuleRt-gbe8 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 236 } -- 8-Port Gigabit Ethernet interface card
h3cevtModuleRt-gbe4 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 237 } -- 4-Port Gigabit Ethernet interface card
h3cevtModuleRt-cpos2-v2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 238 } -- 2-Port Channelized Low speed POS interface card
h3cevtModuleRt-cpos1-v2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 239 } -- 1-Port Channelized Low speed POS interface card
h3cevtModuleRt-oap OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 240 } -- Open Application Platform
h3cevtModuleRT-48FSWP OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 241 } -- 46-Port 10M/100M(With PoE) and 2-Port 1000BASE-T(With PoE) Ethernet L2 Switch Module
h3cevtModuleRT-48FSW OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 242 } -- 46-Port 10M/100M and 2-Port 1000BASE-T Ethernet L2 Switch Module
h3cevtModuleRT-ASM OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 243 } -- Anti-virus Security Module
h3cevtModuleRT-SIC-1FEF OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 244 } -- 1-Port 100M SFP Interface SIC Module
h3cevtModuleRT-XMIM-24FSW OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 245 } -- 24-Port 10M/100MBASE-TX Ethernet L2 Switch Interface XMIM-Module
h3cevtModuleRT-WLAN-AG-1RADIO OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 246 } -- Mini PCI Interface 802.11ag Radio Frequency Adapter Card
h3cevtModuleRT-1CE3 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 247 } -- 1-port E3/CE3/FE3 Compatible Interface Module,(M)
h3cevtModuleRT-XMIM-16FSW OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 248 } -- 16-Port 10M/100MBASE-TX Ethernet L2 Switch Interface XMIM-Module
h3cevtModuleRT-OAPS OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 249 } -- Open Application System-Smart
h3cevtModuleRT-NAM OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 250 } -- Network Analysis Module
h3cevtModuleRT-RPE-X1 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 251 } -- Route Processing Engine
h3cevtModuleRT-FIP-100 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 252 } -- Flexible Interface Platform-100
h3cevtModuleRT-FIP-200 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 253 } -- Flexible Interface Platform-200
h3cevtModuleRT-SIC-8AS OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 254 } -- 8-Port Asynchronous Serial
h3cevtModuleRT-WAAM OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 255 } -- WAN Application Acceleration Module
h3cevtModuleRt-msp4p-OC3c OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 256 } -- 4 Port Multi-Speed POS Interface Module (OC-3c Mode)
h3cevtModuleRt-1pos-oc48 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 257 } -- 1 Port Super-Speed POS Interface Card
h3cevtModuleRt-xgbe OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 258 } -- 1-Port 10GBASE-R/W Ethernet Optical Interface Card
h3cevtModuleRT-EADM OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 259 } -- EAD Integrated Module
h3cevtModuleRT-VCM OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 260 } -- Voice Convergence Module
h3cevtModuleRT-SIC-2FXS1FXO OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 261 } -- 2FXS+1FXO Interface SIC-Module
h3cevtModuleRT-8FXS8FXO OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 262 } -- 8FXS+8FXO Interface Module
h3cevtModuleRT-16FXS OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 263 } -- 16-port FXS Interface Module
h3cevtModuleRT-OAPS-ICM OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 264 } -- OAPS Information Communication Module
h3cevtModuleRT-OAP-ICM OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 265 } -- OAP Information Communication Module
h3cevtModuleRT-8fe OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 266 } -- 8-Port 100M Ethernet Electrical Interface Module
h3cevtModuleRT-4gbp OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 267 } -- 4-Port GigaBit Ethernet Optical Interface Module(SFP)
h3cevtModuleRT-MPU-G2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 268 } -- Main Processor Unit
h3cevtModuleRT-OAPS-OCE OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 269 } -- OAPS Office Communication Engine
h3cevtModuleRT-OAP-OCE OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 270 } -- OAP Office Communication Engine
h3cevtModuleRT-OAPS-ICE OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 271 } -- OAPS Information Communication Engine
h3cevtModuleRT-OAP-ICE OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 272 } -- OAP Information Communication Module
h3cevtModuleRT-SIC-16AS OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 273 } -- 16-Port Asynchronous Serial
h3cevtModuleRT-SPE-FWM OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 274 } -- Gigabit Firewall Module
h3cevtModuleRT-cls2p OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 275 } -- 2 Port Channelized 155M POS to E3/T3 Interface Module
h3cevtModuleRT-cls1p OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 276 } -- 1 Port Channelized 155M POS to E3/T3 Interface Module
h3cevtModuleRT-SIC-2E1-F OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 277 } -- 2-Port Fractional E1 Interface SIC-Module
h3cevtModuleRT-SIC-1E1-F-V2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 278 } -- 1-Port Fractional E1 Interface SIC-Module
h3cevtModuleRT-MCU OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 279 } -- Main Control Unit
h3cevtModuleRT-ACU OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 280 } -- Access Control Unit
h3cevtModuleRT-1ATM-OC3 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 281 } -- 1-Port Asynchronous Transfer Mode OC3 Board
h3cevtModuleRT-RSE-X1 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 282 } -- Main Processing Unit With XAUI Switch
h3cevtModuleRT-FIP-210 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 283 } -- Multi-core CPU Line Processing Board with 2 Combo GE Ports
h3cevtModuleRT-1expa OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 284 } -- 1 Port Ten Gigabit Interface Module
h3cevtModuleRT-WLAN-SIC-N-1RADIO OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 285 } -- 1 wlan-radio 802.11n sic Interface Board
h3cevtModuleRT-WLAN-SIC-BG-1RADIO OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 286 } -- 1 wlan-radio 802.11b/g sic Interface Board
h3cevtModuleRT-al2p OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 287 } -- 2 Port 155M ATM Interface Module
h3cevtModuleRT-msp2p-OC3c OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 288 } -- 2-Port Multi-speed POS Interface Module (OC-3c Mode)
h3cevtModuleRT-8gbp OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 289 } -- 8-Port GigaBit Ethernet Optical Interface Module(SFP)
h3cevtModuleRT-SIC-EPON OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 290 } -- 1-Port Ethernet Passive Optical Network SIC Card(SFF)
h3cevtModuleRT-SIC-3G-GSM-H3 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 291 } -- 3G Wireless WAN Interface SIC Module Supporting GPRS/EDGE/UMTS/HSDPA
h3cevtModuleRT-msp2p-OC12c OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 292 } -- 2-Port Multi-speed POS Interface Module (OC-12c Mode)
h3cevtModuleRt-msp4p-OC12c OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 293 } -- 4-Port Multi-Speed POS Interface Module (OC-12c Mode)
h3cevtModuleRt-al1p OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 294 } -- 1-Port 155M ATM Interface Module
h3cevtModuleRt-OAP-100 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 295 } -- Open Application Platform Module
h3cevtModuleRt-FIP-110 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 296 } -- Flexible Interface Platform-110
h3cevtModuleRt-OSM-SSM OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 297 } -- OSM Security Services Module
h3cevtModuleRt-OAP-SSM OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 298 } -- OAP Security Services Module
h3cevtModuleRt-rs2p OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 299 } -- 2-Port OC-48c/STM-16c RPR Interface Module
h3cevtModuleRt-SAP-48GBE OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 300 } -- 48-Port 1000Base-T Gigabit Ethernet Interface Module
h3cevtModuleRt-SAP-48GBP OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 301 } -- 48-Port 1000BASE Ethernet Optical Interface Module
h3cevtModuleRt-SAP-24GBP OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 302 } -- 24-Port 1000BASE Ethernet Optical Interface Module
h3cevtModuleRt-SPE-SSL OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 303 } -- SSL VPN Module
h3cevtModuleRt-SIC-AUDIO OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 304 } -- MOH and PAGE Interface SIC Module Supporting MOH/PAGE/DOOR RELAY
h3cevtModuleRt-FIC-1E1POS-H3 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 305 } -- 1-Port E1 POS Interface FIC Module
h3cevtModuleRt-DSIC-4FXS1FXO OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 306 } -- 4FXS+1FXO Interface DSIC-Module
h3cevtModuleRt-FIC-CPOS OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 307 } -- 1-Port CPOS Interface Module
h3cevtModuleRt-DSIC-1SHDSL-8W OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 308 } -- 1-Port 8 Wire SHDSL Interface DSIC Module
h3cevtModuleRt-SIC-3G-TD OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 309 } -- 1 Port TD-Cellular Interface SIC-Module
h3cevtModuleRt-SIC-3G-CDMA OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 310 } -- 1 Port CDMA-Cellular Interface SIC-Module
h3cevtModuleRt-SIC-3G-HSPA OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 311 } -- 1 Port HSPA-Cellular Interface SIC-Module
h3cevtModuleRt-FIC-OAP-V2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 312 } -- Open Application Platform V2 FIC Module
h3cevtModuleRt-MIM-OAP-V2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 313 } -- Open Application Platform V2 MIM Module
h3cevtModuleRt-MIM-OAPS-V2 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 314 } -- Open Application System-Smart V2 MIM Module
h3cevtModuleRt-HMIM-1CT3 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 315 } -- 1 Port Channelized T3 Interface HMIM Module
h3cevtModuleRt-HMIM-1CE3 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 316 } -- 1 Port Channelized E3 Interface HMIM Module
h3cevtModuleRt-HMIM-1POS OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 317 } -- 1 Port POS Interface HMIM Module
h3cevtModuleRt-HMIM-2SAE OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 318 } -- 2 Port SAE Interface HMIM Module
h3cevtModuleRt-HMIM-4SAE OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 319 } -- 4 Port SAE Interface HMIM Module
h3cevtModuleRt-HMIM-8SAE OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 320 } -- 8 Port SAE Interface HMIM Module
h3cevtModuleRt-HMIM-8ASE OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 321 } -- 8 Port ASE Interface HMIM Module
h3cevtModuleRt-HMIM-16ASE OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 322 } -- 16 Port ASE Interface HMIM Module
h3cevtModuleRt-HMIM-1E1 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 323 } -- 1 Port E1 Interface HMIM Module
h3cevtModuleRt-HMIM-2E1 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 324 } -- 2 Port E1 Interface HMIM Module
h3cevtModuleRt-HMIM-4E1 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 325 } -- 4 Port E1 Interface HMIM Module
h3cevtModuleRt-HMIM-8E1-75 OBJECT IDENTIFIER ::= { h3cevtModuleRouterType 326 } -- 8 Port E1(75 o) Interface HMIM Module