forked from AlexandreYang/snmp-mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
A3COM-HUAWEI-DOT3-EFM-EPON-MIB
executable file
·1286 lines (1128 loc) · 50.6 KB
/
A3COM-HUAWEI-DOT3-EFM-EPON-MIB
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
--===========================================================
-- Copyright (C) 2003 by HUAWEI 3Com TECHNOLOGIES. All rights reserved.
-- Description: This mib is excerpted from the draft-ietf-hubmib-efm-epon-mib-02 directly
--- only changed the object name,added the h3c as prefix.
-- Reference:
-- Version: V1.0
-- History:
-- V1.0 created by liyue.
-- Define MODULE-IDENTITY for h3cDot3EfmeponMIB
--=================================================================
A3COM-HUAWEI-DOT3-EFM-EPON-MIB DEFINITIONS ::= BEGIN
IMPORTS
h3cEpon
FROM A3COM-HUAWEI-OID-MIB
MODULE-IDENTITY, mib-2, OBJECT-TYPE, Counter32,
Integer32, OBJECT-IDENTITY
FROM SNMPv2-SMI
TruthValue, MacAddress
FROM SNMPv2-TC
ifIndex
FROM IF-MIB
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF;
h3cDot3EfmeponMIB MODULE-IDENTITY
LAST-UPDATED "200409210000Z" -- September 21, 2004
ORGANIZATION "IETF Ethernet Interfaces and Hub MIB Working
Group"
CONTACT-INFO
"WG charter:
http://www.ietf.org/html.charters/hubmib-charter.html
Mailing Lists:
General Discussion: hubmib@ietf.org
To Subscribe: hubmib-request@ietf.org
In Body: subscribe your_email_address
Chair: Dan Romascanu
Postal: Avaya Inc.
Atidim Technology Park, Bldg. 3
Tel Aviv 61131
Israel
Tel: +972-3-645-8414
E-mail: dromasca@avaya.com
Editor: Lior Khermosh
Postal: Passave Technologies Inc.
Ackerstein Towers, Tower A, 6th floor,
9 Hamenofim St.
Hertzliya Pituach 46725,
ISRAEL
P.O.Box 2089 Hertzliya Pituach 46120 Israel
Tel: +972-9-9717600 Ext: 7181
E-mail: lior.khermosh@passave.com"
DESCRIPTION
"The objects in this MIB module are used to manage the
Ethernet in the First Mile (EFM) Multi Point Control
Protocol (MPCP) Interfaces as defined in IEEE Draft
P802.3ah/D3.0 clause 64,65.
The following reference is used throughout this MIB module:
[802.3ah] refers to:
IEEE Draft P802.3ah/D3.3: 'Draft amendment to -
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 - Media Access Control Parameters,
Physical Layers and Management Parameters for
subscriber access networks', 22 April 2004.
Of particular interest are Clause 64(MPCP) 65(P2MP RS) and
60 (PON PMDs). Clause 30, 'Management', and Clause 45,
'Management Data Input/Output (MDIO) Interface'.
Copyright (C) The Internet Society (2004). This version
of this MIB module is part of XXXX see the RFC itself for
full legal notices."
-- Editor's Note: Replace XXXX with the actual RFC number
-- assigned by RFC Editor and remove this note
REVISION "200409210000Z" -- September 21, 2004
DESCRIPTION "Initial version, published as RFC XXXX."
::= { h3cEpon 2 }
-- Editor's Note: Replace XXX with a real OID once it is
-- assigned by IANA and remove this note.
-- Editor-s note: MPCP MIB modules definitions ([802.3ah]
--- clause 30.3.5)
-- Editor-s note: Description in attributes with References should be
-- minimized in later versions
h3cDot3MpcpMIB OBJECT IDENTIFIER ::= { h3cDot3EfmeponMIB 1 }
h3cDot3MpcpObjects OBJECT IDENTIFIER ::= { h3cDot3MpcpMIB 1 }
h3cDot3MpcpConformance OBJECT IDENTIFIER ::= { h3cDot3MpcpMIB 2 }
h3cDot3MpcpTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cDot3MpcpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table for dot3 Multi-Point Control Protocol (MPCP)
MIB modules."
::= { h3cDot3MpcpObjects 1 }
h3cDot3MpcpEntry OBJECT-TYPE
SYNTAX H3cDot3MpcpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dot3 MPCP MIB modules table."
INDEX { ifIndex }
::= { h3cDot3MpcpTable 1 }
H3cDot3MpcpEntry ::=
SEQUENCE {
h3cDot3MpcpID Integer32,
h3cDot3MpcpOperStatus TruthValue,
h3cDot3MpcpMode INTEGER,
h3cDot3MpcpLinkID Integer32,
h3cDot3MpcpRemoteMACAddress MacAddress,
h3cDot3MpcpRegistrationState INTEGER,
h3cDot3MpcpTransmitElapsed Integer32,
h3cDot3MpcpReceiveElapsed Integer32,
h3cDot3MpcpRoundTripTime Integer32,
h3cDot3MpcpMaximumPendingGrants Integer32,
h3cDot3MpcpAdminState TruthValue,
h3cDot3MpcpOnTime Integer32,
h3cDot3MpcpOffTime Integer32,
h3cDot3MpcpSyncTime Integer32
}
h3cDot3MpcpID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable is assigned so as to uniquely identify the
Multi-Point MAC Control (MPCP) entity, as defined in
[802.3ah] clause 64, among the subordinate managed
objects of the containing object.
This attribute is relevant for an OLT and an ONU."
REFERENCE "[802.3ah], 30.3.5.1.1."
::= { h3cDot3MpcpEntry 1 }
h3cDot3MpcpOperStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable can be used to define the operational
state of the Multi-Point MAC Control sublayer as
defined in [802.3ah] clause 64. Selecting admin for an
interface with Multi-Point MAC Control sublayer. When
the attribute is True the the interface will act as if
Multi-point control protocol is enabled. When the
attribute is False the interface will act as if it does
not have the Multi-point control protocol. The
operational state can be changed using the
h3cDot3MpcpAdminState attribute.
This attribute is relevant for an OLT and an ONU."
REFERENCE "[802.3ah], 30.3.5.1.2."
::= { h3cDot3MpcpEntry 2 }
h3cDot3MpcpMode OBJECT-TYPE
SYNTAX INTEGER {
olt(1),
onu(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable can be used to identify the operational
state of the Multi-Point MAC Control sublayer as
defined in [802.3ah] clause 64. Selecting olt(1) for an
OLT (server) mode and onu(2) for an ONU (client) mode.
Writing can be done during only during initialization,
when h3cDot3MpcpOperStatus indicates Flase.
This attribute is relevant for an OLT and an ONU."
REFERENCE "[802.3ah], 30.3.5.1.3."
DEFVAL { 1 }
::= { h3cDot3MpcpEntry 3 }
h3cDot3MpcpLinkID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only value that identifies the Logical Link
identity (LLID) associated with the MAC port as
specified in [802.3ah] clause 65.1.3.2.2.
This attribute is relevant for an OLT and an ONU."
REFERENCE "[802.3ah], 30.3.5.1.4."
::= { h3cDot3MpcpEntry 4 }
h3cDot3MpcpRemoteMACAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only value that identifies the source_address
parameter of the last MPCPDUs passed to the MAC Control.
This value is updated on reception of a valid frame with
(1) a destination Field equal to the reserved multicast
address for MAC Control specified in [802.3ah] Annex
31A, (2) lengthOrType field value equal to the reserved
Type for MAC Control as specified in [802.3ah] Annex
31A. (3) an MPCP subtype value equal to the subtype
reserved for MPCP as specified in [802.3ah] Annex 31A.
This attribute is relevant for an OLT and an ONU."
REFERENCE "[802.3ah], 30.3.5.1.5."
::= { h3cDot3MpcpEntry 5 }
h3cDot3MpcpRegistrationState OBJECT-TYPE
SYNTAX INTEGER {
unregistered(1),
registering(2),
registered(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only value that identifies the operational state
of the Multi-Point MAC Control sublayer as defined in
[802.3ah] clause 64. When this attribute has the
enumeration unregistered(1) the interface may be used
for registering a link partner. When this attribute has
the enumeration registering(2) the interface is in the
process of registering a link-partner. When this
attribute has the enumeration registered(3) the
interface has an established link-partner.
This attribute is relevant for an OLT and an ONU. For
the OLT it provides an indication per LLID."
REFERENCE "[802.3ah], 30.3.5.1.6."
::= { h3cDot3MpcpEntry 6 }
h3cDot3MpcpTransmitElapsed OBJECT-TYPE
SYNTAX Integer32
UNITS "TQ (16nsec)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only value that reports the interval from last
MPCP frame transmission in increments of Time Quanta
(TQ) 16ns. The value returned shall be (interval from
last MPCP frame transmission in ns)/16. If this value
exceeds (2^32-1) the value (2^32-1) shall be returned.
This attribute is relevant for an OLT and an ONU."
REFERENCE "[802.3ah], 30.3.5.1.19."
::= { h3cDot3MpcpEntry 7 }
h3cDot3MpcpReceiveElapsed OBJECT-TYPE
SYNTAX Integer32
UNITS "TQ (16nsec)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only value that reports the interval from last
MPCP frame reception in increments of Time Quanta (TQ)
16ns. The value returned shall be (interval from last
MPCP last MPCP frame reception in ns)/16. If this value
exceeds (2^32-1) the value (2^32-1) shall be returned.
This attribute is relevant for an OLT and an ONU."
REFERENCE "[802.3ah], 30.3.5.1.20."
::= { h3cDot3MpcpEntry 8 }
h3cDot3MpcpRoundTripTime OBJECT-TYPE
SYNTAX Integer32
UNITS "TQ (16nsec)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only value that reports the MPCP round trip time
in increments of Time Quanta (TQ) 16ns. The value
returned shall be (round trip time in ns)/16. If this
value exceeds (2^16-1) the value (2^16-1) shall be
returned. This attribute is relevant for an OLT and an
ONU. For the OLT there is a value per LLID"
REFERENCE "[802.3ah], 30.3.5.1.21."
::= { h3cDot3MpcpEntry 9 }
h3cDot3MpcpMaximumPendingGrants OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only value that indicates the maximum number of
grants an ONU can store. The maximum number of grants an
ONU can store has a range of 0 to 255.
This attribute is relevant for an OLT and an ONU. For
the OLT there is a value per LLID"
REFERENCE "[802.3ah], 30.3.5.1.24."
::= { h3cDot3MpcpEntry 10 }
h3cDot3MpcpAdminState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable can be used to define the operational
state of the Multi-Point MAC Control sublayer as defined
in [802.3ah] clause 64. Selecting admin for an interface
with Multi-Point MAC Control sublayer. When selecting
the value as True the interface Multi-Point control
protocol is enabled. When selecting the value as False
the interface acts as if the Multi-point Control
protocol does not exist. Reading reflects the state of
the attribute and the operation of the Multi-point
control protocol mode of the interface.
Writing can be done all the time.
This attribute is relevant for an OLT and an ONU."
REFERENCE "[802.3ah], 30.3.5.2.1."
DEFVAL { false }
::= { h3cDot3MpcpEntry 11 }
h3cDot3MpcpOnTime OBJECT-TYPE
SYNTAX Integer32
UNITS "TQ (16nsec)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only value that reports the -on time- for a grant
burst in increments of Time Quanta (TQ) 16ns as defined
in [802.3ah] 60,64. The value returned shall be (on time
ns)/16. If this value exceeds (2^32-1) the value
(2^32-1) shall be returned.
This attribute is relevant for an OLT and an ONU."
REFERENCE "[802.3ah], 64.3.5.1."
::= { h3cDot3MpcpEntry 12 }
h3cDot3MpcpOffTime OBJECT-TYPE
SYNTAX Integer32
UNITS "TQ (16nsec)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only value that reports the -off time- for a
grant burst in increments of Time Quanta (TQ) 16ns as
defined in [802.3ah] 60,64. The value returned shall be
(off time ns)/16. If this value exceeds (2^32-1) the
value (2^32-1) shall be returned.
This attribute is relevant for an OLT and an ONU."
REFERENCE "[802.3ah], 64.3.5.1."
::= { h3cDot3MpcpEntry 13 }
h3cDot3MpcpSyncTime OBJECT-TYPE
SYNTAX Integer32
UNITS "TQ (16nsec)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only value that reports the -sync lock time- for
an OLT receiver in increments of Time Quanta (TQ) 16ns
as defined in [802.3ah] 60,64,65. The value returned
shall be (sync lock time ns)/16. If this value exceeds
(2^32-1) the value (2^32-1) shall be returned.
This attribute is relevant for an OLT and an ONU."
REFERENCE "[802.3ah], 64.3.3.2."
::= { h3cDot3MpcpEntry 14 }
h3cDot3MpcpStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cDot3MpcpStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines the list of statistics counters of
[802.3ah] clause 64 MPCP interface."
::= { h3cDot3MpcpObjects 2 }
h3cDot3MpcpStatEntry OBJECT-TYPE
SYNTAX H3cDot3MpcpStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table entries for table of statistics counters of
[802.3ah] clause 64 MPCP interface."
INDEX { ifIndex }
::= { h3cDot3MpcpStatTable 1 }
H3cDot3MpcpStatEntry ::=
SEQUENCE {
h3cDot3MpcpMACCtrlFramesTransmitted Counter32,
h3cDot3MpcpMACCtrlFramesReceived Counter32,
h3cDot3MpcpDiscoveryWindowsSent Counter32,
h3cDot3MpcpDiscoveryTimeout Counter32,
h3cDot3MpcpTxRegRequest Counter32,
h3cDot3MpcpRxRegRequest Counter32,
h3cDot3MpcpTxRegAck Counter32,
h3cDot3MpcpRxRegAck Counter32,
h3cDot3MpcpTxReport Counter32,
h3cDot3MpcpRxReport Counter32,
h3cDot3MpcpTxGate Counter32,
h3cDot3MpcpRxGate Counter32,
h3cDot3MpcpTxRegister Counter32,
h3cDot3MpcpRxRegister Counter32,
h3cDot3MpcpRxNotSupportedMPCP Counter32
}
h3cDot3MpcpMACCtrlFramesTransmitted OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of MPCP frames passed to the MAC sublayer for
transmission. This counter is incremented when a
MA_CONTROL.request service primitive is generated within
the MAC control sublayer with an opcode indicating a
MPCP frame.
This attribute is relevant for an OLT and an ONU."
REFERENCE "[802.3ah], 30.3.5.1.7."
::= { h3cDot3MpcpStatEntry 1 }
h3cDot3MpcpMACCtrlFramesReceived OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of MPCP frames passed by the MAC sublayer to the
MAC Control sublayer. This counter is incremented when a
ReceiveFrame function call returns a valid frame with:
(1) a lengthOrType field value equal to the reserved
Type for 802.3_MAC_Control as specified in 31.4.1.3, and
(2) an opcode indicating a MPCP frame.
This attribute is relevant for an OLT and an ONU."
REFERENCE "[802.3ah], 30.3.5.1.8."
::= { h3cDot3MpcpStatEntry 2 }
h3cDot3MpcpDiscoveryWindowsSent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of discovery windows generated. The counter is
incremented by one for each generated discovery window.
This attribute is relevant for an OLT and an ONU. At the
ONU value should be zero."
REFERENCE "[802.3ah], 30.3.5.1.22."
::= { h3cDot3MpcpStatEntry 3 }
h3cDot3MpcpDiscoveryTimeout OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a discovery timeout
occurs. Increment the counter by one for each discovery
processing state-machine reset resulting from timeout
waiting for message arrival.
This attribute is relevant for an OLT and an ONU."
REFERENCE "[802.3ah], 30.3.5.1.23."
::= { h3cDot3MpcpStatEntry 4 }
h3cDot3MpcpTxRegRequest OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a REGISTER_REQ MPCP
frames transmission occurs. Increment the counter by one
for each REGISTER_REQ MPCP frame transmitted as defined
in [802.3ah] clause 64. This counter is mandatory for an
ONU. This attribute is relevant for an OLT and an ONU.
At the OLT value should be zero."
REFERENCE "[802.3ah], 30.3.5.1.12."
::= { h3cDot3MpcpStatEntry 5 }
h3cDot3MpcpRxRegRequest OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a REGISTER_REQ MPCP
frames reception occurs. A single counter at the ONU and
a set of counters, one for each LLID, at the OLT.
Increment the counter by one for each REGISTER_REQ MPCP
frame received for each LLID as defined in [802.3ah]
clause 64. This counter is mandatory for an ONU and for
an OLT. At the ONU value should be zero."
REFERENCE "[802.3ah], 30.3.5.1.17."
::= { h3cDot3MpcpStatEntry 6 }
h3cDot3MpcpTxRegAck OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a REGISTER_ACK MPCP
frames transmission occurs. Increment the counter by one
for each REGISTER_ACK MPCP frame transmitted as defined
in [802.3ah] clause 64. This counter is mandatory for an
ONU. This attribute is relevant for an OLT and an ONU.
At the OLT the value should be zero."
REFERENCE "[802.3ah], 30.3.5.1.10."
::= { h3cDot3MpcpStatEntry 7 }
h3cDot3MpcpRxRegAck OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a REGISTER_ACK MPCP
frames reception occurs. A single counter at the ONU and
a set of counters, one for each LLID, at the OLT.
Increment the counter by one for each REGISTER_ACK MPCP
frame received for each LLID, as defined in [802.3ah]
clause 64. This counter is mandatory for an ONU and for
an OLT. At the ONU the value should be zero."
REFERENCE "[802.3ah], 30.3.5.1.15."
::= { h3cDot3MpcpStatEntry 8 }
h3cDot3MpcpTxReport OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a REPORT MPCP frames
transmission occurs. Increment the counter by one for
each REPORT MPCP frame transmitted as defined in
[802.3ah] clause 64. This counter is mandatory for an
ONU. This attribute is relevant for an OLT and an ONU.
At the OLT value should be zero."
REFERENCE "[802.3ah], 30.3.5.1.13."
::= { h3cDot3MpcpStatEntry 9 }
h3cDot3MpcpRxReport OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a REPORT MPCP frames
reception occurs. A single counter at the ONU and a set
of counters, one for each LLID, at the OLT. Increment
the counter by one for each REPORT MPCP frame received
for each LLID, as defined in [802.3ah] clause 64.
This counter is mandatory for an ONU and for an OLT.
At the ONU value should be zero."
REFERENCE "[802.3ah], 30.3.5.1.18."
::= { h3cDot3MpcpStatEntry 10 }
h3cDot3MpcpTxGate OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a GATE MPCP frames
transmission occurs. A set of counters, one for each
LLID, at the OLT. Increment the counter by one for each
GATE MPCP frame transmitted, for each LLID, as defined
in [802.3ah] clause 64. This counter is mandatory for an
OLT. This attribute is relevant for an OLT and an ONU.
At the ONU the value should be zero."
REFERENCE "[802.3ah], 30.3.5.1.9."
::= { h3cDot3MpcpStatEntry 11 }
h3cDot3MpcpRxGate OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a GATE MPCP frames
reception occurs. A single counter at the ONU and a set
of counters, one for each LLID ,at the OLT. Increment
the counter by one for each GATE MPCP frame received,
for each LLID, as defined in [802.3ah] clause 64. This
counter is mandatory for an ONU and for an OLT. At the
OLT the value should be zero."
REFERENCE "[802.3ah], 30.3.5.1.14."
::= { h3cDot3MpcpStatEntry 12 }
h3cDot3MpcpTxRegister OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a REGISTER MPCP frames
transmission occurs. A set of counters, one for each
LLID, at the OLT. Increment the counter by one for each
REGISTER MPCP frame transmitted, for each LLID, as
defined in [802.3ah] clause 64. This counter is
mandatory for an OLT. This attribute is relevant for an
OLT and an ONU. At the ONU the value should be zero."
REFERENCE "[802.3ah], 30.3.5.1.11."
::= { h3cDot3MpcpStatEntry 13 }
h3cDot3MpcpRxRegister OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a REGISTER MPCP frames
reception occurs. A single counter at the ONU and a set
of counters, one for each LLID, at the OLT. Increment
the counter by one for each REGISTER MPCP frame
received, for each LLID, as defined in [802.3ah] clause
64. This counter is mandatory for an ONU and for an OLT.
at the OLT the value should be zero."
REFERENCE "[802.3ah], 30.3.5.1.16."
::= { h3cDot3MpcpStatEntry 14 }
h3cDot3MpcpRxNotSupportedMPCP OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a non-supported MPCP
frames reception occurs. A single counter at the ONU and
a set of counters, one for each LLID, at the OLT.
Increment the counter by one for each non-supported MPCP
frame received, for each LLID, as defined in [802.3ah]
clause 64. This counter is mandatory for an ONU and for
an OLT."
::= { h3cDot3MpcpStatEntry 15 }
-- Conformance Statements
-- Conformance Groups
h3cDot3MpcpGroups OBJECT IDENTIFIER ::= { h3cDot3MpcpConformance 1 }
h3cDot3MpcpGroupBase OBJECT-GROUP
OBJECTS {
h3cDot3MpcpID,
h3cDot3MpcpOperStatus,
h3cDot3MpcpMode,
h3cDot3MpcpLinkID,
h3cDot3MpcpRemoteMACAddress,
h3cDot3MpcpRegistrationState,
h3cDot3MpcpMaximumPendingGrants,
h3cDot3MpcpAdminState
}
STATUS current
DESCRIPTION
"A collection of objects of dot3 Mpcp Basic entity state
definition."
::= { h3cDot3MpcpGroups 1 }
h3cDot3MpcpGroupParam OBJECT-GROUP
OBJECTS {
h3cDot3MpcpTransmitElapsed,
h3cDot3MpcpReceiveElapsed,
h3cDot3MpcpRoundTripTime,
h3cDot3MpcpOnTime,
h3cDot3MpcpOffTime,
h3cDot3MpcpSyncTime
}
STATUS current
DESCRIPTION
"A collection of objects of dot3 Mpcp for P2MP
parameters."
::= { h3cDot3MpcpGroups 2 }
h3cDot3MpcpGroupStat OBJECT-GROUP
OBJECTS {
h3cDot3MpcpMACCtrlFramesTransmitted,
h3cDot3MpcpMACCtrlFramesReceived,
h3cDot3MpcpDiscoveryWindowsSent,
h3cDot3MpcpDiscoveryTimeout ,
h3cDot3MpcpTxRegRequest,
h3cDot3MpcpRxRegRequest,
h3cDot3MpcpTxRegAck,
h3cDot3MpcpRxRegAck,
h3cDot3MpcpTxReport,
h3cDot3MpcpRxReport,
h3cDot3MpcpTxGate,
h3cDot3MpcpRxGate,
h3cDot3MpcpTxRegister,
h3cDot3MpcpRxRegister,
h3cDot3MpcpRxNotSupportedMPCP
}
STATUS current
DESCRIPTION
"A collection of objects of dot3 Mpcp Statistics"
::= { h3cDot3MpcpGroups 3 }
-- Compliance
h3cDot3MpcpCompliances OBJECT IDENTIFIER ::= { h3cDot3MpcpConformance 2 }
h3cDot3MpcpCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The compliance statement for Multi-point
control protocol interfaces."
MODULE -- this module
MANDATORY-GROUPS { h3cDot3MpcpGroupBase }
GROUP h3cDot3MpcpGroupParam
DESCRIPTION "This group is mandatory for all MPCP supporting
interfaces for configuration of the Multipoint
Parameters."
GROUP h3cDot3MpcpGroupStat
DESCRIPTION "This group is mandatory for all MPCP supporting
interfaces for Statistics collection."
::= { h3cDot3MpcpCompliances 1 }
-- Editor-s note: OMPEmulation managed object definitions
h3cDot3OmpEmulationMIB OBJECT IDENTIFIER ::= { h3cDot3EfmeponMIB 2 }
h3cDot3OmpEmulationObjects OBJECT IDENTIFIER ::= { h3cDot3OmpEmulationMIB 1 }
h3cDot3OmpeConformance OBJECT IDENTIFIER ::= { h3cDot3OmpEmulationMIB 2 }
h3cDot3OmpEmulationTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cDot3OmpEmulationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table for dot3 OmpEmulation MIB modules."
::= { h3cDot3OmpEmulationObjects 1 }
h3cDot3OmpEmulationEntry OBJECT-TYPE
SYNTAX H3cDot3OmpEmulationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dot3 OmpEmulation MIB modules table."
INDEX { ifIndex }
::= { h3cDot3OmpEmulationTable 1 }
H3cDot3OmpEmulationEntry ::=
SEQUENCE {
h3cDot3OmpEmulationID Integer32,
h3cDot3OmpEmulationType INTEGER
}
h3cDot3OmpEmulationID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of h3cDot3OmpEmulationID is assigned so as to
uniquely identify a OMPEmulation entity among the
subordinate managed objects of the containing object.
The value is mandated for an ONU."
REFERENCE "[802.3ah], 30.3.7.1.1."
::= { h3cDot3OmpEmulationEntry 1}
h3cDot3OmpEmulationType OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
olt(2),
onu(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only value that indicates that mode of operation
of the Reconciliation Sublayer for Point to Point
Emulation (see [802.3ah] clause 65.1). unknown(1) value
is assigned in initializing, true state or type not yet
known. olt(2) value is assigned when Sublayer operating
in OLT mode. onu(3) value is assigned when Sublayer
operating in ONU mode."
REFERENCE "[802.3ah], 30.3.7.1.2."
::= { h3cDot3OmpEmulationEntry 2 }
h3cDot3OmpEmulationStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cDot3OmpEmulationStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines the list of statistics counters of
[802.3ah] clause 65 OMP interface."
::= { h3cDot3OmpEmulationObjects 2 }
h3cDot3OmpEmulationStatEntry OBJECT-TYPE
SYNTAX H3cDot3OmpEmulationStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table entries for Table of statistics counters of
[802.3ah] clause 65 OMP interface."
INDEX { ifIndex }
::= { h3cDot3OmpEmulationStatTable 1 }
H3cDot3OmpEmulationStatEntry ::=
SEQUENCE {
h3cDot3OmpEmulationSLDErrors Counter32,
h3cDot3OmpEmulationCRC8Errors Counter32,
h3cDot3OmpEmulationBadLLID Counter32,
h3cDot3OmpEmulationGoodLLID Counter32,
h3cDot3OmpEmulationOnuPonCastLLID Counter32,
h3cDot3OmpEmulationOltPonCastLLID Counter32,
h3cDot3OmpEmulationBroadcastLLIDNotOnuID Counter32,
h3cDot3OmpEmulationOnuLLIDNotBroadcast Counter32,
h3cDot3OmpEmulationBroadcastLLIDPlusOnuId Counter32,
h3cDot3OmpEmulationNotBroadcastLLIDNotOnuId Counter32
}
h3cDot3OmpEmulationSLDErrors OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of frames received that do not contain a valid
SLD field as defined in [802.3ah] clause 65.1.3.3.1.
This attribute is mandatory for an OLT and optional for
an ONU."
REFERENCE "[802.3ah], 30.3.7.1.3."
::= { h3cDot3OmpEmulationStatEntry 1 }
h3cDot3OmpEmulationCRC8Errors OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of frames received that contain a valid SLD
field, as defined in [802.3ah] clause 65.1.3.3.1, but do
not pass the CRC-8 check as defined in [802.3ah] clause
65.1.3.3.3. This attribute is mandatory for an OLT and
for an ONU."
REFERENCE "[802.3ah], 30.3.7.1.4."
::= { h3cDot3OmpEmulationStatEntry 2 }
h3cDot3OmpEmulationBadLLID OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of frames received that contain a valid SLD
field, as defined in [802.3ah] clause 65.1.3.3.1, and
pass the CRC-8 check, as defined in [802.3ah] clause
65.1.3.3.3, but are discarded due to the LLID check as
defined in [802.3ah] clause 65.1.3.3.2.
This attribute is relevant for an OLT and an ONU."
REFERENCE "[802.3ah], 30.3.7.1.8."
::= { h3cDot3OmpEmulationStatEntry 3 }
h3cDot3OmpEmulationGoodLLID OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of frames received that contain a valid SLD
field, as defined in [802.3ah] clause 65.1.3.3.1, and
pass the CRC-8 check, as defined in [802.3ah] clause
65.1.3.3.3.
This attribute is relevant for an OLT and an ONU."
REFERENCE "[802.3ah], 30.3.7.1.5."
::= { h3cDot3OmpEmulationStatEntry 4 }
h3cDot3OmpEmulationOnuPonCastLLID OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of frames received that contain a valid SLD
field in an ONU, as defined in [802.3ah] 65.1.3.3.1,
passes the CRC-8 check, as defined in [802.3ah]
65.1.3.3.3, and the frame meets the rule for acceptance
defined in [802.3ah] 65.1.3.3.2."
REFERENCE "[802.3ah], 30.3.7.1.6."
::= { h3cDot3OmpEmulationStatEntry 5 }
h3cDot3OmpEmulationOltPonCastLLID OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of frames received that contain a valid SLD
field in an OLT, as defined in [802.3ah] 65.1.3.3.1,
passes the CRC-8 check, as defined in [802.3ah]
65.1.3.3.3, and the frame meets the rule for acceptance
defined in [802.3ah] 65.1.3.3.2."
REFERENCE "[802.3ah], 30.3.7.1.7."
::= { h3cDot3OmpEmulationStatEntry 6 }
h3cDot3OmpEmulationBroadcastLLIDNotOnuID OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of frames received that contain a valid SLD
field in a OLT, as defined in [802.3ah] clause
65.1.3.3.1, and pass the CRC-8 check, as defined in
[802.3ah] clause 65.1.3.3.3, and contain broadcast LLID
as defined in [802.3ah] clause 65.
This attribute is mandatory for an OLT and for an ONU."
::= { h3cDot3OmpEmulationStatEntry 7 }
h3cDot3OmpEmulationOnuLLIDNotBroadcast OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of frames received that contain a valid SLD
field in a OLT, as defined in [802.3ah] clause
65.1.3.3.1, and pass the CRC-8 check, as defined in
[802.3ah] clause 65.1.3.3.3, and contain the ONU's LLID
as defined in [802.3ah] clause 65. This attribute is
mandatory for an ONU and mandatory for an OLT (a
counter per LLID)."
::= { h3cDot3OmpEmulationStatEntry 8 }
h3cDot3OmpEmulationBroadcastLLIDPlusOnuId OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of frames received that contain a valid SLD
field in a OLT, as defined in [802.3ah] clause
65.1.3.3.1, and pass the CRC-8 check, as defined in
[802.3ah] clause 65.1.3.3.3, and contain the broadcast
LLID plus ONU's LLID (frame reflected) as defined in
[802.3ah] clause 65. This attribute is mandatory for an
ONU and mandatory for an OLT (a counter per LLID)."
::= { h3cDot3OmpEmulationStatEntry 9 }
h3cDot3OmpEmulationNotBroadcastLLIDNotOnuId OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of frames received that contain a valid SLD
field in a OLT, as defined in [802.3ah] clause
65.1.3.3.1, and pass the CRC-8 check, as defined in
[802.3ah] clause 65.1.3.3.3, and does not contain the
ONU's LLID as defined in [802.3ah] clause 65. This
attribute is mandatory for an ONU"
::= { h3cDot3OmpEmulationStatEntry 10 }
-- Conformance Statements
-- Conformance Groups
h3cDot3OmpeGroups OBJECT IDENTIFIER ::= { h3cDot3OmpeConformance 1 }
h3cDot3OmpeGroupID OBJECT-GROUP
OBJECTS {
h3cDot3OmpEmulationID,
h3cDot3OmpEmulationType
}
STATUS current
DESCRIPTION
"A collection of objects of dot3 OMP emulation ID entity
state definition."
::= { h3cDot3OmpeGroups 1 }
h3cDot3OmpeGroupStat OBJECT-GROUP
OBJECTS {
h3cDot3OmpEmulationSLDErrors,
h3cDot3OmpEmulationCRC8Errors,
h3cDot3OmpEmulationBadLLID,
h3cDot3OmpEmulationGoodLLID,
h3cDot3OmpEmulationOnuPonCastLLID,
h3cDot3OmpEmulationOltPonCastLLID,
h3cDot3OmpEmulationBroadcastLLIDNotOnuID,
h3cDot3OmpEmulationOnuLLIDNotBroadcast,
h3cDot3OmpEmulationBroadcastLLIDPlusOnuId,
h3cDot3OmpEmulationNotBroadcastLLIDNotOnuId
}
STATUS current
DESCRIPTION