summaryrefslogtreecommitdiff
path: root/MIBS/infinera/LUM-IFOTNMON-MIB
blob: 5ef9f3c68e1231842c9dba88711009ff88643121 (plain)
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
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
LUM-IFOTNMON-MIB DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-IDENTITY, OBJECT-TYPE, Unsigned32, Integer32
        FROM SNMPv2-SMI
    OBJECT-GROUP, MODULE-COMPLIANCE
        FROM SNMPv2-CONF
    DateAndTime
        FROM SNMPv2-TC
    lumModules, lumIfOtnMonMIB
        FROM LUM-REG
    SignalStatusWithNA, FaultStatusWithNA, DisplayStringWithNA, MgmtNameString,
    Unsigned32WithNA, TruthValueWithNA, TcmMode, TcmNumber, OtnTIMDetModeWithNA,
    EnabledDisabledWithNA, OtnAlarmMode, OtnTypeWithNA, OtnDirectionWithNA
        FROM LUM-TC;

lumIfOtnMonMIBModule MODULE-IDENTITY
    LAST-UPDATED
        "201706220000Z" -- June 22nd 2017
    ORGANIZATION
        "Infinera Corporation"
    CONTACT-INFO
        "techsupport@infinera.com"
    DESCRIPTION
        "The MIB module for management of OTN monitor objects (SM, TCM, PM
    and trace objects).

        This module describes the SM, TCM and PM in ITU-T Recommendation
        G.709.

    The references refers to the following:
    G.709/Y.1331 (03/2003)
    G.798 (06/2004)
    G.806 (03/2006)

        The tables contained in this MIB are:

        (1) The General group contains some general attributes as time stamps
            and tables sizes.

        (2) The sm group contains information and configuration for the SM
	    section objects.

        (3) The tandem connection monitoring (tcm) group contains information
            and configuration for the Tcm layer objects.

        (4) The path monitoring (pm) group contains information and configu-
            ration for the Pm layer objects.

        (5) The trace group contains information and configuration for the
            trace objects defined in G.709.

"
    REVISION
        "201706220000Z" -- June 22nd 2017
    DESCRIPTION
         "Changes made for release r29.0:
          - Enabled SNMP-write for operator specific transmitted mon-trace.
          - Corrected SNMP Mon-trace values when N/A.
          - Changed ORGANIZATION and CONTACT-INFO"
    REVISION
        "201611300000Z" -- November 30th 2016
    DESCRIPTION
        "Changes made for release r28:
        - Added tp100gotnii board."
   REVISION
        "201611040000Z" -- November 4th 2016
    DESCRIPTION
        "Changes made for patch release r27.0.3:
        - Enabled Read-Write to Loopback and TTI attributes via SNMP."
    REVISION
        "201505290000Z" -- May 29th 2015
    DESCRIPTION
        "Changes made for release r25:
        - "
    REVISION
        "201409300000Z" -- September 30th 2014
    DESCRIPTION
        "Changes made for release r23.1:
        - Added mxp100gotn board."
    REVISION
        "201405160000Z" -- May 16th 2014
    DESCRIPTION
        "Changes made for release r23:
        - Added TcmSwitchCriteria object.
        - Changed board name from tp10gotn to tphex10gotn."
    REVISION
        "201311150000Z" -- November 15th 2013
    DESCRIPTION
        "Changes made for release r22:
        - Added tp10gotn, tp100gotn board."
    REVISION
        "201305010000Z" -- May 1st 2013
    DESCRIPTION
        "The initial revision of this module."
    ::= { lumModules 55 }


-- ----------------------------------------------------
-- Compliance area, containing groups and compliance
-- specifications.
-- ----------------------------------------------------

lumIfOtnMonConfs OBJECT IDENTIFIER ::= { lumIfOtnMonMIB 1 }
lumIfOtnMonGroups OBJECT IDENTIFIER ::= { lumIfOtnMonConfs 1 }
lumIfOtnMonCompl OBJECT IDENTIFIER ::= { lumIfOtnMonConfs 2 }


-- ----------------------------------------------------
-- Root for objects in the IFOTN MIB
-- ----------------------------------------------------

lumIfOtnMonMIBObjects OBJECT IDENTIFIER ::= { lumIfOtnMonMIB 2 }


-- ----------------------------------------------------
-- This MIB contains the following groups:
-- ----------------------------------------------------

ifOtnMonGeneral OBJECT IDENTIFIER ::= { lumIfOtnMonMIBObjects 1 }
ifOtnMonSmList OBJECT IDENTIFIER ::= { lumIfOtnMonMIBObjects 2 }
ifOtnMonTcmList OBJECT IDENTIFIER ::= { lumIfOtnMonMIBObjects 3 }
ifOtnMonPmList OBJECT IDENTIFIER ::= { lumIfOtnMonMIBObjects 4 }
ifOtnMonTraceList OBJECT IDENTIFIER ::= { lumIfOtnMonMIBObjects 5 }

-- ----------------------------------------------------
-- General group
-- ----------------------------------------------------

ifOtnMonGeneralConfigLastChangeTime OBJECT-TYPE
    SYNTAX      DateAndTime
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The time when the configuration of the MIB was
        last changed.

"
    ::= { ifOtnMonGeneral 1 }

ifOtnMonGeneralStateLastChangeTime OBJECT-TYPE
    SYNTAX      DateAndTime
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The time when the state of the MIB was last
        changed.

"
    ::= { ifOtnMonGeneral 2 }

ifOtnMonGeneralIfOtnMonSmTableSize OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Size of SM table.

"
    ::= { ifOtnMonGeneral 3 }

ifOtnMonGeneralIfOtnMonSmConfigLastChangeTime OBJECT-TYPE
    SYNTAX      DateAndTime
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The time when the configuration of the table was
        last changed.

"
    ::= { ifOtnMonGeneral 4 }

ifOtnMonGeneralIfOtnMonSmStateLastChangeTime OBJECT-TYPE
   SYNTAX      DateAndTime
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The time when the state and/or configuration of the
       table was last changed.

"
   ::= { ifOtnMonGeneral 5 }

ifOtnMonGeneralIfOtnMonTcmTableSize OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Size of otn tcm table

"
    ::= { ifOtnMonGeneral 6 }

ifOtnMonGeneralIfOtnMonTcmConfigLastChangeTime OBJECT-TYPE
    SYNTAX      DateAndTime
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The time when the configuration of the table was
        last changed.

"
    ::= { ifOtnMonGeneral 7 }

ifOtnMonGeneralIfOtnMonTcmStateLastChangeTime OBJECT-TYPE
   SYNTAX      DateAndTime
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The time when the state and/or configuration of the
       table was last changed.

"
   ::= { ifOtnMonGeneral 8 }

ifOtnMonGeneralIfOtnMonPmTableSize OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Size of otn pm table

"
    ::= { ifOtnMonGeneral 9 }

ifOtnMonGeneralIfOtnMonPmConfigLastChangeTime OBJECT-TYPE
    SYNTAX      DateAndTime
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The time when the configuration of the table was
        last changed.

"
    ::= { ifOtnMonGeneral 10 }

ifOtnMonGeneralIfOtnMonPmStateLastChangeTime OBJECT-TYPE
   SYNTAX      DateAndTime
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The time when the state and/or configuration of the
       table was last changed.

"
   ::= { ifOtnMonGeneral 11 }

ifOtnMonGeneralIfOtnMonTraceTableSize OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Size of otn trace table

"
    ::= { ifOtnMonGeneral 12 }

ifOtnMonGeneralIfOtnMonTraceConfigLastChangeTime OBJECT-TYPE
    SYNTAX      DateAndTime
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The time when the configuration of the table was
        last changed.

"
    ::= { ifOtnMonGeneral 13 }

ifOtnMonGeneralIfOtnMonTraceStateLastChangeTime OBJECT-TYPE
   SYNTAX      DateAndTime
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The time when the state and/or configuration of the table
       was last changed.

"
   ::= { ifOtnMonGeneral 14 }

-- ----------------------------------------------------
-- SM group
-- ----------------------------------------------------

ifOtnMonSmTable  OBJECT-TYPE
    SYNTAX      SEQUENCE OF IfOtnMonSmEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The SM group contains information and configuration for
	the SM section objects."

    ::= { ifOtnMonSmList 1 }

ifOtnMonSmEntry OBJECT-TYPE
    SYNTAX      IfOtnMonSmEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "An entry in the ifOtnMon SM list.

"
    INDEX { ifOtnMonSmIndex }
    ::= { ifOtnMonSmTable 1 }

IfOtnMonSmEntry ::=
    SEQUENCE {
        ifOtnMonSmIndex                               Unsigned32,
        ifOtnMonSmName                                MgmtNameString,
        ifOtnMonSmConnIfBasicIfIndex                  Unsigned32WithNA,
        ifOtnMonSmTxSignalStatus                      SignalStatusWithNA,
        ifOtnMonSmRxSignalStatus                      SignalStatusWithNA,
        ifOtnMonSmBackwardDefectIndication            FaultStatusWithNA,
        ifOtnMonSmIncomingAlignmentError              FaultStatusWithNA,
        ifOtnMonSmBackwardIncomingAlignmentError      FaultStatusWithNA }

ifOtnMonSmIndex OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "An index assigned to each entry.

"
    ::= { ifOtnMonSmEntry 1 }

ifOtnMonSmName OBJECT-TYPE
    SYNTAX      MgmtNameString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The management name of the otn otu, for example 'otu:1:2:1-2',
        where the first number indicates subrack, the second slot
        number and the third/fourth are the physical port numbers.

"
    ::= { ifOtnMonSmEntry 2 }

ifOtnMonSmConnIfBasicIfIndex OBJECT-TYPE
    SYNTAX      Unsigned32WithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "An index that describes to which index in ifBasicIf table
        this object is related.

"
    ::= { ifOtnMonSmEntry 3 }

ifOtnMonSmTxSignalStatus OBJECT-TYPE
    SYNTAX      SignalStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The state for outgoing (TX) signal
        of the interface.

        down - A major fault has occurred.

        degraded - The signal quality is impaired.

        up - The signal is OK.

"
    ::= { ifOtnMonSmEntry 4 }

ifOtnMonSmRxSignalStatus OBJECT-TYPE
    SYNTAX      SignalStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The state for incoming (RX) signal
        of the interface.

        down - A major fault has occurred.

        degraded - The signal quality is impaired.

        up - The signal is OK.

"
    ::= { ifOtnMonSmEntry 5 }

ifOtnMonSmBackwardDefectIndication OBJECT-TYPE
    SYNTAX      FaultStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Backward defect indication (BDI).

         Indicates if backward defect indication (BDI) alarm
         exists or not.

         Reference: 15.7.2.1.3 G.709, 6.2.6.6.1 G.798

        alarm: Backward defect indication (in wrapper) active.

        ok: Backward defect indication (in wrapper) inactive.

"
    ::= { ifOtnMonSmEntry 6 }

ifOtnMonSmIncomingAlignmentError OBJECT-TYPE
    SYNTAX      FaultStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Incoming alignment error (IAE).

        Indicates an incoming frame alignment error.

        Reference: 15.7.2.1.5 G.709, 6.2.6.10.1 G.798

        A: Incoming frame alignment error (IAE) is active.

        D: IAE is inactive.

"
    ::= { ifOtnMonSmEntry 7 }

ifOtnMonSmBackwardIncomingAlignmentError OBJECT-TYPE
    SYNTAX      FaultStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Backward incoming alignment error (BIAE).

        Indicates a backward incoming alignment error.

        Reference: 15.7.2.1.5 G.709, 6.2.6.10.1 G.798

        A: Backward incoming alignment error (BIAE) is active.

        D: BIAE is inactive.

"
    ::= { ifOtnMonSmEntry 8 }

-- ----------------------------------------------------
-- Otn tcm group
-- ----------------------------------------------------

ifOtnMonTcmTable  OBJECT-TYPE
    SYNTAX      SEQUENCE OF IfOtnMonTcmEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The tandem connection monitoring (tcm) group contains information
         and configuration for the Tcm layer objects."

    ::= { ifOtnMonTcmList 1 }

ifOtnMonTcmEntry OBJECT-TYPE
    SYNTAX      IfOtnMonTcmEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "An entry in the ifOtnMon tcm list.

"
    INDEX { ifOtnMonTcmIndex }
    ::= { ifOtnMonTcmTable 1 }

IfOtnMonTcmEntry ::=
    SEQUENCE {
        ifOtnMonTcmIndex                          Unsigned32,
        ifOtnMonTcmName                           MgmtNameString,
        ifOtnMonTcmConnOduIndex                   Unsigned32WithNA,
        ifOtnMonTcmAlarmMode                      OtnAlarmMode,
        ifOtnMonTcmMode                           TcmMode,
        ifOtnMonTcmTcmNumber                      TcmNumber,
        ifOtnMonTcmTxSignalStatus                 SignalStatusWithNA,
        ifOtnMonTcmRxSignalStatus                 SignalStatusWithNA,
        ifOtnMonTcmBackwardDefectIndication       FaultStatusWithNA,
        ifOtnMonTcmBackwardIncomingAlignmentError FaultStatusWithNA,
        ifOtnMonTcmRxAlarmIndicationSignal        FaultStatusWithNA,
        ifOtnMonTcmRxOpenConnectionIndication     FaultStatusWithNA,
        ifOtnMonTcmRxLockedDefectIndication       FaultStatusWithNA,
        ifOtnMonTcmLossOfTandemConnection         FaultStatusWithNA,
        ifOtnMonTcmIncomingAlignmentError         FaultStatusWithNA,
        ifOtnMonTcmSwitchCriteria                 EnabledDisabledWithNA}

ifOtnMonTcmIndex OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "An index assigned to each entry.

"
    ::= { ifOtnMonTcmEntry 1 }

ifOtnMonTcmName OBJECT-TYPE
    SYNTAX      MgmtNameString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The management name of the otn tcm, for example 'tcm:1:2:1-2:1',
        where the first number indicates subrack, the second slot
        number and the third/fourth are the physical port numbers. The
        last number tells which TCM in the ODU header it is.

"
    ::= { ifOtnMonTcmEntry 2 }

ifOtnMonTcmConnOduIndex OBJECT-TYPE
    SYNTAX      Unsigned32WithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "An index that describes to which index in ifOtnMonOdu table
        this object is related.

"
    ::= { ifOtnMonTcmEntry 3 }

ifOtnMonTcmAlarmMode OBJECT-TYPE
    SYNTAX      OtnAlarmMode
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Tells how section specific alarms are handled.

        ignore - Do not show fault status nor alarms for
                 non-operational sections.

        display - Show fault status, but do not generate
                  alarms for non-operational sections.

        alarm - Show fault status and generate alarms also
                for non-operational sections.

"
    DEFVAL { ignore }
    ::= { ifOtnMonTcmEntry 4 }

ifOtnMonTcmMode OBJECT-TYPE
    SYNTAX      TcmMode
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "TCM mode sets the mode of the TCM according to 14.5 in
         G.798 (06/2004).

        operational - The TCM overhead is operational.

        transparent - The TCM overhead is transparent.

        monitor     - If TCM overhead is transparent but
                      consequent actions will be executed
                      in sink adaption.

"
    DEFVAL { transparent }
    ::= { ifOtnMonTcmEntry 5 }

ifOtnMonTcmTcmNumber OBJECT-TYPE
    SYNTAX      TcmNumber
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "TCM number in ODU overhead. Can be tcm1 .. tcm6.

"
    DEFVAL { tcm1 }
    ::= { ifOtnMonTcmEntry 6 }

ifOtnMonTcmTxSignalStatus OBJECT-TYPE
    SYNTAX      SignalStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The state for outgoing (TX) signal
        of the interface.

        down - A major fault has occurred.

        degraded - The signal quality is impaired.

        up - The signal is OK.

"
    ::= { ifOtnMonTcmEntry 7 }

ifOtnMonTcmRxSignalStatus OBJECT-TYPE
    SYNTAX      SignalStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The state for incoming (RX) signal
        of the interface.

        down - A major fault has occurred.

        degraded - The signal quality is impaired.

        up - The signal is OK.

"
    ::= { ifOtnMonTcmEntry 8 }

ifOtnMonTcmBackwardDefectIndication OBJECT-TYPE
    SYNTAX      FaultStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Rx Backward defect indication (BDI).

         Indicates if backward defect indication (BDI) alarm
         exists or not.

         Reference: 15.8.2.2.3 G.709, 2.6.6.1 G.798

        alarm: Backward defect indication (in wrapper) active.

        ok: Backward defect indication (in wrapper) inactive.

"
    ::= { ifOtnMonTcmEntry 9 }

ifOtnMonTcmBackwardIncomingAlignmentError OBJECT-TYPE
    SYNTAX      FaultStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Backward incoming alignment error (BIAE).

        Indicates a backward incoming alignment error.

        A: Backward incoming alignment error (BIAE) is active.

        D: BIAE is inactive.

"
    ::= { ifOtnMonTcmEntry 10 }

ifOtnMonTcmRxAlarmIndicationSignal OBJECT-TYPE
    SYNTAX      FaultStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Rx Alarm indication signal (AIS).

        Indicates if alarm indication signal (AIS) alarm
        exists or not in receiving direction.

        Reference: 16.5.1 G.709, 15.8.2.1.5 G.709, 6.2.6.3.2 G.798

        alarm: An AIS in OTU signal is detected.

        ok: AIS inactive.

"
    ::= { ifOtnMonTcmEntry 11 }

ifOtnMonTcmRxOpenConnectionIndication OBJECT-TYPE
    SYNTAX      FaultStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Rx Open connection indication (OCI).

        Indicates if an open connection indication (OCI) alarm
        exists or not in receiving direction.

        Reference: 15.8.2.2.5 G.709, 6.2.6.8.2 G.798

        alarm: An 'open connection' in OTU signal is detected.

        ok: OCI inactive.

"
    ::= { ifOtnMonTcmEntry 12 }

ifOtnMonTcmRxLockedDefectIndication OBJECT-TYPE
    SYNTAX      FaultStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Rx Locked defect indication (LCK).

        Indicates if locked defect indication alarm exists or not.

        Reference: 15.8.2.2.5 G.709, 6.2.6.9.1 G.798

        alarm: Locked defect indication active.

        ok: Locked defect indication inactive.

"
    ::= { ifOtnMonTcmEntry 13 }

ifOtnMonTcmLossOfTandemConnection OBJECT-TYPE
    SYNTAX      FaultStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Loss of tandem connection (LTC).

         No operational tandem connection
         is found in other end.

         Reference: 6.2.1.4 in G.798

        alarm: No other operational TCM is found.

        ok: An operation TCM is found.

"
    ::= { ifOtnMonTcmEntry 14 }

ifOtnMonTcmIncomingAlignmentError OBJECT-TYPE
    SYNTAX      FaultStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Incoming alignment error (IAE).

        Indicates an incoming frame alignment error when TCM is in use.

        A: Incoming frame alignment error (IAE) is active.

        D: IAE is inactive.

        Reference: 14 in G.798

"
    ::= { ifOtnMonTcmEntry 15 }

ifOtnMonTcmSwitchCriteria OBJECT-TYPE
    SYNTAX      EnabledDisabledWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "TCM switch criteria  set current TCM as protection switch criteria.

        disable - The TCM is not set as switch criteria.

        enable  - The TCM is set as switch criteria.

"
    DEFVAL { disabled }
    ::= { ifOtnMonTcmEntry 16}

-- ----------------------------------------------------
-- Otn pm group
-- ----------------------------------------------------

ifOtnMonPmTable  OBJECT-TYPE
    SYNTAX      SEQUENCE OF IfOtnMonPmEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The path monitoring (pm) group contains information and configu-
         ration for the Pm layer objects."

    ::= { ifOtnMonPmList 1 }

ifOtnMonPmEntry OBJECT-TYPE
    SYNTAX      IfOtnMonPmEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "An entry in the ifOtnMon pm list.

"
    INDEX { ifOtnMonPmIndex }
    ::= { ifOtnMonPmTable 1 }

IfOtnMonPmEntry ::=
    SEQUENCE {
        ifOtnMonPmIndex                        Unsigned32,
        ifOtnMonPmName                         MgmtNameString,
        ifOtnMonPmConnOduIndex                 Unsigned32WithNA,
        ifOtnMonPmAlarmMode                    OtnAlarmMode,
        ifOtnMonPmTxSignalStatus               SignalStatusWithNA,
        ifOtnMonPmRxSignalStatus               SignalStatusWithNA,
        ifOtnMonPmRxBackwardDefectIndication   FaultStatusWithNA,
        ifOtnMonPmRxAlarmIndicationSignal      FaultStatusWithNA,
        ifOtnMonPmRxOpenConnectionIndication   FaultStatusWithNA,
        ifOtnMonPmRxLockedDefectIndication     FaultStatusWithNA,
        ifOtnMonPmTxBackwardDefectIndication   FaultStatusWithNA,
        ifOtnMonPmTxAlarmIndicationSignal      FaultStatusWithNA,
        ifOtnMonPmTxOpenConnectionIndication   FaultStatusWithNA,
        ifOtnMonPmTxLockedDefectIndication     FaultStatusWithNA,
        ifOtnMonPmUpPortId                     Integer32 }

ifOtnMonPmIndex OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "An index assigned to each entry.

"
    ::= { ifOtnMonPmEntry 1 }

ifOtnMonPmName OBJECT-TYPE
    SYNTAX      MgmtNameString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The management name of the otn pm, for example 'pm:1:2:1-2:1',
        where the first number indicates subrack, the second slot
        number and the third/fourth are the physical port numbers. The
	last number tells in which of the ODU the PM is located.

"
    ::= { ifOtnMonPmEntry 2 }

ifOtnMonPmConnOduIndex OBJECT-TYPE
    SYNTAX      Unsigned32WithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "An index that describes to which index in ifOtnMonOdu table
        this object is related.

"
    ::= { ifOtnMonPmEntry 4 }

ifOtnMonPmAlarmMode OBJECT-TYPE
    SYNTAX      OtnAlarmMode
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Tells how section specific alarms are handled.

         ignore - Do not show fault status nor alarms for non-operational sections.

         display - Show fault status, but do not generate alarms for non-operational sections.

         alarm - Show fault status and generate alarms also for non-operational sections.

"
    DEFVAL { alarm }
    ::= { ifOtnMonPmEntry 5 }

ifOtnMonPmTxSignalStatus OBJECT-TYPE
    SYNTAX      SignalStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The state for outgoing (TX) signal
        of the interface.

        down - A major fault has occurred.

        degraded - The signal quality is impaired.

        up - The signal is OK.

"
    ::= { ifOtnMonPmEntry 6 }

ifOtnMonPmRxSignalStatus OBJECT-TYPE
    SYNTAX      SignalStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The state for incoming (RX) signal
        of the interface.

        down - A major fault has occurred.

        degraded - The signal quality is impaired.

        up - The signal is OK.

"
    ::= { ifOtnMonPmEntry 7 }

ifOtnMonPmRxBackwardDefectIndication OBJECT-TYPE
    SYNTAX      FaultStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Rx Backward defect indication (BDI),

         Monitored overhead: ODUk-PM-BDI

         Direction: Received from the associated physical interface
         and, unless the ODUk is terminated, the BDI is sent  towards
         the board-internal G.805 Matrix.

         Reference: 15.7.2.1.3 G.709, 6.2.6.6.1 G.798

        Values:
        alarm: The ODUk-PM-BDI overhead is declared as active according to
               the G.798 processing rules

        ok: The ODUk-PM-BDI overhead is declared as inactive according to
            the G.798 processing rules

"
    ::= { ifOtnMonPmEntry 8 }

ifOtnMonPmRxAlarmIndicationSignal OBJECT-TYPE
    SYNTAX      FaultStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Rx Alarm indication signal (AIS),

         Monitored overhead: ODUk-PM-AIS

         Direction: Received from the associated physical interface
         and, unless the ODUk is terminated, the AIS is sent  towards
         the board-internal G.805 Matrix.

         Reference: 16.5.1 G.709, 15.8.2.2.5 G.709, 6.2.3.2 G.798

        Values:
        alarm: The ODUk-PM-AIS overhead is declared as active according to
               the G.798 processing rules

        ok: The ODUk-PM-AIS overhead is declared as inactive according to
            the G.798 processing rules

"
    ::= { ifOtnMonPmEntry 9 }

ifOtnMonPmRxOpenConnectionIndication OBJECT-TYPE
    SYNTAX      FaultStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Rx Open connection indication (OCI).

         Monitored overhead: ODUk-PM-OCI

         Direction: Received from the associated physical interface
         and, unless the ODUk is terminated, the OCI is sent  towards
         the board-internal G.805 Matrix.

         Reference: 15.8.2.2.5 G.709, 6.2.6.8.2 G.798

        Values:
        alarm: The ODUk-PM-OCI overhead is declared as active according to
               the G.798 processing rules

        ok: The ODUk-PM-OCI overhead is declared as inactive according to
            the G.798 processing rules

"
    ::= { ifOtnMonPmEntry 10 }

ifOtnMonPmRxLockedDefectIndication OBJECT-TYPE
    SYNTAX      FaultStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Rx Locked defect indication (LCK).

         Monitored overhead: ODUk-PM-LCK

         Direction: Received from the associated physical interface
         and, unless the ODUk is terminated, the LCK is sent  towards
         the board-internal G.805 Matrix.

         Reference: 15.8.2.2.5 G.709, 6.2.6.9.1 G.798

        Values:
        alarm: The ODUk-PM-LCK overhead is declared as active according to
               the G.798 processing rules

        ok: The ODUk-PM-LCK overhead is declared as inactive according to
            the G.798 processing rules

"
    ::= { ifOtnMonPmEntry 11 }

ifOtnMonPmTxBackwardDefectIndication OBJECT-TYPE
    SYNTAX      FaultStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Tx Backward defect indication (BDI).

         Monitored overhead: ODUk-PM-BDI

         Direction: Received from the board-internal G.805 Matrix and,
         if applicable, sent towards the physical interface.

         Reference: 15.7.2.1.3 G.709, 6.2.6.6.1 G.798

        Values:
        alarm: The ODUk-PM-BDI overhead is declared as active according to
               the G.798 processing rules

        ok: The ODUk-PM-BDI overhead is declared as inactive according to
            the G.798 processing rules

"
    ::= { ifOtnMonPmEntry 12 }

ifOtnMonPmTxAlarmIndicationSignal OBJECT-TYPE
    SYNTAX      FaultStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Tx Alarm indication signal (AIS).

         Monitored overhead: ODUk-PM-AIS

         Direction: Received from the board-internal G.805 Matrix
         and, if applicable, sent towards the physical interface.

         Reference: 16.5.1 G.709, 15.8.2.2.5 G.709, 6.2.3.2 G.798

        Values:
        alarm: The ODUk-PM-AIS overhead is declared as active according
               to the G.798 processing rules

        ok: The ODUk-PM-AIS overhead is declared as inactive according
            to the G.798 processing rules

"
    ::= { ifOtnMonPmEntry 13 }

ifOtnMonPmTxOpenConnectionIndication OBJECT-TYPE
    SYNTAX      FaultStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Tx Open connection indication (OCI).

         Monitored overhead: ODUk-PM-AIS

         Direction: Received from the board-internal G.805 Matrix
         and, if applicable, sent towards the physical interface.

         Reference: 15.8.2.2.5 G.709, 6.2.6.8.2 G.798

        Values:
        alarm: The ODUk-PM-OCI overhead is declared as active
               according to the G.798 processing rules

        ok: The ODUk-PM-OCI overhead is declared as inactive
            according to the G.798 processing rules

"
    ::= { ifOtnMonPmEntry 14 }

ifOtnMonPmTxLockedDefectIndication OBJECT-TYPE
    SYNTAX      FaultStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Tx Locked Defect Indication (LCK).

         Monitored overhead: ODUk-PM-LCK

         Direction: Received from the board-internal G.805 Matrix
         and, if applicable, sent towards the physical interface.

         Reference: 15.8.2.2.5 G.709, 6.2.6.9.1 G.798

        Values:
        alarm: The ODUk-PM-LCK overhead is declared as active
               according to the G.798 processing rules

        ok: The ODUk-PM-LCK overhead is declared as inactive
            according to the G.798 processing rules

"
    ::= { ifOtnMonPmEntry 15 }

ifOtnMonPmUpPortId OBJECT-TYPE
        SYNTAX      Integer32   (-1..2147483647)
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "Internal port reference for traffic unit.
"
        DEFVAL { -1  }
    ::= { ifOtnMonPmEntry 16 }

-- ----------------------------------------------------
-- Otn trace group
-- ----------------------------------------------------

ifOtnMonTraceTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF IfOtnMonTraceEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The trace group contains information and configuration for the
         trace objects defined in G.709."

    ::= { ifOtnMonTraceList 1 }

ifOtnMonTraceEntry OBJECT-TYPE
    SYNTAX      IfOtnMonTraceEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "An entry in the ifOtnMon trace list.

"
    INDEX { ifOtnMonTraceIndex }
    ::= { ifOtnMonTraceTable 1 }

IfOtnMonTraceEntry ::=
    SEQUENCE {
        ifOtnMonTraceIndex                         Unsigned32,
        ifOtnMonTraceName                          MgmtNameString,
        ifOtnMonTraceConnOtnType                   OtnTypeWithNA,
        ifOtnMonTraceConnOtnIndex                  Unsigned32WithNA,
        ifOtnMonTraceSapiTraceTransmitted          DisplayStringWithNA,
        ifOtnMonTraceSapiTraceReceivedByte0        Unsigned32WithNA,
        ifOtnMonTraceSapiTraceReceived             DisplayStringWithNA,
        ifOtnMonTraceSapiTraceExpected             DisplayStringWithNA,
        ifOtnMonTraceDapiTraceTransmitted          DisplayStringWithNA,
        ifOtnMonTraceDapiTraceReceivedByte0        Unsigned32WithNA,
        ifOtnMonTraceDapiTraceReceived             DisplayStringWithNA,
        ifOtnMonTraceDapiTraceExpected             DisplayStringWithNA,
        ifOtnMonTraceOpSpecificTraceTransmitted    DisplayStringWithNA,
        ifOtnMonTraceOpSpecificTraceReceived       DisplayStringWithNA,
        ifOtnMonTraceTraceIdMMDetectionMode        OtnTIMDetModeWithNA,
        ifOtnMonTraceTraceAlarmMode                EnabledDisabledWithNA,
        ifOtnMonTraceTIMConsequenceActionsDisabled TruthValueWithNA,
        ifOtnMonTraceTxSignalStatus                SignalStatusWithNA,
        ifOtnMonTraceRxSignalStatus                SignalStatusWithNA,
        ifOtnMonTraceTraceMismatch                 FaultStatusWithNA,
        ifOtnMonTraceConnOtnDirection              OtnDirectionWithNA,
        ifOtnMonTraceUpPortId                      Integer32 }

ifOtnMonTraceIndex OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "An index assigned to each entry.

"
    ::= { ifOtnMonTraceEntry 1 }

ifOtnMonTraceName OBJECT-TYPE
    SYNTAX      MgmtNameString
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The management name of the OTN trace, for example 'clientSmTrace:1:2:1-2',
        where the first number indicates subrack, the second slot
        number and the third/fourth are the physical port numbers.

"
    ::= { ifOtnMonTraceEntry 2 }

ifOtnMonTraceConnOtnType OBJECT-TYPE
    SYNTAX      OtnTypeWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "What type of monitoring object the trace is related to.

        sm  - Section monitoring (SM).

        pm  - Path monitoring (PM).

        tcm1 - Tandem connection monitoring (TCM)

        tcm2 - Tandem connection monitoring (TCM)

        tcm3 - Tandem connection monitoring (TCM)

        tcm4 - Tandem connection monitoring (TCM)

        tcm5 - Tandem connection monitoring (TCM)

        tcm6 - Tandem connection monitoring (TCM)

"
    ::= { ifOtnMonTraceEntry 3 }

ifOtnMonTraceConnOtnIndex OBJECT-TYPE
    SYNTAX      Unsigned32WithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "An index that describes to which index in SM, TCM or PM table
        this object is related.

"
    ::= { ifOtnMonTraceEntry 4 }

ifOtnMonTraceSapiTraceTransmitted   OBJECT-TYPE
    SYNTAX     DisplayStringWithNA (SIZE(0..15))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The Source Access Point Identifier to be
         transmitted from this interface.

         Note, it is only possible to enter 15 characters since the first
         character is added automatically according to standard.

         The trace _notApplicable_ is used to tell SNMP clients that
         this attribute is not used in current configuration.

         The trace _notAvailable_ is used to tell SNMP clients that
         this attribute is not possible to read at the moment.

"
    DEFVAL { "" }
    ::= { ifOtnMonTraceEntry 5 }

ifOtnMonTraceSapiTraceReceivedByte0 OBJECT-TYPE
    SYNTAX      Unsigned32WithNA
    MAX-ACCESS  read-only
    STATUS      deprecated
    DESCRIPTION
        "The received Source Access Point Identifier for this interface.

         The value 255 is used by SNMP agent to show that the attribute is
         not valid in current configuration.

         The value 254 is used by SNMP agent to show that the attribute is
         not possible to read at the moment.

"
    ::= { ifOtnMonTraceEntry 6 }

ifOtnMonTraceSapiTraceReceived OBJECT-TYPE
    SYNTAX      DisplayStringWithNA (SIZE(0..15))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The received Source Access Point Identifier for this interface.

         The trace _notApplicable_ is used to tell SNMP clients that
         this attribute is not used in current configuration.

         The trace _notAvailable_ is used to tell SNMP clients that
         this attribute is not possible to read at the moment.

"
    ::= { ifOtnMonTraceEntry 7 }

ifOtnMonTraceSapiTraceExpected OBJECT-TYPE
    SYNTAX      DisplayStringWithNA (SIZE(0..15))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "SAPI used for matching against the received SAPI.

         Note, it is only possible to enter 15 characters since first
         character is added automatically according to standard.

         The trace _notApplicable_ is used to tell SNMP clients that
         this attribute is not used in current configuration.

         The trace _notAvailable_ is used to tell SNMP clients that
         this attribute is not possible to read at the moment.

"
    DEFVAL { "" }
    ::= { ifOtnMonTraceEntry 8 }

ifOtnMonTraceDapiTraceTransmitted   OBJECT-TYPE
    SYNTAX     DisplayStringWithNA (SIZE(0..15))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The Destination Access Point Identifier to be
         transmitted from this interface.

         Note, it is only possible to enter 15 characters since first
         character is added automatically according to standard.

         The trace _notApplicable_ is used to tell SNMP clients that
         this attribute is not used in current configuration.

         The trace _notAvailable_ is used to tell SNMP clients that
         this attribute is not possible to read at the moment.

"
    DEFVAL { "" }
    ::= { ifOtnMonTraceEntry 9 }

ifOtnMonTraceDapiTraceReceivedByte0 OBJECT-TYPE
    SYNTAX      Unsigned32WithNA
    MAX-ACCESS  read-only
    STATUS      deprecated
    DESCRIPTION
        "The received Destination Access Point Identifier for this interface.

        The value 255 is used by SNMP agent to show that the attribute is
        not valid in current configuration.

        The value 254 is used by SNMP agent to show that the attribute is
        not possible to read at the moment.

"
    ::= { ifOtnMonTraceEntry 10 }

ifOtnMonTraceDapiTraceReceived OBJECT-TYPE
    SYNTAX      DisplayStringWithNA (SIZE(0..15))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The received Destination Access Point Identifier for this interface.

         The trace _notApplicable_ is used to tell SNMP clients that
         this attribute is not used in current configuration.

         The trace _notAvailable_ is used to tell SNMP clients that
         this attribute is not possible to read at the moment.

"
    ::= { ifOtnMonTraceEntry 11 }

ifOtnMonTraceDapiTraceExpected OBJECT-TYPE
    SYNTAX      DisplayStringWithNA (SIZE(0..15))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "DAPI used for matching against the received DAPI.

         Note, it is only possible to enter 15 characters since the first
         character is added automatically according to standard.

         The trace _notApplicable_ is used to tell SNMP clients that
         this attribute is not used in current configuration.

         The trace _notAvailable_ is used to tell SNMP clients that
         this attribute is not possible to read at the moment.

"
    DEFVAL { "" }
    ::= { ifOtnMonTraceEntry 12 }

ifOtnMonTraceOpSpecificTraceTransmitted   OBJECT-TYPE
    SYNTAX       DisplayStringWithNA (SIZE(0..32))
    MAX-ACCESS   read-write
    STATUS       current
    DESCRIPTION
        "The operator specific trace identifier to be transmitted
         from this interface.

         Set to empty string for default value.

         <IP address>:<subrack>:<slot>:<port>

         Note that only the last part of the address
         is used.

         The trace _notApplicable_ is used to tell SNMP clients that
         this attribute is not used in current configuration.

         The trace _notAvailable_ is used to tell SNMP clients that
         this attribute is not possible to read at the moment.

"
    DEFVAL { "" }
    ::= { ifOtnMonTraceEntry 13 }

ifOtnMonTraceOpSpecificTraceReceived OBJECT-TYPE
    SYNTAX      DisplayStringWithNA (SIZE(0..32))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The received operator specific trace identifier for this
         interface.

         The trace _notApplicable_ is used to tell SNMP clients that
         this attribute is not used in current configuration.

         The trace _notAvailable_ is used to tell SNMP clients that
         this attribute is not possible to read at the moment.

"
    ::= { ifOtnMonTraceEntry 14 }

ifOtnMonTraceTraceIdMMDetectionMode OBJECT-TYPE
    SYNTAX          OtnTIMDetModeWithNA
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "The method to detect a trace identifier mismatch value.

        off  - Mismatch will be ignored on all levels

        sapi - Mismatch is based on mismatch in expected and received SAPI
        trace

        dapi - Mismatch is based on mismatch in expected and received DAPI
        trace

        both - Mismatch is based on both SAPI and DAPI traces.

"
    DEFVAL { off }
    ::= { ifOtnMonTraceEntry 15 }

ifOtnMonTraceTraceAlarmMode OBJECT-TYPE
    SYNTAX      EnabledDisabledWithNA
    MAX-ACCESS  read-only
    STATUS      deprecated
    DESCRIPTION
        "Controls if the trace identifier mismatch alarm
        should be raised. If trace alarm mode is enabled and if object
        is set in terminating or monitor mode, BDI is sent
        in backward direction if received trace and expected trace
        differs.

        disabled - The alarm is disabled.

        enabled - The alarm is raised if expected trace identifier
        differs from the received trace identifier.

"
    DEFVAL { disabled }
    ::= { ifOtnMonTraceEntry 16 }

ifOtnMonTraceTIMConsequenceActionsDisabled OBJECT-TYPE
    SYNTAX      TruthValueWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION

	"Controls if the trace identifier mismatch should give rise
        to any consequent actions in the downstream direction.
        Consequent actions for the upstream direction are always enabled
        regardless of this value.

        true - No consequent actions due to trace identifier mis-
        match alarm.

        false - Consequent actions enabled.

        Reference: 9, 13 and 14 in G.798

"
    DEFVAL { true }
    ::= { ifOtnMonTraceEntry 17 }

ifOtnMonTraceTxSignalStatus OBJECT-TYPE
    SYNTAX      SignalStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The state for outgoing (TX) signal
        of the interface.

        down - A major fault has occurred.

        degraded - The signal quality is impaired.

        up - The signal is OK.

"
    ::= { ifOtnMonTraceEntry 18 }

ifOtnMonTraceRxSignalStatus OBJECT-TYPE
    SYNTAX      SignalStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The state for incoming (RX) signal
        of the interface.

        down - A major fault has occurred.

        degraded - The signal quality is impaired.

        up - The signal is OK.

"
    ::= { ifOtnMonTraceEntry 19 }

ifOtnMonTraceTraceMismatch OBJECT-TYPE
    SYNTAX      FaultStatusWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Trace identifier mismatch (TIM).

        Indicates if the expected SM/PM/TCM trace identifier
        (SAPI and/or DAPI) differs from the received trace
        identifier.

        Reference: 15.8.2.2.1 G.709

        alarm: The received trace identifier differs from
        the expected trace identifier.

        ok: The identifiers match.

"
    ::= { ifOtnMonTraceEntry 20 }

ifOtnMonTraceConnOtnDirection OBJECT-TYPE
    SYNTAX      OtnDirectionWithNA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Direction of the trail trace identifier object
        on the interface.

        none - Direction is unambiguous.

        rx - Received from the board-internal G.805 Matrix and,
             if applicable, sent towards the physical interface.

        tx - Received from the physical interface and, if applicable,
             sent towards the board-internal G.805 Matrix.

"
    ::= { ifOtnMonTraceEntry 21 }
ifOtnMonTraceUpPortId OBJECT-TYPE
        SYNTAX      Integer32   (-1..2147483647)
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "Internal port reference for traffic unit.
"
        DEFVAL { -1  }
    ::= { ifOtnMonTraceEntry 22 }

-- ----------------------------------------------------
-- Notifications
-- ----------------------------------------------------


-- ----------------------------------------------------
-- Object and event groups
-- ----------------------------------------------------

ifOtnMonGeneralGroupV1 OBJECT-GROUP
    OBJECTS {
        ifOtnMonGeneralConfigLastChangeTime,
        ifOtnMonGeneralStateLastChangeTime,
        ifOtnMonGeneralIfOtnMonSmTableSize,
        ifOtnMonGeneralIfOtnMonSmConfigLastChangeTime,
        ifOtnMonGeneralIfOtnMonSmStateLastChangeTime,
        ifOtnMonGeneralIfOtnMonTcmTableSize,
        ifOtnMonGeneralIfOtnMonTcmConfigLastChangeTime,
        ifOtnMonGeneralIfOtnMonTcmStateLastChangeTime,
        ifOtnMonGeneralIfOtnMonPmTableSize,
        ifOtnMonGeneralIfOtnMonPmConfigLastChangeTime,
        ifOtnMonGeneralIfOtnMonPmStateLastChangeTime,
        ifOtnMonGeneralIfOtnMonTraceTableSize,
        ifOtnMonGeneralIfOtnMonTraceConfigLastChangeTime,
        ifOtnMonGeneralIfOtnMonTraceStateLastChangeTime }

    STATUS      current
    DESCRIPTION
        "The general objects."
    ::= { lumIfOtnMonGroups 1 }

ifOtnMonSmGroupV1 OBJECT-GROUP
    OBJECTS {
        ifOtnMonSmIndex,
        ifOtnMonSmName,
        ifOtnMonSmConnIfBasicIfIndex,
        ifOtnMonSmTxSignalStatus,
        ifOtnMonSmRxSignalStatus,
        ifOtnMonSmBackwardDefectIndication,
        ifOtnMonSmIncomingAlignmentError,
        ifOtnMonSmBackwardIncomingAlignmentError }

    STATUS      current
    DESCRIPTION
        "The ifOtnMon sm objects (R20.0)."
    ::= { lumIfOtnMonGroups 2 }

ifOtnMonTcmGroupV1 OBJECT-GROUP
    OBJECTS {
        ifOtnMonTcmIndex,
        ifOtnMonTcmName,
        ifOtnMonTcmConnOduIndex,
        ifOtnMonTcmAlarmMode,
        ifOtnMonTcmMode,
        ifOtnMonTcmTcmNumber,
        ifOtnMonTcmTxSignalStatus,
        ifOtnMonTcmRxSignalStatus,
        ifOtnMonTcmBackwardDefectIndication,
        ifOtnMonTcmBackwardIncomingAlignmentError,
        ifOtnMonTcmRxAlarmIndicationSignal,
        ifOtnMonTcmRxOpenConnectionIndication,
        ifOtnMonTcmRxLockedDefectIndication,
        ifOtnMonTcmLossOfTandemConnection,
        ifOtnMonTcmIncomingAlignmentError }

    STATUS      deprecated
    DESCRIPTION
        "The ifOtnMon tcm objects (R20.0)."
    ::= { lumIfOtnMonGroups 3 }

ifOtnMonPmGroupV1 OBJECT-GROUP
    OBJECTS {
        ifOtnMonPmIndex,
        ifOtnMonPmName,
        ifOtnMonPmConnOduIndex,
        ifOtnMonPmAlarmMode,
        ifOtnMonPmTxSignalStatus,
        ifOtnMonPmRxSignalStatus,
        ifOtnMonPmRxBackwardDefectIndication,
        ifOtnMonPmRxAlarmIndicationSignal,
        ifOtnMonPmRxOpenConnectionIndication,
        ifOtnMonPmRxLockedDefectIndication }

    STATUS      deprecated
    DESCRIPTION
        "The ifOtnMon pm objects (R20.0)."
    ::= { lumIfOtnMonGroups 4 }

ifOtnMonTraceGroupV1 OBJECT-GROUP
    OBJECTS {
        ifOtnMonTraceIndex,
        ifOtnMonTraceName,
        ifOtnMonTraceConnOtnIndex,
        ifOtnMonTraceConnOtnType,
        ifOtnMonTraceSapiTraceTransmitted,
        ifOtnMonTraceSapiTraceReceivedByte0,
        ifOtnMonTraceSapiTraceReceived,
        ifOtnMonTraceSapiTraceExpected,
        ifOtnMonTraceDapiTraceTransmitted,
        ifOtnMonTraceDapiTraceReceivedByte0,
        ifOtnMonTraceDapiTraceReceived,
        ifOtnMonTraceDapiTraceExpected,
        ifOtnMonTraceOpSpecificTraceTransmitted,
        ifOtnMonTraceOpSpecificTraceReceived,
        ifOtnMonTraceTraceIdMMDetectionMode,
        ifOtnMonTraceTraceAlarmMode,
        ifOtnMonTraceTIMConsequenceActionsDisabled,
        ifOtnMonTraceTxSignalStatus,
        ifOtnMonTraceRxSignalStatus,
        ifOtnMonTraceTraceMismatch }

    STATUS      deprecated
    DESCRIPTION
        "The ifOtnMon trace objects (R20.0)."
    ::= { lumIfOtnMonGroups 5 }

ifOtnMonPmGroupV2 OBJECT-GROUP
    OBJECTS {
        ifOtnMonPmIndex,
        ifOtnMonPmName,
        ifOtnMonPmConnOduIndex,
        ifOtnMonPmAlarmMode,
        ifOtnMonPmTxSignalStatus,
        ifOtnMonPmRxSignalStatus,
        ifOtnMonPmRxBackwardDefectIndication,
        ifOtnMonPmRxAlarmIndicationSignal,
        ifOtnMonPmRxOpenConnectionIndication,
        ifOtnMonPmTxBackwardDefectIndication,
        ifOtnMonPmTxAlarmIndicationSignal,
        ifOtnMonPmTxOpenConnectionIndication,
        ifOtnMonPmTxLockedDefectIndication }

    STATUS      deprecated
    DESCRIPTION
        "The ifOtnMon pm objects (R22.0)."
    ::= { lumIfOtnMonGroups 6 }

ifOtnMonTcmGroupV2 OBJECT-GROUP
    OBJECTS {
        ifOtnMonTcmIndex,
        ifOtnMonTcmName,
        ifOtnMonTcmConnOduIndex,
        ifOtnMonTcmAlarmMode,
        ifOtnMonTcmMode,
        ifOtnMonTcmTcmNumber,
        ifOtnMonTcmTxSignalStatus,
        ifOtnMonTcmRxSignalStatus,
        ifOtnMonTcmBackwardDefectIndication,
        ifOtnMonTcmBackwardIncomingAlignmentError,
        ifOtnMonTcmRxAlarmIndicationSignal,
        ifOtnMonTcmRxOpenConnectionIndication,
        ifOtnMonTcmRxLockedDefectIndication,
        ifOtnMonTcmLossOfTandemConnection,
        ifOtnMonTcmIncomingAlignmentError,
        ifOtnMonTcmSwitchCriteria }

    STATUS      current
    DESCRIPTION
        "The ifOtnMon tcm objects (R23.0)."
    ::= { lumIfOtnMonGroups 7 }

ifOtnMonTraceGroupV2 OBJECT-GROUP
    OBJECTS {
        ifOtnMonTraceIndex,
        ifOtnMonTraceName,
        ifOtnMonTraceConnOtnType,
        ifOtnMonTraceConnOtnIndex,
        ifOtnMonTraceSapiTraceTransmitted,
        ifOtnMonTraceSapiTraceReceivedByte0,
        ifOtnMonTraceSapiTraceReceived,
        ifOtnMonTraceSapiTraceExpected,
        ifOtnMonTraceDapiTraceTransmitted,
        ifOtnMonTraceDapiTraceReceivedByte0,
        ifOtnMonTraceDapiTraceReceived,
        ifOtnMonTraceDapiTraceExpected,
        ifOtnMonTraceOpSpecificTraceTransmitted,
        ifOtnMonTraceOpSpecificTraceReceived,
        ifOtnMonTraceTraceIdMMDetectionMode,
        ifOtnMonTraceTraceAlarmMode,
        ifOtnMonTraceTIMConsequenceActionsDisabled,
        ifOtnMonTraceTxSignalStatus,
        ifOtnMonTraceRxSignalStatus,
        ifOtnMonTraceTraceMismatch }

    STATUS      deprecated
    DESCRIPTION
        "The ifOtnMon trace objects (R23.0)."
    ::= { lumIfOtnMonGroups 8 }

ifOtnMonTraceGroupV3 OBJECT-GROUP
    OBJECTS {
        ifOtnMonTraceIndex,
        ifOtnMonTraceName,
        ifOtnMonTraceConnOtnType,
        ifOtnMonTraceConnOtnIndex,
        ifOtnMonTraceSapiTraceTransmitted,
        ifOtnMonTraceSapiTraceReceivedByte0,
        ifOtnMonTraceSapiTraceReceived,
        ifOtnMonTraceSapiTraceExpected,
        ifOtnMonTraceDapiTraceTransmitted,
        ifOtnMonTraceDapiTraceReceivedByte0,
        ifOtnMonTraceDapiTraceReceived,
        ifOtnMonTraceDapiTraceExpected,
        ifOtnMonTraceOpSpecificTraceTransmitted,
        ifOtnMonTraceOpSpecificTraceReceived,
        ifOtnMonTraceTraceIdMMDetectionMode,
        ifOtnMonTraceTraceAlarmMode,
        ifOtnMonTraceTIMConsequenceActionsDisabled,
        ifOtnMonTraceTxSignalStatus,
        ifOtnMonTraceRxSignalStatus,
        ifOtnMonTraceTraceMismatch,
        ifOtnMonTraceConnOtnDirection }

    STATUS      deprecated
    DESCRIPTION
        "The ifOtnMon trace objects (R25.0)."
    ::= { lumIfOtnMonGroups 9 }

ifOtnMonPmGroupV3 OBJECT-GROUP
    OBJECTS {
        ifOtnMonPmIndex,
        ifOtnMonPmName,
        ifOtnMonPmConnOduIndex,
        ifOtnMonPmAlarmMode,
        ifOtnMonPmTxSignalStatus,
        ifOtnMonPmRxSignalStatus,
        ifOtnMonPmRxBackwardDefectIndication,
        ifOtnMonPmRxAlarmIndicationSignal,
        ifOtnMonPmRxOpenConnectionIndication,
        ifOtnMonPmTxBackwardDefectIndication,
        ifOtnMonPmTxAlarmIndicationSignal,
        ifOtnMonPmTxOpenConnectionIndication,
        ifOtnMonPmTxLockedDefectIndication,
        ifOtnMonPmUpPortId}

    STATUS      current
    DESCRIPTION
        "The ifOtnMon pm objects (R28.0)."
    ::= { lumIfOtnMonGroups 10 }

ifOtnMonTraceGroupV4 OBJECT-GROUP
    OBJECTS {
        ifOtnMonTraceIndex,
        ifOtnMonTraceName,
        ifOtnMonTraceConnOtnType,
        ifOtnMonTraceConnOtnIndex,
        ifOtnMonTraceSapiTraceTransmitted,
        ifOtnMonTraceSapiTraceReceivedByte0,
        ifOtnMonTraceSapiTraceReceived,
        ifOtnMonTraceSapiTraceExpected,
        ifOtnMonTraceDapiTraceTransmitted,
        ifOtnMonTraceDapiTraceReceivedByte0,
        ifOtnMonTraceDapiTraceReceived,
        ifOtnMonTraceDapiTraceExpected,
        ifOtnMonTraceOpSpecificTraceTransmitted,
        ifOtnMonTraceOpSpecificTraceReceived,
        ifOtnMonTraceTraceIdMMDetectionMode,
        ifOtnMonTraceTraceAlarmMode,
        ifOtnMonTraceTIMConsequenceActionsDisabled,
        ifOtnMonTraceTxSignalStatus,
        ifOtnMonTraceRxSignalStatus,
        ifOtnMonTraceTraceMismatch,
        ifOtnMonTraceConnOtnDirection,
        ifOtnMonTraceUpPortId }

    STATUS      current
    DESCRIPTION
        "The ifOtnMon trace objects (R28.0)."
    ::= { lumIfOtnMonGroups 11 }

-- ----------------------------------------------------
-- Compliance
-- ----------------------------------------------------

lumIfOtnMonComplV1 MODULE-COMPLIANCE
    STATUS      deprecated
    DESCRIPTION
        "Basic implementation requirements for the ifOtnMon MIB. (R20.0)"
    MODULE
        MANDATORY-GROUPS {
            ifOtnMonGeneralGroupV1,
            ifOtnMonSmGroupV1,
            ifOtnMonTcmGroupV1,
            ifOtnMonPmGroupV1,
            ifOtnMonTraceGroupV1 }
    ::= { lumIfOtnMonCompl 1 }

lumIfOtnMonComplV2 MODULE-COMPLIANCE
    STATUS      deprecated
    DESCRIPTION
        "Basic implementation requirements for the ifOtnMon MIB. (R22.0)"
    MODULE
        MANDATORY-GROUPS {
            ifOtnMonGeneralGroupV1,
            ifOtnMonSmGroupV1,
            ifOtnMonTcmGroupV1,
            ifOtnMonPmGroupV2,
            ifOtnMonTraceGroupV1 }
    ::= { lumIfOtnMonCompl 2 }

lumIfOtnMonComplV3 MODULE-COMPLIANCE
    STATUS      deprecated
    DESCRIPTION
        "Basic implementation requirements for the ifOtnMon MIB. (R23.0)"
    MODULE
        MANDATORY-GROUPS {
            ifOtnMonGeneralGroupV1,
            ifOtnMonSmGroupV1,
            ifOtnMonTcmGroupV2,
            ifOtnMonPmGroupV2,
            ifOtnMonTraceGroupV2 }
    ::= { lumIfOtnMonCompl 3 }

lumIfOtnMonComplV4 MODULE-COMPLIANCE
    STATUS      deprecated
    DESCRIPTION
        "Basic implementation requirements for the ifOtnMon MIB. (R25.0)"
    MODULE
        MANDATORY-GROUPS {
            ifOtnMonGeneralGroupV1,
            ifOtnMonSmGroupV1,
            ifOtnMonTcmGroupV2,
            ifOtnMonPmGroupV2,
            ifOtnMonTraceGroupV3 }
    ::= { lumIfOtnMonCompl 4 }

lumIfOtnMonComplV5 MODULE-COMPLIANCE
    STATUS      current
    DESCRIPTION
        "Basic implementation requirements for the ifOtnMon MIB. (R28.0)"
    MODULE
        MANDATORY-GROUPS {
            ifOtnMonGeneralGroupV1,
            ifOtnMonSmGroupV1,
            ifOtnMonTcmGroupV2,
            ifOtnMonPmGroupV3,
            ifOtnMonTraceGroupV4 }
    ::= { lumIfOtnMonCompl 5 }
END