summaryrefslogtreecommitdiff
path: root/MIBS/transition/TN-SA-MIB
blob: 318423121936288bc3cda0c31473241147581254 (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
TN-SA-MIB DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, enterprises, IpAddress, Counter32, Unsigned32, Counter64
        FROM SNMPv2-SMI
    TEXTUAL-CONVENTION, RowStatus, DisplayString, TruthValue, MacAddress
        FROM SNMPv2-TC
    MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
        FROM SNMPv2-CONF
    entPhysicalIndex FROM ENTITY-MIB
    InetAddressType, InetAddress
        FROM INET-ADDRESS-MIB;

tnSaMIB MODULE-IDENTITY
    LAST-UPDATED "201310180000Z" -- October 18, 2013
    ORGANIZATION "Transition Networks"
    CONTACT-INFO
        "Copyright (C) 2013  Transition Networks, Inc. All Rights Reserved."
    DESCRIPTION
        "A MIB module provides Service Activation management interface."
    ::= { iso(1) org(3) dod(6) internet(1) private(4) enterprises(1) transition (868) products (2) tnProducts(5) tnEtherSATMIB(108) 2 }

--
-- Textual conventions
--

TnSAEnabledState ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Enabled state."
    SYNTAX INTEGER {
        disabled (0),       -- Disabled state
        enabled (1)         -- Enabled state
    }

TnSATestDirection ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Test Direction."
    SYNTAX INTEGER {
        ne-to-fe (0),         -- Near End to Far End
        fe-to-ne (1),         -- Far End to Near End
        loopback (2)          -- Loopback
    }

TnSADirectionality ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Directionality of the test."
    SYNTAX INTEGER {
        unidirection (0),         -- uni-direction
        bidirection  (1),         -- bi-direction
        loopback     (2)
    }

TnSAFrameLevel ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Frame level."
    SYNTAX INTEGER {
        levelL2 (1),
        levelL3 (2)
    }

TnSAPaylodFiller ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Payload filler."
    SYNTAX INTEGER {
        prbs (0),
        fixed (2)
    }

TnSAL2Encaps ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Encapsulation type for L2 frames."
    SYNTAX INTEGER {
        none (0),
        eth-tst (1),          -- ETH-TST frames
        eth-tst-ethtype (2),  -- ETH-TST frames with custom Eth-Type
        llc-snap (3)          -- LLC/SNAP frames
    }

TnSAL3Encaps ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Encapsulation type for L3 frames."
    SYNTAX INTEGER {
        none (0),
        udp (1),          -- UDP/IP
        tcp (2)           -- TCP/IP
    }

TnSATestStatus ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Overall test status."
    SYNTAX INTEGER {
        status-none (1),
        completed (2),
        in-progress (3),
        not-supported (4),
        unable-to-run (5),
        aborted (6),
        failed (7),
        unknown (8)
    }

TnSATestAction ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Test action."
    SYNTAX INTEGER {
        start (1),          -- Start test
        stop (2)            -- Stop test
    }

TnSATestResStatus ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Test result. fail NE – if near end to far end direction has failed. 
         fail FE – if far end to near end direction has failed (For bidirectional mode only).
         fail NE & FE – if both directions have failed (For bidirectional mode only)."
    SYNTAX INTEGER {
        fail-ne (1),  -- Fail Near End 
        fail-fe (2),  -- Fail Far End
        fail-ne-fe (3),
        pass (4),
        not-tested (5),
        fail-exec (6)
    }

TnSATestStepResult ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Test step result."
    SYNTAX INTEGER {
        fail (0),
        pass (1)
    }

TnSATestEncapsulationType ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "VLAN Tag encapsulation type."
    SYNTAX INTEGER {
        utag (0),
        ctag (1),
        stag (2),
        cctag (3),
        sctag (4)
    }

tnSAProfileNextID OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "This object contains the next profile ID to use
        when creating entries in the tnSAProfileTable.

        When creating a new conceptual row (configuration
        entry) in tnSAProfileTable with an SNMP SET operation the
        command generator (Network Management Application) must
        first issue a management protocol retrieval operation
        to obtain the current value of this object.

        If the command responder (agent) does not wish to allow
        creation of more entries in tnSAProfileTable, possibly
        because of resource exhaustion, this object MUST return
        a value of 0.

        If a non-zero value is returned the Network Management
        Application must determine whether the value is indeed
        still unused since two Network Management Applications
        may attempt to create a row simultaneously and use the
        same value.

        If it is currently unused and the SET succeeds, the
        agent MUST change the value of this object to a
        currently unused non-zero value (according to an
        implementation specific algorithm) or zero (if no
        further row creation will be permitted).

        If the value is in use, however, the SET fails and the
        Network Management Application must then reread this
        object to obtain a new usable value."
    ::= { tnSaMIB 1 }

tnSATestNextID OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "This object contains the next Test ID to use
        when creating entries in the tnSATestTable.

        When creating a new conceptual row (configuration
        entry) in tnSATestTable with an SNMP SET operation the
        command generator (Network Management Application) must
        first issue a management protocol retrieval operation
        to obtain the current value of this object.

        If the command responder (agent) does not wish to allow
        creation of more entries in tnSATestTable, possibly
        because of resource exhaustion, this object MUST return
        a value of 0.

        If a non-zero value is returned the Network Management
        Application must determine whether the value is indeed
        still unused since two Network Management Applications
        may attempt to create a row simultaneously and use the
        same value.

        If it is currently unused and the SET succeeds, the
        agent MUST change the value of this object to a
        currently unused non-zero value (according to an
        implementation specific algorithm) or zero (if no
        further row creation will be permitted).

        If the value is in use, however, the SET fails and the
        Network Management Application must then reread this
        object to obtain a new usable value."
    ::= { tnSaMIB 2 }

tnSASysConfPeerCommunicationProto OBJECT-TYPE
    SYNTAX TnSAEnabledState
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Enable/disable the peer communication protocol. If this attribute is disabled a NID is unable to support 
        unidirectional and bidirectional RFC2544 tests (both as Initiator and Collector) since it cannot communicate
        with the far end. Only loopback tests can be executed in this case."
    ::= { tnSaMIB 3 }

tnSASysConfCollectorState OBJECT-TYPE
    SYNTAX TnSAEnabledState
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Collector state. The Collector Flag determines will the SA module accept SA test requests from outside."
    ::= { tnSaMIB 4 }

tnSASysTestMacAddress OBJECT-TYPE
    SYNTAX MacAddress
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Test MAC address. The Test MAC Address is used as source MAC address of the generating frames."
    ::= { tnSaMIB 5 }

tnSAPtpClockNum OBJECT-TYPE
    SYNTAX INTEGER(0..3)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        ""
    ::= { tnSaMIB 6 }

--
--    SA Profile
--
tnSAProfileTable OBJECT-TYPE
    SYNTAX SEQUENCE OF TnSAProfileEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The Service Activation Profile Table.  Entries in this table
        represent SA profiles.

        The index structure is the profile ID."
    ::= { tnSaMIB 7 }

tnSAProfileEntry OBJECT-TYPE
    SYNTAX TnSAProfileEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "An entry in the tnSAProfileTable."
    INDEX {
        tnSAProfileID
    }
    ::= { tnSAProfileTable 1 }

TnSAProfileEntry ::= SEQUENCE {
    tnSAProfileID Unsigned32,
    tnSAProfileName DisplayString,
    tnSAProfileFrameLossRatio Unsigned32,
    tnSAProfileCbsLineRate Unsigned32,
    tnSAProfileYellowPcpList Unsigned32,
    tnSAProfileFrameSizeMix OCTET STRING,
    tnSAProfileRateDecStep Unsigned32,
    tnSAProfileRateStepLength Unsigned32,
    tnSAProfileDirectionality TnSADirectionality,
    tnSAProfileStepsToExecute Unsigned32,
    tnSAProfileRefCounter Unsigned32,
    tnSAProfileRowStatus RowStatus
}

tnSAProfileID OBJECT-TYPE
    SYNTAX Unsigned32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The profile entry ID."
    ::= { tnSAProfileEntry 1 }

tnSAProfileName OBJECT-TYPE
    SYNTAX DisplayString
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The name of the profile."
    ::= { tnSAProfileEntry 2 }

tnSAProfileFrameLossRatio OBJECT-TYPE
    SYNTAX Unsigned32 (0..10000)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Acceptable frame loss ratio (expressed in percentage, 
         with 2 decimals (i.e. 99.99 %)."
    ::= { tnSAProfileEntry 3 }

tnSAProfileCbsLineRate OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Line rate at which burst traffic should be sent for the Back-to-back frames test. In Mbps."
    ::= { tnSAProfileEntry 4 }

tnSAProfileFrameSizeMix OBJECT-TYPE
    SYNTAX OCTET STRING  (SIZE(1..20))
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Traffic frame size mix, for throughput tests."
    ::= { tnSAProfileEntry 5 }

tnSAProfileRateDecStep OBJECT-TYPE
    SYNTAX Unsigned32 (0..100)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
      "Rate decrease step size, in percentage. Default 25%."
    DEFVAL { 25 }
    ::= { tnSAProfileEntry 6 }

tnSAProfileRateStepLength OBJECT-TYPE
    SYNTAX Unsigned32 (10..60)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
      "Rate step length, in seconds."
    DEFVAL { 20 }
    ::= { tnSAProfileEntry 7 }

tnSAProfileDirectionality OBJECT-TYPE
    SYNTAX TnSADirectionality
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
      "Directionality of the tests: uni-directional, bi-directional or loopback based."
    ::= { tnSAProfileEntry 8 }

tnSAProfileYellowPcpList OBJECT-TYPE
    SYNTAX Unsigned32 (0.. 255)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "List of PCP values corresponding to yellow frame. Bitmask. Each bit number [0..7] corresponds to a PCP value [0..7].
         Bit 0 corresponds to PCP 0, etc.

         Example: yellow PCP list: 0,3,5. So, bits 0, 3 and 5 must be set to 1, while
         other bits must be reset to zero: 101001 in binary format = 41 in decimal format.
         So, the tnSAProfileYellowPcpList must be set to 41."
    ::= { tnSAProfileEntry 9 }

tnSAProfileStepsToExecute OBJECT-TYPE
    SYNTAX Unsigned32 (0.. 2047)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "List of tests to execute – bitmask:
             -Throughput (bit 1)
             -Latency (bit 2)
             -Frame Loss Rate (bit 3)
             -Back To Back Frames (bit 4)"
    ::= { tnSAProfileEntry 10 }

tnSAProfileRefCounter OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Readonly field contains number of tests that use this profile. Profile can be deleted if it has no assigned tests."
    ::= { tnSAProfileEntry 11 }

tnSAProfileRowStatus OBJECT-TYPE
    SYNTAX RowStatus
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "The row status.  To create a row, set the instance of
        this variable for the new row to 'createAndGo'.  To
        delete a row, set the instance of this variable for
        the row to delete to 'destroy'."
    ::= { tnSAProfileEntry 12 }

--
--    Frame format table for SA profile
--
tnSAFrameFormatProfileTable OBJECT-TYPE
    SYNTAX SEQUENCE OF TnSAFrameFormatProfileEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The SA Profile Frame Format Table.  Entries in this table represent 
        Frame Format attributes.  Each row in the table conceptually
        augments the entries in the tnSAProfileTable.

        The index structure is the SA profile ID."
    ::= { tnSaMIB 8 }

tnSAFrameFormatProfileEntry OBJECT-TYPE
    SYNTAX TnSAFrameFormatProfileEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "An entry in the tnSAFrameFormatProfileTable."
    INDEX {
        tnSAProfileID
    }
    ::= { tnSAFrameFormatProfileTable 1 }

TnSAFrameFormatProfileEntry ::= SEQUENCE {
    tnSAFrameFormatProfileFrameLevel TnSAFrameLevel,
    tnSAFrameFormatProfilePaylodFiller TnSAPaylodFiller,
    tnSAFrameFormatProfileEncapsulationL2 TnSAL2Encaps,
    tnSAFrameFormatProfileEncapsulationL3 TnSAL3Encaps,
    tnSAFrameFormatProfileEthType Unsigned32,
    tnSAFrameFormatProfileIpDscp Unsigned32,
    tnSAFrameFormatProfileIpEcn Unsigned32,
    tnSAFrameFormatProfileIpFlags Unsigned32,
    tnSAFrameFormatProfileIpTtl Unsigned32,
    tnSAFrameFormatProfileUdpSrcPort Unsigned32,
    tnSAFrameFormatProfileUdpDstPort Unsigned32,
    tnSAFrameFormatProfileTcpSrcPort Unsigned32,
    tnSAFrameFormatProfileTcpDstPort Unsigned32,
    tnSAFrameFormatProfileTcpSeqNum Unsigned32,
    tnSAFrameFormatProfileTcpAckNum Unsigned32,
    tnSAFrameFormatProfileTcpControlBits Unsigned32,
    tnSAFrameFormatProfileTcpWindowSize Unsigned32,
    tnSAFrameFormatProfileLlcSnapOui Unsigned32,
    tnSAFrameFormatProfileLlcSnapProto Unsigned32,
    tnSAFrameFormatProfileIpDestIpAddress IpAddress,
    tnSAFrameFormatProfileIpSrcIpAddress IpAddress,
    tnSAFrameFormatProfilePayloadFillPattern Unsigned32,
    tnSAFrameFormatProfileMEGLevel Unsigned32
}

tnSAFrameFormatProfileFrameLevel OBJECT-TYPE
    SYNTAX TnSAFrameLevel
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Frame level – L2 or L3."
    ::= { tnSAFrameFormatProfileEntry 1 }

tnSAFrameFormatProfilePaylodFiller OBJECT-TYPE
    SYNTAX TnSAPaylodFiller
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Paylod filler."
    ::= { tnSAFrameFormatProfileEntry 2 }

tnSAFrameFormatProfileEncapsulationL2 OBJECT-TYPE
    SYNTAX TnSAL2Encaps
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Encapsulation type for L2 frames."
    ::= { tnSAFrameFormatProfileEntry 3 }

tnSAFrameFormatProfileEncapsulationL3 OBJECT-TYPE
    SYNTAX TnSAL3Encaps
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Encapsulation type for L3 frames."
    ::= { tnSAFrameFormatProfileEntry 4 }

tnSAFrameFormatProfileEthType OBJECT-TYPE
    SYNTAX Unsigned32 (0..65535)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Custom Eth-Type for L2 ETH-TST frames."
    ::= { tnSAFrameFormatProfileEntry 5 }

tnSAFrameFormatProfileIpDscp OBJECT-TYPE
    SYNTAX Unsigned32 (0..63)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "DSCP value for L3 IP frames."
    DEFVAL { 0 }
    ::= { tnSAFrameFormatProfileEntry 6 }

tnSAFrameFormatProfileIpEcn OBJECT-TYPE
    SYNTAX Unsigned32 (0..3)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "ECN value for L3 IP frames."
    DEFVAL { 0 }
    ::= { tnSAFrameFormatProfileEntry 7 }

tnSAFrameFormatProfileIpFlags OBJECT-TYPE
    SYNTAX Unsigned32 (0..7)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Flags value for L3 IP frames."
    DEFVAL { 0 }
    ::= { tnSAFrameFormatProfileEntry 8 }

tnSAFrameFormatProfileIpTtl OBJECT-TYPE
    SYNTAX Unsigned32 (0..255)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "TTL value for L3 IP frames."
    DEFVAL { 64 }
    ::= { tnSAFrameFormatProfileEntry 9 }

tnSAFrameFormatProfileUdpSrcPort OBJECT-TYPE
    SYNTAX Unsigned32 (0..65535)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Source port for L3 IP/UDP frames."
    DEFVAL { 0 }
    ::= { tnSAFrameFormatProfileEntry 10 }

tnSAFrameFormatProfileUdpDstPort OBJECT-TYPE
    SYNTAX Unsigned32 (0..65535)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Destination port for L3 IP/UDP frames."
    DEFVAL { 0 }
    ::= { tnSAFrameFormatProfileEntry 11 }

tnSAFrameFormatProfileTcpSrcPort OBJECT-TYPE
    SYNTAX Unsigned32 (0..65535)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Source port for L3 IP/TCP frames."
    DEFVAL { 0 }
    ::= { tnSAFrameFormatProfileEntry 12 }

tnSAFrameFormatProfileTcpDstPort OBJECT-TYPE
    SYNTAX Unsigned32 (0..65535)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Destination port for L3 IP/TCP frames."
    DEFVAL { 0 }
    ::= { tnSAFrameFormatProfileEntry 13 }

tnSAFrameFormatProfileTcpSeqNum OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Sequence number for L3 IP/TCP frames."
    DEFVAL { 16 }
    ::= { tnSAFrameFormatProfileEntry 14 }

tnSAFrameFormatProfileTcpAckNum OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "ACK number for L3 IP/TCP frames."
    DEFVAL { 16 }
    ::= { tnSAFrameFormatProfileEntry 15 }

tnSAFrameFormatProfileTcpControlBits OBJECT-TYPE
    SYNTAX Unsigned32 (0..63)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Control bits for L3 IP/TCP frames."
    DEFVAL { 16 }
    ::= { tnSAFrameFormatProfileEntry 16 }

tnSAFrameFormatProfileTcpWindowSize OBJECT-TYPE
    SYNTAX Unsigned32 (0..65535)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Window size for L3 IP/TCP frames."
    DEFVAL { 16 }
    ::= { tnSAFrameFormatProfileEntry 17 }

tnSAFrameFormatProfileLlcSnapOui   OBJECT-TYPE
    SYNTAX Unsigned32 (0.. 16777215)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        " LLC/SNAP OUI field – 3 bytes"
    ::= { tnSAFrameFormatProfileEntry 18 }

tnSAFrameFormatProfileLlcSnapProto   OBJECT-TYPE
    SYNTAX Unsigned32 (0..65535)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        " LLC/SNAP protocol field"
    ::= { tnSAFrameFormatProfileEntry 19 }

tnSAFrameFormatProfileIpDestIpAddress   OBJECT-TYPE
    SYNTAX IpAddress
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        " Destination IP address"
    ::= { tnSAFrameFormatProfileEntry 20 }

tnSAFrameFormatProfileIpSrcIpAddress   OBJECT-TYPE
    SYNTAX IpAddress
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        " Source IP address"
    ::= { tnSAFrameFormatProfileEntry 21 }

tnSAFrameFormatProfilePayloadFillPattern   OBJECT-TYPE
    SYNTAX Unsigned32 (0..4294967295)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        " Payload filler pattern(value entered in decimal)."
    ::= { tnSAFrameFormatProfileEntry 22 }

tnSAFrameFormatProfileMEGLevel    OBJECT-TYPE
    SYNTAX Unsigned32 (0..7)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        " Level of MEG that is used by ETH-TST frames."
    ::= { tnSAFrameFormatProfileEntry 23 }

--
--    DM bins threshold configuration table
--
tnDmBinThresholdTable OBJECT-TYPE
    SYNTAX SEQUENCE OF TnDmBinThresholdEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Table of DM bin thresholds."
    ::= { tnSaMIB 9 }

tnDmBinThresholdEntry  OBJECT-TYPE
    SYNTAX TnDmBinThresholdEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "An entry in the SA tnDmBinThresholdTable."
    INDEX {
        tnSAProfileID,
        tnDmBinThresholdIndex
    } ::= { tnDmBinThresholdTable 1 }

TnDmBinThresholdEntry ::= SEQUENCE {
    tnDmBinThresholdIndex Unsigned32,
    tnDmBinThresholdValue Unsigned32
}

tnDmBinThresholdIndex OBJECT-TYPE
    SYNTAX Unsigned32 (1..10)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "DM bin threshold index."
    ::= { tnDmBinThresholdEntry 1 }

tnDmBinThresholdValue OBJECT-TYPE
    SYNTAX Unsigned32 (0..10000000)
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "DM bin threshold value in usec. Zero value is used to delete threshold."
    ::= { tnDmBinThresholdEntry 2 }

--
--    DMV bins threshold configuration table
--
tnDmvBinThresholdTable OBJECT-TYPE
    SYNTAX SEQUENCE OF TnDmvBinThresholdEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Table of DMV bin thresholds."
    ::= { tnSaMIB 10 }

tnDmvBinThresholdEntry  OBJECT-TYPE
    SYNTAX TnDmvBinThresholdEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "An entry in the SA tnDmvBinThresholdTable."
    INDEX {
        tnSAProfileID,
        tnDmvBinThresholdIndex
    } ::= { tnDmvBinThresholdTable 1 }

TnDmvBinThresholdEntry ::= SEQUENCE {
    tnDmvBinThresholdIndex Unsigned32,
    tnDmvBinThresholdValue Unsigned32
}

tnDmvBinThresholdIndex OBJECT-TYPE
    SYNTAX Unsigned32 (1..10)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "DM bin threshold index."
    ::= { tnDmvBinThresholdEntry 1 }

tnDmvBinThresholdValue OBJECT-TYPE
    SYNTAX Unsigned32 (0..10000000)
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "DM bin threshold value in usec. Zero value is used to delete threshold."
    ::= { tnDmvBinThresholdEntry 2 }

--
--    SA Test table
--
tnSATestTable OBJECT-TYPE
    SYNTAX SEQUENCE OF TnSATestEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The SA Test Table.  Entries in this table
        represent Service Activation test attributes.

        The index structure is the test ID."
    ::= { tnSaMIB 11 }

tnSATestEntry OBJECT-TYPE
    SYNTAX TnSATestEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "An entry in the tnSATestTable."
    INDEX {
        tnSATestID
    }
    ::= { tnSATestTable 1 }

TnSATestEntry ::= SEQUENCE {
    tnSATestID Unsigned32,
    tnSATestSAProfileId Unsigned32,
    tnSATestIngressEncapsulationType TnSATestEncapsulationType,
    tnSATestIngressInnerVid Unsigned32,
    tnSATestIngressInnerPcp Unsigned32,
    tnSATestIngressOuterVid Unsigned32,
    tnSATestIngressOuterPcp Unsigned32,
    tnSATestEgressEncapsulationType TnSATestEncapsulationType,
    tnSATestEgressInnerVid Unsigned32,
    tnSATestEgressInnerPcp Unsigned32,
    tnSATestEgressOuterVid Unsigned32,
    tnSATestEgressOuterPcp Unsigned32,
    tnSATestIngressPort Unsigned32,
    tnSATestCollectorIngressPort Unsigned32,
    tnSATestCollectorIpAddr IpAddress,
    tnSATestName DisplayString,
    tnSATestCir Counter64,
    tnSATestCbs Unsigned32,
    tnSATestEir Counter64,
    tnSATestEbs Unsigned32,
    tnSATestTargettestMacAddr MacAddress,
    tnSATestAction TnSATestAction,
    tnSATestRowStatus RowStatus
}

tnSATestID OBJECT-TYPE
    SYNTAX Unsigned32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The test entry ID."
    ::= { tnSATestEntry 1 }

tnSATestSAProfileId OBJECT-TYPE
    SYNTAX Unsigned32 (1..65535)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The SA profile ID for the test."
    ::= { tnSATestEntry 2 }

tnSATestIngressEncapsulationType OBJECT-TYPE
    SYNTAX TnSATestEncapsulationType
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "VLAN tag encapsulation type."
    ::= { tnSATestEntry 3 }

tnSATestIngressInnerVid OBJECT-TYPE
    SYNTAX Unsigned32 (0..4095)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Ingress Inner VLAN ID."
    ::= { tnSATestEntry 4 }

tnSATestIngressInnerPcp OBJECT-TYPE
    SYNTAX Unsigned32 (0..7)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Ingress Inner PCP value."
    ::= { tnSATestEntry 5 }

tnSATestIngressOuterVid OBJECT-TYPE
    SYNTAX Unsigned32 (0..4095)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Ingress Outer VLAN ID."
    ::= { tnSATestEntry 6 }

tnSATestIngressOuterPcp OBJECT-TYPE
    SYNTAX Unsigned32 (0..7)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Ingress Outer PCP value."
    ::= { tnSATestEntry 7 }

tnSATestEgressEncapsulationType OBJECT-TYPE
    SYNTAX TnSATestEncapsulationType
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "VLAN tag encapsulation type."
    ::= { tnSATestEntry 8 }

tnSATestEgressInnerVid OBJECT-TYPE
    SYNTAX Unsigned32 (0..4095)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Egress Inner VLAN ID."
    ::= { tnSATestEntry 9 }

tnSATestEgressInnerPcp OBJECT-TYPE
    SYNTAX Unsigned32 (0..7)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Egress Inner PCP value."
    ::= { tnSATestEntry 10 }

tnSATestEgressOuterVid OBJECT-TYPE
    SYNTAX Unsigned32 (0..4095)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Egress Outer VLAN ID."
    ::= { tnSATestEntry 11 }

tnSATestEgressOuterPcp OBJECT-TYPE
    SYNTAX Unsigned32 (0..7)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Egress Outer PCP value."
    ::= { tnSATestEntry 12 }

tnSATestIngressPort OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Ingress port number."
    ::= { tnSATestEntry 13 }

tnSATestCollectorIngressPort OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Collector's ingress port number."
    ::= { tnSATestEntry 14 }

tnSATestCollectorIpAddr OBJECT-TYPE
    SYNTAX IpAddress
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "IP address of the collector."
    ::= { tnSATestEntry 15 }

tnSATestName OBJECT-TYPE
    SYNTAX DisplayString
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Test name."
    ::= { tnSATestEntry 16 }

tnSATestCir OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "CIR. In Kbps."
    ::= { tnSATestEntry 17 }

tnSATestCbs OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "CBS. In bytes."
    ::= { tnSATestEntry 18 }

tnSATestEir OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "EIR. In Kbps."
    ::= { tnSATestEntry 19 }

tnSATestEbs OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "EBS. In bytes."
    ::= { tnSATestEntry 20 }

tnSATestTargettestMacAddr OBJECT-TYPE
    SYNTAX MacAddress
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Target Test MAC address (to be used for Loopback test only)."
    ::= { tnSATestEntry 21 }

tnSATestAction OBJECT-TYPE
    SYNTAX TnSATestAction
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "This attribute allow start/stop test."
    ::= { tnSATestEntry 22 }

tnSATestRowStatus OBJECT-TYPE
    SYNTAX RowStatus
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "The row status.  To create a row, set the instance of
        this variable for the new row to 'createAndGo'.  To
        delete a row, set the instance of this variable for
        the row to delete to 'destroy'."
    ::= { tnSATestEntry  23 }

--
-- Common Test Results
--
tnSACommonTestResultsTable OBJECT-TYPE
    SYNTAX SEQUENCE OF TnSACommonTestResultsEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Common test results."
    ::= { tnSaMIB 12 }

tnSACommonTestResultsEntry OBJECT-TYPE
    SYNTAX TnSACommonTestResultsEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "An entry in the tnSACommonTestResultsTable."
    INDEX {
        tnSACommonTestResultsTestId
    }
    ::= { tnSACommonTestResultsTable 1 }

TnSACommonTestResultsEntry ::= SEQUENCE {
    tnSACommonTestResultsTestId Unsigned32,
    tnSACommonTestResultsTestStatus TnSATestStatus,
    tnSACommonTestResultsEgressPort Unsigned32,
    tnSACommonTestResultsCbsLineRate Unsigned32,
    tnSACommonTestResultsDirectionality TnSADirectionality,
    tnSACommonTestResultsFrameLossRatio Unsigned32,
    tnSACommonTestResultsYellowPcpList Unsigned32,
    tnSACommonTestResultsFrameSizeMix OCTET STRING,
    tnSACommonTestResultsRateDecStep Unsigned32,
    tnSACommonTestResultsRateStepLength Unsigned32,
    tnSACommonTestResultsFrameFormatFrameLevel TnSAFrameLevel,
    tnSACommonTestResultsStepsToExecute Unsigned32,
    tnSACommonTestResultsFrameFormatPaylodFiller TnSAPaylodFiller,
    tnSACommonTestResultsFrameFormatEncapsulationL2 TnSAL2Encaps,
    tnSACommonTestResultsFrameFormatEncapsulationL3 TnSAL3Encaps,
    tnSACommonTestResultsFrameFormatEthType Unsigned32,
    tnSACommonTestResultsFrameFormatIpDscp Unsigned32,
    tnSACommonTestResultsFrameFormatIpEcn Unsigned32,
    tnSACommonTestResultsFrameFormatIpFlags Unsigned32,
    tnSACommonTestResultsFrameFormatIpTtl Unsigned32,
    tnSACommonTestResultsFrameFormatUdpSrcPort Unsigned32,
    tnSACommonTestResultsFrameFormatUdpDstPort Unsigned32,
    tnSACommonTestResultsFrameFormatTcpSrcPort Unsigned32,
    tnSACommonTestResultsFrameFormatTcpDstPort Unsigned32,
    tnSACommonTestResultsFrameFormatTcpSeqNum Unsigned32,
    tnSACommonTestResultsFrameFormatTcpAckNum Unsigned32,
    tnSACommonTestResultsFrameFormatTcpControlBits Unsigned32,
    tnSACommonTestResultsFrameFormatTcpWindowSize Unsigned32,
    tnSACommonTestResultsFrameFormatLlcSnapOui Unsigned32,
    tnSACommonTestResultsFrameFormatLlcSnapProto Unsigned32,
    tnSACommonTestResultsFrameFormatIpDestIpAddress IpAddress,
    tnSACommonTestResultsThroughputTestElapsedTime Unsigned32,
    tnSACommonTestResultsLatencyTestElapsedTime Unsigned32,
    tnSACommonTestResultsFlrTestElapsedTime Unsigned32,
    tnSACommonTestResultsBacktoBackTestElapsedTime Unsigned32,
    tnSACommonTestResultsThroughputTestResult TnSATestResStatus,
    tnSACommonTestResultsLatencyTestResult TnSATestResStatus,
    tnSACommonTestResultsFlrTestResult TnSATestResStatus,
    tnSACommonTestResultsBacktoBackTestResult TnSATestResStatus,
    tnSACommonTestResultsLastError DisplayString,
    tnSACommonTestResultsTestIngressEncapsulationType TnSATestEncapsulationType,
    tnSACommonTestResultsTestIngressInnerVid Unsigned32,
    tnSACommonTestResultsTestIngressInnerPcp Unsigned32,
    tnSACommonTestResultsTestIngressOuterVid Unsigned32,
    tnSACommonTestResultsTestIngressOuterPcp Unsigned32,
    tnSACommonTestResultsTestEgressEncapsulationType TnSATestEncapsulationType,
    tnSACommonTestResultsTestEgressInnerVid Unsigned32,
    tnSACommonTestResultsTestEgressInnerPcp Unsigned32,
    tnSACommonTestResultsTestEgressOuterVid Unsigned32,
    tnSACommonTestResultsTestEgressOuterPcp Unsigned32,
    tnSACommonTestResultsTestIngressPort Unsigned32,
    tnSACommonTestResultsTestCollectorIngressPort Unsigned32,
    tnSACommonTestResultsTestCir Counter64,
    tnSACommonTestResultsTestCbs Unsigned32,
    tnSACommonTestResultsTestEir Counter64,
    tnSACommonTestResultsTestEbs Unsigned32
}

tnSACommonTestResultsTestId OBJECT-TYPE
    SYNTAX Unsigned32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The report Test ID."
    ::= { tnSACommonTestResultsEntry 1 }

tnSACommonTestResultsTestStatus    OBJECT-TYPE
    SYNTAX TnSATestStatus
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Test status."
    ::= { tnSACommonTestResultsEntry 2 }

tnSACommonTestResultsEgressPort OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Egress port number."
    ::= { tnSACommonTestResultsEntry 3 }

tnSACommonTestResultsCbsLineRate OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Line rate at which burst traffic should be sent for the Back-to-back frames test. In Mbps."
    ::= { tnSACommonTestResultsEntry 4 }

tnSACommonTestResultsDirectionality OBJECT-TYPE
    SYNTAX TnSADirectionality
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
      "Directionality of the tests: uni-directional, bi-directional or loopback based."
    ::= { tnSACommonTestResultsEntry 5 }

tnSACommonTestResultsFrameLossRatio OBJECT-TYPE
    SYNTAX Unsigned32 (0..10000)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Acceptable frame loss ratio (expressed in percentage, 
         with 2 decimals (i.e. 99.99 %)."
    ::= { tnSACommonTestResultsEntry 6 }

tnSACommonTestResultsYellowPcpList OBJECT-TYPE
    SYNTAX Unsigned32 (0..255)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "List of PCP values corresponding to yellow frame. Bitmask."
    ::= { tnSACommonTestResultsEntry 7 }

tnSACommonTestResultsFrameSizeMix OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE(1..20))
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Traffic frame size mix, for throughput tests."
    ::= { tnSACommonTestResultsEntry 8 }

tnSACommonTestResultsRateDecStep OBJECT-TYPE
    SYNTAX Unsigned32 (0..100)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
      " Rate decrease step size, in percentage."
    ::= { tnSACommonTestResultsEntry 9 }

tnSACommonTestResultsRateStepLength OBJECT-TYPE
    SYNTAX Unsigned32 (10..60)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
      "Rate step length, in seconds."
    ::= { tnSACommonTestResultsEntry 10 }

tnSACommonTestResultsFrameFormatFrameLevel OBJECT-TYPE
    SYNTAX TnSAFrameLevel
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Frame level – L2 or L3."
    ::= { tnSACommonTestResultsEntry 11 }

tnSACommonTestResultsStepsToExecute OBJECT-TYPE
    SYNTAX Unsigned32 (0.. 2047)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "List of tests to execute – bitmask:
             -Throughput (bit 1)
             -Latency (bit 2)
             -Frame Loss Rate (bit 3)
             -Back To Back Frames (bit 4)"
    ::= { tnSACommonTestResultsEntry 12 }

tnSACommonTestResultsFrameFormatPaylodFiller OBJECT-TYPE
    SYNTAX TnSAPaylodFiller
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Paylod filler."
    ::= { tnSACommonTestResultsEntry 13 }

tnSACommonTestResultsFrameFormatEncapsulationL2 OBJECT-TYPE
    SYNTAX TnSAL2Encaps
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Encapsulation type for L2 frames."
    ::= { tnSACommonTestResultsEntry 14 }

tnSACommonTestResultsFrameFormatEncapsulationL3 OBJECT-TYPE
    SYNTAX TnSAL3Encaps
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Encapsulation type for L3 frames."
    ::= { tnSACommonTestResultsEntry 15 }

tnSACommonTestResultsFrameFormatEthType OBJECT-TYPE
    SYNTAX Unsigned32 (0..65535)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Custom Eth-Type for L2 ETH-TST frames."
    ::= { tnSACommonTestResultsEntry 16 }

tnSACommonTestResultsFrameFormatIpDscp OBJECT-TYPE
    SYNTAX Unsigned32 (0..63)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "DSCP value for L3 IP frames."
    ::= { tnSACommonTestResultsEntry 17 }

tnSACommonTestResultsFrameFormatIpEcn OBJECT-TYPE
    SYNTAX Unsigned32 (0..3)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "ECN value for L3 IP frames."
    ::= { tnSACommonTestResultsEntry 18 }

tnSACommonTestResultsFrameFormatIpFlags OBJECT-TYPE
    SYNTAX Unsigned32 (0..7)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Flags value for L3 IP frames."
    ::= { tnSACommonTestResultsEntry 19 }

tnSACommonTestResultsFrameFormatIpTtl OBJECT-TYPE
    SYNTAX Unsigned32 (0..255)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "TTL value for L3 IP frames."
    ::= { tnSACommonTestResultsEntry 20 }

tnSACommonTestResultsFrameFormatUdpSrcPort OBJECT-TYPE
    SYNTAX Unsigned32 (0..65535)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Source port for L3 IP/UDP frames."
    ::= { tnSACommonTestResultsEntry 21 }

tnSACommonTestResultsFrameFormatUdpDstPort OBJECT-TYPE
    SYNTAX Unsigned32 (0..65535)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Destination port for L3 IP/UDP frames."
    ::= { tnSACommonTestResultsEntry 22 }

tnSACommonTestResultsFrameFormatTcpSrcPort OBJECT-TYPE
    SYNTAX Unsigned32 (0..65535)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Source port for L3 IP/TCP frames."
    ::= { tnSACommonTestResultsEntry 23 }

tnSACommonTestResultsFrameFormatTcpDstPort OBJECT-TYPE
    SYNTAX Unsigned32 (0..65535)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Destination port for L3 IP/TCP frames."
    ::= { tnSACommonTestResultsEntry 24 }

tnSACommonTestResultsFrameFormatTcpSeqNum OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Sequence number for L3 IP/TCP frames."
    ::= { tnSACommonTestResultsEntry 25 }

tnSACommonTestResultsFrameFormatTcpAckNum OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "ACK number for L3 IP/TCP frames."
    ::= { tnSACommonTestResultsEntry 26 }

tnSACommonTestResultsFrameFormatTcpControlBits OBJECT-TYPE
    SYNTAX Unsigned32 (0..63)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Control bits for L3 IP/TCP frames."
    ::= { tnSACommonTestResultsEntry 27 }

tnSACommonTestResultsFrameFormatTcpWindowSize OBJECT-TYPE
    SYNTAX Unsigned32 (0..65535)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Window size for L3 IP/TCP frames."
    ::= { tnSACommonTestResultsEntry 28 }

tnSACommonTestResultsFrameFormatLlcSnapOui   OBJECT-TYPE
    SYNTAX Unsigned32 (0.. 16777215)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        " LLC/SNAP OUI field – 3 bytes"
    ::= { tnSACommonTestResultsEntry 29 }

tnSACommonTestResultsFrameFormatLlcSnapProto   OBJECT-TYPE
    SYNTAX Unsigned32 (0..65535)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        " LLC/SNAP protocol field"
    ::= { tnSACommonTestResultsEntry 30 }

tnSACommonTestResultsFrameFormatIpDestIpAddress   OBJECT-TYPE
    SYNTAX IpAddress
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        " Destination IP address"
    ::= { tnSACommonTestResultsEntry 31 }

tnSACommonTestResultsThroughputTestElapsedTime OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Total elapsed time for Throughput test in seconds."
    ::= { tnSACommonTestResultsEntry 32 }

tnSACommonTestResultsLatencyTestElapsedTime OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Total elapsed time for Latency test in seconds."
    ::= { tnSACommonTestResultsEntry 33 }

tnSACommonTestResultsFlrTestElapsedTime OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Total elapsed time for FLR test in seconds."
    ::= { tnSACommonTestResultsEntry 34 }

tnSACommonTestResultsBacktoBackTestElapsedTime OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Total elapsed time for Back to Back test in seconds."
    ::= { tnSACommonTestResultsEntry 35 }

tnSACommonTestResultsThroughputTestResult OBJECT-TYPE
    SYNTAX TnSATestResStatus
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Throughput test result."
    ::= { tnSACommonTestResultsEntry 36 }

tnSACommonTestResultsLatencyTestResult OBJECT-TYPE
    SYNTAX TnSATestResStatus
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Latency test result."
    ::= { tnSACommonTestResultsEntry 37 }

tnSACommonTestResultsFlrTestResult OBJECT-TYPE
    SYNTAX TnSATestResStatus
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "FLR test result."
    ::= { tnSACommonTestResultsEntry 38 }

tnSACommonTestResultsBacktoBackTestResult OBJECT-TYPE
    SYNTAX TnSATestResStatus
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Back to back test result."
    ::= { tnSACommonTestResultsEntry 39 }

tnSACommonTestResultsLastError OBJECT-TYPE
    SYNTAX DisplayString
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "The last error string."
    ::= { tnSACommonTestResultsEntry 40 }

tnSACommonTestResultsTestIngressEncapsulationType OBJECT-TYPE
    SYNTAX TnSATestEncapsulationType
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "VLAN tag encapsulation type."
    ::= { tnSACommonTestResultsEntry 41 }

tnSACommonTestResultsTestIngressInnerVid OBJECT-TYPE
    SYNTAX Unsigned32 (0..4095)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Ingress Inner VLAN ID."
    ::= { tnSACommonTestResultsEntry 42 }

tnSACommonTestResultsTestIngressInnerPcp OBJECT-TYPE
    SYNTAX Unsigned32 (0..7)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Ingress Inner PCP value."
    ::= { tnSACommonTestResultsEntry 43 }

tnSACommonTestResultsTestIngressOuterVid OBJECT-TYPE
    SYNTAX Unsigned32 (0..4095)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Ingress Outer VLAN ID."
    ::= { tnSACommonTestResultsEntry 44 }

tnSACommonTestResultsTestIngressOuterPcp OBJECT-TYPE
    SYNTAX Unsigned32 (0..7)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Ingress Outer PCP value."
    ::= { tnSACommonTestResultsEntry 45 }

tnSACommonTestResultsTestEgressEncapsulationType OBJECT-TYPE
    SYNTAX TnSATestEncapsulationType
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "VLAN tag encapsulation type."
    ::= { tnSACommonTestResultsEntry 46 }

tnSACommonTestResultsTestEgressInnerVid OBJECT-TYPE
    SYNTAX Unsigned32 (0..4095)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Egress Inner VLAN ID."
    ::= { tnSACommonTestResultsEntry 47 }

tnSACommonTestResultsTestEgressInnerPcp OBJECT-TYPE
    SYNTAX Unsigned32 (0..7)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Egress Inner PCP value."
    ::= { tnSACommonTestResultsEntry 48 }

tnSACommonTestResultsTestEgressOuterVid OBJECT-TYPE
    SYNTAX Unsigned32 (0..4095)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Egress Outer VLAN ID."
    ::= { tnSACommonTestResultsEntry 49 }

tnSACommonTestResultsTestEgressOuterPcp OBJECT-TYPE
    SYNTAX Unsigned32 (0..7)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Egress Outer PCP value."
    ::= { tnSACommonTestResultsEntry 50 }

tnSACommonTestResultsTestIngressPort OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Ingress port number."
    ::= { tnSACommonTestResultsEntry 51 }

tnSACommonTestResultsTestCollectorIngressPort OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Collector's ingress port number."
    ::= { tnSACommonTestResultsEntry 52 }

tnSACommonTestResultsTestCir OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "CIR. In Kbps."
    ::= { tnSACommonTestResultsEntry 53 }

tnSACommonTestResultsTestCbs OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "CBS. In bytes."
    ::= { tnSACommonTestResultsEntry 54 }

tnSACommonTestResultsTestEir OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "EIR. In Kbps."
    ::= { tnSACommonTestResultsEntry 55 }

tnSACommonTestResultsTestEbs OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "EBS. In bytes."
    ::= { tnSACommonTestResultsEntry 56 }

--
--    Common Test Results. DM bins threshold table
--
tnSACommonTestResultsDmBinThresholdTable OBJECT-TYPE
    SYNTAX SEQUENCE OF TnSACommonTestResultsDmBinThresholdEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Table of DM bin thresholds used for this test."
    ::= { tnSaMIB 13 }

tnSACommonTestResultsDmBinThresholdEntry  OBJECT-TYPE
    SYNTAX TnSACommonTestResultsDmBinThresholdEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "An entry in the SA tnSACommonTestResultsDmBinThresholdTable."
    INDEX {
        tnSACommonTestResultsTestId,
        tnSACommonTestResultsDmBinThresholdIndex
    } ::= { tnSACommonTestResultsDmBinThresholdTable 1 }

TnSACommonTestResultsDmBinThresholdEntry ::= SEQUENCE {
    tnSACommonTestResultsDmBinThresholdIndex Unsigned32,
    tnSACommonTestResultsDmBinThresholdValue Unsigned32
}

tnSACommonTestResultsDmBinThresholdIndex OBJECT-TYPE
    SYNTAX Unsigned32 (1..10)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "DM bin threshold index."
    ::= { tnSACommonTestResultsDmBinThresholdEntry 1 }

tnSACommonTestResultsDmBinThresholdValue OBJECT-TYPE
    SYNTAX Unsigned32 (0..10000000)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "DM bin threshold value in usec."
    ::= { tnSACommonTestResultsDmBinThresholdEntry 2 }

--
--    Common Test Results. DMV bins threshold table
--
tnSACommonTestResultsDmvBinThresholdTable OBJECT-TYPE
    SYNTAX SEQUENCE OF TnSACommonTestResultsDmvBinThresholdEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Table of DMV bin thresholds used fot this test."
    ::= { tnSaMIB 14 }

tnSACommonTestResultsDmvBinThresholdEntry  OBJECT-TYPE
    SYNTAX TnSACommonTestResultsDmvBinThresholdEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "An entry in the SA tnSACommonTestResultsDmvBinThresholdTable."
    INDEX {
        tnSACommonTestResultsTestId,
        tnSACommonTestResultsDmvBinThresholdIndex
    } ::= { tnSACommonTestResultsDmvBinThresholdTable 1 }

TnSACommonTestResultsDmvBinThresholdEntry ::= SEQUENCE {
    tnSACommonTestResultsDmvBinThresholdIndex Unsigned32,
    tnSACommonTestResultsDmvBinThresholdValue Unsigned32
}

tnSACommonTestResultsDmvBinThresholdIndex OBJECT-TYPE
    SYNTAX Unsigned32 (1..10)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "DM bin threshold index."
    ::= { tnSACommonTestResultsDmvBinThresholdEntry 1 }

tnSACommonTestResultsDmvBinThresholdValue OBJECT-TYPE
    SYNTAX Unsigned32 (0..10000000)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "DM bin threshold value in usec. Zero value is used to delete threshold."
    ::= { tnSACommonTestResultsDmvBinThresholdEntry 2 }

--
-- Throughput Test Results
--
tnSAThroughputTestResultsTable OBJECT-TYPE
    SYNTAX SEQUENCE OF TnSAThroughputTestResultsEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Table for Throughput Test Results."
    ::= { tnSaMIB 15 }

tnSAThroughputTestResultsEntry OBJECT-TYPE
    SYNTAX TnSAThroughputTestResultsEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "An entry in the tnSAThroughputTestResultsTable."
    INDEX {
        tnSAThroughputTestResultsTestId,
        tnSAThroughputTestResultsStepNumber
    }
    ::= { tnSAThroughputTestResultsTable 1 }

TnSAThroughputTestResultsEntry ::= SEQUENCE {
    tnSAThroughputTestResultsTestId Unsigned32,
    tnSAThroughputTestResultsStepNumber Unsigned32,
    tnSAThroughputTestResultsDirection TnSATestDirection,
    tnSAThroughputTestResultsActualRate Counter64,
    tnSAThroughputTestResultsStepDuration Unsigned32,
    tnSAThroughputTestResultsTxFrames Counter64,
    tnSAThroughputTestResultsRxGreenFrames Counter64,
    tnSAThroughputTestResultsRxYellowFrames Counter64,
    tnSAThroughputTestResultsStepResult TnSATestStepResult,
    tnSAThroughputTestResultsFrameSize Unsigned32
}

tnSAThroughputTestResultsTestId OBJECT-TYPE
    SYNTAX Unsigned32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The report Test ID."
    ::= { tnSAThroughputTestResultsEntry 1 }

tnSAThroughputTestResultsStepNumber OBJECT-TYPE
    SYNTAX Unsigned32(1..10)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Test step number."
    ::= { tnSAThroughputTestResultsEntry 2 }

tnSAThroughputTestResultsDirection OBJECT-TYPE
    SYNTAX TnSATestDirection
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "The report direction."
    ::= { tnSAThroughputTestResultsEntry 3 }

tnSAThroughputTestResultsActualRate OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Actual rate in Kbps."
    ::= { tnSAThroughputTestResultsEntry 4 }

tnSAThroughputTestResultsStepDuration OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Step duration in seconds."
    ::= { tnSAThroughputTestResultsEntry 5 }

tnSAThroughputTestResultsTxFrames OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Transmitted frames."
    ::= { tnSAThroughputTestResultsEntry 6 }

tnSAThroughputTestResultsRxGreenFrames OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Received green frames."
    ::= { tnSAThroughputTestResultsEntry 7 }

tnSAThroughputTestResultsRxYellowFrames OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Received yellow frames."
    ::= { tnSAThroughputTestResultsEntry 8 }

tnSAThroughputTestResultsStepResult OBJECT-TYPE
    SYNTAX TnSATestStepResult
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Step result."
    ::= { tnSAThroughputTestResultsEntry 9 }

tnSAThroughputTestResultsFrameSize OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Frame size."
    ::= { tnSAThroughputTestResultsEntry 10 }

--
-- Latency Test Results
--
tnSALatencyTestResultsTable OBJECT-TYPE
    SYNTAX SEQUENCE OF TnSALatencyTestResultsEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Table for Latency Test Results."
    ::= { tnSaMIB 16 }

tnSALatencyTestResultsEntry OBJECT-TYPE
    SYNTAX TnSALatencyTestResultsEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "An entry in the tnSALatencyTestResultsTable."
    INDEX {
        tnSALatencyTestResultsTestId,
        tnSALatencyTestResultsStepNumber
    }
    ::= { tnSALatencyTestResultsTable 1 }

TnSALatencyTestResultsEntry ::= SEQUENCE {
    tnSALatencyTestResultsTestId Unsigned32,
    tnSALatencyTestResultsStepNumber Unsigned32,
    tnSALatencyTestResultsDirection TnSATestDirection,
    tnSALatencyTestResultsStepDuration Unsigned32,
    tnSALatencyTestResultsFrameSize Unsigned32,
    tnSALatencyTestResultsStepResult TnSATestStepResult,
    tnSALatencyTestResultsDmMin Unsigned32,
    tnSALatencyTestResultsDmMax Unsigned32,
    tnSALatencyTestResultsDmAvg Unsigned32,
    tnSALatencyTestResultsDmvMin Unsigned32,
    tnSALatencyTestResultsDmvMax Unsigned32,
    tnSALatencyTestResultsDmvAvg Unsigned32
}

tnSALatencyTestResultsTestId OBJECT-TYPE
    SYNTAX Unsigned32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The report Test ID."
    ::= { tnSALatencyTestResultsEntry 1 }

tnSALatencyTestResultsStepNumber OBJECT-TYPE
    SYNTAX Unsigned32(1..10)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Test step number."
    ::= { tnSALatencyTestResultsEntry 2 }

tnSALatencyTestResultsDirection OBJECT-TYPE
    SYNTAX TnSATestDirection
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "The report direction."
    ::= { tnSALatencyTestResultsEntry 3 }

tnSALatencyTestResultsStepDuration OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Step duration in seconds."
    ::= { tnSALatencyTestResultsEntry 4 }

tnSALatencyTestResultsFrameSize OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Frame size."
    ::= { tnSALatencyTestResultsEntry 5 }

tnSALatencyTestResultsStepResult OBJECT-TYPE
    SYNTAX TnSATestStepResult
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Step result."
    ::= { tnSALatencyTestResultsEntry 6 }

tnSALatencyTestResultsDmMin OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Minimal delay in us."
    ::= { tnSALatencyTestResultsEntry 7 }

tnSALatencyTestResultsDmMax OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Maximal delay in us."
    ::= { tnSALatencyTestResultsEntry 8 }

tnSALatencyTestResultsDmAvg OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Average delay in us."
    ::= { tnSALatencyTestResultsEntry 9 }

tnSALatencyTestResultsDmvMin OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Minimal delay variation in us."
    ::= { tnSALatencyTestResultsEntry 10 }

tnSALatencyTestResultsDmvMax OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Maximal delay variation in us."
    ::= { tnSALatencyTestResultsEntry 11 }

tnSALatencyTestResultsDmvAvg OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Average delay variation in us."
    ::= { tnSALatencyTestResultsEntry 12 }



--
--    Latency DM bins threshold results table
--
tnSALatencyTestResultsDmBinThresholdTable OBJECT-TYPE
    SYNTAX SEQUENCE OF TnSALatencyTestResultsDmBinThresholdEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Table for Latency test DM bin counters."
    ::= { tnSaMIB 17 }

tnSALatencyTestResultsDmBinThresholdEntry  OBJECT-TYPE
    SYNTAX TnSALatencyTestResultsDmBinThresholdEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "An entry in the SA tnSALatencyTestResultsDmBinThresholdTable."
    INDEX {
        tnSALatencyTestResultsTestId,
        tnSALatencyTestResultsStepNumber,
        tnSALatencyTestResultsDmBinThresholdIndex
    } ::= { tnSALatencyTestResultsDmBinThresholdTable 1 }

TnSALatencyTestResultsDmBinThresholdEntry ::= SEQUENCE {
    tnSALatencyTestResultsDmBinThresholdIndex Unsigned32,
    tnSALatencyTestResultsDmBinThresholdRange Unsigned32,
    tnSALatencyTestResultsDmBinThresholdValue Unsigned32
}

tnSALatencyTestResultsDmBinThresholdIndex OBJECT-TYPE
    SYNTAX Unsigned32 (1..10)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "DM bin threshold index."
    ::= { tnSALatencyTestResultsDmBinThresholdEntry 1 }

tnSALatencyTestResultsDmBinThresholdRange OBJECT-TYPE
    SYNTAX Unsigned32 (0..10000000)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "DM bin threshold range."
    ::= { tnSALatencyTestResultsDmBinThresholdEntry 2 }

tnSALatencyTestResultsDmBinThresholdValue OBJECT-TYPE
    SYNTAX Unsigned32 (0..10000000)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "DM bin counter."
    ::= { tnSALatencyTestResultsDmBinThresholdEntry 3 }

--
--    Latency DMV bins threshold results table
--
tnSALatencyTestResultsDmvBinThresholdTable OBJECT-TYPE
    SYNTAX SEQUENCE OF TnSALatencyTestResultsDmvBinThresholdEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Table for Latency test DMV bin counters."
    ::= { tnSaMIB 18 }

tnSALatencyTestResultsDmvBinThresholdEntry  OBJECT-TYPE
    SYNTAX TnSALatencyTestResultsDmvBinThresholdEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "An entry in the SA tnSALatencyTestResultsDmvBinThresholdTable."
    INDEX {
        tnSALatencyTestResultsTestId,
        tnSALatencyTestResultsStepNumber,
        tnSALatencyTestResultsDmvBinThresholdIndex
    } ::= { tnSALatencyTestResultsDmvBinThresholdTable 1 }

TnSALatencyTestResultsDmvBinThresholdEntry ::= SEQUENCE {
    tnSALatencyTestResultsDmvBinThresholdIndex Unsigned32,
    tnSALatencyTestResultsDmvBinThresholdRange Unsigned32,
    tnSALatencyTestResultsDmvBinThresholdValue Unsigned32
}

tnSALatencyTestResultsDmvBinThresholdIndex OBJECT-TYPE
    SYNTAX Unsigned32 (1..10)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "DM bin threshold index."
    ::= { tnSALatencyTestResultsDmvBinThresholdEntry 1 }

tnSALatencyTestResultsDmvBinThresholdRange OBJECT-TYPE
    SYNTAX Unsigned32 (0..10000000)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "DMV bin threshold range."
    ::= { tnSALatencyTestResultsDmvBinThresholdEntry 2 }

tnSALatencyTestResultsDmvBinThresholdValue OBJECT-TYPE
    SYNTAX Unsigned32 (0..10000000)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "DMV bin counter."
    ::= { tnSALatencyTestResultsDmvBinThresholdEntry 3 }

--
-- Flr Test Results
--
tnSAFlrTestResultsTable OBJECT-TYPE
    SYNTAX SEQUENCE OF TnSAFlrTestResultsEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Table for FLR Test Results."
    ::= { tnSaMIB 19 }

tnSAFlrTestResultsEntry OBJECT-TYPE
    SYNTAX TnSAFlrTestResultsEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "An entry in the tnSAFlrTestResultsTable."
    INDEX {
        tnSAFlrTestResultsTestId,
        tnSAFlrTestResultsStepNumber
    }
    ::= { tnSAFlrTestResultsTable 1 }

TnSAFlrTestResultsEntry ::= SEQUENCE {
    tnSAFlrTestResultsTestId Unsigned32,
    tnSAFlrTestResultsStepNumber Unsigned32,
    tnSAFlrTestResultsDirection TnSATestDirection,
    tnSAFlrTestResultsActualRate Counter64,
    tnSAFlrTestResultsStepDuration Unsigned32,
    tnSAFlrTestResultsTxFrames Counter64,
    tnSAFlrTestResultsRxGreenFrames Counter64,
    tnSAFlrTestResultsRxYellowFrames Counter64,
    tnSAFlrTestResultsFlr Unsigned32,
    tnSAFlrTestResultsStepResult TnSATestStepResult,
    tnSAFlrTestResultsFrameSize Unsigned32,
    tnSAFlrTestResultsOutOfSeqEvents Unsigned32
}

tnSAFlrTestResultsTestId OBJECT-TYPE
    SYNTAX Unsigned32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The report Test ID."
    ::= { tnSAFlrTestResultsEntry 1 }

tnSAFlrTestResultsStepNumber OBJECT-TYPE
    SYNTAX Unsigned32(1..10)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Test step number."
    ::= { tnSAFlrTestResultsEntry 2 }

tnSAFlrTestResultsDirection OBJECT-TYPE
    SYNTAX TnSATestDirection
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "The report direction."
    ::= { tnSAFlrTestResultsEntry 3 }

tnSAFlrTestResultsActualRate OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Actual rate in Kbps."
    ::= { tnSAFlrTestResultsEntry 4 }

tnSAFlrTestResultsStepDuration OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Step duration in seconds."
    ::= { tnSAFlrTestResultsEntry 5 }

tnSAFlrTestResultsTxFrames OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Transmitted frames."
    ::= { tnSAFlrTestResultsEntry 6 }

tnSAFlrTestResultsRxGreenFrames OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Received green frames."
    ::= { tnSAFlrTestResultsEntry 7 }

tnSAFlrTestResultsRxYellowFrames OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Received yellow frames."
    ::= { tnSAFlrTestResultsEntry 8 }

tnSAFlrTestResultsFlr OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Calculated frame loss ratio."
    ::= { tnSAFlrTestResultsEntry 9 }

tnSAFlrTestResultsStepResult OBJECT-TYPE
    SYNTAX TnSATestStepResult
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Step result."
    ::= { tnSAFlrTestResultsEntry 10 }

tnSAFlrTestResultsFrameSize OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Frame size."
    ::= { tnSAFlrTestResultsEntry 11 }

tnSAFlrTestResultsOutOfSeqEvents OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Out of sequence events."
    ::= { tnSAFlrTestResultsEntry 12 }

--
-- BackToBack Test Results
--
tnSABackToBackTestResultsTable OBJECT-TYPE
    SYNTAX SEQUENCE OF TnSABackToBackTestResultsEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Table for Back to Back Test Results."
    ::= { tnSaMIB 20 }

tnSABackToBackTestResultsEntry OBJECT-TYPE
    SYNTAX TnSABackToBackTestResultsEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "An entry in the tnSABackToBackTestResultsTable."
    INDEX {
        tnSABackToBackTestResultsTestId,
        tnSABackToBackTestResultsStepNumber
    }
    ::= { tnSABackToBackTestResultsTable 1 }

TnSABackToBackTestResultsEntry ::= SEQUENCE {
    tnSABackToBackTestResultsTestId Unsigned32,
    tnSABackToBackTestResultsStepNumber Unsigned32,
    tnSABackToBackTestResultsDirection TnSATestDirection,
    tnSABackToBackTestResultsActualRate Unsigned32,
    tnSABackToBackTestResultsStepDuration Unsigned32,
    tnSABackToBackTestResultsTxFrames Counter64,
    tnSABackToBackTestResultsRxGreenFrames Counter64,
    tnSABackToBackTestResultsRxYellowFrames Counter64,
    tnSABackToBackTestResultsFlr Unsigned32,
    tnSABackToBackTestResultsStepResult TnSATestStepResult,
    tnSABackToBackTestResultsBurstSize Unsigned32
}

tnSABackToBackTestResultsTestId OBJECT-TYPE
    SYNTAX Unsigned32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The report Test ID."
    ::= { tnSABackToBackTestResultsEntry 1 }

tnSABackToBackTestResultsStepNumber OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Test step number."
    ::= { tnSABackToBackTestResultsEntry 2 }

tnSABackToBackTestResultsDirection OBJECT-TYPE
    SYNTAX TnSATestDirection
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "The report direction."
    ::= { tnSABackToBackTestResultsEntry 3 }

tnSABackToBackTestResultsActualRate OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Actual rate in Kbps."
    ::= { tnSABackToBackTestResultsEntry 4 }

tnSABackToBackTestResultsStepDuration OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Step duration in seconds."
    ::= { tnSABackToBackTestResultsEntry 5 }

tnSABackToBackTestResultsTxFrames OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Transmitted frames."
    ::= { tnSABackToBackTestResultsEntry 6 }

tnSABackToBackTestResultsRxGreenFrames OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Received green frames."
    ::= { tnSABackToBackTestResultsEntry 7 }

tnSABackToBackTestResultsRxYellowFrames OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Received yellow frames."
    ::= { tnSABackToBackTestResultsEntry 8 }

tnSABackToBackTestResultsFlr OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Calculated frame loss ratio."
    ::= { tnSABackToBackTestResultsEntry 9 }

tnSABackToBackTestResultsStepResult OBJECT-TYPE
    SYNTAX TnSATestStepResult
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Step result."
    ::= { tnSABackToBackTestResultsEntry 10 }

tnSABackToBackTestResultsBurstSize OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Burts size."
    ::= { tnSABackToBackTestResultsEntry 11 }

--
-- Save Report
--
tnSAsaveRptTable OBJECT-TYPE
    SYNTAX SEQUENCE OF TnSAsaveRptEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Table for saving results report to a file."
    ::= { tnSaMIB 21 }

tnSAsaveRptEntry OBJECT-TYPE
    SYNTAX TnSAsaveRptEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "An entry in the tnSAsaveRptTable."
    INDEX {
        entPhysicalIndex,
    }
    ::= { tnSAsaveRptTable 1 }

TnSAsaveRptEntry ::= SEQUENCE {
    tnSAsaveRptNumber Unsigned32,
    tnSAsaveRptHostType InetAddressType,
    tnSAsaveRptHostName InetAddress,
    tnSAsaveRptFileName DisplayString,
    tnSAsaveRpt Unsigned32
}

tnSAsaveRptNumber OBJECT-TYPE
    SYNTAX Unsigned32 (1..16)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The report Test ID."
    ::= { tnSAsaveRptEntry 1 }

tnSAsaveRptHostType OBJECT-TYPE
    SYNTAX      InetAddressType
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION "The IP address type of the device.
                 For a detailed description of this type, please refer to INET-ADDRESS-MIB."
    ::= { tnSAsaveRptEntry 2 }

tnSAsaveRptHostName OBJECT-TYPE
    SYNTAX      InetAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION "The IP address of the device.
                 For a detailed description of this type, please refer to INET-ADDRESS-MIB."
    ::= { tnSAsaveRptEntry 3 }

tnSAsaveRptFileName OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION "Name of text file to save the test results."
    ::= { tnSAsaveRptEntry 4 }

tnSAsaveRpt OBJECT-TYPE
    SYNTAX      Unsigned32
                {
                    doNothing(0),
                    save(1)
                }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION "Save the test results in a text file. The text file is saved asynchronously after which
                 the value of tnSAsaveRpt is returned to doNothing(0).
                 The file is saved in under 5 seconds."
    ::= { tnSAsaveRptEntry 5 }

END