-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHP-ICF-OID
2377 lines (1919 loc) · 86.7 KB
/
HP-ICF-OID
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
HP-ICF-OID DEFINITIONS ::= BEGIN
IMPORTS
enterprises, MODULE-IDENTITY, OBJECT-IDENTITY
FROM SNMPv2-SMI;
icf MODULE-IDENTITY
LAST-UPDATED "200607271200Z" -- July 27, 2006
ORGANIZATION "Hewlett Packard Company,
Procurve Networking Business"
CONTACT-INFO "Hewlett Packard Company
8000 Foothills Blvd.
Roseville, CA 95747"
DESCRIPTION "This MIB module describes devices in the HP
Integrated Communication Facility product
line."
REVISION "200705210000Z" -- May 21, 2007
DESCRIPTION "Revised definitions for J8766A and
J8988A devices."
REVISION "200704300000Z" -- April 30, 2007
DESCRIPTION "Added definitions for all 2610 products."
REVISION "200704170000Z" -- April 17, 2006
DESCRIPTION "Added hpicfProviderBridge node and branch."
REVISION "200610310000Z" -- October 31, 2006
DESCRIPTION "Added hpicfCommonSecurity node and branch."
REVISION "200609251200Z" -- Sept 25, 2006
DESCRIPTION "Cleaned up definition of J8715 Chassis."
REVISION "200609081200Z" -- Sept 8, 2006
DESCRIPTION "Added definitions for ESP blades."
REVISION "200608221200Z" -- Aug 22, 2006
DESCRIPTION "Added definitions for hpicfL3MacConfigMIB."
REVISION "200608040000Z" -- August 04, 2006
DESCRIPTION "Added definition for hpicfInstMonMIB."
REVISION "200607271200Z" -- July 27, 2006
DESCRIPTION "Added definitions for J9032A, J9031A,
J8768A, J8765B, J9033A, J9036A, J9037A,
J8766A and J8988A devices."
REVISION "200607260000Z" -- July 26, 2006
DESCRIPTION "Added definition for J9049A and J9050A switch."
REVISION "200606300000Z" -- June 30, 2006
DESCRIPTION "Added definition for J9038A device."
REVISION "200606051233Z" -- June 05, 2006
DESCRIPTION "Added definition for hpicfDhcpSnoopMIB."
REVISION "200605171233Z" -- May 17, 2006
DESCRIPTION "Added definition for hpSwitchAuthorizationMIB."
REVISION "200603201627Z" -- Mar. 20, 2006
DESCRIPTION "Added definition for J9028A and J9029A switch"
REVISION "200601101853Z" -- Jan. 10, 2006
DESCRIPTION "Added definition J8726A device."
REVISION "200508041619Z" -- August 4, 2005
DESCRIPTION "Added definitions for hpSwitchAuthenticationMIB,
hpSwitchAccountingMIB, hpicfXrrpMIB, hpicfUsrAuthMIB,
hpicfPimMIB, hpicfMstpMIB, hpicfUdpFwd,
hpicfConnectionRateFilter, hpicfDot1xMIB,
hpicfLldpMIB, hpicfVrrpMIB."
REVISION "200506081244Z" -- June 8, 2005
DESCRIPTION "Added definition for hpicFrabric."
REVISION "200505202123Z" -- May 20, 2005
DESCRIPTION "Added definitions J9001 and J9003 devices."
REVISION "200503221926Z" -- March 22, 2005
DESCRIPTION "Added definitions J8771A and J8772A devices."
REVISION "200503081530Z" -- March 08, 2005
DESCRIPTION "Added definition for hpSwitchModuleJ8762A,
hpSwitch2600n8PPortSlot, updated definition
for J8474A, updated hpSwitchJ8433A,
updated hpSwitchJ8474A, and updated
hpSwitchModuleJ8433A."
REVISION "200502250041Z" -- February 24, 2005
DESCRIPTION "Added definitions for hpicfRateLimitMIB and
J8680A router."
REVISION "200501111745Z" -- January 11, 2005
DESCRIPTION "Added definitions for J8770A, J8773A, J8765A,
J8764A, J8776A, and J8763A products."
REVISION "200501102043Z" -- January 10, 2005
DESCRIPTION "Added definitions for J8697A, J8698A products."
REVISION "200409102043Z" -- September 10, 2004
DESCRIPTION "Added definitions for more WAN products."
REVISION "200409021030Z" -- September 02, 2004
DESCRIPTION "Added definitions for hpSwitchModuleJ4905A,
hpSwitchModuleJ4906A, hpSwitchModuleJ8433A,
hpSwitchModuleJ8474A, and hpicfJumboMIB."
REVISION "200408091030Z" -- August 09, 2004
DESCRIPTION "Added ProCurve 6400cl-6XG and 6410cl-6XG."
REVISION "200407282043Z" -- July 28, 2004
DESCRIPTION "Added definitions for J8718A and J8719A."
REVISION "200403310050Z" -- March 31, 2004
DESCRIPTION "Added definitions for 10Gig SR, LR, and ER."
REVISION "200403310050Z" -- March 31, 2004
DESCRIPTION "Added ProCurve 2650-CR and 2626-CR Switch
definitions."
REVISION "200402122115Z" -- February 12, 2004
DESCRIPTION "Added definition for 10Gig CX4,
ESP port and WAN Products"
REVISION "200401201855Z" -- January 20, 2004
DESCRIPTION "Added definitions for J8161A, J4907A, J8162A,
J4820B, J4821B, and J4878B."
REVISION "200312291705Z" -- December 29, 2003
DESCRIPTION "Added definitions for J4905A and J4906A Switch
definitions."
REVISION "200306091617Z" -- June 9, 2003
DESCRIPTION "Added definitions for wireless products."
REVISION "200304101118Z" -- April 10, 2003
DESCRIPTION "Added ProCurve 2650-PWR and 2626-PWR Switch
definitions."
REVISION "200302041716Z" -- February 04, 2003
DESCRIPTION "Added Transceiver cards for HP Switch 2824."
REVISION "200301281510Z" -- January 28, 2003
DESCRIPTION "Added ProCurve 2626 Switch definitions."
REVISION "200301211633Z" -- January 21, 2003
DESCRIPTION "Added Proliant Switch Object to hpEtherSwitch."
REVISION "200204060100Z" -- April 5, 2002
DESCRIPTION "Added new Procurve Switch definitions"
REVISION "200011032225Z" -- November 3, 2000
DESCRIPTION "Added new Procurve Switch definitions"
REVISION "9909030004Z" -- September 3, 1999
DESCRIPTION "Added definition for ProCurve Routing
Switch products."
REVISION "9809240004Z" -- September 24, 1998
DESCRIPTION "Added definitions for 100Mbit and 10/100
hub products, and definitions for the
ProCurve switch products."
REVISION "9710210242Z" -- October 21, 1997
DESCRIPTION "Added definitions for new hub products
(10Base-T Hub-12M, 10Base-T Hub-24M, and
10Base-T Hub-16M) and Switch 2000 ATM module.
Added branch for the Fault Finder MIB."
REVISION "9703060342Z" -- March 6, 1997
DESCRIPTION "Added definitions for new switch products
(208/224), 100T hub (J3233A). Added missing
include of OBJECT-IDENTITY."
REVISION "9609132303Z" -- September 13, 1996
DESCRIPTION "Initial revision. Split from the former
monolithic hpicf MIB."
::= { nm 14 }
hp OBJECT IDENTIFIER ::= { enterprises 11 }
nm OBJECT IDENTIFIER ::= { hp 2 }
-- Branches under the icf node. Most of these
-- branches are defined in other modules.
icfCommon OBJECT IDENTIFIER ::= { icf 1 }
icfHub OBJECT IDENTIFIER ::= { icf 2 }
icfBridge OBJECT IDENTIFIER ::= { icf 3 }
icfSecurity OBJECT IDENTIFIER ::= { icf 4 }
icfConfig OBJECT IDENTIFIER ::= { icf 5 }
icfEsSwitch OBJECT IDENTIFIER ::= { icf 6 }
hpEs OBJECT IDENTIFIER ::= { icfEsSwitch 1 }
hpEs2 OBJECT IDENTIFIER ::= { icfEsSwitch 2 }
hpNetSwitch OBJECT IDENTIFIER ::= { icfEsSwitch 3 }
icfRouter OBJECT IDENTIFIER ::= { icf 7 }
icfDot12Draft OBJECT IDENTIFIER ::= { icf 8 }
icfVgRepeater OBJECT IDENTIFIER ::= { icfDot12Draft 1 }
icfVgInterface OBJECT IDENTIFIER ::= { icfDot12Draft 2 }
hpEntityMIB OBJECT IDENTIFIER ::= { icf 9 }
hpicfAdmin OBJECT IDENTIFIER ::= { icf 10 }
hpicfObjects OBJECT IDENTIFIER ::= { icf 11 }
hpicfNotifications OBJECT IDENTIFIER ::= { icf 12 }
hpicfOEMs OBJECT IDENTIFIER ::= { icf 13 }
hpicfFEHub OBJECT IDENTIFIER ::= { hpicfOEMs 1 }
-- HP defined transport domains
hpicfDomains OBJECT IDENTIFIER ::= { hpicfAdmin 1 }
hpicfLLCDomain OBJECT-IDENTITY
STATUS current
DESCRIPTION "The SNMP over 802.2 transport domain."
::= { hpicfDomains 1 }
-- Placeholder for registering object modules. Note that the
-- MODULE-IDENTITY, MODULE-COMPLIANCE, and OBJECT-GROUP
-- definitions for each module are declared beneath these
-- branches.
hpicfObjectModules OBJECT IDENTIFIER ::= { hpicfAdmin 2 }
icfSecurityMib OBJECT IDENTIFIER ::= { hpicfObjectModules 1 }
hpicfChainMib OBJECT IDENTIFIER ::= { hpicfObjectModules 2 }
hpicfChassisMib OBJECT IDENTIFIER ::= { hpicfObjectModules 3 }
hpicfDownloadMib OBJECT IDENTIFIER ::= { hpicfObjectModules 4 }
hpicfBasicMib OBJECT IDENTIFIER ::= { hpicfObjectModules 5 }
hpicfStackMib OBJECT IDENTIFIER ::= { hpicfObjectModules 6 }
hpicfLinkTestMib OBJECT IDENTIFIER ::= { hpicfObjectModules 7 }
hpicfGenRptrMib OBJECT IDENTIFIER ::= { hpicfObjectModules 8 }
hpicf8023RptrMib OBJECT IDENTIFIER ::= { hpicfObjectModules 9 }
icfVgRepeaterMib OBJECT IDENTIFIER ::= { hpicfObjectModules 10 }
hpicfVgRptrMib OBJECT IDENTIFIER ::= { hpicfObjectModules 11 }
hpicfFaultFinderMib OBJECT IDENTIFIER ::= { hpicfObjectModules 12 }
hpicfJumboMIB OBJECT IDENTIFIER ::= { hpicfObjectModules 13 }
hpicfRateLimitMIB OBJECT IDENTIFIER ::= { hpicfObjectModules 14 }
-- Placeholder for registering agent capabilities modules
hpicfAgentModules OBJECT IDENTIFIER ::= { hpicfAdmin 3 }
-- Placeholders for branches allocated to agent capabilities
-- modules
hpicfETwistHubAgentsMib OBJECT IDENTIFIER ::= { hpicfAgentModules 1 }
hpicfETwistBridgeAgentsMib OBJECT IDENTIFIER ::= { hpicfAgentModules 2 }
hpicfAdvStk8023AgentsMib OBJECT IDENTIFIER ::= { hpicfAgentModules 3 }
hpicfAdvStkVGAgentsMib OBJECT IDENTIFIER ::= { hpicfAgentModules 4 }
-- Placeholder for the HP ICF Textual Conventions module
hpicfTextualConventions OBJECT IDENTIFIER ::= { hpicfAdmin 4 }
-- Placeholders for branches allocated to other MIB modules
-- under the hpicfObjects node
hpicfCommon OBJECT IDENTIFIER ::= { hpicfObjects 1 }
hpicfRepeater OBJECT IDENTIFIER ::= { hpicfObjects 2 }
hpicfVg OBJECT IDENTIFIER ::= { hpicfObjects 3 }
hpicfGenericRepeater OBJECT IDENTIFIER ::= { hpicfObjects 4 }
hpicfSwitch OBJECT IDENTIFIER ::= { hpicfObjects 5 }
hpicfAccess OBJECT IDENTIFIER ::= { hpicfObjects 6 }
hpicfWAN OBJECT IDENTIFIER ::= { hpicfObjects 7 }
hpicfFabric OBJECT IDENTIFIER ::= { hpicfObjects 8 }
-- Branches under the hpicfSwitch node
hpSwitch OBJECT IDENTIFIER ::= { hpicfSwitch 1 }
-- Branches under the hpSwitch node
hpOpSystem OBJECT IDENTIFIER ::= { hpSwitch 1 }
hpHwSystem OBJECT IDENTIFIER ::= { hpSwitch 2 }
hpVLAN OBJECT IDENTIFIER ::= { hpSwitch 3 }
hpConfig OBJECT IDENTIFIER ::= { hpSwitch 7 }
hpSwitchStatistics OBJECT IDENTIFIER ::= { hpSwitch 9 }
hpSwitchVirtualStackMib OBJECT IDENTIFIER ::= { hpSwitch 10 }
hpicfDhcpRelay OBJECT IDENTIFIER ::= { hpSwitch 11 }
hpicfBridge OBJECT IDENTIFIER ::= { hpSwitch 12 }
hpicfRip OBJECT IDENTIFIER ::= { hpSwitch 13 }
hpicfOspf OBJECT IDENTIFIER ::= { hpSwitch 14 }
hpicfIpRouting OBJECT IDENTIFIER ::= { hpSwitch 15 }
hpSwitchAuthenticationMIB OBJECT IDENTIFIER ::= { hpSwitch 16 }
hpSwitchAccountingMIB OBJECT IDENTIFIER ::= { hpSwitch 17 }
hpicfXrrpMIB OBJECT IDENTIFIER ::= { hpSwitch 18 }
hpicfUsrAuthMIB OBJECT IDENTIFIER ::= { hpSwitch 19 }
hpicfPimMIB OBJECT IDENTIFIER ::= { hpSwitch 20 }
hpicfMstpMIB OBJECT IDENTIFIER ::= { hpSwitch 21 }
hpicfUdpFwd OBJECT IDENTIFIER ::= { hpSwitch 23 }
hpicfConnectionRateFilter OBJECT IDENTIFIER ::= { hpSwitch 24 }
hpicfDot1xMIB OBJECT IDENTIFIER ::= { hpSwitch 25 }
hpicfLldpMIB OBJECT IDENTIFIER ::= { hpSwitch 30 }
hpicfVrrpMIB OBJECT IDENTIFIER ::= { hpSwitch 31 }
hpSwitchAuthorizationMIB OBJECT IDENTIFIER ::= { hpSwitch 32 }
hpicfIpDhcpSnoop OBJECT IDENTIFIER ::= { hpSwitch 34 }
hpicfInstMonMIB OBJECT IDENTIFIER ::= { hpSwitch 35 }
hpicfL3MacConfigMIB OBJECT IDENTIFIER ::= { hpSwitch 36 }
hpicfArpProtect OBJECT IDENTIFIER ::= { hpSwitch 37 }
hpicfProviderBridge OBJECT IDENTIFIER ::= { hpSwitch 40 }
hpicfGppcMIB OBJECT IDENTIFIER ::= { hpSwitch 41 }
hpicfMldMIB OBJECT IDENTIFIER ::= { hpSwitch 48 }
-- Branches under the hpicfCommon node
hpicfChain OBJECT IDENTIFIER ::= { hpicfCommon 1 }
hpicfChassis OBJECT IDENTIFIER ::= { hpicfCommon 2 }
hpicfDownload OBJECT IDENTIFIER ::= { hpicfCommon 3 }
hpicfBasic OBJECT IDENTIFIER ::= { hpicfCommon 4 }
hpicfStack OBJECT IDENTIFIER ::= { hpicfCommon 5 }
hpicfLinktest OBJECT IDENTIFIER ::= { hpicfCommon 6 }
hpicfFaultFinder OBJECT IDENTIFIER ::= { hpicfCommon 7 }
hpicfPOE OBJECT IDENTIFIER ::= { hpicfCommon 9 }
hpicfCommonSecurity OBJECT IDENTIFIER ::= { hpicfCommon 12 }
-- Branches for registering HP ICF notifications
hpicfCommonTraps OBJECT IDENTIFIER ::= { hpicfNotifications 1 }
hpicfCommonTrapsPrefix OBJECT IDENTIFIER ::= { hpicfCommonTraps 0 }
hpicf8023RptrTraps
OBJECT IDENTIFIER ::= { hpicfNotifications 2 }
hpicf8023RptrTrapsPrefix OBJECT IDENTIFIER ::= { hpicf8023RptrTraps 0 }
hpicfVgRptrTraps OBJECT IDENTIFIER ::= { hpicfNotifications 3 }
hpicfVgRptrTrapsPrefix OBJECT IDENTIFIER ::= { hpicfVgRptrTraps 0 }
hpicfGenRptrTraps OBJECT IDENTIFIER ::= { hpicfNotifications 4 }
hpicfGenRptrTrapsPrefix OBJECT IDENTIFIER ::= { hpicfGenRptrTraps 0 }
hpicfRateLimitTraps OBJECT IDENTIFIER ::= { hpicfNotifications 5 }
hpicfRateLimitTrapsPrefix OBJECT IDENTIFIER ::= { hpicfRateLimitTraps 0 }
-- HP ICF Device Identifiers
hpSystem OBJECT IDENTIFIER ::= { nm 3 }
netElement OBJECT IDENTIFIER ::= { hpSystem 7 }
-- Bridges
bridge OBJECT IDENTIFIER ::= { netElement 1 }
bridge1010 OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP 28673A 10:10 LAN Bridge."
::= { bridge 1 }
bridgeRemote OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP 28674A/B Remote Bridge."
::= { bridge 2 }
eswitch OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2418A EtherTwist LAN Switch."
::= { bridge 3 }
eswitch2 OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2980A AdvanceStack LAN Switch-16."
::= { bridge 8 }
netSwitch100 OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J3126A AdvanceStack Switch 100."
::= { bridge 9 }
netSwitch200 OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J3125A AdvanceStack Switch 200."
::= { bridge 10 }
-- Routers
router OBJECT IDENTIFIER ::= { netElement 2 }
icfRouterER OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP 27285A Router ER."
::= { router 1 }
icfRouterTR OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP 27286A Router TR."
::= { router 2 }
icfRouterSR OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP 27288A Router SR."
::= { router 3 }
icfRouterFR OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP 27289A Router FR."
::= { router 4 }
icfRouterLR OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP Router LR."
::= { router 5 }
icfRouterBR OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP 27290A Router BR."
::= { router 6 }
icfRouterPR OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2540A Router PR."
::= { router 7 }
icfRouter650 OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2430A AdvanceStack Router 650."
::= { router 8 }
icfRouter230 OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2540B Router 230."
::= { router 9 }
icfRouter250 OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP 27289B Router 250."
::= { router 10 }
icfRouter255 OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2543A Router 255."
::= { router 11 }
icfRouter210 OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2628A AdvanceStack Router 210."
::= { router 12 }
-- Cards for the Router 650
icfRouter650Engine OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the routing
engine card for the HP J2430A AdvanceStack
Router 650."
::= { icfRouter650 2 }
icfRouter650Port4E OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2435A AdvanceStack Router 4E Port Module."
::= { icfRouter650 3 }
icfRouter650Port4S OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2434A AdvanceStack Router 4S Port Module."
::= { icfRouter650 4 }
icfRouter650Port4T OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2437A AdvanceStack Router 4T Port Module."
::= { icfRouter650 5 }
icfRouter650PortFDDI OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2436A AdvanceStack Router FDDI Port Module."
::= { icfRouter650 6 }
icfRouter650Port100VG OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2438A AdvanceStack Router 100VG Port
Module."
::= { icfRouter650 7 }
-- Hubs
hub OBJECT IDENTIFIER ::= { netElement 5 }
etherTwist12 OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP 27288A/B EtherTwist Hub PLUS."
::= { hub 1 }
fiberOptic OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP 28682A Fiber-Optic Hub PLUS."
::= { hub 3 }
etherTwist48 OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP 28699A EtherTwist Hub PLUS/48."
::= { hub 4 }
thinLAN OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP 28692A ThinLAN Hub PLUS."
::= { hub 5 }
etherTwist24S OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2355A EtherTwist Secure Hub PLUS/24S"
::= { hub 6 }
advStack12 OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2600A AdvanceStack 10Base-T Hub-12"
::= { hub 7 }
advStack24 OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2601A/B AdvanceStack 10Base-T Hub-24."
::= { hub 8 }
advStack48 OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2602A/B AdvanceStack 10Base-T Hub-48."
::= { hub 9 }
advStackVg15 OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2410A AdvanceStack 100VG Hub-15."
::= { hub 10 }
advStackU8 OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2610A AdvanceStack 10Base-T Hub-8U."
::= { hub 11 }
advStackU16 OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2611A AdvanceStack 10Base-T Hub-16U."
::= { hub 12 }
advStackVg6 OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2413A AdvanceStack 100VG Hub-7M."
::= { hub 13 }
advStackVg12 OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2415A AdvanceStack 100VG Hub-14."
::= { hub 14 }
hpAdvStkEnetSH12R OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J3200A AdvanceStack 10BT Switching Hub-12R."
::= { hub 15 }
hpAdvStkEnetSH24R OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J3202A AdvanceStack 10BT Switching Hub-24R."
::= { hub 16 }
hpAdvStkEnetSH24T OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J3204A AdvanceStack 10BT Switching Hub-24T."
::= { hub 17 }
hpAdvStk100Tx12TM OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J3233A AdvanceStack 100B-TX Hub-12TM w/MGMT."
::= { hub 18 }
hp10THub16M OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J3188A 10Base-T Hub-16M."
::= { hub 19}
hp10BaseTHub12M OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J3301A 10Base-T Hub-12M"
::= { hub 20 }
hp10BaseTHub24M OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J3303A 10Base-T Hub-24M"
::= { hub 21 }
hpProCurve10T100THub12M OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J3288A ProCurve 100Base-T Hub 12M"
::= { hub 22 }
hpProCurve10T100THub24M OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J3289A ProCurve 100Base-T Hub 24M"
::= { hub 23 }
-- Entity MIB OIDs
chassis OBJECT IDENTIFIER ::= { netElement 8 }
repeaterAgent OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2603A/B AdvanceStack Ethernet SNMP module."
::= { chassis 1 }
chassisAgents OBJECT IDENTIFIER ::= { chassis 2 }
icfVgAgent OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2414A AdvanceStack 100VG/ET SNMP/Bridge
Module."
::= { chassisAgents 1 }
icfVgAgent2 OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J2414B AdvanceStack 100VG/ET SNMP/Bridge
Module."
::= { chassisAgents 3 }
hpicfEnetSMM OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HPJ3133A AdvanceStack 8U/16U SNMP Module."
::= { chassisAgents 4 }
hpAdvStkEnetSHAgent OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HPJ3210A AdvanceStack 10BT Switching Hub
Management Module."
::= { chassisAgents 5 }
hpAdvStkSwStackTopMgmt OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HPJ3179A AdvanceStack Switch StackTop Management
Module."
::= { chassisAgents 6 }
hpSwitch8000CpuCard OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J4110A Switch 8000M and HP J4121A Switch
4000M CPU card."
::= { chassisAgents 7 }
icfSensors OBJECT IDENTIFIER ::= { chassis 3 }
icfPowerSupplySensor OBJECT-IDENTITY
STATUS current
DESCRIPTION "Identifier for a power supply sensor type."
::= { icfSensors 1 }
icfFanSensor OBJECT-IDENTITY
STATUS current
DESCRIPTION "Identifier for a fan sensor type."
::= { icfSensors 2 }
icfTemperatureSensor OBJECT-IDENTITY
STATUS current
DESCRIPTION "Identifier for a temperature sensor type."
::= { icfSensors 3 }
icfFutureSlotSensor OBJECT-IDENTITY
STATUS current
DESCRIPTION "Identifier for a FutureSlot sensor type."
::= { icfSensors 4 }
icfCards OBJECT IDENTIFIER ::= { chassis 4 }
icfUnidentifiedCard OBJECT-IDENTITY
STATUS current
DESCRIPTION "Used to indicate that a module is installed in
a slot in a chassis, but the agent is unable to
identify it."
::= { icfCards 1 }
hpAdvStkEnetSHSwitch OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HP J3212A AdvanceStack 10BT Switching Hub Switch
Module."
::= { icfCards 2 }
hpAdvStkSwStackExpander OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
HPJ3180A AdvanceStack Switch Stack Expander
Module."
::= { icfCards 3 }
hpicfStacks OBJECT IDENTIFIER ::= { chassis 5 }
hpAdvStkEnetSHStack OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a stack of
HP AdvanceStack 10Base-T Switching Hubs."
::= { hpicfStacks 1 }
hpicfBackplanes OBJECT IDENTIFIER ::= { chassis 6 }
hpAdvStkEnetSHExtSeg OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for an inter-box
repeater segment in a stack of HP AdvanceStack
10Base-T Switching Hubs."
::= { hpicfBackplanes 1 }
hpAdvStkEnetSHIntSeg OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a repeater
segment that is internal to a single box in
a stack of HP AdvanceStack 10Base-T Switching
Hubs."
::= { hpicfBackplanes 2 }
hp10BaseTHubSeg OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a repeater
segment in an HP 10Base-T Hub-12M or HP
10Base-T Hub-24M."
::= { hpicfBackplanes 3 }
hpSwitchBackplane OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for an HP Switch
backplane."
::= { hpicfBackplanes 4 }
hp100BaseTHubSeg OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a repeater
segment in an HP ProCurve 100Base-T Hub 12M
or HP ProCurve 100Base-T Hub 24M."
::= { hpicfBackplanes 5 }
hpicfSlots OBJECT IDENTIFIER ::= { chassis 7 }
hpAdvStkEnetSHAgentSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the Management
Slot in an HP AdvanceStack 10Base-T Switching
Hub."
::= { hpicfSlots 1 }
hpAdvStkEnetSHIOSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the Expansion
Slot in an HP AdvanceStack 10Base-T Switching
Hub."
::= { hpicfSlots 2 }
hpAdvStkSwStackMgmtSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
Management/Stacking Slot in an HP AdvanceStack
Switch 208 or Switch 224."
::= { hpicfSlots 3 }
hpAdvStkSwStackExpSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the
Expansion Slot in an HP AdvanceStack Switch 208
or Switch 224."
::= { hpicfSlots 4 }
hpSwitch8000PowerSupplyBay OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a
power supply bay in an HP Switch 8000 or
HP Switch 4000."
::= { hpicfSlots 5 }
hpSwitch8000CpuSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for the CPU
slot in an HP Switch 8000 or HP Switch 4000."
::= { hpicfSlots 6 }
hpSwitch8000PortSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a port
module slot in an HP Switch 8000, HP Switch
4000, HP Switch 1600, or HP Switch 2400/2424."
::= { hpicfSlots 7 }
hpSwitch2524PortSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a port
module slot in an HP Switch 2524, HP Switch
2512, or HP Network Blade."
::= { hpicfSlots 8 }
hpSwitch5308PowerSupplyBay OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a
power supply bay in an HP Switch 5308XL or
HP Switch 5304XL."
::= { hpicfSlots 9 }
hpSwitch5308PortSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a port
module slot in an HP Switch 5308XL, HP Switch
5304XL, HP Switch 3324XL, or HP Switch 3124XL."
::= { hpicfSlots 10 }
hpSwitch4865PowerSupplyBay OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a
power supply bay in an HP Switch 4108GL."
::= { hpicfSlots 11 }
hpSwitch4865PortSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a port
module slot in an HP Switch 4108GL."
::= { hpicfSlots 12 }
hpSwitch2650PortSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a port
module slot in an HP Switch 2650."
::= { hpicfSlots 13 }
hpSwitch6108PortSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a port
module slot in an HP Switch 6108."
::= { hpicfSlots 14 }
hpSwitch2824PortSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a port
module slot in an HP Switch 2824 or HP Switch 2848."
::= { hpicfSlots 15 }
hpSwitch2626PortSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a port
module slot in an HP Switch 2626."
::= { hpicfSlots 16 }
hpSwitch2650PPortSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a port
module slot in an HP Switch 2650-PWR."
::= { hpicfSlots 17 }
hpSwitch2626PPortSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a port
module slot in an HP Switch 2626-PWR."
::= { hpicfSlots 18 }
hpSwitch3324PortSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a port
module slot in an HP Switch 3400cl-24G or
HP Switch 3400cl-48G."
::= { hpicfSlots 19 }
hpSwitch2650CRPortSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a port
module slot in an HP Switch 2650-CR."
::= { hpicfSlots 20 }
hpSwitch2626CRPortSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a port
module slot in an HP Switch 2626-CR."
::= { hpicfSlots 21 }
hpSwitch2600n8PPortSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a port
module slot in an HP Switch 2600-8-PWR."
::= { hpicfSlots 22 }
hpSwitch869xPowerSupplyBay OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a
power supply bay in an HP Switch 8697 or
HP Switch 8698."
::= { hpicfSlots 23 }
hpSwitch869xPortSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a port
module slot in an HP Switch 8697, HP Switch 8698,
HP Switch 8692, HP switch 8693 and HP Switch 8992."
::= { hpicfSlots 24 }
hpSwitch2510PortSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a port
module slot in an HP Switch 2510vl-24 or
HP Switch 2510vl-48."
::= { hpicfSlots 25 }
hpSwitch2810PortSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a port
module slot in an HP Switch 2810vl-24G or
HP Switch 2810vl-48G."
::= { hpicfSlots 26 }
hpSwitch5400CpuCardBay OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a
Management Module bay in a Procurve Switch 54XXZL or
Procurve Switch 8212ZL."
::= { hpicfSlots 27 }
hpSwitch8212FabricBay OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a
Fabric bay in a Procurve Switch 8212ZL."
::= { hpicfSlots 28 }
hpSwitch2610PortSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a port
module slot in an HP Switch 2610-24 or
HP Switch 2610-48."
::= { hpicfSlots 29 }
hpSwitch2610PPortSlot OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a port
module slot in an HP Switch 2610-24-PWR,
HP Switch 2610-48-PWR or HP Switch
2610-24/12PWR."
::= { hpicfSlots 30 }
hpicfHubPorts OBJECT IDENTIFIER ::= { chassis 8 }
hpAdvStkEnetSHExtPort OBJECT-IDENTITY
STATUS current
DESCRIPTION "The authoritative identifier for a repeater
port which has an external connector on an HP
AdvanceStack 10Base-T Switching Hub."
::= { hpicfHubPorts 1 }
hpAdvStkEnetSHIntPort OBJECT-IDENTITY