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
|
NBS-EFM-MIB DEFINITIONS ::= BEGIN
IMPORTS
Counter32, Counter64,
OBJECT-TYPE, MODULE-IDENTITY, OBJECT-IDENTITY
FROM SNMPv2-SMI
OBJECT-GROUP
FROM SNMPv2-CONF
InterfaceIndex
FROM IF-MIB
nbs, Unsigned16TC
FROM NBS-MIB
;
nbsEfmMib MODULE-IDENTITY
LAST-UPDATED "201610190000Z" -- October 19, 2016
ORGANIZATION "NBS"
CONTACT-INFO
"For technical support, please contact your service channel"
DESCRIPTION
"Private MRV MIB for representing 802.3ah (Ethernet in the
First Mile) information"
::= { nbs 300 }
-- *******************************************************************
-- NBS-EFM-MIB Objects Identifier Definition
-- *******************************************************************
nbsEfmProduct OBJECT IDENTIFIER ::= { nbsEfmMib 2 }
nbsEfmNc316Nm OBJECT IDENTIFIER ::= { nbsEfmProduct 1 }
nbsEfmObjects OBJECT-IDENTITY
STATUS current
DESCRIPTION
"all MIB objects in nbsEfm MIB."
::= { nbsEfmMib 1 }
-- *******************************************************************
-- Groups in NBS-EFM-MIB - all under nbsEfmObjects
-- *******************************************************************
-- nbsEfmDteMacGrp OBJECT-IDENTITY
-- STATUS current
-- DESCRIPTION
-- "All DTE MAC Objects."
-- ::= { nbsEfmObjects 1 }
-- nbsEfmMauGrp OBJECT-IDENTITY
-- STATUS current
-- DESCRIPTION
-- "All MAU objects."
-- ::= { nbsEfmObjects 2 }
nbsEfmOamGrp OBJECT-IDENTITY
STATUS current
DESCRIPTION
"All OAM objects."
::= { nbsEfmObjects 3 }
-- nbsEfmOmpGrp OBJECT-IDENTITY
-- STATUS current
-- DESCRIPTION
-- "All OMP objects."
-- ::= { nbsEfmObjects 4 }
-- nbsOsTraps OBJECT-IDENTITY
-- STATUS current
-- DESCRIPTION
-- "All Defined Specific Traps."
-- ::= { nbsOsMIBObjects 5 }
-- *******************************************************************
-- Objects in the OAM Group.
-- *******************************************************************
nbsEfmOamTable OBJECT-TYPE
SYNTAX SEQUENCE OF NbsEfmOamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Operations, Administration, and Management information"
::= { nbsEfmOamGrp 1 }
nbsEfmOamEntry OBJECT-TYPE
SYNTAX NbsEfmOamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Contains a desription of a particular Oam. There are two
entries for each OAM link, one entry for the local side,
one for the remote."
INDEX { nbsEfmPhysicalIfIndex }
::= { nbsEfmOamTable 1 }
NbsEfmOamEntry ::= SEQUENCE {
nbsEfmPhysicalIfIndex InterfaceIndex,
nbsEfmOamIfIndex InterfaceIndex,
nbsEfmOamPeerIfIndex InterfaceIndex,
nbsEfmOamMode INTEGER,
nbsEfmOamCfg OCTET STRING,
nbsEfmOamPduCfg Unsigned16TC,
nbsEfmOamFlagsField OCTET STRING,
nbsEfmOamState OCTET STRING,
nbsEfmOamVendorOUI OCTET STRING,
nbsEfmOamVendorDeviceId Unsigned16TC,
nbsEfmOamVendorDeviceVersion Unsigned16TC,
nbsEfmOamPDUTx Counter32,
nbsEfmOamPDURx Counter32,
nbsEfmOamUnsupportedCodesRx Counter32,
nbsEfmOamInformationTx Counter32,
nbsEfmOamInformationRx Counter32,
nbsEfmOamEventNotificationTx Counter32,
nbsEfmOamUniEventNotificationRx Counter32,
nbsEfmOamDupEventNotificationRx Counter32,
nbsEfmOamLoopbackControlTx Counter32,
nbsEfmOamLoopbackControlRx Counter32,
nbsEfmOamVariableRequestTx Counter32,
nbsEfmOamVariableRequestRx Counter32,
nbsEfmOamVariableResponseTx Counter32,
nbsEfmOamVariableResponseRx Counter32,
nbsEfmOamOrganizationSpecificTx Counter32,
nbsEfmOamOrganizationSpecificRx Counter32,
nbsEfmOamErrSymPerCfgDuration Counter64,
nbsEfmOamErrSymPerCfgThreshld Counter32,
nbsEfmOamErrSymPerEvtTime Unsigned16TC,
nbsEfmOamErrSymPerEvtWindow Counter64,
nbsEfmOamErrSymPerEvtThreshld Counter64,
nbsEfmOamErrSymPerEvtCount Counter64,
nbsEfmOamErrFrmCfgDuration Counter32,
nbsEfmOamErrFrmCfgThreshld Counter32,
nbsEfmOamErrFrmEvtTime Unsigned16TC,
nbsEfmOamErrFrmEvtWindow Unsigned16TC,
nbsEfmOamErrFrmEvtThreshld Counter32,
nbsEfmOamErrFrmEvtCount Counter64,
nbsEfmOamErrFrmPerCfgDuration Counter32,
nbsEfmOamErrFrmPerCfgThreshld Counter32,
nbsEfmOamErrFrmPerEvtTime Unsigned16TC,
nbsEfmOamErrFrmPerEvtWindow Counter32,
nbsEfmOamErrFrmPerEvtThreshld Counter32,
nbsEfmOamErrFrmPerEvtCount Counter64,
nbsEfmOamErrFrmSecSumCfgDuration Unsigned16TC,
nbsEfmOamErrFrmSecSumCfgThreshld Unsigned16TC,
nbsEfmOamErrFrmSecSumEvtTime Unsigned16TC,
nbsEfmOamErrFrmSecSumEvtWindow Unsigned16TC,
nbsEfmOamErrFrmSecSumEvtThreshld Unsigned16TC,
nbsEfmOamErrFrmSecSumEvtCount Counter32,
nbsEfmOamFramesLostDueToOamError Counter32,
nbsEfmOamAdminState INTEGER,
nbsEfmOamOperState OCTET STRING
}
nbsEfmPhysicalIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ifIndex from the MIB-II Interface Table for the physical
port on which this OAM traffic flows."
::= { nbsEfmOamEntry 1 }
nbsEfmOamIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ifIndex from the MIB-II Interface Table for this OAM
interface."
::= {nbsEfmOamEntry 2 }
nbsEfmOamPeerIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ifIndex from the MIB-II Interface Table for the physical
port on the other side of the OAM link. For
example, if this table entry corresponds to a local
OAM device, this object would hold the ifIndex of the
remote port."
::= { nbsEfmOamEntry 3 }
nbsEfmOamMode OBJECT-TYPE
SYNTAX INTEGER {
notSupported (1),
passive (2),
active (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A GET operation returns the current mode of the OAM
sublayer entity (see 57.2.6), either passive or
active. A SET operation changes the mode of operation
of the OAM entity to the indicated value. A SET
operation shall have no effect on a device whose mode
cannot be changed through management or that can only
operate in a single mode."
REFERENCE "IEEE 802.3ah, Clause 57"
::= {nbsEfmOamEntry 4 }
-- nbsEfmOamRemoteMACAddress OBJECT-TYPE
-- SYNTAX MacAddress
-- ACCESS read-only
-- STATUS mandatory
-- DESCRIPTION
-- "The value of the source-address parameter of the last
-- OAMPDU passed by the OAM subordinate sublayer to the OAM
-- sublayer. This value is updated on reception of a valid
-- frame with (1) a destinationField equal to the reserved
-- multicast address for Slow-Protocols specified in CROSS
-- REF Table 43B-1, (2) lengthOrType field value equal to
-- the reserved Type for Slow-Protocols as specified in
-- CROSS REF Table 43B-2, (3) a Slow-Protocols subtype
-- value equal to the subtype reserved for OAM as specified
-- in Table 43B-3."
-- ::= {nbsEfmOamEntry 4 }
nbsEfmOamCfg OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A string of three bits corresponding to the OAM
Configuration field (see Table 57-7) in the most recently
received Information OAMPDU. The first bit corresponds to
the OAM Mode bit in the OAM Configuration field. The
second bit corresponds to the Unidirectional Support bit
in the OAM Configuration field. The third bit corresponds
to the Loopback Support bit in the OAM Configuration
field.
This value is updated on reception of a valid frame, with
(1) destinationField equal to the reserved multicast
address for Slow_Protocols specified in CROSS REF Table
43B-1, (2) lengthOrType field value equal to the reserved
Type for Slow_Protocols as specified in CROSS REF Table
43B-2, (3) a Slow_Protocols subtype value equal to the
subtype reserved for OAM as specified in Table 43B-3, (4)
the OAM code equals the OAM Information code."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 5 }
nbsEfmOamPduCfg OBJECT-TYPE
SYNTAX Unsigned16TC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An eleven bit value corresponding to the Maximum PDU Size
value within the OAMPDU Configuration field (see Table
57-8) in the most recently sent Information OAMPDU.
This value is updated on reception of a valid frame, with
(1) destinationField equal to the reserved multicast
address for Slow_Protocols specified in CROSS REF Table
43B-1, (2) lengthOrType field value equal to the reserved
Type for Slow_Protocols as specified in CROSS REF Table
43B-2, (3) a Slow_Protocols subtype value equal to the
subtype reserved for OAM as specified in Table 43B-3, (4)
the OAM code equals the OAM Information code."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 6 }
nbsEfmOamFlagsField OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A string of five bits corresponding to the Flags field
(see Table 57-3) in the most recently transmitted OAMPDU.
The first bit corresponds to the Link Fault bit in the
Flags field. The second bit corresponds to the Dying Gasp
bit in the Flags field. The third bit corresponds to the
Critical Event bit in the Flags field. The fourth bit
corresponds to the Remote Stable bit in the Flags field.
The fifth bit corresponds to the Local Stable bit in the
Flags field."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 7 }
nbsEfmOamState OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A string of three bits corresponding to the State field
(see Table 57-6) of the most recently sent Information
OAMPDU. The first and second bits corresponds to the
Parser Action bits in the State field. The third bit
corresponds to the Multiplexer Action bit in the State
field.
This value is updated on reception of a valid frame, with
(1) destinationField equal to the reserved multicast
address for Slow_Protocols specified in CROSS REF Table
43B-1, (2) lengthOrType field value equal to the reserved
Type for Slow_Protocols as specified in CROSS REF Table
43B-2, (3) a Slow_Protocols subtype value equal to the
subtype reserved for OAM as specified in Table 43B-3, (4)
a OAMPDU code equal to the Information code as specified
in Table 57-4."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 8 }
nbsEfmOamVendorOUI OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(3))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the OUI variable in the Vendor Identifier
field (see Table 57-9) of the most recently sent
Information OAMPDU.
This value is updated on reception of a valid frame, with
(1) destinationField equal to the reserved multicast
address for Slow_Protocols specified in CROSS REF Table
43B-1, (2) lengthOrType field value equal to the reserved
Type for Slow_Protocols as specified in CROSS REF Table
43B-2, (3) a Slow_Protocols subtype value equal to the
subtype reserved for OAM as specified in Table 43B-3, (4)
a OAMPDU code equal to the Information code as specified
in Table 57-4."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 9 }
nbsEfmOamVendorDeviceId OBJECT-TYPE
SYNTAX Unsigned16TC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the Device Identifier variable in the Vendor
Identifier field (see Table 57-9) of the most recently
sent Information OAMPDU.
This value is updated on reception of a valid frame, with
(1) destinationField equal to the reserved multicast
address for Slow_Protocols specified in CROSS REF Table
43B-1, (2) lengthOrType field value equal to the reserved
Type for Slow_Protocols as specified in CROSS REF Table
43B-2, (3) a Slow_Protocols subtype value equal to the
subtype reserved for OAM as specified in Table 43B-3, (4)
a OAMPDU code equal to the Information code as specified
in Table 57-4."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 10 }
nbsEfmOamVendorDeviceVersion OBJECT-TYPE
SYNTAX Unsigned16TC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the Version Identifier variable in the
Vendor Identifier field (see Table 57-9) of the most
recently sent Information OAMPDU.
This value is updated on reception of a valid frame, with
(1) destinationField equal to the reserved multicast
address for Slow_Protocols specified in CROSS REF Table
43B-1, (2) lengthOrType field value equal to the reserved
Type for Slow_Protocols as specified in CROSS REF Table
43B-2, (3) a Slow_Protocols subtype value equal to the
subtype reserved for OAM as specified in Table 43B-3, (4)
a OAMPDU code equal to the Information code as specified
in Table 57-4."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 11 }
nbsEfmOamPDUTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of OAMPDUs passed to the OAM subordinate sublayer
for transmission. This counter is incremented when a
OAM:MA_DATA.request service service primitive is generated
within the OAM sublayer."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 12 }
nbsEfmOamPDURx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of OAMPDUs passed by the OAM subordinate sublayer
to the OAM sublayer. This counter is incremented on
reception of a valid frame with (1) a destinationField
equal to the reserved multicast address for Slow_Protocols
specified in CROSS REF Table 43B-1, (2) lengthOrType field
value equal to the reserved Type for Slow_Protocols as
specified in CROSS REF Table 43B-2, (3) a Slow_Protocols
subtype value equal to the subtype reserved for OAM as
specified in Table 43B-3."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 13 }
nbsEfmOamUnsupportedCodesRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of OAMPDUs received that contain an OAM code from
Table 57-4 that are not supported by the device. This
counter is incremented on reception of a valid frame with
(1) destinationField equal to the reserved multicast
address for Slow_Protocols specified in CROSS REF Table
43B-1, (2) lengthOrType field value equal to the reserved
Type for Slow_Protocols as specified in CROSS REF Table
43B-2, (3) a Slow_Protocols subtype value equal to the
subtype reserved for OAM as specified in Table 43B-3, (4)
an OAM code for a function that is not supported by the
device."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 14 }
nbsEfmOamInformationTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of OAMPDUs passed to the OAM subordinate sublayer
for transmission that contain the OAM Information code
specified in Table CROSS REF 57-4. This counter is
incremented when a OAM:MA_DATA.request service primitive
is generated within the OAM sublayer with an OAM code
indicating an OAM Information operation."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 15 }
nbsEfmOamInformationRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of OAMPDUs received that contain the OAM
Information code specified in Table 57-4. This
counter is incremented on reception of a valid frame with
(1) destinationField equal to the reserved multicast
address for Slow_Protocols specified in CROSS REF Table
43B-1, (2) lengthOrType field value equal to the reserved
Type for Slow_Protocols as specified in CROSS REF Table
43B-2, (3) a Slow_Protocols subtype value equal to the
subtype reserved for OAM as specified in Table 43B-3, (4)
an OAM code for a function that is not supported by the
device."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 16 }
nbsEfmOamEventNotificationTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of OAMPDUs passed to the OAM subordinate sublayer
for transmission that contain the Event Notification code
specified in Table 57-4. This counter is incremented when
a OAM:MA_DATA.request service primitive is generated
within the OAM sublayer with an OAM code indicating an
Event Notification operation."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 17 }
nbsEfmOamUniEventNotificationRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the OAMPDUs received that contain the Event
Notification code specified in Table 57-4. This counter is
incremented on reception of a valid frame, with (1)
destinationField equal to the reserved multicast address
for Slow_Protocols specified in CROSS REF Table 43B-1, (2)
lengthOrType field value equal to the reserved Type for
Slow_Protocols as specified in CROSS REF Table 43B-2, (3)
a Slow_Protocols subtype value equal to the subtype
reserved for OAM as specified in CROSS REF Table 43B-3,
(4) the OAM code equals the Event Notification code, (5)
the Sequence Number field is not equal to the Sequence
Number field of the last received Event Notification
OAMPDU and is supported by the device."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 18 }
nbsEfmOamDupEventNotificationRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the OAMPDUs received that contain the Event
Notification code specified in Table 57-4. This counter is
incremented on reception of a valid frame, with (1)
destinationField equal to the reserved multicast address
for Slow_Protocols specified in CROSS REF Table 43B-1, (2)
lengthOrType field value equal to the reserved Type for
Slow_Protocols as specified in CROSS REF Table 43B-2, (3)
a Slow_Protocols subtype value equal to the subtype
reserved for OAM as specified in CROSS REF Table 43B-3,
(4) the OAM code equals the Event Notification code, (5)
the Sequence Number field is equal to the Sequence
Number field of the last received Event Notification
OAMPDU."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 19 }
nbsEfmOamLoopbackControlTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of OAMPDUs passed to the OAM subordinate
sublayer for transmission that contain the Loopback
Control code specified in Table 57-4. This counter is
incremented when a OAM:MA_DATA.request service primitive
is generated within the OAM sublayer with an OAM code
indicating a Loopback Control operation."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 20 }
nbsEfmOamLoopbackControlRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of OAMPDUs received that contain the Loopback
Control code specified in Table 57-4. This counter is
incremented on reception of a valid frame, with (1)
destinationField equal to the reserved multicast address
for Slow_Protocols specified in CROSS REF Table 43B-1, (2)
lengthOrType field value equal to the reserved Type for
Slow_Protocols as specified in CROSS REF Table 43B-2, (3)
a Slow_Protocols subtype value equal to the subtype
reserved for OAM as specified in Table 43B-3, (4) the OAM
code equals the Loopback Control code and is supported by
the device."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 21 }
nbsEfmOamVariableRequestTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of OAMPDUs passed to the OAM subordinate sublayer
for transmission that contain the Variable Request code
specified in Table 57-4. This counter is incremented when
a OAM:MA_DATA.request service primitive is generated
within the OAM sublayer with an OAM code indicating a
Variable Request operation."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 22 }
nbsEfmOamVariableRequestRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of OAMPDUs received that contain the Variable
Request code specified in Table 57-4. This counter is
incremented on reception of a valid frame, with (1)
destinationField equal to the reserved multicast address
for Slow_Protocols specified in CROSS REF Table 43B-1, (2)
lengthOrType field value equal to the reserved Type for
Slow_Protocols as specified in CROSS REF Table 43B-2, (3)
a Slow_Protocols subtype value equal to the subtype
reserved for OAM as specified in Table 43B-3, (4) the OAM
code equals the Variable Request code and is supported by
the device."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 23 }
nbsEfmOamVariableResponseTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of OAMPDUs passed to the OAM subordinate sublayer
for transmission that contain the Variable Response code
specified in Table 57-4. This counter is incremented when
a OAM:MA_DATA.request service primitive is generated
within the OAM sublayer with an OAM code indicating a
Variable Response operation."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 24 }
nbsEfmOamVariableResponseRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of OAMPDUs received that contain the Variable
Response code specified in Table 57-4. This counter is
incremented on reception of a valid frame, with (1)
destinationField equal to the reserved multicast address
for Slow_Protocols specified in CROSS REF Table 43B-1, (2)
lengthOrType field value equal to the reserved Type for
Slow_Protocols as specified in CROSS REF Table 43B-2, (3)
a Slow_Protocols subtype value equal to the subtype
reserved for OAM as specified in Table 43B-3, (4) the OAM
code equals the Variable Response code and is supported by
the device."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 25 }
nbsEfmOamOrganizationSpecificTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of Organization Specific OAMPDUs passed to the
OAM subordinate sublayer for transmission that contain the
Organization Specific code specified in Table 57-4. This
counter is incremented when a OAM:MA_DATA.request service
primitive is generated within the OAM sublayer with an OAM
code indicating a Organization Specific operation."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 26 }
nbsEfmOamOrganizationSpecificRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of OAMPDUs received that contain the Organization
Specific code specified in Table 57-4. This counter is
incremented on reception of a valid frame, with (1)
destinationField equal to the reserved multicast address
for Slow_Protocols specified in CROSS REF Table 43B-1, (2)
lengthOrType field value equal to the reserved Type for
Slow_Protocols as specified in CROSS REF Table 43B-2, (3)
a Slow_Protocols subtype value equal to the subtype
reserved for OAM as specified in Table 43B-3, (4) the OAM
code equals the Organization Specific code and is
supported by the device."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 27 }
nbsEfmOamErrSymPerCfgDuration OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An eight-octet value indicating the duration of the
Errored Symbol Period Event (see 57.5.3.1) window, in
terms of symbols."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 28 }
nbsEfmOamErrSymPerCfgThreshld OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A four-octet value indicating the number of errored
symbols in the period that must be exceeded in order for
the Errored Symbol Period Event to be generated."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 29 }
nbsEfmOamErrSymPerEvtTime OBJECT-TYPE
SYNTAX Unsigned16TC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer corresponding to the Event Time Stamp field in
the most recently transmitted Errored Symbol Period Event
TLV in an Event Notification OAMPDU (see 57.4.3.2).
This integer is updated when a OAM:MA_DATA.request
service primitive is generated within the OAM sublayer
with an OAMPDU Code field value equal to the Event
Notification code as specified in Table 57-4 and Event TLV
Type field equal to the Errored Symbol Period Event value
as specified in Table 57-10."
REFERENCE "IEEE 802.3ah, Clause 57"
::= {nbsEfmOamEntry 30 }
nbsEfmOamErrSymPerEvtWindow OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer corresponding to the Errored Symbol Window
field in the most recently transmitted Errored Symbol
Period Event TLV in an Event Notification OAMPDU (see
57.4.3.2).
This integer is updated when a OAM:MA_DATA.request
service primitive is generated within the OAM sublayer
with an OAMPDU Code field value equal to the Event
Notification code as specified in Table 57-4 and Event TLV
Type field equal to the Errored Symbol Period Event value
as specified in Table 57-10."
REFERENCE "IEEE 802.3ah, Clause 57"
::= {nbsEfmOamEntry 31 }
nbsEfmOamErrSymPerEvtThreshld OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer corresponding to the Errored Symbol Threshold
field in the most recently transmitted Errored Symbol
Period Event TLV in an Event Notification OAMPDU (see
57.4.3.2).
This integer is updated when a OAM:MA_DATA.request
service primitive is generated within the OAM sublayer
with an OAMPDU Code field value equal to the Event
Notification code as specified in Table 57-4 and Event TLV
Type field equal to the Errored Symbol Period Event value
as specified in Table 57-10."
REFERENCE "IEEE 802.3ah, Clause 57"
::= {nbsEfmOamEntry 32 }
nbsEfmOamErrSymPerEvtCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer corresponding to the Error Running Total field
in the most recently transmitted Errored Symbol Period
Event TLV in an Event Notification OAMPDU (see 57.4.3.2).
This integer is updated when a OAM:MA_DATA.request
service primitive is generated within the OAM sublayer
with an OAMPDU Code field value equal to the Event
Notification code as specified in Table 57-4 and Event TLV
Type field equal to the Errored Symbol Period Event value
as specified in Table 57-10."
REFERENCE "IEEE 802.3ah, Clause 57"
::= {nbsEfmOamEntry 33 }
nbsEfmOamErrFrmCfgDuration OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A four-octet value indicating the duration of the Errored
Frame Event (see 57.5.3.2) window, in terms of number of
100ms intervals."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 34 }
nbsEfmOamErrFrmCfgThreshld OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A four-octet field indicating the number of errored
frames in the period that must be exceeded in order for
the Errored Frame Event to be generated."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 35 }
nbsEfmOamErrFrmEvtTime OBJECT-TYPE
SYNTAX Unsigned16TC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer corresponding to the Event Time Stamp field in
the most recently transmitted Errored Frame Event TLV in
an Event Notification OAMPDU (see 57.4.3.2). This integer
is updated when a OAM:MA_DATA.request service primitive is
generated within the OAM sublayer with an OAMPDU Code
field value equal to the Event Notification code as
specified in Table 57-4 and Event TLV Type field equal to
the Errored Frame Event value as specified in Table 57-10."
REFERENCE "IEEE 802.3ah, Clause 57"
::= {nbsEfmOamEntry 36 }
nbsEfmOamErrFrmEvtWindow OBJECT-TYPE
SYNTAX Unsigned16TC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer corresponding to the Errored Frame Window
field in the most recently transmitted Errored Frame
Event TLV in an Event Notification OAMPDU (see
57.4.3.2).
This integer is updated when a OAM:MA_DATA.request
service primitive is generated within the OAM sublayer
with an OAMPDU Code field value equal to the Event
Notification code as specified in Table 57-4 and Event TLV
Type field equal to the Errored Frame Event value as
specified in Table 57-10."
REFERENCE "IEEE 802.3ah, Clause 57"
::= {nbsEfmOamEntry 37 }
nbsEfmOamErrFrmEvtThreshld OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer corresponding to the Errored Frame Threshold
field in the most recently transmitted Errored Frame Event
TLV in an Event Notification OAMPDU (see 57.4.3.2).
This integer is updated when a OAM:MA_DATA.request
service primitive is generated within the OAM sublayer
with an OAMPDU Code field value equal to the Event
Notification code as specified in Table 57-4 and Event TLV
Type field equal to the Errored Frame Event value as
specified in Table 57-10."
REFERENCE "IEEE 802.3ah, Clause 57"
::= {nbsEfmOamEntry 38 }
nbsEfmOamErrFrmEvtCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer corresponding to the Error Running Total field
in the most recently transmitted Errored Frame Event TLV
in an Event Notification OAMPDU (see 57.4.3.2).
This integer is updated when a OAM:MA_DATA.request
service primitive is generated within the OAM sublayer
with an OAMPDU Code field value equal to the Event
Notification code as specified in Table 57-4 and Event TLV
Type field equal to the Errored Frame Event value as
specified in Table 57-10."
REFERENCE "IEEE 802.3ah, Clause 57"
::= {nbsEfmOamEntry 39 }
nbsEfmOamErrFrmPerCfgDuration OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A four-octet value indicating the duration of the Errored
Frame Period Event (see 57.5.3.3) window, in terms of the
number of minFrameSize frames that can be transmitted on
the underlying physical layer."
REFERENCE "IEEE 802.3ah, Clause 57"
::= {nbsEfmOamEntry 40 }
nbsEfmOamErrFrmPerCfgThreshld OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A four-octet value indicating the number of errored
frames in the period that must be exceeded in order for
the Errored Frame Period Event to be generated."
REFERENCE "IEEE 802.3ah, Clause 57"
::= {nbsEfmOamEntry 41 }
nbsEfmOamErrFrmPerEvtTime OBJECT-TYPE
SYNTAX Unsigned16TC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer corresponding to the Event Time Stamp field
in the most recently transmitted Errored Frame Period
Event TLV in an Event Notification OAMPDU (see 57.4.3.2).
This integer is updated when a OAM:MA_DATA.request
service primitive is generated within the OAM sublayer
with an OAMPDU Code field value equal to the Event
Notification code as specified in Table 57-4 and Event TLV
Type field equal to the Errored Frame Period Event value
as specified in Table 57-10."
REFERENCE "IEEE 802.3ah, Clause 57"
::= {nbsEfmOamEntry 42 }
nbsEfmOamErrFrmPerEvtWindow OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer corresponding to the Errored Frame Window field
in the most recently transmitted Errored Frame Period
Event TLV in an Event Notification OAMPDU (see 57.4.3.2).
This integer is updated when a OAM:MA_DATA.request
service primitive is generated within the OAM sublayer
with an OAMPDU Code field value equal to the Event
Notification code as specified in Table 57-4 and Event TLV
Type field equal to the Errored Frame Period Event value
as specified in Table 57-10."
REFERENCE "IEEE 802.3ah, Clause 57"
::= {nbsEfmOamEntry 43 }
nbsEfmOamErrFrmPerEvtThreshld OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer corresponding to the Errored Frame Threshold field
in the most recently transmitted Errored Frame Period
Event TLV in an Event Notification OAMPDU (see 57.4.3.2).
This integer is updated when a OAM:MA_DATA.request
service primitive is generated within the OAM sublayer
with an OAMPDU Code field value equal to the Event
Notification code as specified in Table 57-4 and Event TLV
Type field equal to the Errored Frame Period Event value
as specified in Table 57-10."
REFERENCE "IEEE 802.3ah, Clause 57"
::= {nbsEfmOamEntry 44 }
nbsEfmOamErrFrmPerEvtCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer corresponding to the Error Running Total field
in the most recently transmitted Errored Frame Period
Event TLV in an Event Notification OAMPDU (see 57.4.3.2).
This integer is updated when a OAM:MA_DATA.request
service primitive is generated within the OAM sublayer
with an OAMPDU Code field value equal to the Event
Notification code as specified in Table 57-4 and Event TLV
Type field equal to the Errored Frame Period Event value
as specified in Table 57-10."
REFERENCE "IEEE 802.3ah, Clause 57"
::= {nbsEfmOamEntry 45 }
nbsEfmOamErrFrmSecSumCfgDuration OBJECT-TYPE
SYNTAX Unsigned16TC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A two-octet value indicating the duration of the Errored
Frame Seconds Summary Event (see 57.5.3.4) window, in
terms of number of 100ms intervals."
REFERENCE "IEEE 802.3ah, Clause 57"
::= {nbsEfmOamEntry 46 }
nbsEfmOamErrFrmSecSumCfgThreshld OBJECT-TYPE
SYNTAX Unsigned16TC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A two-octet value indicating the number of errored frame
seconds in the period that must be exceeded in order for
the Errored Frame Seconds Summary Event to be generated."
REFERENCE "IEEE 802.3ah, Clause 57"
::= {nbsEfmOamEntry 47 }
nbsEfmOamErrFrmSecSumEvtTime OBJECT-TYPE
SYNTAX Unsigned16TC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer corresponding to the Event Time Stamp field
in the most recently transmitted Errored Frame Seconds
Summary Event TLV in an Event Notification OAMPDU (see
57.4.3.2). This integer is updated when a
OAM:MA_DATA.request service primitive is generated within
the OAM sublayer with an OAMPDU Code field value equal to
the Event Notification code as specified in Table 57-4 and
Event TLV Type field equal to the Errored Frame Seconds
Summary Event value as specified in Table 57-10."
REFERENCE "IEEE 802.3ah, Clause 57"
::= {nbsEfmOamEntry 48 }
nbsEfmOamErrFrmSecSumEvtWindow OBJECT-TYPE
SYNTAX Unsigned16TC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer corresponding to the Errored Frame Seconds
Window field in the most recently transmitted Errored
Frame Seconds Summary Event TLV in an Event Notification
OAMPDU (see 57.4.3.2). This integer is updated when a
OAM:MA_DATA.request service primitive is generated within
the OAM sublayer with an OAMPDU Code field value equal to
the Event Notification code as specified in Table 57-4 and
Event TLV Type field equal to the Errored Frame Seconds
Summary Event value as specified in Table 57-10."
REFERENCE "IEEE 802.3ah, Clause 57"
::= {nbsEfmOamEntry 49 }
nbsEfmOamErrFrmSecSumEvtThreshld OBJECT-TYPE
SYNTAX Unsigned16TC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer corresponding to the Errored Frame Seconds
Threshold field in the most recently transmitted Errored
Frame Seconds Summary Event TLV in an Event Notification
OAMPDU (see 57.4.3.2). This integer is updated when a
OAM:MA_DATA.request service primitive is generated within
the OAM sublayer with an OAMPDU Code field value equal to
the Event Notification code as specified in Table 57-4 and
Event TLV Type field equal to the Errored Frame Seconds
Summary Event value as specified in Table 57-10."
REFERENCE "IEEE 802.3ah, Clause 57"
::= {nbsEfmOamEntry 50 }
nbsEfmOamErrFrmSecSumEvtCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer corresponding to the Error Running Total field
in the most recently transmitted Errored Frame Seconds
Summary Event TLV in an Event Notification OAMPDU (see
57.4.3.2). This integer is updated when a
OAM:MA_DATA.request service primitive is generated within
the OAM sublayer with an OAMPDU Code field value equal to
the Event Notification code as specified in Table 57-4 and
Event TLV Type field equal to the Errored Frame Seconds
Summary Event value as specified in Table 57-10."
REFERENCE "IEEE 802.3ah, Clause 57"
::= {nbsEfmOamEntry 51 }
nbsEfmOamFramesLostDueToOamError OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of frames that would otherwise be transmitted by
the OAM sublayer, but could not be due to an internal OAM
sublayer transmit error. If this counter is incremented,
then none of the other counters in this section are
incremented. The exact meaning and mechanism for
incrementing this counter is implementation dependent."
REFERENCE "IEEE 802.3ah, Clause 57"
::= { nbsEfmOamEntry 52 }
nbsEfmOamAdminState OBJECT-TYPE
SYNTAX INTEGER {
notSupported (1),
disable (2),
enable (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A value that identifies the operational state of the OAM
sublayer. An interface which can provide the OAM sublayer
functions specified in Clause 57 will be enabled to do so
when this attribute has the enumeration enable(3). When
this attribute has the enumeration disable(2) the interface
will act as it would if it had no OAM sublayer."
DEFVAL { enable }
::= {nbsEfmOamEntry 53 }
nbsEfmOamOperState OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object declares configurable (*) and operational reasons for
disabling OAM service. The reason applies only if the bit is set.
Multiple bits may be set concurrently. OAM service is enabled
when no bits are set.
Bit Reason to disable
--- ----------------------------------------------
0 reserved
1 reserved
2 reserved
3 reserved
4 reserved
5 Temporarily disabled for download processing
6 Administratively disabled (*)
7 OAM service is not available
OCTET STRING bitmasks count the leftmost bit (MSB) as 0."
::= {nbsEfmOamEntry 54 }
-- ***********************************************************************
-- Conformance information.
-- ***********************************************************************
nbsEfmConformance OBJECT IDENTIFIER ::= { nbsEfmMib 3 }
nbsEfmGroups OBJECT IDENTIFIER ::= { nbsEfmConformance 1 }
-- units of conformance
nbsEfmOamGroup OBJECT-GROUP
OBJECTS {
nbsEfmPhysicalIfIndex,
nbsEfmOamIfIndex,
nbsEfmOamPeerIfIndex,
nbsEfmOamMode,
nbsEfmOamCfg,
nbsEfmOamPduCfg,
nbsEfmOamFlagsField,
nbsEfmOamState,
nbsEfmOamVendorOUI,
nbsEfmOamVendorDeviceId,
nbsEfmOamVendorDeviceVersion,
nbsEfmOamPDUTx,
nbsEfmOamPDURx,
nbsEfmOamUnsupportedCodesRx,
nbsEfmOamInformationTx,
nbsEfmOamInformationRx,
nbsEfmOamEventNotificationTx,
nbsEfmOamUniEventNotificationRx,
nbsEfmOamDupEventNotificationRx,
nbsEfmOamLoopbackControlTx,
nbsEfmOamLoopbackControlRx,
nbsEfmOamVariableRequestTx,
nbsEfmOamVariableRequestRx,
nbsEfmOamVariableResponseTx,
nbsEfmOamVariableResponseRx,
nbsEfmOamOrganizationSpecificTx,
nbsEfmOamOrganizationSpecificRx,
nbsEfmOamErrSymPerCfgDuration,
nbsEfmOamErrSymPerCfgThreshld,
nbsEfmOamErrSymPerEvtTime,
nbsEfmOamErrSymPerEvtWindow,
nbsEfmOamErrSymPerEvtThreshld,
nbsEfmOamErrSymPerEvtCount,
nbsEfmOamErrFrmCfgDuration,
nbsEfmOamErrFrmCfgThreshld,
nbsEfmOamErrFrmEvtTime,
nbsEfmOamErrFrmEvtWindow,
nbsEfmOamErrFrmEvtThreshld,
nbsEfmOamErrFrmEvtCount,
nbsEfmOamErrFrmPerCfgDuration,
nbsEfmOamErrFrmPerCfgThreshld,
nbsEfmOamErrFrmPerEvtTime,
nbsEfmOamErrFrmPerEvtWindow,
nbsEfmOamErrFrmPerEvtThreshld,
nbsEfmOamErrFrmPerEvtCount,
nbsEfmOamErrFrmSecSumCfgDuration,
nbsEfmOamErrFrmSecSumCfgThreshld,
nbsEfmOamErrFrmSecSumEvtTime,
nbsEfmOamErrFrmSecSumEvtWindow,
nbsEfmOamErrFrmSecSumEvtThreshld,
nbsEfmOamErrFrmSecSumEvtCount,
nbsEfmOamFramesLostDueToOamError,
nbsEfmOamAdminState,
nbsEfmOamOperState
}
STATUS current
DESCRIPTION
"OAM attributes."
::= { nbsEfmGroups 3 }
END
|