This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathOPT-IF-MIB
6261 lines (5619 loc) · 197 KB
/
OPT-IF-MIB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
OPT-IF-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Gauge32, Integer32,
Unsigned32, transmission
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, RowPointer, RowStatus, TruthValue
FROM SNMPv2-TC
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
ifIndex
FROM IF-MIB;
-- This is the MIB module for the OTN Interface objects.
optIfMibModule MODULE-IDENTITY
LAST-UPDATED "200308130000Z"
ORGANIZATION "IETF AToM MIB Working Group"
CONTACT-INFO
"WG charter:
http://www.ietf.org/html.charters/atommib-charter.html
Mailing Lists:
General Discussion: [email protected]
To Subscribe: [email protected]
Editor: Hing-Kam Lam
Postal: Lucent Technologies, Room 4C-616
101 Crawfords Corner Road
Holmdel, NJ 07733
Tel: +1 732 949 8338
Email: [email protected]"
DESCRIPTION
"The MIB module to describe pre-OTN and OTN interfaces.
Copyright (C) The Internet Society (2003). This version
of this MIB module is part of RFC 3591; see the RFC
itself for full legal notices."
REVISION "200308130000Z"
DESCRIPTION
"Initial version, published as RFC 3591."
::={ transmission 133 }
-- textual conventions
OptIfAcTI ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The trace identifier (TI) accepted at the receiver."
SYNTAX OCTET STRING (SIZE(64))
OptIfBitRateK ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates the index 'k' that is used to
represent a supported bit rate and the different
versions of OPUk, ODUk and OTUk.
Allowed values of k are defined in ITU-T G.709.
Currently allowed values in G.709 are:
k=1 represents an approximate bit rate of 2.5 Gbit/s,
k=2 represents an approximate bit rate of 10 Gbit/s,
k=3 represents an approximate bit rate of 40 Gbit/s."
SYNTAX Integer32
OptIfDEGM ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates the threshold level for declaring a Degraded Signal
defect (dDEG). A dDEG shall be declared if OptIfDEGM
consecutive bad PM Seconds are detected."
SYNTAX Unsigned32 (2..10)
OptIfDEGThr ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates the threshold level for declaring a performance
monitoring (PM) Second to be bad. A PM Second is declared bad if
the percentage of detected errored blocks in that second is
greater than or equal to OptIfDEGThr."
SYNTAX Unsigned32 (1..100)
OptIfDirectionality ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates the directionality of an entity."
SYNTAX INTEGER {
sink(1),
source(2),
bidirectional(3)
}
OptIfSinkOrSource ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates the directionality of an entity
that is allowed only to be a source or sink."
SYNTAX INTEGER {
sink(1),
source(2)
}
OptIfExDAPI ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The Destination Access Point Identifier (DAPI)
expected by the receiver."
SYNTAX OCTET STRING (SIZE(16))
OptIfExSAPI ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The Source Access Point Identifier (SAPI)
expected by the receiver."
SYNTAX OCTET STRING (SIZE(16))
OptIfIntervalNumber ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Uniquely identifies a 15-minute interval. The interval
identified by 1 is the most recently completed interval, and
the interval identified by n is the interval immediately
preceding the one identified by n-1."
SYNTAX Unsigned32 (1..96)
OptIfTIMDetMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates the mode of the Trace Identifier Mismatch (TIM)
Detection function."
SYNTAX INTEGER {
off(1),
dapi(2),
sapi(3),
both(4)
}
OptIfTxTI ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The trace identifier (TI) transmitted."
SYNTAX OCTET STRING (SIZE(64))
-- object groups
optIfObjects OBJECT IDENTIFIER ::= { optIfMibModule 1 }
optIfConfs OBJECT IDENTIFIER ::= { optIfMibModule 2 }
optIfOTMn OBJECT IDENTIFIER ::= { optIfObjects 1 }
optIfPerfMon OBJECT IDENTIFIER ::= { optIfObjects 2 }
optIfOTSn OBJECT IDENTIFIER ::= { optIfObjects 3 }
optIfOMSn OBJECT IDENTIFIER ::= { optIfObjects 4 }
optIfOChGroup OBJECT IDENTIFIER ::= { optIfObjects 5 }
optIfOCh OBJECT IDENTIFIER ::= { optIfObjects 6 }
optIfOTUk OBJECT IDENTIFIER ::= { optIfObjects 7 }
optIfODUk OBJECT IDENTIFIER ::= { optIfObjects 8 }
optIfODUkT OBJECT IDENTIFIER ::= { optIfObjects 9 }
optIfGroups OBJECT IDENTIFIER ::= { optIfConfs 1 }
optIfCompl OBJECT IDENTIFIER ::= { optIfConfs 2 }
-- the optIfOTMn group
-- This group defines the OTM structure information of an
-- optical interface.
-- OTMn Table
optIfOTMnTable OBJECT-TYPE
SYNTAX SEQUENCE OF OptIfOTMnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of OTMn structure information."
::= { optIfOTMn 1 }
optIfOTMnEntry OBJECT-TYPE
SYNTAX OptIfOTMnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row that contains the OTMn structure
information of an optical interface."
INDEX { ifIndex }
::= { optIfOTMnTable 1 }
OptIfOTMnEntry ::=
SEQUENCE {
optIfOTMnOrder Unsigned32,
optIfOTMnReduced TruthValue,
optIfOTMnBitRates BITS,
optIfOTMnInterfaceType SnmpAdminString,
optIfOTMnTcmMax Unsigned32,
optIfOTMnOpticalReach INTEGER
}
optIfOTMnOrder OBJECT-TYPE
SYNTAX Unsigned32 (1..900)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the order of the OTM, which
represents the maximum number of wavelengths that can be
supported at the bit rate(s) supported on the interface."
::= { optIfOTMnEntry 1 }
optIfOTMnReduced OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether a reduced or full
functionality is supported at the interface. A value of
true means reduced. A value of false means full."
::= { optIfOTMnEntry 2 }
optIfOTMnBitRates OBJECT-TYPE
SYNTAX BITS { bitRateK1(0), bitRateK2(1), bitRateK3(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute is a bit map representing the bit
rate or set of bit rates supported on the interface.
The meaning of each bit position is as follows:
bitRateK1(0) is set if the 2.5 Gbit/s rate is supported
bitRateK2(1) is set if the 10 Gbit/s rate is supported
bitRateK3(2) is set if the 40 Gbit/s rate is supported
Note that each bit position corresponds to one possible
value of the type OptIfBitRateK.
The default value of this attribute is system specific."
::= { optIfOTMnEntry 3 }
optIfOTMnInterfaceType OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the type of interface. The value of
this attribute will affect the behavior of the OTM with
respect to presence/absence of OTM Overhead Signal (OOS)
processing and TCM activation. For an IrDI interface,
there is no OOS processing and TCM activation is limited
to n levels as specified by a TCM level threshold.
This object contains two fields that are separated by
whitespace. The possible values are:
field 1: one of the 4-character ASCII strings
'IrDI' or 'IaDI'
field 2: free-form text consisting of printable
UTF-8 encoded characters
Note that field 2 is optional. If it is not present then there
is no requirement for trailing whitespace after field 1.
The default values are as follows:
field 1: 'IaDI'
field 2: an empty string."
::= { optIfOTMnEntry 4 }
optIfOTMnTcmMax OBJECT-TYPE
SYNTAX Unsigned32 (0..6)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object identifies the maximum number of TCM
levels allowed for any Optical Channel contained
in this OTM. A new TCM activation will be rejected
if the requested level is greater than the threshold.
If InterfaceType object specifies a type of 'IaDI'
for this OTM, then this attribute is irrelevant.
Possible values: unsigned integers in the range
from 0 to 6 inclusive.
Default value: 3."
::= { optIfOTMnEntry 5 }
optIfOTMnOpticalReach OBJECT-TYPE
SYNTAX INTEGER { intraOffice(1), shortHaul(2), longHaul(3),
veryLongHaul(4), ultraLongHaul(5) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the length the optical signal
may travel before requiring termination or regeneration.
The meaning of the enumeration are:
intraOffice(1) - intra-office (as defined in ITU-T G.957)
shortHaul(2) - short haul (as defined in ITU-T G.957)
longHaul(3) - long haul (as defined in ITU-T G.957)
veryLongHaul(4) - very long haul (as defined in ITU-T G.691)
ultraLongHaul(5)- ultra long haul (as defined in ITU-T G.691)"
::= { optIfOTMnEntry 6 }
-- the optIfPerfMon group
-- This group defines performance monitoring objects for all
-- layers.
-- PM interval table
optIfPerfMonIntervalTable OBJECT-TYPE
SYNTAX SEQUENCE OF OptIfPerfMonIntervalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of 15-minute performance monitoring interval
information."
::= { optIfPerfMon 1 }
optIfPerfMonIntervalEntry OBJECT-TYPE
SYNTAX OptIfPerfMonIntervalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row that contains 15-minute performance
monitoring interval information of an interface."
INDEX { ifIndex }
::= { optIfPerfMonIntervalTable 1 }
OptIfPerfMonIntervalEntry ::=
SEQUENCE {
optIfPerfMonCurrentTimeElapsed Gauge32,
optIfPerfMonCurDayTimeElapsed Gauge32,
optIfPerfMonIntervalNumIntervals Unsigned32,
optIfPerfMonIntervalNumInvalidIntervals Unsigned32
}
optIfPerfMonCurrentTimeElapsed OBJECT-TYPE
SYNTAX Gauge32 (0..900)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of seconds elapsed in the current 15-minute
performance monitoring interval.
If, for some reason, such as an adjustment in the NE's
time-of-day clock, the number of seconds elapsed exceeds
the maximum value, then the maximum value will be returned."
::= { optIfPerfMonIntervalEntry 1 }
optIfPerfMonCurDayTimeElapsed OBJECT-TYPE
SYNTAX Gauge32 (0..86400)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of seconds elapsed in the current 24-hour interval
performance monitoring period.
If, for some reason, such as an adjustment in the NE's
time-of-day clock, the number of seconds elapsed exceeds
the maximum value, then the maximum value will be returned."
::= { optIfPerfMonIntervalEntry 2 }
optIfPerfMonIntervalNumIntervals OBJECT-TYPE
SYNTAX Unsigned32 (0..96)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of 15-minute intervals for which performance
monitoring data is available. The number is the same for all
the associated sub layers of the interface.
An optical interface must be capable of supporting at least
n intervals, where n is defined as follows:
The minimum value of n is 4.
The default of n is 32.
The maximum value of n is 96.
The value of this object will be n unless performance
monitoring was (re-)started for the interface within the last
(n*15) minutes, in which case the value will be the number of
complete 15-minute intervals since measurement was
(re-)started."
::= { optIfPerfMonIntervalEntry 3 }
optIfPerfMonIntervalNumInvalidIntervals OBJECT-TYPE
SYNTAX Unsigned32 (0..96)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of intervals in the range from 0 to
optIfPerfMonIntervalNumIntervals for which no performance
monitoring data is available and/or the data is invalid."
::= { optIfPerfMonIntervalEntry 4 }
-- the optIfOTSn group
-- This group handles the configuration and performance
-- monitoring objects for OTS layers.
-- OTSn config table
optIfOTSnConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF OptIfOTSnConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of OTSn configuration information."
::= { optIfOTSn 1 }
optIfOTSnConfigEntry OBJECT-TYPE
SYNTAX OptIfOTSnConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row that contains OTSn configuration
information of an interface."
INDEX { ifIndex }
::= { optIfOTSnConfigTable 1 }
OptIfOTSnConfigEntry ::=
SEQUENCE {
optIfOTSnDirectionality OptIfDirectionality,
optIfOTSnAprStatus SnmpAdminString,
optIfOTSnAprControl SnmpAdminString,
optIfOTSnTraceIdentifierTransmitted OptIfTxTI,
optIfOTSnDAPIExpected OptIfExDAPI,
optIfOTSnSAPIExpected OptIfExSAPI,
optIfOTSnTraceIdentifierAccepted OptIfAcTI,
optIfOTSnTIMDetMode OptIfTIMDetMode,
optIfOTSnTIMActEnabled TruthValue,
optIfOTSnCurrentStatus BITS
}
optIfOTSnDirectionality OBJECT-TYPE
SYNTAX OptIfDirectionality
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the directionality of the entity."
::= { optIfOTSnConfigEntry 1 }
optIfOTSnAprStatus OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute indicates the status of the Automatic
Power Reduction (APR) function of the entity. Valid
values are 'on' and 'off'."
::= { optIfOTSnConfigEntry 2 }
optIfOTSnAprControl OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is a UTF-8 encoded string that specifies Automatic
Power Reduction (APR) control actions requested of this entity
(when written) and that returns the current APR control state
of this entity (when read). The values are implementation-defined.
Any implementation that instantiates this object must document the
set of values that it allows to be written, the set of values
that it will return, and what each of those values means."
::= { optIfOTSnConfigEntry 3 }
optIfOTSnTraceIdentifierTransmitted OBJECT-TYPE
SYNTAX OptIfTxTI
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The trace identifier transmitted.
This object is applicable when optIfOTSnDirectionality has the
value source(2) or bidirectional(3).
This object does not apply to reduced-capability systems (i.e.,
those for which optIfOTMnReduced has the value true(1)) or
at IrDI interfaces (i.e., when optIfOTMnInterfaceType field 1
has the value 'IrDI').
If no value is ever set by a management entity for the object
optIfOTSnTraceIdentifierTransmitted, system-specific default
value will be used. Any implementation that instantiates this
object must document the system-specific default value or how it
is derived."
::= { optIfOTSnConfigEntry 4 }
optIfOTSnDAPIExpected OBJECT-TYPE
SYNTAX OptIfExDAPI
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The DAPI expected by the receiver.
This object is applicable when optIfOTSnDirectionality has the
value sink(1) or bidirectional(3). It has no effect if
optIfOTSnTIMDetMode has the value off(1) or sapi(3).
This object does not apply to reduced-capability systems (i.e.,
those for which optIfOTMnReduced has the value true(1)) or
at IrDI interfaces (i.e., when optIfOTMnInterfaceType field 1
has the value 'IrDI')."
::= { optIfOTSnConfigEntry 5 }
optIfOTSnSAPIExpected OBJECT-TYPE
SYNTAX OptIfExSAPI
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The SAPI expected by the receiver.
This object is applicable when optIfOTSnDirectionality has the
value sink(1) or bidirectional(3). It has no effect if
optIfOTSnTIMDetMode has the value off(1) or dapi(2).
This object does not apply to reduced-capability systems (i.e.,
those for which optIfOTMnReduced has the value true(1)) or
at IrDI interfaces (i.e., when optIfOTMnInterfaceType field 1
has the value 'IrDI')."
::= { optIfOTSnConfigEntry 6 }
optIfOTSnTraceIdentifierAccepted OBJECT-TYPE
SYNTAX OptIfAcTI
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The actual trace identifier received.
This object is applicable when optIfOTSnDirectionality has the
value sink(1) or bidirectional(3). Its value is unspecified
if optIfOTSnCurrentStatus has either or both of the
losO(5) and los(6) bits set.
This object does not apply to reduced-capability systems (i.e.,
those for which optIfOTMnReduced has the value true(1)) or
at IrDI interfaces (i.e., when optIfOTMnInterfaceType field 1
has the value 'IrDI')."
::= { optIfOTSnConfigEntry 7 }
optIfOTSnTIMDetMode OBJECT-TYPE
SYNTAX OptIfTIMDetMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the mode of the Trace Identifier Mismatch (TIM)
Detection function. This object is applicable
when optIfOTSnDirectionality has the value sink(1)
or bidirectional(3). The default value is off(1).
This object does not apply to reduced-capability systems (i.e.,
those for which optIfOTMnReduced has the value true(1)) or
at IrDI interfaces (i.e., when optIfOTMnInterfaceType field 1
has the value 'IrDI').
The default value of this object is off(1)."
::= { optIfOTSnConfigEntry 8 }
optIfOTSnTIMActEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the Trace Identifier Mismatch (TIM)
Consequent Action function is enabled. This object
is applicable when optIfOTSnDirectionality has the
value sink(1) or bidirectional(3). It has no effect
when the value of optIfOTSnTIMDetMode is off(1).
This object does not apply to reduced-capability systems (i.e.,
those for which optIfOTMnReduced has the value true(1)) or
at IrDI interfaces (i.e., when optIfOTMnInterfaceType field 1
has the value 'IrDI').
The default value of this object is false(2)."
::= { optIfOTSnConfigEntry 9 }
optIfOTSnCurrentStatus OBJECT-TYPE
SYNTAX BITS {
bdiP(0),
bdiO(1),
bdi(2),
tim(3),
losP(4),
losO(5),
los(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the defect condition of the entity, if any.
This object is applicable when optIfOTSnDirectionality
has the value sink(1) or bidirectional(3). In
reduced-capability systems or at IrDI interfaces
the only bit position that may be set is los(6)."
::= { optIfOTSnConfigEntry 10 }
-- OTSn sink current table
-- Contains data for the current 15-minute performance monitoring
-- interval.
optIfOTSnSinkCurrentTable OBJECT-TYPE
SYNTAX SEQUENCE OF OptIfOTSnSinkCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of OTSn sink performance monitoring information for
the current 15-minute interval."
::= { optIfOTSn 2 }
optIfOTSnSinkCurrentEntry OBJECT-TYPE
SYNTAX OptIfOTSnSinkCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row that contains OTSn sink performance
monitoring information of an interface for the current
15-minute interval."
INDEX { ifIndex }
::= { optIfOTSnSinkCurrentTable 1 }
OptIfOTSnSinkCurrentEntry ::=
SEQUENCE {
optIfOTSnSinkCurrentSuspectedFlag TruthValue,
optIfOTSnSinkCurrentInputPower Integer32,
optIfOTSnSinkCurrentLowInputPower Integer32,
optIfOTSnSinkCurrentHighInputPower Integer32,
optIfOTSnSinkCurrentLowerInputPowerThreshold Integer32,
optIfOTSnSinkCurrentUpperInputPowerThreshold Integer32,
optIfOTSnSinkCurrentOutputPower Integer32,
optIfOTSnSinkCurrentLowOutputPower Integer32,
optIfOTSnSinkCurrentHighOutputPower Integer32,
optIfOTSnSinkCurrentLowerOutputPowerThreshold Integer32,
optIfOTSnSinkCurrentUpperOutputPowerThreshold Integer32
}
optIfOTSnSinkCurrentSuspectedFlag OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If true, the data in this entry may be unreliable."
::= { optIfOTSnSinkCurrentEntry 1 }
optIfOTSnSinkCurrentInputPower OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The optical power monitored at the input."
::= { optIfOTSnSinkCurrentEntry 2 }
optIfOTSnSinkCurrentLowInputPower OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lowest optical power monitored at the input during the
current 15-minute interval."
::= { optIfOTSnSinkCurrentEntry 3 }
optIfOTSnSinkCurrentHighInputPower OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The highest optical power monitored at the input during the
current 15-minute interval."
::= { optIfOTSnSinkCurrentEntry 4 }
optIfOTSnSinkCurrentLowerInputPowerThreshold OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lower limit threshold on input power. If
optIfOTSnSinkCurrentInputPower drops to this value or below,
a Threshold Crossing Alert (TCA) should be sent."
::= { optIfOTSnSinkCurrentEntry 5 }
optIfOTSnSinkCurrentUpperInputPowerThreshold OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The upper limit threshold on input power. If
optIfOTSnSinkCurrentInputPower reaches or exceeds this value,
a Threshold Crossing Alert (TCA) should be sent."
::= { optIfOTSnSinkCurrentEntry 6 }
optIfOTSnSinkCurrentOutputPower OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The optical power monitored at the output."
::= { optIfOTSnSinkCurrentEntry 7 }
optIfOTSnSinkCurrentLowOutputPower OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lowest optical power monitored at the output during the
current 15-minute interval."
::= { optIfOTSnSinkCurrentEntry 8 }
optIfOTSnSinkCurrentHighOutputPower OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The highest optical power monitored at the output during the
current 15-minute interval."
::= { optIfOTSnSinkCurrentEntry 9 }
optIfOTSnSinkCurrentLowerOutputPowerThreshold OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lower limit threshold on output power. If
optIfOTSnSinkCurrentOutputPower drops to this value or below,
a Threshold Crossing Alert (TCA) should be sent."
::= { optIfOTSnSinkCurrentEntry 10 }
optIfOTSnSinkCurrentUpperOutputPowerThreshold OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The upper limit threshold on output power. If
optIfOTSnSinkCurrentOutputPower reaches or exceeds this value,
a Threshold Crossing Alert (TCA) should be sent."
::= { optIfOTSnSinkCurrentEntry 11 }
-- OTSn sink interval table
-- Contains data for previous 15-minute performance monitoring
-- intervals.
optIfOTSnSinkIntervalTable OBJECT-TYPE
SYNTAX SEQUENCE OF OptIfOTSnSinkIntervalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of historical OTSn sink performance monitoring
information."
::= { optIfOTSn 3 }
optIfOTSnSinkIntervalEntry OBJECT-TYPE
SYNTAX OptIfOTSnSinkIntervalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row that contains OTSn sink performance
monitoring information of an interface during a particular
historical interval."
INDEX { ifIndex, optIfOTSnSinkIntervalNumber }
::= { optIfOTSnSinkIntervalTable 1 }
OptIfOTSnSinkIntervalEntry ::=
SEQUENCE {
optIfOTSnSinkIntervalNumber OptIfIntervalNumber,
optIfOTSnSinkIntervalSuspectedFlag TruthValue,
optIfOTSnSinkIntervalLastInputPower Integer32,
optIfOTSnSinkIntervalLowInputPower Integer32,
optIfOTSnSinkIntervalHighInputPower Integer32,
optIfOTSnSinkIntervalLastOutputPower Integer32,
optIfOTSnSinkIntervalLowOutputPower Integer32,
optIfOTSnSinkIntervalHighOutputPower Integer32
}
optIfOTSnSinkIntervalNumber OBJECT-TYPE
SYNTAX OptIfIntervalNumber
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Uniquely identifies the interval."
::= { optIfOTSnSinkIntervalEntry 1 }
optIfOTSnSinkIntervalSuspectedFlag OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If true, the data in this entry may be unreliable."
::= { optIfOTSnSinkIntervalEntry 2 }
optIfOTSnSinkIntervalLastInputPower OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The last optical power monitored at the input during the
interval."
::= { optIfOTSnSinkIntervalEntry 3 }
optIfOTSnSinkIntervalLowInputPower OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lowest optical power monitored at the input during the
interval."
::= { optIfOTSnSinkIntervalEntry 4 }
optIfOTSnSinkIntervalHighInputPower OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The highest optical power monitored at the input during the
interval."
::= { optIfOTSnSinkIntervalEntry 5 }
optIfOTSnSinkIntervalLastOutputPower OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The last optical power monitored at the output during the
interval."
::= { optIfOTSnSinkIntervalEntry 6 }
optIfOTSnSinkIntervalLowOutputPower OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lowest optical power monitored at the output during the
interval."
::= { optIfOTSnSinkIntervalEntry 7 }
optIfOTSnSinkIntervalHighOutputPower OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The highest optical power monitored at the output during the
interval."
::= { optIfOTSnSinkIntervalEntry 8 }
-- OTSn sink current day table
-- Contains data for the current 24-hour performance
-- monitoring interval.
optIfOTSnSinkCurDayTable OBJECT-TYPE
SYNTAX SEQUENCE OF OptIfOTSnSinkCurDayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of OTSn sink performance monitoring information for
the current 24-hour interval."
::= { optIfOTSn 4 }
optIfOTSnSinkCurDayEntry OBJECT-TYPE
SYNTAX OptIfOTSnSinkCurDayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row that contains OTSn sink performance
monitoring information of an interface for the current
24-hour interval."
INDEX { ifIndex }
::= { optIfOTSnSinkCurDayTable 1 }
OptIfOTSnSinkCurDayEntry ::=
SEQUENCE {
optIfOTSnSinkCurDaySuspectedFlag TruthValue,
optIfOTSnSinkCurDayLowInputPower Integer32,
optIfOTSnSinkCurDayHighInputPower Integer32,
optIfOTSnSinkCurDayLowOutputPower Integer32,
optIfOTSnSinkCurDayHighOutputPower Integer32
}
optIfOTSnSinkCurDaySuspectedFlag OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If true, the data in this entry may be unreliable."
::= { optIfOTSnSinkCurDayEntry 1 }
optIfOTSnSinkCurDayLowInputPower OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lowest optical power monitored at the input during the
current 24-hour interval."
::= { optIfOTSnSinkCurDayEntry 2 }
optIfOTSnSinkCurDayHighInputPower OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The highest optical power monitored at the input during the
current 24-hour interval."
::= { optIfOTSnSinkCurDayEntry 3 }
optIfOTSnSinkCurDayLowOutputPower OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lowest optical power monitored at the output during the
current 24-hour interval."
::= { optIfOTSnSinkCurDayEntry 4 }
optIfOTSnSinkCurDayHighOutputPower OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The highest optical power monitored at the output during the
current 24-hour interval."
::= { optIfOTSnSinkCurDayEntry 5 }
-- OTSn sink previous day table
-- Contains data for the previous 24-hour performance
-- monitoring interval.
optIfOTSnSinkPrevDayTable OBJECT-TYPE
SYNTAX SEQUENCE OF OptIfOTSnSinkPrevDayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of OTSn sink performance monitoring information for
the previous 24-hour interval."
::= { optIfOTSn 5 }
optIfOTSnSinkPrevDayEntry OBJECT-TYPE
SYNTAX OptIfOTSnSinkPrevDayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row that contains OTSn sink performance
monitoring information of an interface for the previous
24-hour interval."
INDEX { ifIndex }
::= { optIfOTSnSinkPrevDayTable 1 }
OptIfOTSnSinkPrevDayEntry ::=
SEQUENCE {
optIfOTSnSinkPrevDaySuspectedFlag TruthValue,
optIfOTSnSinkPrevDayLastInputPower Integer32,
optIfOTSnSinkPrevDayLowInputPower Integer32,
optIfOTSnSinkPrevDayHighInputPower Integer32,
optIfOTSnSinkPrevDayLastOutputPower Integer32,
optIfOTSnSinkPrevDayLowOutputPower Integer32,
optIfOTSnSinkPrevDayHighOutputPower Integer32
}
optIfOTSnSinkPrevDaySuspectedFlag OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If true, the data in this entry may be unreliable."
::= { optIfOTSnSinkPrevDayEntry 1 }
optIfOTSnSinkPrevDayLastInputPower OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The last optical power monitored at the input during the
previous 24-hour interval."
::= { optIfOTSnSinkPrevDayEntry 2 }
optIfOTSnSinkPrevDayLowInputPower OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lowest optical power monitored at the input during the
previous 24-hour interval."
::= { optIfOTSnSinkPrevDayEntry 3 }
optIfOTSnSinkPrevDayHighInputPower OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The highest optical power monitored at the input during the
previous 24-hour interval."
::= { optIfOTSnSinkPrevDayEntry 4 }
optIfOTSnSinkPrevDayLastOutputPower OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 dbm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The last optical power monitored at the output during the