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
|
NBS-FECPM-MIB DEFINITIONS ::= BEGIN
IMPORTS
Counter64,
OBJECT-TYPE, MODULE-IDENTITY, OBJECT-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
ifAlias, InterfaceIndex
FROM IF-MIB
nbs, WritableU64
FROM NBS-MIB;
nbsFecpmMib MODULE-IDENTITY
LAST-UPDATED "201610190000Z" -- October 19, 2016
ORGANIZATION "NBS"
CONTACT-INFO
"For technical support, please contact your service channel"
DESCRIPTION
"OTN Forward Error Correction (FEC) Performance Monitoring and
user-controlled statistics"
::= { nbs 223 }
-- *******************************************************************
-- NBS-FECPM-MIB local defines
-- *******************************************************************
nbsFecpmThresholdsGrp OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Maximum considered safe by user"
::= { nbsFecpmMib 1 }
nbsFecpmCurrentGrp OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Subtotals and statistics for sample now underway"
::= { nbsFecpmMib 2 }
nbsFecpmHistoricGrp OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Totals and final statistics for a previous sample"
::= { nbsFecpmMib 3 }
nbsFecpmRunningGrp OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Counter values since boot-up"
::= { nbsFecpmMib 4 }
nbsFecStatsGrp OBJECT-IDENTITY
STATUS current
DESCRIPTION
"User-controlled statistics"
::= { nbsFecpmMib 90 }
nbsFecpmEventsGrp OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Threshold crossing events"
::= { nbsFecpmMib 100 }
nbsFecpmTraps OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Threshold crossing Traps or Notifications"
::= { nbsFecpmEventsGrp 0 }
-- *******************************************************************
--
-- the nbsFecpmThresholdsGrp
--
-- *******************************************************************
nbsFecpmThresholdsTable OBJECT-TYPE
SYNTAX SEQUENCE OF NbsFecpmThresholdsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"FEC Performance Monitoring thresholds"
::= { nbsFecpmThresholdsGrp 1 }
nbsFecpmThresholdsEntry OBJECT-TYPE
SYNTAX NbsFecpmThresholdsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Performance monitoring thresholds for a particular interface"
INDEX {
nbsFecpmThresholdsIfIndex,
nbsFecpmThresholdsInterval
}
::= { nbsFecpmThresholdsTable 1 }
NbsFecpmThresholdsEntry ::= SEQUENCE {
nbsFecpmThresholdsIfIndex InterfaceIndex,
nbsFecpmThresholdsInterval INTEGER,
nbsFecpmThresholdsBitErrCor WritableU64,
nbsFecpmThresholdsByteErrCor WritableU64,
nbsFecpmThresholdsCorBit0to1 WritableU64,
nbsFecpmThresholdsCorBit1to0 WritableU64,
nbsFecpmThresholdsUncorWords WritableU64
}
nbsFecpmThresholdsIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The mib2 ifIndex"
::= { nbsFecpmThresholdsEntry 1 }
nbsFecpmThresholdsInterval OBJECT-TYPE
SYNTAX INTEGER {
quarterHour (1),
twentyfourHour (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the periodicity to which these thresholds apply"
::= { nbsFecpmThresholdsEntry 2 }
nbsFecpmThresholdsBitErrCor OBJECT-TYPE
SYNTAX WritableU64
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Persistent. The number of Bit Errors Corrected which, if met
or exceeded at the end of the nbsFecpmThresholdsInterval
period, should trigger the nbsFecpmTrapsBitErrCor event
notification.
The reserved value 0 disables notifications for this event."
-- DEFVAL { 0 }
::= { nbsFecpmThresholdsEntry 10 }
nbsFecpmThresholdsByteErrCor OBJECT-TYPE
SYNTAX WritableU64
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Persistent. The number of Byte Errors Corrected
which, if met or exceeded at the end of the
nbsFecpmThresholdsInterval period, should trigger the
nbsFecpmTrapsByteErrCor event notification.
The reserved value 0 disables notifications for this event."
-- DEFVAL { 0 }
::= { nbsFecpmThresholdsEntry 12 }
nbsFecpmThresholdsCorBit0to1 OBJECT-TYPE
SYNTAX WritableU64
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Persistent. The number of '0' bits corrected to '1' which,
if met or exceeded at the end of the nbsFecpmThresholdsInterval
period, should trigger the nbsFecpmTrapsCorBit0to1 event
notification.
The reserved value 0 disables notifications for this event."
-- DEFVAL { 0 }
::= { nbsFecpmThresholdsEntry 14 }
nbsFecpmThresholdsCorBit1to0 OBJECT-TYPE
SYNTAX WritableU64
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Persistent. The number of '1' bits corrected to '0' which,
if met or exceeded at the end of the nbsFecpmThresholdsInterval
period, should trigger the nbsFecpmTrapsCorBit1to0 event
notification.
The reserved value 0 disables notifications for this event."
-- DEFVAL { 0 }
::= { nbsFecpmThresholdsEntry 16 }
nbsFecpmThresholdsUncorWords OBJECT-TYPE
SYNTAX WritableU64
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Persistent. The number of Uncorrectable Words which, if met or
exceeded at the end of the nbsFecpmThresholdsInterval period,
should trigger the nbsFecpmTrapsUncorWords event notification.
The reserved value 0 disables notifications for this event."
-- DEFVAL { 0 }
::= { nbsFecpmThresholdsEntry 18 }
-- *******************************************************************
--
-- the nbsFecpmCurrentGroup
--
-- *******************************************************************
nbsFecpmCurrentSysDate OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current (today's) UTC date, represented by an eight
digit decimal number: yyyymmdd"
::= { nbsFecpmCurrentGrp 1 }
nbsFecpmCurrentSysTime OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current (now's) UTC time, represented by a six
digit decimal number in the format hhmmss"
::= { nbsFecpmCurrentGrp 2 }
nbsFecpmCurrentTable OBJECT-TYPE
SYNTAX SEQUENCE OF NbsFecpmCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"All FEC Performance Monitoring statistics for the
nbsFecpmCurrentInterval now underway."
::= { nbsFecpmCurrentGrp 3 }
nbsFecpmCurrentEntry OBJECT-TYPE
SYNTAX NbsFecpmCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"FEC Performance Monitoring statistics for a specific port/
interface and nbsFecpmCurrentInterval."
INDEX {
nbsFecpmCurrentIfIndex,
nbsFecpmCurrentInterval
}
::= { nbsFecpmCurrentTable 1 }
NbsFecpmCurrentEntry ::= SEQUENCE {
nbsFecpmCurrentIfIndex InterfaceIndex,
nbsFecpmCurrentInterval INTEGER,
nbsFecpmCurrentDate INTEGER,
nbsFecpmCurrentTime INTEGER,
nbsFecpmCurrentBitErrCor Counter64,
nbsFecpmCurrentByteErrCor Counter64,
nbsFecpmCurrentCorBit0to1 Counter64,
nbsFecpmCurrentCorBit1to0 Counter64,
nbsFecpmCurrentUncorWords Counter64
}
nbsFecpmCurrentIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The mib2 ifIndex"
::= { nbsFecpmCurrentEntry 1 }
nbsFecpmCurrentInterval OBJECT-TYPE
SYNTAX INTEGER {
quarterHour (1),
twentyfourHour (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the periodicity of statistic"
::= { nbsFecpmCurrentEntry 2 }
nbsFecpmCurrentDate OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date (UTC) this interval began, represented by an eight
digit decimal number: yyyymmdd"
::= { nbsFecpmCurrentEntry 5 }
nbsFecpmCurrentTime OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time (UTC) this interval began, represented by a six
digit decimal number: hhmmss"
::= { nbsFecpmCurrentEntry 6 }
nbsFecpmCurrentBitErrCor OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Bit Errors Corrected in this interval so far;
it may be the sum of nbsFecpmCurrentCorBit0to1 and
nbsFecpmCurrentCorBit1to0."
-- DEFVAL { 0 }
::= { nbsFecpmCurrentEntry 10 }
nbsFecpmCurrentByteErrCor OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Byte Errors Corrected in this interval so far.
The reserved value 0xFFFFFFFFFFFFFFFF indicates not supported."
-- DEFVAL { 0 }
::= { nbsFecpmCurrentEntry 12 }
nbsFecpmCurrentCorBit0to1 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of '0' bits corrected to '1' so far.
The reserved value 0xFFFFFFFFFFFFFFFF indicates there is a
single number for all bit corrections combined, see
nbsFecpmCurrentBitErrCor."
-- DEFVAL { 0 }
::= { nbsFecpmCurrentEntry 14 }
nbsFecpmCurrentCorBit1to0 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of '1' bits corrected to '0' so far.
The reserved value 0xFFFFFFFFFFFFFFFF indicates there is a
single number for all bit corrections combined, see
nbsFecpmCurrentBitErrCor."
-- DEFVAL { 0 }
::= { nbsFecpmCurrentEntry 16 }
nbsFecpmCurrentUncorWords OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Uncorrectable Words so far"
-- DEFVAL { 0 }
::= { nbsFecpmCurrentEntry 18 }
-- *******************************************************************
--
-- the nbsFecpmHistoricGrp
--
-- *******************************************************************
nbsFecpmHistoricTable OBJECT-TYPE
SYNTAX SEQUENCE OF NbsFecpmHistoricEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"All FEC Performance Monitoring statistics for past
nbsFecpmHistoricInterval periods."
::= { nbsFecpmHistoricGrp 3 }
nbsFecpmHistoricEntry OBJECT-TYPE
SYNTAX NbsFecpmHistoricEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"FEC Performance Monitoring statistics for a specific port/
interface and nbsFecpmHistoricInterval."
INDEX {
nbsFecpmHistoricIfIndex,
nbsFecpmHistoricInterval,
nbsFecpmHistoricSample
}
::= { nbsFecpmHistoricTable 1 }
NbsFecpmHistoricEntry ::= SEQUENCE {
nbsFecpmHistoricIfIndex InterfaceIndex,
nbsFecpmHistoricInterval INTEGER,
nbsFecpmHistoricSample INTEGER,
nbsFecpmHistoricDate INTEGER,
nbsFecpmHistoricTime INTEGER,
nbsFecpmHistoricBitErrCor Counter64,
nbsFecpmHistoricByteErrCor Counter64,
nbsFecpmHistoricCorBit0to1 Counter64,
nbsFecpmHistoricCorBit1to0 Counter64,
nbsFecpmHistoricUncorWords Counter64
}
nbsFecpmHistoricIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The mib2 ifIndex"
::= { nbsFecpmHistoricEntry 1 }
nbsFecpmHistoricInterval OBJECT-TYPE
SYNTAX INTEGER {
quarterHour (1),
twentyfourHour (2)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the sampling period of statistic"
::= { nbsFecpmHistoricEntry 2 }
nbsFecpmHistoricSample OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the sample number of this statistic. The most
recent sample is numbered 1, the next previous 2, and so on
until the oldest sample."
::= { nbsFecpmHistoricEntry 4 }
nbsFecpmHistoricDate OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date (UTC) the interval began, represented by an eight
digit decimal number: yyyymmdd"
::= { nbsFecpmHistoricEntry 5 }
nbsFecpmHistoricTime OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time (UTC) the interval began, represented by a six
digit decimal number: hhmmss"
::= { nbsFecpmHistoricEntry 6 }
nbsFecpmHistoricBitErrCor OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The final count of Bit Errors Corrected for this interval;
it may be the sum of nbsFecpmHistoricCorBit0to1 and
nbsFecpmHistoricCorBit1to0."
-- DEFVAL { 0 }
::= { nbsFecpmHistoricEntry 10 }
nbsFecpmHistoricByteErrCor OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The final count of Byte Errors Corrected in this interval.
The reserved value 0xFFFFFFFFFFFFFFFF indicates not supported."
-- DEFVAL { 0 }
::= { nbsFecpmHistoricEntry 12 }
nbsFecpmHistoricCorBit0to1 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The final count of '0' bits corrected to '1' in this interval.
The reserved value 0xFFFFFFFFFFFFFFFF indicates there is a
single number for all bit corrections combined, see
nbsFecpmHistoricBitErrCor."
-- DEFVAL { 0 }
::= { nbsFecpmHistoricEntry 14 }
nbsFecpmHistoricCorBit1to0 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The final count of '1' bits corrected to '0' in this interval.
The reserved value 0xFFFFFFFFFFFFFFFF indicates there is a
single number for all bit corrections combined, see
nbsFecpmHistoricBitErrCor."
-- DEFVAL { 0 }
::= { nbsFecpmHistoricEntry 16 }
nbsFecpmHistoricUncorWords OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The final number of Uncorrectable Words in this interval"
-- DEFVAL { 0 }
::= { nbsFecpmHistoricEntry 18 }
-- *******************************************************************
--
-- the nbsFecpmRunningGrp
--
-- *******************************************************************
nbsFecpmRunningTable OBJECT-TYPE
SYNTAX SEQUENCE OF NbsFecpmRunningEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"All FEC Performance Monitoring statistics since boot-up."
::= { nbsFecpmRunningGrp 3 }
nbsFecpmRunningEntry OBJECT-TYPE
SYNTAX NbsFecpmRunningEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"FEC Performance Monitoring statistics for a specific port/
interface."
INDEX {
nbsFecpmRunningIfIndex
}
::= { nbsFecpmRunningTable 1 }
NbsFecpmRunningEntry ::= SEQUENCE {
nbsFecpmRunningIfIndex InterfaceIndex,
nbsFecpmRunningDate INTEGER,
nbsFecpmRunningTime INTEGER,
nbsFecpmRunningBitErrCor Counter64,
nbsFecpmRunningByteErrCor Counter64,
nbsFecpmRunningCorBit0to1 Counter64,
nbsFecpmRunningCorBit1to0 Counter64,
nbsFecpmRunningUncorWords Counter64
}
nbsFecpmRunningIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The mib2 ifIndex"
::= { nbsFecpmRunningEntry 1 }
nbsFecpmRunningDate OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date (UTC) of boot-up, represented by an eight digit
decimal number: yyyymmdd"
::= { nbsFecpmRunningEntry 5 }
nbsFecpmRunningTime OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time (UTC) of boot-up, represented by a six digit
decimal number: hhmmss"
::= { nbsFecpmRunningEntry 6 }
nbsFecpmRunningBitErrCor OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total count of Bit Errors Corrected since boot-up;
it may be the sum of nbsFecpmRunningCorBit0to1 and
nbsFecpmRunningCorBit1to0."
::= { nbsFecpmRunningEntry 10 }
nbsFecpmRunningByteErrCor OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total count of Byte Errors Corrected since boot-up.
The reserved value 0xFFFFFFFFFFFFFFFF indicates not supported."
::= { nbsFecpmRunningEntry 12 }
nbsFecpmRunningCorBit0to1 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total count of '0' bits corrected to '1' since boot-up.
The reserved value 0xFFFFFFFFFFFFFFFF indicates there is a
single number for all bit corrections combined, see
nbsFecpmRunningBitErrCor."
::= { nbsFecpmRunningEntry 14 }
nbsFecpmRunningCorBit1to0 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total count of '1' bits corrected to '0' since boot-up.
The reserved value 0xFFFFFFFFFFFFFFFF indicates there is a
single number for all bit corrections combined, see
nbsFecpmRunningBitErrCor."
::= { nbsFecpmRunningEntry 16 }
nbsFecpmRunningUncorWords OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Uncorrectable Words since boot-up"
::= { nbsFecpmRunningEntry 18 }
-- *******************************************************************
--
-- the nbsFecStatsGrp
--
-- *******************************************************************
nbsFecStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF NbsFecStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"FEC statistics managed at the user's discretion. These statistics
may be started, stopped, and cleared whenever the user desires
without affecting the normal performance monitoring activity."
::= { nbsFecStatsGrp 3 }
nbsFecStatsEntry OBJECT-TYPE
SYNTAX NbsFecStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"User-controlled FEC statistics for a specific port/interface."
INDEX {
nbsFecStatsIfIndex
}
::= { nbsFecStatsTable 1 }
NbsFecStatsEntry ::= SEQUENCE {
nbsFecStatsIfIndex InterfaceIndex,
nbsFecStatsDate INTEGER,
nbsFecStatsTime INTEGER,
nbsFecStatsSpan INTEGER,
nbsFecStatsState INTEGER,
nbsFecStatsBitErrCor Counter64,
nbsFecStatsByteErrCor Counter64,
nbsFecStatsCorBit0to1 Counter64,
nbsFecStatsCorBit1to0 Counter64,
nbsFecStatsUncorWords Counter64
}
nbsFecStatsIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The mib2 ifIndex"
::= { nbsFecStatsEntry 1 }
nbsFecStatsDate OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The (UTC) date the user began statistics collection, represented
by an eight digit decimal number: yyyymmdd"
::= { nbsFecStatsEntry 5 }
nbsFecStatsTime OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The (UTC) time the user began statistics collection, represented
by a six digit decimal number: hhmmss"
::= { nbsFecStatsEntry 6 }
nbsFecStatsSpan OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of time (deci-sec) statistics collection has been underway
since nbsFecStatsDate and nbsFecStatsTime, or if stopped, the duration
of the prior collection."
::= { nbsFecStatsEntry 7 }
nbsFecStatsState OBJECT-TYPE
SYNTAX INTEGER {
notSupported (1),
counting (2),
clearing (3),
stopped (4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Writing 'stopped' to this object stops (pauses) FEC statistics
collection.
Writing 'counting' to this object starts (resumes) FEC statistics
collection.
Writing 'clearing' to this object clears all statistical counters."
::= { nbsFecStatsEntry 8 }
nbsFecStatsBitErrCor OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total count of Bit Errors Corrected since boot-up;
it may be the sum of nbsFecStatsCorBit0to1 and
nbsFecStatsCorBit1to0."
::= { nbsFecStatsEntry 10 }
nbsFecStatsByteErrCor OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total count of Byte Errors Corrected since boot-up.
The reserved value 0xFFFFFFFFFFFFFFFF indicates not supported."
::= { nbsFecStatsEntry 12 }
nbsFecStatsCorBit0to1 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total count of '0' bits corrected to '1' since boot-up.
The reserved value 0xFFFFFFFFFFFFFFFF indicates there is a
single number for all bit corrections combined, see
nbsFecStatsBitErrCor."
::= { nbsFecStatsEntry 14 }
nbsFecStatsCorBit1to0 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total count of '1' bits corrected to '0' since boot-up.
The reserved value 0xFFFFFFFFFFFFFFFF indicates there is a
single number for all bit corrections combined, see
nbsFecStatsBitErrCor."
::= { nbsFecStatsEntry 16 }
nbsFecStatsUncorWords OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Uncorrectable Words since boot-up"
::= { nbsFecStatsEntry 18 }
-- *******************************************************************
--
-- the nbsFecpmEventsGrp
--
-- *******************************************************************
nbsFecpmTrapsBitErrCor NOTIFICATION-TYPE
OBJECTS { nbsFecpmCurrentIfIndex, ifAlias, nbsFecpmCurrentInterval,
nbsFecpmCurrentBitErrCor }
STATUS current
DESCRIPTION
"Sent at the conclusion of an nbsFecpmThresholdsInterval if
nbsFecpmThresholdsBitErrCor is non-zero and less than or equal
to nbsFecpmCurrentBitErrCor."
::= { nbsFecpmTraps 10 }
nbsFecpmTrapsByteErrCor NOTIFICATION-TYPE
OBJECTS { nbsFecpmCurrentIfIndex, ifAlias, nbsFecpmCurrentInterval,
nbsFecpmCurrentByteErrCor }
STATUS current
DESCRIPTION
"Sent at the conclusion of an nbsFecpmThresholdsInterval if
nbsFecpmThresholdsByteErrCor is non-zero and less than or equal
to nbsFecpmCurrentByteErrCor."
::= { nbsFecpmTraps 12 }
nbsFecpmTrapsCorBit0to1 NOTIFICATION-TYPE
OBJECTS { nbsFecpmCurrentIfIndex, ifAlias, nbsFecpmCurrentInterval,
nbsFecpmCurrentCorBit0to1 }
STATUS current
DESCRIPTION
"Sent at the conclusion of an nbsFecpmThresholdsInterval if
nbsFecpmThresholdsCorBit0to1 is non-zero and less than or equal
to nbsFecpmCurrentCorBit0to1."
::= { nbsFecpmTraps 14 }
nbsFecpmTrapsCorBit1to0 NOTIFICATION-TYPE
OBJECTS { nbsFecpmCurrentIfIndex, ifAlias, nbsFecpmCurrentInterval,
nbsFecpmCurrentCorBit1to0 }
STATUS current
DESCRIPTION
"Sent at the conclusion of an nbsFecpmThresholdsInterval if
nbsFecpmThresholdsCorBit1to0 is non-zero and less than or equal
to nbsFecpmCurrentCorBit1to0."
::= { nbsFecpmTraps 16 }
nbsFecpmTrapsUncorWords NOTIFICATION-TYPE
OBJECTS { nbsFecpmCurrentIfIndex, ifAlias, nbsFecpmCurrentInterval,
nbsFecpmCurrentUncorWords }
STATUS current
DESCRIPTION
"Sent at the conclusion of an nbsFecpmThresholdsInterval if
nbsFecpmThresholdsUncorWords is non-zero and less than or equal
to nbsFecpmCurrentUncorWords."
::= { nbsFecpmTraps 18 }
END
|