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
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
|
-- This file was included in WWP MIB release 04-16-00-0047
--
-- CIENA-CES-BENCHMARK-MIB.my
--
--
CIENA-CES-BENCHMARK-MIB DEFINITIONS ::= BEGIN
IMPORTS
Unsigned32, Integer32, Counter64, OBJECT-TYPE,
MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
RowStatus, TruthValue, DisplayString, MacAddress, TEXTUAL-CONVENTION,
DateAndTime
FROM SNMPv2-TC
InetAddressType, InetAddress ,InetAddressPrefixLength
FROM INET-ADDRESS-MIB
cienaCesNotifications, cienaCesConfig, cienaCesStatistics
FROM CIENA-SMI
cienaGlobalSeverity, cienaGlobalMacAddress
FROM CIENA-GLOBAL-MIB;
cienaCesBenchmarkMIB MODULE-IDENTITY
LAST-UPDATED "201610140000Z"
ORGANIZATION "Ciena, Inc"
CONTACT-INFO
" Mib Meister
115 North Sullivan Road
Spokane Valley, WA 99037
USA
Phone: +1 509 242 9000
Email: support@ciena.com"
DESCRIPTION "The MIB module for managing RFC2544/Y1564 service benchmark testing."
REVISION "201611110000Z"
DESCRIPTION "The maximumLineRate(3) value for cienaCesBenchmarkProfileEntryFrameLossStartBw is not supported."
REVISION "201610140000Z"
DESCRIPTION "Add new entity attribute cienaCesBenchmarkEntityEntryReflectorMacValidation
to support MAC-agnostic reflector."
REVISION "201610070000Z"
DESCRIPTION "Updated the description of cienaCesBenchmarkProfileEntryTpid and made
cienaCesBenchmarkEntityStatsEntryClear obsolete. Entity statistics shall
now be cleared using new attribute cienaCesBenchmarkEntityEntryClearStats"
REVISION "201610040000Z"
DESCRIPTION "Fix VID range to allow up to maximum value of 4094"
REVISION "201609070000Z"
DESCRIPTION "Updated default values for various objects to help with 'createAndGo' operations"
REVISION "201606010000Z"
DESCRIPTION "Added Trap cienaCesBenchmarkTestIterationCompleted."
REVISION "201605130000Z"
DESCRIPTION "Updated cienaCesBenchmarkTestStarted, cienaCesBenchmarkTestStopped,
cienaCesBenchmarkTestCompleted, cienaCesBenchmarkTestFailedThroughputKpi,
cienaCesBenchmarkTestFailedFramelossKpi, cienaCesBenchmarkTestFailedLatencyKpi
and cienaCesBenchmarkTestFailedPdvKpi traps to include cienaGlobalSeverity and
cienaGlobalMacAddress."
REVISION "201604260000Z"
DESCRIPTION "Add new throughput test state, txMaxThroughputForYellowTest, to
CienaCesBenchmarkThroughputTestState's definition. Used on green
session when the associated yellow session is running its throughput
test."
REVISION "201603300000Z"
DESCRIPTION "Add cienaCesBenchmarkEmixCharSetTable"
REVISION "201603140000Z"
DESCRIPTION "Add attribute cienaCesBenchmarkTestInstanceEntryAssocEntityId which
points back to the entity ID associated with the test instance."
REVISION "201603100000Z"
DESCRIPTION "Add a special note to the description of
cienaCesBenchmarkGenTestSessionAllocationEntry
for the case when test traffic is untagged."
REVISION "201603030000Z"
DESCRIPTION "Fix description for cienaCesBenchmarkEntityStatsEntryClear
and cienaCesBenchmarkTestInstanceEntryTotalIntervals attributes"
REVISION "201602240000Z"
DESCRIPTION "Added evcOutOfService to the Entity Mode enum"
REVISION "201602090000Z"
DESCRIPTION "Initial creation. Based on WWP-LEOS-BENCHMARK-MIB update 201412180000Z"
::= { cienaCesConfig 39 }
--
-- Textual convention
--
CienaCesBenchmarkLatencyPdvTestState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Test state for latency and packet delay variation tests."
SYNTAX INTEGER {
idle(1),
sendingTraffic(2),
waitingForTimestampData(3),
waitingForResidualPackets(4),
processingResults(5),
stoppedByIntervalTimer(6),
stoppedByDurationTimer(7),
stoppedByUser(8),
done(9)
}
CienaCesBenchmarkThroughputTestState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Throughput test states"
SYNTAX INTEGER {
idle(1),
running(2),
waitingForResidualPackets(3),
processingResults(4),
stoppedByIntervalTimer(5),
stoppedByDurationTimer(6),
stoppedByUser(7),
done(8),
txMaxThroughputForYellowTest(9)
}
CienaCesBenchmarkFramelossTestState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Frame loss test states"
SYNTAX INTEGER {
idle(1),
runningFirstTest(2),
waitingForResidualFirstPackets(3),
processingFirstResults(4),
runningSecondTest(5),
waitingForResidualSecondPackets(6),
processingSecondResults(7),
stoppedByIntervalTimer(8),
stoppedByDurationTimer(9),
stoppedByUser(10),
done(11)
}
CienaCesBenchmarkRfc2544TestState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "RFC 2544 test suite state."
SYNTAX INTEGER {
idle(1),
running(2),
stoppedByIntervalTimer(3),
stoppedByDurationTimer(4),
stoppedByUser(5),
done(6)
}
CienaCesBenchmarkY1564TestState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Y1564 test suite state."
SYNTAX INTEGER {
idle(1),
running(2),
stoppedByIntervalTimer(3),
stoppedByDurationTimer(4),
stoppedByUser(5),
done(6)
}
CienaCesBenchmarkColorTest ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Defines which traffic color needs to be tested. Green
test traffic is generated with DEI bit set to 0 and
uses the profile bandwidth parameter as the starting
bandwidth; yellow test traffic is generated with DEI bit
set to 1 and uses the profile excess-bandwidth parameter
as the starting bandwidth. When testing for red, the test
stream has its DEI bit set to 1 and the starting bandwidth
is (excess-bandwidth * 1.25)"
SYNTAX INTEGER {
green(1),
yellow(2),
greenYellow(3),
greenYellowRed(4)
}
CienaCesBenchmarkKpiResult ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Provides a pass or fail for the test results compared to
the selected KPI profile's pass crieteria for the test."
SYNTAX INTEGER {
notAvailable(1),
pass(2),
fail(3)
}
CienaCesBenchmarkAdminState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Administrative state of an object."
SYNTAX INTEGER {
disabled(1),
enabled(2)
}
CienaCesBenchmarkThroughputKpiPercent ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d-4"
STATUS current
DESCRIPTION "Percent of bandwidth that the maximum throughput result
shouldn't go below for the test to be considered a pass.
The value is given as an integer but represent a 4 decimal
point percent. Ex: 0.2000 is reported as 2000."
SYNTAX Unsigned32
CienaCesBenchmarkFramelossKpiPercent ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d-4"
STATUS current
DESCRIPTION "Percent of the frameloss test staring bandwidth, the frame
loss shouldn't exceed for the test to be considered a pass.
The value is given as an integer but represent a 4 decimal
point percent. Ex: 0.2000 is reported as 2000."
SYNTAX Unsigned32
CienaCesBenchmarkThroughputResult ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d-2"
STATUS current
DESCRIPTION "Throughput results in Mbps are sent as unsigned integer
multiplied by 100 to provide a 2 decimal point accuracy.
If result is 123.45 Mbps, it is sent as 12345 and should
be divided by 100 by the SNMP application retrieving the
data."
SYNTAX Unsigned32
CienaCesBenchmarkFramelossResult ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d-2"
STATUS current
DESCRIPTION "Frame loss results in Percent of frame loss start bandwidth
are sent as unsigned integer multitplied by 100 to provide a
2 decimal point accuracy.
If result is 12.34 %, it is sent as 1234 and should
be divided by 100 by the SNMP application retrieving the
data."
SYNTAX Unsigned32
CienaCesBenchmarkPcpBitmap ::= TEXTUAL-CONVENTION
DISPLAY-HINT "x"
STATUS current
DESCRIPTION "Bitmap of the VLAN PCP (Priority Code ) value to test
with. When The RFC2544 test is selected in the profile,
only 1 PCP bit can be set. For other tests, a test
session will be run simultaneously for each PCP set
in the bitmap. In the later case, the bandwidth will
be distributed among the set PCPs according to the
selected PCP Bandwidth allocation profile. If no
such profile is configured, the bandwidth will evenly
be distributed among all set PCPs."
SYNTAX BITS {
pcp0(0),
pcp1(1),
pcp2(2),
pcp3(3),
pcp4(4),
pcp5(5),
pcp6(6),
pcp7(7)
}
cienaCesBenchmarkMIBObjects OBJECT IDENTIFIER ::= { cienaCesBenchmarkMIB 1 }
cienaCesBenchmarkModule OBJECT IDENTIFIER ::= { cienaCesBenchmarkMIBObjects 1 }
cienaCesBenchmarkGlobalObjects OBJECT IDENTIFIER ::= { cienaCesBenchmarkModule 1 }
cienaCesBenchmarkNotifications OBJECT IDENTIFIER ::= { cienaCesNotifications 39 }
cienaCesBenchmarkGlobalAdminState OBJECT-TYPE
SYNTAX CienaCesBenchmarkAdminState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administrative state of the benchmark feature
at the global level."
::= { cienaCesBenchmarkGlobalObjects 1 }
cienaCesBenchmarkGlobalGeneratorDefaultEmixSequenceId OBJECT-TYPE
SYNTAX Integer32 (0..32)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Default EMIX sequence to be used on a test instance
when no EMIX is specified in the test instance
targeted test profile. This applies to generator
test instances only."
::= { cienaCesBenchmarkGlobalObjects 2 }
cienaCesBenchmarkGlobalGeneratorDefaultKpiProfileId OBJECT-TYPE
SYNTAX Integer32 (0..32)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Default KPI profile to be used to analyze the results
of a test instance when no KPI profile is specifed in
the targeted test profile. This applies to generator
test instances only."
::= { cienaCesBenchmarkGlobalObjects 3 }
cienaCesBenchmarkGlobalGeneratorDefaultBwAllocProfileId OBJECT-TYPE
SYNTAX Integer32 (0..32)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Default bandwidth allocation profile to be used with
a test instance when no bandwidth allocation profile is
specified in the targeted test profile. This applies to
generator test instances only."
::= { cienaCesBenchmarkGlobalObjects 4 }
cienaCesBenchmarkGlobalPlatformMaxConfigEntities OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of entities that can be created on
this platform."
::= { cienaCesBenchmarkGlobalObjects 5 }
cienaCesBenchmarkGlobalPlatformMaxConfigTestInstances OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of test instances that can be created on
this platform."
::= { cienaCesBenchmarkGlobalObjects 6 }
cienaCesBenchmarkGlobalPlatformMaxConfigTestProfiles OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of test profiles that can be created on
this platform."
::= { cienaCesBenchmarkGlobalObjects 7 }
cienaCesBenchmarkGlobalPlatformMaxConfigKpiProfiles OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of KPI profiles that can be created on
this platform."
::= { cienaCesBenchmarkGlobalObjects 8 }
cienaCesBenchmarkGlobalPlatformMaxConfigBwAllocProfiles OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of bandwidth distribution profiles
that can be created on this platform."
::= { cienaCesBenchmarkGlobalObjects 9 }
cienaCesBenchmarkGlobalPlatformMaxConfigEmixSequences OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of EMIX sequences that can be created on
this platform, including the system created ones."
::= { cienaCesBenchmarkGlobalObjects 10 }
cienaCesBenchmarkGlobalPlatformMaxSimultaneousRunningTests OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of test instances that can be running
simultaneously on this platform."
::= { cienaCesBenchmarkGlobalObjects 11 }
cienaCesBenchmarkGlobalConfiguredEntities OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of entities currently configured."
::= { cienaCesBenchmarkGlobalObjects 12 }
cienaCesBenchmarkGlobalConfiguredTestInstances OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of test instances currently configured."
::= { cienaCesBenchmarkGlobalObjects 13 }
cienaCesBenchmarkGlobalConfiguredProfiles OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of test profiles currently configured."
::= { cienaCesBenchmarkGlobalObjects 14 }
cienaCesBenchmarkGlobalConfiguredEmixSequences OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of EMIX sequences currently configured, including
the system created ones."
::= { cienaCesBenchmarkGlobalObjects 15 }
cienaCesBenchmarkGlobalConfiguredKpiProfiles OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of KPI profiles currently configured."
::= { cienaCesBenchmarkGlobalObjects 16 }
cienaCesBenchmarkGlobalConfiguredBwAllocProfiles OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bandwidth distribution profiles currently
configured."
::= { cienaCesBenchmarkGlobalObjects 17 }
cienaCesBenchmarkGlobalEnabledTestInstances OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of test instances currently enabled across
the platform."
::= { cienaCesBenchmarkGlobalObjects 18 }
cienaCesBenchmarkGlobalGeneratorRunningTestInstances OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of generator test instances currently running
across the platform."
::= { cienaCesBenchmarkGlobalObjects 19 }
--
-- the Benchmark Entity Config and Status
--
cienaCesBenchmarkEntityTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesBenchmarkEntityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of benchmark entity entries."
::= { cienaCesBenchmarkModule 2 }
cienaCesBenchmarkEntityEntry OBJECT-TYPE
SYNTAX CienaCesBenchmarkEntityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"BENCHMARK Entity characteristics."
INDEX { cienaCesBenchmarkEntityEntryId }
::= { cienaCesBenchmarkEntityTable 1 }
CienaCesBenchmarkEntityEntry ::= SEQUENCE {
cienaCesBenchmarkEntityEntryId Integer32,
cienaCesBenchmarkEntityEntryName DisplayString,
cienaCesBenchmarkEntityEntryRole INTEGER,
cienaCesBenchmarkEntityEntryPortId Integer32,
cienaCesBenchmarkEntityEntryMode INTEGER,
cienaCesBenchmarkEntityEntryAdminState CienaCesBenchmarkAdminState,
cienaCesBenchmarkEntityEntryLocalMac MacAddress,
cienaCesBenchmarkEntityEntrySlotId Integer32,
cienaCesBenchmarkEntityEntryReflectorVendorType INTEGER,
cienaCesBenchmarkEntityEntryReflectionLevel INTEGER,
cienaCesBenchmarkEntityEntryGeneratorHFrameSize Integer32,
cienaCesBenchmarkEntityEntryMaxConfigTestInstances Integer32,
cienaCesBenchmarkEntityEntryMaxSimultaneousTestInstances Integer32,
cienaCesBenchmarkEntityEntryOperEnabled TruthValue,
cienaCesBenchmarkEntityEntryNumTestInstancesConfigured Integer32,
cienaCesBenchmarkEntityEntryNumTestInstancesEnabled Integer32,
cienaCesBenchmarkEntityEntryGenNumTestInstancesRunning Integer32,
cienaCesBenchmarkEntityEntryBwAvailable Integer32,
cienaCesBenchmarkEntityEntryGenBwUsedByRunningTests Integer32,
cienaCesBenchmarkEntityEntryAvailableHwSessions Integer32,
cienaCesBenchmarkEntityEntryAllocatedHwSessions Integer32,
cienaCesBenchmarkEntityEntryRowStatus RowStatus,
cienaCesBenchmarkEntityEntryClearStats TruthValue,
cienaCesBenchmarkEntityEntryReflectorMacValidation TruthValue
}
cienaCesBenchmarkEntityEntryId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entity unique ID"
::= { cienaCesBenchmarkEntityEntry 1 }
cienaCesBenchmarkEntityEntryName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..46))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of the benchmark entity as entered when created."
::= { cienaCesBenchmarkEntityEntry 2 }
cienaCesBenchmarkEntityEntryRole OBJECT-TYPE
SYNTAX INTEGER {
none(1),
reflector(2),
generator(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Entity role"
DEFVAL { reflector }
::= { cienaCesBenchmarkEntityEntry 3 }
cienaCesBenchmarkEntityEntryPortId OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Entity port under test"
::= { cienaCesBenchmarkEntityEntry 4 }
cienaCesBenchmarkEntityEntryMode OBJECT-TYPE
SYNTAX INTEGER {
none(1),
inService(2),
outOfService(3),
vidOutOfService(4),
evcOutOfService(5)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Entity mode"
DEFVAL { inService }
::= { cienaCesBenchmarkEntityEntry 5 }
cienaCesBenchmarkEntityEntryAdminState OBJECT-TYPE
SYNTAX CienaCesBenchmarkAdminState
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Entity admin state."
DEFVAL { disabled }
::= { cienaCesBenchmarkEntityEntry 6 }
cienaCesBenchmarkEntityEntryLocalMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The FPGA internal test port assigned mac address."
::= { cienaCesBenchmarkEntityEntry 7 }
cienaCesBenchmarkEntityEntrySlotId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The slot Id of the line module associated
with this entity."
::= { cienaCesBenchmarkEntityEntry 8 }
cienaCesBenchmarkEntityEntryReflectorVendorType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ciena(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicator as to what type of equipment is generating the
test traffic on the remote end."
DEFVAL { ciena }
::= { cienaCesBenchmarkEntityEntry 9 }
cienaCesBenchmarkEntityEntryReflectionLevel OBJECT-TYPE
SYNTAX INTEGER {
none(1),
l2only(2),
l2ToL3IPv4only(3),
l2ToL3IPv6only(4),
l2ToL4IPv4only(5),
l2ToL4IPv6only(6),
l2ToL4(7)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"For reflector entities, this indicates the minimum reflection
level required. If test traffic is going over an ethernet L2
cloud, l2-only is fine. But if the test traffic is going over
an IP network, the reflector needs to be able to swap L2 and
L3 fields. Depending on the type of IP network, the user
needs to configured IPv4 or IPv6. L2 to L4 will swap MAC
addresses, IP addresses and src and destination L4 port.
Depending on the reflection level required, a different device
is used to implement the reflector."
::= { cienaCesBenchmarkEntityEntry 10 }
cienaCesBenchmarkEntityEntryGeneratorHFrameSize OBJECT-TYPE
SYNTAX Integer32 (64..9216)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Maximum frame size that should be generated by the generator
device. This H frame size should to leave enough room for
extra encapsulation bytes that will be pushed onto the
packet by the switch when pushing this test packet out
the network side port.
The generator device will ensure that any frame size list
or EMIX used during the test is adjusted accordingly"
::= { cienaCesBenchmarkEntityEntry 11 }
cienaCesBenchmarkEntityEntryMaxConfigTestInstances OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of test instances that can
be configured on this entity."
::= { cienaCesBenchmarkEntityEntry 12 }
cienaCesBenchmarkEntityEntryMaxSimultaneousTestInstances OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of test instances that can
be enabled (reflector) or running (generator)
on this entity, given the availability of
hw sessions."
::= { cienaCesBenchmarkEntityEntry 13 }
cienaCesBenchmarkEntityEntryOperEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Entity operational enable/disable. An entity
is operationally enabled when the feature is
enabled, the entity is enabled and at least one
test instance associated with that entity is
enabled (reflector) or running (generator)"
::= { cienaCesBenchmarkEntityEntry 14 }
cienaCesBenchmarkEntityEntryNumTestInstancesConfigured OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of test instances currently configured
on this entity."
::= { cienaCesBenchmarkEntityEntry 15 }
cienaCesBenchmarkEntityEntryNumTestInstancesEnabled OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of test instances currently enabled."
::= { cienaCesBenchmarkEntityEntry 16 }
cienaCesBenchmarkEntityEntryGenNumTestInstancesRunning OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of test instances currently running."
::= { cienaCesBenchmarkEntityEntry 17 }
cienaCesBenchmarkEntityEntryBwAvailable OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Bandwidth available for test traffic if
a reflector. Bandwidth remaining for other
test instances to be started if a generator."
::= { cienaCesBenchmarkEntityEntry 18 }
cienaCesBenchmarkEntityEntryGenBwUsedByRunningTests OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Bandwidth currently used by test instances
currently running, in Mbps."
::= { cienaCesBenchmarkEntityEntry 19 }
cienaCesBenchmarkEntityEntryAvailableHwSessions OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Maximum number of simultaneous hardware sessions available
on this platform."
::= { cienaCesBenchmarkEntityEntry 20 }
cienaCesBenchmarkEntityEntryAllocatedHwSessions OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of allocated hardware sessions"
::= { cienaCesBenchmarkEntityEntry 21 }
cienaCesBenchmarkEntityEntryRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Used to manage the creation and deletion of the
conceptual rows in this table. To create a row in
this table, set this object to 'createAndGo'.
To delete a row in this table, set this object to
'destroy'. If the entry exists, it is displayed
as 'active'."
::= { cienaCesBenchmarkEntityEntry 22 }
cienaCesBenchmarkEntityEntryClearStats OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Set to true to clear all global fpga counters for the given entity.
Clear is only allowed for a reflector if no test instances are
enabled, and for a generator if no test instances are running. The
value is reset to false once the transaction is completed."
::= { cienaCesBenchmarkEntityEntry 23 }
cienaCesBenchmarkEntityEntryReflectorMacValidation OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This attribute is only valid for the reflector entity and indicates
whether the reflector verifies that the destination MAC of the test
frames matches the MAC address associated with benchamrk reflector
entity. MAC Validation can only be disabled (False) in out-if-service or
evc/vid-out-of-service mode."
::= { cienaCesBenchmarkEntityEntry 24 }
--
-- BENCHMARK Entity Stats table
--
cienaCesBenchmarkEntityStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesBenchmarkEntityStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of benchmark entity statistics entries."
::= { cienaCesBenchmarkModule 3 }
cienaCesBenchmarkEntityStatsEntry OBJECT-TYPE
SYNTAX CienaCesBenchmarkEntityStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"BENCHMARK Entity characteristics."
INDEX { cienaCesBenchmarkEntityEntryId }
::= { cienaCesBenchmarkEntityStatsTable 1 }
CienaCesBenchmarkEntityStatsEntry ::= SEQUENCE {
cienaCesBenchmarkEntityStatsEntryClear TruthValue,
cienaCesBenchmarkEntityStatsEntryPortTxBytes Counter64,
cienaCesBenchmarkEntityStatsEntryPortTxPkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortTxCrcErrorPkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortTxUcastPkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortTxMcastPkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortTxBcastPkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRxUndersizePkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRxOversizePkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRxFragmentsPkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRxJabbersPkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortTxPausePkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortTxDropPkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortTxDiscardPkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortTxLOutRangePkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortTx64OctsPkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortTx65To127Pkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortTx128To255Pkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortTx256To511Pkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortTx512To1023Pkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortTx1024To1518Pkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortTx1519To2047Pkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortTx2048To4095Pkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortTx4096To9216Pkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRxBytes Counter64,
cienaCesBenchmarkEntityStatsEntryPortRxPkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRxExDeferPkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRxDeferPkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRxGiantPkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRxUnderRunPkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRxCrcErrorPkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRxLCheckErrorPkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRxLOutRangePkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRxPausePkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRxUcastPkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRxMcastPkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRxBcastPkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRx64OctsPkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRx65To127Pkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRx128To255Pkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRx256To511Pkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRx512To1023Pkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRx1024To1518Pkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRx1519To2047Pkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRx2048To4095Pkts Counter64,
cienaCesBenchmarkEntityStatsEntryPortRx4096To9216Pkts Counter64,
cienaCesBenchmarkEntityStatsEntryFpgaMissClassPkts Counter64,
cienaCesBenchmarkEntityStatsEntryFpgaCrcErrPkts Counter64,
cienaCesBenchmarkEntityStatsEntryFpgaUdpChkSumErrPkts Counter64
}
cienaCesBenchmarkEntityStatsEntryClear OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"Set to true to clear all port and/or global fpga
counters for the given entity. Clear is only allowed
for a reflector if no test instances are enabled, and
for a generator if no test instances are running.
The value is reset to False once the transaction is completed.
This has been obsoleted by cienaCesBenchmarkEntityEntryClearStats."
::= { cienaCesBenchmarkEntityStatsEntry 1 }
cienaCesBenchmarkEntityStatsEntryPortTxBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bytes transmitted by the benchmark port"
::= { cienaCesBenchmarkEntityStatsEntry 2 }
cienaCesBenchmarkEntityStatsEntryPortTxPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets transmitted by the benchmark port"
::= { cienaCesBenchmarkEntityStatsEntry 3 }
cienaCesBenchmarkEntityStatsEntryPortTxCrcErrorPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets with CRC errors"
::= { cienaCesBenchmarkEntityStatsEntry 4 }
cienaCesBenchmarkEntityStatsEntryPortTxUcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of unicast packets transmitted by the benchmark port"
::= { cienaCesBenchmarkEntityStatsEntry 5 }
cienaCesBenchmarkEntityStatsEntryPortTxMcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of multicast packets transmitted by the benchmark port"
::= { cienaCesBenchmarkEntityStatsEntry 6 }
cienaCesBenchmarkEntityStatsEntryPortTxBcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of broadcast packets transmitted by the benchmark port"
::= { cienaCesBenchmarkEntityStatsEntry 7 }
cienaCesBenchmarkEntityStatsEntryPortRxUndersizePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received that were
less than 64 octets long (excluding framing bits,
but including FCS octets) and were otherwise well
formed."
::= { cienaCesBenchmarkEntityStatsEntry 8 }
cienaCesBenchmarkEntityStatsEntryPortRxOversizePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received that were
longer than 1518 octets (excluding framing bits,
but including FCS octets) and were otherwise
well formed."
::= { cienaCesBenchmarkEntityStatsEntry 9 }
cienaCesBenchmarkEntityStatsEntryPortRxFragmentsPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received that were less
than 64 octets in length (excluding framing bits but
including FCS octets) and had either a bad Frame
Check Sequence (FCS) with an integral number of
octets (FCS Error) or a bad FCS with a non-integral
number of octets (Alignment Error)."
::= { cienaCesBenchmarkEntityStatsEntry 10 }
cienaCesBenchmarkEntityStatsEntryPortRxJabbersPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received that were
longer than 1518 octets (excluding framing bits,
but including FCS octets), and had either a bad
Frame Check Sequence (FCS) with an integral number
of octets (FCS Error) or a bad FCS with a
non-integral number of octets (Alignment Error)."
::= { cienaCesBenchmarkEntityStatsEntry 11 }
cienaCesBenchmarkEntityStatsEntryPortTxPausePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transmit pause packets for the port."
::= { cienaCesBenchmarkEntityStatsEntry 12 }
cienaCesBenchmarkEntityStatsEntryPortTxDropPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of dropped packets on the benchmark port when
traffic profiles are enabled (311v only)."
::= { cienaCesBenchmarkEntityStatsEntry 13 }
cienaCesBenchmarkEntityStatsEntryPortTxDiscardPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of discarded packets."
::= { cienaCesBenchmarkEntityStatsEntry 14 }
cienaCesBenchmarkEntityStatsEntryPortTxLOutRangePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transmit length out of range packet count."
::= { cienaCesBenchmarkEntityStatsEntry 15 }
cienaCesBenchmarkEntityStatsEntryPortTx64OctsPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of 64-byte packets transmitted on the benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 16 }
cienaCesBenchmarkEntityStatsEntryPortTx65To127Pkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of 64 to 127-byte packets transmitted on the
benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 17 }
cienaCesBenchmarkEntityStatsEntryPortTx128To255Pkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of 128 to 255-byte packets transmitted on the
benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 18 }
cienaCesBenchmarkEntityStatsEntryPortTx256To511Pkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of 256 to 511-byte packets transmitted on the
benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 19 }
cienaCesBenchmarkEntityStatsEntryPortTx512To1023Pkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of 512 to 1023-byte packets transmitted on the
benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 20 }
cienaCesBenchmarkEntityStatsEntryPortTx1024To1518Pkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of 1024 to 1518-byte packets transmitted on the
benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 21 }
cienaCesBenchmarkEntityStatsEntryPortTx1519To2047Pkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of 1519 to 2047-byte packets transmitted on the
benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 22 }
cienaCesBenchmarkEntityStatsEntryPortTx2048To4095Pkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of 2048 to 4095-byte packets transmitted on the
benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 23 }
cienaCesBenchmarkEntityStatsEntryPortTx4096To9216Pkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of 4096 to 9216-byte packets transmitted on the
benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 24 }
cienaCesBenchmarkEntityStatsEntryPortRxBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bytes received on the benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 25 }
cienaCesBenchmarkEntityStatsEntryPortRxPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets received on the benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 26 }
cienaCesBenchmarkEntityStatsEntryPortRxExDeferPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of excessive deferred packets."
::= { cienaCesBenchmarkEntityStatsEntry 27 }
cienaCesBenchmarkEntityStatsEntryPortRxDeferPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of deferred packets."
::= { cienaCesBenchmarkEntityStatsEntry 28 }
cienaCesBenchmarkEntityStatsEntryPortRxGiantPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of too big packets."
::= { cienaCesBenchmarkEntityStatsEntry 29 }
cienaCesBenchmarkEntityStatsEntryPortRxUnderRunPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Underrun packet count for the benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 30 }
cienaCesBenchmarkEntityStatsEntryPortRxCrcErrorPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets received with CRC errors."
::= { cienaCesBenchmarkEntityStatsEntry 31 }
cienaCesBenchmarkEntityStatsEntryPortRxLCheckErrorPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets with length check errors."
::= { cienaCesBenchmarkEntityStatsEntry 32 }
cienaCesBenchmarkEntityStatsEntryPortRxLOutRangePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of frames received by the benchmark port
that exceeded the maximum permitted frame size."
::= { cienaCesBenchmarkEntityStatsEntry 33 }
cienaCesBenchmarkEntityStatsEntryPortRxPausePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total receive pause packets for the port."
::= { cienaCesBenchmarkEntityStatsEntry 34 }
cienaCesBenchmarkEntityStatsEntryPortRxUcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of unicast packets received by benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 35 }
cienaCesBenchmarkEntityStatsEntryPortRxMcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of multicast packets received by benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 36 }
cienaCesBenchmarkEntityStatsEntryPortRxBcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of broadcast packets received by benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 37 }
cienaCesBenchmarkEntityStatsEntryPortRx64OctsPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 64-byte packets received by benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 38 }
cienaCesBenchmarkEntityStatsEntryPortRx65To127Pkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 65 to 127-byte packets received by
benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 39 }
cienaCesBenchmarkEntityStatsEntryPortRx128To255Pkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 128 to 255-byte packets received by
benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 40 }
cienaCesBenchmarkEntityStatsEntryPortRx256To511Pkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 256 to 511-byte packets received by
benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 41 }
cienaCesBenchmarkEntityStatsEntryPortRx512To1023Pkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 512 to 1023-byte packets received by
benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 42 }
cienaCesBenchmarkEntityStatsEntryPortRx1024To1518Pkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 1024 to 1518-byte packets received by
benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 43 }
cienaCesBenchmarkEntityStatsEntryPortRx1519To2047Pkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 1519 to 2047-byte packets received by
benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 44 }
cienaCesBenchmarkEntityStatsEntryPortRx2048To4095Pkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 2048 to 4095-byte packets received by
benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 45 }
cienaCesBenchmarkEntityStatsEntryPortRx4096To9216Pkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 4096 to 9216-byte packets received by
benchmark port."
::= { cienaCesBenchmarkEntityStatsEntry 46 }
cienaCesBenchmarkEntityStatsEntryFpgaMissClassPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Test packets received that didn't match any enabled
test session."
::= { cienaCesBenchmarkEntityStatsEntry 47 }
cienaCesBenchmarkEntityStatsEntryFpgaCrcErrPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Test packets received with CRC errors"
::= { cienaCesBenchmarkEntityStatsEntry 48 }
cienaCesBenchmarkEntityStatsEntryFpgaUdpChkSumErrPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Test packets received with UDP checksum errors"
::= { cienaCesBenchmarkEntityStatsEntry 49 }
--
-- EMIX Sequence Table
--
cienaCesBenchmarkEmixSequenceTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesBenchmarkEmixSequenceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table providing the list of configured EMIX sequences
on this node."
::= { cienaCesBenchmarkModule 4 }
cienaCesBenchmarkEmixSequenceEntry OBJECT-TYPE
SYNTAX CienaCesBenchmarkEmixSequenceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"EMIX sequence entry."
INDEX { cienaCesBenchmarkEmixSequenceId }
::= { cienaCesBenchmarkEmixSequenceTable 1 }
CienaCesBenchmarkEmixSequenceEntry ::= SEQUENCE {
cienaCesBenchmarkEmixSequenceId Integer32,
cienaCesBenchmarkEmixSequenceName DisplayString,
cienaCesBenchmarkEmixSequence DisplayString,
cienaCesBenchmarkEmixSequenceUFrameSize Integer32,
cienaCesBenchmarkEmixSequenceNumOfRef Integer32,
cienaCesBenchmarkEmixSequenceUserCreated TruthValue,
cienaCesBenchmarkEmixSequenceRowStatus RowStatus
}
cienaCesBenchmarkEmixSequenceId OBJECT-TYPE
SYNTAX Integer32 (1..32)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique Id of the EMIX sequence entry"
::= { cienaCesBenchmarkEmixSequenceEntry 1 }
cienaCesBenchmarkEmixSequenceName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..46))
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Name of this EMIX sequence"
::= { cienaCesBenchmarkEmixSequenceEntry 2 }
cienaCesBenchmarkEmixSequence OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..16))
MAX-ACCESS read-create
STATUS current
DESCRIPTION "EMIX sequence which is a sequence of up to
16 letters from the following set, that can
be repeated, where each letter is associated with
the frame size below it:
a b c d e f g h u v w x
64 128 256 512 1024 1280 1518 MTU custom 84 68 88
The u frame size is user configurable via the
cienaCesBenchmarkEmixSequenceUFrameSize attribute
while the h frame size is the maximum frame size
configured at the entity level. If the h frame size is
not configured at the entity level, h takes the value of
the maximum frame size of the port under test.
Letter v is the minimum frame size for IPv6 untagged or dot1q
test frames, w is the minimum for IPv4 qinq test frames, and
x is the minimum for IPv6 qinq test frames.
The EMIX character set is available via table
cienaCesBenchmarkEmixCharacterSetTable."
::= { cienaCesBenchmarkEmixSequenceEntry 3 }
cienaCesBenchmarkEmixSequenceUFrameSize OBJECT-TYPE
SYNTAX Integer32 (64..9216)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The frame size associated with the u letter
in the given sequence. The default value is
594."
::= { cienaCesBenchmarkEmixSequenceEntry 4 }
cienaCesBenchmarkEmixSequenceNumOfRef OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of generator test profiles currently
using this EMIX sequence for testing.
If this is the default EMIX sequence
set in the generator, that also count
as one reference."
::= { cienaCesBenchmarkEmixSequenceEntry 5 }
cienaCesBenchmarkEmixSequenceUserCreated OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Flag indicating whether this sequence was
created by the user or by the system at
initialization. Only user created sequences
are editable."
::= { cienaCesBenchmarkEmixSequenceEntry 6 }
cienaCesBenchmarkEmixSequenceRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Used to manage the creation and deletion of the
conceptual rows in this table. To create a row in
this table, set this object to 'createAndGo'.
To delete a row in this table, set this object to
'destroy'. If the entry exists, it is displayed
as 'active'."
::= { cienaCesBenchmarkEmixSequenceEntry 7 }
---
--- EMIX Sequence Frame Size Table per Entity
---
cienaCesBenchmarkEmixFrameSizeTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesBenchmarkEmixFrameSizeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table providing the list of frame sizes associated
with the specified EMIX sequence Id."
::= { cienaCesBenchmarkModule 5 }
cienaCesBenchmarkEmixFrameSizeEntry OBJECT-TYPE
SYNTAX CienaCesBenchmarkEmixFrameSizeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Frame size associated with given EMIX
sequence ID and frame size index on a given Entity"
INDEX { cienaCesBenchmarkEntityEntryId,
cienaCesBenchmarkEmixSequenceId,
cienaCesBenchmarkEmixFrameSizeIndex }
::= { cienaCesBenchmarkEmixFrameSizeTable 1 }
CienaCesBenchmarkEmixFrameSizeEntry ::= SEQUENCE {
cienaCesBenchmarkEmixFrameSizeIndex Integer32,
cienaCesBenchmarkEmixFrameSizeEntryFrameSize Integer32
}
cienaCesBenchmarkEmixFrameSizeIndex OBJECT-TYPE
SYNTAX Integer32 (1..16)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index of frame size in array of frame sizes
for the given EMIX sequence."
::= { cienaCesBenchmarkEmixFrameSizeEntry 1 }
cienaCesBenchmarkEmixFrameSizeEntryFrameSize OBJECT-TYPE
SYNTAX Integer32 (64..9216)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Frame size associated with the letter at the
position given by cienaCesBenchmarkEmixFrameSizeIndex
in the EMIX sequence with Id
cienaCesBenchmarkEmixSequenceId."
::= { cienaCesBenchmarkEmixFrameSizeEntry 2 }
---
--- EMIX Sequence Average Frame Size per Generator Entity
---
cienaCesBenchmarkEmixAvgFrameSizeTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesBenchmarkEmixAvgFrameSizeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table providing the average frame size associated
with the specified EMIX sequence Id on a given Entity."
::= { cienaCesBenchmarkModule 6 }
cienaCesBenchmarkEmixAvgFrameSizeEntry OBJECT-TYPE
SYNTAX CienaCesBenchmarkEmixAvgFrameSizeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Average frame size associated with given EMIX
sequence ID and Entity. Only valid for Generator
entities."
INDEX { cienaCesBenchmarkEntityEntryId,
cienaCesBenchmarkEmixSequenceId }
::= { cienaCesBenchmarkEmixAvgFrameSizeTable 1 }
CienaCesBenchmarkEmixAvgFrameSizeEntry ::= SEQUENCE {
cienaCesBenchmarkEmixAvgFrameSize Integer32
}
cienaCesBenchmarkEmixAvgFrameSize OBJECT-TYPE
SYNTAX Integer32 (64..9216)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average frame size for the EMIX sequence with
Id cienaCesBenchmarkEmixSequenceId on the
generator entity with Id cienaCesBenchmarkEntityEntryId."
::= { cienaCesBenchmarkEmixAvgFrameSizeEntry 1 }
---
--- KPI Profile Table
---
cienaCesBenchmarkKpiProfileTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesBenchmarkKpiProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table providing the list of configured Key Performance
Indicator profiles on this node."
::= { cienaCesBenchmarkModule 7 }
cienaCesBenchmarkKpiProfileEntry OBJECT-TYPE
SYNTAX CienaCesBenchmarkKpiProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Hw session allocation entry."
INDEX { cienaCesBenchmarkKpiProfileId }
::= { cienaCesBenchmarkKpiProfileTable 1 }
CienaCesBenchmarkKpiProfileEntry ::= SEQUENCE {
cienaCesBenchmarkKpiProfileId Integer32,
cienaCesBenchmarkKpiProfileName DisplayString,
cienaCesBenchmarkKpiProfileNumOfRef Integer32,
cienaCesBenchmarkKpiProfileRowStatus RowStatus
}
cienaCesBenchmarkKpiProfileId OBJECT-TYPE
SYNTAX Integer32 (1..32)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique Id of the KPI profile entry"
::= { cienaCesBenchmarkKpiProfileEntry 1 }
cienaCesBenchmarkKpiProfileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..46))
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Name of a the KPI profile"
::= { cienaCesBenchmarkKpiProfileEntry 2 }
cienaCesBenchmarkKpiProfileNumOfRef OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of generator test profiles currently
using this KPI profile for results analysis.
If this is the default KPI profile set in
the generator, that also count as one reference."
::= { cienaCesBenchmarkKpiProfileEntry 3 }
cienaCesBenchmarkKpiProfileRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Used to manage the creation and deletion of the
conceptual rows in this table. To create a row in
this table, set this object to 'createAndGo'.
To delete a row in this table, set this object to
'destroy'. If the entry exists, it is displayed
as 'active'."
::= { cienaCesBenchmarkKpiProfileEntry 4 }
---
--- KPI value per PCP per Color Table
---
cienaCesBenchmarkKpiPcpColorTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesBenchmarkKpiPcpColorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table providing the list of configured Key Performance
Indicator per KPI profile, per PCP and per Color."
::= { cienaCesBenchmarkModule 8 }
cienaCesBenchmarkKpiPcpColorEntry OBJECT-TYPE
SYNTAX CienaCesBenchmarkKpiPcpColorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for the KPI values for the given KPI profile,
PCP and color."
INDEX { cienaCesBenchmarkKpiProfileId,
cienaCesBenchmarkKpiPcpIndex,
cienaCesBenchmarkKpiColorIndex }
::= { cienaCesBenchmarkKpiPcpColorTable 1 }
CienaCesBenchmarkKpiPcpColorEntry ::= SEQUENCE {
cienaCesBenchmarkKpiPcpIndex Integer32,
cienaCesBenchmarkKpiColorIndex Integer32,
cienaCesBenchmarkKpiPcp Integer32,
cienaCesBenchmarkKpiColor CienaCesBenchmarkColorTest,
cienaCesBenchmarkKpiThroughput CienaCesBenchmarkThroughputKpiPercent,
cienaCesBenchmarkKpiFrameloss CienaCesBenchmarkFramelossKpiPercent,
cienaCesBenchmarkKpiLatency Integer32,
cienaCesBenchmarkKpiPdv Integer32
}
cienaCesBenchmarkKpiPcpIndex OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index for the PCP"
::= { cienaCesBenchmarkKpiPcpColorEntry 1 }
cienaCesBenchmarkKpiColorIndex OBJECT-TYPE
SYNTAX Integer32 (1..2)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index for the PCP"
::= { cienaCesBenchmarkKpiPcpColorEntry 2 }
cienaCesBenchmarkKpiPcp OBJECT-TYPE
SYNTAX Integer32 (0..7)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "PCP value associated with this entry"
::= { cienaCesBenchmarkKpiPcpColorEntry 3 }
cienaCesBenchmarkKpiColor OBJECT-TYPE
SYNTAX CienaCesBenchmarkColorTest
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Traffic color, green or yellow, associated with these
KPIs."
::= { cienaCesBenchmarkKpiPcpColorEntry 4 }
cienaCesBenchmarkKpiThroughput OBJECT-TYPE
SYNTAX CienaCesBenchmarkThroughputKpiPercent
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Throughput KPI for the given KPI profile, PCP and color
expressed in percent of bandwidth * 10000 to provide a 4
decimal point value."
::= { cienaCesBenchmarkKpiPcpColorEntry 5 }
cienaCesBenchmarkKpiFrameloss OBJECT-TYPE
SYNTAX CienaCesBenchmarkFramelossKpiPercent
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Frameloss KPI for the given KPI profile, PCP and color
expressed in percent of bandwidth * 10000 to provide a 4
decimal point value."
::= { cienaCesBenchmarkKpiPcpColorEntry 6 }
cienaCesBenchmarkKpiLatency OBJECT-TYPE
SYNTAX Integer32
UNITS "microseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Maximum latency in micro-seconds that the latency result
should not exceed in order for the test to be considered
a pass."
::= { cienaCesBenchmarkKpiPcpColorEntry 7 }
cienaCesBenchmarkKpiPdv OBJECT-TYPE
SYNTAX Integer32
UNITS "microseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Maximum PDV in micro-seconds that the PDV test result
should not exceed in order for the test to be
considered a pass."
::= { cienaCesBenchmarkKpiPcpColorEntry 8 }
---
--- Bandwidth Allocation Profile Table
---
cienaCesBenchmarkBwAllocProfileTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesBenchmarkBwAllocProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table providing the list of configured bandwidth
allocation profiles on this node."
::= { cienaCesBenchmarkModule 9 }
cienaCesBenchmarkBwAllocProfileEntry OBJECT-TYPE
SYNTAX CienaCesBenchmarkBwAllocProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"BW allocation profile entry"
INDEX { cienaCesBenchmarkBwAllocProfileId }
::= { cienaCesBenchmarkBwAllocProfileTable 1 }
CienaCesBenchmarkBwAllocProfileEntry ::= SEQUENCE {
cienaCesBenchmarkBwAllocProfileId Integer32,
cienaCesBenchmarkBwAllocProfileName DisplayString,
cienaCesBenchmarkBwAllocProfileNumOfRef Integer32,
cienaCesBenchmarkBwAllocProfileRowStatus RowStatus
}
cienaCesBenchmarkBwAllocProfileId OBJECT-TYPE
SYNTAX Integer32 (1..32)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique Id of the bandwidth allocation
profile entry"
::= { cienaCesBenchmarkBwAllocProfileEntry 1 }
cienaCesBenchmarkBwAllocProfileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..46))
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Name of a the bandwidth allocation
profile"
::= { cienaCesBenchmarkBwAllocProfileEntry 2 }
cienaCesBenchmarkBwAllocProfileNumOfRef OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of generator test profiles currently
using this bandwidth allocation profile
for testing.
If this is the default BW allocation
profile set in the generator, that also count
as one reference."
::= { cienaCesBenchmarkBwAllocProfileEntry 3 }
cienaCesBenchmarkBwAllocProfileRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Used to manage the creation and deletion of the
conceptual rows in this table. To create a row in
this table, set this object to 'createAndGo'.
To delete a row in this table, set this object to
'destroy'. If the entry exists, it is displayed
as 'active'."
::= { cienaCesBenchmarkBwAllocProfileEntry 4 }
---
--- BW allocation value per profile per PCP
---
cienaCesBenchmarkBwRatioTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesBenchmarkBwRatioEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table providing the list of configured bandwidth
ratio per profile, per PCP."
::= { cienaCesBenchmarkModule 10 }
cienaCesBenchmarkBwRatioEntry OBJECT-TYPE
SYNTAX CienaCesBenchmarkBwRatioEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for bandwidth percent per BW Allocation
profile and PCP"
INDEX { cienaCesBenchmarkBwAllocProfileId,
cienaCesBenchmarkBwRatioPcpIndex }
::= { cienaCesBenchmarkBwRatioTable 1 }
CienaCesBenchmarkBwRatioEntry ::= SEQUENCE {
cienaCesBenchmarkBwRatioPcpIndex Integer32,
cienaCesBenchmarkBwRatioPcp Integer32,
cienaCesBenchmarkBwRatio Integer32
}
cienaCesBenchmarkBwRatioPcpIndex OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index for the PCP"
::= { cienaCesBenchmarkBwRatioEntry 1 }
cienaCesBenchmarkBwRatioPcp OBJECT-TYPE
SYNTAX Integer32 (0..7)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "PCP value associated with this entry."
::= { cienaCesBenchmarkBwRatioEntry 2 }
cienaCesBenchmarkBwRatio OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Ratio of test bandwidth to allocate to the
test session with this PCP value."
::= { cienaCesBenchmarkBwRatioEntry 3 }
--
-- BENCHMARK Profile table
--
cienaCesBenchmarkProfileTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesBenchmarkProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of profile entries."
::= { cienaCesBenchmarkModule 11 }
cienaCesBenchmarkProfileEntry OBJECT-TYPE
SYNTAX CienaCesBenchmarkProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"BENCHMARK Profile characteristics."
INDEX { cienaCesBenchmarkProfileEntryId }
::= { cienaCesBenchmarkProfileTable 1 }
CienaCesBenchmarkProfileEntry ::= SEQUENCE {
cienaCesBenchmarkProfileEntryId Integer32,
cienaCesBenchmarkProfileEntryName DisplayString,
-- Configuration parameters
cienaCesBenchmarkProfileEntryBandwidth Integer32,
cienaCesBenchmarkProfileEntryExcessBandwidth Integer32,
cienaCesBenchmarkProfileEntryInterval INTEGER,
cienaCesBenchmarkProfileEntryDuration INTEGER,
cienaCesBenchmarkProfileEntrySetFrameSizeList DisplayString,
cienaCesBenchmarkProfileEntryMaxSearches Integer32,
cienaCesBenchmarkProfileEntryMaxSamples Integer32,
cienaCesBenchmarkProfileEntrySamplingInterval Integer32,
cienaCesBenchmarkProfileEntryFrameLossStartBw INTEGER,
cienaCesBenchmarkProfileEntryVidValidation TruthValue,
cienaCesBenchmarkProfileEntryPcpValidation TruthValue,
cienaCesBenchmarkProfileEntryColorValidation TruthValue,
cienaCesBenchmarkProfileEntryKpiProfileId Integer32,
cienaCesBenchmarkProfileEntryBwAllocProfileId Integer32,
cienaCesBenchmarkProfileEntryEmixSequenceId Integer32,
-- Payload parameters
cienaCesBenchmarkProfileEntryEncapType INTEGER,
cienaCesBenchmarkProfileEntryPduType INTEGER,
cienaCesBenchmarkProfileEntryDstmac MacAddress,
cienaCesBenchmarkProfileEntrySVid Integer32,
cienaCesBenchmarkProfileEntrySPcp CienaCesBenchmarkPcpBitmap,
cienaCesBenchmarkProfileEntrySColor CienaCesBenchmarkColorTest,
cienaCesBenchmarkProfileEntryCVid Integer32,
cienaCesBenchmarkProfileEntryCPcp CienaCesBenchmarkPcpBitmap,
cienaCesBenchmarkProfileEntryCColor CienaCesBenchmarkColorTest,
cienaCesBenchmarkProfileEntryTpid Integer32,
cienaCesBenchmarkProfileEntryDscp Integer32,
cienaCesBenchmarkProfileEntrySrcInetAddrType InetAddressType,
cienaCesBenchmarkProfileEntrySrcInetAddr InetAddress,
cienaCesBenchmarkProfileEntryDstInetAddrType InetAddressType,
cienaCesBenchmarkProfileEntryDstInetAddr InetAddress,
cienaCesBenchmarkProfileEntryCustomPayload OCTET STRING,
-- Traffic test parameters
cienaCesBenchmarkProfileEntryThroughputTest TruthValue,
cienaCesBenchmarkProfileEntryFramelossTest TruthValue,
cienaCesBenchmarkProfileEntryLatencyTest TruthValue,
cienaCesBenchmarkProfileEntryPdvTest TruthValue,
cienaCesBenchmarkProfileEntryBurstTest TruthValue,
cienaCesBenchmarkProfileEntryRfc2544Suite TruthValue,
cienaCesBenchmarkProfileEntryY1564Test TruthValue,
-- Operational status
cienaCesBenchmarkProfileEntryHwSessionsRequired Integer32,
cienaCesBenchmarkProfileEntryNumOfRef Integer32,
cienaCesBenchmarkProfileEntryRowStatus RowStatus
}
cienaCesBenchmarkProfileEntryId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index for BENCHMARK profile records."
::= { cienaCesBenchmarkProfileEntry 1 }
cienaCesBenchmarkProfileEntryName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..46))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of the profile as entered when created."
::= { cienaCesBenchmarkProfileEntry 2 }
cienaCesBenchmarkProfileEntryBandwidth OBJECT-TYPE
SYNTAX Integer32 (1..10000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Maximum bandwidth to use when generating green test
traffic for the profile."
::= { cienaCesBenchmarkProfileEntry 3 }
cienaCesBenchmarkProfileEntryExcessBandwidth OBJECT-TYPE
SYNTAX Integer32 (0..10000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Maximum bandwidth to use when generating yellow test
traffic for the profile. When testing for red color,
this bandwidth is multiplied by 1.25"
DEFVAL { 0 }
::= { cienaCesBenchmarkProfileEntry 4 }
cienaCesBenchmarkProfileEntryInterval OBJECT-TYPE
SYNTAX INTEGER {
t15min(1),
t1hr(2),
t6hr(3),
tCompletion(4),
t2hr(5)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Interval between the start of one test group to the start
of the next test group."
DEFVAL { tCompletion }
::= { cienaCesBenchmarkProfileEntry 5 }
cienaCesBenchmarkProfileEntryDuration OBJECT-TYPE
SYNTAX INTEGER {
t15min(1),
t1hr(2),
t6hr(3),
t24hr(4),
tIndefinite(5),
tOnce(6)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Duration of the testing. The test group is repeated until
the duration ends. When indefinite is set, test group is
run only once to completion"
DEFVAL { tOnce }
::= { cienaCesBenchmarkProfileEntry 6 }
cienaCesBenchmarkProfileEntrySetFrameSizeList OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Used to replace the existing frame size table with the specified list.
More than one values can be listed and are separated by commas."
::= { cienaCesBenchmarkProfileEntry 7 }
cienaCesBenchmarkProfileEntryMaxSearches OBJECT-TYPE
SYNTAX Integer32 (1..16)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"For the throughput test, this is the maximum number of
searches to find a transmit rate without drops for a
given frame size."
DEFVAL { 7 }
::= { cienaCesBenchmarkProfileEntry 8 }
cienaCesBenchmarkProfileEntryMaxSamples OBJECT-TYPE
SYNTAX Integer32 (2..20)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"For the latency and PDV tests, this is the number of
samples to take in order to determine the min, avg
and max latency and avg PDV."
DEFVAL { 10 }
::= { cienaCesBenchmarkProfileEntry 9 }
cienaCesBenchmarkProfileEntrySamplingInterval OBJECT-TYPE
SYNTAX Integer32 (1..600)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"For the latency and PDV tests, this is the interval,
in 100ms, to wait between samples."
DEFVAL { 1 }
::= { cienaCesBenchmarkProfileEntry 10 }
cienaCesBenchmarkProfileEntryFrameLossStartBw OBJECT-TYPE
SYNTAX INTEGER {
profileBandwidth(1),
maximumThroughput(2),
maximumLineRate(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"For the frame loss test, this indicates which bandwidth
value to use as the starting bandwidth; the maximum
bandwidth determined via the throughput test, the
bandwidth parameter configured in the profile, or
the maximum bandwidth of the link.
The value maximumLineRate(3) is not supported."
DEFVAL { maximumThroughput }
::= { cienaCesBenchmarkProfileEntry 11 }
cienaCesBenchmarkProfileEntryVidValidation OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates whether VID validation is performed in
the classifier or not on the returning packet. If vid
validation is set to false, PCP and Color validation are
ignored and automatically become false."
DEFVAL { true }
::= { cienaCesBenchmarkProfileEntry 12 }
cienaCesBenchmarkProfileEntryPcpValidation OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Used to indicate whether the PCP value of the
test packet should be used to classifier the reflected
packets or not. When color remarking is used, this should
be set to false. Default is true."
DEFVAL { true }
::= { cienaCesBenchmarkProfileEntry 13 }
cienaCesBenchmarkProfileEntryColorValidation OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Used to indicate whether the color bit of the
test packet should be used to classifier the reflected
packets or not. In color unaware testing, this should
be set to false. Default is true."
DEFVAL { true }
::= { cienaCesBenchmarkProfileEntry 14 }
cienaCesBenchmarkProfileEntryKpiProfileId OBJECT-TYPE
SYNTAX Integer32 (0..32)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Name of a valid KPI profile, from the
cienaCesBenchmarkKpiProfileTable, to use when
analysing the test results for this profile."
::= { cienaCesBenchmarkProfileEntry 15 }
cienaCesBenchmarkProfileEntryBwAllocProfileId OBJECT-TYPE
SYNTAX Integer32 (0..32)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Id of a valid Bandwidth Allocation profile,
from the cienaCesBenchmarkBwAllocProfileTable,
used for distributing the profile bandwidth amongst
the configured PCP values for this profile when running
tests."
::= { cienaCesBenchmarkProfileEntry 16 }
cienaCesBenchmarkProfileEntryEmixSequenceId OBJECT-TYPE
SYNTAX Integer32 (0..32)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Id of a valid EMIX sequence configured in the
cienaCesBenchmarkEmixSequenceTable, to use when y1564
is selected. The EMIX sequence is used instead of the
frame size list if and only if y1564 is selected."
::= { cienaCesBenchmarkProfileEntry 17 }
cienaCesBenchmarkProfileEntryEncapType OBJECT-TYPE
SYNTAX INTEGER {
untagged(1),
dot1q(2),
qinq(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Encapsulation type to use for generated packets."
DEFVAL { untagged }
::= { cienaCesBenchmarkProfileEntry 18 }
cienaCesBenchmarkProfileEntryPduType OBJECT-TYPE
SYNTAX INTEGER {
ethernet(1),
ip(2),
udpecho(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Vlan tag protocol identifier to use for the generated packets."
DEFVAL { ethernet }
::= { cienaCesBenchmarkProfileEntry 19 }
cienaCesBenchmarkProfileEntryDstmac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"MAC address to use as the destination MAC address on
the generated packets."
::= { cienaCesBenchmarkProfileEntry 20 }
cienaCesBenchmarkProfileEntrySVid OBJECT-TYPE
SYNTAX Integer32 (0..4094)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"S-VLAN ID to used for generated packets when encapType is set to QinQ"
::= { cienaCesBenchmarkProfileEntry 21 }
cienaCesBenchmarkProfileEntrySPcp OBJECT-TYPE
SYNTAX CienaCesBenchmarkPcpBitmap
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Bitmap of the S-VLAN PCP (Priority Code Point) value to
test with. When RFC2544 test is enabled, only one
PCP can be set in the mask. Otherwise, a test session
will be run for each PCP bit set. Used when the encapType
set to QinQ"
DEFVAL { pcp0 }
::= { cienaCesBenchmarkProfileEntry 22 }
cienaCesBenchmarkProfileEntrySColor OBJECT-TYPE
SYNTAX CienaCesBenchmarkColorTest
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Color of the S-VLAN tag for the test traffic. This is
directly related to the value of the DEI bit
configured in the VLAN tag of the test traffic. Green
traffic will have its DEI bit set to 0 while Yellow
traffic will have its DEI bit set to 1.
Green test traffic is generated based on the bandwidth
configured in the test profile. Yellow traffic is
generated based on the excess-bandwidth parameter.
Finally, if the user selects green-yellow-red, the
yellow traffic is generated at 1.25 * excess-bandwidth.
This is used only when encapType is set to QinQ"
::= { cienaCesBenchmarkProfileEntry 23 }
cienaCesBenchmarkProfileEntryCVid OBJECT-TYPE
SYNTAX Integer32 (0..4094)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"C-VLAN ID to used for generated packets when encapType is set to
QinQ or dot1q."
::= { cienaCesBenchmarkProfileEntry 24 }
cienaCesBenchmarkProfileEntryCPcp OBJECT-TYPE
SYNTAX CienaCesBenchmarkPcpBitmap
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Bitmap of the C-VLAN PCP (Priority Code Point) value to
test with. When RFC2544 test is enabled, only one
PCP can be set in the mask. Otherwise, a test session
will be run for each PCP bit set. Only used when the
encapType is set to dot1q. In the QinQ type, the c-pcp
of the test packet takes the same value as the s-pcp to
simplify software."
DEFVAL { pcp0 }
::= { cienaCesBenchmarkProfileEntry 25 }
cienaCesBenchmarkProfileEntryCColor OBJECT-TYPE
SYNTAX CienaCesBenchmarkColorTest
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Color of the C-VLAN tag for the test traffic. This is
directly related to the value of the DEI bit
configured in the VLAN tag of the test traffic. Green
traffic will have its DEI bit set to 0 while Yellow
traffic will have its DEI bit set to 1.
Green test traffic is generated based on the bandwidth
configured in the test profile. Yellow traffic is
generated based on the excess-bandwidth parameter.
Finally, if the user selects green-yellow-red, the
yellow traffic is generated at 1.25 * excess-bandwidth.
This is used only when encapType is set to dot1q.
In a QinQ configuration, the c-dei bit is set to the
same value as the s-dei bit in order to simplify
software."
::= { cienaCesBenchmarkProfileEntry 26 }
cienaCesBenchmarkProfileEntryTpid OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Vlan tag protocol identifier to use for the generated packets.
The following TPID values are supported by benchmark:
0x8100
0x9100
0x88A8"
DEFVAL { 33024 }
::= { cienaCesBenchmarkProfileEntry 27 }
cienaCesBenchmarkProfileEntryDscp OBJECT-TYPE
SYNTAX Integer32 (0..63)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"IP DSCP value to use for the generated packets."
DEFVAL { 0 }
::= { cienaCesBenchmarkProfileEntry 28 }
cienaCesBenchmarkProfileEntrySrcInetAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the type of address cienaCesBenchmarkProfileEntrySrcInetAddr belongs to.
When set to:
ipv4 : cienaCesBenchmarkProfileEntrySrcInetAddr should be compliant with
InetAddressIPv4 from RFC 4001
ipv6 : cienaCesBenchmarkProfileEntrySrcInetAddr should be compliant with
InetAddressIPv6 from RFC 4001.
The InetAddressType and the InetAddress must be set as part of the same SNMP
SET request."
::= { cienaCesBenchmarkProfileEntry 29 }
cienaCesBenchmarkProfileEntrySrcInetAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the unicast source IP address to use in IP test packet.
The InetAddress specified here is compliant with RFC 4001.
The InetAddressType and the InetAddress must be set as part of the same SNMP
SET request."
::= { cienaCesBenchmarkProfileEntry 30 }
cienaCesBenchmarkProfileEntryDstInetAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the type of address cienaCesBenchmarkProfileEntryDstInetAddr belongs to.
When set to:
ipv4 : cienaCesBenchmarkProfileEntryDstInetAddr should be compliant with
InetAddressIPv4 from RFC 4001
ipv6 : cienaCesBenchmarkProfileEntryDstInetAddr should be compliant with
InetAddressIPv6 from RFC 4001.
The InetAddressType and the InetAddress must be set as part of the same SNMP
SET request."
::= { cienaCesBenchmarkProfileEntry 31 }
cienaCesBenchmarkProfileEntryDstInetAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the unicast destination IP address to use in IP test packet.
The InetAddress specified here is compliant with RFC 4001.
The InetAddressType and the InetAddress must be set as part of the same SNMP
SET request."
::= { cienaCesBenchmarkProfileEntry 32 }
cienaCesBenchmarkProfileEntryCustomPayload OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..256))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Custom payload to be used on the generated packets."
::= { cienaCesBenchmarkProfileEntry 33 }
cienaCesBenchmarkProfileEntryThroughputTest OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Run throughput test"
DEFVAL { false }
::= { cienaCesBenchmarkProfileEntry 34 }
cienaCesBenchmarkProfileEntryFramelossTest OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Run frame loss test"
DEFVAL { false }
::= { cienaCesBenchmarkProfileEntry 35 }
cienaCesBenchmarkProfileEntryLatencyTest OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Run latency test"
DEFVAL { false }
::= { cienaCesBenchmarkProfileEntry 36 }
cienaCesBenchmarkProfileEntryPdvTest OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Run packet delay variation test"
DEFVAL { false }
::= { cienaCesBenchmarkProfileEntry 37 }
cienaCesBenchmarkProfileEntryBurstTest OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Run packet burst test"
::= { cienaCesBenchmarkProfileEntry 38 }
cienaCesBenchmarkProfileEntryRfc2544Suite OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Run RFC2544 test suite which includes throughput, frame
loss and latency tests"
DEFVAL { false }
::= { cienaCesBenchmarkProfileEntry 39 }
cienaCesBenchmarkProfileEntryY1564Test OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The Y1564 test includes the throughput, frameloss,
latency and PDV tests are is run using the configured
EMIX sequence. If the profile's EMIX sequence is
not configured, the default generator EMIX sequence is
used. Y1564 and RFC2544 are mutually exclusive."
DEFVAL { false }
::= { cienaCesBenchmarkProfileEntry 40 }
cienaCesBenchmarkProfileEntryHwSessionsRequired OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This represents the number of hardware sessions
required to enable/run a test instance using
this profile according to the profile's current
configuration.
One hardware session is required for each outer tag
PCP and color configured.
Ex 1) Encap type set to dot1q, c-pcp is 0,3 and
c-color is set to green, 2 PCPs * 1 color =
2 hw sessions.
Ex 2) Encap type set to qinq, s-pcp is 0,4,5 and
s-color is set to green-yellow, then you
need 3 PCPs * 2 colors = 6 hw sessions.
Ex 3) Encap type set to untagged, only 1 hw session
is required."
::= { cienaCesBenchmarkProfileEntry 41 }
cienaCesBenchmarkProfileEntryNumOfRef OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of generator test instances currently
using this test profile for testing."
::= { cienaCesBenchmarkProfileEntry 42 }
cienaCesBenchmarkProfileEntryRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Used to manage the creation and deletion of the
conceptual rows in this table. To create a row in
this table, set this object to 'createAndGo'.
To delete a row in this table, set this object to
'destroy'. If the entry exists, it is displayed
as 'active'."
::= { cienaCesBenchmarkProfileEntry 43 }
--
-- Test Instance Table
--
cienaCesBenchmarkTestInstanceTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesBenchmarkTestInstanceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of test instance entries."
::= { cienaCesBenchmarkModule 12 }
cienaCesBenchmarkTestInstanceEntry OBJECT-TYPE
SYNTAX CienaCesBenchmarkTestInstanceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"BENCHMARK test instance characteristics."
INDEX { cienaCesBenchmarkTestInstanceEntryId }
::= { cienaCesBenchmarkTestInstanceTable 1 }
CienaCesBenchmarkTestInstanceEntry ::= SEQUENCE {
cienaCesBenchmarkTestInstanceEntryId Integer32,
cienaCesBenchmarkTestInstanceEntryName DisplayString,
cienaCesBenchmarkTestInstanceEntrySubPortId Integer32,
cienaCesBenchmarkTestInstanceEntryProfileId Integer32,
cienaCesBenchmarkTestInstanceEntrySvid Integer32,
cienaCesBenchmarkTestInstanceEntryCvid Integer32,
cienaCesBenchmarkTestInstanceEntryUntagged TruthValue,
cienaCesBenchmarkTestInstanceEntryDstMac MacAddress,
cienaCesBenchmarkTestInstanceEntryAdminState CienaCesBenchmarkAdminState,
cienaCesBenchmarkTestInstanceEntryStarted TruthValue,
cienaCesBenchmarkTestInstanceEntryCurrentInterval Integer32,
cienaCesBenchmarkTestInstanceEntryTotalIntervals Integer32,
cienaCesBenchmarkTestInstanceEntryLastIterStart DateAndTime,
cienaCesBenchmarkTestInstanceEntryClearStats TruthValue,
cienaCesBenchmarkTestInstanceEntryRowStatus RowStatus,
cienaCesBenchmarkTestInstanceEntryAssocEntityId Integer32
}
cienaCesBenchmarkTestInstanceEntryId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Unique identifier for the test instance."
::= { cienaCesBenchmarkTestInstanceEntry 1 }
cienaCesBenchmarkTestInstanceEntryName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..46))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Unique name given to the test instance at creation time."
::= { cienaCesBenchmarkTestInstanceEntry 2 }
cienaCesBenchmarkTestInstanceEntrySubPortId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ID of the sub-port to base this test instance on. The sub-port has
to be a child of the port under test associated with an existing
entity."
::= { cienaCesBenchmarkTestInstanceEntry 3 }
cienaCesBenchmarkTestInstanceEntryProfileId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Id of an existing test profile to be used with the test instance as
the template for testing. A test profile ID has to be specified if
this test instance is associated with a generator entity. If it's a
reflector test instance, a profile ID CANNOT be specified, it has
to remain set 0."
::= { cienaCesBenchmarkTestInstanceEntry 4 }
cienaCesBenchmarkTestInstanceEntrySvid OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"S VLAN ID to use for testing.
For generator test instances, this over-writes the value defined in
the referenced test profile if applicable (encap-type set to qinq).
For reflector test instances, this has to be set to a valid s-vid
accepted by the associated sub-port. A value of 0xFFFF indicates ANY s-vid.
A value of 0 indicates untagged or single-tagged traffic."
::= { cienaCesBenchmarkTestInstanceEntry 5 }
cienaCesBenchmarkTestInstanceEntryCvid OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"C VLAN ID to use for testing.
For generator test instances, this over-writes the value defined in the
referenced test profile if applicable (encap-type set to dot1q or qinq).
For reflector test instances, this has to be set to a valid c-vid
accepted by the associated sub-port. A value of 0xFFFF indicates ANY
c-vid, while a value of 0 indicates untagged (s-vid also has to be set
to 0)."
::= { cienaCesBenchmarkTestInstanceEntry 6 }
cienaCesBenchmarkTestInstanceEntryUntagged OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"When set to true, this indicates that the test instance
is to be associated with untagged data traffic. When this
is set, the cvid and svid parameters must be 0."
::= { cienaCesBenchmarkTestInstanceEntry 7 }
cienaCesBenchmarkTestInstanceEntryDstMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Destination MAC address to use for generator test instances. When set,
this over writes the value specified in the referenced test profile.
This field is not applicable for reflector test instances."
::= { cienaCesBenchmarkTestInstanceEntry 8 }
cienaCesBenchmarkTestInstanceEntryAdminState OBJECT-TYPE
SYNTAX CienaCesBenchmarkAdminState
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the administrative state of the test instance. Upon enabling
a test instance, resources are allocated in hardware. For reflector test
instances, this triggers the start of reflection of any test traffic
received that matches the specified svid:cvid combination on the
specified sub-port."
::= { cienaCesBenchmarkTestInstanceEntry 9 }
cienaCesBenchmarkTestInstanceEntryStarted OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Applicable to generator test instances, this indicates whether testing is
in progress or not. Setting this attribute to true will initiate
testing."
::= { cienaCesBenchmarkTestInstanceEntry 10 }
cienaCesBenchmarkTestInstanceEntryCurrentInterval OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Applicable to generator test instances, this indicates the
number of intervals of the selected tests have been run,
including the current one, in relation to the total number of
intervals to complete. This is based on the profile's
interval and duration configured."
::= { cienaCesBenchmarkTestInstanceEntry 11 }
cienaCesBenchmarkTestInstanceEntryTotalIntervals OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Applicable to generator test instances, this indicates the
total number of intervals of the selected tests to be run
by a single start command on the test instance. This is
based on the profile's interval and duration configured.
A value of 0 should be interpreted as unknown and -1 as
indefinite."
::= { cienaCesBenchmarkTestInstanceEntry 12 }
cienaCesBenchmarkTestInstanceEntryLastIterStart OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Date and time of the last iteration that started since the
last time the system was rebooted or the statistics were
cleared on the test instance."
::= { cienaCesBenchmarkTestInstanceEntry 13 }
cienaCesBenchmarkTestInstanceEntryClearStats OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Set to true to clear the results and counters for the
test instance."
::= { cienaCesBenchmarkTestInstanceEntry 14 }
cienaCesBenchmarkTestInstanceEntryRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Used to manage the creation and deletion of the conceptual rows in this table.
To create a row in this table, set this object to 'createAndGo'.
To delete a row in this table, set this object to 'destroy'.
If the entry exists, it is displayed as 'active'."
::= { cienaCesBenchmarkTestInstanceEntry 15 }
cienaCesBenchmarkTestInstanceEntryAssocEntityId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ID of the entity this test instance is associated with
(cienaCesBenchmarkEntityEntryId)"
::= { cienaCesBenchmarkTestInstanceEntry 16 }
---
--- Generator Test Session Allocation and Status Table
---
cienaCesBenchmarkGenTestSessionAllocationTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesBenchmarkGenTestSessionAllocationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table providing the allocation of hw test session per
generator test instance Id, PCP and color."
::= { cienaCesBenchmarkModule 13 }
cienaCesBenchmarkGenTestSessionAllocationEntry OBJECT-TYPE
SYNTAX CienaCesBenchmarkGenTestSessionAllocationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Test session (aka hardware session) allocation entry.
SPECIAL NOTE: It is important to know that when the associated
test profile's encapsulation type is set to untagged,
the last two elements of the index (PCP and color) are fixed
at 1.1. The management software needs to query using index
<entidyId>.<testInstandceId>.1.1 in this case, since
PCP and color are irrelevant in the untagged test traffic
scenario."
INDEX { cienaCesBenchmarkEntityEntryId,
cienaCesBenchmarkTestInstanceEntryId,
cienaCesBenchmarkGenTestSessionPcpIndex,
cienaCesBenchmarkGenTestSessionColorIndex }
::= { cienaCesBenchmarkGenTestSessionAllocationTable 1 }
CienaCesBenchmarkGenTestSessionAllocationEntry ::= SEQUENCE {
cienaCesBenchmarkGenTestSessionPcpIndex Integer32,
cienaCesBenchmarkGenTestSessionColorIndex Integer32,
cienaCesBenchmarkGenTestSessionPcp Integer32,
cienaCesBenchmarkGenTestSessionColor CienaCesBenchmarkColorTest,
cienaCesBenchmarkGenTestSessionId Integer32,
cienaCesBenchmarkGenTestSessionEmixSequenceId Integer32,
cienaCesBenchmarkGenTestSessionCurrentPktSize Integer32,
cienaCesBenchmarkGenTestSessionThroughputTestState CienaCesBenchmarkThroughputTestState,
cienaCesBenchmarkGenTestSessionFramelossTestState CienaCesBenchmarkFramelossTestState,
cienaCesBenchmarkGenTestSessionLatencyTestState CienaCesBenchmarkLatencyPdvTestState,
cienaCesBenchmarkGenTestSessionPdvTestState CienaCesBenchmarkLatencyPdvTestState,
cienaCesBenchmarkGenTestSessionRfc2544TestState CienaCesBenchmarkRfc2544TestState,
cienaCesBenchmarkGenTestSessionY1564TestState CienaCesBenchmarkY1564TestState,
cienaCesBenchmarkGenTestSessionCurrentRate Integer32,
cienaCesBenchmarkGenTestSessionSamplesCompleted Integer32
}
cienaCesBenchmarkGenTestSessionPcpIndex OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "PCP Index."
::= { cienaCesBenchmarkGenTestSessionAllocationEntry 1 }
cienaCesBenchmarkGenTestSessionColorIndex OBJECT-TYPE
SYNTAX Integer32 (1..2)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Color Index."
::= { cienaCesBenchmarkGenTestSessionAllocationEntry 2 }
cienaCesBenchmarkGenTestSessionPcp OBJECT-TYPE
SYNTAX Integer32 (0..7)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "PCP value associated with this hw session"
::= { cienaCesBenchmarkGenTestSessionAllocationEntry 3 }
cienaCesBenchmarkGenTestSessionColor OBJECT-TYPE
SYNTAX CienaCesBenchmarkColorTest
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Color of test traffic associated with this hardware
session"
::= { cienaCesBenchmarkGenTestSessionAllocationEntry 4 }
cienaCesBenchmarkGenTestSessionId OBJECT-TYPE
SYNTAX Integer32 (0..127)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Id of the hardware session allocated to the given
test instance id, pcp and color"
::= { cienaCesBenchmarkGenTestSessionAllocationEntry 5 }
cienaCesBenchmarkGenTestSessionEmixSequenceId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "EMIX sequence Id used with this session. If zero,
it indicates that the the frame size list is being used
for the test and cienaCesBenchmarkGenTestSessionCurrentPktSize
indicates which packet size is currently being tested."
::= { cienaCesBenchmarkGenTestSessionAllocationEntry 6 }
cienaCesBenchmarkGenTestSessionCurrentPktSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Packet size in bytes currently used by the running test."
::= { cienaCesBenchmarkGenTestSessionAllocationEntry 7 }
cienaCesBenchmarkGenTestSessionThroughputTestState OBJECT-TYPE
SYNTAX CienaCesBenchmarkThroughputTestState
MAX-ACCESS read-only
STATUS current
DESCRIPTION "State of the throughput test for this hardware session
defined by the test instance id, pcp and color"
::= { cienaCesBenchmarkGenTestSessionAllocationEntry 8 }
cienaCesBenchmarkGenTestSessionFramelossTestState OBJECT-TYPE
SYNTAX CienaCesBenchmarkFramelossTestState
MAX-ACCESS read-only
STATUS current
DESCRIPTION "State of the frameloss test for this hardware session
defined by the test instance id, pcp and color"
::= { cienaCesBenchmarkGenTestSessionAllocationEntry 9 }
cienaCesBenchmarkGenTestSessionLatencyTestState OBJECT-TYPE
SYNTAX CienaCesBenchmarkLatencyPdvTestState
MAX-ACCESS read-only
STATUS current
DESCRIPTION "State of the latency test for this hardware session
defined by the test instance id, pcp and color"
::= { cienaCesBenchmarkGenTestSessionAllocationEntry 10 }
cienaCesBenchmarkGenTestSessionPdvTestState OBJECT-TYPE
SYNTAX CienaCesBenchmarkLatencyPdvTestState
MAX-ACCESS read-only
STATUS current
DESCRIPTION "State of the PDV test for this hardware session
defined by the test instance id, pcp and color"
::= { cienaCesBenchmarkGenTestSessionAllocationEntry 11 }
cienaCesBenchmarkGenTestSessionRfc2544TestState OBJECT-TYPE
SYNTAX CienaCesBenchmarkRfc2544TestState
MAX-ACCESS read-only
STATUS current
DESCRIPTION "State of the RFC2544 test for this hardware session
defined by the test instance id, pcp and color"
::= { cienaCesBenchmarkGenTestSessionAllocationEntry 12 }
cienaCesBenchmarkGenTestSessionY1564TestState OBJECT-TYPE
SYNTAX CienaCesBenchmarkY1564TestState
MAX-ACCESS read-only
STATUS current
DESCRIPTION "State of the Y1564 test for this hardware session
defined by the test instance id, pcp and color"
::= { cienaCesBenchmarkGenTestSessionAllocationEntry 13 }
cienaCesBenchmarkGenTestSessionCurrentRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Traffic rate currently used to generate packets as percent
of the line rate"
::= { cienaCesBenchmarkGenTestSessionAllocationEntry 14 }
cienaCesBenchmarkGenTestSessionSamplesCompleted OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "When latency and/or pdv is running, this indicates how
many samples have been gathered so far."
::= { cienaCesBenchmarkGenTestSessionAllocationEntry 15 }
--
-- Test Instance Stats Table
--
cienaCesBenchmarkTestInstanceStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesBenchmarkTestInstanceStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of test instance packet statistics entries."
::= { cienaCesBenchmarkModule 14 }
cienaCesBenchmarkTestInstanceStatsEntry OBJECT-TYPE
SYNTAX CienaCesBenchmarkTestInstanceStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Benchmark test instance packet statistics"
INDEX { cienaCesBenchmarkEntityEntryId,
cienaCesBenchmarkTestInstanceEntryId }
::= { cienaCesBenchmarkTestInstanceStatsTable 1 }
CienaCesBenchmarkTestInstanceStatsEntry ::= SEQUENCE {
cienaCesBenchmarkTestInstanceStatsRxPkts Counter64,
cienaCesBenchmarkTestInstanceStatsRxIpv4Pkts Counter64,
cienaCesBenchmarkTestInstanceStatsRxIpv4UdpPkts Counter64,
cienaCesBenchmarkTestInstanceStatsRxIpv6Pkts Counter64,
cienaCesBenchmarkTestInstanceStatsRxIpv6UdpPkts Counter64,
cienaCesBenchmarkTestInstanceStatsRxNonIpPkts Counter64,
cienaCesBenchmarkTestInstanceStatsRxUnrecognizedPkts Counter64,
cienaCesBenchmarkTestInstanceStatsRxDuplicatePkts Counter64,
cienaCesBenchmarkTestInstanceStatsRxDuplicatePktsOverflow TruthValue,
cienaCesBenchmarkTestInstanceStatsRxOOOPkts Counter64,
cienaCesBenchmarkTestInstanceStatsRxOOOPktsOverflow TruthValue,
cienaCesBenchmarkTestInstanceStatsRxDiscSeqNumPkts Counter64,
cienaCesBenchmarkTestInstanceStatsRxDiscSeqNumPktsOverflow TruthValue,
cienaCesBenchmarkTestInstanceStatsRxUdpCheckSumPkts Counter64,
cienaCesBenchmarkTestInstanceStatsTxPkts Counter64
}
cienaCesBenchmarkTestInstanceStatsRxPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of received packets for
this test instance."
::= { cienaCesBenchmarkTestInstanceStatsEntry 1 }
cienaCesBenchmarkTestInstanceStatsRxIpv4Pkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of IPv4 packets received for
this test instance."
::= { cienaCesBenchmarkTestInstanceStatsEntry 2 }
cienaCesBenchmarkTestInstanceStatsRxIpv4UdpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of IPv4 UDP packets received for
this test instance."
::= { cienaCesBenchmarkTestInstanceStatsEntry 3 }
cienaCesBenchmarkTestInstanceStatsRxIpv6Pkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of IPv6 packets received for
this test instance."
::= { cienaCesBenchmarkTestInstanceStatsEntry 4 }
cienaCesBenchmarkTestInstanceStatsRxIpv6UdpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of IPv6 UDP packets received for
this test instance."
::= { cienaCesBenchmarkTestInstanceStatsEntry 5 }
cienaCesBenchmarkTestInstanceStatsRxNonIpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of non-IP packets received for
this test instance."
::= { cienaCesBenchmarkTestInstanceStatsEntry 6 }
cienaCesBenchmarkTestInstanceStatsRxUnrecognizedPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of unrecognized packets received for
this test instance."
::= { cienaCesBenchmarkTestInstanceStatsEntry 7 }
cienaCesBenchmarkTestInstanceStatsRxDuplicatePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of packets received with a duplicate
this test instance."
::= { cienaCesBenchmarkTestInstanceStatsEntry 8 }
cienaCesBenchmarkTestInstanceStatsRxDuplicatePktsOverflow OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When set to true, this indicates that the duplicate
pkt counter has rolled over in hardware and therefore,
cienaCesBenchmarkTestInstanceStatsRxDuplicatePkts might
not be accurate."
::= { cienaCesBenchmarkTestInstanceStatsEntry 9 }
cienaCesBenchmarkTestInstanceStatsRxOOOPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of packets received with an out of
order sequence number. The sequence number was less
than the expected sequence number for this test instance."
::= { cienaCesBenchmarkTestInstanceStatsEntry 10 }
cienaCesBenchmarkTestInstanceStatsRxOOOPktsOverflow OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When set to true, this indicates that the out of order
pkt counter has rolled over in hardware and therefore,
cienaCesBenchmarkTestInstanceStatsRxOOOPkts might
not be accurate."
::= { cienaCesBenchmarkTestInstanceStatsEntry 11 }
cienaCesBenchmarkTestInstanceStatsRxDiscSeqNumPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of packets received with a sequence number
greater then the expected sequence number for this test instance."
::= { cienaCesBenchmarkTestInstanceStatsEntry 12 }
cienaCesBenchmarkTestInstanceStatsRxDiscSeqNumPktsOverflow OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When set to true, this indicates that the discontinuity
in sequence number pkt counter has rolled over in hardware
and therefore, cienaCesBenchmarkTestInstanceStatsRxDiscSeqNumPkts
might not be accurate."
::= { cienaCesBenchmarkTestInstanceStatsEntry 13 }
cienaCesBenchmarkTestInstanceStatsRxUdpCheckSumPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of UDP packets received with a UDP checksum
error."
::= { cienaCesBenchmarkTestInstanceStatsEntry 14 }
cienaCesBenchmarkTestInstanceStatsTxPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of packets transmitted for this test instance."
::= { cienaCesBenchmarkTestInstanceStatsEntry 15 }
--
-- Benchmark Generator Test Session Throughput Results
--
cienaCesBenchmarkGenTestSessionThroughputResultsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesBenchmarkGenTestSessionThroughputResultsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of BENCHMARK generator test session throughput results in Mbps."
::= { cienaCesBenchmarkModule 15 }
cienaCesBenchmarkGenTestSessionThroughputResultsEntry OBJECT-TYPE
SYNTAX CienaCesBenchmarkGenTestSessionThroughputResultsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"BENCHMARK generator test session throughput results."
INDEX { cienaCesBenchmarkEntityEntryId,
cienaCesBenchmarkTestInstanceEntryId,
cienaCesBenchmarkGenTestSessionThroughputResultsPcpIndex,
cienaCesBenchmarkGenTestSessionThroughputResultsColorIndex,
cienaCesBenchmarkGenTestSessionThroughputResultsFrameSizeIndex }
::= { cienaCesBenchmarkGenTestSessionThroughputResultsTable 1 }
CienaCesBenchmarkGenTestSessionThroughputResultsEntry ::= SEQUENCE {
cienaCesBenchmarkGenTestSessionThroughputResultsPcpIndex Integer32,
cienaCesBenchmarkGenTestSessionThroughputResultsColorIndex Integer32,
cienaCesBenchmarkGenTestSessionThroughputResultsFrameSizeIndex Integer32,
cienaCesBenchmarkGenTestSessionThroughputResultsPcp Integer32,
cienaCesBenchmarkGenTestSessionThroughputResultsColor CienaCesBenchmarkColorTest,
cienaCesBenchmarkGenTestSessionThroughputResultsFrameSize Integer32,
cienaCesBenchmarkGenTestSessionThroughputResultsEmixSequenceId Integer32,
cienaCesBenchmarkGenTestSessionThroughputResultsMin CienaCesBenchmarkThroughputResult,
cienaCesBenchmarkGenTestSessionThroughputResultsMax CienaCesBenchmarkThroughputResult,
cienaCesBenchmarkGenTestSessionThroughputResultsAvg CienaCesBenchmarkThroughputResult,
cienaCesBenchmarkGenTestSessionThroughputResultsIterations Integer32,
cienaCesBenchmarkGenTestSessionThroughputResultsKpiResult CienaCesBenchmarkKpiResult
}
cienaCesBenchmarkGenTestSessionThroughputResultsPcpIndex OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index of the PCP value"
::= { cienaCesBenchmarkGenTestSessionThroughputResultsEntry 1 }
cienaCesBenchmarkGenTestSessionThroughputResultsColorIndex OBJECT-TYPE
SYNTAX Integer32 (1..2)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Color index."
::= { cienaCesBenchmarkGenTestSessionThroughputResultsEntry 2 }
cienaCesBenchmarkGenTestSessionThroughputResultsFrameSizeIndex OBJECT-TYPE
SYNTAX Integer32 (1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Frame size index for which those throughput results are
for. When EMIX is used, in which case
cienaCesBenchmarkGenTestSessionThroughputResultsEmixSequenceId is
not NULL, there is only one frame size index for
the given test instance Id, pcp and color. In such a case, the
frame size index will be 0 and frame size will also be 0."
::= { cienaCesBenchmarkGenTestSessionThroughputResultsEntry 3 }
cienaCesBenchmarkGenTestSessionThroughputResultsPcp OBJECT-TYPE
SYNTAX Integer32 (0..7)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PCP value of the test packets associated with those
results."
::= { cienaCesBenchmarkGenTestSessionThroughputResultsEntry 4 }
cienaCesBenchmarkGenTestSessionThroughputResultsColor OBJECT-TYPE
SYNTAX CienaCesBenchmarkColorTest
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Color of the test packets associated with those
results."
::= { cienaCesBenchmarkGenTestSessionThroughputResultsEntry 5 }
cienaCesBenchmarkGenTestSessionThroughputResultsFrameSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packet size in bytes. If 0, then the
cienaCesBenchmarkGenTestSessionThroughputResultsEmixSequenceId
indicates the ID of the EMIX sequence used for the test"
::= { cienaCesBenchmarkGenTestSessionThroughputResultsEntry 6 }
cienaCesBenchmarkGenTestSessionThroughputResultsEmixSequenceId OBJECT-TYPE
SYNTAX Integer32 (1..32)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ID of the EMIX sequence that was used for running the
test which produced these results. When 0,
frame size indicates the size of the test frame
associated with these results."
::= { cienaCesBenchmarkGenTestSessionThroughputResultsEntry 7 }
cienaCesBenchmarkGenTestSessionThroughputResultsMin OBJECT-TYPE
SYNTAX CienaCesBenchmarkThroughputResult
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum throughput recorded for the given packet size
in Mbps * 100. The value is multiplied by 100 to be able
to send the results as an integer but should be divided
by 100 when displayed to provide a 2 decimal point accuracy.
A result of 123.45 is sent as 12345."
::= { cienaCesBenchmarkGenTestSessionThroughputResultsEntry 8 }
cienaCesBenchmarkGenTestSessionThroughputResultsMax OBJECT-TYPE
SYNTAX CienaCesBenchmarkThroughputResult
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum throughput recorded for the given packet size
in Mbps * 100. The value is multiplied by 100 to be able
to send the results as an integer but should be divided
by 100 when displayed to provide a 2 decimal point accuracy.
A result of 123.45 is sent as 12345."
::= { cienaCesBenchmarkGenTestSessionThroughputResultsEntry 9 }
cienaCesBenchmarkGenTestSessionThroughputResultsAvg OBJECT-TYPE
SYNTAX CienaCesBenchmarkThroughputResult
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average throughput recorded for the given packet size
in Mbps * 100. The value is multiplied by 100 to be able
to send the results as an integer but should be divided
by 100 when displayed to provide a 2 decimal point accuracy.
A result of 123.45 is sent as 12345."
::= { cienaCesBenchmarkGenTestSessionThroughputResultsEntry 10 }
cienaCesBenchmarkGenTestSessionThroughputResultsIterations OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times the test has been run for this packet size."
::= { cienaCesBenchmarkGenTestSessionThroughputResultsEntry 11 }
cienaCesBenchmarkGenTestSessionThroughputResultsKpiResult OBJECT-TYPE
SYNTAX CienaCesBenchmarkKpiResult
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Pass or fail results for the test which is determined
by comparing the max throughput against the selected
KPI test instance's throughput pass criteria. If no KPI test instance
is selected for the given test instance Id, the result will
be 'notApplicable'."
::= { cienaCesBenchmarkGenTestSessionThroughputResultsEntry 12 }
--
-- Benchmark Generator Test Session Frameloss Results
--
cienaCesBenchmarkGenTestSessionFramelossResultsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesBenchmarkGenTestSessionFramelossResultsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of BENCHMARK generator test session frameloss results."
::= { cienaCesBenchmarkModule 16 }
cienaCesBenchmarkGenTestSessionFramelossResultsEntry OBJECT-TYPE
SYNTAX CienaCesBenchmarkGenTestSessionFramelossResultsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"BENCHMARK generator test session frameloss results."
INDEX { cienaCesBenchmarkEntityEntryId,
cienaCesBenchmarkTestInstanceEntryId,
cienaCesBenchmarkGenTestSessionFramelossResultsPcpIndex,
cienaCesBenchmarkGenTestSessionFramelossResultsColorIndex,
cienaCesBenchmarkGenTestSessionFramelossResultsFrameSizeIndex,
cienaCesBenchmarkGenTestSessionFramelossResultsRateIndex }
::= { cienaCesBenchmarkGenTestSessionFramelossResultsTable 1 }
CienaCesBenchmarkGenTestSessionFramelossResultsEntry ::= SEQUENCE {
cienaCesBenchmarkGenTestSessionFramelossResultsPcpIndex Integer32,
cienaCesBenchmarkGenTestSessionFramelossResultsColorIndex Integer32,
cienaCesBenchmarkGenTestSessionFramelossResultsFrameSizeIndex Integer32,
cienaCesBenchmarkGenTestSessionFramelossResultsRateIndex Integer32,
cienaCesBenchmarkGenTestSessionFramelossResultsPcp Integer32,
cienaCesBenchmarkGenTestSessionFramelossResultsColor CienaCesBenchmarkColorTest,
cienaCesBenchmarkGenTestSessionFramelossResultsFrameSize Integer32,
cienaCesBenchmarkGenTestSessionFramelossResultsEmixSequenceId Integer32,
cienaCesBenchmarkGenTestSessionFramelossResultsRate Integer32,
cienaCesBenchmarkGenTestSessionFramelossResultsFirst CienaCesBenchmarkFramelossResult,
cienaCesBenchmarkGenTestSessionFramelossResultsSecond CienaCesBenchmarkFramelossResult,
cienaCesBenchmarkGenTestSessionFramelossResultsKpiResult CienaCesBenchmarkKpiResult,
cienaCesBenchmarkGenTestSessionFramelossResultsResult CienaCesBenchmarkFramelossResult
}
cienaCesBenchmarkGenTestSessionFramelossResultsPcpIndex OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"PCP index."
::= { cienaCesBenchmarkGenTestSessionFramelossResultsEntry 1 }
cienaCesBenchmarkGenTestSessionFramelossResultsColorIndex OBJECT-TYPE
SYNTAX Integer32 (1..2)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Color index."
::= { cienaCesBenchmarkGenTestSessionFramelossResultsEntry 2 }
cienaCesBenchmarkGenTestSessionFramelossResultsFrameSizeIndex OBJECT-TYPE
SYNTAX Integer32 (1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Frame size index."
::= { cienaCesBenchmarkGenTestSessionFramelossResultsEntry 3 }
cienaCesBenchmarkGenTestSessionFramelossResultsRateIndex OBJECT-TYPE
SYNTAX Integer32 (1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Rate index."
::= { cienaCesBenchmarkGenTestSessionFramelossResultsEntry 4 }
cienaCesBenchmarkGenTestSessionFramelossResultsPcp OBJECT-TYPE
SYNTAX Integer32 (0..7)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PCP value of the test packets associated with those
results."
::= { cienaCesBenchmarkGenTestSessionFramelossResultsEntry 5 }
cienaCesBenchmarkGenTestSessionFramelossResultsColor OBJECT-TYPE
SYNTAX CienaCesBenchmarkColorTest
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Color of the test packets associated with those
results."
::= { cienaCesBenchmarkGenTestSessionFramelossResultsEntry 6 }
cienaCesBenchmarkGenTestSessionFramelossResultsFrameSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packet size in bytes. If 0, then the
cienaCesBenchmarkGenTestSessionFramelossResultsEmixSequenceId
indicates the ID of the EMIX sequence used for the test"
::= { cienaCesBenchmarkGenTestSessionFramelossResultsEntry 7 }
cienaCesBenchmarkGenTestSessionFramelossResultsEmixSequenceId OBJECT-TYPE
SYNTAX Integer32 (1..32)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ID of the EMIX sequence that was used for running the
test which produced these results. When 0,
frame size indicates the size of the test frame
associated with these results."
::= { cienaCesBenchmarkGenTestSessionFramelossResultsEntry 8 }
cienaCesBenchmarkGenTestSessionFramelossResultsRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Rate in percent of line rate."
::= { cienaCesBenchmarkGenTestSessionFramelossResultsEntry 9 }
cienaCesBenchmarkGenTestSessionFramelossResultsFirst OBJECT-TYPE
SYNTAX CienaCesBenchmarkFramelossResult
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Percentage of frames lost on first test sequence."
::= { cienaCesBenchmarkGenTestSessionFramelossResultsEntry 10 }
cienaCesBenchmarkGenTestSessionFramelossResultsSecond OBJECT-TYPE
SYNTAX CienaCesBenchmarkFramelossResult
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Percentage of frames lost on second test sequence."
::= { cienaCesBenchmarkGenTestSessionFramelossResultsEntry 11 }
cienaCesBenchmarkGenTestSessionFramelossResultsKpiResult OBJECT-TYPE
SYNTAX CienaCesBenchmarkKpiResult
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Pass or fail results for the test which is determined
by comparing the frameloss result against the selected
KPI test instance's frameloss pass criteria. If no KPI test instance
is selected for the given test instance Id, the result will
be 'notApplicable'."
::= { cienaCesBenchmarkGenTestSessionFramelossResultsEntry 12 }
cienaCesBenchmarkGenTestSessionFramelossResultsResult OBJECT-TYPE
SYNTAX CienaCesBenchmarkFramelossResult
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Percentage of frames lost on the largest test sequence results."
::= { cienaCesBenchmarkGenTestSessionFramelossResultsEntry 13 }
--
-- Benchmark Generator Test Session Latency Results
--
cienaCesBenchmarkGenTestSessionLatencyResultsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesBenchmarkGenTestSessionLatencyResultsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of BENCHMARK generator test session latency results in usec."
::= { cienaCesBenchmarkModule 17 }
cienaCesBenchmarkGenTestSessionLatencyResultsEntry OBJECT-TYPE
SYNTAX CienaCesBenchmarkGenTestSessionLatencyResultsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"BENCHMARK generator test session latency results."
INDEX { cienaCesBenchmarkEntityEntryId,
cienaCesBenchmarkTestInstanceEntryId,
cienaCesBenchmarkGenTestSessionLatencyResultsPcpIndex,
cienaCesBenchmarkGenTestSessionLatencyResultsColorIndex,
cienaCesBenchmarkGenTestSessionLatencyResultsFrameSizeIndex }
::= { cienaCesBenchmarkGenTestSessionLatencyResultsTable 1 }
CienaCesBenchmarkGenTestSessionLatencyResultsEntry ::= SEQUENCE {
cienaCesBenchmarkGenTestSessionLatencyResultsPcpIndex Integer32,
cienaCesBenchmarkGenTestSessionLatencyResultsColorIndex Integer32,
cienaCesBenchmarkGenTestSessionLatencyResultsFrameSizeIndex Integer32,
cienaCesBenchmarkGenTestSessionLatencyResultsPcp Integer32,
cienaCesBenchmarkGenTestSessionLatencyResultsColor CienaCesBenchmarkColorTest,
cienaCesBenchmarkGenTestSessionLatencyResultsFrameSize Integer32,
cienaCesBenchmarkGenTestSessionLatencyResultsEmixSequenceId Integer32,
cienaCesBenchmarkGenTestSessionLatencyResultsMin Unsigned32,
cienaCesBenchmarkGenTestSessionLatencyResultsMax Unsigned32,
cienaCesBenchmarkGenTestSessionLatencyResultsAvg Unsigned32,
cienaCesBenchmarkGenTestSessionLatencyResultsSamples Integer32,
cienaCesBenchmarkGenTestSessionLatencyResultsKpiResult CienaCesBenchmarkKpiResult
}
cienaCesBenchmarkGenTestSessionLatencyResultsPcpIndex OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"PCP index."
::= { cienaCesBenchmarkGenTestSessionLatencyResultsEntry 1 }
cienaCesBenchmarkGenTestSessionLatencyResultsColorIndex OBJECT-TYPE
SYNTAX Integer32 (1..2)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Color index."
::= { cienaCesBenchmarkGenTestSessionLatencyResultsEntry 2 }
cienaCesBenchmarkGenTestSessionLatencyResultsFrameSizeIndex OBJECT-TYPE
SYNTAX Integer32 (1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Frame size index."
::= { cienaCesBenchmarkGenTestSessionLatencyResultsEntry 3 }
cienaCesBenchmarkGenTestSessionLatencyResultsPcp OBJECT-TYPE
SYNTAX Integer32 (0..7)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PCP value of the test packets associated with those
results."
::= { cienaCesBenchmarkGenTestSessionLatencyResultsEntry 4 }
cienaCesBenchmarkGenTestSessionLatencyResultsColor OBJECT-TYPE
SYNTAX CienaCesBenchmarkColorTest
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Color of the test packets associated with those
results."
::= { cienaCesBenchmarkGenTestSessionLatencyResultsEntry 5 }
cienaCesBenchmarkGenTestSessionLatencyResultsFrameSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packet size in bytes."
::= { cienaCesBenchmarkGenTestSessionLatencyResultsEntry 6 }
cienaCesBenchmarkGenTestSessionLatencyResultsEmixSequenceId OBJECT-TYPE
SYNTAX Integer32 (1..32)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ID of the EMIX sequence that was used for running the
test which produced these results. When 0,
frame size indicates the size of the test frame
associated with these results."
::= { cienaCesBenchmarkGenTestSessionLatencyResultsEntry 7 }
cienaCesBenchmarkGenTestSessionLatencyResultsMin OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum latency recorded for the given packet size."
::= { cienaCesBenchmarkGenTestSessionLatencyResultsEntry 8 }
cienaCesBenchmarkGenTestSessionLatencyResultsMax OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum latency recorded for the given packet size."
::= { cienaCesBenchmarkGenTestSessionLatencyResultsEntry 9 }
cienaCesBenchmarkGenTestSessionLatencyResultsAvg OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average latency recorded for the given packet size."
::= { cienaCesBenchmarkGenTestSessionLatencyResultsEntry 10 }
cienaCesBenchmarkGenTestSessionLatencyResultsSamples OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of samples taken during the test."
::= { cienaCesBenchmarkGenTestSessionLatencyResultsEntry 11 }
cienaCesBenchmarkGenTestSessionLatencyResultsKpiResult OBJECT-TYPE
SYNTAX CienaCesBenchmarkKpiResult
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Pass or fail results for the test which is determined
by comparing the frameloss result against the selected
KPI test instance's latency pass criteria. If no KPI test instance
is selected for the given test instance Id, the result will
be 'notApplicable'."
::= { cienaCesBenchmarkGenTestSessionLatencyResultsEntry 12 }
--
-- Benchmark Test Session Packet Delay Variation Results
--
cienaCesBenchmarkGenTestSessionPdvResultsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesBenchmarkGenTestSessionPdvResultsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of BENCHMARK generator test session packet delay
variation results in usec."
::= { cienaCesBenchmarkModule 18 }
cienaCesBenchmarkGenTestSessionPdvResultsEntry OBJECT-TYPE
SYNTAX CienaCesBenchmarkGenTestSessionPdvResultsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"BENCHMARK generator test session packet delay variation results."
INDEX { cienaCesBenchmarkEntityEntryId,
cienaCesBenchmarkTestInstanceEntryId,
cienaCesBenchmarkGenTestSessionPdvResultsPcpIndex,
cienaCesBenchmarkGenTestSessionPdvResultsColorIndex,
cienaCesBenchmarkGenTestSessionPdvResultsFrameSizeIndex }
::= { cienaCesBenchmarkGenTestSessionPdvResultsTable 1 }
CienaCesBenchmarkGenTestSessionPdvResultsEntry ::= SEQUENCE {
cienaCesBenchmarkGenTestSessionPdvResultsPcpIndex Integer32,
cienaCesBenchmarkGenTestSessionPdvResultsColorIndex Integer32,
cienaCesBenchmarkGenTestSessionPdvResultsFrameSizeIndex Integer32,
cienaCesBenchmarkGenTestSessionPdvResultsPcp Integer32,
cienaCesBenchmarkGenTestSessionPdvResultsColor CienaCesBenchmarkColorTest,
cienaCesBenchmarkGenTestSessionPdvResultsFrameSize Integer32,
cienaCesBenchmarkGenTestSessionPdvResultsEmixSequenceId Integer32,
cienaCesBenchmarkGenTestSessionPdvResultsAvg Unsigned32,
cienaCesBenchmarkGenTestSessionPdvResultsSamples Integer32,
cienaCesBenchmarkGenTestSessionPdvResultsKpiResult CienaCesBenchmarkKpiResult
}
cienaCesBenchmarkGenTestSessionPdvResultsPcpIndex OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"PCP index."
::= { cienaCesBenchmarkGenTestSessionPdvResultsEntry 1 }
cienaCesBenchmarkGenTestSessionPdvResultsColorIndex OBJECT-TYPE
SYNTAX Integer32 (1..2)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Color index."
::= { cienaCesBenchmarkGenTestSessionPdvResultsEntry 2 }
cienaCesBenchmarkGenTestSessionPdvResultsFrameSizeIndex OBJECT-TYPE
SYNTAX Integer32 (1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Frame size index associated to those PDV stats."
::= { cienaCesBenchmarkGenTestSessionPdvResultsEntry 3 }
cienaCesBenchmarkGenTestSessionPdvResultsPcp OBJECT-TYPE
SYNTAX Integer32 (0..7)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PCP value of the test packets associated with those
results."
::= { cienaCesBenchmarkGenTestSessionPdvResultsEntry 4 }
cienaCesBenchmarkGenTestSessionPdvResultsColor OBJECT-TYPE
SYNTAX CienaCesBenchmarkColorTest
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Color of the test packets associated with those
results."
::= { cienaCesBenchmarkGenTestSessionPdvResultsEntry 5 }
cienaCesBenchmarkGenTestSessionPdvResultsFrameSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packet size in bytes."
::= { cienaCesBenchmarkGenTestSessionPdvResultsEntry 6 }
cienaCesBenchmarkGenTestSessionPdvResultsEmixSequenceId OBJECT-TYPE
SYNTAX Integer32 (1..32)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ID of the EMIX sequence that was used for running the
test which produced these results. When 0,
frame size indicates the size of the test frame
associated with these results."
::= { cienaCesBenchmarkGenTestSessionPdvResultsEntry 7 }
cienaCesBenchmarkGenTestSessionPdvResultsAvg OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average PDV recorded for the given packet size."
::= { cienaCesBenchmarkGenTestSessionPdvResultsEntry 8 }
cienaCesBenchmarkGenTestSessionPdvResultsSamples OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of samples used for the test."
::= { cienaCesBenchmarkGenTestSessionPdvResultsEntry 9 }
cienaCesBenchmarkGenTestSessionPdvResultsKpiResult OBJECT-TYPE
SYNTAX CienaCesBenchmarkKpiResult
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Pass or fail results for the test which is determined
by comparing the frameloss result against the selected
KPI test instance's throughput PDV criteria. If no KPI test instance
is selected for the given test instance Id, the result will
be 'notApplicable'."
::= { cienaCesBenchmarkGenTestSessionPdvResultsEntry 10 }
--
-- Benchmark EMIX character set table
--
cienaCesBenchmarkEmixCharacterSetTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesBenchmarkEmixCharacterSetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of BENCHMARK EMIX character set providing the
list of characters that can be used in an EMIX sequence
along with their corresponding frame size."
::= { cienaCesBenchmarkModule 19 }
cienaCesBenchmarkEmixCharacterSetEntry OBJECT-TYPE
SYNTAX CienaCesBenchmarkEmixCharacterSetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"BENCHMARK EMIX character and its associated frame size."
INDEX { cienaCesBenchmarkEmixCharacterSetEntryIndex }
::= { cienaCesBenchmarkEmixCharacterSetTable 1 }
CienaCesBenchmarkEmixCharacterSetEntry ::= SEQUENCE {
cienaCesBenchmarkEmixCharacterSetEntryIndex Integer32,
cienaCesBenchmarkEmixCharacterSetEntryCharacter DisplayString,
cienaCesBenchmarkEmixCharacterSetEntryFrameSize DisplayString
}
cienaCesBenchmarkEmixCharacterSetEntryIndex OBJECT-TYPE
SYNTAX Integer32 (1..26)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Character index."
::= { cienaCesBenchmarkEmixCharacterSetEntry 1 }
cienaCesBenchmarkEmixCharacterSetEntryCharacter OBJECT-TYPE
SYNTAX DisplayString (SIZE (1))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"EMIX character that can be used for creating an EMIX sequence.
The character set currently includes: a b c d e f g h u v w x "
::= { cienaCesBenchmarkEmixCharacterSetEntry 2 }
cienaCesBenchmarkEmixCharacterSetEntryFrameSize OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..6))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Frame size associated with the character. For h, the frame size
is the port under test's MTU and the u character is a custom
frame size configurable for each EMIX. The u frame size can take
a value of 64 to 10000 and defaults to 594. If u is bigger than
the MTU of the port under test, it will be reduced to the same
size as h."
::= { cienaCesBenchmarkEmixCharacterSetEntry 3 }
--
-- Trap definitions
--
cienaCesBenchmarkTestStarted NOTIFICATION-TYPE
OBJECTS { cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesBenchmarkEntityEntryPortId,
cienaCesBenchmarkTestInstanceEntryId,
cienaCesBenchmarkTestInstanceEntryName,
cienaCesBenchmarkTestInstanceEntrySvid,
cienaCesBenchmarkTestInstanceEntryCvid,
cienaCesBenchmarkTestInstanceEntryDstMac
}
STATUS current
DESCRIPTION
"The start command has been issued for the given benchmark generator
test instance, either via CLI or SNMP. The cienaCesBenchmarkEntityEntryPortId
specifies the port under test when the test instance was started;
the s-vid, c-vid and destination mac address used to build the test
packet are also provided."
::= { cienaCesBenchmarkNotifications 1 }
cienaCesBenchmarkTestStopped NOTIFICATION-TYPE
OBJECTS { cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesBenchmarkTestInstanceEntryId,
cienaCesBenchmarkTestInstanceEntryName
}
STATUS current
DESCRIPTION
"The specified generator test instance has been manually stopped by
the user, either via CLI or SNMP, before the testing completed."
::= { cienaCesBenchmarkNotifications 2 }
cienaCesBenchmarkTestCompleted NOTIFICATION-TYPE
OBJECTS { cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesBenchmarkTestInstanceEntryId,
cienaCesBenchmarkTestInstanceEntryName
}
STATUS current
DESCRIPTION
"The testing for the specified generator test instance has finished the
configured number of iterations as configured in the referenced
profile interval and duration."
::= { cienaCesBenchmarkNotifications 3 }
cienaCesBenchmarkTestFailedThroughputKpi NOTIFICATION-TYPE
OBJECTS { cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesBenchmarkTestInstanceEntryId,
cienaCesBenchmarkTestInstanceEntryName,
cienaCesBenchmarkKpiProfileId,
cienaCesBenchmarkKpiPcp,
cienaCesBenchmarkKpiColor,
cienaCesBenchmarkGenTestSessionCurrentPktSize,
cienaCesBenchmarkEmixSequenceId,
cienaCesBenchmarkGenTestSessionThroughputResultsMax
}
STATUS current
DESCRIPTION
"The throughput test result for the specified generator test
instance is below the specified throughput KPI value for
the given PCP and color traffic."
::= { cienaCesBenchmarkNotifications 4 }
cienaCesBenchmarkTestFailedFramelossKpi NOTIFICATION-TYPE
OBJECTS { cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesBenchmarkTestInstanceEntryId,
cienaCesBenchmarkTestInstanceEntryName,
cienaCesBenchmarkKpiProfileId,
cienaCesBenchmarkKpiPcp,
cienaCesBenchmarkKpiColor,
cienaCesBenchmarkGenTestSessionCurrentPktSize,
cienaCesBenchmarkEmixSequenceId,
cienaCesBenchmarkGenTestSessionFramelossResultsResult
}
STATUS current
DESCRIPTION
"The frameloss test result for the specified generator test
instance exceeds the specified throughput KPI value for
the given PCP and color traffic."
::= { cienaCesBenchmarkNotifications 5 }
cienaCesBenchmarkTestFailedLatencyKpi NOTIFICATION-TYPE
OBJECTS { cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesBenchmarkTestInstanceEntryId,
cienaCesBenchmarkTestInstanceEntryName,
cienaCesBenchmarkKpiProfileId,
cienaCesBenchmarkKpiPcp,
cienaCesBenchmarkKpiColor,
cienaCesBenchmarkGenTestSessionCurrentPktSize,
cienaCesBenchmarkEmixSequenceId,
cienaCesBenchmarkGenTestSessionLatencyResultsMax
}
STATUS current
DESCRIPTION
"The latency test result for the specified generator test
instance exceeds the specified throughput KPI value for
the given PCP and color traffic."
::= { cienaCesBenchmarkNotifications 6 }
cienaCesBenchmarkTestFailedPdvKpi NOTIFICATION-TYPE
OBJECTS { cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesBenchmarkTestInstanceEntryId,
cienaCesBenchmarkTestInstanceEntryName,
cienaCesBenchmarkKpiProfileId,
cienaCesBenchmarkKpiPcp,
cienaCesBenchmarkKpiColor,
cienaCesBenchmarkGenTestSessionCurrentPktSize,
cienaCesBenchmarkEmixSequenceId,
cienaCesBenchmarkGenTestSessionPdvResultsAvg
}
STATUS current
DESCRIPTION
"The throughput test result for the specified generator test
instance is below the specified throughput KPI value for
the given PCP and color traffic."
::= { cienaCesBenchmarkNotifications 7 }
cienaCesBenchmarkTestIterationCompleted NOTIFICATION-TYPE
OBJECTS { cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesBenchmarkTestInstanceEntryId,
cienaCesBenchmarkTestInstanceEntryName,
cienaCesBenchmarkGenTestSessionThroughputResultsIterations
}
STATUS current
DESCRIPTION
"An iteration of tests for the given test instance has just completed."
::= { cienaCesBenchmarkNotifications 8 }
END
|