summaryrefslogtreecommitdiff
path: root/MIBS/calix/CALIX-SOAM-EXT-MIB
blob: 7b05a5fdf690527499d6e3a9c4fc4f1f4867b335 (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
CALIX-EOAM-EXT-MIB DEFINITIONS ::= BEGIN


IMPORTS
   MODULE-IDENTITY, OBJECT-TYPE, enterprises, IpAddress, Counter32
      FROM SNMPv2-SMI
   TEXTUAL-CONVENTION, RowStatus, DisplayString, TruthValue, MacAddress, TDomain, TAddress
     FROM SNMPv2-TC
   MODULE-COMPLIANCE, OBJECT-GROUP
     FROM SNMPv2-CONF
   InterfaceIndex, InterfaceIndexOrZero     
   	 FROM IF-MIB        -- [RFC2863]
   VlanIdOrNone, VlanId
     FROM Q-BRIDGE-MIB  -- [RFC4363]
   LldpChassisId, LldpChassisIdSubtype, LldpPortId, LldpPortIdSubtype
     FROM LLDP-MIB      -- [IEEE802.1AB]
   Dot1agCfmPbbComponentIdentifier,
   Dot1agCfmMDLevel, Dot1agCfmCcmInterval, Dot1agCfmMepId, Dot1agCfmIdPermission, Dot1agCfmMepIdOrZero,
   dot1agCfmMdIndex, dot1agCfmMaIndex, dot1agCfmMepIdentifier, dot1agCfmMepDbRMepIdentifier,
   dot1agCfmLtrSeqNumber, dot1agCfmLtrReceiveOrder,	dot1agCfmMaComponentId, dot1agCfmMaMepListIdentifier,
   Dot1agCfmMpDirection
     FROM IEEE8021-CFM-MIB;

calixEoamExtMIB MODULE-IDENTITY
    LAST-UPDATED "201101240000Z"
    ORGANIZATION "CALIX, Inc"
    CONTACT-INFO
        "Technical Support

		 Calix Networks
		 1035 North McDowell Blvd.
		 Petaluma CA 94954
 		 UNITED STATES
         Tel: +1 707-766-3100

         E-mail:
        "
    DESCRIPTION
      "A MIB module that extends the support of Ethernet OAM standards.
       Extensions are made to IEEE 802.3ah MIB for Link OAM or EFM (Ethernet
       First Mile) functionality, IEEE 802.1ag MIB for Service OAM 
       or CFM (Connection Fault Management) functionality, including 
       ITU-T Y.1731 entities.  This version is compatible with Interport 
       SOAM release 3.0.
      "
    ::= { iso(1) org(3) dod(6)
          internet(1) private(4) enterprises(1) calix (6321) calixMibs (1) 99 }

calixEoamExtConfig OBJECT IDENTIFIER ::= { calixEoamExtMIB 1 }

CalixEoamEnableType ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION
        "Enable/disable state."
    SYNTAX      INTEGER {
        enable  (1),
        disable (2)
    }

CalixSoamLmType ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION
        "Single/Dual Frame Loss Measurement Type."
    SYNTAX      INTEGER {
        single  (1),
        dual (2)
    }

-- ******************************************************************
--    ITU-T Y.1731 MEG Object
-- ******************************************************************

calixSoamExtMegTable OBJECT-TYPE
    SYNTAX SEQUENCE OF CalixSoamExtMegEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "This table contains all ITU-T Y.1731 MEG entries in the system."
    ::= { calixEoamExtConfig 1 }

calixSoamExtMegEntry OBJECT-TYPE
    SYNTAX      CalixSoamExtMegEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The ITU-T Y.1731 MEG entry."
    INDEX { calixSoamExtMegIdentifier }
    ::= { calixSoamExtMegTable 1}

CalixSoamExtMegEntry ::= SEQUENCE {
    calixSoamExtMegIdentifier           Unsigned32,
    calixSoamExtMegName                 OCTET STRING,
    calixSoamExtMegLevel                Dot1agCfmMDLevel,
    calixSoamExtMegCcmInterval          Dot1agCfmCcmInterval,
    calixSoamExtMegVid           		Unsigned32,
    calixSoamExtMegAutoDiscovery        CalixEoamEnableType,
    calixSoamExtMegAutoDiscoveryTimeout Unsigned32,
    calixSoamExtMegCciInterworking      CalixEoamEnableType,
    calixSoamExtMegIdPermission         Dot1agCfmIdPermission,
    calixSoamExtMegRowStatus            RowStatus
    }

calixSoamExtMegIdentifier OBJECT-TYPE
    SYNTAX      Unsigned32(1..4294967295)
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Index of the MEG entry in the MEG table. There is a common
         indexing space shared between MAs (IEEE 802.1ag) and MEGs(ITU-T Y.1731).
        "
    ::= { calixSoamExtMegEntry 1 }

calixSoamExtMegName OBJECT-TYPE
    SYNTAX      OCTET STRING (SIZE(1..44))
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Textual name of the MEG."
    ::= { calixSoamExtMegEntry 2 }

calixSoamExtMegLevel OBJECT-TYPE
    SYNTAX      Dot1agCfmMDLevel
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Level for the MEG."
    DEFVAL { 0 }
    ::= { calixSoamExtMegEntry 3 }

calixSoamExtMegCcmInterval OBJECT-TYPE
    SYNTAX      Dot1agCfmCcmInterval
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Interval between CCM transmissions to be used by all MEPs
         in the MEG.
        "
    DEFVAL { interval1s }
    ::= { calixSoamExtMegEntry 4 }

calixSoamExtMegVid OBJECT-TYPE
    SYNTAX       Unsigned32 (0..4095)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The Primary VLAN ID with which the MEG is
         associated, or 0 if the MEG is not attached to any VID.  If
         the MEG is associated with more than one VID, the
         dot1agCfmVlanTable lists them.
        "
    ::= { calixSoamExtMegEntry 5 }

calixSoamExtMegAutoDiscovery OBJECT-TYPE
    SYNTAX      CalixEoamEnableType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Specifies if MEP autodiscovery feature is enabled or not
         for this particular MEG.
        "
    ::= { calixSoamExtMegEntry 6 }

calixSoamExtMegAutoDiscoveryTimeout   OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The timeout value for removal of peer MEPs added through autodetection
         if no CCM frames are received from that peer MEP.
        "
    ::= { calixSoamExtMegEntry 7 }

 calixSoamExtMegCciInterworking   OBJECT-TYPE
    SYNTAX      CalixEoamEnableType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Specifies if IEEE 802.1ag compatibility mode is enabled on
         this MEG.
        "
    ::= { calixSoamExtMegEntry 8 }

calixSoamExtMegIdPermission OBJECT-TYPE
    SYNTAX      Dot1agCfmIdPermission
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Enumerated value indicating what, if anything, is to be
         included in the Sender ID TLV transmitted by MPs
         configured in this MEG. The value sendIdDefer is not allowed.
        "
    DEFVAL { sendIdNone }
    ::= { calixSoamExtMegEntry 9 }

calixSoamExtMegRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The status of the row.
         This field should be used to create or remove a MEG from the system.
        "
    ::= { calixSoamExtMegEntry 10 }

-- ******************************************************************
-- MIP configuration
-- ******************************************************************

calixSoamExtMipTable OBJECT-TYPE
    SYNTAX         SEQUENCE OF CalixSoamExtMipEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION
        "This table contains all MIPs configured in the system."
    ::=  { calixEoamExtConfig 2 }

calixSoamExtMipEntry OBJECT-TYPE
    SYNTAX         CalixSoamExtMipEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION
        "Each MIP in the system shall have an entry in this table."
    INDEX {  calixSoamExtMegIdentifier,
    		 calixSoamExtMipIdentifier  }
    ::=  { calixSoamExtMipTable 1 }

CalixSoamExtMipEntry ::=  SEQUENCE {
    calixSoamExtMipIdentifier          Unsigned32,
    calixSoamExtMipIfIndex      	   InterfaceIndex,
    calixSoamExtMipAdminState          CalixEoamEnableType,
    calixSoamExtMipMacAddress          MacAddress,
    calixSoamExtMipResetStat           TruthValue,
    calixSoamExtMipRowStatus           RowStatus
    }

calixSoamExtMipIdentifier OBJECT-TYPE
    SYNTAX      Unsigned32(1..4294967295)
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Unique numerical identifier for the MIP."
    ::= { calixSoamExtMipEntry 1 }

calixSoamExtMipIfIndex OBJECT-TYPE
    SYNTAX      InterfaceIndex
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "This attributes specifies the interface index for the port
         on which the MIP is attached.
        "
    ::= { calixSoamExtMipEntry 3 }

calixSoamExtMipAdminState  OBJECT-TYPE
    SYNTAX      CalixEoamEnableType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Administrative state of the MIP."
    ::= { calixSoamExtMipEntry 4 }

calixSoamExtMipMacAddress  OBJECT-TYPE
    SYNTAX      MacAddress
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "MAC address of the MIP."
    ::= { calixSoamExtMipEntry 5 }

calixSoamExtMipResetStat OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "True indicates MIPs statistics should be cleared."
    ::= { calixSoamExtMipEntry 6 }

calixSoamExtMipRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The status of the row.
         This attribute is used to create and delete a MIP in the system.
        "
    ::= { calixSoamExtMipEntry 7 }

-- ******************************************************************
-- MIP statistics
-- ******************************************************************

calixSoamExtMipStatsTable   OBJECT-TYPE
    SYNTAX         SEQUENCE OF CalixSoamExtMipStatsEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION
        "This table contains Stats for all MIPs configured in the system."
    ::=  { calixEoamExtConfig 3 }

calixSoamExtMipStatsEntry OBJECT-TYPE
    SYNTAX         CalixSoamExtMipStatsEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION
        "Stats for a MIP entity."
    INDEX {  calixSoamExtMegIdentifier,
    		 calixSoamExtMipIdentifier  }
    ::=  { calixSoamExtMipStatsTable 1 }

CalixSoamExtMipStatsEntry ::=  SEQUENCE {
	calixSoamExtMipStatsDirection		Dot1agCfmMpDirection,
    calixSoamExtMipStatsLbmIn        	Counter32,
    calixSoamExtMipStatsLbrOut      	Counter32,
    calixSoamExtMipStatsLtmIn        	Counter32,
    calixSoamExtMipStatsLtmForwarded 	Counter32,
    calixSoamExtMipStatsLtrOut       	Counter32,
    calixSoamExtMipStatsLbmInvalidSenderId	Counter32,
    calixSoamExtMipStatsDiscards		Counter32,
    calixSoamExtMipStatsResetStat		TruthValue
    }

calixSoamExtMipStatsDirection OBJECT-TYPE
    SYNTAX      Dot1agCfmMpDirection
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
       "The direction in which the MHF faces for statistics."
    ::= { calixSoamExtMipStatsEntry 1 }

calixSoamExtMipStatsLbmIn OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of LBMs received by this MIP."
    ::= { calixSoamExtMipStatsEntry 2 }

calixSoamExtMipStatsLbrOut OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of LBRs sent by this MIP."
    ::= { calixSoamExtMipStatsEntry 3 }

calixSoamExtMipStatsLtmIn OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of LTMs received by this MIP."
    ::= { calixSoamExtMipStatsEntry 4 }

calixSoamExtMipStatsLtmForwarded OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of LTM messages forwarded by MIP."
    ::= { calixSoamExtMipStatsEntry 5 }

calixSoamExtMipStatsLtrOut OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of LTR responses sent by this MIP."
    ::= { calixSoamExtMipStatsEntry 6 }

calixSoamExtMipStatsLbmInvalidSenderId
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of received LBM with a bad Sender ID.
        "
    ::= { calixSoamExtMipStatsEntry 7 }

calixSoamExtMipStatsDiscards
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of discarded OAM frames.
        "
    ::= { calixSoamExtMipStatsEntry 8 }

calixSoamExtMipStatsResetStat OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "True indicates MEP statistics should be cleared."
    ::= { calixSoamExtMipStatsEntry 9 }


-- ******************************************************************
--    MEP extension for Delay Measurement and DVM
-- ******************************************************************

calixSoamExtMepDmExtTable   OBJECT-TYPE
    SYNTAX         SEQUENCE OF CalixSoamExtMepDmExtEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION
        "This table contains extended attributes and counters for the standard
         MEP table dot1agCfmMepTable, in order to support Delay Measurement and
         Delay Variation Measurment functionality.
        "
    ::=  { calixEoamExtConfig 4 }

calixSoamExtMepDmExtEntry OBJECT-TYPE
    SYNTAX         CalixSoamExtMepDmExtEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION
        "MEP Extension (DM and DVM) table for a given MEP object."
    INDEX { dot1agCfmMdIndex,
            dot1agCfmMaIndex,
            dot1agCfmMepIdentifier }
    ::=  { calixSoamExtMepDmExtTable   1 }

CalixSoamExtMepDmExtEntry ::=  SEQUENCE {
	calixSoamExtMepDmExtActive						CalixEoamEnableType,
    calixSoamExtMepDmExtDestMacAddress              MacAddress,
    calixSoamExtMepDmExtDestMepId                   Dot1agCfmMepIdOrZero,
    calixSoamExtMepDmExtDestIsMepId                 TruthValue,
    calixSoamExtMepDmExtClassOfService              Unsigned32,
    calixSoamExtMepDmExtDmPeriod                    INTEGER,
    calixSoamExtMepDmExtMaxRtdThrSet  				Unsigned32,
    calixSoamExtMepDmExtMaxRtdThrClr				Unsigned32,
    calixSoamExtMepDmExtAvgRtdThrSet  				Unsigned32,
    calixSoamExtMepDmExtAvgRtdThrClr				Unsigned32,
    calixSoamExtMepDmExtMaxRtdVarThrSet  			Unsigned32,
    calixSoamExtMepDmExtMaxRtdVarThrClr				Unsigned32,
    calixSoamExtMepDmExtAvgRtdVarThrSet  			Unsigned32,
    calixSoamExtMepDmExtAvgRtdVarThrClr				Unsigned32,
    calixSoamExtMepDmExtAvgRoundTripDelay           Unsigned32,
    calixSoamExtMepDmExtMinRoundTripDelay           Unsigned32,
    calixSoamExtMepDmExtMaxRoundTripDelay           Unsigned32,
    calixSoamExtMepDmExtAvgRoundTripDelayVariation  Unsigned32,
    calixSoamExtMepDmExtMinRoundTripDelayVariation  Unsigned32,
    calixSoamExtMepDmExtMaxRoundTripDelayVariation  Unsigned32,
    calixSoamExtMepDmExtAvgRoundTripProcessingDelay Unsigned32,
    calixSoamExtMepDmExtMinRoundTripProcessingDelay Unsigned32,
    calixSoamExtMepDmExtMaxRoundTripProcessingDelay Unsigned32,
    calixSoamExtMepDmExtDataLength					Unsigned32,
    calixSoamExtMepDmExtDataPattern					Unsigned32
    }

calixSoamExtMepDmExtActive OBJECT-TYPE
    SYNTAX      CalixEoamEnableType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Use to enable delay measurement."
    ::= { calixSoamExtMepDmExtEntry 1 }
    
calixSoamExtMepDmExtDestMacAddress    OBJECT-TYPE
    SYNTAX      MacAddress
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The Target MAC Address field to be transmitted: A unicast
         destination MAC address.
         This address will be used if the value of the column
         calixSoamExtMepDmExtDestIsMepId is 'False'.
        "
    ::= { calixSoamExtMepDmExtEntry  2 }

calixSoamExtMepDmExtDestMepId    OBJECT-TYPE
    SYNTAX      Dot1agCfmMepIdOrZero
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The MEP ID of remote MEP to which the DM is to be sent.
         This address will be used if the value of the column
         calixSoamExtMepDmExtDestIsMepId is 'True'.
        "
    ::= { calixSoamExtMepDmExtEntry  3 }

calixSoamExtMepDmExtDestIsMepId    OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "True indicates that MEP ID of the target MEP is used for
         DM transmission.
         False indicates that unicast destination MAC address of the
         target MEP is used for DM transmission.
        "
    ::= { calixSoamExtMepDmExtEntry  4 }

calixSoamExtMepDmExtClassOfService OBJECT-TYPE
    SYNTAX      Unsigned32(0..8)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Specifies the class of service for which the DMM is requested.
         A value of 8 indicates a full MEP level (CoS agnostic) request.
        "
    ::= { calixSoamExtMepDmExtEntry  5 }

calixSoamExtMepDmExtDmPeriod    OBJECT-TYPE
    SYNTAX      INTEGER {
        dm1sec(3),
        dm10sec(4)
    }
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Specifies the delay between two consecutive DM messages."
    ::= { calixSoamExtMepDmExtEntry   6 }

	calixSoamExtMepDmExtMaxRtdThrSet    OBJECT-TYPE
    SYNTAX      Unsigned32(0..100000)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The maximum round trip delay threshold upon which an alarm is to be raised.
        "
    ::= { calixSoamExtMepDmExtEntry   7 }

	calixSoamExtMepDmExtMaxRtdThrClr    OBJECT-TYPE
    SYNTAX      Unsigned32(0..100000)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The maximum round trip delay threshold upon which an alarm is to be cleared.
        "
    ::= { calixSoamExtMepDmExtEntry   8 }

	calixSoamExtMepDmExtAvgRtdThrSet    OBJECT-TYPE
    SYNTAX      Unsigned32(0..100000)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The average round trip delay threshold upon which an alarm is to be raised.
        "
    ::= { calixSoamExtMepDmExtEntry   9 }

	calixSoamExtMepDmExtAvgRtdThrClr    OBJECT-TYPE
    SYNTAX      Unsigned32(0..100000)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The average round trip delay threshold upon which an alarm is to be cleared.
        "
    ::= { calixSoamExtMepDmExtEntry   10 }

	calixSoamExtMepDmExtMaxRtdVarThrSet    OBJECT-TYPE
    SYNTAX      Unsigned32(0..100000)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The maximum round trip delay variation threshold upon which an alarm is to be raised.
        "
    ::= { calixSoamExtMepDmExtEntry   11 }

	calixSoamExtMepDmExtMaxRtdVarThrClr    OBJECT-TYPE
    SYNTAX      Unsigned32(0..100000)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The maximum round trip delay variation threshold upon which an alarm is to be cleared.
        "
    ::= { calixSoamExtMepDmExtEntry   12 }

	calixSoamExtMepDmExtAvgRtdVarThrSet    OBJECT-TYPE
    SYNTAX      Unsigned32(0..100000)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The average round trip delay variation threshold upon which an alarm is to be raised.
        "
    ::= { calixSoamExtMepDmExtEntry   13 }

	calixSoamExtMepDmExtAvgRtdVarThrClr    OBJECT-TYPE
    SYNTAX      Unsigned32(0..100000)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The average round trip delay variation threshold upon which an alarm is to be cleared.
        "
    ::= { calixSoamExtMepDmExtEntry   14 }

calixSoamExtMepDmExtAvgRoundTripDelay    OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The average round trip delay for the session, expressed in 1/100th of
         miliseconds.
        "
    ::= { calixSoamExtMepDmExtEntry   15 }

calixSoamExtMepDmExtMinRoundTripDelay    OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The minimum round trip delay for the session, expressed in 1/100th of
         miliseconds."
    ::= { calixSoamExtMepDmExtEntry   16 }

calixSoamExtMepDmExtMaxRoundTripDelay    OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The maximum round trip delay for the session, expressed in 1/100th of
         miliseconds.
        "
    ::= { calixSoamExtMepDmExtEntry   17 }

calixSoamExtMepDmExtAvgRoundTripDelayVariation    OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The average round trip delay variation for the session,
         expressed in 1/100th of miliseconds."
    ::= { calixSoamExtMepDmExtEntry   18 }

calixSoamExtMepDmExtMinRoundTripDelayVariation    OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The minimum round trip delay variation for the session,
         expressed in 1/100th of miliseconds."
    ::= { calixSoamExtMepDmExtEntry   19 }

calixSoamExtMepDmExtMaxRoundTripDelayVariation    OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The maximum round trip delay variation for the session,
         expressed in 1/100th of miliseconds."
    ::= { calixSoamExtMepDmExtEntry   20 }

calixSoamExtMepDmExtAvgRoundTripProcessingDelay    OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The average processing delay for the session,
         expressed in 1/100th of miliseconds.
        "
    ::= { calixSoamExtMepDmExtEntry   21 }

calixSoamExtMepDmExtMinRoundTripProcessingDelay    OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The minimum round trip delay variation for the session,
         expressed in 1/100th of miliseconds.
        "
    ::= { calixSoamExtMepDmExtEntry   22 }

calixSoamExtMepDmExtMaxRoundTripProcessingDelay    OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The maximum round trip delay variation for the session,
         expressed in 1/100th of miliseconds.
        "
    ::= { calixSoamExtMepDmExtEntry   23}

calixSoamExtMepDmExtDataLength    OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Length of data TLV in delay measurement frame.
        "
    ::= { calixSoamExtMepDmExtEntry   24 }

calixSoamExtMepDmExtDataPattern    OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Data pattern copied into data TLV.
        "
    ::= { calixSoamExtMepDmExtEntry   25 }


-- ******************************************************************
--    MEP extension for Frame Loss Measurement
-- ******************************************************************

calixSoamExtMepLmExtTable OBJECT-TYPE
    SYNTAX         SEQUENCE OF CalixSoamExtMepLmExtEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION
        "This table contains extended attributes and counters for the standard
         MEP table dot1agCfmMepTable, in order to support FLM on demand functionality.
        "
    ::=  { calixEoamExtConfig 5 }

calixSoamExtMepLmExtEntry OBJECT-TYPE
    SYNTAX         CalixSoamExtMepLmExtEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION
        "MEP Extension (FLM) table for a given MEP object"
    INDEX { dot1agCfmMdIndex,
            dot1agCfmMaIndex,
            dot1agCfmMepIdentifier }
    ::=  { calixSoamExtMepLmExtTable   1 }

CalixSoamExtMepLmExtEntry   ::=  SEQUENCE {
	calixSoamExtMepLmExtActive				  CalixEoamEnableType,
    calixSoamExtMepLmExtDestMacAddress        MacAddress,
    calixSoamExtMepLmExtDestMepId             Dot1agCfmMepIdOrZero,
    calixSoamExtMepLmExtDestIsMepId           TruthValue,
    calixSoamExtMepLmExtLmType			      CalixSoamLmType,
    calixSoamExtMepLmExtClassOfService        Unsigned32,
    calixSoamExtMepLmExtLmPeriod              INTEGER,
    calixSoamExtMepLmExtMaxNearEndLossThrSet  Unsigned32,
    calixSoamExtMepLmExtMaxNearEndLossThrClr  Unsigned32,
    calixSoamExtMepLmExtAvgNearEndLossThrSet  Unsigned32,
    calixSoamExtMepLmExtAvgNearEndLossThrClr  Unsigned32,
    calixSoamExtMepLmExtMaxFarEndLossThrSet   Unsigned32,
    calixSoamExtMepLmExtMaxFarEndLossThrClr   Unsigned32,
    calixSoamExtMepLmExtAvgFarEndLossThrSet   Unsigned32,
    calixSoamExtMepLmExtAvgFarEndLossThrClr   Unsigned32,
    calixSoamExtMepLmExtNearEndLostPkts       Counter32,
    calixSoamExtMepLmExtNearEndLossRatio      Unsigned32,
    calixSoamExtMepLmExtMaxNearEndLossRatio   Unsigned32,
    calixSoamExtMepLmExtMinNearEndLossRatio   Unsigned32,
    calixSoamExtMepLmExtAvgNearEndLossRatio   Unsigned32,
    calixSoamExtMepLmExtFarEndLostPkts   	  Counter32,
    calixSoamExtMepLmExtFarEndLossRatio       Unsigned32,
    calixSoamExtMepLmExtMaxFarEndLossRatio    Unsigned32,
    calixSoamExtMepLmExtMinFarEndLossRatio    Unsigned32,
    calixSoamExtMepLmExtAvgFarEndLossRatio    Unsigned32
    }

calixSoamExtMepLmExtActive OBJECT-TYPE
    SYNTAX      CalixEoamEnableType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Use to enable frame delay measurement."
    ::= { calixSoamExtMepLmExtEntry 1 }
    
calixSoamExtMepLmExtDestMacAddress OBJECT-TYPE
    SYNTAX      MacAddress
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The Target MAC Address Field to be transmitted: A unicast
         destination MAC address.
         This address will be used if the value of the column
         calixSoamExtMepLmExtDestIsMepId is 'False'.
        "
    ::= { calixSoamExtMepLmExtEntry 2 }

calixSoamExtMepLmExtDestMepId OBJECT-TYPE
    SYNTAX      Dot1agCfmMepIdOrZero
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The MEP ID of remote MEP to which the FLM is to be sent.
         This address will be used if the value of the column
         calixSoamExtMepLmExtDestIsMepId is 'True'.
        "
    ::= { calixSoamExtMepLmExtEntry 3 }

calixSoamExtMepLmExtDestIsMepId OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "True indicates that MEPID is used for FLM transmission.
         False indicates that unicast destination MAC address is used for FLM transmission.
        "
    ::= { calixSoamExtMepLmExtEntry 4}

calixSoamExtMepLmExtLmType OBJECT-TYPE
    SYNTAX      CalixSoamLmType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Specifies the type of Frame Loss Measurement: Single or Dual.
        "
    ::= { calixSoamExtMepLmExtEntry  5 }

calixSoamExtMepLmExtClassOfService OBJECT-TYPE
    SYNTAX      Unsigned32(0..8)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Specifies the class of service for which the FLM is requested.
         A value of 8 indicates a full MEP level (CoS agnostic) request.
        "
    ::= { calixSoamExtMepLmExtEntry  6 }

calixSoamExtMepLmExtLmPeriod OBJECT-TYPE
    SYNTAX INTEGER {
              lm100ms(1),
              lm1sec(2),
              lm10sec(3)
              }
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Specifies the delay between two consecutive FLM messages"
    ::= { calixSoamExtMepLmExtEntry   7 }


	calixSoamExtMepLmExtMaxNearEndLossThrSet    OBJECT-TYPE
    SYNTAX      Unsigned32(0..1000000)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The maximum near end frame loss threshold upon which an alarm is to be raised.
        "
    ::= { calixSoamExtMepLmExtEntry   8 }

	calixSoamExtMepLmExtMaxNearEndLossThrClr    OBJECT-TYPE
    SYNTAX      Unsigned32(0..1000000)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The maximum near end frame loss threshold upon which an alarm is to be cleared.
        "
    ::= { calixSoamExtMepLmExtEntry   9 }

	calixSoamExtMepLmExtAvgNearEndLossThrSet    OBJECT-TYPE
    SYNTAX      Unsigned32(0..1000000)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The average near end frame loss threshold upon which an alarm is to be raised.
        "
    ::= { calixSoamExtMepLmExtEntry   10 }

	calixSoamExtMepLmExtAvgNearEndLossThrClr    OBJECT-TYPE
    SYNTAX      Unsigned32(0..1000000)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The average near end frame loss threshold upon which an alarm is to be cleared.
        "
    ::= { calixSoamExtMepLmExtEntry   11 }

	calixSoamExtMepLmExtMaxFarEndLossThrSet    OBJECT-TYPE
    SYNTAX      Unsigned32(0..1000000)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The maximum far end loss threshold upon which an alarm is to be raised.
        "
    ::= { calixSoamExtMepLmExtEntry   12 }

	calixSoamExtMepLmExtMaxFarEndLossThrClr    OBJECT-TYPE
    SYNTAX      Unsigned32(0..1000000)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The maximum far end loss threshold upon which an alarm is to be cleared.
        "
    ::= { calixSoamExtMepLmExtEntry   13 }

	calixSoamExtMepLmExtAvgFarEndLossThrSet    OBJECT-TYPE
    SYNTAX      Unsigned32(0..1000000)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The average far end loss threshold upon which an alarm is to be raised.
        "
    ::= { calixSoamExtMepLmExtEntry   14 }

	calixSoamExtMepLmExtAvgFarEndLossThrClr    OBJECT-TYPE
    SYNTAX      Unsigned32(0..1000000)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The average far end loss threshold upon which an alarm is to be cleared.
        "
    ::= { calixSoamExtMepLmExtEntry   15 }

calixSoamExtMepLmExtNearEndLostPkts OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Number of frames lost at the near end."
    ::= { calixSoamExtMepLmExtEntry   16 }

calixSoamExtMepLmExtNearEndLossRatio OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Frame loss ratio at near end, in 1/1000000th of percentage points.
         A value of 10000 means 1% loss ratio.
        "
    ::= { calixSoamExtMepLmExtEntry   17 }

calixSoamExtMepLmExtMaxNearEndLossRatio OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Maximum frame loss ratio at near end, in 1/1000000th of percentage 
         points. A value of 10000 means 1% loss ratio.
        "
    ::= { calixSoamExtMepLmExtEntry   18 }

calixSoamExtMepLmExtMinNearEndLossRatio OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Minimum frame loss ratio at near end, in 1/1000000th of percentage 
         points. A value of 10000 means 1% loss ratio.
        "
    ::= { calixSoamExtMepLmExtEntry   19 }

calixSoamExtMepLmExtAvgNearEndLossRatio OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Average frame loss ratio at near end, in 1/1000000th of percentage 
         points. A value of 10000 means 1% loss ratio.
        "
    ::= { calixSoamExtMepLmExtEntry   20 }

calixSoamExtMepLmExtFarEndLostPkts OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Number of frames lost at the far end."
    ::= { calixSoamExtMepLmExtEntry   21 }

calixSoamExtMepLmExtFarEndLossRatio OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Frame loss ratio at far end, in 1/1000000th of percentage points.
         A value of 10000 means 1% loss ratio.
        "
    ::= { calixSoamExtMepLmExtEntry   22 }

calixSoamExtMepLmExtMaxFarEndLossRatio OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Maximum frame loss ratio at far end, in 1/1000000th of percentage 
         points. A value of 10000 means 1% loss ratio.
        "
    ::= { calixSoamExtMepLmExtEntry   23 }

calixSoamExtMepLmExtMinFarEndLossRatio OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Minimum frame loss ratio at far end, in 1/1000000th of percentage 
         points. A value of 10000 means 1% loss ratio.
        "
    ::= { calixSoamExtMepLmExtEntry   24 }

calixSoamExtMepLmExtAvgFarEndLossRatio OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Average frame loss ratio at far end, in 1/1000000th of percentage 
         points. A value of 10000 means 1% loss ratio.
        "
    ::= { calixSoamExtMepLmExtEntry   25 }


-- ******************************************************************
--    MEP extension for Multicast Loopback
-- ******************************************************************

calixSoamExtMepMcastLoopbackSessionTable   OBJECT-TYPE
    SYNTAX         SEQUENCE OF CalixSoamExtMepMcastLoopbackSessionEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION
        "This table is used to initiate a multicast loopback request for 
        a given MEP.
        "
    ::=  { calixEoamExtConfig 6 }

calixSoamExtMepMcastLoopbackSessionEntry  OBJECT-TYPE
    SYNTAX         CalixSoamExtMepMcastLoopbackSessionEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION
        "Each MEP can have only one active Multicast Loopback Request
         at a given time.
        "
    INDEX { dot1agCfmMdIndex,
            dot1agCfmMaIndex,
            dot1agCfmMepIdentifier }
    ::=  { calixSoamExtMepMcastLoopbackSessionTable 1 }

CalixSoamExtMepMcastLoopbackSessionEntry ::= SEQUENCE {
    calixSoamExtMepMcastLoopbackSessionStatus      INTEGER,
    calixSoamExtMepMcastLoopbackSessionReplies     Unsigned32
    }

calixSoamExtMepMcastLoopbackSessionStatus OBJECT-TYPE
    SYNTAX      INTEGER {
        none(1),
        inProgress(2),
        completed(3),
        activate(4),
        failed(5)
    }
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Specifies the status of the Multicast Loopback request
         for the particular ITU-T Y.1731 MEP. In order to activate a new
         session, write 'activate' in this variable.
        "
    ::= { calixSoamExtMepMcastLoopbackSessionEntry 1 }

calixSoamExtMepMcastLoopbackSessionReplies OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Indicates the number of replies received for this multicast loopback
         session.
        "
    ::= { calixSoamExtMepMcastLoopbackSessionEntry 2 }

-- ******************************************************************
--  Multicast Loopback Results table
-- ******************************************************************

calixSoamExtMepMcastLoopbackResultsTable   OBJECT-TYPE
    SYNTAX         SEQUENCE OF CalixSoamExtMepMcastLoopbackResultsEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION
        "This table is used to read the results of a multicast
         loopback request for a given MEP.
        "
    ::=  { calixEoamExtConfig 7 }

calixSoamExtMepMcastLoopbackResultsEntry  OBJECT-TYPE
    SYNTAX         CalixSoamExtMepMcastLoopbackResultsEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION
        "Each MEP can have only one active Multicast Loopback Request
         at a given time. This table presents the results of the last request
         indexed by the reply order.
        "
    INDEX { dot1agCfmMdIndex,
            dot1agCfmMaIndex,
            dot1agCfmMepIdentifier,
            calixSoamExtMepMcastLoopbackResultsIndex }
    ::=  { calixSoamExtMepMcastLoopbackResultsTable 1 }

CalixSoamExtMepMcastLoopbackResultsEntry ::= SEQUENCE {
    calixSoamExtMepMcastLoopbackResultsIndex      Unsigned32,
    calixSoamExtMepMcastLoopbackResultsMacAddress MacAddress
    }

calixSoamExtMepMcastLoopbackResultsIndex OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Specifies the index of the multicast loopback result."
    ::= { calixSoamExtMepMcastLoopbackResultsEntry 1 }

calixSoamExtMepMcastLoopbackResultsMacAddress OBJECT-TYPE
    SYNTAX      MacAddress
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "MAC address for the received reply."
    ::= { calixSoamExtMepMcastLoopbackResultsEntry 2 }

-- ******************************************************************
--  MEP extension for Statistics
-- ******************************************************************

calixSoamExtMepStatsExtTable OBJECT-TYPE
    SYNTAX SEQUENCE OF CalixSoamExtMepStatsExtEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "This table contains extensions of the dot1agCfmMepTable for MEP Statistics."
    ::= { calixEoamExtConfig 8 }

calixSoamExtMepStatsExtEntry OBJECT-TYPE
    SYNTAX      CalixSoamExtMepStatsExtEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Extended counters and attributes for MEP configuration."
    INDEX { dot1agCfmMdIndex,
            dot1agCfmMaIndex,
            dot1agCfmMepIdentifier
          }
    ::= { calixSoamExtMepStatsExtTable 1}

CalixSoamExtMepStatsExtEntry ::= SEQUENCE {
    calixSoamExtMepStatsExtCcmRdiSent           Counter32,
    calixSoamExtMepStatsExtCcmReceived          Counter32,
    calixSoamExtMepStatsExtCcmInvalidSenderId   Counter32,
    calixSoamExtMepStatsExtCcmInvalidPortStatus Counter32,
    calixSoamExtMepStatsExtCcmInvalidIfStatus   Counter32,
    calixSoamExtMepStatsExtCcmRdiReceived       Counter32,
    calixSoamExtMepStatsExtLbmReceived		  	Counter32,
    calixSoamExtMepStatsExtLbmSent			  	Counter32,
    calixSoamExtMepStatsExtLbmInvalidSenderId   Counter32,
    calixSoamExtMepStatsExtLbrInvalidSenderId   Counter32,
    calixSoamExtMepStatsExtLtmReceived		  	Counter32,
    calixSoamExtMepStatsExtLtmSent			  	Counter32,
    calixSoamExtMepStatsExtLtrInvalidMac		Counter32,
    calixSoamExtMepStatsExtLtrReceived		  	Counter32,
    calixSoamExtMepStatsExtLtrSent			  	Counter32,
    calixSoamExtMepStatsExtLmmReceived		  	Counter32,
    calixSoamExtMepStatsExtLmmSent			  	Counter32,
    calixSoamExtMepStatsExtLmrReceived		  	Counter32,
    calixSoamExtMepStatsExtLmrSent			 	Counter32,
    calixSoamExtMepStatsExtDmmReceived		  	Counter32,
    calixSoamExtMepStatsExtDmmSent			  	Counter32,
    calixSoamExtMepStatsExtDmrReceived		  	Counter32,
    calixSoamExtMepStatsExtDmrSent			  	Counter32,
    calixSoamExtMepStatsExtResetStat			TruthValue
    }

calixSoamExtMepStatsExtCcmRdiSent
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of sent CCMs with RDI bit set."
    ::= { calixSoamExtMepStatsExtEntry 1 }

calixSoamExtMepStatsExtCcmReceived
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of CCMs received from all remote MEPs."
    ::= { calixSoamExtMepStatsExtEntry 2 }

calixSoamExtMepStatsExtCcmInvalidSenderId
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of CCMs with invalid Sender ID TLV received from all
         remote MEPs.
        "
    ::= { calixSoamExtMepStatsExtEntry 3 }

calixSoamExtMepStatsExtCcmInvalidPortStatus
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of CCMs with invalid Port Status TLV received from all
         remote MEPs.
        "
    ::= { calixSoamExtMepStatsExtEntry 4 }

calixSoamExtMepStatsExtCcmInvalidIfStatus
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of CCMs with invalid Interface Status TLV received from all
         remote MEPs.
        "
    ::= { calixSoamExtMepStatsExtEntry 5 }

calixSoamExtMepStatsExtCcmRdiReceived
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of CCMs with RDI bit set received from all
         remote MEPs.
        "
    ::= { calixSoamExtMepStatsExtEntry 6 }

calixSoamExtMepStatsExtLbmReceived
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of LBM messages received.
        "
    ::= { calixSoamExtMepStatsExtEntry 7 }

calixSoamExtMepStatsExtLbmSent
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of LBM messages sent.
        "
    ::= { calixSoamExtMepStatsExtEntry 8 }


calixSoamExtMepStatsExtLbmInvalidSenderId
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of LBM messages received with
         a bad sender ID.
        "
    ::= { calixSoamExtMepStatsExtEntry 9 }


calixSoamExtMepStatsExtLbrInvalidSenderId
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of LBR messages received with
         a bad sender ID.
        "
    ::= { calixSoamExtMepStatsExtEntry 10 }


calixSoamExtMepStatsExtLtmReceived
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of LTM messages received.
        "
    ::= { calixSoamExtMepStatsExtEntry 11 }


calixSoamExtMepStatsExtLtmSent
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of LTM messages sent.
        "
    ::= { calixSoamExtMepStatsExtEntry 12 }


calixSoamExtMepStatsExtLtrInvalidMac
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of LTR messages received with
         a bad MAC address.
        "
    ::= { calixSoamExtMepStatsExtEntry 13 }


calixSoamExtMepStatsExtLtrReceived
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of LTR messages received.
        "
    ::= { calixSoamExtMepStatsExtEntry 14 }


calixSoamExtMepStatsExtLtrSent
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of LTR messages sent.
        "
    ::= { calixSoamExtMepStatsExtEntry 15 }


calixSoamExtMepStatsExtLmmReceived
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of LMM messages received.
        "
    ::= { calixSoamExtMepStatsExtEntry 16 }


calixSoamExtMepStatsExtLmmSent
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of LMM messages sent.
        "
    ::= { calixSoamExtMepStatsExtEntry 17 }

calixSoamExtMepStatsExtLmrReceived
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of LMR messages received.
        "
    ::= { calixSoamExtMepStatsExtEntry 18 }


calixSoamExtMepStatsExtLmrSent
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of LMR messages sent.
        "
    ::= { calixSoamExtMepStatsExtEntry 19 }

calixSoamExtMepStatsExtDmmReceived
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of DMM messages received.
        "
    ::= { calixSoamExtMepStatsExtEntry 20 }


calixSoamExtMepStatsExtDmmSent
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of DMM messages sent.
        "
    ::= { calixSoamExtMepStatsExtEntry 21 }

calixSoamExtMepStatsExtDmrReceived
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of DMR messages received.
        "
    ::= { calixSoamExtMepStatsExtEntry 22 }


calixSoamExtMepStatsExtDmrSent
    OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The total number of DMR messages sent.
        "
    ::= { calixSoamExtMepStatsExtEntry 23 }

calixSoamExtMepStatsExtResetStat OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "True indicates MEP statistics should be cleared."
    ::= { calixSoamExtMepStatsExtEntry 24 }


-- ******************************************************************
-- MEP Extension for Unicast Loopback Result Table
-- ******************************************************************

calixSoamExtMepUcastLoopbackResultsTable OBJECT-TYPE
    SYNTAX SEQUENCE OF CalixSoamExtMepUcastLoopbackResultsEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "This table contains Unicast Loopback protocol results for corresponding MEP."
    ::= { calixEoamExtConfig 9 }

calixSoamExtMepUcastLoopbackResultsEntry OBJECT-TYPE
    SYNTAX      CalixSoamExtMepUcastLoopbackResultsEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Unicast Loopback result for corresponding MEP."
    INDEX { dot1agCfmMdIndex,
            dot1agCfmMaIndex,
            dot1agCfmMepIdentifier
          }
    ::= { calixSoamExtMepUcastLoopbackResultsTable 1}

CalixSoamExtMepUcastLoopbackResultsEntry ::= SEQUENCE {
    calixSoamExtMepUcastLoopbackResultsLbmFirstSeqNumber Unsigned32,
    calixSoamExtMepUcastLoopbackResultsDestMacAddress    MacAddress,
    calixSoamExtMepUcastLoopbackResultsStatus            INTEGER,
    calixSoamExtMepUcastLoopbackResultsLbmOut            Counter32,
    calixSoamExtMepUcastLoopbackResultsLbrIn             Counter32
    }

calixSoamExtMepUcastLoopbackResultsLbmFirstSeqNumber OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The Loopback Transaction Identifier of the first LBM sent. This value can be obtained
         from dot1agCfmMepTransmitLbmSeqNumber of dot1agCfmMepTable table after Loopback transmitting.
        "
    ::= { calixSoamExtMepUcastLoopbackResultsEntry 1 }

calixSoamExtMepUcastLoopbackResultsDestMacAddress OBJECT-TYPE
    SYNTAX      MacAddress
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The MAC Address of destination MP."
    ::= { calixSoamExtMepUcastLoopbackResultsEntry 2 }

calixSoamExtMepUcastLoopbackResultsStatus OBJECT-TYPE
    SYNTAX      INTEGER {
      none(0),
      inProgress(1),
      failed(2),
      succeeded(3)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Specifies the state of the current Loopback request."
    ::= { calixSoamExtMepUcastLoopbackResultsEntry 3 }

calixSoamExtMepUcastLoopbackResultsLbmOut OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Loopback Messages sent."
    ::= { calixSoamExtMepUcastLoopbackResultsEntry 4 }

calixSoamExtMepUcastLoopbackResultsLbrIn OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Loopback replies received."
    ::= { calixSoamExtMepUcastLoopbackResultsEntry 5 }

-- ******************************************************************
-- System Level MIB extensions for SOAM
-- ******************************************************************

-- ******************************************************************
-- SOAM Configration Extension 
-- ******************************************************************

calixSoamExtCfgTable OBJECT-TYPE
    SYNTAX 		SEQUENCE  OF  CalixSoamExtCfgEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "This table contains Unicast Loopback protocol results for corresponding MEP."
    ::= { calixEoamExtConfig 10 }

calixSoamExtCfgEntry OBJECT-TYPE
    SYNTAX      CalixSoamExtCfgEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "General Service OAM Configuration Table."
    INDEX { calixSoamExtCfgIndex
          }
    ::= { calixSoamExtCfgTable 1}

CalixSoamExtCfgEntry ::= SEQUENCE {
	calixSoamExtCfgIndex				Unsigned32, 
    calixSoamExtCfgAdminState			CalixEoamEnableType,
    calixSoamExtCfgPermission			Dot1agCfmIdPermission,
    calixSoamExtCfgChassisIdSubtype     LldpChassisIdSubtype,
    calixSoamExtCfgChassisId			LldpChassisId,
    calixSoamExtCfgManAddressDomain     TDomain,
    calixSoamExtCfgManAddress         	TAddress,
    calixSoamExtCfgCcmOptTlvSenderId	CalixEoamEnableType,
    calixSoamExtCfgCcmOptTlvPortStatus	CalixEoamEnableType,
    calixSoamExtCfgCcmOptTlvIfStatus	CalixEoamEnableType,
    calixSoamExtCfgLtmOptTlvSenderId	CalixEoamEnableType,
    calixSoamExtCfgLbmOptTlvSenderId	CalixEoamEnableType,
    calixSoamExtCfgLbmOptTlvIfStatus	CalixEoamEnableType,
    calixSoamExtCfgLbmOptTlvData		CalixEoamEnableType,
    calixSoamExtCfgDmmOptTlvData		CalixEoamEnableType
    }

calixSoamExtCfgIndex OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Index of auto instantited configuration MIB.  Must be 1.
        "
    ::= { calixSoamExtCfgEntry 1 }


calixSoamExtCfgAdminState OBJECT-TYPE
    SYNTAX      CalixEoamEnableType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "State of Service level Ethernet OAM.  Set this to enable to begin transmitting Ethernet OAM
         frames from configures MEG/MEPs.
        "
    ::= { calixSoamExtCfgEntry 2 }

calixSoamExtCfgPermission OBJECT-TYPE
    SYNTAX      Dot1agCfmIdPermission
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Default permission level determining which optional TLVs to include.
        "
    ::= { calixSoamExtCfgEntry 3 }

calixSoamExtCfgChassisIdSubtype OBJECT-TYPE
    SYNTAX      LldpChassisIdSubtype
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Chassis ID Subtype.
        "
    ::= { calixSoamExtCfgEntry 4 }

calixSoamExtCfgChassisId OBJECT-TYPE
    SYNTAX      LldpChassisId
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Chassis ID.
        "
    ::= { calixSoamExtCfgEntry 5 }

calixSoamExtCfgManAddressDomain OBJECT-TYPE
    SYNTAX      TDomain
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Management Domain.
        "
    ::= { calixSoamExtCfgEntry 6 }

calixSoamExtCfgManAddress OBJECT-TYPE
    SYNTAX      TAddress
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Management Address.
        "
    ::= { calixSoamExtCfgEntry 7 }

calixSoamExtCfgCcmOptTlvSenderId OBJECT-TYPE
    SYNTAX      CalixEoamEnableType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Enable to include sender ID TLV in CCM messages.
        "
    ::= { calixSoamExtCfgEntry 8 }

calixSoamExtCfgCcmOptTlvPortStatus OBJECT-TYPE
    SYNTAX      CalixEoamEnableType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Enable to include Port Status TLV in CCM messages.
        "
    ::= { calixSoamExtCfgEntry 9 }

calixSoamExtCfgCcmOptTlvIfStatus OBJECT-TYPE
    SYNTAX      CalixEoamEnableType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Enable to include Interface Status TLV in CCM messages.
        "
    ::= { calixSoamExtCfgEntry 10 }

calixSoamExtCfgLtmOptTlvSenderId OBJECT-TYPE
    SYNTAX      CalixEoamEnableType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Enable to include Sender ID TLV in LTM messages.
        "
    ::= { calixSoamExtCfgEntry 11 }

calixSoamExtCfgLbmOptTlvSenderId OBJECT-TYPE
    SYNTAX      CalixEoamEnableType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Enable to include Sender ID TLV in LBM messages.
        "
    ::= { calixSoamExtCfgEntry 12 }

calixSoamExtCfgLbmOptTlvIfStatus OBJECT-TYPE
    SYNTAX      CalixEoamEnableType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Enable to include Interface Status TLV in LBM messages.
        "
    ::= { calixSoamExtCfgEntry 13 }

calixSoamExtCfgLbmOptTlvData OBJECT-TYPE
    SYNTAX      CalixEoamEnableType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Enable to include Data TLV in LBM messages.
        "
    ::= { calixSoamExtCfgEntry 14 }

calixSoamExtCfgDmmOptTlvData OBJECT-TYPE
    SYNTAX      CalixEoamEnableType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Enable to include Data TLV in DMM messages.
        "
    ::= { calixSoamExtCfgEntry 15 }

-- ******************************************************************
-- LOAM Configration Extension 
-- ******************************************************************

calixLoamExtCfgTable OBJECT-TYPE
    SYNTAX 		SEQUENCE  OF  CalixLoamExtCfgEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "This table contains settings for enabling/disabling the Link OAM feature."
    ::= { calixEoamExtConfig 11 }

calixLoamExtCfgEntry OBJECT-TYPE
    SYNTAX      CalixLoamExtCfgEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "General Link OAM Configuration Table."
    INDEX { calixLoamExtCfgIndex
          }
    ::= { calixLoamExtCfgTable 1}

CalixLoamExtCfgEntry ::= SEQUENCE {
	calixLoamExtCfgIndex				Unsigned32, 
    calixLoamExtCfgAdminState			CalixEoamEnableType
    }

calixLoamExtCfgIndex OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Index of auto instantiated configuration MIB.  Must be 1.
        "
    ::= { calixLoamExtCfgEntry 1 }

calixLoamExtCfgAdminState OBJECT-TYPE
    SYNTAX      CalixEoamEnableType
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "State of Service level Ethernet OAM.  Set this to enable to begin transmitting Ethernet OAM
         frames from configures MEG/MEPs.
        "
    ::= { calixLoamExtCfgEntry 2 }

-- ******************************************************************
-- RFC 2544 configuration
-- ******************************************************************

calixRfc2544CfgTable OBJECT-TYPE
    SYNTAX         SEQUENCE OF CalixRfc2544CfgEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION
        "This table places a port in RFC2544 Reflector Mode."
    ::=  { calixEoamExtConfig 12 }

calixRfc2544CfgEntry OBJECT-TYPE
    SYNTAX         CalixRfc2544CfgEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION
        "Only one port can be in RFC 2544 Reflector Mode at any given time."
    INDEX {  calixRfc2544CfgIndex }
    ::=  { calixRfc2544CfgTable 1 }

CalixRfc2544CfgEntry ::=  SEQUENCE {
	calixRfc2544CfgIndex  			   Unsigned32, 
    calixRfc2544CfgIfIndex      	   InterfaceIndex,
    calixRfc2544CfgAdminState          CalixEoamEnableType,
    calixRfc2544CfgVlanId			   VlanId,
    calixRfc2544CfgMacAddress          MacAddress
    }

calixRfc2544CfgIndex OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Index of auto instantiated RFC 2544 configuration MIB.  Must be 1.
        "
    ::= { calixRfc2544CfgEntry 1 }

calixRfc2544CfgAdminState  OBJECT-TYPE
    SYNTAX      CalixEoamEnableType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Administrative state of the RFC 2544 Reflector."
    ::= { calixRfc2544CfgEntry 2 }

calixRfc2544CfgIfIndex OBJECT-TYPE
    SYNTAX      InterfaceIndex
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "This attributes specifies the interface index for the port
         in RFC 2544 Reflector Mode.
        "
    ::= { calixRfc2544CfgEntry 3 }

calixRfc2544CfgVlanId  OBJECT-TYPE
    SYNTAX      VlanId
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "VLAN ID of Service."
    ::= { calixRfc2544CfgEntry 4 }

calixRfc2544CfgMacAddress  OBJECT-TYPE
    SYNTAX      MacAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "Destination MAC address of frames to reflect."
    ::= { calixRfc2544CfgEntry 5 }

END