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
|
--*******************************************************************
--* SAGEM SA *
--*******************************************************************
--*******************************************************************
-- Filename: sdh-ETS
-- File type: .mib
--
-- Description: SNMPc source Mib file.
-- The MIB module defines SDH transmition part of an equipment
-- as it's modeled in ETSI ETS 300 304.
--
-- Version: 19 11 2002
--
-- Date(DD MM YYYY): 15 11 02 last update for IONOS NMS
--
-- Contact: D. Mobuchon, F. Bonnevialle
--
-- History:
-- Name: F.Bonnevialle
-- Date: 12 12 2000
-- Desc: original
--
-- Name: S.LAURENT
-- Date: 08 02 2001
-- Desc: The synchronization functions of this MIB are deleted
-- and put in a new MIB SYNCHRO.
--
-- Name: S.LAURENT
-- Date: 11 04 2001
-- Desc: * Modifications in MSA, VC4 and AU4 Tables.
--
-- Name: S.LAURENT
-- Date: 25 04 2001
-- Desc: * Name Modification: ppi -> nspi (for not spi).
-- This change allow to accept more non-sdh interfaces such
-- as atm or Ethernet (which are not plesiochronous kind).
-- * Size Modification of the vc4PathTrace Strings
-- * deletion of alarme and severity fields in MsaTable.
--
-- Name: F.Bonnevialle
-- Date: 30 04 2001
-- Desc: Description modification to match with ETS-300 304
--
-- Name: S.LAURENT
-- Date: 09 08 2001
-- Desc: * Rights access modification on variables: vc12TTPSinkPointer
-- and vc3TTPSinkPointer
-- * TUG3 Object Deletion: This object didn't give any adding
-- information.
-- * Deletion of tu3CTPLom and tu12CTPLom variables
-- * Creation of au4CTPLom Variable adding to a new value in Au4CTPFailure Type( lom(3))
--
-- Name: S.LAURENT
-- Date: 30 08 2001
-- Desc: * comments modification on Au4CTPTable variables
-- * Add a new value 'tu(20)' in AU4CTPType
-- * Deletion of tu3CTPLom and tu12CTPLom variables
-- * Creation of au4CTPLom Variable adding to a new value in Au4CTPFailure Type( lom(3))
--
-- Name: S.LAURENT
-- Date: 22 05 2002
-- Desc: * Creation of ChannelTable
-- * Creation of BandwidthTable
-- * Add a new value 'channel(4)' in NspiSrcType
--
-- Name: F.Bonnevialle
-- Date: 15 11 2002
-- Desc: Modification for SilverCreek Compiler
--
--*******************************************************************
--*******************************************************************
--* Copyright (c) 2002, SAGEM , All rights reserved. *
--*******************************************************************
--*******************************************************************
-- MIB: SDH-ETS-MIB
--*******************************************************************
SDH-ETS-MIB DEFINITIONS ::= BEGIN
--*******************************************************************
-- IMPORTS
--*******************************************************************
IMPORTS
sagemDr FROM SAGEM-DR-MIB
SagemBoolean, Severity FROM EQUIPMENT-MIB
MODULE-IDENTITY,OBJECT-TYPE FROM SNMPv2-SMI
DisplayString FROM SNMPv2-TC; --RFC1213-MIB;
sdhEts MODULE-IDENTITY
LAST-UPDATED "0205220000Z"
ORGANIZATION "SAGEM-Tolbiac drd/ddp/tmhd"
CONTACT-INFO
" "
DESCRIPTION
"The MIB module defines SDH transmition part of an equipment
This MIB use the logical model defined in ETSI ETS 300 304.
ETS 300 304 (February 1997) defines the SDH information
model for the Network Element.
This MIB refers to SHELF-MIB
for the definition of the Board that supports the interface.
This MIB is refered by XCON-MIB that uses
the definition of termination point to create cross connection.
This MIB also define configuration of the different SDH blocs
such as alarm monitoring and severity and give the current status of
the termination point.
"
::= { sagemDr 110 }
-- Synchronous Physical Interface Trail Termination Point
-- Reference to ETS 300 304:
-- electricalSPITTPSink, electricalSPITTPSink
-- opticalSPITTPSink, opticalSPITTPSink
spiTTP OBJECT IDENTIFIER ::= { sdhEts 10 }
-- regenerator section terminaison Trail Termination Point
-- Reference to ETS 300 304:
-- rsTTPSink, rsTTPSink
rsTTP OBJECT IDENTIFIER ::= { sdhEts 20 }
-- regenerator section terminaison Connection Termination Point
-- Reference to ETS 300 304:
-- rsCTPSink, rsCTPSink
rsCTP OBJECT IDENTIFIER ::= { sdhEts 25 }
-- multiplex section terminaison Trail Termination Point
-- Reference to ETS 300 304:
-- msTTPSink, msTTPSink
msTTP OBJECT IDENTIFIER ::= { sdhEts 30 }
-- multiplex section terminaison Connection Termination Point
-- Reference to ETS 300 304:
-- msCTPSink, msCTPSink
msCTP OBJECT IDENTIFIER ::= { sdhEts 35 }
-- multiplex section adaptation
msa OBJECT IDENTIFIER ::= { sdhEts 60 }
-- administrative unit order 4 Connection Termination Point
-- Reference to ETS 300 304:
-- au4CTPSink, au4CTPSink
au4CTP OBJECT IDENTIFIER ::= { sdhEts 70 }
-- virtual container order 4 Trail Termination Point
-- Reference to ETS 300 304:
-- vc4TTPSink, vc4TPSink
vc4TTP OBJECT IDENTIFIER ::= { sdhEts 100 }
-- tributary unit order 3 Connection Termination Point
-- Reference to ETS 300 304:
-- tu3CTPSink, tu3CTPSink
tu3CTP OBJECT IDENTIFIER ::= { sdhEts 120 }
-- virtual container order 3 Trail Termination Point
-- Reference to ETS 300 304:
-- vc3TTPSink, vc3TTPSink
vc3TTP OBJECT IDENTIFIER ::= { sdhEts 130 }
-- tributary unit order 12 Connection Termination Point
-- Reference to ETS 300 304:
-- tu12CTPSink, tu12CTPSink
tu12CTP OBJECT IDENTIFIER ::= { sdhEts 140 }
-- virtual container order 12 Trail Termination Point
-- Reference to ETS 300 304:
-- vc12CTPSink, vc12CTPSink
vc12TTP OBJECT IDENTIFIER ::= { sdhEts 150 }
-- non sdh Connection termination point Connection Termination Point
-- Reference to ETS 300 304:
-- p12CTPSink, p12CTPSink, p31CTPSink, p31CTPSink, ...
-- for PDH terminaison.
-- The object (table/type) can be updated to match other kind of
-- non SDH terminaison such as Ethernet or ATM interface over SDH
nspiCTP OBJECT IDENTIFIER ::= { sdhEts 160 }
-- non sdh physical port Trail Termination Point
-- Reference to ETS 300 304:
-- p12TTPSink, p12TTPSink, p31TTPSink, p31TTPSink, ...
-- for PDH terminaison.
-- The object (table/type) can be updated to match other kind of
-- non SDH terminaison such as Ethernet or ATM interface over SDH
nspiTTP OBJECT IDENTIFIER ::= { sdhEts 170 }
-- Channel Layer
channel OBJECT IDENTIFIER ::= { sdhEts 180 }
-- Non sdh adaptation layer: Bandwidth
bandwidth OBJECT IDENTIFIER ::= { sdhEts 190 }
-- Note on the srcPointer ans sinkPointer
-- The transmission functions and interfaces include a set of integer named
-- "Pointer".
-- These Pointers are used to link together the different SDH level.
-- SinkPointer is used to go UP in the hierarchie (go to the physical interface)
-- and SourcePointer is used to go Down (go to VC and sub VC)
-- These pointer can be used to retreive all the contained TTP
-- or to retrieve the containing TTP and the physical interface (and board)
-- Note on CTPIndex
-- A CTP index is used to find a possible Connection Termination Point
-- supported by a Trail Termination Point.
-- If the CTP is not used for a Cross Connection the value is set to 0.
-- Remark
-- rstCTP and mstCTP are not implemented. The MIB can be upgraded if these
-- level of Connection are used.
--*******************************************************************
--* TTP synchronous physical interface (spi)
--*******************************************************************
SpiTTPFailure ::= INTEGER
{
none(0),
los(1),
tf(2),
losTf(3)
}
Loopback ::= INTEGER
{
none(0),
line(1),
equipment(2),
lineEquipement(3)
}
STMLevel ::= INTEGER
{
stm1(1),
stm4(4),
stm16(16),
stm64(64)
}
SpiTTPType ::= INTEGER
{
electrical(0),
optical(1)
}
spiTTPNumber OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of synchronous physical interface in equipment
= number of element in spiTTPTable "
::= { spiTTP 1 }
spiTTPTable OBJECT-TYPE
SYNTAX SEQUENCE OF SpiTTPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of synchronous physical interface in equipment."
::= { spiTTP 2 }
spiTTPEntry OBJECT-TYPE
SYNTAX SpiTTPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A particular synchronous physical interface of the equipment."
INDEX { spiTTPIndex }
::= { spiTTPTable 1 }
SpiTTPEntry ::= SEQUENCE
{
spiTTPIndex INTEGER,
spiTTPStmLevel STMLevel,
spiTTPType SpiTTPType,
spiTTPName DisplayString,
spiTTPBoardIndex INTEGER,
spiTTPBoardAcces INTEGER,
spiTTPMonitor SagemBoolean,
spiTTPFailure SpiTTPFailure,
spiTTPSeverity Severity,
spiTTPLoopback Loopback,
spiTTPLos Severity,
spiTTPTf Severity
}
spiTTPIndex OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value which identify a particular
synchronous physical interface.
The value of this index is a constant value assigned to an entry at
equipment design time. It is usualy related to harware.
Exemple:
For ADR155c equipement index are 1,64,127,190 for STM1 interfaces.
For ADR2500c equipement index are:
1,1009,2017,3025,4033,5041,6049,7057 for 8 STM16 or 8 STM4,
1,253,505,757 1009,1261,1513,1765 |
2017,2269,2521,2773 3025,3277,3529,3781 | --> for 8 (4*STM1)
4033,4285,4537,4789 5041,5293,5545,5797 |
6049,6301,6553,6805 7057,7309,7561,7813 | "
::= { spiTTPEntry 1 }
spiTTPStmLevel OBJECT-TYPE
SYNTAX STMLevel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The STM-n level of the interface."
::= { spiTTPEntry 2 }
spiTTPType OBJECT-TYPE
SYNTAX SpiTTPType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The kind of the interface: electrical or optical"
::= { spiTTPEntry 3 }
spiTTPName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A text string which identifies the particular entry among the
synchronous physical interface entries. "
::= { spiTTPEntry 4 }
spiTTPBoardIndex OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of the Board that supports the physical acces
of this interface. This index refers to another MIB that defines
the board"
::= { spiTTPEntry 5 }
spiTTPBoardAcces OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Friendly Index of the physical acces on the Board that supports
the interface"
::= { spiTTPEntry 6 }
spiTTPMonitor OBJECT-TYPE
SYNTAX SagemBoolean
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the value of this field is set to false, the failure detection
is stopped for this synchronous physical interface."
::= { spiTTPEntry 7 }
spiTTPFailure OBJECT-TYPE
SYNTAX SpiTTPFailure
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Active failures on synchronous physical interface"
::= { spiTTPEntry 8 }
spiTTPSeverity OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Severity associed with active failure for synchronous physical interface."
::= { spiTTPEntry 9 }
spiTTPLoopback OBJECT-TYPE
SYNTAX Loopback
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This field gives the active loopback status on the
synchronous physical interface.
When its value is `line' the data flow recieved from the port side
is sent back to the line.
When its value is `equipment' the data flow recieved form equipment
side is send back.
The field can be set to a particular loopback value, even if there
no garantee that the loopback is really done. The real loopback status
of the interface must be checked in the response.
The loopback can be cleared by the equipment when it cannot remain
for any reason."
::= { spiTTPEntry 10 }
spiTTPLos OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Loss Of Signal failure
for synchronous physical interface."
::= { spiTTPEntry 20 }
spiTTPTf OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Tranmit Fail failure
for synchronous physical interface."
::= { spiTTPEntry 21 }
-- End of synchronous physical interface description
--*******************************************************************
--* regenerator section terminaison (rst)
--*******************************************************************
RsTTPFailure ::= INTEGER
{
none(0), lof(1)
}
EOWMode ::= INTEGER
{
codirectional(0),
contradirectional(1)
}
rsTTPTable OBJECT-TYPE
SYNTAX SEQUENCE OF RsTTPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of regenerator section terminaison in equipment."
::= { rsTTP 2 }
rsTTPEntry OBJECT-TYPE
SYNTAX RsTTPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A particular regenerator section terminaison of the equipment."
INDEX {rsTTPIndex}
::= { rsTTPTable 1 }
RsTTPEntry ::= SEQUENCE {
rsTTPIndex INTEGER, -- spi index
rsTTPMonitor SagemBoolean,
rsTTPName DisplayString,
rsTTPFailure RsTTPFailure,
rsTTPSeverity Severity,
rsTTPEOWMode EOWMode, -- co or contra
rsTTPE1SrcPointer INTEGER, -- Order Wire: index in x21Src
rsTTPF1SrcPointer INTEGER, -- User Chanel: not used
rsTTPEOWByteLine INTEGER,
rsTTPEOWByteColumn INTEGER,
rsTTPSesThreshold INTEGER,
rsTTPLof Severity
}
rsTTPIndex OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value which identify a particular
synchronous physical interface.
The value of this index is always the same as spiTTPIndex.
"
::= { rsTTPEntry 1 }
rsTTPMonitor OBJECT-TYPE
SYNTAX SagemBoolean
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the value of this field is set to false, the failure detection
is stopped for this regenerator section terminaison."
::= { rsTTPEntry 2 }
rsTTPName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A text string which identifies the particular entry among the
regenerator section terminaison entries. "
::= { rsTTPEntry 3 }
rsTTPFailure OBJECT-TYPE
SYNTAX RsTTPFailure
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Active failures on regenerator section terminaison"
::= { rsTTPEntry 4 }
rsTTPSeverity OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Severity associed active Failure for regenerator section terminaison."
::= { rsTTPEntry 5 }
rsTTPEOWMode OBJECT-TYPE
SYNTAX EOWMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Mode used for EOW: Codir or contradir Master"
::= { rsTTPEntry 8 }
rsTTPE1SrcPointer OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to the object which sends the data flow to
E1 RSOH byte (index in X21 table)
Usualy E1 carries X21 EOW (engineering order wire) data
and thus the pointer s value reference a mib X21 port entry.
Zero indicates not used"
::= { rsTTPEntry 9 }
rsTTPF1SrcPointer OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to the object which sends the data flow to
F1 RSOH byte.Zero indicates not used"
::= { rsTTPEntry 10 }
rsTTPSesThreshold OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of errors above which the second is declared
severely errored for this interface/function.
This value apply for near and far interface/function
"
::= { rsTTPEntry 11 }
rsTTPEOWByteLine OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The line determines the SOH byte selected for Engineering
Order Wire: SOH starts with 3 lines of RSOH (1,2,3) and
finish with 5 lines of MSOH (5,6,7,8,9)
E1 is on line 2 column 4.
Zero indicates EOW not used, value different from 2 means EOW
not on E1"
::= { rsTTPEntry 12 }
rsTTPEOWByteColumn OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The column determines the SOH byte selected for Engineering
Order Wire: SOH is composed of Col [1,9]
E1 is on line 2 column 4.
Zero indicates EOW not used, value different from 4 means EOW
not on E1"
::= { rsTTPEntry 13 }
rsTTPLof OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Loss Of Frame failure
for regenerator section terminaison."
::= { rsTTPEntry 20 }
-- End of regenerator section terminaison description
--*******************************************************************
--* multiplex section terminaison (mst)
--*******************************************************************
ProtectionType ::= INTEGER
{
none(0),
msp(1),
msSPRing(2)
}
MsTTPFailure ::= INTEGER
{
none(0),
ais(1),
eber(2),
sd(4),
sdRdi(12),
rdi(8)
}
msTTPTable OBJECT-TYPE
SYNTAX SEQUENCE OF MsTTPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of multiplex section terminaison in equipment."
::= { msTTP 2 }
msTTPEntry OBJECT-TYPE
SYNTAX MsTTPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A particular multiplex section terminaison of the equipment."
INDEX { msTTPIndex }
::= { msTTPTable 1 }
MsTTPEntry ::= SEQUENCE
{
msTTPIndex INTEGER, -- spi Index
msTTPProtectionType ProtectionType,
msTTPMonitor SagemBoolean,
msTTPName DisplayString,
msTTPFailure MsTTPFailure,
msTTPSeverity Severity,
msTTPEOWMode EOWMode, -- co or contra
msTTPE2SrcPointer INTEGER, -- Order Wire: index in x21Src
msTTPMonEber SagemBoolean,
msTTPEOWByteLine INTEGER,
msTTPEOWByteColumn INTEGER,
msTTPSdThreshold INTEGER,
msTTPSesThreshold INTEGER,
msTTPEber Severity,
msTTPSd Severity,
msTTPRdi Severity
}
msTTPIndex OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value which identify a particular
synchronous physical interface.
The value of this index is always the same as spiTTPIndex"
::= { msTTPEntry 1 }
msTTPProtectionType OBJECT-TYPE
SYNTAX ProtectionType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of this field indicates the kind of wanted multiplex section protection.
The default value is NONE.
if value is changed in msp(1) or msSPRing(2) then (if it's possible) an entry is created
respectivelly in mspTable or msSPRingTable. But these tables have to be completed to obtain
a configured protection.
If value is changed in None(0)then the associated entry in mspTable or msSPRingTable is deleted
(if it's possible)."
::= { msTTPEntry 2 }
msTTPMonitor OBJECT-TYPE
SYNTAX SagemBoolean
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the value of this field is set to false, the failure detection
is stopped for this multiplex section terminaison."
::= { msTTPEntry 3 }
msTTPName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A text string which identifies the particular entry among the
multiplex section terminaison entries. "
::= { msTTPEntry 4 }
msTTPFailure OBJECT-TYPE
SYNTAX MsTTPFailure
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Active failures on multiplex section terminaison"
::= { msTTPEntry 5 }
msTTPSeverity OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Severity associed with active failures on multiplex section terminaison."
::= { msTTPEntry 6 }
msTTPEOWMode OBJECT-TYPE
SYNTAX EOWMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Mode used for EOW: Codir or contradir Master"
::= { msTTPEntry 7 }
msTTPE2SrcPointer OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to the object which sends the data flow to
E2 MSOH byte.
Usualy E2 carries X21 EOW (engineering order wire) data.
The reference is an index in X21 table.Zero indicates not used"
::= { msTTPEntry 8 }
msTTPEOWByteLine OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The line determines the SOH byte selected for Engineering
Order Wire: SOH starts with 3 lines of RSOH (1,2,3) and
finish with 5 lines of MSOH (5,6,7,8,9)
E2 is on line 9 column 7.
Zero indicates not used, value different from 9 means EOW
not on E2"
::= { msTTPEntry 9 }
msTTPEOWByteColumn OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The column determines the SOH byte selected for Engineering
Order Wire: SOH is composed of Col [1,9]
E2 is on line 9 column 7.
Zero indicates EOW not used, value different from 7 means EOW
not on E2"
::= { msTTPEntry 10 }
msTTPMonEber OBJECT-TYPE
SYNTAX SagemBoolean
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If the value of this field is true, the eber is monitored and is used as
MSP and SETS criterium.
If this defect is detected, an ais signal is send downstream and
rdi upstream."
::= { msTTPEntry 11 }
msTTPSdThreshold OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A Signal Degrade failure is declared if the error block rate is
greater than 1E(-mstSdThreshold).
The Signal Degrade failure desapeared when the error block rate is
less than 1E(1 - mstSdThreshold)."
::= { msTTPEntry 12 }
msTTPSesThreshold OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of errors above which the second is declared
severely errored for this interface/function.
This value apply for near and far interface/function"
::= { msTTPEntry 13 }
msTTPEber OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Excecive Bit Error Rate failure
for multiplex section terminaison."
::= { msTTPEntry 20 }
msTTPSd OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Signal Degrade failure
for multiplex section terminaison."
::= { msTTPEntry 21 }
msTTPRdi OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Remote Defect Indication failure
for multiplex section terminaison."
::= { msTTPEntry 22 }
-- End of multiplex section terminaison description
--*******************************************************************
--* multiplex section adaptation (msa)
--*
--* This part allow to know all the VC4 provided by the current boards
--* of the equipment. There is no relation with the configured connections
--*******************************************************************
MsaSrcType ::= INTEGER
{
none(0),
msa(1),
vc4(2)
}
MsaSinkType ::= INTEGER
{
msa(0),
mst(1)
}
msaTable OBJECT-TYPE
SYNTAX SEQUENCE OF MsaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of multiplex section adaptation in equipment."
::= { msa 2 }
msaEntry OBJECT-TYPE
SYNTAX MsaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A particular multiplex section adaptation of the equipment."
INDEX { msaIndex }
::= { msaTable 1 }
MsaEntry ::= SEQUENCE
{
msaIndex INTEGER, -- spiTTPIndex if msaSinkType = mst
msaSTMLevel STMLevel,
msaSinkType MsaSinkType, -- msa or mst
msaSinkPointer INTEGER, -- index in msa (msaIndex) or mst (spiTTPIndex)
msaName DisplayString,
msaSrc1Type MsaSrcType, --msa or vc4
msaSrc2Type MsaSrcType, --msa or vc4
msaSrc3Type MsaSrcType, --msa or vc4
msaSrc4Type MsaSrcType, --msa or vc4
msaSrc1Pointer INTEGER, -- index in msa (msaIndex) or mst (vc4Index)
msaSrc2Pointer INTEGER, -- index in msa (msaIndex) or mst (vc4Index), or 0
msaSrc3Pointer INTEGER, -- index in msa (msaIndex) or mst (vc4Index), or 0
msaSrc4Pointer INTEGER -- index in msa (msaIndex) or mst (vc4Index), or 0
}
msaIndex OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of a particular entry among the
multiplex section adaptation entries. "
::= { msaEntry 1 }
msaSTMLevel OBJECT-TYPE
SYNTAX STMLevel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The STM-n level of the multiplex section adaptation."
::= { msaEntry 2 }
msaSinkType OBJECT-TYPE
SYNTAX MsaSinkType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Type of msa sinkPointer: msa or mst"
::= { msaEntry 3 }
msaSinkPointer OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to the object which sends the data flow to this
function on synchronous port interface side.
In most equipments, this value cannot be changed and points to
the MST it is hard wired with."
::= { msaEntry 4 }
msaName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A text string which identifies the particular entry among the
multiplex section adaptation entries. "
::= { msaEntry 5 }
msaSrc1Type OBJECT-TYPE
SYNTAX MsaSrcType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of msa srcPointer: msa or vc4"
::= { msaEntry 6 }
msaSrc2Type OBJECT-TYPE
SYNTAX MsaSrcType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of msa srcPointer: msa or vc4"
::= { msaEntry 7 }
msaSrc3Type OBJECT-TYPE
SYNTAX MsaSrcType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of msa srcPointer: msa or vc4"
::= { msaEntry 8 }
msaSrc4Type OBJECT-TYPE
SYNTAX MsaSrcType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of msa srcPointer: msa or vc4"
::= { msaEntry 9 }
msaSrc1Pointer OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Table index of the object which sends the data flow to this
function on equipment side.
For STM16: 4 pseudo STM4 (group of 4STM1) identified by their
index in msaTable. Theses indexes must be differents to thoses
used by the MST Table.
For STM4: 4 VC4 identified by their index in vc4Table
For STM1: 1 VC4 identified by its index in vc4Table
"
::= { msaEntry 10 }
msaSrc2Pointer OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to the object which sends the data flow to this
function on equipment side.
In most equipments, this value cannot be changed and points to
the VC4 function it is hard wired with."
::= { msaEntry 11 }
msaSrc3Pointer OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to the object which sends the data flow to this
function on equipment side.
In most equipments, this value cannot be changed and points to
the VC4 function it is hard wired with."
::= { msaEntry 12 }
msaSrc4Pointer OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to the object which sends the data flow to this
function on equipment side.
In most equipments, this value cannot be changed and points to
the VC4 function it is hard wired with."
::= { msaEntry 13 }
-- End of multiplex section adaptation description
--*******************************************************************
--* Common Types
--*******************************************************************
CTPStatus ::= INTEGER
{
free (0),
used (1)
}
--*******************************************************************
--* CTP administrative unit order 4 (au4)
--*******************************************************************
Au4CTPFailure ::= INTEGER
{
none(0),ais(1),lop(2),lom(3)
}
Au4CTPCnxType ::= INTEGER
{
none(0),au(1),au4c(4),au16c(16),tu(20)
}
au4CTPNumber OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of administrative unit order 4 in equipment."
::= { au4CTP 1 }
au4CTPTable OBJECT-TYPE
SYNTAX SEQUENCE OF Au4CTPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of administrative unit order 4 in equipment which are availables for new connection or
used in connection. In that case, an indication on the connection type is set
into the au4CTPCnxType Variable.
All au4 CTP, which are made up of lower connection level (tu3 or tu12), are set to 'used' value with
'tu' type connection indication ."
::= { au4CTP 2 }
au4CTPEntry OBJECT-TYPE
SYNTAX Au4CTPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A particular administrative unit order 4 of the equipment."
INDEX { au4CTPIndex }
::= { au4CTPTable 1 }
Au4CTPEntry ::= SEQUENCE
{
au4CTPIndex INTEGER,
au4CTPStatus CTPStatus, -- free or used
au4CTPCnxType Au4CTPCnxType, -- depends on the connection type (none if no connection)
au4CTPName DisplayString,
au4CTPMonitor SagemBoolean,
au4CTPFailure Au4CTPFailure,
au4CTPSeverity Severity,
au4CTPAis Severity,
au4CTPLop Severity,
au4CTPLom Severity
}
au4CTPIndex OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value which identify a particular
administrative unit order 4.
The value of index is a constant assigned to an entry at
equipment design time. It is usualy related to harware."
::= { au4CTPEntry 1 }
au4CTPStatus OBJECT-TYPE
SYNTAX CTPStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"au4 connection point Status: free or used.
The 'free' value is used when there is no connection with this output CTP"
::= { au4CTPEntry 2 }
au4CTPCnxType OBJECT-TYPE
SYNTAX Au4CTPCnxType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"au4 connection Type: none, au4, au4-4c,au4-16c,tu.
The 'none' value is used when there is no connection with this output CTP"
::= { au4CTPEntry 3 }
au4CTPName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A text string which identifies the particular entry among the
administrative unit order 4 entries. "
::= { au4CTPEntry 4 }
au4CTPMonitor OBJECT-TYPE
SYNTAX SagemBoolean
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the value of this field is set to false, the failure detection
is stopped for this administrative unit order 4."
::= { au4CTPEntry 6 }
au4CTPFailure OBJECT-TYPE
SYNTAX Au4CTPFailure
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Active failures on administrative unit order 4"
::= { au4CTPEntry 7 }
au4CTPSeverity OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to failure severity for administrative unit order 4."
::= { au4CTPEntry 8 }
au4CTPAis OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Alarme Indication Signal failure
for administrative unit order 4."
::= { au4CTPEntry 20 }
au4CTPLop OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Loss Of Pointer failure
for administrative unit order 4."
::= { au4CTPEntry 21 }
au4CTPLom OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Loss Of MultiFrame failure
for administrative unit order 4."
::= { au4CTPEntry 22 }
-- End of administrative unit order 4 description
--*******************************************************************
--* TTP virtual container order 4 (vc4-ttp)
--*******************************************************************
Vc4TTPSinkType ::= INTEGER
{
mst (1),
nspi (2)
}
Vc4TTPTraceMode ::= INTEGER
{
size1 (1),
size16 (16)
}
Vc4TTPSignalLabel ::= INTEGER
{
unequiped(0), unspecified(1), tug(2), all1(255)
}
Vc4TTPFailure ::= INTEGER
{
none (0),rdi (1), sd (2), sdRdi (3),
uneq (4),uneqSd (6),plm (8), plmRdi (9), plmSd (10),
plmRdiSd(11),tim (16), timRdi(17), timSd (18),
timRdiSd(19)
}
vc4TTPNumber OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of virtual container order 4 in equipment."
::= { vc4TTP 1 }
vc4TTPTable OBJECT-TYPE
SYNTAX SEQUENCE OF Vc4TTPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of virtual container order 4 in equipment.The number of records depends on the kinds of
configured boards"
::= { vc4TTP 2 }
vc4TTPEntry OBJECT-TYPE
SYNTAX Vc4TTPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A particular virtual container order 4 of the equipment."
INDEX { vc4TTPIndex }
::= { vc4TTPTable 1 }
Vc4TTPEntry ::= SEQUENCE
{
vc4TTPIndex INTEGER,
vc4TTPSinkPointer INTEGER, -- MSTindex or nspiTTPindex
vc4TTPSinkType Vc4TTPSinkType, -- MST or nspi
vc4TTPName DisplayString,
vc4TTPMonitor SagemBoolean,
vc4TTPFailure Vc4TTPFailure,
vc4TTPSeverity Severity,
vc4TTPTraceMode Vc4TTPTraceMode,
vc4TTPPathTraceExpected OCTET STRING (SIZE (16)),
vc4TTPPathTraceSent OCTET STRING (SIZE (16)),
vc4TTPPathTraceReceived OCTET STRING (SIZE (16)),
vc4TTPLabelExpected Vc4TTPSignalLabel,
vc4TTPLabelSent Vc4TTPSignalLabel,
vc4TTPLabelReceived Vc4TTPSignalLabel,
vc4TTPSdThreshold INTEGER,
vc4TTPSesThreshold INTEGER,
vc4TTPBidirectionnal SagemBoolean,
vc4TTPRdi Severity,
vc4TTPSd Severity,
vc4TTPUneq Severity,
vc4TTPPlm Severity,
vc4TTPTimDis SagemBoolean,
vc4TTPTim Severity
}
vc4TTPIndex OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value which identify a particular
virtual container order 4.
The value of index is a constant assigned to an entry at
equipment design time. It is usualy related to harware."
::= { vc4TTPEntry 1 }
vc4TTPSinkPointer OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to the object which sends the data flow to this
function on synchronous or unsynchronous port interface side.
This pointer corresponds to an index in the msTTPTable or nspiTTPTable."
::= { vc4TTPEntry 2 }
vc4TTPSinkType OBJECT-TYPE
SYNTAX Vc4TTPSinkType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to the kind of the sink Pointer"
::= { vc4TTPEntry 3 }
vc4TTPName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A text string which identifies the particular entry among the
virtual container order 4 entries. "
::= { vc4TTPEntry 5 }
vc4TTPMonitor OBJECT-TYPE
SYNTAX SagemBoolean
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the value of this field is set to false, the failure detection
is stopped for this virtual container order 4."
::= { vc4TTPEntry 6 }
vc4TTPFailure OBJECT-TYPE
SYNTAX Vc4TTPFailure
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Active failures on virtual container order 4"
::= { vc4TTPEntry 7 }
vc4TTPSeverity OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to failure severity for virtual container order 4."
::= { vc4TTPEntry 8 }
vc4TTPTraceMode OBJECT-TYPE
SYNTAX Vc4TTPTraceMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configuration of the pathTrace length (1 byte or 16 bytes)."
::= { vc4TTPEntry 9 }
vc4TTPPathTraceExpected OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The path trace is a user string that always follows the vc4.
If the value the received path trace does not match this one, a
tim (Trail Identifier Mismatch) failure is issued.
The value `? ' match all possible received path trace."
::= { vc4TTPEntry 11 }
vc4TTPPathTraceSent OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The path trace is a user string that always follows the vc4.
The value of this field is sent in j1 byte as path trace for this vc4.
The default value is `all 0'."
::= { vc4TTPEntry 12 }
vc4TTPPathTraceReceived OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The path trace is a user string that always follows the vc4.
The value is the actual path trace received in j1 byte"
::= { vc4TTPEntry 13 }
vc4TTPLabelExpected OBJECT-TYPE
SYNTAX Vc4TTPSignalLabel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The signal label indicates the multiplexing structure of the vc4.
If the signal label received for this vc4 is not null and does
not match this field, a Signal Label Mismatch failure is detected.
If the received label is null a virtual container UNEQuiped
failure is detected."
::= { vc4TTPEntry 14 }
vc4TTPLabelSent OBJECT-TYPE
SYNTAX Vc4TTPSignalLabel
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The signal label indicates the multiplexing structure of the vc4.
The value of this field in sent as signal label for the vc4."
::= { vc4TTPEntry 15 }
vc4TTPLabelReceived OBJECT-TYPE
SYNTAX Vc4TTPSignalLabel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The signal label indicates the multiplexing structure of the vc4.
The value of this field is the actual received signal label
for this vc4"
::= { vc4TTPEntry 16 }
vc4TTPSdThreshold OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A Signal Degrade failure is declared if the error block rate is
greater than 1E(-SdThreshold).
The Signal Degrade failure desapeared when the error block rate is
less than 1E(1 - SdThreshold)."
::= { vc4TTPEntry 17 }
vc4TTPSesThreshold OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of errors above which the second is declared
severely errored for this interface/function.
This value apply for near and far interface/function"
::= { vc4TTPEntry 18 }
vc4TTPBidirectionnal OBJECT-TYPE
SYNTAX SagemBoolean
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If set to false the equipment does not send Remote Defect Indication."
::= { vc4TTPEntry 19 }
vc4TTPRdi OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Remote Defect Indication failure
for virtual container order 4."
::= { vc4TTPEntry 20 }
vc4TTPSd OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Signal Degrade failure
for virtual container order 4."
::= { vc4TTPEntry 21 }
vc4TTPUneq OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with virtual container UNEQuiped failure
for virtual container order 4."
::= { vc4TTPEntry 22 }
vc4TTPPlm OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Path Label Mismatch failure
for virtual container order 4."
::= { vc4TTPEntry 23 }
vc4TTPTimDis OBJECT-TYPE
SYNTAX SagemBoolean
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If set to true the equipment does not manage the Tim Failure."
::= { vc4TTPEntry 24 }
vc4TTPTim OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Trail Identifier Mismatch failure
for virtual container order 4."
::= { vc4TTPEntry 25 }
-- End of virtual container order 4 description
--*******************************************************************
--* CTP tributary unit 3 (tu3)
--*******************************************************************
Tu3CTPFailure ::= INTEGER
{
none (0),
ais (1),
lop (2)
}
tu3CTPNumber OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of tributary unit in equipment."
::= { tu3CTP 1 }
tu3CTPTable OBJECT-TYPE
SYNTAX SEQUENCE OF Tu3CTPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of tributary units order 3 in equipment which are availables for new connection or used in
the same connection level. In that case, an indication on the connection point status is set into the
tu3CTPStatus Variable.
All tu3 CTP, which are involved in different connection level (tu12 or au4), disappear from
this List."
::= { tu3CTP 2 }
tu3CTPEntry OBJECT-TYPE
SYNTAX Tu3CTPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A particular tributary unit of the equipment."
INDEX { tu3CTPIndex}
::= { tu3CTPTable 1 }
Tu3CTPEntry ::= SEQUENCE
{
tu3CTPIndex INTEGER,
tu3CTPStatus CTPStatus, -- free or used
tu3CTPName DisplayString,
tu3CTPMonitor SagemBoolean,
tu3CTPFailure Tu3CTPFailure,
tu3CTPSeverity Severity,
tu3CTPAis Severity,
tu3CTPLop Severity
}
tu3CTPIndex OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index that identifies the particular entry among the
tributary unit entries. "
::= { tu3CTPEntry 1 }
tu3CTPStatus OBJECT-TYPE
SYNTAX CTPStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tu3 connection point Status: free or used.
The 'free' value is used when there is no connection with this output CTP"
::= { tu3CTPEntry 2 }
tu3CTPName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A text string which identifies the particular entry among the
tributary unit entries. "
::= { tu3CTPEntry 5 }
tu3CTPMonitor OBJECT-TYPE
SYNTAX SagemBoolean
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the value of this field is set to false, the failure detection
is stopped for this tributary unit."
::= { tu3CTPEntry 6 }
tu3CTPFailure OBJECT-TYPE
SYNTAX Tu3CTPFailure
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Active failures on tributary unit"
::= { tu3CTPEntry 7 }
tu3CTPSeverity OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to failure severity for tributary unit."
::= { tu3CTPEntry 8 }
tu3CTPAis OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Alarme Indication Signal failure
for tributary unit."
::= { tu3CTPEntry 20 }
tu3CTPLop OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Loss Of Pointer failure
for tributary unit."
::= { tu3CTPEntry 21 }
-- End of tributary unit description
--*******************************************************************
--* CTP tributary unit 12 (tu12)
--*******************************************************************
Tu12CTPFailure ::= INTEGER
{
none (0),
ais (1),
lop (2)
}
tu12CTPNumber OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of tributary unit in equipment."
::= { tu12CTP 1 }
tu12CTPTable OBJECT-TYPE
SYNTAX SEQUENCE OF Tu12CTPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of tributary unit order 12 in equipment which are availables for new connection or
used in the same connection level. In that case, an indication on the connection point Status
is set into the tu12CTPStatus Variable.
All tu12 CTP, which are involved in a different connection level (tu3 or au4), disappear from
this List."
::= { tu12CTP 2 }
tu12CTPEntry OBJECT-TYPE
SYNTAX Tu12CTPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A particular tributary unit of the equipment."
INDEX { tu12CTPIndex }
::= { tu12CTPTable 1 }
Tu12CTPEntry ::= SEQUENCE
{
tu12CTPIndex INTEGER,
tu12CTPStatus CTPStatus, -- free or used
tu12CTPName DisplayString,
tu12CTPMonitor SagemBoolean,
tu12CTPFailure Tu12CTPFailure,
tu12CTPSeverity Severity,
tu12CTPAis Severity,
tu12CTPLop Severity
}
tu12CTPIndex OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value which identify a particular tu12."
::= { tu12CTPEntry 1 }
tu12CTPStatus OBJECT-TYPE
SYNTAX CTPStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tu12 connection point Status: free or used.
The 'free' value is used when there is no connection with this output CTP"
::= { tu12CTPEntry 2 }
tu12CTPName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A text string which identifies the particular entry among the
tributary unit entries. "
::= { tu12CTPEntry 5 }
tu12CTPMonitor OBJECT-TYPE
SYNTAX SagemBoolean
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the value of this field is set to false, the failure detection
is stopped for this tributary unit."
::= { tu12CTPEntry 6 }
tu12CTPFailure OBJECT-TYPE
SYNTAX Tu12CTPFailure
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Active failures on tributary unit"
::= { tu12CTPEntry 7 }
tu12CTPSeverity OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to failure severity for tributary unit."
::= { tu12CTPEntry 8 }
tu12CTPAis OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Alarme Indication Signal failure
for tributary unit."
::= { tu12CTPEntry 20 }
tu12CTPLop OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Loss Of Pointer failure
for tributary unit."
::= { tu12CTPEntry 21 }
-- End of tributary unit description
--*******************************************************************
--* virtual container order 3 (vc3)
--*******************************************************************
Vc3TTPSinkType ::= INTEGER
{
vc4 (1),
nspi (2)
}
Vc3TTPSignalLabel ::= INTEGER
{
unequiped(0), unspecified(1),
mapping3445(4), all1(7)
}
VcLoFailure ::= INTEGER
{
none (0),
rdi (1),
sd (2), sdRdi (3),
uneq (4), uneqSd (6),
plm (8), plmRdi (9), plmSd (10), plmRdiSd(11),
tim (16), timRdi(17), timSd (18), timRdiSd(19)
}
vc3TTPNumber OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of virtual container order 3 in equipment."
::= { vc3TTP 1 }
vc3TTPTable OBJECT-TYPE
SYNTAX SEQUENCE OF Vc3TTPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of virtual container order 3 in equipment.The number of records depends on the kinds of
configured boards"
::= { vc3TTP 2 }
vc3TTPEntry OBJECT-TYPE
SYNTAX Vc3TTPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A particular virtual container order 3 of the equipment."
INDEX { vc3TTPIndex }
::= { vc3TTPTable 1 }
Vc3TTPEntry ::= SEQUENCE
{
vc3TTPIndex INTEGER,
vc3TTPSinkPointer INTEGER, -- nspiTTPIndex or VC4index
vc3TTPSinkType Vc3TTPSinkType, -- Nspi or VC4
vc3TTPName DisplayString,
vc3TTPMonitor SagemBoolean,
vc3TTPFailure VcLoFailure,
vc3TTPSeverity Severity,
vc3TTPPathTraceExpected OCTET STRING,
vc3TTPPathTraceSent OCTET STRING,
vc3TTPPathTraceReceived OCTET STRING,
vc3TTPLabelExpected Vc3TTPSignalLabel,
vc3TTPLabelSent Vc3TTPSignalLabel,
vc3TTPLabelReceived Vc3TTPSignalLabel,
vc3TTPSdThreshold INTEGER,
vc3TTPSesThreshold INTEGER,
vc3TTPBidirectionnal SagemBoolean,
vc3TTPRdi Severity,
vc3TTPSd Severity,
vc3TTPUneq Severity,
vc3TTPPlm Severity,
vc3TTPTim Severity
}
vc3TTPIndex OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value which identify a particular
virtual container order 3.
The value of index is a constant assigned to an entry at
equipment design time. It is usualy related to harware."
::= { vc3TTPEntry 1 }
vc3TTPSinkPointer OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to the object which sends the data flow to this
function on non-sdh physical port side."
::= { vc3TTPEntry 2 }
vc3TTPSinkType OBJECT-TYPE
SYNTAX Vc3TTPSinkType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to the kind of the sink Pointer"
::= { vc3TTPEntry 3 }
vc3TTPName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A text string which identifies the particular entry among the
virtual container order 3 entries. "
::= { vc3TTPEntry 5 }
vc3TTPMonitor OBJECT-TYPE
SYNTAX SagemBoolean
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the value of this field is set to false, the failure detection
is stopped for this virtual container order 3."
::= { vc3TTPEntry 6 }
vc3TTPFailure OBJECT-TYPE
SYNTAX VcLoFailure
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Active failures on virtual container order 3"
::= { vc3TTPEntry 7 }
vc3TTPSeverity OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to failure severity for virtual container order 3."
::= { vc3TTPEntry 8 }
vc3TTPPathTraceExpected OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The path trace is a user string that always follows the vc3.
If the value the received path trace does not match this one, a
tim (Trail Identifier Mismatch) failure is issued.
The value `? ' match all possible received path trace."
::= { vc3TTPEntry 9 }
vc3TTPPathTraceSent OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..15))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The path trace is a user string that always follows the vc3.
The value of this field is sent in j1 byte as path trace for this vc3.
The default value is `all 0'."
::= { vc3TTPEntry 10 }
vc3TTPPathTraceReceived OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (15))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The path trace is a user string that always follows the vc3.
The value is the actual path trace received in j1 byte"
::= { vc3TTPEntry 11 }
vc3TTPLabelExpected OBJECT-TYPE
SYNTAX Vc3TTPSignalLabel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The signal label indicates the multiplexing structure of the vc3.
Usualy the value of this field cannot be modified as most equipment
use the asynchronous bit multiplexing.
For historical reasons the receipt of label `unspecified ' does not
produce a Signal Label Mismatch failure."
::= { vc3TTPEntry 12 }
vc3TTPLabelSent OBJECT-TYPE
SYNTAX Vc3TTPSignalLabel
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The signal label indicates the multiplexing structure of the vc3.
The value of this field is sent as signal label for the vc3.
The unspecified value is used for compatibilty with old sdh
equipments.
The `unequiped' value actives low order unequiped generator (lug).
In this case all 1 signal is inserted down and up stream."
::= { vc3TTPEntry 13 }
vc3TTPLabelReceived OBJECT-TYPE
SYNTAX Vc3TTPSignalLabel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The signal label indicates the multiplexing structure of the vc3.
The value of this field is the actual received signal label
for this vc3"
::= { vc3TTPEntry 14 }
vc3TTPSdThreshold OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A Signal Degrade failure is declared if the error block rate is
greater than 1E(-SdThreshold).
The Signal Degrade failure desapeared when the error block rate is
less than 1E(1 - SdThreshold)."
::= { vc3TTPEntry 15 }
vc3TTPSesThreshold OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of errors above which the second is declared
severely errored for this interface/function.
This value apply for near and far interface/function"
::= { vc3TTPEntry 16 }
vc3TTPBidirectionnal OBJECT-TYPE
SYNTAX SagemBoolean
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If set to false the equipment does not send Remote Defect Indication."
::= { vc3TTPEntry 17 }
vc3TTPRdi OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Remote Defect Indication failure
for virtual container order 3."
::= { vc3TTPEntry 20 }
vc3TTPSd OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Signal Degrade failure
for virtual container order 3."
::= { vc3TTPEntry 21 }
vc3TTPUneq OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with virtual container UNEQuiped failure
for virtual container order 3."
::= { vc3TTPEntry 22 }
vc3TTPPlm OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Path Label Mismatch failure
for virtual container order 3."
::= { vc3TTPEntry 23 }
vc3TTPTim OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Trail Identifier Mismatch failure
for virtual container order 3."
::= { vc3TTPEntry 24 }
-- End of virtual container order 3 description
--*******************************************************************
--* virtual container order 12 (vc12)
--*******************************************************************
Vc12TTPSinkType ::= INTEGER
{
vc4 (1),
nspi (2)
}
Vc12TTPSignalLabel ::= INTEGER
{
unequiped(0), unspecified(1),
asyncBit(2), all1(7)
}
vc12TTPNumber OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of virtual container order 12 in equipment."
::= { vc12TTP 1 }
vc12TTPTable OBJECT-TYPE
SYNTAX SEQUENCE OF Vc12TTPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of virtual container order 12 in equipment.The number of records depends on the kinds of
configured boards"
::= { vc12TTP 2 }
vc12TTPEntry OBJECT-TYPE
SYNTAX Vc12TTPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A particular virtual container order 12 of the equipment."
INDEX { vc12TTPIndex }
::= { vc12TTPTable 1 }
Vc12TTPEntry ::= SEQUENCE
{
vc12TTPIndex INTEGER,
vc12TTPSinkPointer INTEGER, -- nspiTTPIndex or VC4index
vc12TTPSinkType Vc12TTPSinkType, -- Nspi or Vc4
vc12TTPName DisplayString,
vc12TTPMonitor SagemBoolean,
vc12TTPFailure VcLoFailure,
vc12TTPSeverity Severity,
vc12TTPPathTraceExpected OCTET STRING,
vc12TTPPathTraceSent OCTET STRING,
vc12TTPPathTraceReceived OCTET STRING,
vc12TTPLabelExpected Vc12TTPSignalLabel,
vc12TTPLabelSent Vc12TTPSignalLabel,
vc12TTPLabelReceived Vc12TTPSignalLabel,
vc12TTPSdThreshold INTEGER,
vc12TTPSesThreshold INTEGER,
vc12TTPBidirectionnal SagemBoolean,
vc12TTPRdi Severity,
vc12TTPSd Severity,
vc12TTPUneq Severity,
vc12TTPPlm Severity,
vc12TTPTim Severity
}
vc12TTPIndex OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value which identify a particular
virtual container order 12.
The value of index is a constant assigned to an entry at
equipment design time. It is usualy related to harware."
::= { vc12TTPEntry 1 }
vc12TTPSinkPointer OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to the object which sends the data flow to this
function on non-sdh physical port side."
::= { vc12TTPEntry 2 }
vc12TTPSinkType OBJECT-TYPE
SYNTAX Vc12TTPSinkType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to the kind of the sink Pointer"
::= { vc12TTPEntry 3 }
vc12TTPName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A text string which identifies the particular entry among the
virtual container order 12 entries. "
::= { vc12TTPEntry 5 }
vc12TTPMonitor OBJECT-TYPE
SYNTAX SagemBoolean
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the value of this field is set to false, the failure detection
is stopped for this virtual container order 12."
::= { vc12TTPEntry 6 }
vc12TTPFailure OBJECT-TYPE
SYNTAX VcLoFailure
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Active failures on virtual container order 12"
::= { vc12TTPEntry 7 }
vc12TTPSeverity OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to failure severity for virtual container order 12."
::= { vc12TTPEntry 8 }
vc12TTPPathTraceExpected OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The path trace is a user string that always follows the vc12.
If the value the received path trace does not match this one, a
tim (Trail Identifier Mismatch) failure is issued.
The value `? ' match all possible received path trace."
::= { vc12TTPEntry 9 }
vc12TTPPathTraceSent OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The path trace is a user string that always follows the vc12.
The value of this field is sent in j2 byte as path trace for this vc12.
The default value is `all 0'."
::= { vc12TTPEntry 10 }
vc12TTPPathTraceReceived OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The path trace is a user string that always follows the vc12.
The value is the actual path trace received in j2 byte"
::= { vc12TTPEntry 11 }
vc12TTPLabelExpected OBJECT-TYPE
SYNTAX Vc12TTPSignalLabel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The signal label indicates the multiplexing structure of the vc12.
Usualy the value of this field cannot be modified as most equipment
use the asynchronous bit multiplexing.
For historical reasons the receipt of label `unspecified ' does not
produce a Signal Label Mismatch failure."
::= { vc12TTPEntry 12 }
vc12TTPLabelSent OBJECT-TYPE
SYNTAX Vc12TTPSignalLabel
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The signal label indicates the multiplexing structure of the vc12.
The value of this field is sent as signal label for the vc12.
The unspecified value is used for compatibilty with old sdh
equipments.
The `unequiped' value actives low order unequiped generator (lug).
In this case all 1 signal is inserted down and up stream."
::= { vc12TTPEntry 13 }
vc12TTPLabelReceived OBJECT-TYPE
SYNTAX Vc12TTPSignalLabel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The signal label indicates the multiplexing structure of the vc12.
The value of this field is the actual received signal label
for this vc12"
::= { vc12TTPEntry 14 }
vc12TTPSdThreshold OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A Signal Degrade failure is declared if the error block rate is
greater than 1E(-SdThreshold).
The Signal Degrade failure desapeared when the error block rate is
less than 1E(1 - SdThreshold)."
::= { vc12TTPEntry 15 }
vc12TTPSesThreshold OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of errors above which the second is declared
severely errored for this interface/function.
This value apply for near and far interface/function"
::= { vc12TTPEntry 16 }
vc12TTPBidirectionnal OBJECT-TYPE
SYNTAX SagemBoolean
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If set to false the equipment does not send Remote Defect Indication."
::= { vc12TTPEntry 17 }
vc12TTPRdi OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Remote Defect Indication failure
for virtual container order 12."
::= { vc12TTPEntry 20 }
vc12TTPSd OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Signal Degrade failure
for virtual container order 12."
::= { vc12TTPEntry 21 }
vc12TTPUneq OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with virtual container UNEQuiped failure
for virtual container order 12."
::= { vc12TTPEntry 22 }
vc12TTPPlm OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Path Label Mismatch failure
for virtual container order 12."
::= { vc12TTPEntry 23 }
vc12TTPTim OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Trail Identifier Mismatch failure
for virtual container order 12."
::= { vc12TTPEntry 24 }
-- End of virtual container order 12 description
--*******************************************************************
--* non synchronous physical port (nspi)
--*******************************************************************
NspiSrcType ::= INTEGER
{
vc12 (1),
vc3 (2),
vc4 (3),
channel (4)
}
--*******************************************************************
--* Nspi CTP
--*******************************************************************
nspiCTPNumber OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value which identify a particular non-sdh physical port.
The value of index is a constant assigned to an entry at
equipment design time. It is usualy related to harware."
::= { nspiCTP 1 }
nspiCTPTable OBJECT-TYPE
SYNTAX SEQUENCE OF NspiCTPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of non-sdh physical port in equipment."
::= { nspiCTP 2 }
nspiCTPEntry OBJECT-TYPE
SYNTAX NspiCTPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A particular non-sdh physical port of the equipment."
INDEX { nspiCTPIndex }
::= { nspiCTPTable 1 }
NspiCTPEntry ::= SEQUENCE
{
nspiCTPIndex INTEGER,
nspiCTPTTPType NspiSrcType, -- VC3, VC12 or VC4
nspiCTPStatus CTPStatus, -- free or used
nspiCTPName DisplayString
}
nspiCTPIndex OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value which identify a particular
non-sdh physical port.
The value of index is a constant assigned to an entry at
equipment design time. It is usualy related to harware."
::= { nspiCTPEntry 1 }
nspiCTPTTPType OBJECT-TYPE
SYNTAX NspiSrcType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of VC which is associated to the nspi interface."
::= { nspiCTPEntry 2 }
nspiCTPStatus OBJECT-TYPE
SYNTAX CTPStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"nspi connection point Status: free or used.
The 'free' value is used when there is no connection with this output CTP"
::= { nspiCTPEntry 3 }
nspiCTPName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A text string which identifies the particular entry among the
non-sdh physical port entries. "
::= { nspiCTPEntry 4 }
-- End of non-sdh physical port description
--*******************************************************************
--* Nspi TTP
--*******************************************************************
NspiTTPFailure ::= INTEGER
{
none (0),
los (1),
ais (2)
}
NspiTTPType ::= INTEGER
{
g703R75ohm (1),
g703R120ohm (2),
x21 (10),
ethernet (20),
atm (30)
}
NspiTTPLevel ::= INTEGER
{
rate2Mb (2),
rate10Mb (10),
rate34Mb (34),
rate45Mb (45),
rate100Mb (100),
rate140Mb (140),
rate1Gb (1000)
}
nspiTTPNumber OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value which identify a particular non-sdh physical port.
The value of index is a constant assigned to an entry at
equipment design time. It is usualy related to harware."
::= { nspiTTP 1 }
nspiTTPTable OBJECT-TYPE
SYNTAX SEQUENCE OF NspiTTPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of non-sdh physical port in equipment."
::= { nspiTTP 2 }
nspiTTPEntry OBJECT-TYPE
SYNTAX NspiTTPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A particular non-sdh physical port of the equipment."
INDEX { nspiTTPIndex }
::= { nspiTTPTable 1 }
NspiTTPEntry ::= SEQUENCE
{
nspiTTPIndex INTEGER,
nspiTTPType NspiTTPType,
nspiTTPLevel NspiTTPLevel,
nspiTTPName DisplayString,
nspiTTPBoardIndex INTEGER,
nspiTTPBoardAcces INTEGER,
nspiTTPSrcType NspiSrcType, -- VC3, VC12 or VC4
nspiTTPSrcPointer INTEGER, -- VC index
nspiTTPMonitor SagemBoolean,
nspiTTPFailure NspiTTPFailure,
nspiTTPSeverity Severity,
nspiTTPLoopback Loopback,
nspiTTPLos Severity,
nspiTTPAis Severity
}
nspiTTPIndex OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value which identify a particular
non-sdh physical port.
The value of index is a constant assigned to an entry at
equipment design time. It is usualy related to harware."
::= { nspiTTPEntry 1 }
nspiTTPType OBJECT-TYPE
SYNTAX NspiTTPType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of media for the nspi interface."
::= { nspiTTPEntry 2 }
nspiTTPLevel OBJECT-TYPE
SYNTAX NspiTTPLevel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The rate level of the nspi interface."
::= { nspiTTPEntry 3 }
nspiTTPName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A text string which identifies the particular entry among the
non-sdh physical port entries. "
::= { nspiTTPEntry 4 }
nspiTTPBoardIndex OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of the Board that supports the physical acces
of this interface"
::= { nspiTTPEntry 5 }
nspiTTPBoardAcces OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Friendly Index of the physical acces on the Board that supports
the interface"
::= { nspiTTPEntry 6 }
nspiTTPSrcType OBJECT-TYPE
SYNTAX NspiSrcType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to the type of object which sends the data flow to this
interface. Usually the value is vc12, vc3 or vc4 types."
::= { nspiTTPEntry 7 }
nspiTTPSrcPointer OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to the object which sends the data flow to this
interface. Usually the value is the Index of a vc12, vc3 or vc4."
::= { nspiTTPEntry 8 }
nspiTTPMonitor OBJECT-TYPE
SYNTAX SagemBoolean
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the value of this field is set to false, the failure detection
is stopped for this non-sdh physical port."
::= { nspiTTPEntry 9 }
nspiTTPFailure OBJECT-TYPE
SYNTAX NspiTTPFailure
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Active failures on non-sdh physical port"
::= { nspiTTPEntry 10 }
nspiTTPSeverity OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to failure severity for non-sdh physical port."
::= { nspiTTPEntry 11 }
nspiTTPLoopback OBJECT-TYPE
SYNTAX Loopback
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This field gives the active loopback status on the
non-sdh physical port.
When its value is `line' the data flow recieved from the port side
is sent back to the line.
When its value is `equipment' the data flow recieved form equipment
side is send back.
The field can be set to a particular loopback value, even if there
no garantee that the loopback is really done. The real loopback status
of the interface must be checked in the response.
The loopback can be cleared by the equipment when it cannot remain
for any reason."
::= { nspiTTPEntry 14 }
nspiTTPLos OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Loss Of Signal failure
for non-sdh physical port."
::= { nspiTTPEntry 20 }
nspiTTPAis OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associed with Alarme Indication Signal failure
for non-sdh physical port."
::= { nspiTTPEntry 21 }
-- End of non-sdh physical port description
--*******************************************************************
--* Channel
--* This part allows to add a new decomposition level between nspi ports
--* and SDH Containers.
--*******************************************************************
ChannelEncaps ::= INTEGER
{
none (0),
atm (1),
pos (2),
gfp (3)
}
ChannelConcat ::= INTEGER
{
none (0),
virtual (1),
contiguous (2)
}
ChannelFailure ::= INTEGER
{
none (0),
loa (1),
lom (2),
sqm (3)
}
channelNumber OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of SDH Channels in equipment."
::= { channel 1 }
channelTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChannelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of SDH Channels in equipment."
::= { channel 2 }
channelEntry OBJECT-TYPE
SYNTAX ChannelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A particular SDH Channel of the equipment."
INDEX { channelIndex }
::= { channelTable 1 }
ChannelEntry ::= SEQUENCE
{
channelIndex INTEGER, -- nspiTTPIndex
channelEncaps ChannelEncaps,
channelNbVc4 INTEGER,
channelNbVc3 INTEGER,
channelNbVc12 INTEGER,
channelConcat ChannelConcat,
channelAdminStatus INTEGER,
channelOperStatus INTEGER,
channelFirstIndex INTEGER,
channelDelay INTEGER,
channelMonitor SagemBoolean,
channelFailure ChannelFailure,
channelSeverity Severity,
channelLoa Severity,
channelLom Severity,
channelSqm Severity
}
channelIndex OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value which identify a particular
SDH Channel.
The value of index is a constant assigned to an entry at
equipment design time. It is usualy related to harware."
::= { channelEntry 1 }
channelEncaps OBJECT-TYPE
SYNTAX ChannelEncaps
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of encapsulation used to map Data stream into Sdh containers"
::= { channelEntry 2 }
channelNbVc4 OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Number of VC4 into the channel. "
::= { channelEntry 5 }
channelNbVc3 OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Number of VC3 into the channel. "
::= { channelEntry 6 }
channelNbVc12 OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Number of VC12 into the channel. "
::= { channelEntry 7 }
channelConcat OBJECT-TYPE
SYNTAX ChannelConcat
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of Concatenation used within the channel"
::= { channelEntry 8 }
channelAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1), -- ready to pass packets
down(2),
testing(3) -- in some test mode
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The desired state of the channel. The
testing(3) state indicates that no operational
packets can be passed."
::= { channelEntry 9 }
channelOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1), -- ready to pass packets
down(2),
testing(3) -- in some test mode
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational state of the channel.
The testing(3) state indicates that no operational
packets can be passed."
::= { channelEntry 10 }
channelFirstIndex OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Index of the first Vc in the Channel when it is configured.
Otherwise this field is set to 0. "
::= { channelEntry 11 }
channelDelay OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This field give the maximum delay (in millisecondes) for receiving virtual concatenated frames.
This field is set to 0 when channelConcat is different to virtual(1) "
::= { channelEntry 12 }
channelMonitor OBJECT-TYPE
SYNTAX SagemBoolean
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the value of this field is set to false, the failure detection
is stopped for this channel."
::= { channelEntry 13 }
channelFailure OBJECT-TYPE
SYNTAX ChannelFailure
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Active failures on channel"
::= { channelEntry 14 }
channelSeverity OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to failure severity for non-sdh physical port."
::= { channelEntry 15 }
channelLoa OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associated with Loss Of Alignment failure
for channel."
::= { channelEntry 16 }
channelLom OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associated with Loss Of Multiframe failure
for channel."
::= { channelEntry 17 }
channelSqm OBJECT-TYPE
SYNTAX Severity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severity associated with Sequence Mismatch failure
for channel."
::= { channelEntry 18 }
-- End of Channel description
--*******************************************************************
--* Bandwidth
--* This part allows to configure the bandwidth allocated to a Data Card
--* It gives references of VC which are used by channels.
--*******************************************************************
bandwidthNumber OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bandwidth units which are available in the equipement.
The number of units depends on their type (Vc4, Vc3, Vc12), on the number
of Data card and on the bandwidth size which has been configured for this card.
For a Data card which is mapped on a STM16, there are 16 Vc4 entries (or 3*16 Vc3 entries
or 63*16 Vc12 entries) in the BandwidthTable. "
::= { bandwidth 1 }
bandwidthTable OBJECT-TYPE
SYNTAX SEQUENCE OF BandwidthEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of Bandwidth units in equipment. It represent the bandwidth occupation of each non-sdh card"
::= { bandwidth 2 }
bandwidthEntry OBJECT-TYPE
SYNTAX BandwidthEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A particular unit part of a non-sdh card bandwidth."
INDEX { bandwidthIndex }
::= { bandwidthTable 1 }
BandwidthEntry ::= SEQUENCE
{
bandwidthIndex INTEGER, -- VC index
bandwidthBoardIndex INTEGER, -- BoardIndex
bandwidthSrcType NspiSrcType, -- VC3, VC12 or VC4
bandwidthSrcPointer INTEGER, -- VC index
bandwidthSinkType NspiSrcType, -- Channel
bandwidthSinkPointer INTEGER, -- channelIndex
bandwidthAdminStatus INTEGER,
bandwidthOperStatus INTEGER,
bandwidthPrevIndex INTEGER, -- VC index
bandwidthNextIndex INTEGER -- VC index
}
bandwidthIndex OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value which identify a particular unit of a non-sdh card bandwidth.
The value of index is a Vc Index which change when bandwidthSrcType value is modified. "
::= { bandwidthEntry 1 }
bandwidthBoardIndex OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of the Board that supports the bandwidth unit."
::= { bandwidthEntry 2 }
bandwidthSrcType OBJECT-TYPE
SYNTAX NspiSrcType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Define the decomposition level of the bandwidth."
::= { bandwidthEntry 3 }
bandwidthSrcPointer OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"this field is set to bandwidthIndex when the unit is used by a channel and set to 0 otherwise.
It defines the TTP and CTP index associated to the channel. "
::= { bandwidthEntry 4 }
bandwidthSinkType OBJECT-TYPE
SYNTAX NspiSrcType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A reference to the kind of the sink Pointer. Usually the value is Channel."
::= { bandwidthEntry 5 }
bandwidthSinkPointer OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A reference to the object which sends the data flow to this
function on unsynchronous port interface side.
This pointer corresponds to an index in the channelTable. "
::= { bandwidthEntry 6 }
bandwidthAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1), -- ready to pass packets
down(2),
testing(3) -- in some test mode
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The desired state of the Vc. The
testing(3) state indicates that no operational
packets can be passed."
::= { bandwidthEntry 7 }
bandwidthOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1), -- ready to pass packets
down(2),
testing(3) -- in some test mode
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational state of the Vc.
The testing(3) state indicates that no operational
packets can be passed."
::= { bandwidthEntry 8 }
bandwidthPrevIndex OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to the previous VC into the channel. This field is set to 0 if the VC is not
associated to a channel or if it is the first Vc of the channel. "
::= { bandwidthEntry 9 }
bandwidthNextIndex OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to the next VC into the channel. This field is set to 0 if the VC is not
associated to a channel or if it is the last Vc of the channel. "
::= { bandwidthEntry 10 }
-- End of Bandwidth description
END
|