-
Notifications
You must be signed in to change notification settings - Fork 0
/
hpSwitchStat.mib
1768 lines (1524 loc) · 65.7 KB
/
hpSwitchStat.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
-- HP Enterprise Switch Statistics MIB
STATISTICS-MIB DEFINITIONS ::= BEGIN
IMPORTS
Counter, IpAddress
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
DisplayString
FROM RFC1213-MIB
HpSwitchPortType, VidList
FROM HP-ICF-TC
InetAddress, InetAddressType,
InetPortNumber
FROM INET-ADDRESS-MIB
hpSwitch
FROM HP-ICF-OID;
-- Icf Switch Specific
hpSwitchStatistics OBJECT IDENTIFIER ::= { hpSwitch 9 }
MacAddress ::= OCTET STRING (SIZE (6)) -- a 6 octet address
-- in the
-- "canonical"
-- order
VlanID ::= INTEGER (1..65535)
-- ###########################################################
-- the hpSwitchStatistics Group
-- This group contains switch statistics related variables.
-- These variables keep the operational value of the variable
-- while the similar variable in the hpConfig group keep the
-- config. value which will take effect after reboot the
-- switch.
-- ###########################################################
-- The IPX Operational Table
hpSwitchIpxStat OBJECT IDENTIFIER ::= { hpSwitchStatistics 1 }
hpSwitchIpxStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpSwitchIpxStatEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A table that contains information about the
operational IPX status of the virtual LAN in this
device."
::= { hpSwitchIpxStat 1 }
hpSwitchIpxStatEntry OBJECT-TYPE
SYNTAX HpSwitchIpxStatEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Information about the operational IPX status of a
virtual LAN in this device."
INDEX { hpSwitchIpxStatIndex }
::= { hpSwitchIpxStatTable 1 }
HpSwitchIpxStatEntry ::=
SEQUENCE {
hpSwitchIpxStatIndex VlanID,
hpSwitchIpxStatNodeAddr MacAddress,
hpSwitchIpxStatGatewayAddr MacAddress,
hpSwitchIpxStatGatewayEncap INTEGER,
hpSwitchIpxStatAdminStatus INTEGER
}
hpSwitchIpxStatIndex OBJECT-TYPE
SYNTAX VlanID
ACCESS read-only
STATUS mandatory
DESCRIPTION "An index that uniquely identifies the operational
IPX status of a virtual LAN for which this entry
contains information."
::= { hpSwitchIpxStatEntry 1 }
hpSwitchIpxStatNodeAddr OBJECT-TYPE
SYNTAX MacAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current IPX node address of this virtual LAN."
::= { hpSwitchIpxStatEntry 2 }
hpSwitchIpxStatGatewayAddr OBJECT-TYPE
SYNTAX MacAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current IPX node address of the gateway for
this virtual LAN."
::= { hpSwitchIpxStatEntry 3 }
hpSwitchIpxStatGatewayEncap OBJECT-TYPE
SYNTAX INTEGER {
ethernetII(1),
ieee8022(2),
snap(3),
ieee8023Raw(4),
noGateway(5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current type of encapsulation of the gateway."
::= { hpSwitchIpxStatEntry 4 }
hpSwitchIpxStatAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The operational status of the IPX protocol entity."
::= { hpSwitchIpxStatEntry 5 }
-- The IP Operational Table
hpSwitchIpStat OBJECT IDENTIFIER ::= { hpSwitchStatistics 2 }
hpSwitchIpStatTimepAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-only
STATUS obsolete
DESCRIPTION "The operational status of the Time protocol."
::= { hpSwitchIpStat 1 }
hpSwitchIpStatTimepServerAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS obsolete
DESCRIPTION "The current IP address of the Time server."
::= { hpSwitchIpStat 2 }
hpSwitchIpStatTimepPollInterval OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS obsolete
DESCRIPTION "The current client poll interval of the Time server
in minute."
::= { hpSwitchIpStat 3 }
hpSwitchIpStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpSwitchIpStatEntry
ACCESS not-accessible
STATUS obsolete
DESCRIPTION "A table that contains information about the current
IP status of the virtual LAN in this device."
::= { hpSwitchIpStat 4 }
hpSwitchIpStatEntry OBJECT-TYPE
SYNTAX HpSwitchIpStatEntry
ACCESS not-accessible
STATUS obsolete
DESCRIPTION "Information about the IP status of a specific virtual
LAN in this device."
INDEX { hpSwitchIpStatIndex }
::= { hpSwitchIpStatTable 1 }
HpSwitchIpStatEntry ::=
SEQUENCE {
hpSwitchIpStatIndex VlanID,
hpSwitchIpStatAddr IpAddress,
hpSwitchIpStatMask IpAddress,
hpSwitchIpStatGatewayAddr IpAddress,
hpSwitchIpStatAdminStatus INTEGER
}
hpSwitchIpStatIndex OBJECT-TYPE
SYNTAX VlanID
ACCESS read-only
STATUS obsolete
DESCRIPTION "An index that uniquely identifies the IP status of
a virtual LAN for which this entry contains
information."
::= { hpSwitchIpStatEntry 1 }
hpSwitchIpStatAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS obsolete
DESCRIPTION "The current IP address of this Virtual LAN."
::= { hpSwitchIpStatEntry 2 }
hpSwitchIpStatMask OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS obsolete
DESCRIPTION "The current IP subnet mask of this virtual LAN."
::= { hpSwitchIpStatEntry 3 }
hpSwitchIpStatGatewayAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS obsolete
DESCRIPTION "The current IP address of the gateway for this
virtual LAN."
::= { hpSwitchIpStatEntry 4 }
hpSwitchIpStatAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2),
bootp(3)
}
ACCESS read-only
STATUS obsolete
DESCRIPTION "The operational status of the IP protocol for this
virtual LAN. If the value of this variable is 3, the
IP protocol entity will utilize BOOTP during
initialization."
::= { hpSwitchIpStatEntry 5 }
-- The Forwarding Database for VLAN
hpSwitchFdbInfo OBJECT IDENTIFIER ::= { hpSwitchStatistics 4 }
hpSwitchVlanFdbAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpSwitchVlanFdbAddrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A table that contains information about unicast
entries for which the VLAN has forwarding and/or
filtering information. This information is used
by the VLAN bridging function in determining how
to propagate a received frame."
::= { hpSwitchFdbInfo 1 }
hpSwitchVlanFdbAddrEntry OBJECT-TYPE
SYNTAX HpSwitchVlanFdbAddrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Information about a specific unicast MAC address
for which the VLAN has some forwarding and/or
filtering information."
INDEX { hpSwitchVlanFdbId, hpSwitchVlanFdbAddress }
::= { hpSwitchVlanFdbAddrTable 1 }
HpSwitchVlanFdbAddrEntry ::=
SEQUENCE {
hpSwitchVlanFdbId VlanID,
hpSwitchVlanFdbAddress MacAddress,
hpSwitchVlanFdbPort INTEGER
}
hpSwitchVlanFdbId OBJECT-TYPE
SYNTAX VlanID
ACCESS read-only
STATUS mandatory
DESCRIPTION "An index that uniquely identifies a virtual LAN
for which this entry contains information."
::= { hpSwitchVlanFdbAddrEntry 1 }
hpSwitchVlanFdbAddress OBJECT-TYPE
SYNTAX MacAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION "A unicast MAC address for which the VLAN has
forwarding and/or filtering information."
::= { hpSwitchVlanFdbAddrEntry 2 }
hpSwitchVlanFdbPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The port number of the port on which a frame
having a source address equal to the value of
the corresponding instance of hpSwitchVlanFdbAddress
has been seen."
::= { hpSwitchVlanFdbAddrEntry 3 }
hpSwitchPortFdbAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpSwitchPortFdbAddrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A table that contains information about unicast
entries for which the port has forwarding and/or
filtering information. This information is used
by the bridging function in determining how to
propagate a received frame."
::= { hpSwitchFdbInfo 2 }
hpSwitchPortFdbAddrEntry OBJECT-TYPE
SYNTAX HpSwitchPortFdbAddrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Information about a specific unicast MAC address
for which the port has some forwarding and/or
filtering information."
INDEX { hpSwitchPortFdbId, hpSwitchPortFdbAddress }
::= { hpSwitchPortFdbAddrTable 1 }
HpSwitchPortFdbAddrEntry ::=
SEQUENCE {
hpSwitchPortFdbId INTEGER,
hpSwitchPortFdbAddress MacAddress,
hpSwitchPortFdbVlanId VlanID,
hpSwitchPortFdbVidList VidList
}
hpSwitchPortFdbId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The ifIndex value which uniquely identifies a row
in the Interfaces Table. The corresponding row in the
Interfaces Table must exist prior to the index being
used in this table."
::= { hpSwitchPortFdbAddrEntry 1 }
hpSwitchPortFdbAddress OBJECT-TYPE
SYNTAX MacAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION "A unicast MAC address for which the port has
forwarding and/or filtering information."
::= { hpSwitchPortFdbAddrEntry 2 }
hpSwitchPortFdbVlanId OBJECT-TYPE
SYNTAX VlanID
ACCESS read-only
STATUS deprecated
DESCRIPTION "The VLAN ID to which this entry belongs.
Deprecated - hpSwitchPortFdbVidList
should be used instead."
::= { hpSwitchPortFdbAddrEntry 3 }
hpSwitchPortFdbVidList OBJECT-TYPE
SYNTAX VidList
ACCESS read-only
STATUS mandatory
DESCRIPTION "A VidList of VLAN IDs to which this entry belongs."
::= { hpSwitchPortFdbAddrEntry 4 }
hpSwitchStpStat OBJECT IDENTIFIER ::= { hpSwitchStatistics 5 }
hpSwitchStpStatAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The operational status of the spanning tree protocol."
::= { hpSwitchStpStat 1 }
hpSwitchMiscStat OBJECT IDENTIFIER ::= { hpSwitchStatistics 6 }
hpSwitchCpuStat OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The CPU utilization in percent(%)."
::= { hpSwitchMiscStat 1 }
-- The FDDI IP Fragmentation Statistic Group
hpSwitchFddiIpFragStat OBJECT IDENTIFIER ::= { hpSwitchStatistics 7 }
-- The FDDI IP Fragmentation Statistic Table
hpSwitchFddiIpFragStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpSwitchFddiIpFragStatEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A list of IP fragmentation statistics
for the FDDI cards in the switch."
::= { hpSwitchFddiIpFragStat 1 }
hpSwitchFddiIpFragStatEntry OBJECT-TYPE
SYNTAX HpSwitchFddiIpFragStatEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "An Fddi IP fragmentation entry which is
containing statistics for the FDDI
cards in the switch."
INDEX { hpSwitchFddiIpFragStatIndex }
::= { hpSwitchFddiIpFragStatTable 1 }
HpSwitchFddiIpFragStatEntry ::=
SEQUENCE {
hpSwitchFddiIpFragStatIndex INTEGER,
hpSwitchFddiIpFragFramesFragmented Counter,
hpSwitchFddiIpFragFramesCreated Counter,
hpSwitchFddiIpFragFrameErrors Counter
}
hpSwitchFddiIpFragStatIndex OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION "A unique value for each FDDI Card.
The value for each FDDI card must remain constant
at least from one re-initialization of the entity's
network management system to the next
re-initialization."
::= { hpSwitchFddiIpFragStatEntry 1 }
hpSwitchFddiIpFragFramesFragmented OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of FDDI Frames which get fragmented when they
are larger than Ethernet Frame size, 1518 bytes."
::= { hpSwitchFddiIpFragStatEntry 2 }
hpSwitchFddiIpFragFramesCreated OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of inbound FDDI frames which get created when
they larger than Ethernet Frame size, 1518 bytes."
::= { hpSwitchFddiIpFragStatEntry 3 }
hpSwitchFddiIpFragFrameErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of large inbound FDDI frames that contains
error which preventing them from being fragmented
when they are larger than Ethernet Frame size, 1518
bytes. Or number of large frames which are dropped
because the FDDI IP fragmentation is disabled "
::= { hpSwitchFddiIpFragStatEntry 4 }
-- The FDDI System Information and Statistic Group
hpSwitchFddiSystemStat OBJECT IDENTIFIER ::= { hpSwitchStatistics 8 }
-- The FDDI System Information and Statistic Table
hpSwitchFddiSystemStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpSwitchFddiSystemStatEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A list of system infomations and statistics
for the FDDI cards in the switch."
::= { hpSwitchFddiSystemStat 1 }
hpSwitchFddiSystemStatEntry OBJECT-TYPE
SYNTAX HpSwitchFddiSystemStatEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "An Fddi system entry which is
containing statistics for the FDDI
cards in the switch."
INDEX { hpSwitchFddiSystemStatIndex }
::= { hpSwitchFddiSystemStatTable 1 }
HpSwitchFddiSystemStatEntry ::=
SEQUENCE {
hpSwitchFddiSystemStatIndex INTEGER,
hpSwitchFddiSystemOsVersion DisplayString,
hpSwitchFddiSystemRomVersion DisplayString,
hpSwitchFddiSystemMemoryTotal INTEGER,
hpSwitchFddiSystemMemoryFree INTEGER,
hpSwitchFddiSystemCpuUtil INTEGER,
hpSwitchFddiSystemBuildDirectory OCTET STRING,
hpSwitchFddiSystemBuildDate OCTET STRING,
hpSwitchFddiSystemBuildNumber OCTET STRING
}
hpSwitchFddiSystemStatIndex OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION "A unique value for each FDDI Card.
The value for each FDDI card must remain constant
at least from one re-initialization of the entity's
network management system to the next
re-initialization."
::= { hpSwitchFddiSystemStatEntry 1 }
hpSwitchFddiSystemOsVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..10))
ACCESS read-only
STATUS mandatory
DESCRIPTION "Contains the operating code version number (also
known as software or firmware). For example, a
software version such as A.08.01 is described as
follows:
A the function set available in your switch
08 the common release number
01 updates to the current common release"
::= { hpSwitchFddiSystemStatEntry 2 }
hpSwitchFddiSystemRomVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..10) )
ACCESS read-only
STATUS mandatory
DESCRIPTION "Contains the ROM version number (such as A.08.01
is described as follows:
A the function set available in your router
08 the common release number
01 updates to the current common release"
::= { hpSwitchFddiSystemStatEntry 3 }
hpSwitchFddiSystemMemoryTotal OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The number of currently installed bytes."
::= { hpSwitchFddiSystemStatEntry 4 }
hpSwitchFddiSystemMemoryFree OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The number of available (unallocated) bytes."
::= { hpSwitchFddiSystemStatEntry 5 }
hpSwitchFddiSystemCpuUtil OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The CPU utilization in percent(%)."
::= { hpSwitchFddiSystemStatEntry 6 }
hpSwitchFddiSystemBuildDirectory OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (80))
ACCESS read-only
STATUS mandatory
DESCRIPTION "The Build directory the FDDI firmware image "
::= { hpSwitchFddiSystemStatEntry 7 }
hpSwitchFddiSystemBuildDate OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (40))
ACCESS read-only
STATUS mandatory
DESCRIPTION "The Build date and time of the FDDI firmware image"
::= { hpSwitchFddiSystemStatEntry 8 }
hpSwitchFddiSystemBuildNumber OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (20))
ACCESS read-only
STATUS mandatory
DESCRIPTION "The Build number of the FDDI firmware image"
::= { hpSwitchFddiSystemStatEntry 9 }
-- The Automatic Broadcast Control (ABC) Statistic Group
hpABCStats OBJECT IDENTIFIER ::= { hpSwitchStatistics 9 }
hpABCStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpABCStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A table that contains statistic information about
Automatic Broadcast Control on any given VLAN on
the switch."
::= { hpABCStats 1 }
hpABCStatsEntry OBJECT-TYPE
SYNTAX HpABCStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The information associated with each row in the
ABC Statistics Table."
INDEX { hpABCStatsVlanIndex,hpABCStatsPortIndex }
::= { hpABCStatsTable 1 }
HpABCStatsEntry ::=
SEQUENCE {
hpABCStatsVlanIndex VlanID,
hpABCStatsPortIndex INTEGER,
hpABCStatsPortType HpSwitchPortType,
hpABCStatsArpReplies Counter,
hpABCStatsIpxReplies Counter,
hpABCStatsIpRipControl INTEGER,
hpABCStatsIpxRipSapControl INTEGER
}
hpABCStatsVlanIndex OBJECT-TYPE
SYNTAX VlanID
ACCESS read-only
STATUS mandatory
DESCRIPTION "The value which uniquely identifies configuration of
a virtual LAN for which entry contains information."
::= { hpABCStatsEntry 1 }
hpABCStatsPortIndex OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The ifIndex value which uniquely identifies a row
in the Interfaces Table."
::= { hpABCStatsEntry 2 }
hpABCStatsPortType OBJECT-TYPE
SYNTAX HpSwitchPortType
ACCESS read-only
STATUS mandatory
DESCRIPTION "The type of port."
::= { hpABCStatsEntry 3 }
hpABCStatsArpReplies OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "This counter reports the number of ARP responses sent
out by the switch (running ABC) to proxy respond for
hosts learned in the switch ARP cashe."
::= { hpABCStatsEntry 4 }
hpABCStatsIpxReplies OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "This counter reports the number of RIP and SAP
responses sent out by the switch (running ABC) to
proxy respond for routes and services learned by
switch."
::= { hpABCStatsEntry 5 }
hpABCStatsIpRipControl OBJECT-TYPE
SYNTAX INTEGER {
forwarding(1),
notforwarding(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "This status field shows if IP RIP packets are being
forwarded or not forwarded on the ports shown."
::= { hpABCStatsEntry 6 }
hpABCStatsIpxRipSapControl OBJECT-TYPE
SYNTAX INTEGER {
forwarding(1),
notforwarding(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "This status field shows if IPX RIP and/or IPX SAP
packets are being forwarded or not forwarded on the
ports shown."
::= { hpABCStatsEntry 7 }
-- The IGMP Statistic Group
hpIgmpStats OBJECT IDENTIFIER ::= { hpSwitchStatistics 10 }
hpIgmpStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpIgmpStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A table that contains statistic information about
Multicast Groups on any given VLAN on the switch."
::= { hpIgmpStats 1 }
hpIgmpStatsEntry OBJECT-TYPE
SYNTAX HpIgmpStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The information associated with each member in
particular multicast group."
INDEX { hpIgmpStatsVlanIndex, hpIgmpStatsActiveGroupAddr }
::= { hpIgmpStatsTable 1 }
HpIgmpStatsEntry ::=
SEQUENCE {
hpIgmpStatsVlanIndex VlanID,
hpIgmpStatsActiveGroupAddr IpAddress,
hpIgmpStatsReports Counter,
hpIgmpStatsQueries Counter,
hpIgmpStatsQuerierAccessPort INTEGER
}
hpIgmpStatsVlanIndex OBJECT-TYPE
SYNTAX VlanID
ACCESS read-only
STATUS mandatory
DESCRIPTION "The value which uniquely identifies configuration of
a virtual LAN for which entry contains information."
::= { hpIgmpStatsEntry 1 }
hpIgmpStatsActiveGroupAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION "An IP Multicast Group Membership address that has been
sent, via IGMP Membership Reports, through the switch
to querier."
::= { hpIgmpStatsEntry 2 }
hpIgmpStatsReports OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "The number of IGMP report packets that the switch has
seen for this group address."
::= { hpIgmpStatsEntry 3 }
hpIgmpStatsQueries OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "The number of IGMP query packets the switch has seen
for this group address. Note: This object is based
on a group, thus if a query is heard before this
object's group joins, the value will be zero. It will
be non-zero when an all host query, or group specific
query for the associated group, is heard after the
associated group has joined."
::= { hpIgmpStatsEntry 4 }
hpIgmpStatsQuerierAccessPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The port on which the switch detects IGMP query
packets from the querier (device sending out query
packets). If no queries are heard, the value of the
object is zero and we are querier or electing to be
querier. Anytime a querier besides our switch is
heard the value of the object becomes the port number
on which the other querier was heard and the query
election process will be halted if currently running."
::= { hpIgmpStatsEntry 5 }
hpIgmpStatsPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpIgmpStatsPortEntry
ACCESS not-accessible
STATUS deprecated
DESCRIPTION "A table that contains information about status
of the IGMP port configurations on this switch."
::= { hpIgmpStats 2 }
hpIgmpStatsPortEntry OBJECT-TYPE
SYNTAX HpIgmpStatsPortEntry
ACCESS not-accessible
STATUS deprecated
DESCRIPTION "The information associated with status of each IGMP
port configuration."
INDEX { hpIgmpStatsActiveGroupAddr, hpIgmpStatsPortIndex }
::= { hpIgmpStatsPortTable 1 }
HpIgmpStatsPortEntry ::=
SEQUENCE {
hpIgmpStatsPortIndex INTEGER,
hpIgmpStatsPortType HpSwitchPortType,
hpIgmpStatsPortAccess INTEGER
}
hpIgmpStatsPortIndex OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS deprecated
DESCRIPTION "The ifIndex value which uniquely identifies a row
in the Interfaces Table."
::= { hpIgmpStatsPortEntry 1 }
hpIgmpStatsPortType OBJECT-TYPE
SYNTAX HpSwitchPortType
ACCESS read-only
STATUS deprecated
DESCRIPTION "The type of port."
::= { hpIgmpStatsPortEntry 2 }
hpIgmpStatsPortAccess OBJECT-TYPE
SYNTAX INTEGER{
host(1),
router(2),
host-router(3)
}
ACCESS read-only
STATUS deprecated
DESCRIPTION "If this value is host then this port has seen IGMP
report packets for this active group address. If this
value is router then this port has detected IGMP query
packets from the querier (device sending out query
packets). If this value is host-router then this port
has seen report packets, and IGMP query packets from
the querier."
::= { hpIgmpStatsPortEntry 3 }
hpIgmpStatsPortTable2 OBJECT-TYPE
SYNTAX SEQUENCE OF HpIgmpStatsPortEntry2
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A table that contains information about status
of the IGMP port configurations on this switch.
This table2 is supersedes hpIgmpStatsPortTable for
switches which support multiple vlans per port."
::= { hpIgmpStats 3 }
hpIgmpStatsPortEntry2 OBJECT-TYPE
SYNTAX HpIgmpStatsPortEntry2
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The information associated with status of each IGMP
port configuration."
INDEX { hpIgmpStatsVlanIndex,
hpIgmpStatsActiveGroupAddr,
hpIgmpStatsPortIndex2 }
::= { hpIgmpStatsPortTable2 1 }
HpIgmpStatsPortEntry2 ::=
SEQUENCE {
hpIgmpStatsPortIndex2 INTEGER,
hpIgmpStatsPortType2 HpSwitchPortType,
hpIgmpStatsPortAccess2 INTEGER,
hpIgmpStatsPortAgeTimer2 INTEGER,
hpIgmpStatsPortLeaveTimer2 INTEGER
}
hpIgmpStatsPortIndex2 OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The ifIndex value which uniquely identifies a row
in the Interfaces Table."
::= { hpIgmpStatsPortEntry2 1 }
hpIgmpStatsPortType2 OBJECT-TYPE
SYNTAX HpSwitchPortType
ACCESS read-only
STATUS mandatory
DESCRIPTION "The type of port."
::= { hpIgmpStatsPortEntry2 2 }
hpIgmpStatsPortAccess2 OBJECT-TYPE
SYNTAX INTEGER{
host(1),
router(2),
host-router(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "If this value is host then this port has seen IGMP
report packets for this active group address. If this
value is router then this port has detected IGMP query
packets from the querier (device sending out query
packets). If this value is host-router then this port
has seen report packets, and IGMP query packets from
the querier."
::= { hpIgmpStatsPortEntry2 3 }
hpIgmpStatsPortAgeTimer2 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The timer is set when the switch hears a report
and is waiting for the group queries. If the timer
expires the group is considered non-active on the
specific port. The value returned shows how many
seconds left before the timer expires or 0 if the
timer has expired."
::= { hpIgmpStatsPortEntry2 4 }
hpIgmpStatsPortLeaveTimer2 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The timer is set when the switch is waiting for a
report response for queries. If the timer expires the
group is considered non-active on the specific port.
The value returned shows how many seconds left before
the timer expires or 0 if the timer has expired."
::= { hpIgmpStatsPortEntry2 5 }
-- IGMP Statistic end
-- The Load Balance Protocol Statistics Group
hpLdbalStats OBJECT IDENTIFIER ::= { hpSwitchStatistics 11 }
hpLdbalStatsPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpLdbalStatsPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A table that contains information about the
operational status of the load balancing ports on
this switch."
::= { hpLdbalStats 1 }
hpLdbalStatsPortEntry OBJECT-TYPE
SYNTAX HpLdbalStatsPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The information associated with ports configured
for load balancing."
INDEX { hpLdbalStatsPortIndex }
::= { hpLdbalStatsPortTable 1 }
HpLdbalStatsPortEntry ::=
SEQUENCE {
hpLdbalStatsPortIndex INTEGER,
hpLdbalStatsPortState INTEGER,
hpLdbalStatsAdjacentSwitch MacAddress,
hpLdbalStatsPeerPort MacAddress,
hpLdbalStatsAdjacentHost DisplayString,
hpLdbalStatsMeshWarningStatus INTEGER
}
hpLdbalStatsPortIndex OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The ifIndex value which uniquely identifies a row
in the Interfaces Table."
::= { hpLdbalStatsPortEntry 1 }
hpLdbalStatsPortState OBJECT-TYPE
SYNTAX INTEGER{
disabled(1),
error (2),
initial(3),
notEstablished(4),
established(5),
topologyError(6)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "This variable describes the load balancing port state.
A disabled state indicates the port does not have a
link beat. An initial state indicates the port has
recently established a link beat and is detecting
whether or not it is in the load balancing domain. An
established state indicates that the port is inside
the load balancing domain, directly connected to
another load balancing port, and learning addresses
via the reception of MAC address learn information
packets. A notEstablished state indicates that the
port is outside the load balancing domain, not
directly connected to a load balancing port, and
learning MAC address by receiving unknown source
address packets. An error state indicates the port
has detected a direct connection to more than one
load balancing port and is blocked, only accepting
load balancing protocol packets. When the error
condition clears, the port transitions either into
the established or not established state."
::= { hpLdbalStatsPortEntry 2 }
hpLdbalStatsAdjacentSwitch OBJECT-TYPE
SYNTAX MacAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION "The switch identifier of the adjacent switch connected
to the corresponding load balancing established port.
If load balancing has not been established on this
port then this value is void."
::= { hpLdbalStatsPortEntry 3 }
hpLdbalStatsPeerPort OBJECT-TYPE
SYNTAX MacAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION "The port identifier of the peer port connected to
the corresponding load balancing established port. If
load balancing has not been established on this port
then this value is void."
::= { hpLdbalStatsPortEntry 4 }
hpLdbalStatsAdjacentHost OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "The name of the adjacent Host"
::= { hpLdbalStatsPortEntry 5 }
hpLdbalStatsMeshWarningStatus OBJECT-TYPE
SYNTAX INTEGER{
enabled(1),
disabled(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "This variable provides a high level summary of any
mismatch in the mesh configuration and remind users
to check the log for any mesh warning messages.
If it is Yes then there is at least one warning
message and will be No if there are no warning
messages"
::= { hpLdbalStatsPortEntry 6 }
-- Load Balance Protocol Statistics end
hpSwitchMacStats OBJECT IDENTIFIER ::= { hpSwitchStatistics 12 }
hpSwitchFdbAddressCount OBJECT-TYPE
SYNTAX INTEGER (0..16384)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Keep a counter for the total number of MAC