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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
|
-- 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
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
}
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 }
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 statictics 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 statictics 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 assoicated 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
}
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 }
-- 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
Addresses currently learnt on the box."
::= { hpSwitchMacStats 1 }
-- Flow Control Status Table
hpSwitchFlowControlStatus OBJECT IDENTIFIER ::= { hpSwitchStatistics 13 }
hpSwitchFlowControlStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpSwitchFlowControlStatusEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A table that contains information about the
operational status of flow control on this switch."
::= { hpSwitchFlowControlStatus 1 }
hpSwitchFlowControlStatusEntry OBJECT-TYPE
SYNTAX HpSwitchFlowControlStatusEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The flow control status per port basis."
INDEX { hpSwitchFlowControlStatusPortIndex }
::= { hpSwitchFlowControlStatusTable 1 }
HpSwitchFlowControlStatusEntry ::=
SEQUENCE {
hpSwitchFlowControlStatusPortIndex INTEGER,
hpSwitchFlowControlState INTEGER
}
hpSwitchFlowControlStatusPortIndex OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The ifIndex value which uniquely identifies a row
in the Interfaces Table."
::= { hpSwitchFlowControlStatusEntry 1 }
hpSwitchFlowControlState OBJECT-TYPE
SYNTAX INTEGER {
off(1),
on(2),
on-rx(3),
on-tx(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Gets the current Flow Control State from hardware."
::= { hpSwitchFlowControlStatusEntry 2 }
-- Fast EtherChannel Trunk Statistics Group
hpFECStatsTrunk OBJECT IDENTIFIER ::= { hpSwitchStatistics 14 }
hpFECStatsTrunkTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpFECStatsTrunkEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A table that contains information about the
operational status of flow control on this switch."
::= { hpFECStatsTrunk 1 }
hpFECStatsTrunkEntry OBJECT-TYPE
SYNTAX HpFECStatsTrunkEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The flow control status per port basis."
INDEX { hpFECStatsTrunkIndex }
::= { hpFECStatsTrunkTable 1 }
HpFECStatsTrunkEntry ::=
SEQUENCE {
hpFECStatsTrunkIndex INTEGER,
hpFECStatsTrunkName DisplayString,
hpFECStatsTrunkNegotiationStatus INTEGER,
hpFECStatsTrunkForwardingMode INTEGER,
hpFECStatsTrunkFlushPktsEchoed Counter
}
hpFECStatsTrunkIndex OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The trunk Index value which uniquely identifies a
row in the Trunk Table."
::= { hpFECStatsTrunkEntry 1 }
hpFECStatsTrunkName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "The name of the trunk group"
::= { hpFECStatsTrunkEntry 2}
hpFECStatsTrunkNegotiationStatus OBJECT-TYPE
SYNTAX INTEGER {
successful(1),
failed(2),
initialized(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Whether the trunk has been successfully negotiated"
::= { hpFECStatsTrunkEntry 3 }
hpFECStatsTrunkForwardingMode OBJECT-TYPE
SYNTAX INTEGER {
sa-only(1),
sa-da(2),
none(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Whether the trunk has been successfully negotiated"
::= { hpFECStatsTrunkEntry 4 }
hpFECStatsTrunkFlushPktsEchoed OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "The number of FEC flush packets echoed"
::= { hpFECStatsTrunkEntry 5 }
-- Fast EtherChannel Port Statistics Group
hpFECStatsPort OBJECT IDENTIFIER ::= { hpSwitchStatistics 15 }
hpFECStatsPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpFECStatsPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A table that contains information about the
operational status of flow control on this switch."
::= { hpFECStatsPort 1 }
hpFECStatsPortEntry OBJECT-TYPE
SYNTAX HpFECStatsPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The flow control status per port basis."
INDEX { hpFECStatsPortIndex }
::= { hpFECStatsPortTable 1 }
HpFECStatsPortEntry ::=
SEQUENCE {
hpFECStatsPortIndex INTEGER,
hpFECStatsPortTrunkNumber INTEGER,
hpFECStatsPortTrunkName DisplayString,
hpFECStatsPortMode INTEGER,
hpFECStatsPortNegotiationStatus INTEGER,
hpFECStatsPortHellosSent Counter,
hpFECStatsPortHellosReceived Counter,
hpFECStatsPortMySlowHello INTEGER,
hpFECStatsPortMyAutoMode INTEGER,
hpFECStatsPortPartner MacAddress,
hpFECStatsPortFlushPktsEchoed Counter
}
hpFECStatsPortIndex OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The ifIndex value which uniquely identifies a row
in the Interfaces Table."
::= { hpFECStatsPortEntry 1 }
hpFECStatsPortTrunkNumber OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The internal trunk ID"
::= { hpFECStatsPortEntry 2 }
hpFECStatsPortTrunkName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "The name of the trunk group"
::= { hpFECStatsPortEntry 3 }
hpFECStatsPortMode OBJECT-TYPE
SYNTAX INTEGER {
down(1),
forwarding(2),
blocking(3),
up(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "FEC port mode"
::= { hpFECStatsPortEntry 4 }
hpFECStatsPortNegotiationStatus OBJECT-TYPE
SYNTAX INTEGER {
successful(1),
failed(2),
initialized(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "FEC port negotiation state"
::= { hpFECStatsPortEntry 5 }
hpFECStatsPortHellosSent OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "The number of FEC hello packets sent"
::= { hpFECStatsPortEntry 6 }
hpFECStatsPortHellosReceived OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "The number of FEC hello packets received"
::= { hpFECStatsPortEntry 7 }
hpFECStatsPortMySlowHello OBJECT-TYPE
SYNTAX INTEGER {
fast(1),
slow(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Currently running fast or slow FEC hello state"
::= { hpFECStatsPortEntry 8 }
hpFECStatsPortMyAutoMode OBJECT-TYPE
SYNTAX INTEGER {
desirable(1),
auto(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Silent partner mode"
::= { hpFECStatsPortEntry 9 }
hpFECStatsPortPartner OBJECT-TYPE
SYNTAX MacAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION "The address of the adjacent device(switch, router,
server, etc.)"
::= { hpFECStatsPortEntry 10 }
hpFECStatsPortFlushPktsEchoed OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "The number of FEC flush packets echoed"
::= { hpFECStatsPortEntry 11 }
hpGvrpStats OBJECT IDENTIFIER ::= { hpSwitchStatistics 16 }
hpGvrpStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpGvrpStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A table that contains statistic information about
GVRP on any given VLAN on the switch."
::= { hpGvrpStats 1 }
hpGvrpStatsEntry OBJECT-TYPE
SYNTAX HpGvrpStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The information associated with each row in the
GVRP Statistics Table."
INDEX { hpGvrpStatsVlanIndex,hpGvrpStatsPortIndex }
::= { hpGvrpStatsTable 1 }
HpGvrpStatsEntry ::=
SEQUENCE {
hpGvrpStatsVlanIndex VlanID,
hpGvrpStatsPortIndex INTEGER,
hpGvrpStatsPortVlanMember INTEGER,
hpGvrpPortIfOperStatus INTEGER,
hpPortGvrpCtrlStatus INTEGER
}
hpGvrpStatsVlanIndex 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."
::= { hpGvrpStatsEntry 1 }
hpGvrpStatsPortIndex OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The ifIndex value which uniquely identifies a row
in the Interfaces Table."
::= { hpGvrpStatsEntry 2 }
hpGvrpStatsPortVlanMember OBJECT-TYPE
SYNTAX INTEGER {
pending(1),
yes(2),
no(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "This value reflects the state of the port with
respect to its membership in a VLAN"
::= { hpGvrpStatsEntry 3 }
hpGvrpPortIfOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current operational state of the interface."
::= { hpGvrpStatsEntry 4 }
hpPortGvrpCtrlStatus OBJECT-TYPE
SYNTAX INTEGER {
learn(1),
block(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The status of Gvrp Control on this port."
::= { hpGvrpStatsEntry 5}
hpSshStats OBJECT IDENTIFIER ::= { hpSwitchStatistics 17 }
hpSshStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpSshStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A table that contains statistic information about
SSH connections on the switch."
::= { hpSshStats 1 }
hpSshStatsEntry OBJECT-TYPE
SYNTAX HpSshStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The information associated with each row in the
SSH Statistics Table."
INDEX { hpSshStatsSesIndex }
::= { hpSshStatsTable 1 }
HpSshStatsEntry ::=
SEQUENCE {
hpSshStatsSesIndex INTEGER,
hpSshStatsSesType INTEGER,
hpSshStatsSourceIpPort DisplayString,
hpSshStatsSesVersion INTEGER,
hpSshStatsSourceIpType InetAddressType,
hpSshStatsSourceIpAddress InetAddress,
hpSshStatsSourceIpPortNum InetPortNumber
}
hpSshStatsSesIndex OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The value which uniquely identifies a row
in the SSH Statistics Table."
::= { hpSshStatsEntry 1 }
hpSshStatsSesType OBJECT-TYPE
SYNTAX INTEGER {
console(1),
telnet(2),
ssh(3),
inactive(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The type of session on the switch."
::= { hpSshStatsEntry 2 }
hpSshStatsSourceIpPort OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..21))
ACCESS read-only
STATUS deprecated
DESCRIPTION "Contains the information about source ip address and
port number of active SSH session (e.g. 192.168.31.114:1722).
This object has been depreceted as its not big enough to store
IPv6 addresses. It is loosely replaced by hpSshStatsSourceIpAddress
and hpSshStatsSourceIpPortNum"
::= { hpSshStatsEntry 3 }
hpSshStatsSesVersion OBJECT-TYPE
SYNTAX INTEGER {
version1(1),
version2(2),
noConnect(255)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Specifies the SSH protocol version in use for a
given session."
::= { hpSshStatsEntry 4 }
hpSshStatsSourceIpType OBJECT-TYPE
SYNTAX InetAddressType
ACCESS read-only
STATUS mandatory
DESCRIPTION "Specifies the Address type of source ip
address of active SSH session."
::= { hpSshStatsEntry 5 }
hpSshStatsSourceIpAddress OBJECT-TYPE
SYNTAX InetAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION "Specifies the source ip address of
active SSH session."
::= { hpSshStatsEntry 6 }
hpSshStatsSourceIpPortNum OBJECT-TYPE
SYNTAX InetPortNumber
ACCESS read-only
STATUS mandatory
DESCRIPTION "Specifies the source port number of
active SSH session."
::= { hpSshStatsEntry 7 }
hpSwitchPhysicalPort OBJECT IDENTIFIER ::= { hpSwitchStatistics 18 }
hpSwitchPhysicalPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpSwitchPhysicalPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A table that contains information about the
physical ports of this device."
::= { hpSwitchPhysicalPort 1 }
hpSwitchPhysicalPortEntry OBJECT-TYPE
SYNTAX HpSwitchPhysicalPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Information about the physical ports of this device."
INDEX { hpSwitchPhysicalPortIndex }
::= { hpSwitchPhysicalPortTable 1 }
HpSwitchPhysicalPortEntry ::=
SEQUENCE {
hpSwitchPhysicalPortIndex INTEGER,
hpSwitchPhysicalPortType HpSwitchPortType
}
hpSwitchPhysicalPortIndex OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION "An index that uniquely identifies a row in the physical
port table."
::= { hpSwitchPhysicalPortEntry 1 }
hpSwitchPhysicalPortType OBJECT-TYPE
SYNTAX HpSwitchPortType
ACCESS read-only
STATUS mandatory
DESCRIPTION "The type for this port."
::= { hpSwitchPhysicalPortEntry 2 }
END
|