summaryrefslogtreecommitdiff
path: root/MIBS/transition/TN-EVC-MIB
blob: 6c670290260de23533fd4f504d7bcfedf1a0a4ec (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
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
-- *****************************************************************
-- TN-EVC-MIB.my : TN Ethernet Virtual Connection MIB
--
-- Copyright (c) 2014 by Transition Networks, Inc.
-- All rights reserved.
--
-- *****************************************************************

TN-EVC-MIB DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-IDENTITY,
    NOTIFICATION-TYPE,
    OBJECT-TYPE,
    Unsigned32,
    Counter64
        FROM SNMPv2-SMI
    InetAddress FROM INET-ADDRESS-MIB
    MODULE-COMPLIANCE,
    OBJECT-GROUP,
    NOTIFICATION-GROUP
        FROM SNMPv2-CONF
    entPhysicalIndex FROM ENTITY-MIB
    TEXTUAL-CONVENTION,
    TruthValue,
    RowStatus,
    MacAddress,
    StorageType
        FROM SNMPv2-TC
    SnmpAdminString
        FROM SNMP-FRAMEWORK-MIB
    VlanId,
    VlanIdOrAny,
    VlanIdOrNone,
    VlanIdOrAnyOrNone,
    PortList
        FROM Q-BRIDGE-MIB
    ifIndex,
    InterfaceIndexOrZero
        FROM IF-MIB
    tnProducts
        FROM TRANSITION-SMI;

tnEvcMib MODULE-IDENTITY
    LAST-UPDATED    "201405060000Z"
    ORGANIZATION    "Transition Networks, Inc."
    CONTACT-INFO
            "Transition Networks
                  Technical Support

                  10900 Red Circle Drive
                  Minnetonka, MN 55343 USA
                  Tel: +1-800-526-9267

                  E-mail: techsupport@transition.com"
    DESCRIPTION
        "TBD"
    REVISION        "201204200000Z"
    DESCRIPTION
        "Initial version of this MIB module."
    REVISION        "201207060000Z"
    DESCRIPTION
        "Add L2CP to the mib."
    REVISION        "201401090000Z"
    DESCRIPTION
        "Add tnEvcName to MIB module."
    REVISION        "201405060000Z"
    DESCRIPTION
        "Add Serval MIBs to MIB module."
    ::= { tnProducts 106 }

tnEvcObjects  OBJECT IDENTIFIER
    ::= { tnEvcMib 1 }

tnEvcCfgMgmtGroup       OBJECT IDENTIFIER ::= { tnEvcObjects 1 }
tnEvcStatGroup          OBJECT IDENTIFIER ::= { tnEvcObjects 2 }
tnEvcL2cpMgmtGroup      OBJECT IDENTIFIER ::= { tnEvcObjects 3 }

-- EVC port table

tnEvcPortTable OBJECT-TYPE
    SYNTAX          SEQUENCE OF TnEvcPortEntry
    MAX-ACCESS      not-accessible
    STATUS          current
    DESCRIPTION
        "This table displays and sets current EVC port configurations.

        This table has a sparse depedent relationship on the ifTable,
        containing a row for each ifEntry having an ifType of
        'ethernetCsmacd' capable of supporting Ethernet services."
    ::= { tnEvcCfgMgmtGroup 1 }

tnEvcPortEntry OBJECT-TYPE
    SYNTAX          TnEvcPortEntry
    MAX-ACCESS      not-accessible
    STATUS          current
    DESCRIPTION
        "This entry represents an EVC port configuration."
    INDEX           { ifIndex }
    ::= { tnEvcPortTable 1 }

TnEvcPortEntry ::= SEQUENCE {
        tnEvcPortDEIMode                    INTEGER,
        tnEvcPortTagMode                    INTEGER,
        tnEvcPortAddressMode                INTEGER
}

tnEvcPortDEIMode OBJECT-TYPE
    SYNTAX          INTEGER  {
                        coloured(1),
                        fixed(2)
                    }
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "The DEI mode for an NNI port determines whether frames transmitted on the port will have the DEI field
         in the outer tag marked based on the colour of the frame. The allowed values are:

           'coloured':
               The DEI is 1 for yellow frames and 0 for green frames.

           'fixed':
                The DEI value is determined by ECE rules.
            "
    ::= { tnEvcPortEntry 1 }

tnEvcPortTagMode OBJECT-TYPE
    SYNTAX          INTEGER  {
                        inner(1),
                        outer(2)
                    }
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "The inner tag type is used to determine whether an inner tag is inserted in frames
         forwarded to NNI ports. The possible values are:

           'inner':
               An inner tag is not inserted.

           'outer':
                An inner C-tag is inserted.
            "
    ::= { tnEvcPortEntry 2 }

tnEvcPortAddressMode OBJECT-TYPE
    SYNTAX          INTEGER  {
                        source(1),
                        destination(2)
                    }
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "The IP/MAC address mode specifying whether the EVC classification must be based on
         source (SMAC/SIP) or destination (DMAC/DIP) addresses. The allowed values are:
         'source':
              Enable SMAC/SIP matching.
         'destination':
              Enable DMAC/DIP matching.
         "
    ::= { tnEvcPortEntry 3 }


-- EVC tables

tnEvcTable OBJECT-TYPE
    SYNTAX          SEQUENCE OF TnEvcEntry
    MAX-ACCESS      not-accessible
    STATUS          current
    DESCRIPTION
        "This table contains the configuration of EVC(Ethernet Virtual Circuit)."
    ::= { tnEvcCfgMgmtGroup 2 }

tnEvcEntry OBJECT-TYPE
    SYNTAX          TnEvcEntry
    MAX-ACCESS      not-accessible
    STATUS          current
    DESCRIPTION
        "This entry represents an EVC.

        Each entry in this table represents an EVC and can be created or deleted
        by the management system."
    INDEX           { tnEvcIndex }
    ::= { tnEvcTable 1 }

TnEvcEntry ::= SEQUENCE {
        tnEvcIndex                      INTEGER,
        tnEvcNNIPortlist                PortList,
        tnEvcVid                        VlanIdOrAny,
        tnEvcIVid                       VlanIdOrAny,
        tnEvcLearning                   INTEGER,
        tnEvcInnerTagType               INTEGER,
        tnEvcInnerVidMode               INTEGER,
        tnEvcInnerVid                   VlanIdOrAnyOrNone,
        tnEvcInnerPCPDEIPreservation    INTEGER,
        tnEvcInnerPCP                   INTEGER,
        tnEvcInnerDEI                   INTEGER,
        tnEvcOuterVid                   VlanIdOrAnyOrNone,
        tnEvcStatus                     RowStatus,
        tnEvcPolicerID                  INTEGER,
        tnEvcName                       OCTET STRING
}

tnEvcIndex OBJECT-TYPE
        SYNTAX      INTEGER (1..11111)  -- range added by Jing
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION "The identifier of the EVC. "
        ::= { tnEvcEntry 1 }

tnEvcNNIPortlist OBJECT-TYPE
    SYNTAX      PortList
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
    "The list of Network to Network Interfaces for the EVC."
    ::= { tnEvcEntry 2 }

tnEvcVid OBJECT-TYPE
    SYNTAX          VlanIdOrAny    -- changed from VlanId to VlanIdOrAny by Jing
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The VLAN ID in the PB network.
        It may be inserted in a C-tag, S-tag or S-custom tag
        depending on the NNI port VLAN configuration.
         The allowed range is from 1 through 4094"
    ::= { tnEvcEntry 3 }

tnEvcIVid OBJECT-TYPE
    SYNTAX          VlanIdOrAny    -- changed from VlanId to VlanIdOrAny by Jing
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The Internal/classified VLAN ID in the PB network.
        The allowed range is from 1 through 4094"
    ::= { tnEvcEntry 4 }

tnEvcLearning  OBJECT-TYPE
    SYNTAX          INTEGER{
                      enable(1),
                      disable(2)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The learning mode for the EVC controls whether source MAC addresses are learned for frames matching the EVC.
        Learning may be disabled if the EVC only includes two UNI/NNI ports. The allowed values are:
        Enabled: Learning is enabled (MAC addresses are learned).
          Disabled: Learning is disabled (MAC addresses are not learned)."
    ::= { tnEvcEntry 5 }

tnEvcInnerTagType OBJECT-TYPE
    SYNTAX          INTEGER{
                      none(1),
                      cTag(2),
                      sTag(3),
                      sCustomTag(4)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The inner tag type is used to determine whether an inner tag is inserted in frames forwarded to NNI ports.
         The allowed values are:
           None: An inner tag is not inserted.
           cTag: An inner C-tag is inserted.
           sTag: An inner S-tag is inserted.
           sCustomTag: An inner tag is inserted and the tag type is determined by the VLAN port configuration of the NNI."
    ::= { tnEvcEntry 6 }

tnEvcInnerVidMode OBJECT-TYPE
    SYNTAX          INTEGER{
                      normal(1),
                      tunnel(2)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The inner VID Mode affects the VID in the inner and outer tag. The allowed values are:
          normal: The VID of the two outer tags aren't swapped.
          tunnel: The VID of the two outer tags are swapped,
            so that the VID of the outer tag is taken from the Inner Tag configuration
            and the VID of the inner tag is the EVC VID.
            In this mode, the NNI ports are normally configured to do EVC classification based on the inner tag.
        "
    ::= { tnEvcEntry 7 }

tnEvcInnerVid  OBJECT-TYPE
    SYNTAX          VlanIdOrAnyOrNone   -- changed from:VlanId to VlanIdOrAny by Jing
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The Inner tag VLAN ID. The allowed range is from 0 through 4094."
    ::= { tnEvcEntry 8 }

tnEvcInnerPCPDEIPreservation    OBJECT-TYPE
    SYNTAX          INTEGER{
                      preserved(1),
                      fixed(2)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The inner tag PCP and DEI preservation. The allowed values are:
          Preserved: The inner tag PCP and DEI is preserved.
          Fixed: The inner tag PCP and DEI is fixed. "
    ::= { tnEvcEntry 9 }

tnEvcInnerPCP OBJECT-TYPE
    SYNTAX          INTEGER(0..7)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The inner tag PCP value. The allowed range is from 0 through 7. "
    ::= { tnEvcEntry 10 }

tnEvcInnerDEI  OBJECT-TYPE
    SYNTAX          INTEGER(0..1)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The inner tag DEI value. The allowed value is 0 or 1."
    ::= { tnEvcEntry 11 }

tnEvcOuterVid     OBJECT-TYPE
    SYNTAX          VlanIdOrAnyOrNone   -- changed from:VlanId to VlanIdOrAny by Jing
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The Outer tag VLAN ID. The allowed range is from 0 through 4094."
    ::= { tnEvcEntry 12 }

tnEvcStatus  OBJECT-TYPE
    SYNTAX          RowStatus
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The status of this conceptual row entry of EVC table. This object isused to manage the
      creation and deletion of conceptual rows.

      The status column has six defined values:

           - 'active', which indicates that the conceptual row is
           available for use by the managed device;

           - 'notInService', which indicates that the conceptual
           row exists in the agent, but is unavailable for use by
           the managed device (see NOTE below);

           - 'notReady', which indicates that the conceptual row
           exists in the agent, but is missing information
           necessary in order to be available for use by the
           managed device;

           - 'createAndGo', which is supplied by a management
           station wishing to create a new instance of a
           conceptual row and to have its status automatically set
           to active, making it available for use by the managed
           device;

           - 'createAndWait', which is supplied by a management
           station wishing to create a new instance of a
           conceptual row (but not make it available for use by
           the managed device); and,

           - 'destroy', which is supplied by a management station
           wishing to delete all of the instances associated with
           an existing conceptual row.

           For a detailed description of this object, please refer to
           SNMPv2-TC MIB."
    ::= { tnEvcEntry 13 }

tnEvcPolicerID OBJECT-TYPE
    SYNTAX          INTEGER(1..4095)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The ingress bandwidth profile mode for the EVC. The possible values are:
            Specific: The allowed range is from 1 through 128.
            Discard: All received frames are discarded for the EVC. The value is 4094.
            None: None bandwidth profile for the EVC. The value is 4095."
    ::= { tnEvcEntry 14 }

tnEvcName OBJECT-TYPE
    SYNTAX      OCTET STRING (SIZE(0..127))
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "EVC Administrative Name."
    ::= { tnEvcEntry 15 }

-- ECE tables

tnEvcEceTable OBJECT-TYPE
    SYNTAX          SEQUENCE OF TnEvcEceEntry
    MAX-ACCESS      not-accessible
    STATUS          current
    DESCRIPTION
        "This table contains the configuration of EVC control entry."
    ::= { tnEvcCfgMgmtGroup 3 }

tnEvcEceEntry OBJECT-TYPE
    SYNTAX          TnEvcEceEntry
    MAX-ACCESS      not-accessible
    STATUS          current
    DESCRIPTION
        "This entry represents an ECE.

        The system automatically creates an entry when the system or
        the EMS/NMS creates a row in the cevcECETable.  Likewise, the
        system automatically destroys an entry when the system or
        the EMS/NMS destroys the corresponding row in the cevcECETable."
    INDEX           { tnEvcEceId }
    ::= { tnEvcEceTable 1 }

TnEvcEceEntry ::= SEQUENCE {
        tnEvcEceId                  INTEGER,
        tnEvcEceNextEceId           INTEGER,
        tnEvcEceUNIPortlist         PortList,
        tnEvcEceTagType             INTEGER,

        tnEvcEceTagVIDFilterType    INTEGER,
        tnEvcEceTagVIDFilterVal     VlanIdOrAnyOrNone,
        tnEvcEceTagVIDFilterStart   VlanIdOrAnyOrNone,
        tnEvcEceTagVIDFilterEnd     VlanIdOrAnyOrNone,

        tnEvcEceTagPCP              BITS,
        tnEvcEceTagDEI              INTEGER,
        tnEvcEceTagFrameType        INTEGER,

        --ipv4/ipv6 common
        tnEvcEceProtoType           INTEGER,
        tnEvcEceProtoVal            INTEGER,
        tnEvcEceDscpFilterType      INTEGER,
        tnEvcEceDscpFilterVal       INTEGER,
        tnEvcEceDscpRangeStart      INTEGER,
        tnEvcEceDscpRangeEnd        INTEGER,

        tnEvcEceSrcPortFilterType   INTEGER,
        tnEvcEceSrcPortFilterNo     INTEGER,
        tnEvcEceSrcPortRangeStart   INTEGER,
        tnEvcEceSrcPortRangeEnd     INTEGER,

        tnEvcEceDstPortFilterType   INTEGER,
        tnEvcEceDstPortFilterNo     INTEGER,
        tnEvcEceDstPortRangeStart   INTEGER,
        tnEvcEceDstPortRangeEnd     INTEGER,

        --ipv4 speciific
        tnEvcEceIpv4DipSipFilter    INTEGER,
        tnEvcEceIpv4DipSipAddr      InetAddress,
        tnEvcEceIpv4DipSipMask      InetAddress,
        tnEvcEceIpv4Fragment        INTEGER,

        --ipv6 specific
        tnEvcEceIpv6DipSipFilter    INTEGER,
        tnEvcEceIpv6DipSipAddr      Unsigned32,
        tnEvcEceIpv6DipSipMask      Unsigned32,

        --outer tag
        tnEvcEceOuterMode              INTEGER,
        tnEvcEceOuterPCPDEIPreserve    INTEGER,
        tnEvcEceOuterPCP               INTEGER,
        tnEvcEceOuterDEI               INTEGER,

        --Action
        tnEvcEceActDirection           INTEGER,
        tnEvcEceActEvcidFilterType     INTEGER,
        tnEvcEceActEvcidVal            INTEGER,
        tnEvcEceActTagPopCount         INTEGER,
        tnEvcEceActPolicyId            INTEGER,
        tnEvcEceActClass               INTEGER,

        -- MAC Parameter
        tnEvcEceDMacSMacFilterType     INTEGER,
        tnEvcEceDMacSMacVal            MacAddress,
        tnEvcEceDMacType               INTEGER,

        tnEvcEceConflict               INTEGER,

        tnEvcEceStatus                 RowStatus

}

tnEvcEceId OBJECT-TYPE
        SYNTAX      INTEGER (1..11111)  -- range added by Jing
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION "The identifier of the ECE. "
        ::= { tnEvcEceEntry 1 }

tnEvcEceNextEceId OBJECT-TYPE
        SYNTAX      INTEGER
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION "Specify the created ECE is placed before which ECE. "
        ::= { tnEvcEceEntry 2 }

tnEvcEceUNIPortlist OBJECT-TYPE
    SYNTAX      PortList
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
    "The list of User to Network Interfaces for the ECE."
    ::= { tnEvcEceEntry 3 }

tnEvcEceTagType  OBJECT-TYPE
    SYNTAX          INTEGER{
                      tagged(1),
                      untagged(2),
                      any(3)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The tag type for the ECE. The possible values are:
         tagged: The ECE will match tagged frames only.
         untagged: The ECE will match untagged frames only.
         any: The ECE will match both tagged and untagged frames. "
    ::= { tnEvcEceEntry 4 }

tnEvcEceTagVIDFilterType  OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      specific(2),
                      range(3)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The VLAN ID filter for matching the ECE. It only significant if tag type 'Tagged'
         is selected. The possible values are:
         any: No VLAN ID filter is specified. (VLAN ID filter status is 'don't-care'.)
         specific: If you want to filter a specific VLAN ID value with this ECE, choose this
                   value. A field for entering a specific value appears.
         range: If you want to filter a specific VLAN ID range filter with this ECE, choose
                this value. A field for entering a range appears.  "
    ::= { tnEvcEceEntry 5 }

tnEvcEceTagVIDFilterVal  OBJECT-TYPE
    SYNTAX          VlanIdOrAnyOrNone  -- changed from VlanIdOrNone by Jing
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "When 'Specific' is selected for the VLAN ID filter, you can enter a specific value.
         The allowed value is from 0 through 4094. "
    ::= { tnEvcEceEntry 6 }

tnEvcEceTagVIDFilterStart  OBJECT-TYPE
    SYNTAX          VlanIdOrAnyOrNone  -- changed from VlanIdOrNone by Jing
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "When 'Range' is selected for the VLAN ID filter, you can enter a specific range.
         The allowed range start is from 0 through 4094.  "
    ::= { tnEvcEceEntry 7 }

tnEvcEceTagVIDFilterEnd  OBJECT-TYPE
    SYNTAX          VlanIdOrAnyOrNone  -- changed from VlanIdOrNone by Jing
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "When 'Range' is selected for the VLAN ID filter, you can enter a specific range.
         The allowed range end is from 0 through 4094.  "
    ::= { tnEvcEceEntry 8 }

tnEvcEceTagPCP  OBJECT-TYPE
    SYNTAX          BITS {
                      none(0)  -- added by Jing
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The PCP value for mataching the ECE. It only significant if tag type 'Tagged' is selected.
         The possible values are:
         any: The ECE will match any PCP value(all bits will be set to 1).
         specific: each bit matchs a specific PCP of ECE(from bit0 to bit7).
         range: The ECE will match PCP values in the selected range, valid range bit0-bit1, bit2-bit3,
         bit4-bit5, bit6-bit7, bit0-bit3 or bit4-bit7.  "
    ::= { tnEvcEceEntry 9 }

tnEvcEceTagDEI  OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      dei0(2),
                      dei1(3)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The DEI value for mataching the ECE. It only significant if tag type 'Tagged' is selected.
         The allowed value is: 0, 1 or Any.  "
    ::= { tnEvcEceEntry 10 }

tnEvcEceTagFrameType  OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      etype(2),
                      llc(3),
                      snap(4),
                      ipv4(5),
                      ipv6(6),
                      l2cp(7)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The frame type for the ECE. The possible values are:
         any: The ECE will match any frame type.
         etype: The ECE will match Ethernet Type frames only.
         llc: The ECE will match LLC frames only.
         snap: The ECE will match SNAP frames only.
         ipv4: The ECE will match IPv4 frames only.
         ipv6: The ECE will match IPv6 frames only.
         l2cp: The ECE will match L2CP frames only.  "
    ::= { tnEvcEceEntry 11 }

tnEvcEceProtoType  OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      udp(2),
                      tcp(3),
                      other(4)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The IP protocol for matching the ECE. The possible values are:
         any: No protocol filter is specified. (Protocol filter status is 'don't-care'.)
         udp: Specify the UDP for matching the ECE.
         tcp: Specify the TCP for matching the ECE.
         other: If you want to filter a specific protocol value with this ECE,
                   choose this value. A field for entering a specific value appears. "
    ::= { tnEvcEceEntry 12 }

tnEvcEceProtoVal  OBJECT-TYPE
    SYNTAX          INTEGER(0..255)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "When 'Specific' is selected for the protocol filter, you can enter a specific value.
         The allowed value is from 0 through 255."
    ::= { tnEvcEceEntry 13 }

tnEvcEceDscpFilterType  OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      specific(2),
                      range(3)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The DSCP filter for matching the ECE. The possible values are:
         any: No DSCP filter is specified. (DSCP filter status is 'don't-care'.)
         specific: If you want to filter a specific DSCP value with this ECE, choose this value.
                   A field for entering a specific value appears.
         range: If you want to filter a specific DSCP range filter with this ECE, choose this value.
                A field for entering a range appears.   "
    ::= { tnEvcEceEntry 14}

tnEvcEceDscpFilterVal  OBJECT-TYPE
    SYNTAX          INTEGER(0..63)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "When 'Specific' is selected for the DSCP filter, you can enter a specific value.
         The allowed value is from 0 through 63.    "
    ::= { tnEvcEceEntry 15 }

tnEvcEceDscpRangeStart  OBJECT-TYPE
    SYNTAX          INTEGER(0..63)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "When 'Range' is selected for the DSCP filter, you can enter a specific range.
         The allowed range start is from 0 through 63.    "
    ::= { tnEvcEceEntry 16 }

tnEvcEceDscpRangeEnd  OBJECT-TYPE
    SYNTAX          INTEGER(0..63)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "When 'Range' is selected for the DSCP filter, you can enter a specific range.
         The allowed range end is from 0 through 63.    "
    ::= { tnEvcEceEntry 17 }

tnEvcEceSrcPortFilterType  OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      specific(2),
                      range(3)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The TCP/UDP source port for matching the ECE. It only significant if protocol
         filter 'UDP' or 'TCP' is selected. The possible values are:
         any: No TCP/UDP source port filter is specified. (Source port filter status is 'don't-care'.)
         specific: If you want to filter a specific TCP/UDP source port No. with this ECE, choose this value.
                   A field for entering a specific No. appears.
         range: If you want to filter a specific TCP/UDP source port range filter with this ECE, choose
                this value. A field for entering a range appears.   "
    ::= { tnEvcEceEntry 18 }

tnEvcEceSrcPortFilterNo  OBJECT-TYPE
    SYNTAX          INTEGER(0..65535)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "When 'Specific' is selected for the source port filter, you can enter a specific value.
         The allowed value is from 0 through 65535.     "
    ::= { tnEvcEceEntry 19 }

tnEvcEceSrcPortRangeStart  OBJECT-TYPE
    SYNTAX          INTEGER(0..65535)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "When 'Range' is selected for the source port filter, you can enter a specific range.
         The allowed range start is from 0 through 65535.    "
    ::= { tnEvcEceEntry 20 }

tnEvcEceSrcPortRangeEnd  OBJECT-TYPE
    SYNTAX          INTEGER(0..65535)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "When 'Range' is selected for the source port filter, you can enter a specific range.
         The allowed range end is from 0 through 65535.    "
    ::= { tnEvcEceEntry 21 }

tnEvcEceDstPortFilterType  OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      specific(2),
                      range(3)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The TCP/UDP destination port for matching the ECE. It only significant if protocol
         filter 'UDP' or 'TCP' is selected. The possible values are:
         any: No TCP/UDP destination port filter is specified. (Source port filter status is 'don't-care'.)
         specific: If you want to filter a specific TCP/UDP source port No. with this ECE, choose this value.
                   A field for entering a specific No. appears.
         range: If you want to filter a specific TCP/UDP source port range filter with this ECE, choose
                this value. A field for entering a range appears.   "
    ::= { tnEvcEceEntry 22 }

tnEvcEceDstPortFilterNo  OBJECT-TYPE
    SYNTAX          INTEGER(0..65535)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "When 'Specific' is selected for the destination port filter, you can enter a specific value.
         The allowed value is from 0 through 65535.     "
    ::= { tnEvcEceEntry 23 }

tnEvcEceDstPortRangeStart  OBJECT-TYPE
    SYNTAX          INTEGER(0..65535)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "When 'Range' is selected for the destination port filter, you can enter a specific range.
         The allowed range start is from 0 through 65535.    "
    ::= { tnEvcEceEntry 24 }

tnEvcEceDstPortRangeEnd  OBJECT-TYPE
    SYNTAX          INTEGER(0..65535)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "When 'Range' is selected for the destination port filter, you can enter a specific range.
         The allowed range end is from 0 through 65535.    "
    ::= { tnEvcEceEntry 25 }

tnEvcEceIpv4DipSipFilter  OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      host(2),
                      network(3)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The source/destination IP address for matching the ECE. It depend on by the port address mode,
         when port address mode is set to 'Source' then the field is used for source address. Similarly
         when port address mode is set to 'Destination' then the field is used for destination address.
         The possible values are:
         Any: No SIP/DIP filter is specified. (SIP/DIP filter status is 'don't-care'.)
         Host: If you want to filter a specific host address with this ECE, choose this value. A field
               for entering a host address appears.
         Network: If you want to filter a specific network address with this ECE, choose this value.
                  A Two fields for entering a specific network address and network mask appears.    "
    ::= { tnEvcEceEntry 26 }

tnEvcEceIpv4DipSipAddr  OBJECT-TYPE
    SYNTAX          InetAddress
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "When 'Host' or 'Network' is selected for the SIP/DIP filter, you can enter a specific host or
         network address."
    ::= { tnEvcEceEntry 27 }

tnEvcEceIpv4DipSipMask  OBJECT-TYPE
    SYNTAX          InetAddress
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "When 'Host' or 'Network' is selected for the SIP/DIP filter, you can enter a specific network mask."
    ::= { tnEvcEceEntry 28 }

tnEvcEceIpv4Fragment  OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      fragment(2),
                      nonfragment(3)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The IPv4 Fragment for matching the ECE. This involves the settings for the More Fragments (MF) bit
         and the Fragment Offset (FRAG OFFSET) field for an IPv4 frame. The possible values are:
         any: The ECE will match any MF bit.
         fragment: IPv4 frames where the MF bit is set or the FRAG OFFSET field is greater than zero must be
                   able to match this entry.
         nonfragment: IPv4 frames where the MF bit is set or the FRAG OFFSET field is greater than zero must
                       not be able to match this entry. "
    ::= { tnEvcEceEntry 29 }

tnEvcEceIpv6DipSipFilter  OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      specific(2)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The source/destination IP address for matching the ECE. It depend on by the port address mode,
         when port address mode is set to 'Source' then the field is used for source address. Similarly
         when port address mode is set to 'Destination' then the field is used for destination address.
         The possible values are:
         Any: No SIP/DIP filter is specified. (SIP/DIP filter status is 'don't-care'.)
         specific: If you want to filter a specific host address with this ECE, choose this value. A field
               for entering a host address appears."
    ::= { tnEvcEceEntry 30 }

tnEvcEceIpv6DipSipAddr  OBJECT-TYPE
    SYNTAX          Unsigned32
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "When 'Host' or 'Network' is selected for the SIP/DIP filter, you can enter a specific host or
         network address. When 'IPv6' is selected for the Frame Type, the field only supported 32 bits for
         IPv6 address."
    ::= { tnEvcEceEntry 31 }

tnEvcEceIpv6DipSipMask  OBJECT-TYPE
    SYNTAX          Unsigned32
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "When 'Host' or 'Network' is selected for the SIP/DIP filter, you can enter a specific network mask.
         When 'IPv6' is selected for the Frame Type, the field only supported 32 bits for IPv6 address mask."
    ::= { tnEvcEceEntry 32 }

tnEvcEceOuterMode  OBJECT-TYPE
    SYNTAX          INTEGER{
                      enabled(1),
                      disabled(2)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The outer tag PCP and DEI preservation for the ECE. The possible values are:
         enabled: Enable outer tag for nni-to-uni direction for the ECE.
         disabled: Disable outer tag for nni-to-uni direction for the ECE.  "
    ::= { tnEvcEceEntry 33 }

tnEvcEceOuterPCPDEIPreserve  OBJECT-TYPE
    SYNTAX          INTEGER{
                      preserved(1),
                      fixed(2)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The outer tag PCP and DEI preservation for the ECE. The possible values are:
         preserved: The outer tag PCP and DEI is preserved.
         fixed: The outer tag PCP and DEI is fixed.   "
    ::= { tnEvcEceEntry 34 }

tnEvcEceOuterPCP  OBJECT-TYPE
    SYNTAX          INTEGER(0..7)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The outer tag PCP value for the ECE. The allowed range is from 0 through 7. "
    ::= { tnEvcEceEntry 35 }

tnEvcEceOuterDEI  OBJECT-TYPE
    SYNTAX          INTEGER(0..1)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The outer tag DEI value for the ECE. The allowed value is 0 or 1.  "
    ::= { tnEvcEceEntry 36 }

tnEvcEceActDirection  OBJECT-TYPE
    SYNTAX          INTEGER{
                      both(1),
                      uni2nni(2),
                      nni2uni(3)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The EVCs and ECEs are used to setup flows in one or both directions as determined by the ECE
         Direction parameter. If the ECE is bidirectional, the ingress rules of the NNI ports will be
         setup to match the traffic being forwarded to NNI ports. The possible values are:
         both: Bidirectional.
         uni2nni: Unidirectional from UNI to NNI.
         nni2uni: Unidirectional from NNI to UNI. "
    ::= { tnEvcEceEntry 37 }

tnEvcEceActEvcidFilterType  OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      specific(2)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The outer tag PCP and DEI preservation for the ECE. The possible values are:
         any: No EVC ID filter is specified. (EVC ID filter status is 'don't-care'.)
         specific: If you want to filter a specific EVC ID with this ECE, choose this
                   value. A field for entering a specific value appears. "
    ::= { tnEvcEceEntry 38 }

tnEvcEceActEvcidVal  OBJECT-TYPE
    SYNTAX          INTEGER(1..128)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "When 'Specific' is selected for the VLAN ID filter, you can enter a specific
         value. The allowed value is from 1 through 128.  "
    ::= { tnEvcEceEntry 39 }

tnEvcEceActTagPopCount  OBJECT-TYPE
    SYNTAX          INTEGER(0..2)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The ingress tag pop count for the ECE. The allowed range is from 0 through 2."
    ::= { tnEvcEceEntry 40 }

tnEvcEceActPolicyId  OBJECT-TYPE
    SYNTAX          INTEGER(0..255)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The ACL Policy ID for the ECE for matching ACL rules. The allowed range is
         from 0 through 255."
    ::= { tnEvcEceEntry 41 }

tnEvcEceActClass  OBJECT-TYPE
    SYNTAX          INTEGER{
                      tc0(1),
                      tc1(2),
                      tc2(3),
                      tc3(4),
                      tc4(5),
                      tc5(6),
                      tc6(7),
                      tc7(8),
                      disabled(9)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The traffic class for the ECE. The allowed range is from 0 through 8 or disabled. "
    ::= { tnEvcEceEntry 42 }

tnEvcEceDMacSMacFilterType  OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      specific(2)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The source/destination MAC address for matching the ECE. It depend on by the port
         address mode, when port address mode is set to 'Source' then the field is used for
         source MAC address. Similarly when port address mode is set to 'Destination' then
         the field is used for destination MAC address. The possible values are:
         any: No SMAC/DMAC filter is specified. (SMAC/DMAC filter status is 'don't-care'.)
         specific: If you want to filter a specific SMAC/DMAC value with this ECE, choose
                   this value. A field for entering a specific value appears. "
    ::= { tnEvcEceEntry 43 }

tnEvcEceDMacSMacVal  OBJECT-TYPE
    SYNTAX          MacAddress
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "When 'Specific' is selected for the SMAC/DMAC filter, you can enter a specific value.
         The legal format is 'xx-xx-xx-xx-xx-xx' or 'xx.xx.xx.xx.xx.xx' or 'xxxxxxxxxxxx' (x is
         a hexadecimal digit).  "
    ::= { tnEvcEceEntry 44 }

tnEvcEceDMacType  OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      unicast(2),
                      multicast(3),
                      broadcast(4),
                      specific(5)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The destination MAC address for matching the ECE. The possible values are:
         any: No destination MAC address is specified.
         unicast: Frame must be unicast.
         multicast: Frame must be multicast.
         broadcast: Frame must be broadcast.
         specific:  If you want to filter a specific DMAC value with this ECE, choose this value."
    ::= { tnEvcEceEntry 45 }

tnEvcEceConflict  OBJECT-TYPE
    SYNTAX          INTEGER{
                      yes(1),
                      no(2)
                    }
    MAX-ACCESS      read-only
    STATUS          current
    DESCRIPTION
        "Indicates the hardware status of the specific ECE. The specific ECE is not applied to
         the hardware due to hardware limitations. "
    ::= { tnEvcEceEntry 46 }

tnEvcEceStatus  OBJECT-TYPE
    SYNTAX          RowStatus
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The status of this conceptual row entry of ECE table. This object isused to manage the
      creation and deletion of conceptual rows.

      The status column has six defined values:

           - 'active', which indicates that the conceptual row is
           available for use by the managed device;

           - 'notInService', which indicates that the conceptual
           row exists in the agent, but is unavailable for use by
           the managed device (see NOTE below);

           - 'notReady', which indicates that the conceptual row
           exists in the agent, but is missing information
           necessary in order to be available for use by the
           managed device;

           - 'createAndGo', which is supplied by a management
           station wishing to create a new instance of a
           conceptual row and to have its status automatically set
           to active, making it available for use by the managed
           device;

           - 'createAndWait', which is supplied by a management
           station wishing to create a new instance of a
           conceptual row (but not make it available for use by
           the managed device); and,

           - 'destroy', which is supplied by a management station
           wishing to delete all of the instances associated with
           an existing conceptual row.

           For a detailed description of this object, please refer to
           SNMPv2-TC MIB."
    ::= { tnEvcEceEntry 47 }

--cevcBandwidthProfiles

tnEvcBandwidthProfilesTable OBJECT-TYPE
    SYNTAX          SEQUENCE OF TnEvcBandwidthProfilesEntry
    MAX-ACCESS      not-accessible
    STATUS          current
    DESCRIPTION
        "This entry displays and sets current EVC ingress bandwidth profile configurations.
         These policers may be used to limit the traffic received on UNI ports."
    ::= { tnEvcCfgMgmtGroup 4 }

tnEvcBandwidthProfilesEntry OBJECT-TYPE
    SYNTAX          TnEvcBandwidthProfilesEntry
    MAX-ACCESS      not-accessible
    STATUS          current
    DESCRIPTION
        "This entry represents an entry of EVC ingress bandwidth profile configuration."
    INDEX           { tnEvcBandwidthProfilesIndex }
    ::= { tnEvcBandwidthProfilesTable 1 }

TnEvcBandwidthProfilesEntry ::= SEQUENCE {
        tnEvcBandwidthProfilesIndex       INTEGER,
        tnEvcBandwidthProfilesPolicerMode INTEGER,
        tnEvcBandwidthProfilesCIR         INTEGER,
        tnEvcBandwidthProfilesCBS         INTEGER,
        tnEvcBandwidthProfilesEIR         INTEGER,
        tnEvcBandwidthProfilesEBS         INTEGER,
        tnEvcBandwidthProfilesState       INTEGER
}

tnEvcBandwidthProfilesIndex OBJECT-TYPE
        SYNTAX      INTEGER (1..11111)  -- range added by Jing
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION "The EVC bandwidth profiles policer index."
        ::= { tnEvcBandwidthProfilesEntry 1 }

tnEvcBandwidthProfilesPolicerMode OBJECT-TYPE
    SYNTAX          INTEGER{
                      coupled(1),
                      aware(2),
                      blind(3)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The colour mode of the bandwidth profile. The allowed values are:
          coupled: Colour-aware mode with coupling enabled.
          aware: Colour-aware mode with coupling disabled. "
    ::= { tnEvcBandwidthProfilesEntry 2 }

tnEvcBandwidthProfilesCIR OBJECT-TYPE
    SYNTAX          INTEGER(0..10000000)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The Committed Information Rate of the bandwidth profile. The allowed range is from 0 through 10,000,000 kilobit per second."
    ::= { tnEvcBandwidthProfilesEntry 3 }

tnEvcBandwidthProfilesCBS OBJECT-TYPE
    SYNTAX          INTEGER(0..100000)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The Committed Burst Size of the bandwidth profile. The allowed range is from 0 through 100,000 bytes. "
    ::= { tnEvcBandwidthProfilesEntry 4 }

tnEvcBandwidthProfilesEIR OBJECT-TYPE
    SYNTAX          INTEGER(0..10000000)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The Excess Information Rate of the bandwidth profile. The allowed range is from 0 through 10,000,000 kilobit per second."
    ::= { tnEvcBandwidthProfilesEntry 5 }

tnEvcBandwidthProfilesEBS OBJECT-TYPE
    SYNTAX          INTEGER(0..100000)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The Excess Burst Size of the bandwidth profile. The allowed range is from 0 through 100,000 bytes. "
    ::= { tnEvcBandwidthProfilesEntry 6 }

tnEvcBandwidthProfilesState OBJECT-TYPE
    SYNTAX          INTEGER{
                      enabled(1),
                      disabled(2)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The administrative state of the bandwidth profile.
         The allowed values are:
          enabled: The bandwidth profile enabled.
          disabled: The bandwidth profile is disabled."
    ::= { tnEvcBandwidthProfilesEntry 7 }

-- exttable
tnEvcExtEceTable OBJECT-TYPE
    SYNTAX          SEQUENCE OF TnEvcExtEceEntry
    MAX-ACCESS      not-accessible
    STATUS          current
    DESCRIPTION
        "This table contains the configuration of EVC control entry."
    ::= { tnEvcCfgMgmtGroup 5 }

tnEvcExtEceEntry OBJECT-TYPE
    SYNTAX          TnEvcExtEceEntry
    MAX-ACCESS      not-accessible
    STATUS          current
    DESCRIPTION
        "This entry represents an ECE.
        The system automatically creates an entry when the system or
        the EMS/NMS creates a row in the cevcECETable.  Likewise, the
        system automatically destroys an entry when the system or
        the EMS/NMS destroys the corresponding row in the cevcECETable."
    AUGMENTS       { tnEvcEceEntry }
    ::= { tnEvcExtEceTable 1 }

TnEvcExtEceEntry ::= SEQUENCE {
        tnEvcEceInnerTagType             INTEGER,
        tnEvcEceInnerTagVIDFilterType    INTEGER,
        tnEvcEceInnerTagVIDFilterVal     VlanIdOrNone,
        tnEvcEceInnerTagVIDFilterStart   VlanIdOrNone,
        tnEvcEceInnerTagVIDFilterEnd     VlanIdOrNone,
        tnEvcEceInnerTagPCP              BITS,
        tnEvcEceInnerTagDEI              INTEGER,
        tnEvcEcePolicer                  INTEGER,
        tnEvcEceOuterVid                 VlanIdOrNone,
        tnEvcEceNNIInnerTagType          INTEGER,
        tnEvcEceInnerVid                 VlanIdOrNone,
        tnEvcEceInnerPCPDEIPreserve      INTEGER,
        tnEvcEceInnerPCP                 INTEGER,
        tnEvcEceInnerDEI                 INTEGER,
        -- MAC Parameter
        tnEvcEceDMacVal                  MacAddress,
        --outer tag
        tnEvcEceOuterPCPMode             INTEGER,
        tnEvcEceOuterDEIMode             INTEGER,
        --Action
        tnEvcEceActRuleType              INTEGER,
        tnEvcEceActTxLookupType          INTEGER,
        tnEvcEceActDropPrecType          INTEGER,
        -- Egress InnerTag
        tnEvcEceInnerPcpMode          INTEGER,
        tnEvcEceIInnerDeiMode         INTEGER,
        -- IPv4
        tnEvcEceIpv4DipFilter            INTEGER,
        tnEvcEceIpv4DipAddr              InetAddress,
        tnEvcEceIpv4DipMask              InetAddress,
        -- IPv6
        tnEvcEceIpv6DipFilter            INTEGER,
        tnEvcEceIpv6DipAddr              Unsigned32,
        tnEvcEceIpv6DipMask              Unsigned32,
        -- Ingress Matching
        tnEvcEceLookup                   INTEGER,
        -- ETYPE
        tnEvcEceEtypeFilter              INTEGER,
        tnEvcEceEtypeValue               Unsigned32,
        tnEvcEceEtypeDataFilter          INTEGER,
        tnEvcEceEtypeData                Unsigned32,
        tnEvcEceEtypeDataMask            Unsigned32,
        -- LLC
        tnEvcEceLlcDSAPFilter            INTEGER,
        tnEvcEceLlcDSAPValue             Unsigned32,
        tnEvcEceLlcSSAPFilter            INTEGER,
        tnEvcEceLlcSSAPValue             Unsigned32,
        tnEvcEceLlcCtrlFilter            INTEGER,
        tnEvcEceLlcCtrlValue             Unsigned32,
        tnEvcEceLlcDataFilter            INTEGER,
        tnEvcEceLlcDataValue             Unsigned32,
        tnEvcEceLlcDataMask              Unsigned32,
        -- SNAP
        tnEvcEceSnapOuiFilter            INTEGER,
        tnEvcEceSnapOuiValue             Unsigned32,
        tnEvcEceSnapPidFilter            INTEGER,
        tnEvcEceSnapPidValue             Unsigned32,
        -- L2CP
        tnEvcEceL2cpProtoType          INTEGER
}

tnEvcEceInnerTagType  OBJECT-TYPE
    SYNTAX            INTEGER{
                        any(1),
                        untagged(2),
                        tagged(3),
                        c-tag(4),
                        s-tag(5)
                      }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The Inner tag type for the ECE. The possible values are:
         tagged: The ECE will match tagged frames only.
         untagged: The ECE will match untagged frames only.
         any: The ECE will match both tagged and untagged frames.
         If supported:
         C-Tagged: The ECE will match custom tagged frames only.
         S-Tagged: The ECE will match service tagged frames only."
    ::= { tnEvcExtEceEntry 1 }

tnEvcEceInnerTagVIDFilterType  OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      specific(2),
                      range(3)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The Inner VLAN ID filter for matching the ECE. It only significant if tag type 'Tagged'
         is selected. The possible values are:
         any: No VLAN ID filter is specified. (VLAN ID filter status is 'don't-care'.)
         specific: If you want to filter a specific VLAN ID value with this ECE, choose this
                   value. A field for entering a specific value appears.
         range: If you want to filter a specific VLAN ID range filter with this ECE, choose
                this value. A field for entering a range appears.  "
    ::= { tnEvcExtEceEntry 2 }

tnEvcEceInnerTagVIDFilterVal  OBJECT-TYPE
    SYNTAX          VlanIdOrNone
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "When 'Specific' is selected for the Inner VLAN ID filter, you can enter a specific value.
         The allowed value is from 0 through 4094. "
    ::= { tnEvcExtEceEntry 3 }

tnEvcEceInnerTagVIDFilterStart OBJECT-TYPE
    SYNTAX          VlanIdOrNone
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "When 'Range' is selected for the Inner VLAN ID filter, you can enter a specific range.
         The allowed range start is from 0 through 4094.  "
    ::= { tnEvcExtEceEntry 4 }

tnEvcEceInnerTagVIDFilterEnd OBJECT-TYPE
    SYNTAX          VlanIdOrNone
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "When 'Range' is selected for the Inner VLAN ID filter, you can enter a specific range.
         The allowed range end  is from 0 through 4094.  "
    ::= { tnEvcExtEceEntry 5 }

tnEvcEceInnerTagPCP OBJECT-TYPE
    SYNTAX          BITS {
                      none(0)  -- added by Jing
                    }

    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The PCP value for matching the ECE. It only significant if tag type 'Tagged' is selected.
         The possible values are:
         any: The ECE will match any PCP value(all bits will be set to 1).
         specific: each bit matchs a specific PCP of ECE(from bit0 to bit7).
         range: The ECE will match PCP values in the selected range, valid range bit0-bit1, bit2-bit3,
         bit4-bit5, bit6-bit7, bit0-bit3 or bit4-bit7.  "
    ::= { tnEvcExtEceEntry 6 }

tnEvcEceInnerTagDEI OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      dei0(2),
                      dei1(3)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The DEI value for matching the ECE. It only significant if tag type 'Tagged' is selected.
         The allowed value is: 0, 1 or Any.  "
    ::= { tnEvcExtEceEntry 7 }

tnEvcEcePolicer OBJECT-TYPE
    SYNTAX          INTEGER(1..4096)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The ingress bandwidth profile mode for the EVC. The possible values are:
            Specific: The allowed range is from 1 through 128.
            Discard: All received frames are discarded for the EVC. The value is 4094.
            None: None bandwidth profile for the EVC. The value is 4095.
            EVC:The bandwidth profile for the specified EVC ID is used. The value is 4096."
    ::= { tnEvcExtEceEntry 8 }

tnEvcEceOuterVid OBJECT-TYPE
    SYNTAX          VlanIdOrNone
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The EVC outer tag VID for UNI ports. The allowed value is from 0 through 4094."
    ::= { tnEvcExtEceEntry 9 }

tnEvcEceNNIInnerTagType OBJECT-TYPE
    SYNTAX          INTEGER{
                      none(0),
                      ctag(1),
                      stag(2),
                      sctag(3)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The inner type for the ECE determines whether an inner tag is inserted in frames forwarded to NNI ports.\
         The possible values are:
            None: An inner tag is not inserted.
            C-tag: An inner C-tag is inserted.
            S-tag: An inner S-tag is inserted.
            S-custom-tag: An inner tag is inserted and the tag type is determined by the VLAN port configuration of the NNI.
        "
    ::= { tnEvcExtEceEntry 10 }

tnEvcEceInnerVid OBJECT-TYPE
    SYNTAX          VlanIdOrNone
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The inner tag VLAN ID for the ECE. The allowed range is from 0 through 4094."
    ::= { tnEvcExtEceEntry 11 }

tnEvcEceInnerPCPDEIPreserve OBJECT-TYPE
    SYNTAX          INTEGER{
                      preserved(1),
                      fixed(2)
                    }
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The inner tag PCP and DEI preservation for the ECE. The possible values are:
           Preserved: The inner tag PCP and DEI is preserved.
           Fixed: The inner tag PCP and DEI is fixed.
        "
    ::= { tnEvcExtEceEntry 12 }

tnEvcEceInnerPCP OBJECT-TYPE
    SYNTAX          INTEGER(0..7)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The inner tag PCP value for the ECE. The allowed range is from 0 through 7."
    ::= { tnEvcExtEceEntry 13 }

tnEvcEceInnerDEI OBJECT-TYPE
    SYNTAX          INTEGER(0..1)
    MAX-ACCESS      read-create
    STATUS          current
    DESCRIPTION
        "The inner tag DEI value for the ECE. The allowed value is 0 or 1."
    ::= { tnEvcExtEceEntry 14 }

tnEvcEceDMacVal  OBJECT-TYPE
    SYNTAX          MacAddress
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "When 'Specific' is selected for the DMAC filter, you can enter a specific value.
         The legal format is 'xx-xx-xx-xx-xx-xx' or 'xx.xx.xx.xx.xx.xx' or 'xxxxxxxxxxxx' (x is
         a hexadecimal digit).  "
    ::= { tnEvcExtEceEntry 15 }

tnEvcEceOuterPCPMode  OBJECT-TYPE
    SYNTAX          INTEGER{
                      classified(1),
                      fixed(2),
                      mapped(3)
                    }
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "The outer tag PCP mode for the ECE. The possible values are:
             Classified: The outer tag PCP Mode is classified.
             Fixed: The outer tag PCP Mode is fixed.
             Mapped: The outer tag PCP Mode is based on mapped (QOS, DP)."
    ::= { tnEvcExtEceEntry 16 }

tnEvcEceOuterDEIMode  OBJECT-TYPE
    SYNTAX          INTEGER{
                      classified(1),
                      fixed(2),
                      dropPrec(3)
                    }
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "The outer tag DEI mode for the ECE. The possible values are:
             Classified: The outer tag DEI mode is classified.
             Fixed: The outer tag DEI mode is fixed.
             Drop Precedence: The outer tag DEI mode is drop precedence."
    ::= { tnEvcExtEceEntry 17 }

tnEvcEceActRuleType  OBJECT-TYPE
    SYNTAX          INTEGER{
                      both(1),
                      rx(2),
                      tx(3)
                    }
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "The rule type for the ECE. The possible values are:
             Both: Ingress and egress rule.
             RX: Ingress rule.
             TX: Egress rule."
    ::= { tnEvcExtEceEntry 18 }

tnEvcEceActTxLookupType  OBJECT-TYPE
    SYNTAX          INTEGER{
                      vidLookup(1),
                      vidPCP(2),
                      isdx(3)
                    }
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "The TX lookup for the ECE. The possible values are:
             VID lookup: The TX lookup is based on VID.
             VID-PCP: The TX lookup is based on VID and PCP.
             ISDX: The TX lookup is based on ISDX."
    ::= { tnEvcExtEceEntry 19 }

tnEvcEceActDropPrecType  OBJECT-TYPE
    SYNTAX          INTEGER{
                      dp0(1),
                      dp1(2),
                      disabled(3)
                    }
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "The drop precedence for the ECE. The allowed range is 0, 1 or disabled."
    ::= { tnEvcExtEceEntry 20 }

tnEvcEceInnerPcpMode  OBJECT-TYPE
    SYNTAX          INTEGER{
                      classified(1),
                      fixed(2),
                      mapped(3)
                    }
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "The inner tag PCP mode for the ECE. The possible values are:
             Classified: The inner tag PCP Mode is classified.
             Fixed: The inner tag PCP Mode is classified.
             Mapped: The inner tag PCP Mode is based on mapped (QOS, DP)."
    ::= { tnEvcExtEceEntry 21 }

tnEvcEceIInnerDeiMode  OBJECT-TYPE
    SYNTAX          INTEGER{
                      classified(1),
                      fixed(2),
                      dropPrecedence(3)
                    }
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "The inner tag DEI mode for the ECE. The possible values are:
            Classified: The inner tag DEI mode is classified.
            Fixed: The inner tag DEI mode is fixed.
            Drop Precedence: The inner tag DEI mode is drop precedence."
    ::= { tnEvcExtEceEntry 22 }

tnEvcEceIpv4DipFilter  OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      host(2),
                      network(3)
                    }
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "The destination IP address for matching the ECE.
         The possible values are:
         Any: No DIP filter is specified. (DIP filter status is 'don't-care'.)
         Host: If you want to filter a specific host address with this ECE, choose this value. A field
               for entering a host address appears.
         Network: If you want to filter a specific network address with this ECE, choose this value.
                  A Two fields for entering a specific network address and network mask appears.    "
    ::= { tnEvcExtEceEntry 23 }

tnEvcEceIpv4DipAddr  OBJECT-TYPE
    SYNTAX          InetAddress
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "When 'Host' or 'Network' is selected for the DIP filter, you can enter a specific host or
         network address."
    ::= { tnEvcExtEceEntry 24 }

tnEvcEceIpv4DipMask  OBJECT-TYPE
    SYNTAX          InetAddress
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "When 'Host' or 'Network' is selected for the DIP filter, you can enter a specific network mask."
    ::= { tnEvcExtEceEntry 25 }

tnEvcEceIpv6DipFilter  OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      host(2),
                      network(3)
                    }
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "The destination IP address for matching the ECE.
         The possible values are:
         Any: No DIP filter is specified. (DIP filter status is 'don't-care'.)
         Host: If you want to filter a specific host address with this ECE, choose this value. A field
               for entering a host address appears.
         Network: If you want to filter a specific network address with this ECE, choose this value.
                  A Two fields for entering a specific network address and network mask appears.    "
    ::= { tnEvcExtEceEntry 26 }

tnEvcEceIpv6DipAddr  OBJECT-TYPE
    SYNTAX          Unsigned32
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "When 'Host' or 'Network' is selected for the DIP filter, you can enter a specific host or
         network address."
    ::= { tnEvcExtEceEntry 27 }

tnEvcEceIpv6DipMask  OBJECT-TYPE
    SYNTAX          Unsigned32
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "When 'Host' or 'Network' is selected for the DIP filter, you can enter a specific network mask."
    ::= { tnEvcExtEceEntry 28 }

tnEvcEceLookup  OBJECT-TYPE
    SYNTAX          INTEGER{
                      basic(1),
                      advanced(2)
                    }
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "The looup type for matching the ECE. The allowed values are:
         Basic: First lookup for basic classification.
         Advanced: Second lookup for advanced classification."
    ::= { tnEvcExtEceEntry 29 }

tnEvcEceEtypeFilter  OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      specific(2)
                    }
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "The Ethernet type value for matching the ECE. The possible values are:
         Any: No Ethernet type value filter is specified. (Ethernet type filter status is 'don't-care'.)
         Specific: If you want to filter a specific Ethernet type value with this ECE, choose this value."
    ::= { tnEvcExtEceEntry 30 }

tnEvcEceEtypeValue  OBJECT-TYPE
    SYNTAX          Unsigned32
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "When 'Specific' is selected for the Ethernet type filter, you can enter a specific value.
         The allowed value is from 0x600 through 0xFFFF but exclude 0x0800(IPv4), 0x806(ARP) and 0x86DD(IPv6)."
    ::= { tnEvcExtEceEntry 31 }

tnEvcEceEtypeDataFilter OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      specific(2)
                    }
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "The Ethernet type data for matching the ECE. The possible values are:
         Any: No Ethernet type data filter is specified. (Ethernet type filter status is 'don't-care'.)
         Specific: If you want to filter a specific Ethernet type value with this ECE, choose this value."
    ::= { tnEvcExtEceEntry 32 }

tnEvcEceEtypeData OBJECT-TYPE
    SYNTAX          Unsigned32
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "When 'Specific' is selected for the Ethernet type filter, you can enter a specific value.
         The allowed value is from 0x600 through 0xFFFF but exclude 0x0800(IPv4), 0x806(ARP) and 0x86DD(IPv6)."
    ::= { tnEvcExtEceEntry 33 }

tnEvcEceEtypeDataMask OBJECT-TYPE
    SYNTAX          Unsigned32
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "When 'Specific' is selected for the Ethernet type data filter, you can enter a specific value.
         It is a pair of the Ethernet type data and its mask. The allowed value is from 0x0 through 0xFFFF."
    ::= { tnEvcExtEceEntry 34 }

tnEvcEceLlcDSAPFilter OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      specific(2)
                    }
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "The LLC DSAP for matching the ECE. The possible values are:
         Any: No LLC DSAP value filter is specified. (LLC DSAP filter status is 'don't-care'.)
         Specific: If you want to filter a specific LLC DSAP value with this ECE, choose this value."
    ::= { tnEvcExtEceEntry 35 }

tnEvcEceLlcDSAPValue OBJECT-TYPE
    SYNTAX          Unsigned32
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "When 'Specific' is selected for the LLC DSAP filter, you can enter a specific value.
         The allowed value is from 0x0 through 0xFF"
    ::= { tnEvcExtEceEntry 36 }

tnEvcEceLlcSSAPFilter OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      specific(2)
                    }
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "The LLC SSAP for matching the ECE. The possible values are:
         Any: No LLC SSAP value filter is specified. (LLC SSAP filter status is 'don't-care'.)
         Specific: If you want to filter a specific LLC SSAP value with this ECE, choose this value."
    ::= { tnEvcExtEceEntry 37 }

tnEvcEceLlcSSAPValue OBJECT-TYPE
    SYNTAX          Unsigned32
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "When 'Specific' is selected for the LLC SSAP filter, you can enter a specific value.
         The allowed value is from 0x0 through 0xFF."
    ::= { tnEvcExtEceEntry 38 }

tnEvcEceLlcCtrlFilter OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      specific(2)
                    }
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "The LLC control for matching the ECE. The possible values are:
         Any: No LLC control value filter is specified. (LLC control filter status is 'don't-care'.)
         Specific: If you want to filter a specific LLC control value with this ECE, choose this value."
    ::= { tnEvcExtEceEntry 39 }

tnEvcEceLlcCtrlValue OBJECT-TYPE
    SYNTAX          Unsigned32
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "When 'Specific' is selected for the LLC control filter, you can enter a specific value.
         The allowed value is from 0x0 through 0xFF."
    ::= { tnEvcExtEceEntry 40 }

tnEvcEceLlcDataFilter OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      specific(2)
                    }
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "The LLC data for matching the ECE. The possible values are:
         Any: No LLC data filter is specified. (LLC filter status is 'don't-care'.)
         Specific: If you want to filter a specific LLC value with this ECE, choose this value."
    ::= { tnEvcExtEceEntry 41 }

tnEvcEceLlcDataValue OBJECT-TYPE
    SYNTAX          Unsigned32
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "When 'Specific' is selected for the LLC data filter, you can enter a specific value.
         It is a pair of the LLC data and its mask. The allowed value is from 0x0 through 0xFFFF."
    ::= { tnEvcExtEceEntry 42 }

tnEvcEceLlcDataMask OBJECT-TYPE
    SYNTAX          Unsigned32
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "When 'Specific' is selected for the LLC data filter, you can enter a specific mask.
         The allowed value is from 0x0 through 0xFFFF."
    ::= { tnEvcExtEceEntry 43 }

tnEvcEceSnapOuiFilter OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      specific(2)
                    }
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "The SNAP OUI for matching the ECE. The possible values are:
         Any: No SNAP OUI value filter is specified. (SNAP OUI filter status is 'don't-care'.)
         Specific: If you want to filter a specific SNAP OUI value with this ECE, choose this value."
    ::= { tnEvcExtEceEntry 44 }

tnEvcEceSnapOuiValue OBJECT-TYPE
    SYNTAX          Unsigned32
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "When 'Specific' is selected for the SNAP OUI filter, you can enter a specific value.
         The allowed value is from 00-00-00 through FF-FF-FF."
    ::= { tnEvcExtEceEntry 45 }

tnEvcEceSnapPidFilter OBJECT-TYPE
    SYNTAX          INTEGER{
                      any(1),
                      specific(2)
                    }
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "The SNAP PID for matching the ECE. The possible values are:
         Any: No SNAP PID value filter is specified. (SNAP PID filter status is 'don't-care'.)
         Specific: If you want to filter a specific SNAP PID value with this ECE, choose this value."
    ::= { tnEvcExtEceEntry 46 }

tnEvcEceSnapPidValue OBJECT-TYPE
    SYNTAX          Unsigned32
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
        "When 'Specific' is selected for the SNAP PID filter, you can enter a specific value.
         The allowed value is from 0x0 through 0xFFFF."
    ::= { tnEvcExtEceEntry 47 }

tnEvcEceL2cpProtoType  OBJECT-TYPE
    SYNTAX          INTEGER{
                    stpRstpMstp(1),
                    pause(2),
                    lacp(3),
                    lamp(4),
                    linkOam(5),
                    portAuth8021x(6),
                    elmi(7),
                    pbGroupAddr(8),
                    pbGvrp(9),
                    lldp(10),
                    gmrp(11),
                    gvrp(12),
                    uld(13),
                    pagp(14),
                    pvstPvstP(15),
                    ciscoBpdu(16),
                    cdp(17),
                    vtp(18),
                    dtp(19),
                    stpUplinkFast(20),
                    ciscoCfm(21)
                    }
    MAX-ACCESS      read-write
    STATUS          current
    DESCRIPTION
         "The L2CP type for the ECE. The possible values are:
         STP/RSTP/MSTP: Match STP/RSTP/MSTP frames.
         Pause: Match Pause frames.
         LACP: Match LACP frames.
         LAMP: Match LAMP frames.
         Link OAM(802.1ah): Match Link OAM(802.1ah) frames.
         Port Authentication(802.1x): Match Port Authentication(802.1x) frames.
         E-LMI: Match PB Group Address frames.
         PB Group Address: Match PB Group Address frames.
         PB GVRP: Match PB GVRP frames.
         LLDP: Match LLDP frames.
         GMRP: Match GMRP frames.
         GVRP: Match GVRP frames.
         ULD: Match ULD frames.
         PAgP: Match PAgP frames.
         PVST/PVST+: Match PVST/PVST+ frames.
         Cisco BPDU: Match Cisco BPDU frames.
         CDP: Match CDP frames.
         VTP: Match VTP frames.
         DTP: Match DTP frames.
         STP Uplink Fast: Match STP Uplink Fast frames.
         Cisco CFM: Match Cisco CFM frames."
    ::= { tnEvcExtEceEntry 48 }

-- EVC statistics table
tnEvcStatTable OBJECT-TYPE
    SYNTAX          SEQUENCE OF TnEvcStatEntry
    MAX-ACCESS      not-accessible
    STATUS          current
    DESCRIPTION
        "This table provides NNI port traffic statistics for the selected EVC.
         It also shows counters for UNI ports of ECEs mapping to the EVC."
    ::= { tnEvcStatGroup 1 }

tnEvcStatEntry OBJECT-TYPE
    SYNTAX          TnEvcStatEntry
    MAX-ACCESS      not-accessible
    STATUS          current
    DESCRIPTION
        "This entry represents an entry of EVC statistics."
    INDEX           { ifIndex, tnEvcStatClass }
    ::= { tnEvcStatTable 1 }

TnEvcStatEntry ::= SEQUENCE {
        tnEvcStatClass                    INTEGER,
        tnEvcStatGreenFrameRx             Counter64,
        tnEvcStatGreenFrameTx             Counter64,
        tnEvcStatYellowFrameRx            Counter64,
        tnEvcStatYellowFrameTx            Counter64,
        tnEvcStatRedFrameRx               Counter64,
        tnEvcStatDiscardGreenFrame        Counter64,
        tnEvcStatDiscardYellowFrame       Counter64,
        tnEvcStatClear                    TruthValue
}

tnEvcStatClass OBJECT-TYPE
        SYNTAX      INTEGER (1..11111)  -- range added by Jing
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION "The traffic class for the EVC. "
        ::= { tnEvcStatEntry 1 }

tnEvcStatGreenFrameRx OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION "The number of green received. "
        ::= { tnEvcStatEntry 2 }

tnEvcStatGreenFrameTx OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION "The number of green transmitted. "
        ::= { tnEvcStatEntry 3 }

tnEvcStatYellowFrameRx OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION "The number of yellow received. "
        ::= { tnEvcStatEntry 4 }

tnEvcStatYellowFrameTx OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION "The number of yellow transmitted. "
        ::= { tnEvcStatEntry 5 }

tnEvcStatRedFrameRx OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION "The number of red received. "
        ::= { tnEvcStatEntry 6 }

tnEvcStatDiscardGreenFrame OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION "The number of discarded in the green color. "
        ::= { tnEvcStatEntry 7 }

tnEvcStatDiscardYellowFrame OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION "The number of discarded in the yellow color.  "
        ::= { tnEvcStatEntry 8 }

tnEvcStatClear OBJECT-TYPE
        SYNTAX      TruthValue
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Clears the counters for selected ports when
             the value of tnEvcStatClear is true."
        ::= { tnEvcStatEntry 9 }

-- EVC statistics table  for S4140
tnEvcExtStatTable OBJECT-TYPE
    SYNTAX          SEQUENCE OF TnEvcExtStatEntry
    MAX-ACCESS      not-accessible
    STATUS          current
    DESCRIPTION
        "This table provides port traffic statistics for the selected EVC.
         It also shows counters for UNI ports of ECEs mapping to the EVC."
    ::= { tnEvcStatGroup 2 }

tnEvcExtStatEntry OBJECT-TYPE
    SYNTAX          TnEvcExtStatEntry
    MAX-ACCESS      not-accessible
    STATUS          current
    DESCRIPTION
        "This entry represents an entry of EVC statistics."
    INDEX           { tnEvcExtStatType, tnEvcExtStatIndex, tnEvcExtStatPort }
    ::= { tnEvcExtStatTable 1 }

TnEvcExtStatEntry ::= SEQUENCE {
        tnEvcExtStatType                   INTEGER,
        tnEvcExtStatIndex                  INTEGER,
        tnEvcExtStatPort                   INTEGER,
        tnEvcExtStatGreenFrameRx           Counter64,
        tnEvcExtStatGreenFrameTx           Counter64,
        tnEvcExtStatGreenBytesRx           Counter64,
        tnEvcExtStatGreenBytesTx           Counter64,
        tnEvcExtStatYellowFrameRx          Counter64,
        tnEvcExtStatYellowFrameTx          Counter64,
        tnEvcExtStatYellowBytesRx          Counter64,
        tnEvcExtStatYellowBytesTx          Counter64,
        tnEvcExtStatRedFrameRx             Counter64,
        tnEvcExtStatRedBytesRx             Counter64,
        tnEvcExtStatDiscardFrameRx         Counter64,
        tnEvcExtStatDiscardFrameTx         Counter64,
        tnEvcExtStatDiscardBytesRx         Counter64,
        tnEvcExtStatDiscardBytesTx         Counter64,
        tnEvcExtStatclear                  TruthValue
}

tnEvcExtStatType OBJECT-TYPE
        SYNTAX      INTEGER {
                        evc(1),
                        ece(2)
                    }
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION "The traffic class for the EVC."
        ::= { tnEvcExtStatEntry 1 }

tnEvcExtStatIndex OBJECT-TYPE
        SYNTAX      INTEGER (1..11111)  -- range added by Jing
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION "The EVC or ECE index."
        ::= { tnEvcExtStatEntry 2 }

tnEvcExtStatPort OBJECT-TYPE
        SYNTAX      INTEGER (1..11111)  -- range added by Jing
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION "The EVC or ECE index."
        ::= { tnEvcExtStatEntry 3 }

tnEvcExtStatGreenFrameRx OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION "The number Frames of green received."
        ::= { tnEvcExtStatEntry 4 }

tnEvcExtStatGreenFrameTx OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION "The number Frames of green transmitted."
        ::= { tnEvcExtStatEntry 5 }

tnEvcExtStatGreenBytesRx OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION "The number Bytes of green received."
        ::= { tnEvcExtStatEntry 6 }

tnEvcExtStatGreenBytesTx OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION "The number Bytes of green transmitted."
        ::= { tnEvcExtStatEntry 7 }

tnEvcExtStatYellowFrameRx OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION "The number Frames of yellow received."
        ::= { tnEvcExtStatEntry 8 }

tnEvcExtStatYellowFrameTx OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION "The number Frames of yellow transmitted."
        ::= { tnEvcExtStatEntry 9 }

tnEvcExtStatYellowBytesRx OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION "The number Bytes of yellow received."
        ::= { tnEvcExtStatEntry 10 }

tnEvcExtStatYellowBytesTx OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION "The number Bytes of yellow transmitted."
        ::= { tnEvcExtStatEntry 11 }

tnEvcExtStatRedFrameRx OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION "The number Frames of red received."
        ::= { tnEvcExtStatEntry 12 }

tnEvcExtStatRedBytesRx OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION "The number Bytes of red received."
        ::= { tnEvcExtStatEntry 13 }

tnEvcExtStatDiscardFrameRx OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION "The number Frames of discarded received."
        ::= { tnEvcExtStatEntry 14 }

tnEvcExtStatDiscardFrameTx OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION "The number Frames of discarded transmitted."
        ::= { tnEvcExtStatEntry 15 }

tnEvcExtStatDiscardBytesRx OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION "The number Bytes of discarded received."
        ::= { tnEvcExtStatEntry 16 }

tnEvcExtStatDiscardBytesTx OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION "The number Bytes of discarded transmitted."
        ::= { tnEvcExtStatEntry 17 }

tnEvcExtStatclear OBJECT-TYPE
        SYNTAX      TruthValue
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION "Clear the value by EVC or ECE index."
        ::= { tnEvcExtStatEntry 18 }

--
-- Ethernet Service Interface L2CP Table
--

tnEvcL2cpCfgTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF TnEvcL2cpCfgEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
       "This table supports L2CP settings."
    ::= { tnEvcL2cpMgmtGroup 3 }

tnEvcL2cpCfgEntry OBJECT-TYPE
    SYNTAX      TnEvcL2cpCfgEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
       "L2CP settings table entry."
    INDEX { tnEvcL2cpCfgInterfaceNumber, tnEvcL2cpCfgIndex }
    ::= { tnEvcL2cpCfgTable 1 }

TnEvcL2cpCfgEntry ::= SEQUENCE {
      tnEvcL2cpCfgInterfaceNumber  Unsigned32,
      tnEvcL2cpCfgIndex            Unsigned32,
      tnEvcL2cpCfgType             INTEGER,
      tnEvcL2cpCfgMatchScope       INTEGER,
      tnEvcL2cpCfgMacAddress       MacAddress,
      tnEvcL2cpCfgProtocol         Unsigned32,
      tnEvcL2cpCfgSubType          Unsigned32,
      tnEvcL2cpCfgEvcName          OCTET STRING,
      tnEvcL2cpCfgValid            INTEGER,
      tnEvcL2cpCfgRowStatus        RowStatus
    }


tnEvcL2cpCfgInterfaceNumber OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Sets L2CP interface number."
    ::= { tnEvcL2cpCfgEntry 1 }

tnEvcL2cpCfgIndex OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Sets L2CP index number on an interface."
    ::= { tnEvcL2cpCfgEntry 2 }

tnEvcL2cpCfgType OBJECT-TYPE
    SYNTAX      INTEGER {
        discard   (1),
        tunnel    (2),
        peer      (3),
        passToEvc (4),
        peerToEvc (5)
    }
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Sets L2CP type setting."
    ::= { tnEvcL2cpCfgEntry 3 }

tnEvcL2cpCfgMatchScope OBJECT-TYPE
    SYNTAX      INTEGER {
        destinationAddressOnly         (1),
        daPlusProtocol                 (2),
        daPlusProtocolPlusSubtype      (3)
    }
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Sets L2CP selection matching scope."
    ::= { tnEvcL2cpCfgEntry 4 }

tnEvcL2cpCfgMacAddress OBJECT-TYPE
    SYNTAX      MacAddress
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Sets L2CP Destination MAC address."
    ::= { tnEvcL2cpCfgEntry 5 }

tnEvcL2cpCfgProtocol OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Sets L2CP protocol."
    ::= { tnEvcL2cpCfgEntry 6 }

tnEvcL2cpCfgSubType OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Sets L2CP subtype for the protocol selected."
    ::= { tnEvcL2cpCfgEntry 7 }

tnEvcL2cpCfgEvcName OBJECT-TYPE
    SYNTAX      OCTET STRING (SIZE(0..45))
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Sets L2CP EVC association."
    ::= { tnEvcL2cpCfgEntry 8 }

tnEvcL2cpCfgValid OBJECT-TYPE
    SYNTAX      INTEGER {
        invalid (1),
        valid  (2)
    }
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Sets L2CP valid instance."
    ::= { tnEvcL2cpCfgEntry 9 }

tnEvcL2cpCfgRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
       "The status of the row.

        The writable columns in a row cannot be changed if the row
        is active. All columns must have a valid value before a row
        can be activated.
       "
   ::= { tnEvcL2cpCfgEntry 10 }
---
-- conformance information
tnEvcConformance OBJECT IDENTIFIER ::= { tnEvcObjects 8 }
tnEvcGroups OBJECT IDENTIFIER ::= { tnEvcConformance 1 }
-- MIB groupings
tnEvcPortConfigGroup OBJECT-GROUP
OBJECTS {
tnEvcPortDEIMode,
tnEvcPortTagMode,
tnEvcPortAddressMode
}
STATUS current
DESCRIPTION
"The collection of objects which are used to configure or
describe the configuration or behavior of the S3280."
::= { tnEvcGroups 1 }
tnEvcJaguarPortConfigGroup OBJECT-GROUP
OBJECTS {
tnEvcPortDEIMode
}
STATUS current
DESCRIPTION
"The collection of objects which are used to configure or
describe the configuration or behavior of the S4140."
::= { tnEvcGroups 2 }
tnEvcTableGroup OBJECT-GROUP
OBJECTS {
tnEvcNNIPortlist,
tnEvcVid,
tnEvcIVid,
tnEvcLearning,
tnEvcPolicerID
}
STATUS current
DESCRIPTION
"The collection of objects which are used to configure or
describe the configuration or behavior of the S4140."
::= { tnEvcGroups 3 }
END