This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathHP-ICF-VG-RPTR
1094 lines (959 loc) · 47.1 KB
/
HP-ICF-VG-RPTR
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-VG-RPTR DEFINITIONS ::= BEGIN
IMPORTS
Integer32, Counter32, Counter64,
OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
DisplayString, TruthValue
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
icfVgPortStatus
FROM ICF-VG-RPTR
hpicfObjectModules, hpicfVg, hpicfVgRptrTrapsPrefix
FROM HP-ICF-OID;
hpicfVgRptrMib MODULE-IDENTITY
LAST-UPDATED "200011032225Z" -- November 3, 2000
ORGANIZATION "Hewlett Packard Company,
Network Infrastructure Solutions"
CONTACT-INFO
"Hewlett Packard Company
8000 Foothills Blvd.
Roseville, CA 95747"
DESCRIPTION
"This MIB module contains objects that provide
HP-specific extensions to the 802.12 Repeater MIB."
REVISION "200011032225Z" -- November 3, 2000
DESCRIPTION "Updated division name."
REVISION "9703060345Z" -- March 6, 1997
DESCRIPTION
"Added NOTIFICATION-GROUP information."
REVISION "9609100236Z" -- September 10, 1996
DESCRIPTION
"Updated division name and STATUS clauses."
REVISION "9602142253Z" -- February 14, 1996
DESCRIPTION
"Split this MIB module from the former monolithic
hp-icf MIB. Added redundant uplink support and
additional global counters for standard-compliant
hardware support."
REVISION "9501180000Z" -- January 18, 1995
DESCRIPTION
"Initial version of this MIB module. Released with
the HPJ2414A agent card for the HPJ2410A 100VG
repeater."
::= { hpicfObjectModules 11 }
hpVgBasic OBJECT IDENTIFIER ::= { hpicfVg 1 }
hpVgBasicGlobal OBJECT IDENTIFIER ::= { hpVgBasic 1 }
hpVgEntityName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..15))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The local name of this 100BaseVG repeater. This is
the same value as hpicfEntityName in the case where
there is Distributed Management Protocol to access
this device.
For SNMPv1, this name is appended to the agent
community name to obtain a community name to use
to specify that the agent should proxy to this
repeater. For example, if this agent has a
community with a community name of 'public', and
the value of this object is 'repeater1', the
community 'public/repeater1' will specify that the
agent should proxy to the public community of the
repeater1 box to obtain management information
about this repeater.
If an agent receives a management request where
the localEntity is not specified, it will default
to the local repeater on which this agent is
executing."
::= { hpVgBasicGlobal 1 }
hpVgRedundantUpLinksFlag OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to indicate that the hub
is configured with redundant uplink ports."
::= { hpVgBasicGlobal 2 }
hpVgXcvrTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpVgXcvrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing information about transceivers.
All uplink, downlink, and redundent links are
represented in this table"
::= { hpVgBasicGlobal 3 }
hpVgXcvrEntry OBJECT-TYPE
SYNTAX HpVgXcvrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the transceiver table"
INDEX { hpVgXcvrGroupIndex , hpVgXcvrIndex }
::= { hpVgXcvrTable 1 }
HpVgXcvrEntry ::=
SEQUENCE {
hpVgXcvrGroupIndex Integer32,
hpVgXcvrIndex Integer32,
hpVgXcvrType INTEGER,
hpVgXcvrAssociatedPort Integer32,
hpVgXcvrState INTEGER,
hpVgXcvrAbandonments Counter32,
hpVgXcvrIsMovable TruthValue
}
hpVgXcvrGroupIndex OBJECT-TYPE
SYNTAX Integer32 (1..1024)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The group within the repeater for which this entry
contains information. This object has the same value
as the corresponding instance of icfVgGroupIndex."
::= { hpVgXcvrEntry 1 }
hpVgXcvrIndex OBJECT-TYPE
SYNTAX Integer32 (1..1024)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The transceiver within the group for which this
entry contains information."
::= { hpVgXcvrEntry 2 }
hpVgXcvrType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
unknown(2),
pmdMissing(3),
utp4(4),
stp2(5),
fibre(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of physical media supported by this
transceiver. One of the following values:
other undefined
unknown true state not known
pmdMissing PMD device not attached
utp4 4-pair unshielded twisted pair
stp2 2-pair shielded twisted pair
fibre 802.12 fibre optic cabling
This object may be 'unknown' if the implementation is
not capable of identifying the PMD media type, or
whether or not the PMD is even present."
::= { hpVgXcvrEntry 3 }
hpVgXcvrAssociatedPort OBJECT-TYPE
SYNTAX Integer32 (1..1024)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port within the group that this transceiver is
associated with. There may be multiple transceivers
associated with a single port. Also, a transceiver
may be moved between ports."
::= { hpVgXcvrEntry 4 }
hpVgXcvrState OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
inUse(2),
standby(3),
silent(4),
linkFailure(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is set to 'unknown' if the transceiver
is not present or its status cannot be determined.
'inUse' indicates that the transceiver is currently
selected for use by its associated port. 'standby'
indicates the associated port is using another
tranceiver, but this tranceiver could be used if
needed. 'silent' indicates that the tranceiver is
not detecting any tones on the link. 'linkFailure'
indicates that the tranceiver was unable to train for
some reason."
::= { hpVgXcvrEntry 5 }
hpVgXcvrAbandonments OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of times the corresponding instance
of the hpVgXcvrState object has entered the
'abandoned' state. For downlink ports this object
will have the value 0."
::= { hpVgXcvrEntry 6 }
hpVgXcvrIsMovable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A true value indicates that the transceiver can be
associated with a single port from a set of multiple
ports. A false value indicates that a transceiver
can only be associated with a single, fixed, port"
::= { hpVgXcvrEntry 7 }
hpVgNullAddrTraining OBJECT-TYPE
SYNTAX INTEGER {
preventNullAddr(1),
allowNullAddr(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to control whether the repeater
will allow completion of training by end-nodes using
null MAC addresses. The 802.12 standard is written
to disallow such training. However, some end-nodes
may use this configuration at power-up before any
software is loaded. If so, the user may see frequent
training occurring on the repeater because of this.
In addition, some end-node applications may not work
when initial training fails due to the locking out of
null MAC addresses.
The default setting of this object is to allow null
MAC addresses to train. This is recommended for most
situations, despite the fact that it contradicts the
802.12 standard.
For repeaters that have First Learned address
security on this hub, disallowing null-address
training provides the most extensive security until
the ports' authorized addresses are learned.
However, if this creates problems for the end-node
applications, it may be necessary to instead
explicitly assign the ports' authorized addresses
and configure this object to allow null-address
training."
::= { hpVgBasicGlobal 4 }
hpVgBasicGroup OBJECT IDENTIFIER ::= { hpVgBasic 2 }
hpVgBasicGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpVgBasicGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"HP specific extensions to the vgBasicGroupTable."
::= { hpVgBasicGroup 1 }
hpVgBasicGroupEntry OBJECT-TYPE
SYNTAX HpVgBasicGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the table, containing HP extensions
for a specific group."
INDEX { hpVgGrpGroupIndex }
::= { hpVgBasicGroupTable 1 }
HpVgBasicGroupEntry ::=
SEQUENCE {
hpVgGrpGroupIndex Integer32,
hpVgGrpPortsAdminStatus OCTET STRING,
hpVgGrpPortsTrained OCTET STRING,
hpVgGrpPortsInTraining OCTET STRING,
hpVgGrpPortsCascaded OCTET STRING,
hpVgGrpPortsPromiscuous OCTET STRING
}
hpVgGrpGroupIndex OBJECT-TYPE
SYNTAX Integer32 (1..1024)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The group within the repeater for which this entry
contains information. This object has the same value
as the corresponding instance of icfVgGroupIndex."
::= { hpVgBasicGroupEntry 1 }
hpVgGrpPortsAdminStatus OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hpVgGrpPortsAdminStatus is a bit map of the
state of the icfVgPortAdminStatus object for all
of the ports in this group. The object has a one
bit for each port for which the value of
icfVgPortAdminStatus is equal to 'enabled(1)' and
a zero bit for each port for which the value of
icfVgPortAdminStatus is equal to 'disabled(2)'.
The bits are placed into the OCTET STRING in the
following order:
octet 0 octet 1 octet 2 ...
bits 7-0 bits 7-0 bits 7-0 ...
ports 1-8 ports 9-16 ports 17-24 ...
Values of unused bits in the last octet are
undefined."
::= { hpVgBasicGroupEntry 2 }
hpVgGrpPortsTrained OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hpVgGrpPortsTrained is a bit map which indicates
which ports in this group are currently online. The
object has a one bit for each port for which meets
the following conditions:
1. The value of the corresponding instance of the
ifVgPortAdminStatus object is equal to
'enabled(1)'.
2. The value of the corresponding instance of the
icfVgPortStatus object is equal to 'active(1)'.
The object has a zero bit for each port which does
not meet the above conditions.
The bits are placed into the OCTET STRING in the
following order:
octet 0 octet 1 octet 2 ...
bits 7-0 bits 7-0 bits 7-0 ...
ports 1-8 ports 9-16 ports 17-24 ...
Values of unused bits in the last octet are
undefined."
::= { hpVgBasicGroupEntry 3 }
hpVgGrpPortsInTraining OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hpVgGrpPortsInTraining is a bit map which
indicates which ports in this group are currently in
the training state. The object has a one bit for
each port which meets the following conditions:
1. The value of the corresponding instance of the
ifVgPortAdminStatus object is equal to
'enabled(1)'.
2. The value of the corresponding instance of the
icfVgPortStatus object is equal to
'training(3)'.
The object has a zero bit for each port which does
not meet the above conditions.
The bits are placed into the OCTET STRING in the
following order:
octet 0 octet 1 octet 2 ...
bits 7-0 bits 7-0 bits 7-0 ...
ports 1-8 ports 9-16 ports 17-24 ...
Values of unused bits in the last octet are
undefined."
::= { hpVgBasicGroupEntry 4 }
hpVgGrpPortsCascaded OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hpVgGrpPortsCascaded is a bit map which
indicates which ports in this group have trained as
cascaded repeater ports. The object has a one bit
for each port which meets the following conditions:
1. The value of the corresponding instance of the
ifVgPortAdminStatus object is equal to
'enabled(1)'.
2. The value of the corresponding instance of the
icfVgPortStatus object is equal to
'active(1)'.
3. The value of the 'R' bit in the corresponding
instance of the icfVgPortTrainingResult object
is equal to one.
The object has a zero bit for each port which does
not meet the above conditions.
The bits are placed into the OCTET STRING in the
following order:
octet 0 octet 1 octet 2 ...
bits 7-0 bits 7-0 bits 7-0 ...
ports 1-8 ports 9-16 ports 17-24 ...
Values of unused bits in the last octet are
undefined."
::= { hpVgBasicGroupEntry 5 }
hpVgGrpPortsPromiscuous OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hpVgGrpPortsPromiscuous is a bit map which
indicates which ports in this group have trained for
promiscuous operation. The object has a one bit for
each port which meets the following conditions:
1. The value of the corresponding instance of the
ifVgPortAdminStatus object is equal to
'enabled(1)'.
2. The value of the corresponding instance of the
icfVgPortStatus object is equal to
'active(1)'.
3. The value of the 'PP' field in the corresponding
instance of the icfVgPortTrainingResult object
is equal to 01.
The object has a zero bit for each port which does
not meet the above conditions.
The bits are placed into the OCTET STRING in the
following order:
octet 0 octet 1 octet 2 ...
bits 7-0 bits 7-0 bits 7-0 ...
ports 1-8 ports 9-16 ports 17-24 ...
Values of unused bits in the last octet are
undefined."
::= { hpVgBasicGroupEntry 6 }
hpVgBasicPort OBJECT IDENTIFIER ::= { hpVgBasic 3 }
hpVgBasicPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpVgBasicPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"HP specific extensions to the vg port table."
::= { hpVgBasicPort 1 }
hpVgBasicPortEntry OBJECT-TYPE
SYNTAX HpVgBasicPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"HP extended information about a specific vg port."
INDEX { hpVgPortGroupIndex, hpVgPortIndex }
::= { hpVgBasicPortTable 1 }
HpVgBasicPortEntry ::=
SEQUENCE {
hpVgPortGroupIndex Integer32,
hpVgPortIndex Integer32,
hpVgPortPolarityReversed TruthValue,
hpVgPortWireSkewError TruthValue,
hpVgPortAssociatedXcvrIndex Integer32,
hpVgPortNumAssociatedXcvrs Integer32
}
hpVgPortGroupIndex OBJECT-TYPE
SYNTAX Integer32 (1..1024)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The group that contains the port for which this
entry contains information."
::= { hpVgBasicPortEntry 1 }
hpVgPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..1024)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The port within the group for which this entry
contains information."
::= { hpVgBasicPortEntry 2 }
hpVgPortPolarityReversed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to indicate that the hub port
was wired with the positive/negative polarity of its
wire pairs reversed. Note that the port will
continue to operate in this state, with the hub
inverting the polarity internally."
::= { hpVgBasicPortEntry 3 }
hpVgPortWireSkewError OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to indicate that a wire skew
error has been detected on this port."
::= { hpVgBasicPortEntry 4 }
hpVgPortAssociatedXcvrIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is the index into the transceiver table,
hpVgXcvrTable. The transceiver entry defines which
transceiver is connected to the port. This object
will be set to 0 if the port is not currently
associated with a transceiver"
::= { hpVgBasicPortEntry 5 }
hpVgPortNumAssociatedXcvrs OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is the number of transceivers that are
currently associated with this port via the
hpVgXcvrTable."
::= { hpVgBasicPortEntry 6 }
hpVgMonitor OBJECT IDENTIFIER ::= { hpicfVg 2 }
hpVgMonitorGlobal OBJECT IDENTIFIER ::= { hpVgMonitor 1 }
-- Note: The hpVgMonitorGlobal counters that are composed of
-- other objects are provided to allow for event testing on
-- global error conditions.
hpVgMonCounters OBJECT IDENTIFIER ::= { hpVgMonitorGlobal 1 }
hpVgMonGlbReadableFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is the total number of good frames of
valid frame length that have been received on all
ports in this repeater. This counter is the
summation of the values of the
icfVgPortReadableFrames counter for all of the ports
in this repeater."
REFERENCE
"IEEE Draft Std. 802.12, Draft 6, 23 November, 1994,
13.2.4.5.1, aReadableFramesReceived."
::= { hpVgMonCounters 1 }
hpVgMonGlbReadableOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is a count of the total number of octets
contained in good frames that have been received on
all ports in this repeater. This counter is the
summation of the values of the
icfVgPortReadableOctets counter for all of the ports
in this repeater.
Note that this counter will roll over very quickly.
It is provided for backward compatibility for Network
Management protocols that do not support 64 bit
counters (e.g. SNMP version 1)."
REFERENCE
"IEEE Draft Std. 802.12, Draft 6, 23 November, 1994,
13.2.4.5.1, aReadableOctetsReceived."
::= { hpVgMonCounters 2 }
hpVgMonGlbUnreadableOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is a count of the total number of octets
contained in invalid frames that have been received
on all ports in this repeater. This counter is the
summation of the values of icfVgPortUnreadableOctets
counter for all of the ports in this repeater.
Note that this counter will roll over very quickly.
It is provided for backward compatibility for Network
Management protocols that do not support 64 bit
counters (e.g. SNMP version 1)."
REFERENCE
"IEEE Draft Std. 802.12, Draft 6, 23 November, 1994,
13.2.4.5.1, aOctetsInUnreadableFramesRcvd."
::= { hpVgMonCounters 3 }
hpVgMonGlbHighPriorityFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is a count of the total number of high
priority frames that have been received on all ports
in this repeater. This counter is a summation of the
values of the icfVgPortHighPriorityFrames counter for
all of the ports in this repeater."
REFERENCE
"IEEE Draft Std. 802.12, Draft 6, 23 November, 1994,
13.2.4.5.1, aHighPriorityFramesReceived."
::= { hpVgMonCounters 4 }
hpVgMonGlbHighPriorityOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is a count of the total number of octets
contained in high priority frames that have been
received on all ports of this repeater. This counter
is a summation of the values of the
icfVgPortHighPriorityOctets counter for all of the
ports in this repeater.
Note that this counter will roll over very quickly.
It is provided for backward compatibility for Network
Management protocols that do not support 64 bit
counters (e.g. SNMP version 1)."
REFERENCE
"IEEE Draft Std. 802.12, Draft 6, 23 November, 1994,
13.2.4.5.1, aHighPriorityOctetsReceived."
::= { hpVgMonCounters 5 }
hpVgMonGlbBroadcastFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is a count of the total number of
broadcast packets that have been received on all
ports in this repeater. This counter is a summation
of the values of the icfVgPortBroadcastFrames counter
for all of the ports in this repeater."
REFERENCE
"IEEE Draft Std. 802.12, Draft 6, 23 November, 1994,
13.2.4.5.1, aBroadcastFramesReceived."
::= { hpVgMonCounters 6 }
hpVgMonGlbMulticastFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is a count of the total number of
multicast packets that have been received on all
ports in this repeater. This counter is a summation
of the values of the icfVgPortMulticastFrames counter
for all of the ports in this repeater."
REFERENCE
"IEEE Draft Std. 802.12, Draft 6, 23 November, 1994,
13.2.4.5.1, aMulticastFramesReceived."
::= { hpVgMonCounters 7 }
hpVgMonGlbIPMFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is a count of the total number of frames
that have been received on all ports in this repeater
with an invalid packet marker. This counter is a
summation of the values of the icfVgPortIPMFrames
counter for all of the ports in this repeater."
REFERENCE
"IEEE Draft Std. 802.12, Draft 6, 23 November, 1994,
13.2.4.5.1, aIPMFramesReceived."
::= { hpVgMonCounters 8 }
hpVgMonGlbDataErrorFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is a count of the total number of
errored frames received on all ports in this
repeater. This counter is a summation of the values
of the icfVgPortDataErrorFrames counter for all of
the ports in this repeater."
REFERENCE
"IEEE Draft Std. 802.12, Draft 6, 23 November, 1994,
13.2.4.5.1, aDataErrorFramesReceived."
::= { hpVgMonCounters 9 }
hpVgMonGlbPriorityPromotions OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is a count of the total number of
times the priority promotion timer has expired on
any port in this repeater. This counter is a
summation of the values of the
icfVgPortPriorityPromotions counter for all of the
ports in this repeater."
REFERENCE
"IEEE Draft Std. 802.12, Draft 6, 23 November, 1994,
13.2.4.5.1, aPriorityPromotions."
::= { hpVgMonCounters 10 }
hpVgMonGlbHCReadableOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is a count of the total number of octets
contained in good frames that have been received on
all ports in this repeater. This counter is the
summation of the values of the
icfVgPortReadableOctets counter for all of the ports
in this repeater.
This counter is a 64 bit version of
hpVgMonGlbReadableOctets. It should be used by
Network Management protocols which support 64 bit
counters (e.g. SNMPv2)."
REFERENCE
"IEEE Draft Std. 802.12, Draft 6, 23 November, 1994,
13.2.4.5.1, aReadableOctetsReceived."
::= { hpVgMonCounters 11 }
hpVgMonGlbHCUnreadableOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is a count of the total number of octets
contained in invalid frames that have been received
on all ports in this repeater. This counter is the
summation of the values of icfVgPortUnreadableOctets
counter for all of the ports in this repeater.
This counter is a 64 bit version of
hpVgMonGlbUnreadableOctets. It should be used by
Network Management protocols which support 64 bit
counters (e.g. SNMPv2)."
REFERENCE
"IEEE Draft Std. 802.12, Draft 6, 23 November, 1994,
13.2.4.5.1, aOctetsInUnreadableFramesRcvd."
::= { hpVgMonCounters 12 }
hpVgMonGlbHCHighPriorityOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is a count of the total number of octets
contained in high priority frames that have been
received on all ports of this repeater. This counter
is a summation of the values of the
icfVgPortHighPriorityOctets counter for all of the
ports in this repeater.
This counter is a 64 bit version of
hpVgMonGlbHighPriorityOctets. It should be used by
Network Management protocols which support 64 bit
counters (e.g. SNMPv2)."
REFERENCE
"IEEE Draft Std. 802.12, Draft 6, 23 November, 1994,
13.2.4.5.1, aHighPriorityOctetsReceived."
::= { hpVgMonCounters 13 }
hpVgMonGlbHCNormPriorityOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is a count of the total number of octets
contained in normal priority frames that have been
received on all ports of this repeater. This counter
is a summation of the values of the
icfVgPortNormPriorityOctets counter for all of the
ports in this repeater.
This counter is a 64 bit version of
hpVgMonGlbNormPriorityOctets. It should be used by
Network Management protocols which support 64 bit
counters (e.g. SNMPv2)."
REFERENCE
"IEEE Draft Std. 802.12, Draft 6, 23 November, 1994,
13.2.4.5.1, aNormalPriorityOctetsReceived."
::= { hpVgMonCounters 14 }
hpVgMonGlbNormPriorityFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is a count of the total number of
normal priority frames received on all ports in this
repeater. This counter is a summation of the values
of the icfVgPortNormPriorityFrames counter for all of
the ports in this repeater."
REFERENCE
"IEEE Draft Std. 802.12, Draft 6, 23 November, 1994,
13.2.4.5.1, aNormalPriorityFramesReceived."
::= { hpVgMonCounters 15 }
hpVgMonGlbNormPriorityOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is a count of the total number of
normal priority octets received on all ports in this
repeater. This counter is a summation of the values
of the icfVgPortNormPriorityOctets counter for all of
the ports in this repeater."
REFERENCE
"IEEE Draft Std. 802.12, Draft 6, 23 November, 1994,
13.2.4.5.1, aNormalPriorityOctetsReceived."
::= { hpVgMonCounters 16 }
hpVgMonGlbNullAddressedFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is a count of the total number of null
addressed packets that have been received on all
ports. This counter is a summation of the values of
the icfVgPortNullAddressedFrames counter for the
ports in this repeater."
REFERENCE
"IEEE Draft Std. 802.12, Draft 6, 23 November, 1994,
13.2.4.5.1, aNullAddressedFramesReceived."
::= { hpVgMonCounters 17 }
hpVgMonGlbOversizeFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is a count of the total number of
oversized frames that have been received on all
ports. This counter is a summation of the values of
the icfVgPortOversizeFrames counter for the ports in
this repeater."
REFERENCE
"IEEE Draft Std. 802.12, Draft 6, 23 November, 1994,
13.2.4.5.1, aOversizeFramesReceived."
::= { hpVgMonCounters 18 }
hpVgMonGlbTransitionToTrainings OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is a count of the total number of
transitions to training on all ports. This counter is
a summation of the values of the
icfVgPortTransitionToTrainings counter for the ports
in this repeater."
REFERENCE
"IEEE Draft Std. 802.12, Draft 6, 23 November, 1994,
13.2.4.5.1, aTransitionsIntoTraining."
::= { hpVgMonCounters 19 }
hpVgMonitorGroup OBJECT IDENTIFIER ::= { hpVgMonitor 2 }
-- unused
hpVgMonitorPort OBJECT IDENTIFIER ::= { hpVgMonitor 3 }
-- unused
-- VG Repeater Specific traps
hpVgRedundantUplinkTrap NOTIFICATION-TYPE
OBJECTS { hpVgXcvrState }
STATUS current
DESCRIPTION
"An hpVgRedundantUplinkTrap is sent anytime one of
the tranceivers being used in a redundant uplink
transitions from one of the 'unknown', 'inUse' or
'standby' states to either the 'silent' or
'linkFailure' state.
The hpVgXcvrState is the new value of the tranceiver
state for the tranceiver that made the transition."
::= { hpicfVgRptrTrapsPrefix 1 }
hpVgLossOfActiveTrap NOTIFICATION-TYPE
OBJECTS { icfVgPortStatus }
STATUS current
DESCRIPTION
"An hpVgLossOfActiveTrap is sent whenever an enabled
port transitions from the active state to either the
inactive or training state. The new value of the
port's status is returned in the trap."
::= { hpicfVgRptrTrapsPrefix 2 }
-- conformance information
hpicfVgRptrConformance
OBJECT IDENTIFIER ::= { hpicfVgRptrMib 1 }
hpicfVgRptrCompliances
OBJECT IDENTIFIER ::= { hpicfVgRptrConformance 1 }
hpicfVgRptrGroups
OBJECT IDENTIFIER ::= { hpicfVgRptrConformance 2 }
-- compliance statements
hpicfVgRptrPreDot12Compliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"********* THIS COMPLIANCE IS OBSOLETE *********
The compliance statement for pre-standard HP 100VG
repeaters."
MODULE
MANDATORY-GROUPS { hpicfVgRptrPreDot12BasicGroup,
hpicfVgRptrPreDot12MonitorGroup }
::= { hpicfVgRptrCompliances 1 }
hpicfVgRptrCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for HP 802.12 repeaters."
MODULE
MANDATORY-GROUPS { hpicfVgRptrBasicGroup,
hpicfVgRptrMonitorGroup,
hpicfVgRptrXcvrGroup,
hpicfVgRptrBasicTraps }
GROUP hpicfVgRptrRedundantUplinkGroup
DESCRIPTION
"This group should be implemented on 802.12
repeaters that support redundant uplinks."
GROUP hpicfVgRptrRedundantUplinkTraps
DESCRIPTION
"This group should be implemented on 802.12
repeaters that support redundant uplinks."
::= { hpicfVgRptrCompliances 2 }
-- units of conformance
hpicfVgRptrPreDot12BasicGroup OBJECT-GROUP
OBJECTS { hpVgEntityName,
hpVgGrpPortsAdminStatus,
hpVgGrpPortsTrained,
hpVgGrpPortsInTraining,
hpVgGrpPortsCascaded,
hpVgGrpPortsPromiscuous,
hpVgPortPolarityReversed,
hpVgPortWireSkewError
}
STATUS obsolete
DESCRIPTION
"********* THIS GROUP IS OBSOLETE *********
HP specific extensions to the 802.12 Repeater MIB
providing status and configuration of pre-standard
802.12 repeaters."
::= { hpicfVgRptrGroups 1 }
hpicfVgRptrBasicGroup OBJECT-GROUP
OBJECTS { hpVgEntityName,
hpVgNullAddrTraining,
hpVgGrpPortsAdminStatus,
hpVgGrpPortsTrained,
hpVgGrpPortsInTraining,
hpVgGrpPortsCascaded,
hpVgGrpPortsPromiscuous,
hpVgPortPolarityReversed,
hpVgPortWireSkewError
}
STATUS current
DESCRIPTION
"HP specific extensions to the 802.12 Repeater MIB
providing status and configuration of 802.12
repeaters."
::= { hpicfVgRptrGroups 2 }