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-8023-RPTR
1509 lines (1321 loc) · 67.2 KB
/
HP-ICF-8023-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-8023-RPTR DEFINITIONS ::= BEGIN
IMPORTS
Integer32, Counter32,
OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
DisplayString, TruthValue
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
rptrPortAutoPartitionState
FROM SNMP-REPEATER-MIB -- 802.3 Repeater MIB
rpMauMediaAvailable, rpMauGroupIndex, rpMauPortIndex,
rpMauIndex
FROM MAU-MIB
hpicfObjectModules, hpicfRepeater, hpicf8023RptrTrapsPrefix
FROM HP-ICF-OID;
hpicf8023RptrMib MODULE-IDENTITY
LAST-UPDATED "200011032210Z" -- 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.3 Repeater MIB."
REVISION "200011032210Z" -- November 3, 2000
DESCRIPTION "Updated division name."
REVISION "9807162027Z" -- July 16, 1998
DESCRIPTION
"Added repeater port auto-negotiation objects."
REVISION "9609100219Z" -- September 10, 1996
DESCRIPTION
"Split this MIB module from the former monolithic
hp-icf MIB. Added hpicf8023MultiRptr groups.
Deprecated objects that presumed a single repeater
segment."
REVISION "9402250000Z" -- February 25, 1994
DESCRIPTION
"Initial revision of this MIB module. Released
with the AdvanceStack 10BaseT hubs: HPJ2600A,
HPJ2601A and HPJ2602A and agent module HPJ2603A."
::= { hpicfObjectModules 9 }
hpRptrBasic OBJECT IDENTIFIER ::= { hpicfRepeater 1 }
hpRptrBasicGlobal OBJECT IDENTIFIER ::= { hpRptrBasic 1 }
hpRptrEntityName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..15))
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
The local name of this 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.
This object has been deprecated. Since it is a
scalar, it does not scale to systems containing
multiple repeater segments. In addition, it is only
considered useful in systems supporting the
Distributed Management Chain, which has also been
deprecated."
::= { hpRptrBasicGlobal 1 }
hpRptrThinlanFault OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
When set to 'true' this object causes the Fault
Led to blink if the ThinLan Port is segmented.
This object has been deprecated. It only makes
sense in systems that support a single BNC port."
::= { hpRptrBasicGlobal 2 }
hpRptrSqeEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
When 'true', this flag indicates that SQE has
been detected for the last ten agent transmits and
there is a high probability that the SQE switch on
the transceiver attached to the AUI port is set to
Enabled, when it should be Disabled.
This object has been deprecated, since it presumes
that the system will only have a single AUI port.
It has been replaced by the hpRptrPtSqeEnabled
object."
::= { hpRptrBasicGlobal 3 }
hpRptrRobustHealing OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
When this flag is set to 'true', it enables
robust port healing mode. The 802.3 specification
states that a segmented port is healed by
successfully transmitting or receiving a packet on
the port. This mode disables port healing on
successful packet reception and requires that a
packet be successfully transmitted on a port in
order for a segmented port to be healed."
::= { hpRptrBasicGlobal 4 }
hpRptrBasicGroup OBJECT IDENTIFIER ::= { hpRptrBasic 2 }
hpRptrBasicGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpRptrBasicGroupEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
HP specific extensions to the rptrGroupTable."
::= { hpRptrBasicGroup 1 }
hpRptrBasicGroupEntry OBJECT-TYPE
SYNTAX HpRptrBasicGroupEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
An entry in the table, containing HP extensions
for a specific group."
INDEX { hpRptrGrpGroupIndex }
::= { hpRptrBasicGroupTable 1 }
HpRptrBasicGroupEntry ::=
SEQUENCE {
hpRptrGrpGroupIndex Integer32,
hpRptrGrpPortsAdminStatus OCTET STRING,
hpRptrGrpPortsSegStatus OCTET STRING,
hpRptrGrpPortsMediaAvailable OCTET STRING,
hpRptrGrpPortsLinkbeatEnabled OCTET STRING,
hpRptrGrpPortsOperStatus OCTET STRING
}
hpRptrGrpGroupIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
The group within the repeater for which this
entry contains information. This object has the
same value as the corresponding instance of
rptrGroupIndex."
::= { hpRptrBasicGroupEntry 1 }
hpRptrGrpPortsAdminStatus OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..128))
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
The hpRptrGrpPortsAdminStatus is a bit map of the
state of the rptrPortAdminStatus object for all
of the ports in this group. The object has a one
bit for each port for which the value of
rptrPortAdminStatus is equal to 'enabled(1)' and
a zero bit for each port for which the value of
rptrPortAdminStatus 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."
::= { hpRptrBasicGroupEntry 2 }
hpRptrGrpPortsSegStatus OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..128))
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
The hpRptrGrpPortsSegStatus is a bit map of the
state of the rptrPortAutoPartitionState of all of
the ports in this group. The object has a one
bit for each port for which the value of
rptrPortAutoPartitionState is equal to
'notAutoPartitioned(1)' and a zero bit for each
port for which the value of
rptrPortAutoPartitionState is equal to
'autoPartitioned(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."
::= { hpRptrBasicGroupEntry 3 }
hpRptrGrpPortsMediaAvailable OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..128))
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
The hpRptrGrpPortsMediaAvailable is a bit map of
the state of the rpMauMediaAvailable object for
all of the ports in this group. The object has a
one bit for each port for which the value of
rpMauMediaAvailable is equal to 'available(3)'
and a zero bit for each port for which the value
of rpMauMediaAvailable is not equal to
'available(3)'.
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."
::= { hpRptrBasicGroupEntry 4 }
hpRptrGrpPortsLinkbeatEnabled OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..128))
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
The hpRptrGrpPortsLinkbeatEnabled is a bit map of
the state of the hpRptrPtLinkbeatEnable object for
all of the ports in this group. The object has a
one bit for each port for which the value of
hpRptrPtLinkbeatEnable is equal to 'true(1)' and
a zero bit for each port for which the value of
hpRptrPtLinkbeatEnable is equal to 'false(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."
::= { hpRptrBasicGroupEntry 5 }
hpRptrGrpPortsOperStatus OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..128))
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
The hpRptrGrpPortsOperStatus is a bit map of the
state of all hub ports in the group. The object
has a 1 bit for each port that is enabled, not
segmented, and the media is available. Ports on
which these conditions are not true have a 0 bit.
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."
::= { hpRptrBasicGroupEntry 6 }
hpRptrBasicPort OBJECT IDENTIFIER ::= { hpRptrBasic 3 }
hpRptrBasicPtTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpRptrBasicPtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"HP specific extensions to the rptrPortTable."
::= { hpRptrBasicPort 1 }
hpRptrBasicPtEntry OBJECT-TYPE
SYNTAX HpRptrBasicPtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the table, containing HP extensions
for a specific port."
INDEX { hpRptrPtGroupIndex, hpRptrPtPortIndex }
::= { hpRptrBasicPtTable 1 }
HpRptrBasicPtEntry ::=
SEQUENCE {
hpRptrPtGroupIndex Integer32,
hpRptrPtPortIndex Integer32,
hpRptrPtLinkbeatEnable TruthValue,
hpRptrPtPolarityReversed TruthValue,
hpRptrPtSqeEnabled TruthValue,
hpRptrPtMediaAvailTrapEnable TruthValue,
hpRptrPtLongCableEnable TruthValue
}
hpRptrPtGroupIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The group containing the port for which this
entry contains information. This object has the
same value as the corresponding instance of
rptrPortGroupIndex."
::= { hpRptrBasicPtEntry 1 }
hpRptrPtPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port within the group for which this entry
contains information. This object has the same
value as the corresponding instance of
rptrPortIndex."
::= { hpRptrBasicPtEntry 2 }
hpRptrPtLinkbeatEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When this flag is set to 'true' the port's link
beat is enabled and when set to 'false' it is
disabled."
::= { hpRptrBasicPtEntry 3 }
hpRptrPtPolarityReversed 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 transmit and receive pairs reversed. Note
that the port will continue to operate in this
state, with the hub inverting the polarity
internally."
::= { hpRptrBasicPtEntry 4 }
hpRptrPtSqeEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When 'true', this flag indicates that SQE has
been detected for the last ten agent transmits and
there is a high probability that the SQE switch on
the transceiver attached to this port is set to
Enabled, when it should be Disabled. This value
can only be 'true' on AUI ports."
::= { hpRptrBasicPtEntry 5 }
hpRptrPtMediaAvailTrapEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether hpicfMediaAvailDetectTrap and
hpicfMediaAvailLostTrap events should be generated
for MAUs attached to this port. This object has the
value of 'false' by default. Setting the value of
this object to 'true' will cause a
hpicfMediaAvailDetectTrap event to be generated
whenever an instance of rpMauMediaAvailable object
associated with a MAU attached to this port enters
the 'available' state, and a hpicfMediaAvailLostTrap
to be generated whenever an instance of the
rpMauMediaAvailable object associated with a MAU
attached to this port exits the 'available' state.
Note that the disposition of these events is
controlled by the RMON eventTable.
We recommend that this object is only be set to
'true' on important ports, such as cascade ports and
ports attached to routers bridges, switches, or
servers. Setting this object to 'true' on other
ports may cause irrelevant traps. For example, it
is unlikely that an administrator would want to
receive a trap every time a user turns their PC off."
::= { hpRptrBasicPtEntry 6 }
hpRptrPtLongCableEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When this flag is set to 'true' the port's squelch
level will be reduced to account for extended
distance connections. When set to 'false', this
port's squelch level will be normal. We recommend
that this object only be set to 'true' for ports
that are actually connected to long cables."
::= { hpRptrBasicPtEntry 7 }
hpRptrMonitor OBJECT IDENTIFIER ::= { hpicfRepeater 2 }
hpRptrMonitorGlobal OBJECT IDENTIFIER ::= { hpRptrMonitor 1 }
-- Note: The hpRptrMonitorGlobal counters that are composed of
-- other objects are provided to allow for event testing on
-- global error conditions.
--
-- Note: the hpRptrMonitorGlobal counters have been deprecated.
-- Since they are scalars, they do not scale to systems
-- containing multiple repeater segments. The standard repeater
-- MIB is adding per-repeater counters for collisions, total
-- frames, total octets and total errors. Keeping per-repeater
-- totals of the other counters included here was felt to be
-- overkill. Another factor is that it is quite expensive to
-- maintain global counters in the presence of port mobility, so
-- it made sense to limit the number of total counters to those
-- that would be the most useful for network management. Note
-- that most of the information in these counters is available
-- through other MIBs, such as the RMON etherStats group.
hpRptrMonCounters
OBJECT IDENTIFIER ::= { hpRptrMonitorGlobal 1 }
hpRptrMonGlobalFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
The total number of 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 rptrMonitorPortReadableFrames
counter for all of the ports in this repeater.
Equivalently, this counter is the summation of the
values of the rptrMonitorGroupTotalFrames counter
for all of the port groups in this repeater."
REFERENCE
"RFC 1516 rptrMonitorPortReadableFrames and
rptrMonitorGroupTotalFrames, and IEEE 802.3 Rptr Mgt,
19.2.6.2, aReadableFrames."
::= { hpRptrMonCounters 1 }
hpRptrMonGlobalOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
The total number of octets contained in the valid
frames that have been received on the ports in
this repeater. This counter is the summation of
the values of the rptrMonitorPortReadableOctets
counter for all of the ports in this repeater.
Equivalently, this counter is the summation of the
values of the rptrMonitorGroupTotalOctets counter
for all of the port groups in this repeater."
REFERENCE
"RFC 1516 rptrMonitorPortReadableOctets and
rptrMonitorGroupTotalOctets, and IEEE 802.3 Rptr Mgt,
19.2.6.2, aReadableOctets."
::= { hpRptrMonCounters 2 }
hpRptrMonGlobalFCSErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
This counter is incremented by one for each frame
received on any port with the FCSError signal
asserted and the FramingError and CollisionEvent
signals deasserted and whose OctetCount is greater
than or equal to minFrameSize and less than or
equal to maxFrameSize (Ref: 4.4.2.1, IEEE 802.3
Std). This counter is the summation of the values
of the rptrMonitorPortFCSErrors counter for all of
the ports in this repeater."
REFERENCE
"RFC 1516 rptrMonitorPortFCSErrors and IEEE 802.3
Rptr Mgt, 19.2.6.2, aFrameCheckSequenceErrors."
::= { hpRptrMonCounters 3 }
hpRptrMonGlobalAlignmentErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
This counter is incremented by one for each frame
received on any port with the FCSError and
FramingError signals asserted and CollisonEvent
signal deasserted and whose OctetCount is greater
than or equal to minFrameSize and less than or
equal to maxFrameSize (Ref: 4.4.2.1, IEEE 802.3
Std). If hpRptrMonGlobalAlignmentErrors is
incremented, then the hpRptrMonGlobalFCSErorrs
counter shall not be incremented for the same
frame. This counter is the summation of the
values of the rptrMonitorPortAlignmentErrors
counter for all of the ports in this repeater."
REFERENCE
"RFC 1516 rptrMonitorPortAlignmentErrors and IEEE
802.3 Rptr Mgt, 19.2.6.2, aAlignmentErrors."
::= { hpRptrMonCounters 4 }
hpRptrMonGlobalFrameTooLongs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
This counter is incremented by one for each frame
received on any port whose OctetCount is greater
than maxFrameSize (Ref: 4.4.2.1, IEEE 802.3 Std).
If hpRptrMonGlobalFrameTooLongs is incremented,
then neither the hpRptrMonGlobalAlignmentErorrs
nor the hpRptrMonGlobalFCSErrors counter shall be
incremented for the frame. This counter is the
summation of the values of the
rptrMonitorPortFrameTooLongs counter for all of
the ports in this repeater."
REFERENCE
"RFC 1516 rptrMonitorPortFrameTooLongs and IEEE 802.3
Rptr Mgt, 19.2.6.2, aFramesTooLong"
::= { hpRptrMonCounters 5 }
hpRptrMonGlobalShortEvents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
This counter is incremented by one for each
CarrierEvent on any port with ActivityDuration
less than ShortEventMaxTime. ShortEventMaxTime is
greater than 74 bit times and less than 82 bit
times. ShortEventMaxTime has tolerances included
to provide for circuit losses between a
conformance test point at the AUI and the
measurement point within the state machine. This
counter is the summation of the values of the
rptrMonitorPortShortEvents counter for all of the
ports in this repeater."
REFERENCE
"RFC 1516 rptrMonitorPortShortEvents and IEEE 802.3
Rptr Mgt, 19.2.6.2, aShortEvents."
::= { hpRptrMonCounters 6 }
hpRptrMonGlobalRunts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
This counter is incremented by one for each
CarrierEvent on any port that meets one of the
following two conditions. Only one test need be
made. a) The ActivityDuration is greater than
ShortEventMaxTime and less than ValidPacketMinTime
and the CollisionEvent signal is deasserted. b)
The OctetCount is less than 64, the
ActivityDuration is greater than ShortEventMaxTime
and the CollisionEvent signal is deasserted.
ValidPacketMinTime is greater than or equal to 552
bit times but less than 565 bit times.
An event whose length is greater than 74 bit times
but less than 82 bit times shall increment either
the hpRptrMonGlobalShortEvents counter or the
hpRptrMonGlobalRunts counter but not both. A
CarrierEvent greater than or equal to 552 bit
times but less than 565 bit times may or may not
increment the hpRptrMonGlobalRunts counter.
ValidPacketMinTime has tolerances included to
provide for circuit losses between a conformance
test point at the AUI and the measurement point
within the state machine.
Runts usually indicate collision fragments, a
normal network event. This counter is the
summation of the values of the
rptrMonitorPortRunts counter for all of the ports
in this repeater."
REFERENCE
"RFC 1516 rptrMonitorPortRunts and IEEE 802.3 Rptr
Mgt, 19.2.6.2, aRunts."
::= { hpRptrMonCounters 7 }
hpRptrMonGlobalCollisions OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
This counter is incremented by one for any
CarrierEvent signal on any port for which the
CollisionEvent signal on any port is asserted.
This counter differs from
rptrMonitorTransmitCollisions in that it counts
all collisions seen by this repeater, even those
involving only a single port on this repeater,
whereas rptrMonitorTransmitCollisions counts only
collisions involving multiple ports on this
repeater."
REFERENCE
"RFC 1516 rptrMonitorPortCollisions and IEEE 802.3
Rptr Mgt, 19.2.6.2, aCollisions."
::= { hpRptrMonCounters 8 }
hpRptrMonGlobalLateEvents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
This counter is incremented by one for each
CarrierEvent on any port in which the CollIn(X)
variable transitions to the value SQE (Ref:
9.6.6.2, IEEE 802.3 Std) while the
ActivityDuration is greater than the
LateEventThreshold. Such a CarrierEvent is
counted twice, as both hpRptrMonGlobalCollisions
and hpRptrMonGlobalLateEvents. The
LateEventThreshold is greater than 480 bit times
and less than 565 bit times. LateEventThreshold
has tolerances included to permit an
implementation to build a single threshold to
serve as both the LateEventThreshold and
ValidPacketMinTime threshold. This counter is the
summation of the values of the
rptrMonitorPortLateEvents counter for all of the
ports in this repeater."
REFERENCE
"RFC 1516 rptrMonitorPortLateEvents and IEEE 802.3
Rptr Mgt, 19.2.6.2, aLateEvents."
::= { hpRptrMonCounters 9 }
hpRptrMonGlobalVeryLongEvents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
This counter is incremented by one for each
CarrierEvent on any port whose ActivityDuration is
greater than the MAU Jabber Lockup Protection
timer TW3 (Ref: 9.6.1 & 9.6.5, IEEE 802.3 Std).
Other counters may be incremented as appropriate.
This counter is the summation of the values of the
rptrMonitorPortVeryLongEvents counter for all of
the ports in this repeater."
REFERENCE
"RFC 1516 rptrMonitorPortVeryLongEvents and IEEE
802.3 Rptr Mgt, 19.2.6.2, aVeryLongEvents."
::= { hpRptrMonCounters 10 }
hpRptrMonGlobalDataRateMismatches OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
This counter is incremented by one for each frame
received on any port that meets all of the
following conditions: a) The CollisionEvent
signal is not asserted. b) The ActivityDuration
is greater than ValidPacketMinTime. c) The
frequency (data rate) is detectably mismatched
from the local transmit frequency. The exact
degree of mismatch is vendor specific and is to be
defined by the vendor for conformance testing.
When this event occurs, other counters whose
increment conditions were satisfied may or may not
also be incremented. This counter is the
summation of the values of the
rptrMonitorPortDatRateMismatches counter for all
of the ports in this repeater."
REFERENCE
"RFC 1516 rptrMonitorPortDataRateMismatches and IEEE
802.3 Rptr Mgt, 19.2.6.2, aDataRateMismatches."
::= { hpRptrMonCounters 11 }
hpRptrMonGlobalAutoPartitions OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
This counter is incremented by one for each time
the repeater has automatically partitioned any
port. The conditions that cause port partitioning
are specified in the partition state machine in
Section 9 of the IEEE 802.3 Std. This counter is
the summation of the values of the
rptrMonitorPortAutoPartitions for all of the ports
in this repeater."
REFERENCE
"RFC 1516 rptrMonitorPortAutoPartitions and IEEE
802.3 Rptr Mgt, 19.2.6.2, aAutoPartitions."
::= { hpRptrMonCounters 12 }
hpRptrMonGlobalErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
The total number of errors which have occured
on any port in this repeater. This counter is
the summation of the values of other error
counters, namely:
hpRptrMonGlobalFCSErrors,
hpRptrMonGlobalAlignmentErrors,
hpRptrMonGlobalFrameTooLongs,
hpRptrMonGlobalShortEvents,
hpRptrMonGlobalLateEvents,
hpRptrMonGlobalVeryLongEvents, and
hpRptrMonGlobalDataRateMismatches.
Equivalently, this counter is the summation of
the values of the rptrMonitorPortTotalErrors
counter for all of the ports in this repeater, or
it is the summation of the values of
rptrMonitorGroupTotalErrors for all of the port
groups in this repeater."
REFERENCE
"RFC 1516, rptrMonitorGroupTotalErrors and
hpRptrMonitorPortTotalErrors."
::= { hpRptrMonCounters 13 }
hpRptrMonGlobalUcastPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
This counter is incremented by one for each
unicast packet of valid frame length received on
any port. This counter is the summation of
hpRptrMonPortUcastPackets for all of the ports
in this repeater. This counter may not be
implemented for repeaters which do not have a
local network management agent."
::= { hpRptrMonCounters 14 }
hpRptrMonGlobalBcastPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
This counter is incremented by one for each
broadcast packet of valid frame length received on
any port. This counter is the summation of
hpRptrMonPortBcastPackets for all of the ports
in this repeater. This counter may not be
implemented for repeaters which do not have a
local network management agent."
::= { hpRptrMonCounters 15 }
hpRptrMonGlobalMcastPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"********* THIS OBJECT IS DEPRECATED *********
This counter is incremented by one for each
multicast packet of valid frame length received on
any port. This counter is the summation of
hpRptrMonPortMcastPackets for all of the ports in
this repeater. This counter may not be
implemented for repeaters which do not have a
local network management agent."
::= { hpRptrMonCounters 16 }
hpRptrMonitorGroup
OBJECT IDENTIFIER ::= { hpRptrMonitor 2 } -- unused
hpRptrMonitorPort
OBJECT IDENTIFIER ::= { hpRptrMonitor 3 }
hpRptrMonPtTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpRptrMonPtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of HP specific per port monitor objects."
::= { hpRptrMonitorPort 1 }
hpRptrMonPtEntry OBJECT-TYPE
SYNTAX HpRptrMonPtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the table, containing per port
objects for a single port."
INDEX { hpRptrMonPtGroupIndex, hpRptrMonPtPortIndex }
::= { hpRptrMonPtTable 1 }
HpRptrMonPtEntry ::=
SEQUENCE {
hpRptrMonPtGroupIndex Integer32,
hpRptrMonPtPortIndex Integer32,
hpRptrMonPtUcastPackets Counter32,
hpRptrMonPtBcastPackets Counter32,
hpRptrMonPtMcastPackets Counter32
}
hpRptrMonPtGroupIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The group containing the port for which this
entry contains information. This object has the
same value as the corresponding instance of
rptrMonitorPortGroupIndex."
::= { hpRptrMonPtEntry 1 }
hpRptrMonPtPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port within the group for which this entry
contains information. This object has the same
value as the corresponding instance of
rptrMonitorPortIndex."
::= { hpRptrMonPtEntry 2 }
hpRptrMonPtUcastPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter is incremented by one for each
unicast packet of valid frame length received on
this port. This object may not be implemented for
repeaters which do not have a local network
management agent."
::= { hpRptrMonPtEntry 3 }
hpRptrMonPtBcastPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter is incremented by one for each
broadcast packet of valid frame length received on
this port. This object may not be implemented for
repeaters which do not have a local network
management agent."
::= { hpRptrMonPtEntry 4 }
hpRptrMonPtMcastPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter is incremented by one for each
multicast packet of valid frame length received on
this port. This object may not be implemented for
repeaters which do not have a local network
management agent."
::= { hpRptrMonPtEntry 5 }
hpRpMauGroup OBJECT IDENTIFIER ::= { hpicfRepeater 4 }
hpRpMauTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpRpMauEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"HP extensions to the rpMauTable."
::= { hpRpMauGroup 1 }
hpRpMauEntry OBJECT-TYPE
SYNTAX HpRpMauEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the table, containing HP extensions
for a single MAU."
INDEX { rpMauGroupIndex, rpMauPortIndex, rpMauIndex }
::= { hpRpMauTable 1 }
HpRpMauEntry ::=
SEQUENCE {
hpRpMauTypeList BITS,
hpRpMauAutoNegSupported TruthValue,
hpRpMauAutoNegAdminStatus INTEGER,
hpRpMauAutoNegRemoteSignaling INTEGER,
hpRpMauAutoNegConfig INTEGER,
hpRpMauAutoNegCapReceived BITS,
hpRpMauAutoNegRestart INTEGER
}
hpRpMauTypeList OBJECT-TYPE
SYNTAX BITS {
bOther(0), -- other or unknown
bAUI(1), -- AUI
b10base5(2), -- 10BASE-5
bFoirl(3), -- FOIRL
b10base2(4), -- 10BASE-2
b10baseT(5), -- 10BASE-T duplex mode unknown
b10baseFP(6), -- 10BASE-FP
b10baseFB(7), -- 10BASE-FB
b10baseFL(8), -- 10BASE-FL duplex mode unknown
b10broad36(9), -- 10BROAD36
b10baseTHD(10), -- 10BASE-T half duplex mode
b10baseTFD(11), -- 10BASE-T full duplex mode
b10baseFLHD(12), -- 10BASE-FL half duplex mode
b10baseFLFD(13), -- 10BASE-FL full duplex mode
b100baseT4(14), -- 100BASE-T4
b100baseTXHD(15), -- 100BASE-TX half duplex mode
b100baseTXFD(16), -- 100BASE-TX full duplex mode
b100baseFXHD(17), -- 100BASE-FX half duplex mode
b100baseFXFD(18), -- 100BASE-FX full duplex mode
b100baseT2HD(19), -- 100BASE-T2 half duplex mode
b100baseT2FD(20) -- 100BASE-T2 full duplex mode
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A value that uniquely identifies the set of
possible IEEE 802.3 types that the MAU could be. If
auto-negotiation is present on this MAU, this object