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
|
--
-- Juniper Enterprise Specific MIB: OTN Interface Management MIB Extension
--
-- Copyright (c) 2008, Juniper Networks, Inc.
-- All rights reserved.
--
-- The contents of this document are subject to change without notice.
--
JUNIPER-OTN-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, TimeTicks, NOTIFICATION-TYPE,
Unsigned32, Counter32
FROM SNMPv2-SMI
DateAndTime, TEXTUAL-CONVENTION
FROM SNMPv2-TC
jnxOtnMibRoot, jnxOtnNotifications
FROM JUNIPER-SMI
ifIndex, ifDescr
FROM IF-MIB;
jnxOtnMib MODULE-IDENTITY
LAST-UPDATED "201506171138Z" -- Wed Jun 17 11:38:23 IST 2015
ORGANIZATION "Juniper Networks, Inc."
CONTACT-INFO
" Juniper Technical Assistance Center
Juniper Networks, Inc.
1133 Innovation Way
Sunnyvale, CA 94089
E-mail: support@juniper.net"
DESCRIPTION
"Changed jnxOtnIntervalOdu15minIntervalNumber,
jnxOtnIntervalOtu15minIntervalNumber,
jnxOtnIntervalOtuFec15minIntervalNumber
from read-only to not-accessible"
REVISION "201506170000Z"
DESCRIPTION
"This MIB module defines objects used for managing the
OTN interfaces of Juniper products."
REVISION "200807100000Z"
DESCRIPTION
"Added OTN Alarms and PM data."
REVISION "200807100000Z"
DESCRIPTION
"Initial revision."
::= { jnxOtnMibRoot 1 }
JnxOtnAlarmId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Identifies specific sonet/sdh alarms that may exist on an
interface."
SYNTAX BITS {
otnLosAlarm(0), -- OTN Loss of signal alarm
otnLofAlarm(1), -- OTN Loss of frame alarm
otnLomAlarm(2), -- OTN Loss of multi frame alarm
otnWavelengthlockAlarm(3),
-- OTN wavelength lock alarm
otnOtuAisAlarm(4), -- OTN AIS alarm
otnOtuBdiAlarm(5), -- OTN OTU BDI alarm
otnOtuTtimAlarm(6), -- OTN OTU TTIM alarm
otnOtuIaeAlarm(7), -- OTN OTU IAE alarm
otnOtuSdAlarm(8), -- OTN OTU bit err. rate defect alarm,
otnOtuSfAlarm(9), -- OTN OTU bit err. rate fault alarm,
otnOtuFecExcessiveErrsAlarm(10),
-- OTN OTU Fec Excessive Errors alarm
otnOtuFecDegradedErrsAlarm(11),
-- OTN OTU Fec Degraded Errs alarm
otnOtuBbeThreholdAlarm(12),
-- OTN OTU BBE Threshold alarm
otnOtuEsThreholdAlarm(13),
-- OTN OTU ES Threshold alarm
otnOtuSesThreholdAlarm(14),
-- OTN OTU SES Threshold alarm
otnOtuUasThreholdAlarm(15),
-- OTN OTU UAS Threshold alarm alarm
otnOduAisAlarm(16), -- OTN ODU AIS alarm
otnOduOciAlarm(17), -- OTN ODU OCI alarm
otnOduLckAlarm(18), -- OTN ODU LCK alarm
otnOduBdiAlarm(19), -- OTN ODU BDI alarm
otnOduTtimAlarm(20), -- OTN ODU TTIM alarm
otnOduSdAlarm(21), -- OTN ODU bit err. rate defect alarm,
otnOduSfAlarm(22), -- OTN ODU bit err. rate fault alarm,
otnOduRxApsChange(23),
-- OTN Rx APS Change
otnOduBbeThreholdAlarm(24),
-- OTN ODU BBE Threshold alarm
otnOduEsThreholdAlarm(25),
-- OTN OTU ES Threshold alarm
otnOduSesThreholdAlarm(26),
-- OTN OTU SES Threshold alarm
otnOduUasThreholdAlarm(27),
-- OTN ODU UAS Threshold alarm alarm
otnOpuPMTAlarm(28) -- OTN OPU Payload Mismatch alarm
}
--
-- Otn alarm information
--
jnxOtnAlarms OBJECT IDENTIFIER ::= { jnxOtnMib 1 }
jnxOtnAlarmTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxOtnAlarmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about alarms on all the sonet/sdh physical
interfaces on this router."
::= { jnxOtnAlarms 1 }
jnxOtnAlarmEntry OBJECT-TYPE
SYNTAX JnxOtnAlarmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about alarms on a sonet/sdh physical interface on
this router."
INDEX { ifIndex }
::= { jnxOtnAlarmTable 1 }
JnxOtnAlarmEntry ::=
SEQUENCE {
jnxOtnCurrentAlarms
JnxOtnAlarmId,
jnxOtnLastAlarmId
JnxOtnAlarmId,
jnxOtnLastAlarmTime
TimeTicks,
jnxOtnLastAlarmDate
DateAndTime,
jnxOtnLastAlarmEvent
INTEGER
}
jnxOtnCurrentAlarms OBJECT-TYPE
SYNTAX JnxOtnAlarmId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies all the active OTN alarms on this
interface."
::= { jnxOtnAlarmEntry 1 }
jnxOtnLastAlarmId OBJECT-TYPE
SYNTAX JnxOtnAlarmId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The object identifies the OTN alarm that most recently
was set or cleared."
::= { jnxOtnAlarmEntry 2 }
jnxOtnLastAlarmTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when the management subsystem learned
of the last alarm event."
::= { jnxOtnAlarmEntry 3 }
jnxOtnLastAlarmDate OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The system date and time when the management subsystem learned
of the last alarm event."
::= { jnxOtnAlarmEntry 4 }
jnxOtnLastAlarmEvent OBJECT-TYPE
SYNTAX INTEGER {
none (1),
set (2),
cleared (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates whether the last alarm event set a new alarm
or cleared an existing alarm."
::= { jnxOtnAlarmEntry 5 }
-- Performance Monitoring Data
jnxOtnPerformanceMonitoring OBJECT IDENTIFIER ::= { jnxOtnMib 2 }
-- Current ODU Stats
jnxOtnCurrentOdu15minTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxOtnCurrentOdu15minEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about ODU Performance monitoring for this
interfaces on this router."
::= { jnxOtnPerformanceMonitoring 1 }
jnxOtnCurrentOdu15minEntry OBJECT-TYPE
SYNTAX JnxOtnCurrentOdu15minEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Performance data about ia 15 minute interface on
this router"
INDEX { ifIndex }
::= { jnxOtnCurrentOdu15minTable 1 }
JnxOtnCurrentOdu15minEntry ::=
SEQUENCE {
jnxOtnCurrentOdu15minBIP
Unsigned32,
jnxOtnCurrentOdu15minBBE
Unsigned32,
jnxOtnCurrentOdu15minES
Unsigned32,
jnxOtnCurrentOdu15minSES
Unsigned32,
jnxOtnCurrentOdu15minUAS
Unsigned32,
jnxOtnCurrentOdu15minElapsedTime
Unsigned32
}
jnxOtnCurrentOdu15minBIP OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Current 15 minute BIP counter"
::= { jnxOtnCurrentOdu15minEntry 1 }
jnxOtnCurrentOdu15minBBE OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Current 15 minute BBE counter"
::= { jnxOtnCurrentOdu15minEntry 2 }
jnxOtnCurrentOdu15minES OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Current 15 minute ES counter"
::= { jnxOtnCurrentOdu15minEntry 3 }
jnxOtnCurrentOdu15minSES OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Current 15 minute SES counter"
::= { jnxOtnCurrentOdu15minEntry 4 }
jnxOtnCurrentOdu15minUAS OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Current 15 minute UAS counter"
::= { jnxOtnCurrentOdu15minEntry 5 }
jnxOtnCurrentOdu15minElapsedTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Time elapsed for this 15 minute interval"
::= { jnxOtnCurrentOdu15minEntry 6 }
-- The OTN ODU Interval
jnxOtnIntervalOdu15minTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxOtnIntervalOdu15minEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about ODU Performance monitoring for this
interfaces on this router."
::= { jnxOtnPerformanceMonitoring 2 }
jnxOtnIntervalOdu15minEntry OBJECT-TYPE
SYNTAX JnxOtnIntervalOdu15minEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Performance data in a 15 minute interface on
this router."
INDEX { ifIndex, jnxOtnIntervalOdu15minIntervalNumber }
::= { jnxOtnIntervalOdu15minTable 1 }
JnxOtnIntervalOdu15minEntry ::=
SEQUENCE {
jnxOtnIntervalOdu15minIntervalNumber
INTEGER,
jnxOtnIntervalOdu15minBIP
Unsigned32,
jnxOtnIntervalOdu15minBBE
Unsigned32,
jnxOtnIntervalOdu15minES
Unsigned32,
jnxOtnIntervalOdu15minSES
Unsigned32,
jnxOtnIntervalOdu15minUAS
Unsigned32,
jnxOtnIntervalOdu15minInvalidData
Unsigned32,
jnxOtnIntervalODdu15minTimeStamp
DateAndTime
}
jnxOtnIntervalOdu15minIntervalNumber OBJECT-TYPE
SYNTAX INTEGER (1..96)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A number between 1 and 96, where 1 is the most
recently completed 15 minute interval and 96 is
the 15 minutes interval completed 23 hours and 45
minutes prior to interval 1."
::= { jnxOtnIntervalOdu15minEntry 1 }
jnxOtnIntervalOdu15minBIP OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Interval 'n' 15 minute BIP counter"
::= { jnxOtnIntervalOdu15minEntry 2 }
jnxOtnIntervalOdu15minBBE OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Interval 'n' 15 minute BBE counter"
::= { jnxOtnIntervalOdu15minEntry 3 }
jnxOtnIntervalOdu15minES OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Interval 'n' 15 minute ES counter"
::= { jnxOtnIntervalOdu15minEntry 4 }
jnxOtnIntervalOdu15minSES OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Interval 'n' 15 minute SES counter"
::= { jnxOtnIntervalOdu15minEntry 5 }
jnxOtnIntervalOdu15minUAS OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Interval 15 minute UAS counter"
::= { jnxOtnIntervalOdu15minEntry 6 }
jnxOtnIntervalOdu15minInvalidData OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Time elapsed for this 15 minute interval"
::= { jnxOtnIntervalOdu15minEntry 7 }
jnxOtnIntervalODdu15minTimeStamp OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Time elapsed for this 15 minute interval"
::= { jnxOtnIntervalOdu15minEntry 8 }
-- The OTN ODU Total (24 hour table)
jnxOtnTotalOduTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxOtnTotalOduEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about ODU Performance monitoring for this
interfaces on this router."
::= { jnxOtnPerformanceMonitoring 3 }
jnxOtnTotalOduEntry OBJECT-TYPE
SYNTAX JnxOtnTotalOduEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Performance data about ia 15 minute interface on
this router."
INDEX { ifIndex }
::= { jnxOtnTotalOduTable 1 }
JnxOtnTotalOduEntry ::=
SEQUENCE {
jnxOtnTotalOduDayNumber
INTEGER,
jnxOtnTotalOduBIP
Unsigned32,
jnxOtnTotalOduBBE
Unsigned32,
jnxOtnTotalOduES
Unsigned32,
jnxOtnTotalOduSES
Unsigned32,
jnxOtnTotalOduUAS
Unsigned32
}
jnxOtnTotalOduDayNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Day 'n'number -- currently only one day is supported "
::= { jnxOtnTotalOduEntry 1 }
jnxOtnTotalOduBIP OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Total (1 day) BIP counter"
::= { jnxOtnTotalOduEntry 2 }
jnxOtnTotalOduBBE OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Total (1 day) BBE counter in an OTN ODU frame in the
in the previous 24 hour interval.
Invalid 15 minute intervals count as 0."
::= { jnxOtnTotalOduEntry 3 }
jnxOtnTotalOduES OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Total (1 day) ES counter in an OTN ODU frame in the
in the previous 24 hour interval.
Invalid 15 minute intervals count as 0."
::= { jnxOtnTotalOduEntry 4 }
jnxOtnTotalOduSES OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Total (1 day) SES counter in an OTN ODU frame in the
in the previous 24 hour interval.
Invalid 15 minute intervals count as 0."
::= { jnxOtnTotalOduEntry 5 }
jnxOtnTotalOduUAS OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Total (1 day) UAS counter in an OTN ODU frame in the
in the previous 24 hour interval.
Invalid 15 minute intervals count as 0."
::= { jnxOtnTotalOduEntry 6 }
-- OTN OTU Current PM Data
jnxOtnCurrentOtu15minTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxOtnCurrentOtu15minEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about ODU Performance monitoring for this
interfaces on this router."
::= { jnxOtnPerformanceMonitoring 4 }
jnxOtnCurrentOtu15minEntry OBJECT-TYPE
SYNTAX JnxOtnCurrentOtu15minEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Performance data about ia 15 minute interface on
this router"
INDEX { ifIndex }
::= { jnxOtnCurrentOtu15minTable 1 }
JnxOtnCurrentOtu15minEntry ::=
SEQUENCE {
jnxOtnCurrentOtu15minBIP
Unsigned32,
jnxOtnCurrentOtu15minBBE
Unsigned32,
jnxOtnCurrentOtu15minES
Unsigned32,
jnxOtnCurrentOtu15minSES
Unsigned32,
jnxOtnCurrentOtu15minUAS
Unsigned32,
jnxOtnCurrentOtu15minElapsedTime
Unsigned32
}
jnxOtnCurrentOtu15minBIP OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Current 15 minute BIP counter"
::= { jnxOtnCurrentOtu15minEntry 1 }
jnxOtnCurrentOtu15minBBE OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Current 15 minute BBE counter"
::= { jnxOtnCurrentOtu15minEntry 2 }
jnxOtnCurrentOtu15minES OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Current 15 minute ES counter"
::= { jnxOtnCurrentOtu15minEntry 3 }
jnxOtnCurrentOtu15minSES OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Current 15 minute SES counter"
::= { jnxOtnCurrentOtu15minEntry 4 }
jnxOtnCurrentOtu15minUAS OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Current 15 minute UAS counter"
::= { jnxOtnCurrentOtu15minEntry 5 }
jnxOtnCurrentOtu15minElapsedTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Time elapsed for this 15 minute interval"
::= { jnxOtnCurrentOtu15minEntry 6 }
-- The OTN OTU Interval
jnxOtnIntervalOtu15minTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxOtnIntervalOtu15minEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about ODU Performance monitoring for this
interfaces on this router."
::= { jnxOtnPerformanceMonitoring 5 }
jnxOtnIntervalOtu15minEntry OBJECT-TYPE
SYNTAX JnxOtnIntervalOtu15minEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Performance data about ia 15 minute interface on
this router."
INDEX { ifIndex, jnxOtnIntervalOtu15minIntervalNumber }
::= { jnxOtnIntervalOtu15minTable 1 }
JnxOtnIntervalOtu15minEntry ::=
SEQUENCE {
jnxOtnIntervalOtu15minIntervalNumber
INTEGER,
jnxOtnIntervalOtu15minBIP
Unsigned32,
jnxOtnIntervalOtu15minBBE
Unsigned32,
jnxOtnIntervalOtu15minES
Unsigned32,
jnxOtnIntervalOtu15minSES
Unsigned32,
jnxOtnIntervalOtu15minUAS
Unsigned32,
jnxOtnIntervalOtu15minInvalidData
Unsigned32,
jnxOtnIntervalOtu15minTimeStamp
DateAndTime
}
jnxOtnIntervalOtu15minIntervalNumber OBJECT-TYPE
SYNTAX INTEGER (1..96)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A number between 1 and 96, where 1 is the most
recently completed 15 minute interval and 96 is
the 15 minutes interval completed 23 hours and 45
minutes prior to interval 1."
::= { jnxOtnIntervalOtu15minEntry 1 }
jnxOtnIntervalOtu15minBIP OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Interval 'n' 15 minute BIP counter"
::= { jnxOtnIntervalOtu15minEntry 2 }
jnxOtnIntervalOtu15minBBE OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Interval 'n' 15 minute BBE counter"
::= { jnxOtnIntervalOtu15minEntry 3 }
jnxOtnIntervalOtu15minES OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Interval 'n' 15 minute ES counter"
::= { jnxOtnIntervalOtu15minEntry 4 }
jnxOtnIntervalOtu15minSES OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Interval 'n' 15 minute SES counter"
::= { jnxOtnIntervalOtu15minEntry 5 }
jnxOtnIntervalOtu15minUAS OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Interval 15 minute UAS counter"
::= { jnxOtnIntervalOtu15minEntry 6 }
jnxOtnIntervalOtu15minInvalidData OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Time elapsed for this 15 minute interval"
::= { jnxOtnIntervalOtu15minEntry 7 }
jnxOtnIntervalOtu15minTimeStamp OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Time elapsed for this 15 minute interval"
::= { jnxOtnIntervalOtu15minEntry 8 }
-- The OTN OTU Total (24 hour table)
jnxOtnTotalOtuTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxOtnTotalOtuEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about ODU Performance monitoring for this
interfaces on this router."
::= { jnxOtnPerformanceMonitoring 6 }
jnxOtnTotalOtuEntry OBJECT-TYPE
SYNTAX JnxOtnTotalOtuEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Performance data about ia 15 minute interface on
this router."
INDEX { ifIndex }
::= { jnxOtnTotalOtuTable 1 }
JnxOtnTotalOtuEntry ::=
SEQUENCE {
jnxOtnTotalOtuDayNumber
INTEGER,
jnxOtnTotalOtuBIP
Unsigned32,
jnxOtnTotalOtuBBE
Unsigned32,
jnxOtnTotalOtuES
Unsigned32,
jnxOtnTotalOtuSES
Unsigned32,
jnxOtnTotalOtuUAS
Unsigned32
}
jnxOtnTotalOtuDayNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Day 'n'number -- currently only one day is supported "
::= { jnxOtnTotalOtuEntry 1 }
jnxOtnTotalOtuBIP OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Total (1 day) BIP counter in an OTN OTU frame in the
in the previous 24 hour interval.
Invalid 15 minute intervals count as 0."
::= { jnxOtnTotalOtuEntry 2 }
jnxOtnTotalOtuBBE OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Total (1 day) BBE counter in an OTN OTU frame in the
in the previous 24 hour interval.
Invalid 15 minute intervals count as 0."
::= { jnxOtnTotalOtuEntry 3 }
jnxOtnTotalOtuES OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Total (1 day) ES counter in an OTN OTU frame in the
in the previous 24 hour interval.
Invalid 15 minute intervals count as 0."
::= { jnxOtnTotalOtuEntry 4 }
jnxOtnTotalOtuSES OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Total (1 day) SES counter in an OTN OTU frame in the
in the previous 24 hour interval.
Invalid 15 minute intervals count as 0."
::= { jnxOtnTotalOtuEntry 5 }
jnxOtnTotalOtuUAS OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Total (1 day) counter in an OTN OTU frame in the
in the previous 24 hour interval.
Invalid 15 minute intervals count as 0."
::= { jnxOtnTotalOtuEntry 6 }
-- FEC PM Data
-- OTN OTU FEC Current PM Data
jnxOtnCurrentOtuFec15minTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxOtnCurrentOtuFec15minEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about ODU Performance monitoring for this
interfaces on this router."
::= { jnxOtnPerformanceMonitoring 7 }
jnxOtnCurrentOtuFec15minEntry OBJECT-TYPE
SYNTAX JnxOtnCurrentOtuFec15minEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Performance data about ia 15 minute interface on
this router"
INDEX { ifIndex }
::= { jnxOtnCurrentOtuFec15minTable 1 }
JnxOtnCurrentOtuFec15minEntry ::=
SEQUENCE {
jnxOtnCurrentOtuFec15minCorrectedErrors
Unsigned32,
jnxOtnCurrentOtuFec15minCorrectedErrorRatioX
Unsigned32,
jnxOtnCurrentOtuFec15minCorrectedErrorRatioY
Unsigned32,
jnxOtnCurrentOtuFec15minUncorrectedWords
Unsigned32,
jnxOtnCurrentOtuFec15minElapsedTime
Unsigned32
}
jnxOtnCurrentOtuFec15minCorrectedErrors OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Current 15 minute FEC Corrected Errors counter"
::= { jnxOtnCurrentOtuFec15minEntry 1 }
jnxOtnCurrentOtuFec15minCorrectedErrorRatioX OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Current 15 minute CorrectedErrorRatioX counter"
::= { jnxOtnCurrentOtuFec15minEntry 2 }
jnxOtnCurrentOtuFec15minCorrectedErrorRatioY OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Current 15 minute CorrectedErrorRatioY exponent"
::= { jnxOtnCurrentOtuFec15minEntry 3 }
jnxOtnCurrentOtuFec15minUncorrectedWords OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Current 15 minute FEC UnCorrected Words counter"
::= { jnxOtnCurrentOtuFec15minEntry 4 }
jnxOtnCurrentOtuFec15minElapsedTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Time elapsed for this 15 minute interval"
::= { jnxOtnCurrentOtuFec15minEntry 5 }
-- OTN OTU FEC Interval PM Data
jnxOtnIntervalOtuFec15minTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxOtnIntervalOtuFec15minEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about ODU Performance monitoring for this
interfaces on this router."
::= { jnxOtnPerformanceMonitoring 8 }
jnxOtnIntervalOtuFec15minEntry OBJECT-TYPE
SYNTAX JnxOtnIntervalOtuFec15minEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Performance data about ia 15 minute interface on
this router"
INDEX { ifIndex, jnxOtnIntervalOtuFec15minIntervalNumber }
::= { jnxOtnIntervalOtuFec15minTable 1 }
JnxOtnIntervalOtuFec15minEntry ::=
SEQUENCE {
jnxOtnIntervalOtuFec15minIntervalNumber
INTEGER,
jnxOtnIntervalOtuFec15minCorrectedErrors
Unsigned32,
jnxOtnIntervalOtuFec15minCorrectedErrorRatioX
Unsigned32,
jnxOtnIntervalOtuFec15minCorrectedErrorRatioY
Unsigned32,
jnxOtnIntervalOtuFec15minUncorrectedWords
Unsigned32,
jnxOtnIntervalOtuFec15minTimeStamp
DateAndTime
}
jnxOtnIntervalOtuFec15minIntervalNumber OBJECT-TYPE
SYNTAX INTEGER (1..96)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A number between 1 and 96, where 1 is the most
recently completed 15 minute interval and 96 is
the 15 minutes interval completed 23 hours and 45
minutes prior to interval 1."
::= { jnxOtnIntervalOtuFec15minEntry 1 }
jnxOtnIntervalOtuFec15minCorrectedErrors OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Interval 15 minute FEC Corrected Errors counter"
::= { jnxOtnIntervalOtuFec15minEntry 2 }
jnxOtnIntervalOtuFec15minCorrectedErrorRatioX OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Interval 15 minute CorrectedErrorRatioX counter"
::= { jnxOtnIntervalOtuFec15minEntry 3 }
jnxOtnIntervalOtuFec15minCorrectedErrorRatioY OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Interval 15 minute CorrectedErrorRatioY exponent"
::= { jnxOtnIntervalOtuFec15minEntry 4 }
jnxOtnIntervalOtuFec15minUncorrectedWords OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Interval 15 minute FEC UnCorrected Words counter"
::= { jnxOtnIntervalOtuFec15minEntry 5 }
jnxOtnIntervalOtuFec15minTimeStamp OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Time elapsed for this 15 minute interval"
::= { jnxOtnIntervalOtuFec15minEntry 6 }
-- OTN OTU FEC total (24hr) PM Data
jnxOtnTotalOtuFecTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxOtnTotalOtuFecEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about ODU Performance monitoring for this
interfaces on this router."
::= { jnxOtnPerformanceMonitoring 9 }
jnxOtnTotalOtuFecEntry OBJECT-TYPE
SYNTAX JnxOtnTotalOtuFecEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Performance data about ia 15 minute interface on
this router"
INDEX { ifIndex }
::= { jnxOtnTotalOtuFecTable 1 }
JnxOtnTotalOtuFecEntry ::=
SEQUENCE {
jnxOtnTotalOtuFecDayNumber
INTEGER,
jnxOtnTotalOtuFecCorrectedErrors
Unsigned32,
jnxOtnTotalOtuFecUncorrectedWords
Unsigned32
}
jnxOtnTotalOtuFecDayNumber OBJECT-TYPE
SYNTAX INTEGER (1..96)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A number between 1 and 96, where 1 is the most
recently completed 15 minute interval and 96 is
the 15 minutes interval completed 23 hours and 45
minutes prior to interval 1."
::= { jnxOtnTotalOtuFecEntry 1 }
jnxOtnTotalOtuFecCorrectedErrors OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Interval 15 minute FEC Corrected Errors counter
in an OTN frame in the in the previous 24 hour interval.
Invalid 15 minute intervals count as 0"
::= { jnxOtnTotalOtuFecEntry 2 }
jnxOtnTotalOtuFecUncorrectedWords OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Interval 15 minute FEC UnCorrected Words counter
in an OTN frame in the in the previous 24 hour interval.
Invalid 15 minute intervals count as 0."
::= { jnxOtnTotalOtuFecEntry 3 }
--
-- Configuration Management Notifications
--
jnxOtnNotificationPrefix OBJECT IDENTIFIER ::= { jnxOtnNotifications 0 }
jnxOtnAlarmSet NOTIFICATION-TYPE
OBJECTS { ifDescr,
jnxOtnLastAlarmId,
jnxOtnCurrentAlarms,
jnxOtnLastAlarmDate }
STATUS current
DESCRIPTION
"Notification of a recently set Otn alarm."
::= { jnxOtnNotificationPrefix 1 }
jnxOtnAlarmCleared NOTIFICATION-TYPE
OBJECTS { ifDescr,
jnxOtnLastAlarmId,
jnxOtnCurrentAlarms,
jnxOtnLastAlarmDate }
STATUS current
DESCRIPTION
"Notification of a recently cleared Otn alarm."
::= { jnxOtnNotificationPrefix 2 }
END
|