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
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
|
--
-- Juniper Enterprise Specific MIB: SOAM
--
-- Copyright (c) 2012-2013, Juniper Networks, Inc.
-- All rights reserved.
--
-- The contents of this document are subject to change without notice.
--
JUNIPER-SOAM-PM-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
Integer32, Counter32, Counter64,
Unsigned32,Gauge32 FROM SNMPv2-SMI -- [RFC2578]
TEXTUAL-CONVENTION,
TimeInterval,
TimeStamp, RowStatus,
TruthValue, MacAddress,
TDomain, TAddress, DateAndTime FROM SNMPv2-TC -- [RFC2579]
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP FROM SNMPv2-CONF -- [RFC2580]
InterfaceIndex,
InterfaceIndexOrZero FROM IF-MIB -- [RFC2863]
LldpChassisId,
LldpChassisIdSubtype,
LldpPortId,
LldpPortIdSubtype FROM LLDP-MIB -- [IEEExxx]
ieee802dot1mibs,
IEEE8021VlanIndex FROM IEEE8021-TC-MIB
dot1agCfmMdIndex,
dot1agCfmMaIndex,
dot1agCfmMepIdentifier,
dot1agCfmMepEntry,
Dot1afCfmIndexIntegerNextFree,
Dot1agCfmMepIdOrZero FROM IEEE8021-CFM-MIB
jnxMibs FROM JUNIPER-SMI
IEEE8021PriorityValue FROM IEEE8021-TC-MIB
;
jnxSoamPmMib MODULE-IDENTITY
LAST-UPDATED "201605310000Z" -- Tue May 31 00:00:00 2016 UTC
ORGANIZATION "Juniper Networks, Inc."
CONTACT-INFO
"Juniper Technical Assistance Center
Juniper Networks, Inc.
1133 Innovation Way
Sunnyvale, CA 94089
E-mail: support@juniper.net"
DESCRIPTION
"This MIB module contains the management objects for the
management of Ethernet Services Operations, Administration
and Maintenance for Performance Monitoring.
"
REVISION "201201131200Z" -- January 13, 2012
DESCRIPTION
"Initial Version."
REVISION "201605310000Z" -- 31-May-16
DESCRIPTION
"Removed duplicate entries"
::= { jnxMibs 78 }
-- *****************************************************************************
-- Object definitions in the SOAM PM MIB Module
-- *****************************************************************************
jnxSoamPmNotifications OBJECT IDENTIFIER ::= { jnxSoamPmMib 0 }
jnxSoamPmMibObjects OBJECT IDENTIFIER ::= { jnxSoamPmMib 1 }
jnxSoamPmMibConformance OBJECT IDENTIFIER ::= { jnxSoamPmMib 2 }
-- *****************************************************************************
-- Groups in the SOAM PM MIB Module
-- *****************************************************************************
jnxSoamPmMep OBJECT IDENTIFIER ::= { jnxSoamPmMibObjects 1 }
jnxSoamPmLmObjects OBJECT IDENTIFIER ::= { jnxSoamPmMibObjects 2 }
jnxSoamPmDmObjects OBJECT IDENTIFIER ::= { jnxSoamPmMibObjects 3 }
jnxSoamPmNotificationCfg OBJECT IDENTIFIER ::= { jnxSoamPmMibObjects 4 }
jnxSoamPmNotificationObj OBJECT IDENTIFIER ::= { jnxSoamPmMibObjects 5 }
-- ******************************************************************
-- Textual conventions
-- ******************************************************************
JnxSoamTcTestPatternType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This enumeration data type indicates the type of test pattern to be
sent in an OAM PDU Test TLV.
The valid enumerated values associated with this type are:
null(1) Null signal without CRC-32
nullCrc32(2) Null signal with CRC-32
prbs(3) PRBS 2^31-1 without CRC-32
prbsCrc32(4) PRBS 2^31-1 with CRC-32
"
REFERENCE
"[MEF7.1], Appendix III.2 Enumeration, [Y.1731] 7.7"
SYNTAX INTEGER {
null(1),
nullCrc32(2),
prbs(3),
prbsCrc32(4)
}
JnxSoamTcDataPatternType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This enumeration data type indicates the type of data pattern to be
sent in an OAM PDU Data TLV.
The valid enumerated values associated with this type are:
zeroPattern(1) indicates the Data TLV contains all zeros
onesPattern(2) indicates the Data TLV contains all ones
"
SYNTAX INTEGER {
zeroPattern(1),
onesPattern(2)
}
JnxSoamTcOperationTimeType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This enumeration data type indicates the operation type start
or end time to indicate when an OAM operation is
initiated or stopped.
The valid enumerated values associated with this type are:
none(1) The operation is never started or is stopped immediately
if used to indicate a start time, or the operation never
ends if it is used to indicate an end time
immediate(2) The operation is to begin immediately
relative(3) The operation is to begin at a relative time from the
current time or stop a relative time after it has started
fixed(4) The operation is to begin/stop at the given UTC time/date
"
REFERENCE
"[SOAM-PM] R2, [SOAM-FM] 8.7"
SYNTAX INTEGER {
none(1),
immediate(2),
relative(3),
fixed(4)
}
JnxSoamTcAvailabilityType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This enumeration data type defines the availability of a session,
measured by a loss measurement session. The valid enumerated values
associated with this type are:
available(1) indicates the MEP is available.
unavailable(2) indicates the MEP is unavailable.
unknown(3) indicates the availability is not known, for
instance because insufficient time has passed to
make an availability calculation, the time has been
excluded because of a maintenance interval, or because
availability measurement is not enabled.
"
SYNTAX INTEGER {
available(1),
unavailable(2),
unknown(3)
}
JnxSoamTcDelayMeasurementBinType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This enumeration data type is used to distinguish between
measurement bins for Frame Delay, Frame Delay Range, and
Inter-frame Delay variation.
The valid enumerated values associated with this type are:
twoWayFrameDelay(1) indicates a measurement bin for two-way
Frame Delay.
forwardFrameDelay(2) indicates a measurement bin for one-way
Frame Delay in the forward direction.
backwardFrameDelay(3) indicates a measurement bin for one-way
Frame Delay in the backward direction.
twoWayIfdv(4) indicates a measurement bin for two-way
Inter-frame Delay Variation.
forwardIfdv(5) indicates a measurement bin for one-way
Inter-frame Delay Variation in the forward
direction.
backwardIfdv(6) indicates a measurement bin for one-way
Inter-frame Delay Variation in the backward
direction.
twoWayFrameDelayRange(7) indicates a measurement bin for two-way
Frame Delay Range.
forwardFrameDelayRange(8) indicates a measurement bin for one-way
Frame Delay Range in the forward direction.
backwardFrameDelayRange(9) indicates a measurement bin for one-way
Frame Delay Range in the backward direction.
"
SYNTAX INTEGER {
twoWayFrameDelay(1),
forwardFrameDelay(2),
backwardFrameDelay(3),
twoWayIfdv(4),
forwardIfdv(5),
backwardIfdv(6),
twoWayFrameDelayRange(7),
forwardFrameDelayRange(8),
backwardFrameDelayRange(9)
}
-- *****************************************************************************
-- Ethernet MEP Performance Monitoring Configuration
-- *****************************************************************************
jnxSoamPmMepTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxSoamPmMepEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is an extension of the dot1agCfmMepTable and rows
are automatically added or deleted from this table based upon row
creation and destruction of the dot1agCfmMepTable.
This table represents the local MEP PM configuration table. The
primary purpose of this table is provide local parameters for the
SOAM PM function found in [Y.1731] and [MEF SOAM-PM] and instantiated
at a MEP.
"
REFERENCE
"[Y.1731], [MEF SOAM-PM]"
::= { jnxSoamPmMep 1 }
jnxSoamPmMepEntry OBJECT-TYPE
SYNTAX JnxSoamPmMepEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The conceptual row of jnxSoamPmMepTable."
AUGMENTS {
dot1agCfmMepEntry
}
--INDEX { dot1agCfmMdIndex,
-- dot1agCfmMaIndex,
-- dot1agCfmMepIdentifier
-- }
::= { jnxSoamPmMepTable 1 }
JnxSoamPmMepEntry ::= SEQUENCE {
jnxSoamPmMepOperNextIndex Dot1afCfmIndexIntegerNextFree,
jnxSoamPmMepLmSingleEndedResponder TruthValue,
jnxSoamPmMepSlmSingleEndedResponder TruthValue,
jnxSoamPmMepDmSingleEndedResponder TruthValue
}
jnxSoamPmMepOperNextIndex OBJECT-TYPE
SYNTAX Dot1afCfmIndexIntegerNextFree
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains an unused value for a PM session number on a
MEP that can be used for either LM or DM sessions, or a zero to
indicate that none exist. This value needs to be read in order to
find an available index for row-creation of a PM session on a MEP and
then used when a row is created. This value is automatically updated
by the SNMP Agent after the row is created.
Referential integrity is necessary, i.e., the index needs to be
persistent upon a reboot or restart of a device. The index
is never to be reused for other PM sessions on the same MEP while this
session is active, or until it wraps to zero. The index value keeps
increasing up to that time. This is to facilitate access control based
on a fixed index for an EMS, since the index is not reused.
This object is an extension of the dot1agCfmMepTable and the object is
automatically added or deleted based upon row creation and destruction
of the dot1agCfmMepTable.
"
::= { jnxSoamPmMepEntry 1 }
jnxSoamPmMepLmSingleEndedResponder OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies whether the Loss Measurement (LMM) single-ended
Responder is enabled.
The value 'true' indicates the single-ended Loss Measurement Responder
is enabled and if a LMM message is received a LMR will be sent in reply.
The value 'false' indicates the single-ended Loss Measurement Responder
is disabled. If a LMM message is received no response will be sent and
the message will be discarded.
This object needs to be persistent upon reboot or restart of a device.
A MEP can be both a single-ended Responder and Controller simultaneously.
"
DEFVAL { true }
::= { jnxSoamPmMepEntry 2 }
jnxSoamPmMepSlmSingleEndedResponder OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies whether the Synthetic Loss Measurement (SLM)
single-ended Responder is enabled.
The value 'true' indicates the single-ended SLM Responder is enabled and
if a SLM message is received a SLR will be sent in reply.
The value 'false' indicates the single-ended SLM Responder is disabled.
If a SLM message is received no response will be sent and the message
will be discarded.
This object needs to be persistent upon reboot or restart of a device.
A MEP can be both a single-ended Responder and Controller simultaneously.
"
DEFVAL { true }
::= { jnxSoamPmMepEntry 3 }
jnxSoamPmMepDmSingleEndedResponder OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies whether the Delay Measurement (DMM) single
ended Responder is enabled.
The value 'true' indicates the single-ended Delay Measurement Responder
is enabled and if a DMM message is received a DMR will be sent in reply.
The value 'false' indicates the single-ended Delay Measurement Responder
is disabled. If a DMM message is received no response will be sent and
the message will be discarded.
This object needs to be persistent upon reboot or restart of a device.
A MEP can be both a single-ended Responder and Controller simultaneously.
"
DEFVAL { true }
::= { jnxSoamPmMepEntry 4 }
-- *****************************************************************************
-- Ethernet Loss Measurement Configuration Table
-- *****************************************************************************
jnxSoamLmCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxSoamLmCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table includes configuration objects and operations for the
Frame Loss Measurement function defined in [Y.1731] and [MEF SOAM-PM].
Each row in the table represents a Loss Measurement session for
the defined MEP. This table uses four indices. The first three indices
are the indices of the Maintenance Domain, MaNet, and MEP tables. The
fourth index is the specific LM session on the selected MEP. A
Loss Measurement session is created on an existing MEP by first
accessing the jnxSoamPmMepOperNextIndex object and using this value as
the jnxSoamLmCfgIndex in the row creation.
Some writable objects in this table are only applicable in certain cases
(as described under each object), and attempts to write values for them
in other cases will be ignored.
The writable objects in this table need to be persistent upon reboot
or restart of a device.
"
REFERENCE
"[MEF SOAM-PM] R68; [Y.1731]"
::= { jnxSoamPmLmObjects 1 }
jnxSoamLmCfgEntry OBJECT-TYPE
SYNTAX JnxSoamLmCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The conceptual row of jnxSoamLmCfgTable."
INDEX { dot1agCfmMdIndex,
dot1agCfmMaIndex,
dot1agCfmMepIdentifier,
jnxSoamLmCfgIndex
}
::= { jnxSoamLmCfgTable 1 }
JnxSoamLmCfgEntry ::= SEQUENCE {
jnxSoamLmCfgIndex Unsigned32,
jnxSoamLmCfgType INTEGER,
jnxSoamLmCfgVersion Unsigned32,
jnxSoamLmCfgEnabled TruthValue,
jnxSoamLmCfgMeasurementEnable BITS,
jnxSoamLmCfgMessagePeriod Integer32,
jnxSoamLmCfgPriority IEEE8021PriorityValue,
jnxSoamLmCfgFrameSize Unsigned32,
jnxSoamLmCfgDataPattern JnxSoamTcDataPatternType,
jnxSoamLmCfgTestTlvIncluded TruthValue,
jnxSoamLmCfgTestTlvPattern JnxSoamTcTestPatternType,
jnxSoamLmCfgNumIntervalsStored Unsigned32,
jnxSoamLmCfgDestMepId Dot1agCfmMepIdOrZero,
jnxSoamLmCfgDestIsMepId TruthValue,
jnxSoamLmCfgStartTimeType JnxSoamTcOperationTimeType,
jnxSoamLmCfgFixedStartDateAndTime DateAndTime,
jnxSoamLmCfgRelativeStartTime TimeInterval,
jnxSoamLmCfgRepetitionTime Unsigned32,
jnxSoamLmCfgAlignMeasurementIntervals TruthValue,
jnxSoamLmCfgAlignMeasurementOffset Unsigned32,
jnxSoamLmCfgSessionType OCTET STRING,
jnxSoamLmCfgSessionStatus OCTET STRING,
jnxSoamLmCfgHistoryClear TruthValue,
jnxSoamLmCfgRowStatus RowStatus,
jnxSoamLmCfgMeasurementInterval Unsigned32,
jnxSoamLmCfgDestMacAddress MacAddress,
jnxSoamLmCfgStopTimeType JnxSoamTcOperationTimeType,
jnxSoamLmCfgFixedStopDateAndTime DateAndTime,
jnxSoamLmCfgRelativeStopTime TimeInterval,
jnxSoamLmCfgAvailabilityMeasurementInterval Unsigned32,
jnxSoamLmCfgAvailabilityNumConsecutiveMeasPdus Unsigned32,
jnxSoamLmCfgAvailabilityFlrThreshold Unsigned32,
jnxSoamLmCfgAvailabilityNumConsecutiveIntervals Unsigned32,
jnxSoamLmCfgAvailabilityNumConsecutiveHighFlr Unsigned32
}
jnxSoamLmCfgIndex
OBJECT-TYPE
SYNTAX Unsigned32(1..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An index to the Loss Measurement Configuration table which indicates
the specific measurement session for the MEP.
jnxSoamPmMepOperNextIndex needs to be inspected to find an
available index for row-creation.
Referential integrity is necessary, i.e., the index needs to be
persistent upon a reboot or restart of a device. The index
is never reused for other PM sessions on the same MEP while this
session is active. The index value keeps increasing until it
wraps to 0. This is to facilitate access control based
on a fixed index for an EMS, since the index is not reused.
"
::= { jnxSoamLmCfgEntry 1 }
jnxSoamLmCfgType OBJECT-TYPE
SYNTAX INTEGER {
lmLmm (1),
lmSlm (2),
lmCcm (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies what type of Loss Measurement
will be performed.
lmLmm(1) LMM SOAM PDU generated and received LMR responses tracked
lmSlm(2) SLM SOAM PDU generated and received SLR responses tracked
lmCcm(3) CCM SOAM PDU generated and received CCM PDUs tracked
The lmSlm value is required. The lmLmm and lmCcm values are optional.
The lmCcm loss measurement values are only valid for a point-to-point
MEG. Multipoint MEGs may give unreliable loss measurements.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[Y.1731] [MEF SOAM-PM] R51, R68, O7, R102"
DEFVAL { lmSlm }
::= { jnxSoamLmCfgEntry 2 }
jnxSoamLmCfgVersion OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the version of the PDUs used to perform
Loss Measurement.
The value is placed in the Version field of the PDU and indicates
that the PDU format used is the format defined in Y.1731 with
that version.
The exact PDUs to use are specified by this object in combination with
jnxSoamLmCfgType.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[Y.1731]"
DEFVAL { 0 }
::= { jnxSoamLmCfgEntry 3 }
jnxSoamLmCfgEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies whether the Loss Measurement session
is enabled.
The value 'true' indicates the Loss Measurement session is enabled and
SOAM PDUs are sent and/or measurements are collected when the session
is running according to the scheduling objects (start time, stop time,
etc.).
The value 'false' indicates the Loss Measurement session is disabled
and SOAM PDUs are not sent and/or measurements collected.
For a Loss Measurement session to be removed the row is
deleted in order to release internal resources.
This object can written/modified after row creation time.
If the LM session is enabled it resumes after shutdown/restart.
If the LM session is disabled the current Measurement Interval is
stopped, if it in process at the time, and all the in process calculations
for the partially completed Measurement Interval are finalized.
This object does not affect whether the single-ended Responder is
enabled or not, which is enabled or disabled by the
jnxSoamPmMepLmSingleEndedResponder and
jnxSoamPmMepSlmSingleEndedResponder objects.
"
REFERENCE
"[MEF SOAM-PM] R4, R5, R6, O1, R12, R14"
DEFVAL { true }
::= { jnxSoamLmCfgEntry 4 }
jnxSoamLmCfgMeasurementEnable OBJECT-TYPE
SYNTAX BITS {
bForwardTransmitedFrames(0),
bForwardReceivedFrames(1),
bForwardMinFlr(2),
bForwardMaxFlr(3),
bForwardAvgFlr(4),
bBackwardTransmitedFrames(5),
bBackwardReceivedFrames(6),
bBackwardMinFlr(7),
bBackwardMaxFlr(8),
bBackwardAvgFlr(9),
bSoamPdusSent(10),
bSoamPdusReceived (11),
bAvailForwardHighLoss(12),
bAvailForwardConsecutiveHighLoss(13),
bAvailForwardAvailable(14),
bAvailForwardUnavailable(15),
bAvailForwardMinFlr(16),
bAvailForwardMaxFlr(17),
bAvailForwardAvgFlr(18),
bAvailBackwardHighLoss(19),
bAvailBackwardConsecutiveHighLoss(20),
bAvailBackwardAvailable(21),
bAvailBackwardUnavailable(22),
bAvailBackwardMinFlr(23),
bAvailBackwardMaxFlr(24),
bAvailBackwardAvgFlr(25),
bMeasuredStatsForwardMeasuredFlr(26),
bMeasuredStatsBackwardMeasuredFlr(27),
bMeasuredStatsAvailForwardStatus(28),
bMeasuredStatsAvailBackwardStatus(29)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A vector of bits that indicates the type of SOAM LM counters found
in the jnxSoamLmMeasuredStatsTable, jnxSoamLmCurrentStatsTable,
jnxSoamLmHistoryStatsTable that are enabled.
that are enabled.
A bit set to '1' enables the specific SOAM LM counter. A bit set to
'0' disables the SOAM LM counter.
If a particular SOAM LM counter is not supported the BIT value is
set to '0'.
Not all SOAM LM counters are supported for all SOAM LM types.
This object can only be written at row creation time and cannot be
modified once it has been created.
bForwardTransmitedFrames (0)
Enables/disables the jnxSoamLmCurrentStatsForwardTransmittedFrames
and jnxSoamLmHistoryStatsForwardTransmittedFrames counters.
bForwardReceivedFrames(1)
Enables/disables the jnxSoamLmCurrentStatsForwardReceivedFrames
and jnxSoamLmHistoryStatsForwardReceivedFrames counters.
bForwardMinFlr(2)
Enables/disables the jnxSoamLmCurrentStatsForwardMinFlr
and jnxSoamLmHistoryStatsForwardMinFlr counters.
bForwardMaxFlr(3)
Enables/disables the jnxSoamLmCurrentStatsForwardMaxFlr
and jnxSoamLmHistoryStatsForwardMaxFlr counters.
bForwardAvgFlr(4)
Enables/disables the jnxSoamLmCurrentStatsForwardAvgFlr
and jnxSoamLmHistoryStatsForwardAvgFlr counters.
bBackwardTransmitedFrames(5)
Enables/disables the jnxSoamLmCurrentStatsBackwardTransmittedFrames
and jnxSoamLmHistoryStatsBackwardTransmittedFrames counters.
bBackwardReceivedFrames(6)
Enables/disables the jnxSoamLmCurrentStatsBackwardReceivedFrames
and jnxSoamLmHistoryStatsBackwardReceivedFrames counters.
bBackwardMinFlr(7)
Enables/disables the jnxSoamLmCurrentStatsBackwardMinFlr
and jnxSoamLmHistoryStatsBackwardMinFlr counters.
bBackwardMaxFlr(8)
Enables/disables the jnxSoamLmCurrentStatsBackwardMaxFlr
and jnxSoamLmHistoryStatsBackwardMaxFlr counters.
bBackwardAvgFlr(9)
Enables/disables the jnxSoamLmCurrentStatsBackwardAvgFlr
and jnxSoamLmHistoryStatsBackwardAvgFlr counters.
bSoamPdusSent (10)
Enables/disables the jnxSoamLmCurrentStatsSoamPdusSent
and jnxSoamLmHistoryStatsSoamPdusSent counters.
bSoamPdusReceivedbReceivedMeasurements (11)
Enables/disables the jnxSoamLmCurrentStatsSoamPdusReceived
and jnxSoamLmHistoryStatsSoamPdusReceived counters.
bAvailForwardHighLoss(12)
Enables/disables the jnxSoamLmCurrentAvailStatsForwardHighLoss
and jnxSoamLmHistoryAvailStatsForwardHighLoss counters.
bAvailForwardConsecutiveHighLoss(13)
Enables/disables the jnxSoamLmCurrentAvailStatsForwardConsecutiveHighLoss
and jnxSoamLmHistoryAvailStatsForwardConsecutiveHighLoss counters.
bAvailForwardAvailable(14)
Enables/disables the jnxSoamLmCurrentAvailStatsForwardAvailable
and jnxSoamLmHistoryAvailStatsForwardAvailable counters.
bAvailForwardUnavailable(15)
Enables/disables the jnxSoamLmCurrentAvailStatsForwardUnavailable
and jnxSoamLmHistoryAvailStatsForwardUnavailable counters.
bAvailForwardMinFlr(16)
Enables/disables the jnxSoamLmCurrentAvailStatsForwardMinFlr
and jnxSoamLmHistoryAvailStatsForwardMinFlr counters.
bAvailForwardMaxFlr(17)
Enables/disables the jnxSoamLmCurrentAvailStatsForwardMaxFlr
and jnxSoamLmHistoryAvailStatsForwardMaxFlr counters.
bAvailForwardAvgFlr(18)
Enables/disables the jnxSoamLmCurrentAvailStatsForwardAvgFlr
and jnxSoamLmHistoryAvailStatsForwardAvgFlr counters.
bAvailBackwardHighLoss(19)
Enables/disables the jnxSoamLmCurrentAvailStatsBackwardHighLoss
and jnxSoamLmHistoryAvailStatsBackwardHighLoss counters.
bAvailBackwardConsecutiveHighLoss(20)
Enables/disables the jnxSoamLmCurrentAvailStatsBackwardConsecutiveHighLoss
and jnxSoamLmHistoryAvailStatsBackwardConsecutiveHighLoss counters.
bAvailBackwardAvailable(21)
Enables/disables the jnxSoamLmCurrentAvailStatsBackwardAvailable
and jnxSoamLmHistoryAvailStatsBackwardAvailable counters.
bAvailBackwardUnavailable(22)
Enables/disables the jnxSoamLmCurrentAvailStatsBackwardUnavailable
and jnxSoamLmHistoryAvailStatsBackwardUnavailable counters.
bAvailBackwardMinFlr(23)
Enables/disables the jnxSoamLmCurrentAvailStatsBackwardMinFlr
and jnxSoamLmHistoryAvailStatsBackwardMinFlr counters.
bAvailBackwardMaxFlr(24)
Enables/disables the jnxSoamLmCurrentAvailStatsBackwardMaxFlr
and jnxSoamLmHistoryAvailStatsBackwardMaxFlr counters.
bAvailBackwardAvgFlr(25)
Enables/disables the jnxSoamLmCurrentAvailStatsBackwardAvgFlr
and jnxSoamLmHistoryAvailStatsBackwardAvgFlr counters.
Enables/disables the jnxSoamLmCurrentStatsSoamPdusReceived
and jnxSoamLmHistoryStatsSoamPdusReceived counters.
bMeasuredStatsForwardMeasuredFlr(26)
Enables/disables the jnxSoamLmMeasuredStatsForwardFlr counter.
bMeasuredStatsBackwardMeasuredFlr(27)
Enables/disables the jnxSoamLmMeasuredStatsBackwardFlr counter.
bMeasuredStatsAvailForwardStatus(28)
Enables/disables the jnxSoamLmMeasuredStatsAvailForwardStatus counter.
bMeasuredStatsAvailBackwardStatus(29)
Enables/disables the jnxSoamLmMeasuredStatsAvailBackwardStatus counter.
"
REFERENCE
"[Y.1731]"
DEFVAL { { } }
::= { jnxSoamLmCfgEntry 5 }
jnxSoamLmCfgMessagePeriod OBJECT-TYPE
SYNTAX Integer32
UNITS "ms"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the interval between Loss Measurement
OAM message transmission. For Loss Measurement monitoring
applications the default value is 1 sec.
This object is not applicable if jnxSoamLmCfgType is set to lmCcm
and is ignored for that Loss Measurement Type.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R76, R77, D29, D30"
DEFVAL { 1000 }
::= { jnxSoamLmCfgEntry 6 }
jnxSoamLmCfgPriority OBJECT-TYPE
SYNTAX IEEE8021PriorityValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the Loss Measurement OAM message priority
as well as the priority of the service/OAM traffic to be monitored.
Only frames of the same Class of Service are counted.
The default value is to be the value which yields the lowest frame
loss.
This object is not applicable if jnxSoamLmCfgType is set to lmCcm.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R1, R2, R71, D28, R72, R73, R105-R109, D45;
[MEF 10.2.1] Section 6.8"
::= { jnxSoamLmCfgEntry 7 }
jnxSoamLmCfgFrameSize OBJECT-TYPE
SYNTAX Unsigned32 (64..9600)
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the Loss Measurement frame size between
64 bytes and the maximum transmission unit of the EVC.
The range of frame sizes from 64 through 2000 octets need to be
supported, and the range of frame sizes from 2001 through 9600 octets
is suggested be supported.
The adjustment to the frame size of the standard frame size is
accomplished by the addition of a Data or Test TLV. A Data or Test TLV
is only added to the frame if the frame size is greater than 64 bytes.
This object is only valid for the entity transmitting the Loss
Measurement frames, type 'lmSlm', and is ignored by the
entity receiving frames. It is not applicable for the 'lmCcm' or
'lmLmm' types.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R78, R79, D31, D32 [Y.1731]"
DEFVAL { 64 }
::= { jnxSoamLmCfgEntry 8 }
jnxSoamLmCfgDataPattern OBJECT-TYPE
SYNTAX JnxSoamTcDataPatternType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the LM data pattern included in a Data TLV
when the size of the LM frame is determined by the
jnxSoamLmFrameSize object and jnxoamLmTestTlvIncluded is 'false'.
If the frame size object does not define the LM frame size or
jnxSoamLmTestTlvIncluded is 'true' the value of this object is
ignored.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
DEFVAL { zeroPattern }
::= { jnxSoamLmCfgEntry 9 }
jnxSoamLmCfgTestTlvIncluded OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether a Test TLV or Data TLV is included when the size
of the LM frame is determined by the jnxSoamLmFrameSize object.
A value of 'true' indicates that the Test TLV is to be included. A
value of 'false' indicates that the Data TLV is to be included.
If the frame size object does not define the LM frame size
the value of this object is ignored.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[Y.1731] 9.3"
DEFVAL { false }
::= { jnxSoamLmCfgEntry 10 }
jnxSoamLmCfgTestTlvPattern OBJECT-TYPE
SYNTAX JnxSoamTcTestPatternType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the type of test pattern to be
sent in the LM frame Test TLV when the size of LM PDU is
determined by the jnxSoamLmFrameSize object and
jnxSoamLmTestTlvIncluded is 'true'. If the frame size object
does not define the LM frame size or jnxSoamLmTestTlvIncluded
is 'false' the value of this object is ignored.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
DEFVAL { null }
::= { jnxSoamLmCfgEntry 11 }
jnxSoamLmCfgNumIntervalsStored OBJECT-TYPE
SYNTAX Unsigned32 (1..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of completed Measurement Intervals
to store in the history statistic table (jnxSoamLmHistoryStatsTable)
At least 32 completed Measurement Intervals need to be stored. 96
Measurement Intervals are recommended to be stored.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R21, D8, D9"
DEFVAL { 32 }
::= { jnxSoamLmCfgEntry 12 }
jnxSoamLmCfgDestMepId OBJECT-TYPE
SYNTAX Dot1agCfmMepIdOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Maintenance Association End Point Identifier of
another MEP in the same Maintenance Association to which
the SOAM LM frame is to be sent.
This address will be used if the value of the column
jnxSoamLmDestIsMepId is 'true'. A value of zero
means that the destination MEP ID has not been configured.
This object is only valid for the entity transmitting the Loss
Measurement frames, types 'lmLmm' and 'lmSlm'. It is not applicable for
the 'lmCcm' type.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R70, R104"
DEFVAL { 0 }
::= { jnxSoamLmCfgEntry 13 }
jnxSoamLmCfgDestIsMepId OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A value of 'true' indicates that MEPID of the target MEP is used for
SOAM LM frame transmission.
A value of 'false' indicates that the MAC address of the
target MEP is used for SOAM LM frame transmission.
This object is only valid for the entity transmitting the Loss
Measurement frames, types 'lmLmm' and 'lmSlm'. It is not applicable for
the 'lmCcm' type.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R70, R104"
DEFVAL { true }
::= { jnxSoamLmCfgEntry 14 }
jnxSoamLmCfgStartTimeType OBJECT-TYPE
SYNTAX JnxSoamTcOperationTimeType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the type of start time of the SOAM LM
session. The start time can be disabled (none), immediate, relative,
or fixed.
The value of 'none' is illegal and a write error will be returned
if this value is used.
The value of 'immediate' starts the SOAM LM session when the
jnxSoamLmCfgEnabled is true.
The value of 'fixed' starts the SOAM LM session when the
jnxSoamLmFixedStartDateAndTime is less than or equal to the current
system date and time and jnxSoamLmCfgEnabled is true. This value is used
to implement an On-Demand fixed time PM session.
The value of 'relative' starts the SOAM LM session when the current
system date and time minus the jnxSoamLmRelativeStartTime is greater
than or equal to the system date and time when the jnxSoamLmStartTimeType
object was written and jnxSoamLmCfgEnabled is true. This value is used
to implement an On-Demand relative time PM session.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R3, R7, R8, D1"
DEFVAL { immediate }
::= { jnxSoamLmCfgEntry 15 }
jnxSoamLmCfgFixedStartDateAndTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the fixed start date/time for the
SOAM Loss Measurement session. This object is used only used if
jnxSoamLmStartTimeType is 'fixed' and is ignored otherwise.
The default value is year 0000, month 01, day 01, time 00:00:00.00.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R9"
DEFVAL { '0000010100000000'H }
::= { jnxSoamLmCfgEntry 16 }
jnxSoamLmCfgRelativeStartTime OBJECT-TYPE
SYNTAX TimeInterval
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the relative start time, from the
current system time, for the SOAM LM session. This
object is used only if jnxSoamLmStartTimeType is 'relative' and is
ignored otherwise.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R9"
DEFVAL { 0 }
::= { jnxSoamLmCfgEntry 17 }
jnxSoamLmCfgRepetitionTime OBJECT-TYPE
SYNTAX Unsigned32 (0..31536000)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies a configurable repetition time between
Measurement Intervals in a Loss Measurement session, in seconds.
If the value is 0 (none), there is no time gap between the end of one
Measurement Interval and the start of a new Measurement Interval.
This is the normal usage case.
If the value is greater than 0 but less than or equal to the measurement
interval, an error is returned.
If the value is greater than one Measurement Interval there is time gap
between the end of one Measurement Interval and the start of the next
Measurement Interval. The repetition time specifies the time between
the start of consecutive Measurement Intervals; hence the gap between
the end of one Measurement Interval and the start of the next is equal
to the difference between the repetition time and the measurement
interval. During this gap, no SOAM PDUs are sent for this session and
no measurements are made.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R18, D3, R19, R20"
DEFVAL { 0 }
::= { jnxSoamLmCfgEntry 18 }
jnxSoamLmCfgAlignMeasurementIntervals OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies whether the Measurement Intervals for
the Loss Measurement session are aligned with a zero offset to
real time.
The value 'true' indicates that each Measurement Interval starts
at a time which is aligned to NE time source hour, if the repetition
time (or the Measurement Interval, if the repetition time is 0) is
a factor of an hour, i.e. 60min/15min = 4. For instance, a
Measurement Interval/repetition time of 15 minutes would stop/start
the Measurement Interval at 0, 15, 30, and 45 minutes of an hour. A
Measurement Interval/Repetition Time of 7 minutes would not align
to the hour since 7 minutes is NOT a factor of an hour, i.e.
60min/7min = 8.6. In this case the behavior is the same as if the
object is set to 'false'.
The value 'false' indicates that the first Measurement Interval starts
at an arbitrary time and each subsequent Measurement Interval starts
at a time which is determined by jnxSoamLmCfgRepetitionTime.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] D4, D5, D6"
DEFVAL { true }
::= { jnxSoamLmCfgEntry 19 }
jnxSoamLmCfgAlignMeasurementOffset OBJECT-TYPE
SYNTAX Unsigned32 (0..525600)
UNITS "minutes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the offset in minutes from the time of day value
if jnxSoamLmCfgAlignMeasurementIntervals is 'true' and the repetition
time is a factor of 60 minutes. If not, the value of this object
is ignored.
If the Measurement Interval is 15 minutes and
jnxSoamLmCfgAlignMeasurementIntervals is true and if this object was
set to 5 minutes, the Measurement Intervals would start at 5, 20, 35, 50
minutes past each hour.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] D7"
DEFVAL { 0 }
::= { jnxSoamLmCfgEntry 20 }
jnxSoamLmCfgSessionType OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..42))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether the current session is defined to
be 'Proactive' or 'On-Demand'. A value of 'proactive'
indicates the current session is 'Proactive'. A value of 'onDemand'
indicates the current session is 'On-Demand'.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R3"
DEFVAL { "proactive" }
::= { jnxSoamLmCfgEntry 21 }
jnxSoamLmCfgSessionStatus OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..44))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the current status of the LM session. A value
of 'active' indicates the current LM session is active, i.e. the current
time lies between the start time and the stop time, and
jnxSoamLmCfgEnabled is true. A value of 'notActive' indicates the
current LM session is not active, i.e. it has not started yet, has
stopped upon reaching the stop time, or is disabled.
"
::= { jnxSoamLmCfgEntry 22 }
jnxSoamLmCfgHistoryClear OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object when written clears the Loss Measurement history
Table (jnxSoamLmHistoryStatsTable) - all rows are deleted.
When read the value always returns 'false'.
Writing this value does not change the current stat table,
nor any of the items in the configuration table.
Writing this value during row creation has no effect.
"
DEFVAL { false }
::= { jnxSoamLmCfgEntry 23 }
jnxSoamLmCfgRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the row.
The writable columns in a row cannot be changed if the row
is active, except for jnxSoamLmCfgHistoryClear and jnxSoamLmCfgEnabled
objects. All columns must have a valid value before a row
can be activated.
"
::= { jnxSoamLmCfgEntry 24 }
jnxSoamLmCfgMeasurementInterval OBJECT-TYPE
SYNTAX Unsigned32 (1..525600)
UNITS "minutes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the Measurement Interval for FLR statistics,
in minutes. A Measurement Interval of 15 minutes needs to be supported,
other intervals may be supported.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R16, R17, R110, R111, D46"
DEFVAL { 15 }
::= { jnxSoamLmCfgEntry 25 }
jnxSoamLmCfgDestMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Target or Destination MAC Address Field to be transmitted.
If jnxSoamLmCfgType is 'lmCcm', the destination MAC address is always a
multicast address indicating the level of the MEG: 01-80-c2-00-00-3y,
where y is the level of the MEG. An error is returned if this object
is set to any other value.
If jnxSoamLmCfgType is 'lmLmm' or 'lmSlm', the destination address is
the unicast address of the destination MEP. An error is returned if
this object is set to a multicast address.
This address will be used if the value of the object
mefSoamLmDestIsMepId is 'false'.
This object is only valid for the entity transmitting the
SOAM LM frames and is ignored by the entity receiving
SOAM LM frames.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R70, R104"
::= { jnxSoamLmCfgEntry 26 }
jnxSoamLmCfgStopTimeType OBJECT-TYPE
SYNTAX JnxSoamTcOperationTimeType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the type of stop time to terminate the
SOAM LM session. The stop time can be forever (none), relative, or
fixed.
The value of 'none' indicates that the SOAM LM session never ends once it
has started unless it the session is disabled.
The value of 'immediate' is illegal and a write error will be returned
if this value is used.
The value of 'fixed' stops the SOAM LM session when the
jnxSoamLmFixedStopDateAndTime is less than or equal
to the current system date and time. This
value is used to implement an On-Demand fixed time PM session.
The value of 'relative' stops the SOAM LM session when the time
indicated by jnxSoamLmRelativeStopTime has passed since the session
start time as determined by the jnxSoamLmCfgStartTimeType,
jnxSoamLmCfgFixedStartDateAndTime and jnxSoamLmCfgRelativeStartTime
objects. This value is used to implement an On-Demand relative time
PM session.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R3, R10, D2"
DEFVAL { none }
::= { jnxSoamLmCfgEntry 27 }
jnxSoamLmCfgFixedStopDateAndTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the fixed stop date/time for the
SOAM Loss Measurement session. This object is used only used
if jnxSoamLmStopTimeType is 'fixed' and is ignored otherwise.
The default value is year 0000, month 01, day 01, time 00:00:00.00.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R10, R13"
DEFVAL { '0000010100000000'H }
::= { jnxSoamLmCfgEntry 28 }
jnxSoamLmCfgRelativeStopTime OBJECT-TYPE
SYNTAX TimeInterval
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the relative stop time, from the
session start time, to stop the SOAM LM session. This
object is used only if jnxSoamLmStopTimeType is 'relative' and is
ignored otherwise.
object can only be written at row creation time 1922 and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R11"
DEFVAL { 0 }
::= { jnxSoamLmCfgEntry 29 }
jnxSoamLmCfgAvailabilityMeasurementInterval OBJECT-TYPE
SYNTAX Unsigned32 (1..525600)
UNITS "minutes"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the availability Measurement Interval in
minutes.
A Measurement Interval of 15 minutes is to be supported, other intervals
can be supported.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R16, R17"
DEFVAL { 15 }
::= { jnxSoamLmCfgEntry 30 }
jnxSoamLmCfgAvailabilityNumConsecutiveMeasPdus OBJECT-TYPE
SYNTAX Unsigned32 (1..1000000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies a configurable number of consecutive
loss measurement PDUs to be used in evaluating the
availability/unavailability status of each availability
indicator per MEF 10.2.1. Loss Measurement PDUs (LMMs, CCMs or
SLMs) are sent regularly with a period defined by
jnxSoamLmCfgMessagePeriod. Therefore, this object, when
multiplied by mefSoamLmCfgMessagePeriod, 2050 is equivalent to
is equivalent to the Availability parameter of 'delta_t' as
specified by MEF 10.2.1.
If the jnxSoamLmCfgType is lmLMM or lmCCM, this object defines the
number of LMM or CCM PDUs transmitted during each 'delta_t' period.
The Availability flr for a given 'delta_t' can be calculated based
on the counters in the last LMM/R or CCM during this 'delta_t' and
the last LMM/R or CCM in the previous 'delta_t'.
If the jnxSoamLmCfgType is lmSLM, this object defines the number
of SLM PDUs transmitted during each 'delta_t' period. The
Availability flr for a given 'delta_t' is calculated based on the
number of those SLM PDUs that are lost.
If the jnxSoamLmCfgType is lmLMM or lmCCM, the number range of 1
through 10 must be supported. The number range of 10 through 1000000
may be supported, but is not mandatory.
If the jnxSoamLmCfgType is lmSLM, the number range of 10 through
100 must be supported. The number range of 100 through 1000000
may be supported, but is not mandatory.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF 10.2.1] Section 7.9.8; [MEF SOAM-PM] R80, D33, R81"
DEFVAL { 10 }
::= { jnxSoamLmCfgEntry 31 }
jnxSoamLmCfgAvailabilityFlrThreshold OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies a configurable availability threshold to be
used in evaluating the availability/unavailability status of an
availability indicator per MEF 10.2.1. The availability threshold range
of 0.00 (0) through 1.00 (100000) is supported. This parameter is
equivalent to the Availability parameter of 'C' as specified by
MEF 10.2.1.
Units are in milli-percent, where 1 indicates 0.001 percent.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF 10.2.1] Section 7.9.8; [MEF SOAM-PM] R81, R82, D34"
DEFVAL { 50000 }
::= { jnxSoamLmCfgEntry 32 }
jnxSoamLmCfgAvailabilityNumConsecutiveIntervals OBJECT-TYPE
SYNTAX Unsigned32 (1..1000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies a configurable number of consecutive
availability indicators to be used to determine a change in the
availability status as indicated by MEF 10.2.1. This parameter is
equivalent to the Availability parameter of 'n' as specified
by MEF 10.2.1.
The number range of 1 through 10 must be supported. The number
range of 1 through 1000 may be supported, but is not mandatory.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF 10.2.1] Section 7.9.8; [MEF SOAM-PM] R80, D33"
DEFVAL { 10 }
::= { jnxSoamLmCfgEntry 33 }
jnxSoamLmCfgAvailabilityNumConsecutiveHighFlr OBJECT-TYPE
SYNTAX Unsigned32 (1..1000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies a configurable number of consecutive
availability indicators to be used for assessing CHLI. This
parameter is equivalent to the Resilency parameter of 'p' as
specified by MEF 10.2.1.
jnxSoamLmCfgAvailabilityNumConsecutiveHighFlr must be strictly less than
jnxSoamLmCfgAvailabilityNumConsecutiveIntervals. If not, the count of
high loss intervals over time, jnxSoamLmAvailabilityHighLoss, and the
count of consecutive high loss levels,
jnxSoamLmAvailabilityConsecutiveHighLoss, is disabled.
The number range of 1 through 10 must be supported. The number range
of 1 through 1000 may be supported, but is not mandatory.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF 10.2.1] Section 7.9.8; [MEF SOAM-PM] R86, D35, D36"
DEFVAL { 5 }
::= { jnxSoamLmCfgEntry 34 }
-- *****************************************************************************
-- Ethernet Loss Measurement Measured Statistic Table
-- *****************************************************************************
jnxSoamLmMeasuredStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxSoamLmMeasuredStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object contains the last measured results for a SOAM Loss
Measurement session.
Each row in the table represents a Loss Measurement session for
the defined MEP. This table uses four indices. The first three indices
are the indices of the Maintenance Domain, MaNet, and MEP tables. The
fourth index is the specific LM session on the selected MEP.
Instances of this managed object are created automatically
by the SNMP Agent when the Loss Measurement session is running.
Each object in this table applies only if the corresponding bit is set in
jnxSoamLmCfgMeasurementEnable.
The objects in this table do not need to be persistent upon reboot
or restart of a device.
"
REFERENCE
"[MEF SOAM-PM] R7, R15, 8D18"
::= { jnxSoamPmLmObjects 2 }
jnxSoamLmMeasuredStatsEntry OBJECT-TYPE
SYNTAX JnxSoamLmMeasuredStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The conceptual row of jnxSoamLmMeasuredStatsTable"
INDEX {
dot1agCfmMdIndex,
dot1agCfmMaIndex,
dot1agCfmMepIdentifier,
jnxSoamLmCfgIndex
}
::= { jnxSoamLmMeasuredStatsTable 1 }
JnxSoamLmMeasuredStatsEntry ::= SEQUENCE {
jnxSoamLmMeasuredStatsForwardFlr Unsigned32,
jnxSoamLmMeasuredStatsBackwardFlr Unsigned32,
jnxSoamLmMeasuredStatsAvailForwardStatus JnxSoamTcAvailabilityType,
jnxSoamLmMeasuredStatsAvailBackwardStatus JnxSoamTcAvailabilityType,
jnxSoamLmMeasuredStatsAvailForwardLastTransitionTime DateAndTime,
jnxSoamLmMeasuredStatsAvailBackwardLastTransitionTime DateAndTime
}
jnxSoamLmMeasuredStatsForwardFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the last frame loss ratio in the forward direction
calculated by this MEP. The FLR value
is a ratio that is expressed as a percent with a value of 0 (ratio
0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmMeasuredStatsEntry 1 }
jnxSoamLmMeasuredStatsBackwardFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the last frame loss ratio in the backward direction
calculated by this MEP. The FLR value
is a ratio that is expressed as a percent with a value of 0 (ratio
0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmMeasuredStatsEntry 2 }
jnxSoamLmMeasuredStatsAvailForwardStatus OBJECT-TYPE
SYNTAX JnxSoamTcAvailabilityType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the availability status (the outcome of the
last known availability indicator) in the forward direction.
Note that the status of an availability indicator is not known until
the loss for a number of subsequent availability indicators has been
calculated (as determined by
jnxSoamLmCfgAvailabilityNumConsecutiveIntervals)
"
REFERENCE
"[MEF SOAM-PM] R83"
::= { jnxSoamLmMeasuredStatsEntry 3 }
jnxSoamLmMeasuredStatsAvailBackwardStatus OBJECT-TYPE
SYNTAX JnxSoamTcAvailabilityType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the availability status (the outcome of the
last availability indicator) in the backward direction.
Note that the status of an availability indicator is not known until
the loss for a number of subsequent availability indicators has been
calculated (as determined by
jnxSoamLmCfgAvailabilityNumConsecutiveIntervals)
"
REFERENCE
"[MEF SOAM-PM] R83"
::= { jnxSoamLmMeasuredStatsEntry 4 }
jnxSoamLmMeasuredStatsAvailForwardLastTransitionTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the time of the last transition
between available and unavailable in the forward direction.
If there have been no transitions since the Loss Measurement
Session was started, this is set to 0.
"
REFERENCE
"[MEF SOAM-PM] R83"
::= { jnxSoamLmMeasuredStatsEntry 5 }
jnxSoamLmMeasuredStatsAvailBackwardLastTransitionTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the time of the last transition
between available and unavailable in the backward direction.
If there have been no transitions since the Loss Measurement
Session was started, this is set to 0.
"
REFERENCE
"[MEF SOAM-PM] R83"
::= { jnxSoamLmMeasuredStatsEntry 6 }
-- *****************************************************************************
-- Ethernet Loss Measurement Current Statistic Table
-- *****************************************************************************
jnxSoamLmCurrentStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxSoamLmCurrentStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the results for the current Measurement
Interval in a SOAM Loss Measurement session gathered during the interval
indicated by iterator counts.
A row in this table is created automatically
by the SNMP Agent when the Loss Measurement session is configured.
Each row in the table represents the current statistics for a Loss
Measurement session for the defined MEP. This table uses four indices.
The first three indices are the indices of the Maintenance Domain, MaNet,
and MEP tables. The fourth index is the specific LM session on the
selected MEP. There may be more than one LM session per MEP. The
main use case for this is to allow multiple CoS instances to be
operating simultaneously for a MEP.
The objects in this table apply regardless of the value of
jnxSoamLmCfgType unless otherwise specified in the object description.
Except for jnxSoamLmCurrentStatsIndex, jnxSoamLmCurrentStatsStartTime,
jnxSoamLmCurrentStatsElapsedTime and jnxSoamLmCurrentStatsSuspect,
each object in this table applies only if the corresponding bit is set in
jnxSoamLmCfgMeasurementEnable.
The objects in this table do not need to be persistent upon reboot or
restart of a device.
"
REFERENCE
"[MEF SOAM-PM] R7, R15, D9, D18"
::= { jnxSoamPmLmObjects 3 }
jnxSoamLmCurrentStatsEntry OBJECT-TYPE
SYNTAX JnxSoamLmCurrentStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The conceptual row of jnxSoamLmCurrentStatsTable"
INDEX {
dot1agCfmMdIndex,
dot1agCfmMaIndex,
dot1agCfmMepIdentifier,
jnxSoamLmCfgIndex
}
::= { jnxSoamLmCurrentStatsTable 1 }
JnxSoamLmCurrentStatsEntry ::= SEQUENCE {
jnxSoamLmCurrentStatsIndex Unsigned32,
jnxSoamLmCurrentStatsStartTime DateAndTime,
jnxSoamLmCurrentStatsElapsedTime TimeInterval,
jnxSoamLmCurrentStatsSuspect TruthValue,
jnxSoamLmCurrentStatsForwardTransmittedFrames Gauge32,
jnxSoamLmCurrentStatsForwardReceivedFrames Gauge32,
jnxSoamLmCurrentStatsForwardMinFlr Unsigned32,
jnxSoamLmCurrentStatsForwardMaxFlr Unsigned32,
jnxSoamLmCurrentStatsForwardAvgFlr Unsigned32,
jnxSoamLmCurrentStatsBackwardTransmittedFrames Gauge32,
jnxSoamLmCurrentStatsBackwardReceivedFrames Gauge32,
jnxSoamLmCurrentStatsBackwardMinFlr Unsigned32,
jnxSoamLmCurrentStatsBackwardMaxFlr Unsigned32,
jnxSoamLmCurrentStatsBackwardAvgFlr Unsigned32,
jnxSoamLmCurrentStatsSoamPdusSent Gauge32,
jnxSoamLmCurrentStatsSoamPdusReceived Gauge32
}
jnxSoamLmCurrentStatsIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index for the current Measurement Interval for this
PM session. This value will become the value for
jnxSoamLmHistoryStatsIndex once the Measurement Interval
is completed.
Measurement Interval indexes are assigned sequentially by
the SNMP Agent. The first Measurement Interval that occurs after
the session is started is assigned index 1.
"
::= { jnxSoamLmCurrentStatsEntry 1 }
jnxSoamLmCurrentStatsStartTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time that the current Measurement Interval started.
"
REFERENCE
"[MEF SOAM-PM] R22, R87, R112"
::= { jnxSoamLmCurrentStatsEntry 2 }
jnxSoamLmCurrentStatsElapsedTime OBJECT-TYPE
SYNTAX TimeInterval
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time that the current Measurement Interval has been running, in 0.01
seconds.
"
REFERENCE
"[MEF SOAM-PM] R24, R87, R112"
::= { jnxSoamLmCurrentStatsEntry 3 }
jnxSoamLmCurrentStatsSuspect OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Whether the Measurement Interval has been marked as suspect.
The object is set to false at the start of a measurement
interval. It is set to true when there is a discontinuity in the
performance measurements during the Measurement Interval. Conditions
for a discontinuity include, but are not limited to the following:
1 - The local time-of-day clock is adjusted by at least 10 seconds
2 - The conducting of a performance measurement is halted before the
current Measurement Interval is completed
3 - A local test, failure, or reconfiguration that disrupts service
"
REFERENCE
"[MEF SOAM-PM] R39, R40, R41"
::= { jnxSoamLmCurrentStatsEntry 4 }
jnxSoamLmCurrentStatsForwardTransmittedFrames OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the number of frames transmitted in the
forward direction by this MEP.
For a PM Session of types lmLmm and lmCcm this includes Ethernet
Service Frames and SOAM PDUs that are in a higher MEG level only.
For a PM Session of type lmSlm this includes the count of SOAM
ETH-SLM frames only.
"
REFERENCE
"[MEF SOAM-PM] R69, R87, R112"
::= { jnxSoamLmCurrentStatsEntry 5 }
jnxSoamLmCurrentStatsForwardReceivedFrames OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the number of frames received in the
forward direction by this MEP.
For a PM Session of types lmLmm and lmCcm this includes Ethernet
Service Frames and SOAM PDUs that are in a higher MEG level only.
For a PM Session of types lmSlm this includes the count of SOAM
ETH-SLM frames only.
"
REFERENCE
"[MEF SOAM-PM] R69, R87, R112"
::= { jnxSoamLmCurrentStatsEntry 6 }
jnxSoamLmCurrentStatsForwardMinFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the minimum one-way frame loss
ratio in the forward direction calculated by this MEP for this
Measurement Interval. The FLR value is a ratio that is expressed as a
percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmCurrentStatsEntry 7 }
jnxSoamLmCurrentStatsForwardMaxFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum one-way frame loss
ratio in the forward direction calculated by this MEP for this
Measurement Interval. The FLR value is a ratio that is expressed as a
percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmCurrentStatsEntry 8 }
jnxSoamLmCurrentStatsForwardAvgFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average one-way frame loss
ratio in the forward direction calculated by this MEP for this
Measurement Interval. The FLR value is a ratio that is expressed as a
percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmCurrentStatsEntry 9 }
jnxSoamLmCurrentStatsBackwardTransmittedFrames OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the number of frames transmitted in the
backward direction by this MEP.
For a PM Session of type lmLmm and lmCcm this includes Ethernet
Service Frames and SOAM PDUs that are in a higher MEG level only.
For a PM Session of type lmSlm this includes the count of SOAM
ETH-SLM frames only.
"
REFERENCE
"[MEF SOAM-PM] R69, R87, R112"
::= { jnxSoamLmCurrentStatsEntry 10 }
jnxSoamLmCurrentStatsBackwardReceivedFrames OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the number of frames received in the
backward direction by this MEP.
For a PM Session of type lmLmm this includes Ethernet
Service Frames and SOAM PDUs that are in a higher MEG level only.
For a PM Session of type lmSlm this includes the count of SOAM
ETH-SLM frames only.
"
REFERENCE
"[MEF SOAM-PM] R69, R87, R112"
::= { jnxSoamLmCurrentStatsEntry 11 }
jnxSoamLmCurrentStatsBackwardMinFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the minimum one-way frame loss
ratio in the backward direction calculated by this MEP for
this Measurement Interval. The FLR value is a ratio that is expressed as a
percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmCurrentStatsEntry 12 }
jnxSoamLmCurrentStatsBackwardMaxFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum one-way frame loss
ratio in the backward direction calculated by this MEP for
this Measurement Interval. The FLR value is a ratio that is expressed
as a percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmCurrentStatsEntry 13 }
jnxSoamLmCurrentStatsBackwardAvgFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average one-way frame loss
ratio in the backward direction calculated by this MEP for
this Measurement Interval. The FLR value is a ratio that is expressed as a
percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmCurrentStatsEntry 14 }
jnxSoamLmCurrentStatsSoamPdusSent OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the count of the number of SOAM PDUs sent
during this Measurement Interval.
This object applies when jnxSoamLmCfgType is lmLmm, lmSlm, or
lmCcm. It indicates the number of LMM, CCM, or SLM SOAM frames
transmitted.
"
REFERENCE
"[MEF SOAM-PM] R69, R87, R112"
::= { jnxSoamLmCurrentStatsEntry 15 }
jnxSoamLmCurrentStatsSoamPdusReceived OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the count of the number of SOAM PDUs
PDUs received in this Measurement Interval.
This object applies when jnxSoamLmCfgType is lmLmm, lmSlm, or
lmCcm. This object indicates the number of LMR, CCM, or SLR SOAM
frames received.
"
REFERENCE
"[MEF SOAM-PM] R69, R87, R112"
::= { jnxSoamLmCurrentStatsEntry 16 }
-- *****************************************************************************
-- Ethernet Loss Measurement Loss History Statistic Table
-- *****************************************************************************
jnxSoamLmHistoryStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxSoamLmHistoryStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the results for history Measurement
Intervals in a SOAM Loss Measurement session.
Rows of this table object are created automatically
by the SNMP Agent when the Loss Measurement session is running and a
Measurement Interval is completed.
Each row in the table represents the history statistics for a Loss
Measurement session Measurement Interval for the defined MEP. This
table uses five indices. The first three indices are the indices of
the Maintenance Domain, MaNet, and MEP tables. The fourth index is the
specific LM session on the selected MEP. The fifth index index the
specific Measurement Interval.
At least 32 completed Measurement Intervals are to be supported. 96
completed Measurement Intervals are recommended to be supported. If
there are at least 32 rows in the table and a new Measurement Interval
completes and a new row is to be added to the table, the oldest completed
Measurement Interval may be deleted (row deletion). If the measurement
interval is other than 15 minutes then a minimum of 8 hours of
completed Measurement Intervals are to be supported and 24 hours are
recommended to be supported.
Except for jnxSoamLmHistoryStatsIndex, jnxSoamLmHistoryStatsEndTime,
jnxSoamLmHistoryStatsElapsedTime and jnxSoamLmHistoryStatsSuspect,
each object in this table applies only if the corresponding bit is set in
jnxSoamLmCfgMeasurementEnable.
The rows and objects in this table are to be persistent upon reboot
or restart of a device.
"
REFERENCE
"[MEF SOAM-PM] R7, R15, R21, D8, R25"
::= { jnxSoamPmLmObjects 4 }
jnxSoamLmHistoryStatsEntry OBJECT-TYPE
SYNTAX JnxSoamLmHistoryStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The conceptual row of jnxSoamLmHistoryStatsTable"
INDEX {
dot1agCfmMdIndex,
dot1agCfmMaIndex,
dot1agCfmMepIdentifier,
jnxSoamLmCfgIndex,
jnxSoamLmHistoryStatsIndex
}
::= { jnxSoamLmHistoryStatsTable 1 }
JnxSoamLmHistoryStatsEntry ::= SEQUENCE {
jnxSoamLmHistoryStatsIndex Unsigned32,
jnxSoamLmHistoryStatsEndTime DateAndTime,
jnxSoamLmHistoryStatsElapsedTime TimeInterval,
jnxSoamLmHistoryStatsSuspect TruthValue,
jnxSoamLmHistoryStatsForwardTransmittedFrames Gauge32,
jnxSoamLmHistoryStatsForwardReceivedFrames Gauge32,
jnxSoamLmHistoryStatsForwardMinFlr Unsigned32,
jnxSoamLmHistoryStatsForwardMaxFlr Unsigned32,
jnxSoamLmHistoryStatsForwardAvgFlr Unsigned32,
jnxSoamLmHistoryStatsBackwardTransmittedFrames Gauge32,
jnxSoamLmHistoryStatsBackwardReceivedFrames Gauge32,
jnxSoamLmHistoryStatsBackwardMinFlr Unsigned32,
jnxSoamLmHistoryStatsBackwardMaxFlr Unsigned32,
jnxSoamLmHistoryStatsBackwardAvgFlr Unsigned32,
jnxSoamLmHistoryStatsSoamPdusSent Gauge32,
jnxSoamLmHistoryStatsSoamPdusReceived Gauge32
}
jnxSoamLmHistoryStatsIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index for the Measurement Interval within this
PM session.
Measurement Interval indexes are assigned sequentially by
the SNMP Agent. The first Measurement Interval that occurs after
the session is started is assigned index 1. Measurement Intervals
for FLR (stored in this table) are based on
iterator count and are indexed independently
of Measurement Intervals for availability
Referential integrity is necessary, i.e., the index needs to be
persistent upon a reboot or restart of a device. The index
is never reused while this session is active until it wraps to zero.
The index value keeps increasing up to that time.
"
::= { jnxSoamLmHistoryStatsEntry 1 }
jnxSoamLmHistoryStatsEndTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time that the Measurement Interval ended.
"
REFERENCE
"[MEF SOAM-PM] R23, R87, R112"
::= { jnxSoamLmHistoryStatsEntry 2 }
jnxSoamLmHistoryStatsElapsedTime OBJECT-TYPE
SYNTAX TimeInterval
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The length of time that the Measurement Interval ran for,
in 0.01 seconds.
"
REFERENCE
"[MEF SOAM-PM] R24, R87, R112"
::= { jnxSoamLmHistoryStatsEntry 3 }
jnxSoamLmHistoryStatsSuspect OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Whether the Measurement Interval has been marked as suspect.
The object is set to true when there is a discontinuity in the
performance measurements during the Measurement Interval. Conditions
for a discontinuity include, but are not limited to the following:
1 - The local time-of-day clock is adjusted by at least 10 seconds
2 - The conducting of a performance measurement is halted before the
current Measurement Interval is completed
3 - A local test, failure, or reconfiguration that disrupts service
"
REFERENCE
"[MEF SOAM-PM] R39, R40, R41, R42"
::= { jnxSoamLmHistoryStatsEntry 4 }
jnxSoamLmHistoryStatsForwardTransmittedFrames OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the number of frames transmitted in the
forward direction by this MEP.
For a PM Session of types lmLmm and lmCcm this includes Ethernet
Service Frames and SOAM PDUs that are in a higher MEG level only.
For a PM Session of type lmSlm this includes the count of OAM
ETH-SLM frames only.
"
REFERENCE
"[MEF SOAM-PM] R69, R87, R112"
::= { jnxSoamLmHistoryStatsEntry 5 }
jnxSoamLmHistoryStatsForwardReceivedFrames OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the number of frames received in the
forward direction by this MEP.
For a PM Session of types lmLmm and lmCcm this includes Ethernet
Service Frames and SOAM PDUs that are in a higher MEG level only.
For a PM Session of type lmSlm this includes the count of OAM
ETH-SLM frames only.
"
REFERENCE
"[MEF SOAM-PM] R69, R87, R112"
::= { jnxSoamLmHistoryStatsEntry 6 }
jnxSoamLmHistoryStatsForwardMinFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the minimum one-way frame loss
ratio in the forward direction calculated by this MEP for this
Measurement Interval. The FLR value is a ratio that is expressed as a
percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmHistoryStatsEntry 7 }
jnxSoamLmHistoryStatsForwardMaxFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum one-way frame loss
ratio in the forward direction calculated by this MEP for this
Measurement Interval. The FLR value is a ratio that is expressed as a
percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmHistoryStatsEntry 8 }
jnxSoamLmHistoryStatsForwardAvgFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average one-way frame loss
ratio in the forward direction calculated by this MEP for this
Measurement Interval. The FLR value is a ratio that is expressed as a
percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmHistoryStatsEntry 9 }
jnxSoamLmHistoryStatsBackwardTransmittedFrames OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the number of frames transmitted in the
backward direction by this MEP.
For a PM Session of type lmLmm and lmCcm this includes Ethernet
Service Frames and SOAM PDUs that are in a higher MEG level only.
For a PM Session of types lmSlm this includes the count of SOAM
ETH-SLM frames only.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmHistoryStatsEntry 10 }
jnxSoamLmHistoryStatsBackwardReceivedFrames OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the number of frames received in the
backward direction by this MEP.
For a PM Session of type lmLmm and lmCcm this includes Ethernet
Service Frames and SOAM PDUs that are in a higher MEG level only.
For a PM Session of types lmSlm this includes the count of SOAM
ETH-SLM frames only.
"
REFERENCE
"[MEF SOAM-PM] R69, R87, R112"
::= { jnxSoamLmHistoryStatsEntry 11 }
jnxSoamLmHistoryStatsBackwardMinFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the minimum one-way frame loss
ratio in the backward direction calculated by this MEP for
this Measurement Interval. The FLR value is a ratio that is expressed as a
percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] R69, R87, R112"
::= { jnxSoamLmHistoryStatsEntry 12 }
jnxSoamLmHistoryStatsBackwardMaxFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum one-way frame loss
ratio in the backward direction calculated by this MEP for
this Measurement Interval. The FLR value is a ratio that is expressed as a
percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmHistoryStatsEntry 13 }
jnxSoamLmHistoryStatsBackwardAvgFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average one-way frame loss
ratio in the backward direction calculated by this MEP for
this Measurement Interval. The FLR value is a ratio that is expressed as a
percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmHistoryStatsEntry 14 }
jnxSoamLmHistoryStatsSoamPdusSent OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the count of the number of SOAM PDUs sent
during this Measurement Interval.
This object applies when jnxSoamLmCfgType is lmLmm, lmSlm,
or lmCcm. It indicates the number of LMM, CCM, or SLM SOAM frames
transmitted.
"
REFERENCE
"[MEF SOAM-PM] R69, R87"
::= { jnxSoamLmHistoryStatsEntry 15 }
jnxSoamLmHistoryStatsSoamPdusReceived OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the count of the number of SOAM
PDUs received in this Measurement Interval.
This object applies when jnxSoamLmCfgType is lmLmm, lmSlm,
or lmCcm. This object indicates the number of LMR, CCM, or SLR
SOAM frames received.
"
REFERENCE
"[MEF SOAM-PM] R69, R87"
::= { jnxSoamLmHistoryStatsEntry 16 }
-- *****************************************************************************
-- Ethernet Delay Measurement Configuration Table
-- *****************************************************************************
jnxSoamDmCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxSoamDmCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table includes configuration objects and operations for the
Delay Measurement function.
Each row in the table represents a Delay Measurement session for
the defined MEP. This table uses four indices. The first three indices
are the indices of the Maintenance Domain, MaNet, and MEP tables. The
fourth index is the specific DM session on the selected MEP.
A Delay Measurement session is created on an existing MEP by first
accessing the jnxSoamDmOperNextIndex object and using this value as
the jnxSoamDmCfgIndex in the row creation.
Some writable objects in this table are only applicable in certain cases
(as described under each object), and attempts to write values for them
in other cases will be ignored.
The writable objects in this table need to be persistent upon reboot
or restart of a device.
"
REFERENCE
"[MEF SOAM-PM] R50; [Y.1731]"
::= { jnxSoamPmDmObjects 1 }
jnxSoamDmCfgEntry OBJECT-TYPE
SYNTAX JnxSoamDmCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The conceptual row of jnxSoamDmCfgTable."
INDEX {
dot1agCfmMdIndex,
dot1agCfmMaIndex,
dot1agCfmMepIdentifier,
jnxSoamDmCfgIndex
}
::= { jnxSoamDmCfgTable 1 }
JnxSoamDmCfgEntry ::= SEQUENCE {
jnxSoamDmCfgIndex Unsigned32,
jnxSoamDmCfgType INTEGER,
jnxSoamDmCfgVersion Unsigned32,
jnxSoamDmCfgEnabled TruthValue,
jnxSoamDmCfgMeasurementEnable BITS,
jnxSoamDmCfgMessagePeriod Integer32,
jnxSoamDmCfgPriority IEEE8021PriorityValue,
jnxSoamDmCfgFrameSize Unsigned32,
jnxSoamDmCfgDataPattern JnxSoamTcDataPatternType,
jnxSoamDmCfgTestTlvIncluded TruthValue,
jnxSoamDmCfgTestTlvPattern JnxSoamTcTestPatternType,
jnxSoamDmCfgNumIntervalsStored Unsigned32,
jnxSoamDmCfgDestMepId Dot1agCfmMepIdOrZero,
jnxSoamDmCfgDestIsMepId TruthValue,
jnxSoamDmCfgStartTimeType JnxSoamTcOperationTimeType,
jnxSoamDmCfgRepetitionTime Unsigned32,
jnxSoamDmCfgAlignMeasurementIntervals TruthValue,
jnxSoamDmCfgInterFrameDelayVariationSelectionOffset Unsigned32,
jnxSoamDmCfgSessionType OCTET STRING,
jnxSoamDmCfgSessionStatus OCTET STRING,
jnxSoamDmCfgHistoryClear TruthValue,
jnxSoamDmCfgRowStatus RowStatus,
jnxSoamDmCfgMeasurementInterval Unsigned32,
jnxSoamDmCfgDestMacAddress MacAddress,
jnxSoamDmCfgSourceMacAddress MacAddress,
jnxSoamDmCfgFixedStartDateAndTime DateAndTime,
jnxSoamDmCfgRelativeStartTime TimeInterval,
jnxSoamDmCfgStopTimeType JnxSoamTcOperationTimeType,
jnxSoamDmCfgFixedStopDateAndTime DateAndTime,
jnxSoamDmCfgRelativeStopTime TimeInterval,
jnxSoamDmCfgAlignMeasurementOffset Unsigned32,
jnxSoamDmCfgNumMeasBinsPerFrameDelayInterval Unsigned32,
jnxSoamDmCfgNumMeasBinsPerInterFrameDelayVariationInterval Unsigned32,
jnxSoamDmCfgNumMeasBinsPerFrameDelayRangeInterval Unsigned32
}
jnxSoamDmCfgIndex
OBJECT-TYPE
SYNTAX Unsigned32(1..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An index to the Delay Measurement Configuration table which indicates
the specific measurement session for the MEP.
jnxSoamPmMepOperNextIndex needs to be inspected to find an
available index for row-creation.
Referential integrity is necessary, i.e., the index needs to be
persistent upon a reboot or restart of a device. The index
is never reused for other PM sessions on the same MEP while this
session is active. The index value keeps increasing until it
wraps to zero. This is to facilitate access control based
on a fixed index for an EMS, since the index is not reused.
"
::= { jnxSoamDmCfgEntry 1 }
jnxSoamDmCfgType OBJECT-TYPE
SYNTAX INTEGER {
dmDmm (1),
dm1DmTx (2),
dm1DmRx (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates what type of Delay Measurement is to
be performed.
dmDmm(1) DMM SOAM PDU generated, DMR responses received
(one-way or two-way measurements)
dm1DmTx(2) 1DM SOAM PDU generated (one-way measurements are made by
the receiver)
dm1DmRx(3) 1DM SOAM PDU received and tracked (one-way measurements)
The exact PDUs to use are specified by this object in combination with
jnxSoamDmCfgVersion.
The value dmDMM is required. The values dm1DmTx and dm1DmRx are optional.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R52, R53, R54, O5, R88"
::= { jnxSoamDmCfgEntry 2 }
jnxSoamDmCfgVersion OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the version of the PDUs used to perform
Delay Measurement.
Version 0 indicates the PDU formats defined in Y.1731-2008.
Version 1 indicates the PDU formats defined in Y.1731-2011.
The exact PDUs to use are specified by this object in combination with
jnxSoamDmCfgType.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[Y.1731]"
DEFVAL { 0 }
::= { jnxSoamDmCfgEntry 3 }
jnxSoamDmCfgEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies whether the Delay Measurement session is
enabled.
The value 'true' indicates the Delay Measurement session is enabled AND
SOAM PDUs are sent and/or measurements are collected when the session
is running according to the scheduling objects (start time, stop time,
etc.).
The value 'false' indicates the Delay Measurement session is disabled
AND SOAM PDUs are not sent and/or measurements collected.
For a Delay Measurement session to be removed the row is deleted in
order to release internal resources.
This object can written/modified after row creation time.
If the DM session is enabled it resumes after shutdown/restart.
If the DM session is disabled the current Measurement Interval is
stopped, if it in process at the time, and all the in process calculations
for the partially completed Measurement Interval are finalized.
This object does not affect whether the single-ended Responder is
enabled or not, which is enabled or disabled by the
jnxSoamPmMepDmSingleEndedResponder object.
"
REFERENCE
"[MEF SOAM-PM] R4, R5, R6, O1, R12, R14"
DEFVAL { true }
::= { jnxSoamDmCfgEntry 4 }
jnxSoamDmCfgMeasurementEnable OBJECT-TYPE
SYNTAX BITS {
bSoamPdusSent(0),
bSoamPdusReceived(1),
bFrameDelayTwoWayBins(2),
bFrameDelayTwoWayMin(3),
bFrameDelayTwoWayMax(4),
bFrameDelayTwoWayAvg(5),
bFrameDelayForwardBins(6),
bFrameDelayForwardMin(7),
bFrameDelayForwardMax(8),
bFrameDelayForwardAvg(9),
bFrameDelayBackwardBins(10),
bFrameDelayBackwardMin(11),
bFrameDelayBackwardMax(12),
bFrameDelayBackwardAvg(13),
bIfdvForwardBins(14),
bIfdvForwardMin(15),
bIfdvForwardMax(16),
bIfdvForwardAvg(17),
bIfdvBackwardBins(18),
bIfdvBackwardMin(19),
bIfdvBackwardMax(20),
bIfdvBackwardAvg(21),
bIfdvTwoWayBins(22),
bIfdvTwoWayMin(23),
bIfdvTwoWayMax(24),
bIfdvTwoWayAvg(25),
bFrameDelayRangeForwardBins(26),
bFrameDelayRangeForwardMax(27),
bFrameDelayRangeForwardAvg(28),
bFrameDelayRangeBackwardBins(29),
bFrameDelayRangeBackwardMax(30),
bFrameDelayRangeBackwardAvg(31),
bFrameDelayRangeTwoWayBins(32),
bFrameDelayRangeTwoWayMax(33),
bFrameDelayRangeTwoWayAvg(34),
bMeasuredStatsFrameDelayTwoWay(35),
bMeasuredStatsFrameDelayForward(36),
bMeasuredStatsFrameDelayBackward(37),
bMeasuredStatsIfdvTwoWay(38),
bMeasuredStatsIfdvForward(39),
bMeasuredStatsIfdvBackward(40)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A vector of bits that indicates the type of SOAM DM counters that
are enabled.
A bit set to '1' enables the specific SOAM DM counter.
A bit set to '0' disables the SOAM DM counter.
If a particular SOAM DM counter is not supported the BIT value is
set to '0'.
Not all SOAM DM counters are supported for all SOAM DM types.
This object can only be written at row creation time and cannot be
modified once it has been created.
bSoamPdusSent(0)
Enables/disables the jnxSoamDmCurrentStatsSoamPdusSent
and jnxSoamDmHistoryStatsSoamPdusSent counters.
bSoamPdusReceived(1)
Enables/disables the jnxSoamDmCurrentStatsSoamPdusReceived
and jnxSoamDmHistoryStatsSoamPdusReceived counters.
bFrameDelayTwoWayBins(2)
Enables/disables the jnxSoamDmCurrentStatsBinsEntry counter
and the jnxSoamDmHistoryStatsBinsEntry counter
when the jnxSoamDmCfgMeasBinType is 'twoWayFrameDelay'.
bFrameDelayTwoWayMin(3)
Enables/disables the jnxSoamDmCurrentStatsFrameDelayTwoWayMin
and jnxSoamDmHistoryStatsFrameDelayTwoWayMin counters.
bFrameDelayTwoWayMax(4)
Enables/disables the jnxSoamDmCurrentStatsFrameDelayTwoWayMax
and jnxSoamDmHistoryStatsFrameDelayTwoWayMax counters.
bFrameDelayTwoWayAvg(5)
Enables/disables the jnxSoamDmCurrentStatsFrameDelayTwoWayAvg
and jnxSoamDmHistoryStatsFrameDelayTwoWayAvg counters.
bFrameDelayForwardBins(6)
Enables/disables the jnxSoamDmCurrentStatsBinsEntry counter
and the jnxSoamDmHistoryStatsBinsEntry counter
when the jnxSoamDmCfgMeasBinType is 'forwardFrameDelay'.
bFrameDelayForwardMin(7)
Enables/disables the jnxSoamDmCurrentStatsFrameDelayForwardMin
and jnxSoamDmHistoryStatsFrameDelayForwardMin counters.
bFrameDelayForwardMax(8)
Enables/disables the jnxSoamDmCurrentStatsFrameDelayForwardMax
and jnxSoamDmHistoryStatsFrameDelayForwardMax counters.
bFrameDelayForwardAvg(9)
Enables/disables the jnxSoamDmCurrentStatsFrameDelayForwardAvg
and jnxSoamDmHistoryStatsFrameDelayForwardAvg counters.
bFrameDelayBackwardBins(10)
Enables/disables the jnxSoamDmCurrentStatsBinsEntry counter
and the jnxSoamDmHistoryStatsBinsEntry counter
when the jnxSoamDmCfgMeasBinType is 'backwardFrameDelay'.
bFrameDelayBackwardMin(11)
Enables/disables the jnxSoamDmCurrentStatsFrameDelayBackwardMin
and jnxSoamDmHistoryStatsFrameDelayBackwardMin counters.
bFrameDelayBackwardMax(12)
Enables/disables the jnxSoamDmCurrentStatsFrameDelayBackwardMax
and jnxSoamDmHistoryStatsFrameDelayBackwardMax counters.
bFrameDelayBackwardAvg(13)
Enables/disables the jnxSoamDmCurrentStatsFrameDelayBackwardAvg
and jnxSoamDmHistoryStatsFrameDelayBackwardAvg counters.
bIfdvForwardBins(14)
Enables/disables the jnxSoamDmCurrentStatsBinsEntry counter
and the jnxSoamDmHistoryStatsBinsEntry counter
when the jnxSoamDmCfgMeasBinType is 'forwardIfdv'.
bIfdvForwardMin(15)
Enables/disables the jnxSoamDmCurrentStatsIfdvForwardMin
and jnxSoamDmHistoryStatsIfdvForwardMin counters.
bIfdvForwardMax(16)
Enables/disables the jnxSoamDmCurrentStatsIfdvForwardMax
and jnxSoamDmHistoryStatsIfdvForwardMax counters.
bIfdvForwardAvg(17)
Enables/disables the jnxSoamDmCurrentStatsIfdvForwardAvg
and jnxSoamDmHistoryStatsIfdvForwardAvg counters.
bIfdvBackwardBins(18)
Enables/disables the jnxSoamDmCurrentStatsBinsEntry counter
and the jnxSoamDmHistoryStatsBinsEntry counter
when the jnxSoamDmCfgMeasBinType is 'backwardIfdv'.
bIfdvBackwardMin(19)
Enables/disables the jnxSoamDmCurrentStatsIfdvBackwardMin
and jnxSoamDmHistoryStatsIfdvBackwardMin counters.
bIfdvBackwardMax(20)
Enables/disables the jnxSoamDmCurrentStatsIfdvBackwardMax
and jnxSoamDmHistoryStatsIfdvBackwardMax counters.
bIfdvBackwardAvg(21)
Enables/disables the jnxSoamDmCurrentStatsIfdvBackwardAvg
and jnxSoamDmHistoryStatsIfdvBackwardAvg counters.
bIfdvTwoWayBins(22)
Enables/disables the jnxSoamDmCurrentStatsBinsEntry counter
and the jnxSoamDmHistoryStatsBinsEntry counter
when the jnxSoamDmCfgMeasBinType is 'twoWayIfdv'.
bIfdvTwoWayMin(23)
Enables/disables the jnxSoamDmCurrentStatsIfdvTwoWayMin
and jnxSoamDmHistoryStatsIfdvTwoWayMin counters.
bIfdvTwoWayMax(24)
Enables/disables the jnxSoamDmCurrentStatsIfdvTwoWayMax
and jnxSoamDmHistoryStatsIfdvTwoWayMax counters.
bIfdvTwoWayAvg(25)
Enables/disables the jnxSoamDmCurrentStatsIfdvTwoWayAvg
and jnxSoamDmHistoryStatsIfdvTwoWayAvg counters.
bFrameDelayRangeForwardBins(26)
Enables/disables the jnxSoamDmCurrentStatsBinsEntry counter
and the jnxSoamDmHistoryStatsBinsEntry counter
when the jnxSoamDmCfgMeasBinType is 'forwardFrameDelayRange'.
bFrameDelayRangeForwardMax(27)
Enables/disables the jnxSoamDmCurrentStatsFrameDelayRangeForwardMax
and jnxSoamDmHistoryStatsFrameDelayRangeForwardMax counters.
bFrameDelayRangeForwardAvg(28)
Enables/disables the jnxSoamDmCurrentStatsFrameDelayRangeForwardAvg
and jnxSoamDmHistoryStatsFrameDelayRangeForwardAvg counters.
bFrameDelayRangeBackwardBins(29)
Enables/disables the jnxSoamDmCurrentStatsBinsEntry counter
and the jnxSoamDmHistoryStatsBinsEntry counter
when the jnxSoamDmCfgMeasBinType is 'backwardFrameDelayRange'.
bFrameDelayRangeBackwardMax(30)
Enables/disables the jnxSoamDmCurrentStatsFrameDelayRangeBackwardMax
and jnxSoamDmHistoryStatsFrameDelayRangeBackwardMax counters.
bFrameDelayRangeBackwardAvg(31)
Enables/disables the jnxSoamDmCurrentStatsFrameDelayRangeBackwardAvg
and jnxSoamDmHistoryStatsFrameDelayRangeBackwardAvg counters.
bFrameDelayRangeTwoWayBins(32)
Enables/disables the jnxSoamDmCurrentStatsBinsEntry counter
and the jnxSoamDmHistoryStatsBinsEntry counter
when the jnxSoamDmCfgMeasBinType is 'twoWayFrameDelayRange'.
bFrameDelayRangeTwoWayMax(33)
Enables/disables the jnxSoamDmCurrentStatsFrameDelayRangeTwoWayMax
and jnxSoamDmHistoryStatsFrameDelayRangeTwoWayMax counters.
bFrameDelayRangeTwoWayAvg(34)
Enables/disables the jnxSoamDmCurrentStatsFrameDelayRangeTwoWayAvg
and jnxSoamDmHistoryStatsFrameDelayRangeTwoWayAvg counters.
bMeasuredStatsFrameDelayTwoWay(35)
Enables/disables the jnxSoamDmMeasuredStatsFrameDelayTwoWay
counter.
bMeasuredStatsFrameDelayForward(36)
Enables/disables the jnxSoamDmMeasuredStatsFrameDelayForward
counter.
bMeasuredStatsFrameDelayBackward(37)
Enables/disables the jnxSoamDmMeasuredStatsFrameDelayBackward
counter.
bMeasuredStatsIfdvTwoWay(38)
Enables/disables the jnxSoamDmMeasuredStatsIfdvTwoWay
counter.
bMeasuredStatsIfdvForward(39)
Enables/disables the jnxSoamDmMeasuredStatsIfdvForward
counter.
bMeasuredStatsIfdvBackward(40)
Enables/disables the jnxSoamDmMeasuredStatsIfdvBackward
counter.
"
REFERENCE
"[MEF SOAM-PM]"
DEFVAL { { } }
::= { jnxSoamDmCfgEntry 5 }
jnxSoamDmCfgMessagePeriod OBJECT-TYPE
SYNTAX Integer32
UNITS "ms"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the interval between Delay Measurement
OAM message transmission. For Delay Measurement monitoring
applications, the default value is 100ms.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R61, R62, D22, R95, R96, D39"
DEFVAL { 100 }
::= { jnxSoamDmCfgEntry 6 }
jnxSoamDmCfgPriority OBJECT-TYPE
SYNTAX IEEE8021PriorityValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the priority of frames with
Delay Measurement OAM message information.
The default value is to be the value which yields the lowest frame
loss.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R1, R2, R56, D21, R57, R58, R90-R94, D28;
[MEF 10.2.1] Section 6.8"
::= { jnxSoamDmCfgEntry 7 }
jnxSoamDmCfgFrameSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the Delay Measurement frame size between
64 bytes and the maximum transmission unit of the EVC.
The range of frame sizes from 64 through 2000 octets need to be
supported, and the range of frame sizes from 2001 through 9600 octets
is suggested to be supported.
The adjustment to the frame size of the standard frame size is
accomplished by the addition of a Data or Test TLV. A Data or Test TLV
is only added to the frame if the frame size is greater than 64 bytes.
This object is only valid for the entity transmitting the Delay
Measurement frames (dmDmm, dm1DmTx) and is ignored by the entity
receiving frames.
In addition, this object is not valid when jnxSoamDmCfgVersion is 0.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R63, R64, D23, D24, R97, R98, D40, D41"
DEFVAL { 64 }
::= { jnxSoamDmCfgEntry 8 }
jnxSoamDmCfgDataPattern OBJECT-TYPE
SYNTAX JnxSoamTcDataPatternType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the DM data pattern included in a Data TLV
when the size of the DM frame is determined by the
jnxSoamDmFrameSize object and jnxSoamDmTestTlvIncluded is 'false'.
If the frame size object does not define the DM frame size or
jnxSoamDmTestTlvIncluded is 'true' the value of this object is
ignored.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
DEFVAL { zeroPattern }
::= { jnxSoamDmCfgEntry 9 }
jnxSoamDmCfgTestTlvIncluded OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether a Test TLV or Data TLV is included when the size
of the DM frame is determined by the jnxSoamDmFrameSize object.
A value of 'true' indicates that the Test TLV is to be included. A
value of 'false' indicates that the Data TLV is to be included.
If the frame size object does not define the DM frame size
the value of this object is ignored.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[Y.1731] 9.3"
DEFVAL { false }
::= { jnxSoamDmCfgEntry 10 }
jnxSoamDmCfgTestTlvPattern OBJECT-TYPE
SYNTAX JnxSoamTcTestPatternType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the type of test pattern to be
sent in the DM frame Test TLV when the size
of DM PDU is determined by the jnxSoamDmFrameSize object and
jnxSoamDmTestTlvIncluded is 'true'. If the frame size object
does not define the DM frame size or jnxSoamDmTestTlvIncluded
is 'false' the value of this object is ignored.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
DEFVAL { null }
::= { jnxSoamDmCfgEntry 11 }
jnxSoamDmCfgNumIntervalsStored OBJECT-TYPE
SYNTAX Unsigned32 (1..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of completed Measurement Intervals
to store in the history statistic table.
At least 32 completed Measurement Intervals are to be stored. 96
Measurement Intervals are recommended to be stored.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R21, D8, D9"
DEFVAL { 32 }
::= { jnxSoamDmCfgEntry 12 }
jnxSoamDmCfgDestMepId OBJECT-TYPE
SYNTAX Dot1agCfmMepIdOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Maintenance Association End Point Identifier of
another MEP in the same Maintenance Association to which
the SOAM DM frame is to be sent.
This address will be used if the value of the column
jnxSoamDmDestIsMepId is 'true'. A value of zero
means that the destination MEP ID has not been configured.
This object is only valid for the entity transmitting the Delay
Measurement frames, types 'dmDmm' and 'dm1DmTx'. It is not applicable
for the 'dm1DmRx' type.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R55, R89"
DEFVAL { 0 }
::= { jnxSoamDmCfgEntry 13 }
jnxSoamDmCfgDestIsMepId OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A value of 'true' indicates that MEPID of the target MEP is used for
SOAM DM frame transmission.
A value of 'false' indicates that the destination MAC address of the
target MEP is used for SOAM DM frame transmission.
This object is only valid for the entity transmitting the Delay
Measurement frames, types 'dmDmm' and 'dm1DmTx'. It is not applicable
for the 'dm1DmRx type.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R55, R89"
DEFVAL { true }
::= { jnxSoamDmCfgEntry 14 }
jnxSoamDmCfgStartTimeType OBJECT-TYPE
SYNTAX JnxSoamTcOperationTimeType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the type of start time of the SOAM DM
session. The start time can be disabled (none), immediate, relative,
or fixed.
The value of 'none' is illegal and a write error will be returned
if this value is used.
The value of 'immediate' starts the SOAM DM session when the
jnxSoamDmCfgEnabled is true.
The value of 'fixed' starts the SOAM DM session when the
jnxSoamDmFixedStartDateAndTime is less than or equal to the current
system date and time and jnxSoamDmCfgEnabled is true. This value is used
to implement an On-Demand fixed time PM session.
The value of 'relative' starts the SOAM DM session when the current
system date and time minus the jnxSoamDmRelativeStartTime is greater than
or equal to the system date and time when the jnxSoamDmStartTimeType
object was written and jnxSoamDmCfgEnabled is true. This value is used
to implement an On-Demand relative time PM session.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R3, R7, R8, D1"
DEFVAL { immediate }
::= { jnxSoamDmCfgEntry 15 }
jnxSoamDmCfgRepetitionTime OBJECT-TYPE
SYNTAX Unsigned32 (0..31536000)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies a configurable repetition time between
Measurement Intervals in a Delay Measurement session in seconds.
If the value is 0 (none), there is no time gap between the end of one
Measurement Interval and the start of a new Measurement Interval.
This is the normal usage case.
If the value is greater than one Measurement Interval there is time gap
between the end of one Measurement Interval and the start of the next
Measurement Interval. The repetition time specifies the time between
the start of consecutive Measurement Intervals; hence the gap between
the end of one Measurement Interval and the start of the next is equal
to the difference between the repetition time and the measurement
interval. During this gap, no SOAM PDUs are sent for this session and
no measurements are made.
If the value is greater 0 but less than or equal to the measurement
interval, an error is returned.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R18, D3, R19, R20"
DEFVAL { 0 }
::= { jnxSoamDmCfgEntry 16 }
jnxSoamDmCfgAlignMeasurementIntervals OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies whether the Measurement Intervals for
the Delay Measurement session are aligned with a zero offset to
real time.
The value 'true' indicates that each Measurement Interval starts
at a time which is aligned to NE time source hour, if the repetition
time (or the Measurement Interval, if the repetition time is 0) is
a factor of an hour, i.e. 60min/15min = 4. For instance, a
Measurement Interval/Repetition Time of 15 minutes would stop/start
the Measurement Interval at 0, 15, 30, and 45 minutes of an hour. A
Measurement Interval/Repetition Time of 7 minutes would not align
to the hour since 7 minutes is NOT a factor of an hour, i.e.
60min/7min = 8.6. In this case the behavior is the same as if the
object is set to 'false'.
The value 'false' indicates that the first Measurement Interval starts
at an arbitrary time and each subsequent Measurement Interval starts
at a time which is determined by jnxSoamLmCfgRepetitionTime.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] D4, D5, D6"
DEFVAL { true }
::= { jnxSoamDmCfgEntry 17 }
jnxSoamDmCfgInterFrameDelayVariationSelectionOffset OBJECT-TYPE
SYNTAX Unsigned32 (1..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the selection offset for
Inter-Frame Delay Variation measurements. If this value
is set to n, then the IFDV is calculated by taking the
difference in frame delay between frame F and frame (F+n).
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] O4, D25, O6, D42"
DEFVAL { 1 }
::= { jnxSoamDmCfgEntry 18 }
jnxSoamDmCfgSessionType OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..42))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether the current session is defined to
be 'Proactive' or 'On-Demand'. A value of 'proactive'
indicates the current session is 'Proactive'. A value of 'onDemand'
indicates the current session is 'On-Demand'.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R3"
DEFVAL { "proactive" }
::= { jnxSoamDmCfgEntry 19 }
jnxSoamDmCfgSessionStatus OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..42))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the current status of the DM session. A value
of 'active' indicates the current DM session is active, i.e. the current
time lies between the start time and the stop time, and
jnxSoamDmCfgEnabled is true. A value of 'notActive' indicates the
current DM session is not active, i.e. it has not started yet, has
stopped upon reaching the stop time, or is disabled.
"
::= { jnxSoamDmCfgEntry 20 }
jnxSoamDmCfgHistoryClear OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object when written clears the Delay Measurement history
tables (jnxSoamDmHistoryStatsTable)
- all rows are deleted. When read the value always returns 'false'.
Writing this value does not change the current stat table,
nor any of the items in the configuration table.
Writing this object at row creation has no effect.
"
DEFVAL { false }
::= { jnxSoamDmCfgEntry 21 }
jnxSoamDmCfgRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the row.
The writable columns in a row cannot be changed if the row
is active, except for jnxSoamDmCfgEnabled and jnxSoamDmCfgHistoryClear
objects. All columns are to have a valid value before a row
can be activated.
"
::= { jnxSoamDmCfgEntry 22 }
jnxSoamDmCfgMeasurementInterval OBJECT-TYPE
SYNTAX Unsigned32 (1..1440)
UNITS "minutes"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies a Measurement Interval in minutes.
A Measurement Interval 15 minutes needs to be supported, other intervals
may be supported.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R16, R17"
DEFVAL { 15 }
::= { jnxSoamDmCfgEntry 23 }
jnxSoamDmCfgDestMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Target or Destination MAC Address Field to be transmitted.
If mefSoamDmCfgType is 'dmDmm', the destination address is to be the
unicast address of the destination MEP. An error is returned if this
object is set to a multicast address.
If mefSoamDmCfgType is 'dm1DmTx', the destination address is normally the
unicast address of the destination MEP, but can be a multicast address
indicating the level of the MEG: 01-80-c2-00-00-3y, where y is the
level of the MEG. An error is returned if this object is set to any
other multicast address.
If mefSoamDmCfgType is 'dm1DmRx', this object is ignored.
This address will be used if the value of the object
mefSoamDmDestIsMepId is 'false'.
This object is only valid for the entity transmitting the
SOAM DM frames and is ignored by the entity receiving
SOAM DM frames.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R55, R89"
::= { jnxSoamDmCfgEntry 24 }
jnxSoamDmCfgSourceMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Source MAC Address Field of the received SOAM DM session PDUs.
If mefSoamDmCfgType is dm1DmRx this object indicates the source
address of the dm1DmTx DM session.
This object is only valid for mefSoamDmCfgType set to dm1DmRx. It is
ignored for mefSoamDmCfgType set to dmDmm or dm1DmTx.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R55, R89"
::= { jnxSoamDmCfgEntry 25 }
jnxSoamDmCfgFixedStartDateAndTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the fixed start date/time for the
SOAM Delay Measurement session. This object is used only used if
mefSoamDmStartTimeType is 'fixed' and is ignored otherwise.
The default value is year 0000, month 01, day 01, time 00:00:00.00.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R9"
DEFVAL { '0000010100000000'H }
::= { jnxSoamDmCfgEntry 26 }
jnxSoamDmCfgRelativeStartTime OBJECT-TYPE
SYNTAX TimeInterval
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the relative start time, from
the current system time, for the SOAM DM session. This
object is used only if mefSoamDmStartTimeType is 'relative'
and is ignored otherwise.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R9"
DEFVAL { 0 }
::= { jnxSoamDmCfgEntry 27 }
jnxSoamDmCfgStopTimeType OBJECT-TYPE
SYNTAX JnxSoamTcOperationTimeType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the type of stop time to terminate the
SOAM DM session. The stop time can be forever (none), relative, or
fixed.
The value of 'none' indicates that the SOAM DM session never ends once it
has started unless the session is disabled.
The value of 'immediate' is illegal and a write error will be returned
if this value is used.
The value of 'fixed' stops the SOAM DM session when the
mefSoamDmFixedStopDateAndTime is less than or equal
to the current system date. This
value is used to implement an On-Demand fixed time PM session.
The value of 'relative' stops the SOAM DM session when the time
indicated by mefSoamDmRelativeStopTime has passed since the session
start time as determined by the mefSoamDmCfgStartTimeType,
mefSoamDmCfgFixedStartDateAndTime and mefSoamDmCfgRelativeStartTime
objects.
This value is used to implement an On-Demand relative time PM session.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R3, R10, D2"
DEFVAL { none }
::= { jnxSoamDmCfgEntry 28 }
jnxSoamDmCfgFixedStopDateAndTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the fixed stop date/time for the
SOAM Delay Measurement session. This object is used only used
if mefSoamDmStopTimeType is 'fixed' and is ignored otherwise.
The default value is year 0000, month 01, day 01, time 00:00:00.00.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R10, R13"
DEFVAL { '0000010100000000'H }
::= { jnxSoamDmCfgEntry 29 }
jnxSoamDmCfgRelativeStopTime OBJECT-TYPE
SYNTAX TimeInterval
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the relative stop time, from the
session start time, to stop the SOAM DM session. This
object is used only if mefSoamDmStopTimeType is 'relative' and is
otherwise.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R11"
DEFVAL { 0 }
::= { jnxSoamDmCfgEntry 30 }
jnxSoamDmCfgAlignMeasurementOffset OBJECT-TYPE
SYNTAX Unsigned32 (0..525600)
UNITS "minutes"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the offset in minutes from the time of day value
if mefSoamDmCfgAlignMeasurementIntervals is 'true' and the repetition
time is a factor of 60 minutes. If not, the value of this object
is ignored.
If the Measurement Interval is 15 minutes and
mefSoamDmCfgAlignMeasurementIntervals is true and if this object was
set to 5 minutes, the Measurement Intervals would start at 5, 20, 35, 50
minutes past each hour.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] D7"
DEFVAL { 0 }
::= { jnxSoamDmCfgEntry 31 }
jnxSoamDmCfgNumMeasBinsPerFrameDelayInterval OBJECT-TYPE
SYNTAX Unsigned32 (2..100)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the number of measurement bins
per Measurement Interval for Frame Delay measurements.
At least 3 bins are to be supported; at least 10 bins are recommended
to be supported.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R27, D11, R28, D12"
DEFVAL { 3 }
::= { jnxSoamDmCfgEntry 32 }
jnxSoamDmCfgNumMeasBinsPerInterFrameDelayVariationInterval OBJECT-TYPE
SYNTAX Unsigned32 (2..100)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the number of measurement bins
per Measurement Interval for Inter-Frame Delay Variation
measurements.
The minimum number of measurement bins to be supported is 2. The
supported is 10.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R29, D13, R30, D14"
DEFVAL { 2 }
::= { jnxSoamDmCfgEntry 33 }
jnxSoamDmCfgNumMeasBinsPerFrameDelayRangeInterval OBJECT-TYPE
SYNTAX Unsigned32 (2..100)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the number of measurement bins
per Measurement Interval for Frame Delay Range measurements.
At least 2 bins are to be supported; at least 10 bins are recommended
to be supported.
This object can only be written at row creation time and cannot be
modified once it has been created.
"
REFERENCE
"[MEF SOAM-PM] R31, D15, R32, D16"
DEFVAL { 2 }
::= { jnxSoamDmCfgEntry 34 }
-- *****************************************************************************
-- Ethernet Delay Measurement Measured Statistic Table
-- *****************************************************************************
jnxSoamDmMeasuredStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxSoamDmMeasuredStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object contains the last measured results for a SOAM Delay
Measurement session.
Each row in the table represents a Delay Measurement session for
the defined MEP. This table uses four indices. The first three indices
are the indices of the Maintenance Domain, MaNet, and MEP tables. The
fourth index is the specific DM session on the selected MEP.
Instances of this managed object are created automatically
by the SNMP Agent when the Delay Measurement session is running.
Each object in this table applies only if the corresponding bit is set in
jnxSoamDmCfgMeasurementEnable.
The objects in this table do not need to be persistent upon reboot or restart
of a device.
"
REFERENCE
"[MEF SOAM-PM] R7, R15, D18"
::= { jnxSoamPmDmObjects 2 }
jnxSoamDmMeasuredStatsEntry OBJECT-TYPE
SYNTAX JnxSoamDmMeasuredStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The conceptual row of jnxSoamDmMeasuredStatsTable"
INDEX {
dot1agCfmMdIndex,
dot1agCfmMaIndex,
dot1agCfmMepIdentifier,
jnxSoamDmCfgIndex
}
::= { jnxSoamDmMeasuredStatsTable 1 }
JnxSoamDmMeasuredStatsEntry ::= SEQUENCE {
jnxSoamDmMeasuredStatsFrameDelayTwoWay Unsigned32,
jnxSoamDmMeasuredStatsFrameDelayForward Unsigned32,
jnxSoamDmMeasuredStatsFrameDelayBackward Unsigned32,
jnxSoamDmMeasuredStatsIfdvTwoWay Unsigned32,
jnxSoamDmMeasuredStatsIfdvForward Unsigned32,
jnxSoamDmMeasuredStatsIfdvBackward Unsigned32
}
jnxSoamDmMeasuredStatsFrameDelayTwoWay OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the two-way frame delay calculated by this
MEP from the last received SOAM PDU.
This object is undefined is jnxSoamDmCfgType is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmMeasuredStatsEntry 1 }
jnxSoamDmMeasuredStatsFrameDelayForward OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the frame delay in the forward direction
calculated by this MEP from the last received SOAM PDU. The value of this
object may not be accurate in the absence of sufficiently precise clock
synchronization.
This object is undefined is jnxSoamDmCfgType is dm1DmTx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmMeasuredStatsEntry 2 }
jnxSoamDmMeasuredStatsFrameDelayBackward OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the frame delay in the backward direction
calculated by this MEP from the last received SOAM PDU. The value of this
object may not be accurate in the absence of sufficiently precise clock
synchronization.
This object is undefined is jnxSoamDmCfgType is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmMeasuredStatsEntry 3 }
jnxSoamDmMeasuredStatsIfdvTwoWay OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the last two-way inter-frame delay
interval calculated by this MEP.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmMeasuredStatsEntry 4 }
jnxSoamDmMeasuredStatsIfdvForward OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the last one-way inter-frame delay
interval in the forward direction calculated by this MEP.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmMeasuredStatsEntry 5 }
jnxSoamDmMeasuredStatsIfdvBackward OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the last one-way inter-frame delay
interval in the backward direction calculated by this MEP.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmMeasuredStatsEntry 6 }
-- *****************************************************************************
-- Ethernet Delay Measurement Current Statistic Table
-- *****************************************************************************
jnxSoamDmCurrentStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxSoamDmCurrentStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the results for the current Measurement
Interval in a SOAM Delay Measurement session gathered during the interval
indicated by iterator count.
A row in this table is created automatically
by the SNMP Agent when the Delay Measurement session is configured.
Each row in the table represents the current statistics for a Delay
Measurement session for the defined MEP. This table uses four indices.
The first three indices are the indices of the Maintenance Domain, MaNet,
and MEP tables. The fourth index is the specific DM session on the
selected MEP. There can be more than one DM session per MEP.
The objects in this table apply regardless of the value of
jnxSoamDmCfgType unless otherwise specified in the object description.
Backward and two-way statistic objects are undefined if jnxSoamDmCfgType
is dm1DmRx.
Except for jnxSoamDmCurrentStatsIndex, jnxSoamDmCurrentStatsStartTime
jnxSoamDmCurrentStatsElapsedTime and jnxSoamDmCurrentStatsSuspect,
each object in this table applies only if the corresponding bit is set in
jnxSoamDmCfgMeasurementEnable.
The objects in this table do not need to be persistent upon reboot or
restart of a device.
"
REFERENCE
"[MEF SOAM-PM] R7, R15, D9, D18"
::= { jnxSoamPmDmObjects 3 }
jnxSoamDmCurrentStatsEntry OBJECT-TYPE
SYNTAX JnxSoamDmCurrentStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The conceptual row of jnxSoamDmCurrentStatsTable"
INDEX {
dot1agCfmMdIndex,
dot1agCfmMaIndex,
dot1agCfmMepIdentifier,
jnxSoamDmCfgIndex
}
::= { jnxSoamDmCurrentStatsTable 1 }
JnxSoamDmCurrentStatsEntry ::= SEQUENCE {
jnxSoamDmCurrentStatsIndex Unsigned32,
jnxSoamDmCurrentStatsStartTime DateAndTime,
jnxSoamDmCurrentStatsElapsedTime TimeInterval,
jnxSoamDmCurrentStatsSuspect TruthValue,
jnxSoamDmCurrentStatsFrameDelayTwoWayMin Unsigned32,
jnxSoamDmCurrentStatsFrameDelayTwoWayMax Unsigned32,
jnxSoamDmCurrentStatsFrameDelayTwoWayAvg Unsigned32,
jnxSoamDmCurrentStatsFrameDelayForwardMin Unsigned32,
jnxSoamDmCurrentStatsFrameDelayForwardMax Unsigned32,
jnxSoamDmCurrentStatsFrameDelayForwardAvg Unsigned32,
jnxSoamDmCurrentStatsFrameDelayBackwardMin Unsigned32,
jnxSoamDmCurrentStatsFrameDelayBackwardMax Unsigned32,
jnxSoamDmCurrentStatsFrameDelayBackwardAvg Unsigned32,
jnxSoamDmCurrentStatsIfdvForwardMin Unsigned32,
jnxSoamDmCurrentStatsIfdvForwardMax Unsigned32,
jnxSoamDmCurrentStatsIfdvForwardAvg Unsigned32,
jnxSoamDmCurrentStatsIfdvBackwardMin Unsigned32,
jnxSoamDmCurrentStatsIfdvBackwardMax Unsigned32,
jnxSoamDmCurrentStatsIfdvBackwardAvg Unsigned32,
jnxSoamDmCurrentStatsIfdvTwoWayMin Unsigned32,
jnxSoamDmCurrentStatsIfdvTwoWayMax Unsigned32,
jnxSoamDmCurrentStatsIfdvTwoWayAvg Unsigned32,
jnxSoamDmCurrentStatsSoamPdusSent Gauge32,
jnxSoamDmCurrentStatsSoamPdusReceived Gauge32,
jnxSoamDmCurrentStatsFrameDelayRangeForwardMax Unsigned32,
jnxSoamDmCurrentStatsFrameDelayRangeForwardAvg Unsigned32,
jnxSoamDmCurrentStatsFrameDelayRangeBackwardMax Unsigned32,
jnxSoamDmCurrentStatsFrameDelayRangeBackwardAvg Unsigned32,
jnxSoamDmCurrentStatsFrameDelayRangeTwoWayMax Unsigned32,
jnxSoamDmCurrentStatsFrameDelayRangeTwoWayAvg Unsigned32
}
jnxSoamDmCurrentStatsIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index for the current Measurement Interval for this
PM session. This value will become the value for
jnxSoamDmHistoryStatsIndex once the Measurement Interval
is completed.
Measurement Interval indexes are assigned sequentially by
the SNMP Agent. The first Measurement Interval that occurs after
the session is started is assigned index 1.
"
::= { jnxSoamDmCurrentStatsEntry 1 }
jnxSoamDmCurrentStatsStartTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time that the current Measurement Interval started.
"
REFERENCE
"[MEF SOAM-PM] R22, R66, R100"
::= { jnxSoamDmCurrentStatsEntry 2 }
jnxSoamDmCurrentStatsElapsedTime OBJECT-TYPE
SYNTAX TimeInterval
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time that the current Measurement Interval has been running, in 0.01
seconds.
"
REFERENCE
"[MEF SOAM-PM] R24, R66, R100"
::= { jnxSoamDmCurrentStatsEntry 3 }
jnxSoamDmCurrentStatsSuspect OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Whether the Measurement Interval has been marked as suspect.
The object is to be set to false at the start of a measurement
interval. It is set to true when there is a discontinuity in the
performance measurements during the Measurement Interval. Conditions
for a discontinuity include, but are not limited to the following:
1 - The local time-of-day clock is adjusted by at least 10 seconds
2 - The conducting of a performance measurement is halted before the
current Measurement Interval is completed
3 - A local test, failure, or reconfiguration that disrupts service
"
REFERENCE
"[MEF SOAM-PM] R39, R40, R41"
::= { jnxSoamDmCurrentStatsEntry 4 }
jnxSoamDmCurrentStatsFrameDelayTwoWayMin OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the minimum two-way frame delay
calculated by this MEP for this Measurement Interval.
This object is undefined is jnxSoamDmCfgType is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmCurrentStatsEntry 5 }
jnxSoamDmCurrentStatsFrameDelayTwoWayMax OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum two-way frame delay
calculated by this MEP for this Measurement Interval.
This object is undefined is jnxSoamDmCfgType is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmCurrentStatsEntry 6 }
jnxSoamDmCurrentStatsFrameDelayTwoWayAvg OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average two-way frame delay
calculated by this MEP for this Measurement Interval.
This object is undefined is jnxSoamDmCfgType is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmCurrentStatsEntry 7 }
jnxSoamDmCurrentStatsFrameDelayForwardMin OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the minimum one-way frame delay
in the forward direction calculated by this MEP for this
Measurement Interval. The value of this object may not be accurate
in the absence of sufficiently precise clock synchronization.
This object is undefined is jnxSoamDmCfgType is dm1DmTx.
"
REFERENCE
"[MEF SOAM-PM] R67, R101"
::= { jnxSoamDmCurrentStatsEntry 8 }
jnxSoamDmCurrentStatsFrameDelayForwardMax OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum one-way frame delay
in the forward direction calculated by this MEP for this
Measurement Interval. The value of this object may not be accurate
in the absence of sufficiently precise clock synchronization.
This object is undefined is jnxSoamDmCfgType is dm1DmTx.
"
REFERENCE
"[MEF SOAM-PM] R67, R101"
::= { jnxSoamDmCurrentStatsEntry 9 }
jnxSoamDmCurrentStatsFrameDelayForwardAvg OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average one-way frame delay
in the forward direction calculated by this MEP for this
Measurement Interval. The value of this object may not be accurate
in the absence of sufficiently precise clock synchronization.
This object is undefined is jnxSoamDmCfgType is dm1DmTx.
"
REFERENCE
"[MEF SOAM-PM] R67, R101"
::= { jnxSoamDmCurrentStatsEntry 10 }
jnxSoamDmCurrentStatsFrameDelayBackwardMin OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the minimum one-way frame delay
in the backward direction calculated by this MEP for this
Measurement Interval. The value of this object may not be accurate
in the absence of sufficiently precise clock synchronization.
This object is undefined is jnxSoamDmCfgType is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R67"
::= { jnxSoamDmCurrentStatsEntry 11 }
jnxSoamDmCurrentStatsFrameDelayBackwardMax OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum one-way frame delay
in the backward direction calculated by this MEP for this
Measurement Interval. The value of this object may not be accurate
in the absence of sufficiently precise clock synchronization.
This object is undefined is jnxSoamDmCfgType is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R67"
::= { jnxSoamDmCurrentStatsEntry 12 }
jnxSoamDmCurrentStatsFrameDelayBackwardAvg OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average one-way frame delay
in the backward direction calculated by this MEP for this
Measurement Interval. The value of this object may not be accurate
in the absence of sufficiently precise clock synchronization.
This object is undefined is jnxSoamDmCfgType is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R67"
::= { jnxSoamDmCurrentStatsEntry 13 }
jnxSoamDmCurrentStatsIfdvForwardMin OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the minimum one-way inter-frame delay
interval in the forward direction calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx.
"
REFERENCE
"[MEF SOAM-PM] R66, R100"
::= { jnxSoamDmCurrentStatsEntry 14 }
jnxSoamDmCurrentStatsIfdvForwardMax OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum one-way inter-frame delay
interval in the forward direction calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx.
"
REFERENCE
"[MEF SOAM-PM] R66, R100"
::= { jnxSoamDmCurrentStatsEntry 15 }
jnxSoamDmCurrentStatsIfdvForwardAvg OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average one-way inter-frame delay
interval in the forward direction calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx.
"
REFERENCE
"[MEF SOAM-PM] R66, R100"
::= { jnxSoamDmCurrentStatsEntry 16 }
jnxSoamDmCurrentStatsIfdvBackwardMin OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the minimum one-way inter-frame delay
interval in the backward direction calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmCurrentStatsEntry 17 }
jnxSoamDmCurrentStatsIfdvBackwardMax OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum one-way inter-frame delay
interval in the backward direction calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmCurrentStatsEntry 18 }
jnxSoamDmCurrentStatsIfdvBackwardAvg OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average one-way inter-frame delay
interval in the backward direction calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmCurrentStatsEntry 19 }
jnxSoamDmCurrentStatsIfdvTwoWayMin OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the minimum two-way inter-frame delay
interval calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx or dm1DmRx.
"
::= { jnxSoamDmCurrentStatsEntry 20 }
jnxSoamDmCurrentStatsIfdvTwoWayMax OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum two-way inter-frame delay
interval calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx or dm1DmRx.
"
::= { jnxSoamDmCurrentStatsEntry 21 }
jnxSoamDmCurrentStatsIfdvTwoWayAvg OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average two-way inter-frame delay
interval calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx or dm1DmRx.
"
::= { jnxSoamDmCurrentStatsEntry 22 }
jnxSoamDmCurrentStatsSoamPdusSent OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the count of the number of SOAM PDUs sent
during this Measurement Interval.
This object applies when jnxSoamDmCfgType is dmDmm or dm1DmTx and
is undefined if jnxSoamDmCfgType is dm1DmRx. It indicates the
number of DMM or 1DM SOAM frames transmitted.
"
REFERENCE
"[MEF SOAM-PM] R66, R100"
::= { jnxSoamDmCurrentStatsEntry 23 }
jnxSoamDmCurrentStatsSoamPdusReceived OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the count of the number of SOAM
PDUs received in this Measurement Interval.
This object indicates the number of DMR and 1DM SOAM frames
received. This object applies when jnxSoamDmCfgTypeis dmDmm or
dm1DmRx and is undefined if jnxSoamDmCfgTypeis dm1DmTx.
"
REFERENCE
"[MEF SOAM-PM] R66, R100"
::= { jnxSoamDmCurrentStatsEntry 24 }
jnxSoamDmCurrentStatsFrameDelayRangeForwardMax OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum one-way frame delay range
in the forward direction calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx.
"
REFERENCE
"[MEF SOAM-PM] R66, R100"
::= { jnxSoamDmCurrentStatsEntry 25 }
jnxSoamDmCurrentStatsFrameDelayRangeForwardAvg OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average one-way frame delay range
in the forward direction calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx.
"
REFERENCE
"[MEF SOAM-PM] R66, R100"
::= { jnxSoamDmCurrentStatsEntry 26 }
jnxSoamDmCurrentStatsFrameDelayRangeBackwardMax OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum one-way frame delay range
in the backward direction calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmCurrentStatsEntry 27 }
jnxSoamDmCurrentStatsFrameDelayRangeBackwardAvg OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average one-way frame delay range
in the backward direction calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmCurrentStatsEntry 28 }
jnxSoamDmCurrentStatsFrameDelayRangeTwoWayMax OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum two-way frame delay range
calculated by this MEP for this Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx or dm1DmRx.
"
::= { jnxSoamDmCurrentStatsEntry 29 }
jnxSoamDmCurrentStatsFrameDelayRangeTwoWayAvg OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average two-way frame delay range
calculated by this MEP for this Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx or dm1DmRx.
"
::= { jnxSoamDmCurrentStatsEntry 30 }
-- *****************************************************************************
-- Ethernet Delay Measurement History Statistic Table
-- *****************************************************************************
jnxSoamDmHistoryStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxSoamDmHistoryStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the results for history Measurement
Intervals in a SOAM Delay Measurement session.
Rows of this table are created automatically
by the SNMP Agent when the Delay Measurement session is running and a
Measurement Interval is completed.
Each row in the table represents the Measurement Interval history
statistics for a Delay Measurement session for the defined MEP. This
table uses five indices. The first three indices are the indices of
the Maintenance Domain, MaNet, and MEP tables. The fourth index is the
specific DM session on the selected MEP. The fifth index is the
Measurement Interval.
At least 32 completed Measurement Intervals are to be supported. 96
completed Measurement Intervals are recommended to be supported. If
there are at least 32 rows in the table and a new Measurement Interval
completes and a new row is to be added to the table, the oldest completed
Measurement Interval can be deleted (row deletion). If the measurement
interval is other than 15 minutes then a minimum of 8 hours of
completed Measurement Intervals are to be supported and 24 hours are
recommended to be supported.
The objects in this table apply regardless of the value of
jnxSoamDmCfgType unless otherwise specified in the object description.
Backward and two-way statistic objects are undefined if jnxSoamDmCfgType
is dm1DmRx.
Except for jnxSoamDmHistoryStatsIndex, jnxSoamDmHistoryStatsEndTime,
jnxSoamDmHistoryStatsElapsedTime and jnxSoamDmHistoryStatsSuspect,
each object in this table applies only if the corresponding bit is set in
jnxSoamDmCfgMeasurementEnable.
The rows and objects in this table are to be persistent upon reboot
or restart of a device.
"
REFERENCE
"[MEF SOAM-PM] R7, R15, R21, D8, R25"
::= { jnxSoamPmDmObjects 4 }
jnxSoamDmHistoryStatsEntry OBJECT-TYPE
SYNTAX JnxSoamDmHistoryStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The conceptual row of jnxSoamDmHistoryStatsTable"
INDEX {
dot1agCfmMdIndex,
dot1agCfmMaIndex,
dot1agCfmMepIdentifier,
jnxSoamDmCfgIndex,
jnxSoamDmHistoryStatsIndex
}
::= { jnxSoamDmHistoryStatsTable 1 }
JnxSoamDmHistoryStatsEntry ::= SEQUENCE {
jnxSoamDmHistoryStatsIndex Unsigned32,
jnxSoamDmHistoryStatsEndTime DateAndTime,
jnxSoamDmHistoryStatsElapsedTime TimeInterval,
jnxSoamDmHistoryStatsSuspect TruthValue,
jnxSoamDmHistoryStatsFrameDelayTwoWayMin Unsigned32,
jnxSoamDmHistoryStatsFrameDelayTwoWayMax Unsigned32,
jnxSoamDmHistoryStatsFrameDelayTwoWayAvg Unsigned32,
jnxSoamDmHistoryStatsFrameDelayForwardMin Unsigned32,
jnxSoamDmHistoryStatsFrameDelayForwardMax Unsigned32,
jnxSoamDmHistoryStatsFrameDelayForwardAvg Unsigned32,
jnxSoamDmHistoryStatsFrameDelayBackwardMin Unsigned32,
jnxSoamDmHistoryStatsFrameDelayBackwardMax Unsigned32,
jnxSoamDmHistoryStatsFrameDelayBackwardAvg Unsigned32,
jnxSoamDmHistoryStatsIfdvForwardMin Unsigned32,
jnxSoamDmHistoryStatsIfdvForwardMax Unsigned32,
jnxSoamDmHistoryStatsIfdvForwardAvg Unsigned32,
jnxSoamDmHistoryStatsIfdvBackwardMin Unsigned32,
jnxSoamDmHistoryStatsIfdvBackwardMax Unsigned32,
jnxSoamDmHistoryStatsIfdvBackwardAvg Unsigned32,
jnxSoamDmHistoryStatsIfdvTwoWayMin Unsigned32,
jnxSoamDmHistoryStatsIfdvTwoWayMax Unsigned32,
jnxSoamDmHistoryStatsIfdvTwoWayAvg Unsigned32,
jnxSoamDmHistoryStatsSoamPdusSent Gauge32,
jnxSoamDmHistoryStatsSoamPdusReceived Gauge32,
jnxSoamDmHistoryStatsFrameDelayRangeForwardMax Unsigned32,
jnxSoamDmHistoryStatsFrameDelayRangeForwardAvg Unsigned32,
jnxSoamDmHistoryStatsFrameDelayRangeBackwardMax Unsigned32,
jnxSoamDmHistoryStatsFrameDelayRangeBackwardAvg Unsigned32,
jnxSoamDmHistoryStatsFrameDelayRangeTwoWayMax Unsigned32,
jnxSoamDmHistoryStatsFrameDelayRangeTwoWayAvg Unsigned32
}
jnxSoamDmHistoryStatsIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index for the Measurement Interval within this
PM session.
Measurement Interval indexes are assigned sequentially by
the SNMP Agent. The first Measurement Interval that occurs after
the session is started is assigned index 1.
Referential integrity is necessary, i.e., the index needs to be
persistent upon a reboot or restart of a device. The index
is never reused while this session is active until it wraps to zero.
The index value keeps increasing up to that time.
"
::= { jnxSoamDmHistoryStatsEntry 1 }
jnxSoamDmHistoryStatsEndTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time that the Measurement Interval ended.
"
REFERENCE
"[MEF SOAM-PM] R23, R66, R100"
::= { jnxSoamDmHistoryStatsEntry 2 }
jnxSoamDmHistoryStatsElapsedTime OBJECT-TYPE
SYNTAX TimeInterval
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The length of time that the Measurement Interval ran for,
in 0.01 seconds.
"
REFERENCE
"[MEF SOAM-PM] R66, R100"
::= { jnxSoamDmHistoryStatsEntry 3 }
jnxSoamDmHistoryStatsSuspect OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Whether the Measurement Interval has been marked as suspect.
The object is set to true when there is a discontinuity in the
performance measurements during the Measurement Interval. Conditions
for a discontinuity include, but are not limited to the following:
1 - The local time-of-day clock is adjusted by at least 10 seconds
2 - The conducting of a performance measurement is halted before the
current Measurement Interval is completed
3 - A local test, failure, or reconfiguration that disrupts service
"
REFERENCE
"[MEF SOAM-PM] R39, R40, R41, R42"
::= { jnxSoamDmHistoryStatsEntry 4 }
jnxSoamDmHistoryStatsFrameDelayTwoWayMin OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the minimum two-way frame delay
calculated by this MEP for this Measurement Interval.
This object is undefined is jnxSoamDmCfgType is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmHistoryStatsEntry 5 }
jnxSoamDmHistoryStatsFrameDelayTwoWayMax OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum two-way frame delay
calculated by this MEP for this Measurement Interval.
This object is undefined is jnxSoamDmCfgType is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmHistoryStatsEntry 6 }
jnxSoamDmHistoryStatsFrameDelayTwoWayAvg OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average two-way frame delay
calculated by this MEP for this Measurement Interval.
This object is undefined is jnxSoamDmCfgType is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmHistoryStatsEntry 7 }
jnxSoamDmHistoryStatsFrameDelayForwardMin OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the minimum one-way frame delay
in the forward direction calculated by this MEP for this
Measurement Interval. The value of this object may not be accurate
in the absence of sufficiently precise clock synchronization.
This object is undefined is jnxSoamDmCfgType is dm1DmTx.
"
REFERENCE
"[MEF SOAM-PM] R66, R100"
::= { jnxSoamDmHistoryStatsEntry 8 }
jnxSoamDmHistoryStatsFrameDelayForwardMax OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum one-way frame delay
in the forward direction calculated by this MEP for this
Measurement Interval. The value of this object may not be accurate
in the absence of sufficiently precise clock synchronization.
This object is undefined is jnxSoamDmCfgType is dm1DmTx.
"
REFERENCE
"[MEF SOAM-PM] R66, R100"
::= { jnxSoamDmHistoryStatsEntry 9 }
jnxSoamDmHistoryStatsFrameDelayForwardAvg OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average one-way frame delay
in the forward direction calculated by this MEP for this
Measurement Interval. The value of this object may not be accurate
in the absence of sufficiently precise clock synchronization.
This object is undefined is jnxSoamDmCfgType is dm1DmTx.
"
REFERENCE
"[MEF SOAM-PM] R66, R100"
::= { jnxSoamDmHistoryStatsEntry 10 }
jnxSoamDmHistoryStatsFrameDelayBackwardMin OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the minimum one-way frame delay
in the backward direction calculated by this MEP for this
Measurement Interval. The value of this object may not be accurate
in the absence of sufficiently precise clock synchronization.
This object is undefined is jnxSoamDmCfgType is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmHistoryStatsEntry 11 }
jnxSoamDmHistoryStatsFrameDelayBackwardMax OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum one-way frame delay
in the backward direction calculated by this MEP for this
Measurement Interval. The value of this object may not be accurate
in the absence of sufficiently precise clock synchronization.
This object is undefined is jnxSoamDmCfgType is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmHistoryStatsEntry 12 }
jnxSoamDmHistoryStatsFrameDelayBackwardAvg OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average one-way frame delay
in the backward direction calculated by this MEP for this
Measurement Interval. The value of this object may not be accurate
in the absence of sufficiently precise clock synchronization.
This object is undefined is jnxSoamDmCfgType is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmHistoryStatsEntry 13 }
jnxSoamDmHistoryStatsIfdvForwardMin OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the minimum one-way inter-frame delay
interval in the forward direction calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx.
"
REFERENCE
"[MEF SOAM-PM] R66, R100"
::= { jnxSoamDmHistoryStatsEntry 14 }
jnxSoamDmHistoryStatsIfdvForwardMax OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum one-way inter-frame delay
interval in the forward direction calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx.
"
REFERENCE
"[MEF SOAM-PM] R66, R100"
::= { jnxSoamDmHistoryStatsEntry 15 }
jnxSoamDmHistoryStatsIfdvForwardAvg OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average one-way inter-frame delay
interval in the forward direction calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx.
"
REFERENCE
"[MEF SOAM-PM] R66, R100"
::= { jnxSoamDmHistoryStatsEntry 16 }
jnxSoamDmHistoryStatsIfdvBackwardMin OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the minimum one-way inter-frame delay
interval in the backward direction calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmHistoryStatsEntry 17 }
jnxSoamDmHistoryStatsIfdvBackwardMax OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum one-way inter-frame delay
interval in the backward direction calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmHistoryStatsEntry 18 }
jnxSoamDmHistoryStatsIfdvBackwardAvg OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average one-way inter-frame delay
interval in the backward direction calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmHistoryStatsEntry 19 }
jnxSoamDmHistoryStatsIfdvTwoWayMin OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the minimum two-way inter-frame delay
interval calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx or dm1DmRx.
"
::= { jnxSoamDmHistoryStatsEntry 20 }
jnxSoamDmHistoryStatsIfdvTwoWayMax OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum two-way inter-frame delay
interval calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx or dm1DmRx.
"
::= { jnxSoamDmHistoryStatsEntry 21 }
jnxSoamDmHistoryStatsIfdvTwoWayAvg OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average two-way inter-frame delay
interval calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx or dm1DmRx.
"
::= { jnxSoamDmHistoryStatsEntry 22 }
jnxSoamDmHistoryStatsSoamPdusSent OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the count of the number of SOAM PDUs sent
during this Measurement Interval.
This object applies when jnxSoamDmCfgType is dmDmm or dm1DmTx and
is undefined if jnxSoamDmCfgType is dm1DmRx. It indicates the
number of DMM or 1DM SOAM frames transmitted.
"
REFERENCE
"[MEF SOAM-PM] R66, R100"
::= { jnxSoamDmHistoryStatsEntry 23 }
jnxSoamDmHistoryStatsSoamPdusReceived OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the count of the number of SOAM
PDUs received in this Measurement Interval.
This object indicates the number of DMR and 1DM SOAM frames
received. This object applies when jnxSoamDmCfgType is dmDmm or
dm1DmRx and is undefined if jnxSoamDmCfgType is dm1DmTx.
"
REFERENCE
"[MEF SOAM-PM] R66, R100"
::= { jnxSoamDmHistoryStatsEntry 24 }
jnxSoamDmHistoryStatsFrameDelayRangeForwardMax OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum one-way Frame Delay Range
in the forward direction calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx.
"
REFERENCE
"[MEF SOAM-PM] R66, R100"
::= { jnxSoamDmHistoryStatsEntry 25 }
jnxSoamDmHistoryStatsFrameDelayRangeForwardAvg OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average one-way Frame Delay Range
in the forward direction calculated by this MEP for this
Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx.
"
REFERENCE
"[MEF SOAM-PM] R66, R100"
::= { jnxSoamDmHistoryStatsEntry 26 }
jnxSoamDmHistoryStatsFrameDelayRangeBackwardMax OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum one-way Frame Delay Range
in the backward direction calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmHistoryStatsEntry 27 }
jnxSoamDmHistoryStatsFrameDelayRangeBackwardAvg OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average one-way Frame Delay Range
in the backward direction calculated by this MEP for this
Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx or dm1DmRx.
"
REFERENCE
"[MEF SOAM-PM] R66"
::= { jnxSoamDmHistoryStatsEntry 28 }
jnxSoamDmHistoryStatsFrameDelayRangeTwoWayMax OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum two-way Frame Delay Range
calculated by this MEP for this Measurement Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx or dm1DmRx.
"
::= { jnxSoamDmHistoryStatsEntry 29 }
jnxSoamDmHistoryStatsFrameDelayRangeTwoWayAvg OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average two-way Frame Delay Range
Interval.
The value of this object is undefined when jnxSoamDmCfgType
is dm1DmTx or dm1DmRx.
"
::= { jnxSoamDmHistoryStatsEntry 30 }
-- *****************************************************************************
-- Performance Measurement Loss Threshold Configuration Table
-- *****************************************************************************
jnxSoamLmThresholdCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxSoamLmThresholdCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the list of Loss Measurement configuration threshold
values for LM Performance Monitoring.
The main purpose of the threshold configuration table is to configure
threshold alarm notifications indicating that a specific performance
metric is not being met.
Each row in the table represents a Loss Measurement session threshold
set for the defined MEP. This table uses five indices. The first three
indices are the indices of the Maintenance Domain, MaNet, and MEP tables.
The fourth index is the specific LM session on the selected MEP. The
fifth index is the specific threshold set number.
Rows in this table are not created automatically. A row is created in
this table to set up a threshold set on a configured MEP that has a
configured LM session.
If two managers try to 'create' the same row at the same time, the first
creation would succeed, the second creation attempt would result in an
error. The second creation attempt would then need to select a new index
value to successfully create a new row.
An NE needs to support at least one threshold set for NE SOAM PM compliance. A
second threshold set on the NE is desirable. More than two threshold
sets can be configured on the NE if supported on the NE.
All the objects in the row have a default value that disables the
particular threshold measurement. In order to enable a threshold
measurement the particular bit in the jnxSoamLmThresholdCfgEnable object
is to be set to '1' and the selected threshold measurement is to have
a threshold value configured. Non-configured threshold measurements
are disabled by default.
The writable objects in this table need to be persistent upon reboot
or restart of a device.
"
::= { jnxSoamPmLmObjects 5 }
jnxSoamLmThresholdCfgEntry OBJECT-TYPE
SYNTAX JnxSoamLmThresholdCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The conceptual row of jnxSoamLmThresholdCfgTable."
INDEX {
dot1agCfmMdIndex,
dot1agCfmMaIndex,
dot1agCfmMepIdentifier,
jnxSoamLmCfgIndex,
jnxSoamLmThresholdCfgIndex
}
::= {jnxSoamLmThresholdCfgTable 1 }
JnxSoamLmThresholdCfgEntry ::= SEQUENCE {
jnxSoamLmThresholdCfgIndex Unsigned32,
jnxSoamLmThresholdCfgEnable BITS,
jnxSoamLmThresholdCfgAvgFlrForwardThreshold Unsigned32,
jnxSoamLmThresholdCfgAvgFlrBackwardThreshold Unsigned32,
jnxSoamLmThresholdCfgRowStatus RowStatus
}
jnxSoamLmThresholdCfgIndex OBJECT-TYPE
SYNTAX Unsigned32(0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of the threshold number for the specific LM
threshold entry.
An index value of '1' needs to be supported. Other index values
can also be supported.
"
::= { jnxSoamLmThresholdCfgEntry 1 }
jnxSoamLmThresholdCfgEnable OBJECT-TYPE
SYNTAX BITS {
bJnxSoamLmMeasuredFlrForwardThreshold(0),
bJnxSoamLmMaxFlrForwardThreshold(1),
bJnxSoamLmAvgFlrForwardThreshold(2),
bJnxSoamLmMeasuredFlrBackwardThreshold(3),
bJnxSoamLmMaxFlrBackwardThreshold(4),
bJnxSoamLmAvgFlrBackwardThreshold(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A vector of bits that indicates the type of SOAM LM thresholds
notifications that are enabled.
A bit set to '1' enables the specific SOAM LM threshold notification
and when the specific counter is enabled and the threshold is crossed a
notification is generated.
A bit set to '0' disables the specific SOAM LM threshold notification.
If a particular SOAM LM threshold is not supported the BIT value is
set to '0'.
bJnxSoamLmMeasuredFlrForwardThreshold(0)
Enables/disables measured frame loss forward ratio threshold
notification. The notification is sent immediately when the
jnxSoamLmMeasuredStatsForwardFlr value is
greater than or equal to the threshold value.
bJnxSoamLmMaxFlrForwardThreshold(1)
Enables/disables maximum frame loss forward ratio threshold
notification. The notification is sent immediately when the
jnxSoamLmCurrentStatsForwardMaxFlr value is greater
than or equal to threshold value in a Measurement Interval.
bJnxSoamLmAvgFlrForwardThreshold(2)
Enables/disables average frame loss forward ratio threshold
notification. The notification is sent when at the end of a
Measurement Interval if the
jnxSoamLmCurrentStatsForwardAvgFlr value is greater
than or equal to the threshold value.
bJnxSoamLmMeasuredFlrBackwardThreshold(3)
Enables/disables measured frame loss backward ratio threshold
notification. The notification is sent immediately when the
jnxSoamLmMeasuredStatsBackwardFlr value is
greater than or equal to the threshold value.
bJnxSoamLmMaxFlrBackwardThreshold(4)
Enables/disables maximum frame loss backward ratio threshold
notification. The notification is sent immediately when the
jnxSoamLmCurrentStatsBackwardMaxFlr value is greater
than or equal to threshold value in a Measurement Interval.
bJnxSoamLmAvgFlrBackwardThreshold(5)
Enables/disables average frame loss backward ratio threshold
notification. The notification is sent when at the end of a
Measurement Interval if the
jnxSoamLmCurrentStatsBackwardAvgFlr value is
greater than or equal to the threshold value.
"
DEFVAL { { } }
::= { jnxSoamLmThresholdCfgEntry 2 }
jnxSoamLmThresholdCfgAvgFlrForwardThreshold OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to set the average forward frame loss ratio
threshold value that will be used to determine if a threshold
notification is generated.
"
DEFVAL { 100000 }
::= { jnxSoamLmThresholdCfgEntry 3 }
jnxSoamLmThresholdCfgAvgFlrBackwardThreshold OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to set the average backward frame loss ratio
threshold value that will be used to determine if a threshold
notification is generated.
"
DEFVAL { 100000 }
::= { jnxSoamLmThresholdCfgEntry 4 }
jnxSoamLmThresholdCfgRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the row.
The writable columns in a row cannot be changed if the row
is active. All columns are to have a valid value before a row
can be activated.
"
::= { jnxSoamLmThresholdCfgEntry 5 }
-- *****************************************************************************
-- Ethernet Loss Measurement Current Availability Statistic Table
-- *****************************************************************************
jnxSoamLmCurrentAvailStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxSoamLmCurrentAvailStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object contains the current results for a SOAM Loss Measurement
session for availability statistics gathered during the interval
indicated by jnxSoamLmCfgAvailabilityMeasurementInterval.
Each row in the table represents a Loss Measurement session for
the defined MEP. This table uses four indices. The first three indices
are the indices of the Maintenance Domain, MaNet, and MEP tables. The
fourth index is the specific LM session on the selected MEP.
Instances of this managed object are created automatically
by the SNMP Agent when the Loss Measurement session is running.
The objects in this table apply regardless of the value of
jnxSoamLmCfgType unless otherwise specified in the object description.
Except for jnxSoamLmCurrentAvailStatsIndex,
jnxSoamLmCurrentAvailStatsStartTime, jnxSoamLmCurrentAvailStatsElapsedTime
and jnxSoamLmCurrentAvailStatsSuspect, each object in this table applies
only if the corresponding bit is set in jnxSoamLmCfgMeasurementEnable.
The objects in this table may be persistent upon reboot or restart
of a device.
"
REFERENCE
"[MEF SOAM-PM] D9, D18"
::= { jnxSoamPmLmObjects 6 }
jnxSoamLmCurrentAvailStatsEntry OBJECT-TYPE
SYNTAX JnxSoamLmCurrentAvailStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The conceptual row of jnxSoamLmCurrentAvailStatsTable"
INDEX {
dot1agCfmMdIndex,
dot1agCfmMaIndex,
dot1agCfmMepIdentifier,
jnxSoamLmCfgIndex
}
::= { jnxSoamLmCurrentAvailStatsTable 1 }
JnxSoamLmCurrentAvailStatsEntry ::= SEQUENCE {
jnxSoamLmCurrentAvailStatsIndex Unsigned32,
jnxSoamLmCurrentAvailStatsStartTime DateAndTime,
jnxSoamLmCurrentAvailStatsElapsedTime TimeInterval,
jnxSoamLmCurrentAvailStatsSuspect TruthValue,
jnxSoamLmCurrentAvailStatsForwardHighLoss Unsigned32,
jnxSoamLmCurrentAvailStatsBackwardHighLoss Unsigned32,
jnxSoamLmCurrentAvailStatsForwardConsecutiveHighLoss Unsigned32,
jnxSoamLmCurrentAvailStatsBackwardConsecutiveHighLoss Unsigned32,
jnxSoamLmCurrentAvailStatsForwardAvailable Gauge32,
jnxSoamLmCurrentAvailStatsBackwardAvailable Gauge32,
jnxSoamLmCurrentAvailStatsForwardUnavailable Gauge32,
jnxSoamLmCurrentAvailStatsBackwardUnavailable Gauge32,
jnxSoamLmCurrentAvailStatsForwardMinFlr Unsigned32,
jnxSoamLmCurrentAvailStatsForwardMaxFlr Unsigned32,
jnxSoamLmCurrentAvailStatsForwardAvgFlr Unsigned32,
jnxSoamLmCurrentAvailStatsBackwardMinFlr Unsigned32,
jnxSoamLmCurrentAvailStatsBackwardMaxFlr Unsigned32,
jnxSoamLmCurrentAvailStatsBackwardAvgFlr Unsigned32
}
jnxSoamLmCurrentAvailStatsIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index for the current availability Measurement Interval for this
PM session. This value will become the value for
jnxSoamLmHistoryAvailStatsIndex once the Measurement Interval
is completed. The duration of the Measurement Interval is specified
by jnxSoamLmCfgAvailabilityMeasurementInterval.
Measurement Interval indexes are assigned sequentially by
the SNMP Agent. The first Measurement Interval that occurs after
the session is started is assigned index 1.
"
::= { jnxSoamLmCurrentAvailStatsEntry 1 }
jnxSoamLmCurrentAvailStatsStartTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time that the current Measurement Interval started.
"
REFERENCE
"[MEF SOAM-PM] R87, R112"
::= { jnxSoamLmCurrentAvailStatsEntry 2 }
jnxSoamLmCurrentAvailStatsElapsedTime OBJECT-TYPE
SYNTAX TimeInterval
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time that the current Measurement Interval has been running, in 0.01
seconds.
"
REFERENCE
"[MEF SOAM-PM] R24, R87, R112"
::= { jnxSoamLmCurrentAvailStatsEntry 3 }
jnxSoamLmCurrentAvailStatsSuspect OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Whether the Measurement Interval has been marked as suspect.
The object is set to false at the start of a measurement
interval. It is set to true when there is a discontinuity in the
performance measurements during the Measurement Interval. Conditions
for a discontinuity include, but are not limited to the following:
1 - The local time-of-day clock is adjusted by at least 10 seconds
2 - The conducting of a performance measurement is halted before the
current Measurement Interval is completed
3 - A local test, failure, or reconfiguration that disrupts service
"
REFERENCE
"[MEF SOAM-PM] R39, R40, R41"
::= { jnxSoamLmCurrentAvailStatsEntry 4 }
jnxSoamLmCurrentAvailStatsForwardHighLoss OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is the number of high loss intervals (HLI) over
time in the forward direction.
The value starts at 0 and increments for every HLI that occurs.
This parameter is equivalent to 'L Sub T' found in MEF 10.2.1.
"
REFERENCE
"[MEF 10.2.1] 6.9.9; [MEF SOAM-PM] R87"
::= { jnxSoamLmCurrentAvailStatsEntry 5 }
jnxSoamLmCurrentAvailStatsBackwardHighLoss OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is the number of high loss intervals (HLI) over
time in the backwards direction.
The value starts at 0 and increments for every HLI that occurs.
This parameter is equivalent to 'L Sub T' found in MEF 10.2.1.
"
REFERENCE
"[MEF 10.2.1] 6.9.9; [MEF SOAM-PM] R87"
::= { jnxSoamLmCurrentAvailStatsEntry 6 }
jnxSoamLmCurrentAvailStatsForwardConsecutiveHighLoss OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is the number of consecutive high loss intervals
(CHLI) over time in the forward direction.
The value starts at 0 and increments for every HLI that occurs
that is determined to fall within a CHLI.
This parameter is equivalent to 'B Sub T' found in MEF 10.2.1.
"
REFERENCE
"[MEF 10.2.1] 6.9.9; [MEF SOAM-PM] R87"
::= { jnxSoamLmCurrentAvailStatsEntry 7 }
jnxSoamLmCurrentAvailStatsBackwardConsecutiveHighLoss OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is the number of consecutive high loss intervals
(CHLI) over time in the backward direction.
The value starts at 0 and increments for every HLI that occurs
that is determined to fall within a CHLI.
This parameter is equivalent to 'B Sub T' found in MEF 10.2.1.
"
REFERENCE
"[MEF 10.2.1] 6.9.9; [MEF SOAM-PM] R87"
::= { jnxSoamLmCurrentAvailStatsEntry 8 }
jnxSoamLmCurrentAvailStatsForwardAvailable OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the number of availability indicators
evaluated as available in the forward direction by this MEP during
this Measurement Interval.
"
REFERENCE
"[MEF SOAM-PM] R87; [MEF 10.2.1]"
::= { jnxSoamLmCurrentAvailStatsEntry 9 }
jnxSoamLmCurrentAvailStatsBackwardAvailable OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the number of availability indicators
evaluated as available in the backward direction by this MEP during
this Measurement Interval.
"
REFERENCE
"[MEF SOAM-PM] R87"
::= { jnxSoamLmCurrentAvailStatsEntry 10 }
jnxSoamLmCurrentAvailStatsForwardUnavailable OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the number of availability indicators
evaluated as unavailable in the forward direction by this MEP during
this Measurement Interval.
"
REFERENCE
"[MEF SOAM-PM] R87"
::= { jnxSoamLmCurrentAvailStatsEntry 11 }
jnxSoamLmCurrentAvailStatsBackwardUnavailable OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the number of availability indicators
evaluated as unavailable in the backward direction by this MEP
during this Measurement Interval.
"
REFERENCE
"[MEF SOAM-PM] R87"
::= { jnxSoamLmCurrentAvailStatsEntry 12 }
jnxSoamLmCurrentAvailStatsForwardMinFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the minimum one-way availability flr in the forward
direction, from among the set of availability flr values calculated by
the MEP in this Measurement Interval. There is one availability flr
value for each 'delta_t' time period within the Measurement Interval, as
specified in MEF 10.2.1.
The flr value is a ratio that is expressed as a
percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 2626 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmCurrentAvailStatsEntry 13 }
jnxSoamLmCurrentAvailStatsForwardMaxFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum one-way availability flr in the forward
direction, from among the set of availability flr values calculated by
the MEP in this Measurement Interval. There is one availability flr
value for each 'delta_t' time period within the Measurement Interval, as
specified in MEF 10.2.1.
The flr value is a ratio that is expressed as a
percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmCurrentAvailStatsEntry 14 }
jnxSoamLmCurrentAvailStatsForwardAvgFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average one-way availability flr in the forward
direction, from among the set of availability flr values calculated by
the MEP in this Measurement Interval. There is one availability flr
value for each 'delta_t' time period within the Measurement Interval, as
specified in MEF 10.2.1.
The flr value is a ratio that is expressed as a
percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmCurrentAvailStatsEntry 15 }
jnxSoamLmCurrentAvailStatsBackwardMinFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the minimum one-way availability flr in the backward
direction, from among the set of availability flr values calculated by
the MEP in this Measurement Interval. There is one availability flr
value for each 'delta_t' time period within the Measurement Interval, as
specified in MEF 10.2.1.
The flr value is a ratio that is expressed as a
percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmCurrentAvailStatsEntry 16 }
jnxSoamLmCurrentAvailStatsBackwardMaxFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum one-way availability flr in the backward
direction, from among the set of availability flr values calculated by
the MEP in this Measurement Interval. There is one availability flr
value for each 'delta_t' time period within the Measurement Interval, as
specified in MEF 10.2.1.
The flr value is a ratio that is expressed
as a percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmCurrentAvailStatsEntry 17 }
jnxSoamLmCurrentAvailStatsBackwardAvgFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average one-way availability flr in the backward
direction, from among the set of availability flr values calculated by
the MEP in this Measurement Interval. There is one availability flr
value for each 'delta_t' time period within the Measurement Interval, as
specified in MEF 10.2.1.
The flr value is a ratio that is expressed as a
percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmCurrentAvailStatsEntry 18 }
-- *****************************************************************************
-- Ethernet Loss Measurement Availability History Statistic Table
-- *****************************************************************************
jnxSoamLmHistoryAvailStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxSoamLmHistoryAvailStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the results for availability history Measurement
Intervals in a SOAM Loss Measurement session.
Rows of this table object are created automatically
by the SNMP Agent when the Loss Measurement session is running and a
Measurement Interval is completed.
Each row in the table represents the history statistics for a Loss
Measurement session availability Measurement Interval for the defined
MEP. This table uses five indices. The first three indices are the indices
of the Maintenance Domain, MaNet, and MEP tables. The fourth index is the
specific LM session on the selected MEP. The fifth index index the
specific Measurement Interval.
At least 32 completed Measurement Intervals are to be supported. 96
completed Measurement Intervals are recommended to be supported. If
there are at least 32 rows in the table and a new Measurement Interval
completes and a new row is to be added to the table, the oldest completed
Measurement Interval can be deleted (row deletion). If the availability
Measurement Interval is other than 15 minutes then a minimum of 8 hours of
completed Measurement Intervals are to be supported and 24 hours are
recommended to be supported.
Except for jnxSoamLmHistoryAvailStatsIndex,
jnxSoamLmHistoryAvailStatsEndTime, jnxSoamLmHistoryAvailStatsElapsedTime and
jnxSoamLmHistoryAvailStatsSuspect, each object in this table applies only
if the corresponding bit is set in jnxSoamLmCfgMeasurementEnable.
The rows and objects in this table are to be persistent upon reboot
or restart of a device.
"
REFERENCE
"[MEF SOAM-PM] R7, R15, R21, D8, R25"
::= { jnxSoamPmLmObjects 7 }
jnxSoamLmHistoryAvailStatsEntry OBJECT-TYPE
SYNTAX JnxSoamLmHistoryAvailStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The conceptual row of jnxSoamLmHistoryAvailStatsTable"
INDEX {
dot1agCfmMdIndex,
dot1agCfmMaIndex,
dot1agCfmMepIdentifier,
jnxSoamLmCfgIndex,
jnxSoamLmHistoryAvailStatsIndex
}
::= { jnxSoamLmHistoryAvailStatsTable 1 }
JnxSoamLmHistoryAvailStatsEntry ::= SEQUENCE {
jnxSoamLmHistoryAvailStatsIndex Unsigned32,
jnxSoamLmHistoryAvailStatsEndTime DateAndTime,
jnxSoamLmHistoryAvailStatsElapsedTime TimeInterval,
jnxSoamLmHistoryAvailStatsSuspect TruthValue,
jnxSoamLmHistoryAvailStatsForwardHighLoss Unsigned32,
jnxSoamLmHistoryAvailStatsBackwardHighLoss Unsigned32,
jnxSoamLmHistoryAvailStatsForwardConsecutiveHighLoss Unsigned32,
jnxSoamLmHistoryAvailStatsBackwardConsecutiveHighLoss Unsigned32,
jnxSoamLmHistoryAvailStatsForwardAvailable Gauge32,
jnxSoamLmHistoryAvailStatsBackwardAvailable Gauge32,
jnxSoamLmHistoryAvailStatsForwardUnavailable Gauge32,
jnxSoamLmHistoryAvailStatsBackwardUnavailable Gauge32,
jnxSoamLmHistoryAvailStatsForwardMinFlr Unsigned32,
jnxSoamLmHistoryAvailStatsForwardMaxFlr Unsigned32,
jnxSoamLmHistoryAvailStatsForwardAvgFlr Unsigned32,
jnxSoamLmHistoryAvailStatsBackwardMinFlr Unsigned32,
jnxSoamLmHistoryAvailStatsBackwardMaxFlr Unsigned32,
jnxSoamLmHistoryAvailStatsBackwardAvgFlr Unsigned32
}
jnxSoamLmHistoryAvailStatsIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index for the availability Measurement Interval within this
PM session.
Measurement Interval indexes are assigned sequentially by
the SNMP Agent. The first Measurement Interval that occurs after
the session is started is assigned index 1. Measurement Intervals
for availability (stored in this table) are based on
jnxSoamLmCfgAvailabilityMeasurementInterval and are indexed independently
of Measurement Intervals for FLR (stored in jnxSoamLmHistoryStatsTable).
Referential integrity is necessary, i.e., the index needs to be
persistent upon a reboot or restart of a device. The index
is never reused while this session is active until it wraps to zero.
The index value keeps increasing up to that time.
"
::= { jnxSoamLmHistoryAvailStatsEntry 1 }
jnxSoamLmHistoryAvailStatsEndTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time that the Measurement Interval ended.
"
REFERENCE
"[MEF SOAM-PM] R23, R87, R112"
::= { jnxSoamLmHistoryAvailStatsEntry 2 }
jnxSoamLmHistoryAvailStatsElapsedTime OBJECT-TYPE
SYNTAX TimeInterval
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The length of time that the Measurement Interval ran for,
in 0.01 seconds.
"
REFERENCE
"[MEF SOAM-PM] R24, R87, R112"
::= { jnxSoamLmHistoryAvailStatsEntry 3 }
jnxSoamLmHistoryAvailStatsSuspect OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Whether the Measurement Interval has been marked as suspect.
The object is set to true when there is a discontinuity in the
performance measurements during the Measurement Interval. Conditions
for a discontinuity include, but are not limited to the following:
1 - The local time-of-day clock is adjusted by at least 10 seconds
2 - The conducting of a performance measurement is halted before the
current Measurement Interval is completed
3 - A local test, failure, or reconfiguration that disrupts service
"
REFERENCE
"[MEF SOAM-PM] R39, R40, R41, R42"
::= { jnxSoamLmHistoryAvailStatsEntry 4 }
jnxSoamLmHistoryAvailStatsForwardHighLoss OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is the number of high loss intervals (HLI) over
time in the forward direction.
The value starts at 0 and increments for every HLI that occurs.
This parameter is equivalent to 'L Sub T' found in MEF 10.2.1.
"
REFERENCE
"[MEF 10.2.1] 6.9.9; [MEF SOAM-PM] R87"
::= { jnxSoamLmHistoryAvailStatsEntry 5 }
jnxSoamLmHistoryAvailStatsBackwardHighLoss OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is the number of high loss intervals (HLI) over
time in the backward direction.
The value starts at 0 and increments for every HLI that occurs.
This parameter is equivalent to 'L Sub T' found in MEF 10.2.1.
"
REFERENCE
"[MEF 10.2.1] 6.9.9; [MEF SOAM-PM] R87"
::= { jnxSoamLmHistoryAvailStatsEntry 6 }
jnxSoamLmHistoryAvailStatsForwardConsecutiveHighLoss OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is the number of consecutive high loss intervals
(CHLI) over time in the forward direction.
The value starts at 0 and increments for every HLI that occurs
that is determined to fall within a CHLI.
This parameter is equivalent to 'B Sub T' found in MEF 10.2.1.
"
REFERENCE
"[MEF 10.2.1] 6.9.9; 3266 [MEF SOAM-PM] R87"
::= { jnxSoamLmHistoryAvailStatsEntry 7 }
jnxSoamLmHistoryAvailStatsBackwardConsecutiveHighLoss OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is the number of consecutive high loss intervals
(CHLI) over time in the forward direction.
The value starts at 0 and increments for every HLI that occurs
that is determined to fall within a CHLI.
This parameter is equivalent to 'B Sub T' found in MEF 10.2.1.
"
REFERENCE
"[MEF 10.2.1] 6.9.9; [MEF SOAM-PM] R87"
::= { jnxSoamLmHistoryAvailStatsEntry 8 }
jnxSoamLmHistoryAvailStatsForwardAvailable OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the number of availability indicators
evaluated as available in the forward direction by this MEP during
this Measurement Interval.
"
REFERENCE
"[MEF SOAM-PM] R87; [MEF 10.2.1]"
::= { jnxSoamLmHistoryAvailStatsEntry 9 }
jnxSoamLmHistoryAvailStatsBackwardAvailable OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the number of availability indicators
evaluated as available in the backward direction by this MEP during
this Measurement Interval.
"
REFERENCE
"[MEF SOAM-PM] R87"
::= { jnxSoamLmHistoryAvailStatsEntry 10 }
jnxSoamLmHistoryAvailStatsForwardUnavailable OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the number of availability indicators
evaluated as unavailable in the forward direction by this MEP during
this Measurement Interval.
"
REFERENCE
"[MEF SOAM-PM] R87"
::= { jnxSoamLmHistoryAvailStatsEntry 11 }
jnxSoamLmHistoryAvailStatsBackwardUnavailable OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the number of availability indicators
evaluated as unavailable in the backward direction by this MEP
during this Measurement Interval.
"
REFERENCE
"[MEF SOAM-PM] R87"
::= { jnxSoamLmHistoryAvailStatsEntry 12 }
jnxSoamLmHistoryAvailStatsForwardMinFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the minimum one-way availability flr in the forward
direction, from among the set of availability flr values calculated by
the MEP in this Measurement Interval. There is one availability flr
value for each 'delta_t' time period within the Measurement Interval, as
specified in MEF 10.2.1.
The flr value is a ratio that is expressed as a
percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmHistoryAvailStatsEntry 13 }
jnxSoamLmHistoryAvailStatsForwardMaxFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum one-way availability flr in the forward
direction, from among the set of availability flr values calculated by
the MEP in this Measurement Interval. There is one availability flr
value for each 'delta_t' time period within the Measurement Interval, as
specified in MEF 10.2.1.
The flr value is a ratio that is expressed as a
percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmHistoryAvailStatsEntry 14 }
jnxSoamLmHistoryAvailStatsForwardAvgFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average one-way availability flr in the forward
direction, from among the set of availability flr values calculated by
the MEP in this Measurement Interval. There is one availability flr
value for each 'delta_t' time period within the Measurement Interval, as
specified in MEF 10.2.1.
The flr value is a ratio that is expressed as a
percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmHistoryAvailStatsEntry 15 }
jnxSoamLmHistoryAvailStatsBackwardMinFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the minimum one-way availability flr in the backward
direction, from among the set of availability flr values calculated by
the MEP in this Measurement Interval. There is one availability flr
value for each 'delta_t' time period within the Measurement Interval, as
specified in MEF 10.2.1.
The flr value is a ratio that is expressed as a
percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmHistoryAvailStatsEntry 16 }
jnxSoamLmHistoryAvailStatsBackwardMaxFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the maximum one-way availability flr in the backward
direction, from among the set of availability flr values calculated by
the MEP in this Measurement Interval. There is one availability flr
value for each 'delta_t' time period within the Measurement Interval, as
specified in MEF 10.2.1.
The flr value is a ratio that is expressed
as a percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmHistoryAvailStatsEntry 17 }
jnxSoamLmHistoryAvailStatsBackwardAvgFlr OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
UNITS "milli-percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the average one-way availability flr in the backward
direction, from among the set of availability flr values calculated by
the MEP in this Measurement Interval. There is one availability flr
value for each 'delta_t' time period within the Measurement Interval, as
specified in MEF 10.2.1.
The flr value is a ratio that is expressed as a
percent with a value of 0 (ratio 0.00) through 100000 (ratio 1.00).
Units are in milli-percent, where 1 indicates 3458 0.001 percent.
"
REFERENCE
"[MEF SOAM-PM] D37"
::= { jnxSoamLmHistoryAvailStatsEntry 18 }
-- *****************************************************************************
-- Performance Measurement Delay Threshold Configuration Table
-- *****************************************************************************
jnxSoamDmThresholdCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxSoamDmThresholdCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the list of Delay Measurement threshold configuration
values for DM Performance Monitoring.
The main purpose of the threshold configuration table is to configure
threshold alarm notifications indicating that a specific performance
metric is not being met.
Each row in the table represents a Delay Measurement session threshold
set for the defined MEP. This table uses five indices. The first three
indices are the indices of the Maintenance Domain, MaNet, and MEP tables.
The fourth index is the specific DM session on the selected MEP. The
fifth index is the specific threshold set number.
Rows in this table are not created automatically. A row is created in
this table to set up a threshold set on a configured MEP that has a
configured DM session.
An NE needs to support at least one threshold set for NE SOAM PM compliance. A
second threshold set on the NE is desirable. More than two threshold
sets on the NE can be configured if supported on the NE.
All the objects in the row have a default value that disables the
particular threshold measurement. In order to enable a threshold
measurement the particular bit in the jnxSoamDmThresholdCfgEnable object
is to be set to '1' and the selected threshold measurement is to have
a threshold value configured. Non-configured threshold measurements
are disabled by default.
The writable objects in this table need to be persistent upon reboot
or restart of a device.
"
::= { jnxSoamPmDmObjects 5 }
jnxSoamDmThresholdCfgEntry OBJECT-TYPE
SYNTAX JnxSoamDmThresholdCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The conceptual row of jnxSoamDmThresholdCfgTable."
INDEX {
dot1agCfmMdIndex,
dot1agCfmMaIndex,
dot1agCfmMepIdentifier,
jnxSoamDmCfgIndex,
jnxSoamDmThresholdCfgIndex
}
::= {jnxSoamDmThresholdCfgTable 1 }
JnxSoamDmThresholdCfgEntry ::= SEQUENCE {
jnxSoamDmThresholdCfgIndex Unsigned32,
jnxSoamDmThresholdCfgEnable BITS,
jnxSoamDmThresholdCfgAvgFrameDelayTwoWayThreshold Unsigned32,
jnxSoamDmThresholdCfgAvgIfdvTwoWayThreshold Unsigned32,
jnxSoamDmThresholdCfgRowStatus RowStatus
}
jnxSoamDmThresholdCfgIndex OBJECT-TYPE
SYNTAX Unsigned32(0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of the threshold number for the specific DM
threshold entry.
An index value of '1' is to be supported. Other index values
can be supported.
"
::= { jnxSoamDmThresholdCfgEntry 1 }
jnxSoamDmThresholdCfgEnable OBJECT-TYPE
SYNTAX BITS {
bJnxSoamDmMeasuredFrameDelayTwoWayThreshold(0),
bJnxSoamDmMaxFrameDelayTwoWayThreshold(1),
bJnxSoamDmAvgFrameDelayTwoWayThreshold(2),
bJnxSoamDmMeasuredIfdvTwoWayThreshold(3),
bJnxSoamDmMaxIfdvTwoWayThreshold(4),
bJnxSoamDmAvgIfdvTwoWayThreshold(5),
bJnxSoamDmMaxFrameDelayRangeTwoWayThreshold(6),
bJnxSoamDmAvgFrameDelayRangeTwoWayThreshold(7),
bJnxSoamDmMeasuredFrameDelayForwardThreshold(8),
bJnxSoamDmMaxFrameDelayForwardThreshold(9),
bJnxSoamDmAvgFrameDelayForwardThreshold(10),
bJnxSoamDmMeasuredIfdvForwardThreshold(11),
bJnxSoamDmMaxIfdvForwardThreshold(12),
bJnxSoamDmAvgIfdvForwardThreshold(13),
bJnxSoamDmMaxFrameDelayRangeForwardThreshold(14),
bJnxSoamDmAvgFrameDelayRangeForwardThreshold(15),
bJnxSoamDmMeasuredFrameDelayBackwardThreshold(16),
bJnxSoamDmMaxFrameDelayBackwardThreshold(17),
bJnxSoamDmAvgFrameDelayBackwardThreshold(18),
bJnxSoamDmMeasuredIfdvBackwardThreshold(19),
bJnxSoamDmMaxIfdvBackwardThreshold(20),
bJnxSoamDmAvgIfdvBackwardThreshold(21),
bJnxSoamDmMaxFrameDelayRangeBackwardThreshold(22),
bJnxSoamDmAvgFrameDelayRangeBackwardThreshold(23)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A vector of bits that indicates the type of SOAM DM threshold
notifications that are enabled.
A bit set to '1' enables the specific SOAM DM threshold notification
and when the specific counter is enabled and the threshold is crossed a
notification is generated.
A bit set to '0' disables the specific SOAM DM threshold notification.
If a particular SOAM DM threshold is not supported the BIT value is
set to '0'.
bJnxSoamDmMeasuredFrameDelayTwoWayThreshold(0)
Enables/disables measured frame two-way delay threshold
notification. The notification is sent immediately when the
jnxSoamDmMeasuredStatsFrameDelayTwoWay value is
greater than or equal to threshold value.
bJnxSoamDmMaxFrameDelayTwoWayThreshold(1)
Enables/disables maximum frame two-way delay threshold
notification. The notification is sent immediately when the
jnxSoamDmCurrentStatsFrameDelayTwoWayMax value is
greater than or equal to threshold value in a Measurement Interval.
bJnxSoamDmAvgFrameDelayTwoWayThreshold(2)
Enables/disables average frame two-way delay threshold
notification. The notification is sent when at the end of a
Measurement Interval if the
jnxSoamDmCurrentStatsFrameDelayTwoWayAvg value is
greater than or equal to the threshold value.
bJnxSoamDmMeasuredIfdvTwoWayThreshold(3)
Enables/disables measured frame IFDV two-way threshold
notification. The notification is sent immediately when the
jnxSoamDmMeasuredStatsIfdvTwoWay value is greater
than or equal to threshold value.
bJnxSoamDmMaxIfdvTwoWayThreshold(4)
Enables/disables maximum frame IFDV two-way threshold
notification. The notification is sent immediately when the
jnxSoamDmCurrentStatsIfdvTwoWayMax value is greater
than or equal to threshold value in a Measurement Interval.
bJnxSoamDmAvgIfdvTwoWayThreshold(5)
Enables/disables average frame IFDV two-way threshold
notification. The notification is sent when at the end of a
Measurement Interval if the
jnxSoamDmCurrentStatsIfdvTwoWayAvg value is
greater than or equal to the threshold value.
bJnxSoamDmMaxFrameDelayRangeTwoWayThreshold(6)
Enables/disables maximum Frame Delay Range two-way threshold
notification. The notification is sent immediately when the
jnxSoamDmCurrentStatsFrameDelayRangeTwoWayMax value is greater
than or equal to threshold value in a Measurement Interval.
bJnxSoamDmAvgFrameDelayRangeTwoWayThreshold(7)
Enables/disables average Frame Delay Range two-way threshold
notification. The notification is sent when at the end of a
Measurement Interval if the
jnxSoamDmCurrentStatsFrameDelayRangeTwoWayAvg value is
greater than or equal to the threshold value.
bJnxSoamDmMeasuredFrameDelayForwardThreshold(8)
Enables/disables measured forward frame delay threshold
notification. The notification is sent immediately when the
jnxSoamDmMeasuredStatsFrameDelayForward value is
greater than or equal to threshold value.
bJnxSoamDmMaxFrameDelayForwardThreshold(9)
Enables/disables maximum forward frame delay threshold
notification. The notification is sent immediately when the
jnxSoamDmCurrentStatsFrameDelayForwardMax value is
greater than or equal to threshold value in a Measurement Interval.
bJnxSoamDmAvgFrameDelayForwardThreshold(10)
Enables/disables average forward frame delay threshold
notification. The notification is sent when at the end of a
Measurement Interval if the
jnxSoamDmCurrentStatsFrameDelayForwardAvg value is
greater than or equal to the threshold value.
bJnxSoamDmMeasuredIfdvForwardThreshold(11)
Enables/disables measured frame IFDV forward threshold
notification. The notification is sent immediately when the
jnxSoamDmMeasuredStatsIfdvForward value is greater
than or equal to threshold value.
bJnxSoamDmMaxIfdvForwardThreshold(12)
Enables/disables maximum frame IFDV forward threshold
notification. The notification is sent immediately when the
jnxSoamDmCurrentStatsIfdvForwardMax value is greater
than or equal to threshold value in a Measurement Interval.
bJnxSoamDmAvgIfdvForwardThreshold(13)
Enables/disables average frame IFDV forward threshold
notification. The notification is sent when at the end of a
Measurement Interval if the
jnxSoamDmCurrentStatsIfdvForwardAvg value is
greater than or equal to the threshold value.
bJnxSoamDmMaxFrameDelayRangeForwardThreshold(14)
Enables/disables maximum Frame Delay Range forward threshold
notification. The notification is sent immediately when the
jnxSoamDmCurrentStatsFrameDelayRangeForwardMax value is greater
than or equal to threshold value in a Measurement Interval.
bJnxSoamDmAvgFrameDelayRangeForwardThreshold(15)
Enables/disables average Frame Delay Range forward threshold
notification. The notification is sent when at the end of a
Measurement Interval if the
jnxSoamDmCurrentStatsFrameDelayRangeForwardAvg value is
greater than or equal to the threshold value.
bJnxSoamDmMeasuredFrameDelayBackwardThreshold(16)
Enables/disables measured backward frame delay threshold
notification. The notification is sent immediately when the
jnxSoamDmMeasuredStatsFrameDelayBackward value is
greater than or equal to threshold value.
bJnxSoamDmMaxFrameDelayBackwardThreshold(17)
Enables/disables maximum backward frame delay threshold
notification. The notification is sent immediately when the
jnxSoamDmCurrentStatsFrameDelayBackwardMax value is
greater than or equal to threshold value in a
Measurement Interval.
bJnxSoamDmAvgFrameDelayBackwardThreshold(18)
Enables/disables average backward frame delay threshold
notification. The notification is sent when at the end of a
Measurement Interval if the
jnxSoamDmCurrentStatsFrameDelayBackwardAvg value is
greater than or equal to the threshold value.
bJnxSoamDmMeasuredIfdvBackwardThreshold(19)
Enables/disables measured frame IFDV backward threshold
notification. The notification is sent immediately when the
jnxSoamDmMeasuredStatsIfdvBackward value is greater
than or equal to threshold value.
bJnxSoamDmMaxIfdvBackwardThreshold(20)
Enables/disables maximum frame IFDV backward threshold
notification. The notification is sent immediately when the
jnxSoamDmCurrentStatsIfdvBackwardMax value is greater
than or equal to threshold value in a Measurement Interval.
bJnxSoamDmAvgIfdvBackwardThreshold(21)
Enables/disables average frame IFDV backward threshold
notification. The notification is sent when at the end of a
Measurement Interval if the
jnxSoamDmCurrentStatsIfdvBackwardAvg value is greater
than or equal to the threshold value.
bJnxSoamDmMaxFrameDelayRangeBackwardThreshold(22)
Enables/disables maximum Frame Delay Range backward threshold
notification. The notification is sent immediately when the
jnxSoamDmCurrentStatsFrameDelayRangeBackwardMax value is greater
than or equal to threshold value in a Measurement Interval.
bJnxSoamDmAvgFrameDelayRangeBackwardThreshold(23)
Enables/disables average Frame Delay Range backward threshold
notification. The notification is sent when at the end of a
Measurement Interval if the
jnxSoamDmCurrentStatsFrameDelayRangeBackwardAvg value is greater
than or equal to the threshold value.
"
DEFVAL { { } }
::= { jnxSoamDmThresholdCfgEntry 2 }
jnxSoamDmThresholdCfgAvgFrameDelayTwoWayThreshold OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to set the average two-way delay threshold
value that will be used to determine if a threshold notification is
generated.
"
DEFVAL { 4294967295 }
::= { jnxSoamDmThresholdCfgEntry 3 }
jnxSoamDmThresholdCfgAvgIfdvTwoWayThreshold OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to set the average two-way IFDV threshold
value that will be used to determine if a threshold notification is
generated.
"
DEFVAL { 4294967295 }
::= { jnxSoamDmThresholdCfgEntry 4 }
jnxSoamDmThresholdCfgRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the row.
The writable columns in a row cannot be changed if the row
is active. All columns are to have a valid value before a row
can be activated.
"
::= { jnxSoamDmThresholdCfgEntry 5 }
-- *****************************************************************************
-- Ethernet Delay Measurement Bin Configuration Table
-- *****************************************************************************
jnxSoamDmCfgMeasBinTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxSoamDmCfgMeasBinEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table includes configuration objects for the Delay Measurement
bins to collect stats.
Each row in the table is automatically created when the Delay
Measurement session is defined for the selected MEP. The number of rows
created is based upon three items: the DM type, the number of bins
defined for each type, and whether bins are enabled for each type.
The first four indices are the same as used to create the DM session:
Maintenance Domain, MaNet, MEP identification, and jnxSoamDmCfgIndex. The
fifth index is the type of bin, and the sixth index is the bin number.
For a dmDmm session all nine types of bins can be created. For a dm1DmmTx
session no bins are created. For a dm1DmmRx session only types
forwardFrameDelay, forwardIfdv, and forwardFrameDelayRange can be created.
The number of bins created for a bin type is based upon: the
jnxSoamDmCfgNumMeasBinsPerFrameDelayInterval object, the
jnxSoamDmCfgNumMeasBinsPerInterFrameDelayVariationInterval object, the
jnxSoamDmCfgNumMeasBinsPerFrameDelayRangeInterval object, and
the jnxSoamDmCfgMeasurementEnable object.
For instance, if a dmDmm session with Bins per Frame Delay Interval
set to 5, Bins per Frame Delay Variation Interval set to 3, and Frame
Delay Range set to 2 (default), all of the appropriate bits set in
jnxSoamDmMeasurementCfgEnable, the following number of rows would be
created:
For bin types TwoWayFrameDelay(1), forwardFrameDelay(2), and
backwardFrameDelay(3) = 5 bins * 3 types = 15 rows
For bin types TwoWayIfdv(4), forwardIfdv(5), backwardIfdv(6) =
3 bins * 3 types = 9 rows.
For bins types twoWayFrameDelayRange(7), forwardFrameDelayRange(8),
backwardFrameDelayRange(9) =
2 bins * 3 types = 6 rows.
This gives a total of 30 rows created for the DMM session example.
Each value in the bin defaults to 5000us greater than the previous bin,
with the first bin default value set to 0.
For the delay example above (5 bins), the following default values
would be written to the bins:
bin 1: 0 (range is 0us <= measurement < 5,000us)
bin 2: 5000 (range is 5,000us <= measurement < 10,000us)
bin 3: 10000 (range is 10,000us <= measurement < 15,000us)
bin 4: 15000 (range is 15,000us <= measurement < 20,000us)
bin 5: 20000 (range is 20,000us <= measurement < infinity)
For the delay variation example above (3 bins), the following default
values would be written to the bins:
bin 1: 0 (range is 0us <= measurement < 5,000us)
bin 2: 5000 (range is 5,000us <= measurement < 10,000us)
bin 3: 10000 (range is 10,000us <= measurement < infinity)
For the frame delay range example above (2 bins), the following default
values would be written to the bins:
bin 1: 0 (range is 0us <= measurement < 5,000us)
bin 2: 5000 (range is 5,000us <= measurement < infinity)
The writable objects in this table need to be persistent upon reboot
or restart of a device.
Rows are only created if the corresponding measurement type has been enabled
via the jnxSoamDmCfgMeasurementEnable object.
"
REFERENCE
"[MEF SOAM-PM] R34, R36, R37, D17, R38, R65, D26, D27, R99, D43, D44"
::= { jnxSoamPmDmObjects 6 }
jnxSoamDmCfgMeasBinEntry OBJECT-TYPE
SYNTAX JnxSoamDmCfgMeasBinEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The conceptual row of jnxSoamDmCfgMeasBinTable."
INDEX {
dot1agCfmMdIndex,
dot1agCfmMaIndex,
dot1agCfmMepIdentifier,
jnxSoamDmCfgIndex,
jnxSoamDmCfgMeasBinType,
jnxSoamDmCfgMeasBinNumber
}
::= { jnxSoamDmCfgMeasBinTable 1 }
JnxSoamDmCfgMeasBinEntry ::= SEQUENCE {
jnxSoamDmCfgMeasBinType JnxSoamTcDelayMeasurementBinType,
jnxSoamDmCfgMeasBinNumber Unsigned32,
jnxSoamDmCfgMeasBinLowerBound Unsigned32
}
jnxSoamDmCfgMeasBinType OBJECT-TYPE
SYNTAX JnxSoamTcDelayMeasurementBinType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object specifies whether the bin number is for
Frame Delay or Inter-Frame Delay Variation.
"
::= { jnxSoamDmCfgMeasBinEntry 1 }
jnxSoamDmCfgMeasBinNumber OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object specifies the bin number for the
configured boundary. The first bin has bin number 1.
"
::= { jnxSoamDmCfgMeasBinEntry 2 }
jnxSoamDmCfgMeasBinLowerBound OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds (us)"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the lower boundary for a
measurement bin. The upper boundary is defined by the next bin
value or infinite for the last bin defined.
The measurement boundary for each measurement bin is to
be larger than the measurement boundary of the preceding
measurement bin. By default, the next bin is set to 5000us larger
than the lower bin boundary.
The values in a bin boundary object represents the time range
used to segregate delay data into the appropriate statistical
data bin. For five bins with default values, each bin has the
following time range:
bin 1 = 0, range is 0us <= measurement < 5,000us
bin 2 = 5000, range is 5,000us <= measurement < 10,000us
bin 3 = 10000, range is 10,000us <= measurement < 15,000us
bin 4 = 15000, range is 15,000us <= measurement < 20,000us
< infinity
The first bin boundary (jnxSoamDmCfgBinNumber set to 1) always contains
the value of 0. Attempting to write a non-zero value to this bin will
result in an error.
"
REFERENCE
"[MEF SOAM-PM] R33, R35, D17"
::= { jnxSoamDmCfgMeasBinEntry 3 }
-- *****************************************************************************
-- Ethernet Delay Measurement Current Bin Statistic Table
-- *****************************************************************************
jnxSoamDmCurrentStatsBinsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxSoamDmCurrentStatsBinsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the result bins for the current Measurement
Interval in a SOAM Delay Measurement session.
Each row in the table represents the current bin statistics for a
Delay Measurement session for the defined MEP. This table uses six
indices. The first three indices are the indices of the Maintenance
Domain, MaNet, and MEP tables. The fourth index is the specific DM
session on the selected MEP. The fifth index indicates bin type and
the sixth indicates the specific bin number.
A row in this table is created automatically by the SNMP Agent when
the Delay Measurement session is configured and the bin counter value
is set to 0.
The objects in this table are ignored if jnxSoamDmCfgType is 1DmTx.
This table applies only if the corresponding bit is set in
jnxSoamDmCfgMeasurementEnable.
The objects in this table do not need to be persistent upon reboot
or restart of a device.
"
REFERENCE
"[MEF SOAM-PM] R7, R15, D9"
::= { jnxSoamPmDmObjects 7 }
jnxSoamDmCurrentStatsBinsEntry OBJECT-TYPE
SYNTAX JnxSoamDmCurrentStatsBinsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The conceptual row of jnxSoamDmCurrentStatsBinsTable"
INDEX {
dot1agCfmMdIndex,
dot1agCfmMaIndex,
dot1agCfmMepIdentifier,
jnxSoamDmCfgIndex,
jnxSoamDmCfgMeasBinType,
jnxSoamDmCfgMeasBinNumber
}
::= { jnxSoamDmCurrentStatsBinsTable 1 }
JnxSoamDmCurrentStatsBinsEntry ::= SEQUENCE {
jnxSoamDmCurrentStatsBinsCounter Gauge32
}
jnxSoamDmCurrentStatsBinsCounter OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the count of the number of completed
measurements initiated in this Measurement Interval whose value
falls within the range specified for this bin (that is, greater
than or equal to the measurement boundary for the bin, and
(unless the bin is the last bin) less than the measurement
boundary for the following bin.
"
REFERENCE
"[MEF SOAM-PM] R66, R67, R100, R101"
::= { jnxSoamDmCurrentStatsBinsEntry 1 }
-- *****************************************************************************
-- Ethernet Delay Measurement Bin History Statistic Table
-- *****************************************************************************
jnxSoamDmHistoryStatsBinsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxSoamDmHistoryStatsBinsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the result bins for the history Measurement
Intervals in a SOAM Delay Measurement session.
Rows of this table are created automatically
by the SNMP Agent when the Delay Measurement session is running and a
Measurement Interval is completed.
Each row in the table represents the Measurement Interval history
statistics for a specific bin in a Delay Measurement session for the
defined MEP. This table uses seven indices. The first three indices
are the indices of the Maintenance Domain, MaNet, and MEP tables. The
fourth index is the specific DM session on the selected MEP. The
fifth index is the Measurement Interval. The sixth index is the
specific bin type. The seventh index is the specific bin number.
Rows in this table pertaining to a given Measurement Interval are
row in the
jnxSoamDmHistoryStatsTable is deleted.
The objects in this table are ignored if jnxSoamDmCfgType is 1DmTx.
This table applies only if the corresponding bit is set in
jnxSoamDmCfgMeasurementEnable.
The objects in this table need to be persistent upon reboot
or restart of a device.
"
REFERENCE
"[MEF SOAM-PM] R7, R15, R21, D8, R66, R67"
::= { jnxSoamPmDmObjects 8 }
jnxSoamDmHistoryStatsBinsEntry OBJECT-TYPE
SYNTAX JnxSoamDmHistoryStatsBinsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The conceptual row of jnxSoamDmHistoryStatsBinsTable"
INDEX {
dot1agCfmMdIndex,
dot1agCfmMaIndex,
dot1agCfmMepIdentifier,
jnxSoamDmCfgIndex,
jnxSoamDmHistoryStatsIndex,
jnxSoamDmCfgMeasBinType,
jnxSoamDmCfgMeasBinNumber
}
::= { jnxSoamDmHistoryStatsBinsTable 1 }
JnxSoamDmHistoryStatsBinsEntry ::= SEQUENCE {
jnxSoamDmHistoryStatsBinsCounter Gauge32
}
jnxSoamDmHistoryStatsBinsCounter OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the count of the number of completed
measurements initiated in this Measurement Interval whose value
falls within the range specified for this bin (that is, greater
than or equal to the measurement boundary for the bin, and
(unless the bin is the last bin) less than the measurement
boundary for the following bin.
"
REFERENCE
"[MEF SOAM-PM] R66, R67, R100, R101"
::= { jnxSoamDmHistoryStatsBinsEntry 1 }
-- *****************************************************************************
-- Notification Data Objects
-- *****************************************************************************
jnxSoamPmNotificationObjDateAndTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object contains the time and date at the time that
the notification event is detected, not the time of the notification
generation.
This object is used only for notifications. The mechanism to set and keep
current the date and time is not specified.
"
::= { jnxSoamPmNotificationObj 1 }
jnxSoamPmNotificationObjThresholdId OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The Object Identifier of the object that caused the generation of the
notification from the jnxSoamLmThresholdEntry or jnxSoamDmThresholdEntry.
This object is only used for the notification.
"
::= { jnxSoamPmNotificationObj 2 }
jnxSoamPmNotificationObjThresholdConfig OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The configured threshold value of the object that caused the generation
of the notification.
This object is only used for the notification.
"
::= { jnxSoamPmNotificationObj 3 }
jnxSoamPmNotificationObjThresholdValue OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The measured value of the object at the time of the generation of the
Notification, from the jnxSoamLmMeasuredStatsTable,
jnxSoamLmCurrentStatsTable,
jnxSoamDmMeasuredStatsTable or jnxSoamDmCurrentStatsTable.
This object is only used for the notification.
"
::= { jnxSoamPmNotificationObj 4 }
jnxSoamPmNotificationObjSuspect OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The suspect flag for the current Measurement Interval in which the
notification was generated from the jnxSoamLmCurrentStatsTable,
or jnxSoamDmCurrentStatsTable.
This object is only used for the notification.
"
::= { jnxSoamPmNotificationObj 5 }
jnxSoamPmNotificationObjCrossingType OBJECT-TYPE
SYNTAX INTEGER {
aboveAlarm (1),
setAlarm (2),
clearAlarm (3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The Notification Crossing Type of the object that caused the generation
of the notification from the jnxSoamLmThresholdEntry or
jnxSoamDmThresholdEntry.
aboveAlarm(1) indicates that the crossing type alarm was an above
threshold
setAlarm(2) indicates that the crossing type alarm was a set
threshold
clearAlarm(3) indicates that the crossing type alarm was a clear
threshold
This object is only used for the notification.
"
::= { jnxSoamPmNotificationObj 6 }
jnxSoamPmNotificationObjDestinationMep OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The MAC address of the Destination MEP associated the notification found
in either the jnxSoamDmCfgTable or jnxSoamLmCfgTable.
This object is only used for the notification.
"
::= { jnxSoamPmNotificationObj 7 }
jnxSoamPmNotificationObjPriority OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The CoS priority of the associated notification found
in either the jnxSoamDmCfgTable or jnxSoamLmCfgTable.
This object is only used for the notification.
"
::= { jnxSoamPmNotificationObj 8 }
jnxSoamPmNotificationTotalFlaps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The measured value of total number of flaps occured during the
flap trap timer itnerval.
"
::= { jnxSoamPmNotificationObj 9 }
jnxSoamPmNotificationAccTotalFlaps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The measured value of total number of accumulated flaps occured during the
flap trap timer itnerval.
"
::= { jnxSoamPmNotificationObj 10 }
jnxSoamPmNotificationObjThresholdLastValue OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The measured value of the object at the time of the generation of the
last Notification during the flap trap timer interval.
This object is only used for the notification.
"
::= { jnxSoamPmNotificationObj 11 }
jnxSoamPmNotificationObjCurrentState OBJECT-TYPE
SYNTAX INTEGER {
aboveAlarm (1),
setAlarm (2),
clearAlarm (3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The Current Notification Crossing Type of the
object that caused the generation
of the notification at the end of timer interval
from the jnxSoamLmThresholdEntry or
jnxSoamDmThresholdEntry.
aboveAlarm(1) indicates that the crossing type alarm was an above
threshold
setAlarm(2) indicates that the crossing type alarm was a set
threshold
clearAlarm(3) indicates that the crossing type alarm was a clear
threshold
This object is only used for the notification.
"
::= { jnxSoamPmNotificationObj 12 }
jnxSoamPmNotificationObjLastDateAndTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object contains the time and date at the time that
the last notification event is detected, at the end of flap timer interval
and not the time of the first notification
generation.
This object is used only for notifications. The mechanism to set and keep
current the date and time is not specified.
"
::= { jnxSoamPmNotificationObj 13 }
-- *****************************************************************************
-- NOTIFICATIONS (TRAPS)
-- *****************************************************************************
jnxSoamLmSessionStartStopAlarm NOTIFICATION-TYPE
OBJECTS {
jnxSoamLmCfgSessionStatus,
jnxSoamPmNotificationObjDateAndTime,
jnxSoamPmNotificationObjDestinationMep
}
STATUS current
DESCRIPTION
"An jnxSoamLmSessionStartStopAlarm notification is sent when the state of
jnxSoamLmCfgSessionStatus changes.
The management entity that receives the notification can identify
the system from the network source address of the notification,
and can identify the individual PM session reporting the start/stop
by the indices in the OID jnxSoamLmCfgSessionStatus, including
dot1agCfmMdIndex, dot1agCfmMaIndex, dot1agCfmMepIdentifier, and
jnxSoamLmCfgIndex.
An agent is not to generate more than one jnxSoamLmSessionStartStopAlarm
'notification-event' in a given time interval per LM session as specified
by the jnxSoamPmNotificationCfgAlarmInterval. A 'notification-event' is
the transmission of a single notification to a list of notification
destinations.
If additional operational state changes occur within the
jnxSoamPmNotificationCfgAlarmInterval period, then notification
generation for these changes are be suppressed by the agent until
the current alarm interval expires. At the end of an alarm interval
period, one notification-event is generated if any operational
state changes occurred since the start of the alarm interval period. In
such a case, another alarm interval period is started right away.
"
::= { jnxSoamPmNotifications 1 }
jnxSoamDmSessionStartStopAlarm NOTIFICATION-TYPE
OBJECTS {
jnxSoamDmCfgSessionStatus,
jnxSoamPmNotificationObjDateAndTime,
jnxSoamPmNotificationObjDestinationMep
}
STATUS current
DESCRIPTION
"An jnxSoamDmSessionStartStopAlarm notification is sent when the state of
jnxSoamDmCfgSessionStatus changes.
The management entity that receives the notification can identify
the system from the network source address of the notification,
and can identify the individual PM session reporting the start/stop
by the indices in the OID jnxSoamDmCfgSessionStatus, including
dot1agCfmMdIndex, dot1agCfmMaIndex, dot1agCfmMepIdentifier, and
jnxSoamDmCfgIndex.
An agent is not to generate more than one jnxSoamDmSessionStartStopAlarm
'notification-event' in a given time interval per DM session as specified
by jnxSoamPmNotificationCfgAlarmInterval. A 'notification-event' is the
transmission of a single notification to a list of notification
destinations.
If additional operational state changes occur within the
jnxSoamPmNotificationCfgAlarmInterval period, then notification generation
for these changes are suppressed by the agent until the current alarm
interval expires. At the end of an alarm interval period, one
notification-event is generated if any operational state changes
occurred since the start of the alarm interval period. In such a case,
another alarm interval period is started right away.
"
::= { jnxSoamPmNotifications 2 }
jnxSoamPmThresholdCrossingAlarm NOTIFICATION-TYPE
OBJECTS {
jnxSoamPmNotificationObjCrossingType,
jnxSoamPmNotificationObjThresholdId,
jnxSoamPmNotificationObjThresholdConfig,
jnxSoamPmNotificationObjThresholdValue,
jnxSoamPmNotificationObjSuspect,
jnxSoamPmNotificationObjDateAndTime,
jnxSoamPmNotificationObjDestinationMep
}
STATUS current
DESCRIPTION
"An jnxSoamPmThresholdCrossingAlarm notification is sent if the
following conditions are met for a particular type.
For an aboveAlarm five conditions need to be met:
a) measurement of the parameter is enabled via jnxSoamLmCfgMeasurementEnable
for a LM crossing or jnxSoamDmCfgMeasurementEnable for a DM crossing;
and
b) the parameter threshold is configured in the jnxSoamLmThresholdCfgTable
or jnxSoamDmThresholdCfgTable; and
c) the threshold crossing type of bPmThresholdAboveAlarm is enabled;
and
d) the measured value of the parameter exceeds the value configured in
the jnxSoamLmThresholdCfgTable for a LM crossing entry or
jnxSoamDmThresholdCfgTable for a DM crossing entry for a type of
bPmThresholdAboveAlarm; and
e) no previous jnxSoamPmThresholdCrossingAlarm notifications with type
aboveAlarm have been sent relating to the same threshold in the
jnxSoamLmThresholdCfgTable or jnxSoamDmThresholdCfgTable and the
same parameter, during this Measurement Interval.
For a setAlarm five conditions need to be met:
a) measurement of the parameter is enabled via jnxSoamLmCfgMeasurementEnable
for a LM crossing or jnxSoamDmCfgMeasurementEnable for a DM crossing;
and
b) the parameter threshold is configured in the jnxSoamLmThresholdCfgTable
or jnxSoamDmThresholdCfgTable; and
c) the threshold crossing type of bPmThresholdSetClearAlarm is enabled;
and
d) the measured value of the parameter exceeds the value configured in
the jnxSoamLmThresholdCfgTable for a LM crossing entry or
jnxSoamDmThresholdCfgTable for a DM crossing entry for a type of
bPmThresholdSetClearAlarm for the Measurement Interval; and
e) the previous measured value did not
exceed the value configured in the jnxSoamLmThresholdCfgTable for
a LM crossing entry or jnxSoamDmThresholdCfgTable for a DM crossing
entry for a type of bPmThresholdSetClearAlarm.
For a clearAlarm five conditions need to be met:
a) measurement of the parameter is enabled via jnxSoamLmCfgMeasurementEnable
for a LM crossing or jnxSoamDmCfgMeasurementEnable for a DM crossing;
and
b) the parameter threshold is configured in the jnxSoamLmThresholdCfgTable
or jnxSoamDmThresholdCfgTable; and
c) the threshold crossing type of bPmThresholdSetClearAlarm is enabled;
and
d) the measured value of the parameter did not exceed the value configured
in the jnxSoamLmThresholdCfgTable for a LM crossing entry or
jnxSoamDmThresholdCfgTable for a DM crossing entry for a type of
bPmThresholdSetClearAlarm for the Measurement Interval; and
e) the previous measured value did
exceed the value configured in the jnxSoamLmThresholdCfgTable for
a LM crossing entry or jnxSoamDmThresholdCfgTable for a DM crossing
entry for a type of bPmThresholdSetClearAlarm.
In the case of thresholds applied to a maximum or average measurement
counter, the previous measured value is the value of the counter at the
end of the preceding Measurement Interval. In the case of thresholds
applied to the last measured value, it is the previous measured value.
The management entity that receives the notification can identify
the system from the network source address of the notification,
and can identify the LM or DM session reporting the threshold
crossing by the indices in the jnxSoamPmNotificationCfgThresholdId object,
including dot1agCfmMdIndex, dot1agCfmMaIndex, dot1agCfmMepIdentifier,
and the jnxSoamLmCfgIndex or jnxSoamDmCfgIndex.
An agent is not to generate more than one jnxSoamLmThresholdCrossingAlarm
'notification-event' of a given type per LM or DM session as specified
by jnxSoamPmNotificationCfgAlarmInterval. A 'notification-event' is the
transmission of a single notification to a list of notification
destinations.
If additional threshold crossing events occur within the
jnxSoamPmNotificationCfgAlarmInterval period, then notification
generation for these changes are suppressed by the agent until
the current alarm interval expires. At the end of an alarm interval
period, one notification-event is generated if any threshold
crossing events occurred since the start of the alarm interval period.
In such a case, another alarm interval period is started right away.
"
::= { jnxSoamPmNotifications 3 }
jnxSoamPmThresholdFlapAlarm NOTIFICATION-TYPE
OBJECTS {
jnxSoamPmNotificationObjThresholdId,
jnxSoamPmNotificationObjThresholdConfig,
jnxSoamPmNotificationObjThresholdLastValue,
jnxSoamPmNotificationTotalFlaps,
jnxSoamPmNotificationAccTotalFlaps,
jnxSoamPmNotificationObjCurrentState,
jnxSoamPmNotificationObjDestinationMep
}
STATUS current
DESCRIPTION
" The jnxSoamPmThresholdFlapAlarm is sent when the CFM Threshold Flap
Notification feature is enabled which would dampen the
jnxSoamPmThresholdCrossingAlarm sent to NMS. The jnxSoamPmThresholdFlapAlarm
gives details about Flaps occured during the time interval. The
jnxSoamPmThresholdFlapAlarm is sent for the follwing below conditions
a) Trap is sent if one flap sequence has occured
b) Trap is sent if threshold or timer changes happens.
c) Trap is sent when finite iterations counts expires.
"
::= { jnxSoamPmNotifications 4 }
END
|