summaryrefslogtreecommitdiff
path: root/MIBS/hp/HP-ICF-8023-RPTR
blob: 6540b8ab3d1562b4cc3921c2db4c38da8c3a2fe4 (plain)
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
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
       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
                   will map to hpRpMauAutoNegCapability.

                   Note that a repeater can never actually support the
                   full-duplex MAU types.  The bits for them are
                   retained to keep the bit values consistent with
                   ifMauTypeListBits."
           ::= { hpRpMauEntry 1 }

       hpRpMauAutoNegSupported OBJECT-TYPE
           SYNTAX     TruthValue
           MAX-ACCESS read-only
           STATUS     current
           DESCRIPTION
                   "This object indicates whether or not
                   auto-negotiation is supported on this MAU."
           ::= { hpRpMauEntry 2 }

       hpRpMauAutoNegAdminStatus OBJECT-TYPE
           SYNTAX     INTEGER {
                          autoNegotiate(1),
                          forceTo100TXHD(2),
                          forceTo10THD(3)
                      }
           MAX-ACCESS read-write
           STATUS     current
           DESCRIPTION
                   "Setting this object to autoNegotiate(1) will cause
                   auto-negotiation to be enabled on this port.

                   Setting this object to forceTo100TXHD will cause
                   auto-negotiation to be disabled on this port, and
                   cause the operational type of the MAU on this port
                   (as reported by rpMauType) to transition to
                   dot3MauType100BaseTXHD.

                   Setting this object to forceTo10THD will cause
                   auto-negotiation to be disabled on this port, and
                   cause the operational type of the MAU on this port
                   (as reported by rpMauType) to transition to
                   dot3MauType10BaseTHD."
           ::= { hpRpMauEntry 3 }

       hpRpMauAutoNegRemoteSignaling OBJECT-TYPE
           SYNTAX     INTEGER {
                          detected(1),
                          notdetected(2)
                      }
           MAX-ACCESS read-only
           STATUS     current
           DESCRIPTION
                   "A value indicating whether the remote end of the
                   link is using auto-negotiation signaling. It takes
                   the value detected(1) if and only if, during the
                   previous link negotiation, FLP Bursts were received."
           REFERENCE  "[IEEE 802.3 Mgt], 30.6.1.1.3,
                      aAutoNegRemoteSignaling."
           ::= { hpRpMauEntry 4 }

       hpRpMauAutoNegConfig OBJECT-TYPE
           SYNTAX     INTEGER {
                          other(1),
                          configuring(2),
                          complete(3),
                          disabled(4),
                          parallelDetectFail(5)
                      }
           MAX-ACCESS read-only
           STATUS     current
           DESCRIPTION
                   "A value indicating the current status of the
                   auto-negotiation process.  The enumeration
                   parallelDetectFail(5) maps to a failure in parallel
                   detection as defined in 28.2.3.1 of
                   [IEEE 802.3 Std]."
           REFERENCE  "[IEEE 802.3 Mgt], 30.6.1.1.4,
                      aAutoNegAutoConfig."
           ::= { hpRpMauEntry 5 }

       hpRpMauAutoNegCapReceived OBJECT-TYPE
           SYNTAX     BITS {
                bOther(0),        -- other or unknown
                b10baseT(1),      -- 10BASE-T  half duplex mode
                b10baseTFD(2),    -- 10BASE-T  full duplex mode
                b100baseT4(3),    -- 100BASE-T4
                b100baseTX(4),    -- 100BASE-TX half duplex mode
                b100baseTXFD(5),  -- 100BASE-TX full duplex mode
                b100baseT2(6),    -- 100BASE-T2 half duplex mode
                b100baseT2FD(7)   -- 100BASE-T2 full duplex mode
           }
           MAX-ACCESS read-only
           STATUS     current
           DESCRIPTION
                   "A value that uniquely identifies the set of
                   capabilities received from the remote
                   auto-negotiation entity.

                   Note that ports that support this MIB may be
                   attached to remote auto-negotiation entities which
                   have capabilities beyond the scope of this MIB."
           REFERENCE  "[IEEE 802.3 Mgt], 30.6.1.1.7,
                      aAutoNegReceivedTechnologyAbility."
           ::= { hpRpMauEntry 6 }

       hpRpMauAutoNegRestart OBJECT-TYPE
           SYNTAX     INTEGER {
                          restart(1),
                          norestart(2)
                      }
           MAX-ACCESS read-write
           STATUS     current
           DESCRIPTION
                   "If the value of this object is set to restart(1)
                   then this will force auto-negotiation to begin link
                   renegotiation. If auto-negotiation signaling is
                   disabled, a write to this object has no effect.

                   Setting the value of this object to norestart(2) has
                   no effect."
           REFERENCE  "[IEEE 802.3 Mgt], 30.6.1.2.1,
                      acAutoNegRestartAutoConfig."
           ::= { hpRpMauEntry 7 }



       -- 802.3 Repeater Specific Traps


       hpicfLinkBeatTrap NOTIFICATION-TYPE
           OBJECTS    { rpMauMediaAvailable }
           STATUS     deprecated
           DESCRIPTION
                   "********* THIS NOTIFICATION IS DEPRECATED *********

                   A hpicfLinkBeatTrap is device type specific to ICF
                   hubs.  It signifies that the hub hardware has
                   detected a change of state in a port's link beat
                   status. The current value of the port's link beat
                   status is returned in the PDU.

                   This trap has been deprecated.  It is replaced by the
                   hpicfMediaAvailDetectTrap and the
                   hpicfMediaAvailLostTrap."
           ::=  { hpicf8023RptrTrapsPrefix 1 }

       hpicfPartitionTrap NOTIFICATION-TYPE
           OBJECTS    { rptrPortAutoPartitionState }
           STATUS     deprecated
           DESCRIPTION
                   "********* THIS NOTIFICATION IS DEPRECATED *********

                   A hpicfPartitionTrap is device type specific to ICF
                   hubs.  It signifies that the hub hardware has
                   detected a change of state in a port's partition
                   status.  The current value of the port's partition
                   status is returned in the PDU.

                   This trap has been deprecated.  It is replaced by the
                   hpicfPortPartitionTrap and the hpicfPortHealTrap."
           ::= { hpicf8023RptrTrapsPrefix 2 }

       hpicfMediaAvailDetectTrap NOTIFICATION-TYPE
           OBJECTS    { rpMauMediaAvailable }
           STATUS     current
           DESCRIPTION
                   "A hpicfMediaAvailDetectTraps is device type specific
                   to ICF hubs.  It signifies that the hub hardware has
                   detected an instance of rpMauMediaAvailable for one
                   of the repeater's ports has entered the 'available'
                   state from some other state.  Note that this trap is
                   only generated for instances of rpMauMediaAvailable
                   associated with MAUs attached to repeater ports for
                   which the corresponding instance of the
                   hpRptrPtMediaAvailTrapEnable object is equal to
                   'true'.

                   The previous value of the instance of the
                   rpMauMediaAvailable object that entered the 'active'
                   state is returned in the PDU."
           ::= { hpicf8023RptrTrapsPrefix 3 }

       hpicfMediaAvailLostTrap NOTIFICATION-TYPE
           OBJECTS    { rpMauMediaAvailable }
           STATUS     current
           DESCRIPTION
                   "A hpicfMediaAvailLostTraps is device type specific
                   to ICF hubs.  It signifies that the hub hardware has
                   detected an instance of rpMauMediaAvailable for one
                   of the repeater's ports that had been in the
                   'available' state has exited that state.  Note that
                   this trap is only generated for instances of
                   rpMauMediaAvailable associated with MAUs attached to
                   repeater ports for which the corresponding instance
                   of the hpRptrPtMediaAvailTrapEnable object is equal
                   to 'true'.

                   The new value of the instance of the
                   rpMauMediaAvailable object that exited the 'active'
                   state is returned in the PDU."
           ::= { hpicf8023RptrTrapsPrefix 4 }

       hpicfPortPartitionTrap NOTIFICATION-TYPE
           OBJECTS    { rptrPortAutoPartitionState }
           STATUS     current
           DESCRIPTION
                   "A hpicfPortPartitionTrap is device type specific
                   to ICF hubs.  It signifies that the hub hardware has
                   detected that an instance of
                   rptrPortAutoPartitionState for one of the repeater's
                   ports has changed from the 'notAutoPartitioned' state
                   to the 'autoPartitioned' state.  The current value of
                   the instance of the rptrPortAutoPartitionState for
                   the port that auto-partitioned is returned in the
                   PDU."
           ::= { hpicf8023RptrTrapsPrefix 5 }

       hpicfPortHealTrap NOTIFICATION-TYPE
           OBJECTS    { rptrPortAutoPartitionState }
           STATUS     current
           DESCRIPTION
                   "A hpicfPortHealTrap is device type specific to ICF
                   hubs.  It signifies that the hub hardware has
                   detected that an instance of
                   rptrPortAutoPartitionState for one of the repeater's
                   ports has changed from the 'autoPartitioned' state
                   to the 'notAutoPartitioned' state.  The current value
                   of the instance of the rptrPortAutoPartitionState for
                   the port that healed is returned in the PDU."
           ::= { hpicf8023RptrTrapsPrefix 6 }


       -- Conformance information

       hpicf8023RptrConformance
           OBJECT IDENTIFIER ::= { hpicf8023RptrMib 1 }

       hpicf8023RptrCompliances
           OBJECT IDENTIFIER ::= { hpicf8023RptrConformance 1 }
       hpicf8023RptrGroups
           OBJECT IDENTIFIER ::= { hpicf8023RptrConformance 2 }


       -- Compliance statements

       hpicf8023RptrCompliance MODULE-COMPLIANCE
           STATUS     deprecated
           DESCRIPTION
                   "********* THIS COMPLIANCE IS DEPRECATED *********

                   The compliance statement for HP extensions to the
                   802.3 Repeater MIB for HP AdvanceStack 802.3
                   repeaters."
           MODULE
               MANDATORY-GROUPS { hpicf8023RptrBasicGroup,
                                  hpicf8023RptrMonitorGroup,
                                  hpicf8023RptrNotifyGroup }

       ::= { hpicf8023RptrCompliances 1 }

       hpicf8023RptrSlaveCompliance MODULE-COMPLIANCE
           STATUS     deprecated
           DESCRIPTION
                   "********* THIS COMPLIANCE IS DEPRECATED *********

                   The compliance statement for HP extensions to the
                   802.3 Repeater MIB for HP AdvanceStack 802.3
                   slave repeaters."
           MODULE
               MANDATORY-GROUPS { hpicf8023RptrBasicSlaveGroup,
                                  hpicf8023RptrMonitorSlaveGroup,
                                  hpicf8023RptrNotifyGroup }

       ::= { hpicf8023RptrCompliances 2 }

       hpicf8023MultiRptrCompliance MODULE-COMPLIANCE
           STATUS     current
           DESCRIPTION
                   "The compliance statement for HP extensions to the
                   802.3 Repeater MIB for HP AdvanceStack 802.3
                   repeaters.  This compliance supports devices
                   with multiple repeater segments, as well as
                   devices with a single repeater segment."
           MODULE
               MANDATORY-GROUPS { hpicf8023MultiRptrBasicGroup,
                                  hpicf8023MultiRptrMonitorGroup,
                                  hpicf8023MultiRptrNotifyGroup }

       ::= { hpicf8023RptrCompliances 3 }

       hpicf8023RptrAutoNegCompliance MODULE-COMPLIANCE
           STATUS     current
           DESCRIPTION
                   "The compliance statement for HP extensions to the
                   802.3 Repeater MIB for HP AdvanceStack 802.3
                   repeaters.  This compliance supports devices
                   with multiple repeater segments, as well as
                   devices with a single repeater segment.  It also
                   supports repeater devices with auto-negotiation."
           MODULE
               MANDATORY-GROUPS { hpicf8023MultiRptrBasicGroup,
                                  hpicf8023MultiRptrMonitorGroup,
                                  hpicf8023MultiRptrNotifyGroup }

               GROUP       hpicf8023RpMauAutoNegGroup
               DESCRIPTION "Implementation of this group is required for
                           MAUs that support auto-negotiation."

       ::= { hpicf8023RptrCompliances 4 }


       -- Units of conformance

       hpicf8023RptrBasicGroup OBJECT-GROUP
           OBJECTS    { hpRptrEntityName,
                        hpRptrThinlanFault,
                        hpRptrSqeEnabled,
                        hpRptrRobustHealing,
                        hpRptrGrpGroupIndex,
                        hpRptrGrpPortsAdminStatus,
                        hpRptrGrpPortsSegStatus,
                        hpRptrGrpPortsMediaAvailable,
                        hpRptrGrpPortsLinkbeatEnabled,
                        hpRptrGrpPortsOperStatus,
                        hpRptrPtGroupIndex,
                        hpRptrPtPortIndex,
                        hpRptrPtLinkbeatEnable,
                        hpRptrPtPolarityReversed
                      }
           STATUS     deprecated
           DESCRIPTION
                   "********* THIS GROUP IS DEPRECATED *********

                   A collection of HP specific extensions to the
                   802.3 Repeater MIB for the HP AdvanceStack product
                   line."
           ::= { hpicf8023RptrGroups 1 }

       hpicf8023RptrBasicSlaveGroup OBJECT-GROUP
           OBJECTS    { hpRptrEntityName,
                        hpRptrThinlanFault,
                        hpRptrSqeEnabled,
                        hpRptrGrpGroupIndex,
                        hpRptrGrpPortsAdminStatus,
                        hpRptrGrpPortsSegStatus,
                        hpRptrGrpPortsMediaAvailable,
                        hpRptrGrpPortsLinkbeatEnabled,
                        hpRptrGrpPortsOperStatus,
                        hpRptrPtGroupIndex,
                        hpRptrPtPortIndex,
                        hpRptrPtLinkbeatEnable,
                        hpRptrPtPolarityReversed
                      }
           STATUS     deprecated
           DESCRIPTION
                   "********* THIS GROUP IS DEPRECATED *********

                   A collection of HP specific extensions to the
                   802.3 Repeater MIB for HP AdvanceStack slaves."
           ::= { hpicf8023RptrGroups 2 }

       hpicf8023RptrMonitorGroup OBJECT-GROUP
           OBJECTS    { hpRptrMonGlobalFrames,
                        hpRptrMonGlobalOctets,
                        hpRptrMonGlobalFCSErrors,
                        hpRptrMonGlobalAlignmentErrors,
                        hpRptrMonGlobalFrameTooLongs,
                        hpRptrMonGlobalShortEvents,
                        hpRptrMonGlobalRunts,
                        hpRptrMonGlobalCollisions,
                        hpRptrMonGlobalLateEvents,
                        hpRptrMonGlobalVeryLongEvents,
                        hpRptrMonGlobalDataRateMismatches,
                        hpRptrMonGlobalAutoPartitions,
                        hpRptrMonGlobalErrors,
                        hpRptrMonGlobalUcastPackets,
                        hpRptrMonGlobalBcastPackets,
                        hpRptrMonGlobalMcastPackets,
                        hpRptrMonPtGroupIndex,
                        hpRptrMonPtPortIndex,
                        hpRptrMonPtUcastPackets,
                        hpRptrMonPtBcastPackets,
                        hpRptrMonPtMcastPackets
                      }
           STATUS     deprecated
           DESCRIPTION
                   "********* THIS GROUP IS DEPRECATED *********

                   A collection of extended counters for 802.3
                   repeaters in the HP AdvanceStack product line."
           ::= { hpicf8023RptrGroups 3 }

       hpicf8023RptrMonitorSlaveGroup OBJECT-GROUP
           OBJECTS    { hpRptrMonGlobalFrames,
                        hpRptrMonGlobalOctets,
                        hpRptrMonGlobalFCSErrors,
                        hpRptrMonGlobalAlignmentErrors,
                        hpRptrMonGlobalFrameTooLongs,
                        hpRptrMonGlobalShortEvents,
                        hpRptrMonGlobalRunts,
                        hpRptrMonGlobalCollisions,
                        hpRptrMonGlobalLateEvents,
                        hpRptrMonGlobalVeryLongEvents,
                        hpRptrMonGlobalDataRateMismatches,
                        hpRptrMonGlobalAutoPartitions,
                        hpRptrMonGlobalErrors
                      }
           STATUS     deprecated
           DESCRIPTION
                   "********* THIS GROUP IS DEPRECATED *********

                   A collection of extended counters for HP
                   AdvanceStack 802.3 slave repeaters."
           ::= { hpicf8023RptrGroups 4 }

       hpicf8023MultiRptrBasicGroup OBJECT-GROUP
           OBJECTS    { hpRptrPtGroupIndex,
                        hpRptrPtPortIndex,
                        hpRptrPtLinkbeatEnable,
                        hpRptrPtPolarityReversed,
                        hpRptrPtSqeEnabled,
                        hpRptrPtMediaAvailTrapEnable,
                        hpRptrPtLongCableEnable
                      }
           STATUS     current
           DESCRIPTION
                   "A collection of HP specific extensions to the
                   802.3 Repeater MIB for products in the HP
                   AdvanceStack product line.  This group supports
                   devices with multiple repeater segments as well
                   as devices with a single repeater segment."
           ::= { hpicf8023RptrGroups 5 }

       hpicf8023MultiRptrMonitorGroup OBJECT-GROUP
           OBJECTS    { hpRptrMonPtGroupIndex,
                        hpRptrMonPtPortIndex,
                        hpRptrMonPtUcastPackets,
                        hpRptrMonPtBcastPackets,
                        hpRptrMonPtMcastPackets
                      }
           STATUS     current
           DESCRIPTION
                   "A collection of extended counters for 802.3
                   repeaters in the HP AdvanceStack product line.
                   This group supports devices with multiple
                   repeater segments as well as devices with a
                   single repeater segment."
           ::= { hpicf8023RptrGroups 6 }

       hpicf8023RptrNotifyGroup NOTIFICATION-GROUP
           NOTIFICATIONS { hpicfLinkBeatTrap,
                           hpicfPartitionTrap
                         }
           STATUS     deprecated
           DESCRIPTION
                   "********* THIS GROUP IS DEPRECATED *********

                   A collection of notifications used to indicate
                   changes in port status for 802.3 repeaters in the
                   HP AdvanceStack product line."
           ::= { hpicf8023RptrGroups 7 }

       hpicf8023MultiRptrNotifyGroup NOTIFICATION-GROUP
           NOTIFICATIONS { hpicfMediaAvailDetectTrap,
                           hpicfMediaAvailLostTrap,
                           hpicfPortPartitionTrap,
                           hpicfPortHealTrap
                         }
           STATUS     current
           DESCRIPTION
                   "A collection of notifications used to indicate
                   changes in port status for 802.3 repeaters in the
                   HP AdvanceStack product line.  Notifications in
                   this group use different traps for good->bad than
                   are used for bad->good (similar to linkUp/linkDown)."
           ::= { hpicf8023RptrGroups 8 }

       hpicf8023RpMauAutoNegGroup OBJECT-GROUP
           OBJECTS    { hpRpMauTypeList,
                        hpRpMauAutoNegSupported,
                        hpRpMauAutoNegAdminStatus,
                        hpRpMauAutoNegRemoteSignaling,
                        hpRpMauAutoNegConfig,
                        hpRpMauAutoNegCapReceived,
                        hpRpMauAutoNegRestart
                      }
           STATUS     current
           DESCRIPTION
                   "A collection of objects for managing MAUs attached
                   to repeater ports with managed auto-negotiation."
           ::= { hpicf8023RptrGroups 9 }

       hpicf8023Rptr100BasicGroup OBJECT-GROUP
           OBJECTS    { hpRptrPtGroupIndex,
                        hpRptrPtPortIndex,
                        hpRptrPtPolarityReversed,
                        hpRptrPtMediaAvailTrapEnable
                      }
           STATUS     current
           DESCRIPTION
                   "A collection of HP specific extensions to the
                   802.3 Repeater MIB for products in the HP
                   AdvanceStack product line.  This group supports
                   devices with multiple repeater segments as well
                   as devices with a single repeater segment.  This
                   group supports devices with 100BaseT repeater
                   segments."
           ::= { hpicf8023RptrGroups 10 }

       END