-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathDOT3-MAU-MIB-V1SMI.my
2432 lines (2208 loc) · 73.2 KB
/
DOT3-MAU-MIB-V1SMI.my
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
-- MIB file created 10-Jun-2004 16:01:36, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
MAU-MIB DEFINITIONS ::= BEGIN
-- From file: "DOT3-MAU-MIB.my"
-- Compile options "4 7 F H N W 03 06 0B 0G 0N 0T"
IMPORTS
mib-2
FROM SNMPv2-SMI-v1
TruthValue, AutonomousType
FROM SNMPv2-TC-v1
InterfaceIndex
FROM IF-MIB
Counter
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
mauMod OBJECT IDENTIFIER ::= { snmpDot3MauMgt 6 }
-- MODULE-IDENTITY
-- LastUpdated
-- 200309190000Z
-- OrgName
-- IETF Ethernet Interfaces and Hub MIB
-- Working Group
-- ContactInfo
-- WG E-mail: [email protected]
-- To subscribe: [email protected]
-- Chair: Dan Romascanu
-- Postal: Avaya Inc.
-- Atidim Technology Park, Bldg. 3
-- Tel Aviv 61131
-- Israel
-- Tel: +972 3 645 8414
-- E-mail: [email protected]
-- Editor: John Flick
-- Postal: Hewlett-Packard Company
-- 8000 Foothills Blvd. M/S 5557
-- Roseville, CA 95747-5557
-- USA
-- Tel: +1 916 785 4018
-- Fax: +1 916 785 1199
-- E-mail: [email protected]
-- Descr
-- Management information for 802.3 MAUs.
--
-- The following reference is used throughout
-- this MIB module:
--
-- [IEEE 802.3 Std] refers to:
-- IEEE Std 802.3, 2002 Edition: 'IEEE Standard
-- for Information technology -
-- Telecommunications and information exchange
-- between systems - Local and metropolitan
-- area networks - Specific requirements -
-- Part 3: Carrier sense multiple access with
-- collision detection (CSMA/CD) access method
-- and physical layer specifications', as
-- amended by IEEE Std 802.3ae-2002:
-- 'Amendment: Media Access Control (MAC)
-- Parameters, Physical Layer, and Management
-- Parameters for 10 Gb/s Operation', August,
-- 2002.
--
-- Of particular interest is Clause 30, '10Mb/s,
-- 100Mb/s, 1000Mb/s and 10 Gb/s Management'.
--
-- Copyright (C) The Internet Society (2003). This
-- version of this MIB module is part of RFC 3636;
-- see the RFC itself for full legal notices.
-- RevDate
-- 200309190000Z
-- RevDescr
-- Updated to include support for 10 Gb/s MAUs.
-- This resulted in the following revisions:
-- - Added OBJECT-IDENTITY definitions for
-- 10 gigabit MAU types
-- - Added fiberLC jack type to JackType TC
-- - Extended ifMauTypeListBits with bits for
-- the 10 gigabit MAU types
-- - Added enumerations to ifMauMediaAvailable,
-- and updated its DESCRIPTION to reflect
-- behaviour at 10 Gb/s
-- - Added 64-bit version of ifMauFalseCarriers
-- and added mauIfGrpHCStats object group to
-- contain the new object
-- - Deprecated mauModIfCompl2 and replaced it
-- with mauModIfCompl3, which includes the new
-- object group
--
-- This version published as RFC 3636.
-- RevDate
-- 199908240400Z
-- RevDescr
-- This version published as RFC 2668. Updated
-- to include support for 1000 Mb/sec
-- MAUs and flow control negotiation.
-- RevDate
-- 199710310000Z
-- RevDescr
-- Version published as RFC 2239.
-- RevDate
-- 199309300000Z
-- RevDescr
-- Initial version, published as RFC 1515.
snmpDot3MauMgt OBJECT IDENTIFIER ::= { mib-2 26 }
dot3RpMauBasicGroup OBJECT IDENTIFIER ::= { snmpDot3MauMgt 1 }
dot3IfMauBasicGroup OBJECT IDENTIFIER ::= { snmpDot3MauMgt 2 }
dot3BroadMauBasicGroup OBJECT IDENTIFIER ::= { snmpDot3MauMgt 3 }
dot3IfMauAutoNegGroup OBJECT IDENTIFIER ::= { snmpDot3MauMgt 5 }
dot3MauType OBJECT IDENTIFIER ::= { snmpDot3MauMgt 4 }
snmpDot3MauTraps OBJECT IDENTIFIER ::= { snmpDot3MauMgt 0 }
mauModConf OBJECT IDENTIFIER ::= { mauMod 1 }
mauModCompls OBJECT IDENTIFIER ::= { mauModConf 1 }
mauModObjGrps OBJECT IDENTIFIER ::= { mauModConf 2 }
mauModNotGrps OBJECT IDENTIFIER ::= { mauModConf 3 }
dot3MauTypeAUI OBJECT IDENTIFIER ::= { dot3MauType 1 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- no internal MAU, view from AUI
-- Refer
-- [IEEE 802.3 Std.], Section 7
dot3MauType10Base5 OBJECT IDENTIFIER ::= { dot3MauType 2 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- thick coax MAU
-- Refer
-- [IEEE 802.3 Std.], Section 7
dot3MauTypeFoirl OBJECT IDENTIFIER ::= { dot3MauType 3 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- FOIRL MAU
-- Refer
-- [IEEE 802.3 Std.], Section 9.9
dot3MauType10Base2 OBJECT IDENTIFIER ::= { dot3MauType 4 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- thin coax MAU
-- Refer
-- [IEEE 802.3 Std.], Section 10
dot3MauType10BaseT OBJECT IDENTIFIER ::= { dot3MauType 5 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- UTP MAU.
-- Note that it is strongly recommended that
-- agents return either dot3MauType10BaseTHD or
-- dot3MauType10BaseTFD if the duplex mode is
-- known. However, management applications should
-- be prepared to receive this MAU type value from
-- older agent implementations.
-- Refer
-- [IEEE 802.3 Std.], Section 14
dot3MauType10BaseFP OBJECT IDENTIFIER ::= { dot3MauType 6 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- passive fiber MAU
-- Refer
-- [IEEE 802.3 Std.], Section 16
dot3MauType10BaseFB OBJECT IDENTIFIER ::= { dot3MauType 7 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- sync fiber MAU
-- Refer
-- [IEEE 802.3 Std.], Section 17
dot3MauType10BaseFL OBJECT IDENTIFIER ::= { dot3MauType 8 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- async fiber MAU.
-- Note that it is strongly recommended that
-- agents return either dot3MauType10BaseFLHD or
-- dot3MauType10BaseFLFD if the duplex mode is
-- known. However, management applications should
-- be prepared to receive this MAU type value from
-- older agent implementations.
-- Refer
-- [IEEE 802.3 Std.], Section 18
dot3MauType10Broad36 OBJECT IDENTIFIER ::= { dot3MauType 9 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- broadband DTE MAU.
-- Note that 10BROAD36 MAUs can be attached to
-- interfaces but not to repeaters.
-- Refer
-- [IEEE 802.3 Std.], Section 11
dot3MauType10BaseTHD OBJECT IDENTIFIER ::= { dot3MauType 10 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- UTP MAU, half duplex mode
-- Refer
-- [IEEE 802.3 Std.], Section 14
dot3MauType10BaseTFD OBJECT IDENTIFIER ::= { dot3MauType 11 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- UTP MAU, full duplex mode
-- Refer
-- [IEEE 802.3 Std.], Section 14
dot3MauType10BaseFLHD OBJECT IDENTIFIER ::= { dot3MauType 12 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- async fiber MAU, half duplex mode
-- Refer
-- [IEEE 802.3 Std.], Section 18
dot3MauType10BaseFLFD OBJECT IDENTIFIER ::= { dot3MauType 13 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- async fiber MAU, full duplex mode
-- Refer
-- [IEEE 802.3 Std.], Section 18
dot3MauType100BaseT4 OBJECT IDENTIFIER ::= { dot3MauType 14 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 4 pair category 3 UTP
-- Refer
-- [IEEE 802.3 Std.], Section 23
dot3MauType100BaseTXHD OBJECT IDENTIFIER ::= { dot3MauType 15 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 2 pair category 5 UTP, half duplex mode
-- Refer
-- [IEEE 802.3 Std.], Section 25
dot3MauType100BaseTXFD OBJECT IDENTIFIER ::= { dot3MauType 16 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 2 pair category 5 UTP, full duplex mode
-- Refer
-- [IEEE 802.3 Std.], Section 25
dot3MauType100BaseFXHD OBJECT IDENTIFIER ::= { dot3MauType 17 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- X fiber over PMT, half duplex mode
-- Refer
-- [IEEE 802.3 Std.], Section 26
dot3MauType100BaseFXFD OBJECT IDENTIFIER ::= { dot3MauType 18 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- X fiber over PMT, full duplex mode
-- Refer
-- [IEEE 802.3 Std.], Section 26
dot3MauType100BaseT2HD OBJECT IDENTIFIER ::= { dot3MauType 19 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 2 pair category 3 UTP, half duplex mode
-- Refer
-- [IEEE 802.3 Std.], Section 32
dot3MauType100BaseT2FD OBJECT IDENTIFIER ::= { dot3MauType 20 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- 2 pair category 3 UTP, full duplex mode
-- Refer
-- [IEEE 802.3 Std.], Section 32
dot3MauType1000BaseXHD OBJECT IDENTIFIER ::= { dot3MauType 21 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- PCS/PMA, unknown PMD, half duplex mode
-- Refer
-- [IEEE 802.3 Std.], Section 36
dot3MauType1000BaseXFD OBJECT IDENTIFIER ::= { dot3MauType 22 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- PCS/PMA, unknown PMD, full duplex mode
-- Refer
-- [IEEE 802.3 Std.], Section 36
dot3MauType1000BaseLXHD OBJECT IDENTIFIER ::= { dot3MauType 23 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Fiber over long-wavelength laser, half duplex
-- mode
-- Refer
-- [IEEE 802.3 Std.], Section 38
dot3MauType1000BaseLXFD OBJECT IDENTIFIER ::= { dot3MauType 24 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Fiber over long-wavelength laser, full duplex
-- mode
-- Refer
-- [IEEE 802.3 Std.], Section 38
dot3MauType1000BaseSXHD OBJECT IDENTIFIER ::= { dot3MauType 25 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Fiber over short-wavelength laser, half
-- duplex mode
-- Refer
-- [IEEE 802.3 Std.], Section 38
dot3MauType1000BaseSXFD OBJECT IDENTIFIER ::= { dot3MauType 26 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Fiber over short-wavelength laser, full
-- duplex mode
-- Refer
-- [IEEE 802.3 Std.], Section 38
dot3MauType1000BaseCXHD OBJECT IDENTIFIER ::= { dot3MauType 27 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Copper over 150-Ohm balanced cable, half
-- duplex mode
-- Refer
-- [IEEE 802.3 Std.], Section 39
dot3MauType1000BaseCXFD OBJECT IDENTIFIER ::= { dot3MauType 28 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Copper over 150-Ohm balanced cable, full
-- duplex mode
-- Refer
-- [IEEE 802.3 Std.], Section 39
dot3MauType1000BaseTHD OBJECT IDENTIFIER ::= { dot3MauType 29 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Four-pair Category 5 UTP, half duplex mode
-- Refer
-- [IEEE 802.3 Std.], Section 40
dot3MauType1000BaseTFD OBJECT IDENTIFIER ::= { dot3MauType 30 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- Four-pair Category 5 UTP, full duplex mode
-- Refer
-- [IEEE 802.3 Std.], Section 40
dot3MauType10GigBaseX OBJECT IDENTIFIER ::= { dot3MauType 31 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- X PCS/PMA, unknown PMD.
-- Refer
-- [IEEE 802.3 Std.], Section 48
dot3MauType10GigBaseLX4 OBJECT IDENTIFIER ::= { dot3MauType 32 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- X fiber over WWDM optics
-- Refer
-- [IEEE 802.3 Std.], Section 53
dot3MauType10GigBaseR OBJECT IDENTIFIER ::= { dot3MauType 33 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- R PCS/PMA, unknown PMD.
-- Refer
-- [IEEE 802.3 Std.], Section 49
dot3MauType10GigBaseER OBJECT IDENTIFIER ::= { dot3MauType 34 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- R fiber over 1550 nm optics
-- Refer
-- [IEEE 802.3 Std.], Section 52
dot3MauType10GigBaseLR OBJECT IDENTIFIER ::= { dot3MauType 35 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- R fiber over 1310 nm optics
-- Refer
-- [IEEE 802.3 Std.], Section 52
dot3MauType10GigBaseSR OBJECT IDENTIFIER ::= { dot3MauType 36 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- R fiber over 850 nm optics
-- Refer
-- [IEEE 802.3 Std.], Section 52
dot3MauType10GigBaseW OBJECT IDENTIFIER ::= { dot3MauType 37 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- W PCS/PMA, unknown PMD.
-- Refer
-- [IEEE 802.3 Std.], Section 49 and 50
dot3MauType10GigBaseEW OBJECT IDENTIFIER ::= { dot3MauType 38 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- W fiber over 1550 nm optics
-- Refer
-- [IEEE 802.3 Std.], Section 52
dot3MauType10GigBaseLW OBJECT IDENTIFIER ::= { dot3MauType 39 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- W fiber over 1310 nm optics
-- Refer
-- [IEEE 802.3 Std.], Section 52
dot3MauType10GigBaseSW OBJECT IDENTIFIER ::= { dot3MauType 40 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- W fiber over 850 nm optics
-- Refer
-- [IEEE 802.3 Std.], Section 52
JackType ::= INTEGER {
other(1),
rj45(2),
rj45S(3),
db9(4),
bnc(5),
fAUI(6),
mAUI(7),
fiberSC(8),
fiberMIC(9),
fiberST(10),
telco(11),
mtrj(12),
hssdc(13),
fiberLC(14)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Common enumeration values for repeater
-- and interface MAU jack types.
rpMauTable OBJECT-TYPE
SYNTAX SEQUENCE OF RpMauEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of descriptive and status information
about the MAU(s) attached to the ports of a
repeater."
::= { dot3RpMauBasicGroup 1 }
rpMauEntry OBJECT-TYPE
SYNTAX RpMauEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the table, containing information
about a single MAU."
INDEX { rpMauGroupIndex, rpMauPortIndex, rpMauIndex }
::= { rpMauTable 1 }
RpMauEntry ::= SEQUENCE {
rpMauGroupIndex INTEGER,
rpMauPortIndex INTEGER,
rpMauIndex INTEGER,
rpMauType AutonomousType,
rpMauStatus INTEGER,
rpMauMediaAvailable INTEGER,
rpMauMediaAvailableStateExits Counter,
rpMauJabberState INTEGER,
rpMauJabberingStateEnters Counter,
rpMauFalseCarriers Counter
}
rpMauGroupIndex OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable uniquely identifies the group
containing the port to which the MAU described
by this entry is connected.
Note: In practice, a group will generally be
a field-replaceable unit (i.e., module, card,
or board) that can fit in the physical system
enclosure, and the group number will correspond
to a number marked on the physical enclosure.
The group denoted by a particular value of this
object is the same as the group denoted by the
same value of rptrGroupIndex."
REFERENCE
"Reference RFC 2108, rptrGroupIndex."
::= { rpMauEntry 1 }
rpMauPortIndex OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable uniquely identifies the repeater
port within group rpMauGroupIndex to which the
MAU described by this entry is connected."
REFERENCE
"Reference RFC 2108, rptrPortIndex."
::= { rpMauEntry 2 }
rpMauIndex OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable uniquely identifies the MAU
described by this entry from among other
MAUs connected to the same port
(rpMauPortIndex)."
REFERENCE
"[IEEE 802.3 Std], 30.5.1.1.1, aMAUID."
::= { rpMauEntry 3 }
rpMauType OBJECT-TYPE
SYNTAX AutonomousType
-- Rsyntax OBJECT IDENTIFIER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object identifies the MAU type. Values for
standard IEEE 802.3 MAU types are defined above.
If the MAU type is unknown, the object identifier
unknownMauType OBJECT IDENTIFIER ::= { 0 0 }
is returned. Note that unknownMauType is a
syntactically valid object identifier, and any
conformant implementation of ASN.1 and the BER
must be able to generate and recognize this
value."
REFERENCE
"[IEEE 802.3 Std], 30.5.1.1.2, aMAUType."
::= { rpMauEntry 4 }
rpMauStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
unknown(2),
operational(3),
standby(4),
shutdown(5),
reset(6)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The current state of the MAU. This object MAY
be implemented as a read-only object by those
agents and MAUs that do not implement software
control of the MAU state. Some agents may not
support setting the value of this object to some
of the enumerated values.
The value other(1) is returned if the MAU is in
a state other than one of the states 2 through
6.
The value unknown(2) is returned when the MAU's
true state is unknown; for example, when it is
being initialized.
A MAU in the operational(3) state is fully
functional, operates, and passes signals to its
attached DTE or repeater port in accordance to
its specification.
A MAU in standby(4) state forces DI and CI to
idle and the media transmitter to idle or fault,
if supported. Standby(4) mode only applies to
link type MAUs. The state of
rpMauMediaAvailable is unaffected.
A MAU in shutdown(5) state assumes the same
condition on DI, CI, and the media transmitter
as though it were powered down or not connected.
The MAU MAY return other(1) value for the
rpMauJabberState and rpMauMediaAvailable objects
when it is in this state. For an AUI, this
state will remove power from the AUI.
Setting this variable to the value reset(6)
resets the MAU in the same manner as a
power-off, power-on cycle of at least one-half
second would. The agent is not required to
return the value reset (6).
Setting this variable to the value
operational(3), standby(4), or shutdown(5)
causes the MAU to assume the respective state
except that setting a mixing-type MAU or an AUI
to standby(4) will cause the MAU to enter the
shutdown state."
REFERENCE
"[IEEE 802.3 Std], 30.5.1.1.7, aMAUAdminState,
30.5.1.2.2, acMAUAdminControl, and 30.5.1.2.1,
acResetMAU."
::= { rpMauEntry 5 }
rpMauMediaAvailable OBJECT-TYPE
SYNTAX INTEGER {
other(1),
unknown(2),
available(3),
notAvailable(4),
remoteFault(5),
invalidSignal(6),
remoteJabber(7),
remoteLinkLoss(8),
remoteTest(9),
offline(10),
autoNegError(11)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If the MAU is a link or fiber type (FOIRL,
10BASE-T, 10BASE-F) then this is equivalent to
the link test fail state/low light function.
For an AUI or a coax (including broadband) MAU
this indicates whether or not loopback is
detected on the DI circuit. The value of this
attribute persists between packets for MAU types
AUI, 10BASE5, 10BASE2, 10BROAD36, and 10BASE-FP.
The value other(1) is returned if the
mediaAvailable state is not one of 2 through 11.
The value unknown(2) is returned when the MAU's
true state is unknown; for example, when it is
being initialized. At power-up or following a
reset, the value of this attribute will be
unknown for AUI, coax, and 10BASE-FP MAUs. For
these MAUs loopback will be tested on each
transmission during which no collision is
detected. If DI is receiving input when DO
returns to IDL after a transmission and there
has been no collision during the transmission
then loopback will be detected. The value of
this attribute will only change during
non-collided transmissions for AUI, coax, and
10BASE-FP MAUs.
For 100Mbps and 1000Mbps MAUs, the enumerations
match the states within the respective link
integrity state diagrams, fig 32-16, 23-12 and
24-15 of sections 32, 23 and 24 of [IEEE802.3].
Any MAU which implements management of
auto-negotiation will map remote fault
indication to remote fault.
The value available(3) indicates that the link,
light, or loopback is normal. The value
notAvailable(4) indicates link loss, low light,
or no loopback.
The value remoteFault(5) indicates that a fault
has been detected at the remote end of the link.
This value applies to 10BASE-FB, 100BASE-T4 Far
End Fault Indication and non-specified remote
faults from a system running auto-negotiation.
The values remoteJabber(7), remoteLinkLoss(8),
and remoteTest(9) SHOULD be used instead of
remoteFault(5) where the reason for remote fault
is identified in the remote signaling protocol.
The value invalidSignal(6) indicates that an
invalid signal has been received from the other
end of the link. invalidSignal(6) applies only
to MAUs of type 10BASE-FB.
Where an IEEE Std 802.3-2002 clause 22 MII
is present, a logic one in the remote fault bit
(reference section 22.2.4.2.8 of that document)
maps to the value remoteFault(5), and a logic
zero in the link status bit (reference section
22.2.4.2.10 of that document) maps to the value
notAvailable(4). The value notAvailable(4)
takes precedence over the value remoteFault(5).
Any MAU that implements management of clause 37
Auto-Negotiation will map the received Remote
Fault (RF1 and RF2) bit values for Offline to
offline(10), Link Failure to remoteFault(5) and
Auto-Negotiation Error to autoNegError(11)."
REFERENCE
"[IEEE 802.3 Std], 30.5.1.1.4, aMediaAvailable."
::= { rpMauEntry 6 }
rpMauMediaAvailableStateExits OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A count of the number of times that
rpMauMediaAvailable for this MAU instance leaves
the state available(3).
Discontinuities in the value of this counter can
occur at re-initialization of the management
system, and at other times as indicated by the
value of rptrMonitorPortLastChange."
REFERENCE
"[IEEE 802.3 Std], 30.5.1.1.5,
aLoseMediaCounter.
RFC 2108, rptrMonitorPortLastChange"
::= { rpMauEntry 7 }
rpMauJabberState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
unknown(2),
noJabber(3),
jabbering(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value other(1) is returned if the jabber
state is not 2, 3, or 4. The agent MUST always
return other(1) for MAU type dot3MauTypeAUI.
The value unknown(2) is returned when the MAU's
true state is unknown; for example, when it is
being initialized.
If the MAU is not jabbering the agent returns
noJabber(3). This is the 'normal' state.
If the MAU is in jabber state the agent returns
the jabbering(4) value."
REFERENCE
"[IEEE 802.3 Std], 30.5.1.1.6,
aJabber.jabberFlag."
::= { rpMauEntry 8 }
rpMauJabberingStateEnters OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A count of the number of times that
mauJabberState for this MAU instance enters the
state jabbering(4). For MAUs of type
dot3MauTypeAUI, dot3MauType100BaseT4,
dot3MauType100BaseTX, dot3MauType100BaseFX and
all 1000Mbps types, this counter will always
indicate zero.
Discontinuities in the value of this counter can
occur at re-initialization of the management
system, and at other times as indicated by the
value of rptrMonitorPortLastChange."
REFERENCE
"[IEEE 802.3 Std], 30.5.1.1.6,
aJabber.jabberCounter.
RFC 2108, rptrMonitorPortLastChange"
::= { rpMauEntry 9 }
rpMauFalseCarriers OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A count of the number of false carrier events
during IDLE in 100BASE-X links. This counter
does not increment at the symbol rate. It can
increment after a valid carrier completion at a
maximum rate of once per 100 ms until the next
carrier event.
This counter increments only for MAUs of type
dot3MauType100BaseT4, dot3MauType100BaseTX, and
dot3MauType100BaseFX and all 1000Mbps types.
For all other MAU types, this counter will
always indicate zero.
The approximate minimum time for rollover of
this counter is 7.4 hours.
Discontinuities in the value of this counter can
occur at re-initialization of the management
system, and at other times as indicated by the
value of rptrMonitorPortLastChange."
REFERENCE
"[IEEE 802.3 Std], 30.5.1.1.10, aFalseCarriers.
RFC 2108, rptrMonitorPortLastChange"
::= { rpMauEntry 10 }
rpJackTable OBJECT-TYPE
SYNTAX SEQUENCE OF RpJackEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information about the external jacks attached
to MAUs attached to the ports of a repeater."
::= { dot3RpMauBasicGroup 2 }
rpJackEntry OBJECT-TYPE
SYNTAX RpJackEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the table, containing information
about a particular jack."
INDEX { rpMauGroupIndex, rpMauPortIndex, rpMauIndex, rpJackIndex }
::= { rpJackTable 1 }
RpJackEntry ::= SEQUENCE {
rpJackIndex INTEGER,
rpJackType JackType
}
rpJackIndex OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This variable uniquely identifies the jack
described by this entry from among other jacks
attached to the same MAU (rpMauIndex)."
::= { rpJackEntry 1 }
rpJackType OBJECT-TYPE
SYNTAX JackType
-- Rsyntax INTEGER {
-- other(1),
-- rj45(2),
-- rj45S(3),
-- db9(4),
-- bnc(5),
-- fAUI(6),
-- mAUI(7),
-- fiberSC(8),
-- fiberMIC(9),
-- fiberST(10),
-- telco(11),
-- mtrj(12),
-- hssdc(13),
-- fiberLC(14)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The jack connector type, as it appears on the
outside of the system."
::= { rpJackEntry 2 }
ifMauTable OBJECT-TYPE
SYNTAX SEQUENCE OF IfMauEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of descriptive and status information
about MAU(s) attached to an interface."
::= { dot3IfMauBasicGroup 1 }
ifMauEntry OBJECT-TYPE
SYNTAX IfMauEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the table, containing information
about a single MAU."
INDEX { ifMauIfIndex, ifMauIndex }
::= { ifMauTable 1 }
IfMauEntry ::= SEQUENCE {
ifMauIfIndex InterfaceIndex,
ifMauIndex INTEGER,
ifMauType AutonomousType,
ifMauStatus INTEGER,
ifMauMediaAvailable INTEGER,
ifMauMediaAvailableStateExits Counter,
ifMauJabberState INTEGER,
ifMauJabberingStateEnters Counter,
ifMauFalseCarriers Counter,
ifMauTypeList INTEGER,
ifMauDefaultType AutonomousType,
ifMauAutoNegSupported TruthValue,
ifMauTypeListBits OCTET STRING
-- ifMauHCFalseCarriers Counter64
}
ifMauIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
-- Rsyntax INTEGER(1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable uniquely identifies the interface
to which the MAU described by this entry is
connected."
REFERENCE
"RFC 2863, ifIndex"
::= { ifMauEntry 1 }
ifMauIndex OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable uniquely identifies the MAU
described by this entry from among other MAUs
connected to the same interface (ifMauIfIndex)."
REFERENCE
"[IEEE 802.3 Std], 30.5.1.1.1, aMAUID."
::= { ifMauEntry 2 }