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
|
-- File Name : SPC200.txt
-- Date : Wed Aug 23 14:03:00 CEST 2006
-- Author : Gilles Marceau
-- Date : Tue Jul 06 18:48:54 CEST 2004
-- Author : Luc Capanaccia
-- Date : Tue Jul 22 12:00:00 CEST 2004
-- Reviewed by : Gilles Dupont
-- Date : Mon Sep 13 12:00:00 CEST 2004
-- Reviewed by : Gilles Dupont
-- Date : Mon Sep 21 12:00:00 CEST 2004
-- Reviewed by : Gilles Dupont
-- Date : Tue Nov 16 12:30:00 CEST 2004
-- Reviewed by : Luc Capanaccia
-- Date : Fri Dec 17 12:30:00 CEST 2004
-- Reviewed by : Luc Capanaccia
-- Date : Thu Sep 15 14:00:00 CEST 2005
-- Reviewed by : Philippe Rimauro (Tag PR01)
-- Date : Thu Feb 08 14:03:00 CEST 2007
-- Author : Gilles Marceau
SPC200 DEFINITIONS ::= BEGIN
IMPORTS
RowStatus, TruthValue, MacAddress, DisplayString, TEXTUAL-CONVENTION
FROM SNMPv2-TC
AGENT-CAPABILITIES, OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
MODULE-IDENTITY, OBJECT-IDENTITY, OBJECT-TYPE, Integer32,
Counter32, IpAddress, Unsigned32, Gauge32
FROM SNMPv2-SMI
interfaces, ifIndex
FROM IF-MIB
spidcom
FROM SPIDCOM-MIB;
spc200MIB MODULE-IDENTITY
LAST-UPDATED "200412171230Z" -- December 17, 2004
ORGANIZATION "Organization"
CONTACT-INFO "Contact-info"
DESCRIPTION "Description"
REVISION "200412171230Z"
DESCRIPTION "Add software upgrade features"
REVISION "200411161230Z"
DESCRIPTION "Add adapt level table , commit and reset command"
REVISION "200409211200Z"
DESCRIPTION "Add quick access to channel modulation and pilots"
REVISION "200409131200Z"
DESCRIPTION "Add quick access to notches"
REVISION "200407221200Z"
DESCRIPTION "Corrected compilation errors"
REVISION "200407011757Z"
DESCRIPTION "Initial revision"
::= { spidcom 1 }
-- TEXTUAL-CONVENTIONS --
ModulationValue ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Modulation amplitude used by a group of carriers."
SYNTAX INTEGER { none ( 1 ) ,
bpsk ( 2 ) ,
qpsk ( 3 ) ,
qam16 ( 4 ) ,
qam64 ( 5 ) ,
qam256 ( 6 ) }
CarrierValue ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A group is composed of 8 carriers."
SYNTAX Integer32 ( 1 .. 8 )
PilotValue ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The pilot carrier wave can be chosen between
the carrier 1 up to carrier 128 inside a band carrier range."
SYNTAX Integer32 ( 1 .. 128 )
BandValue ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A channel is composed of 7 bands."
SYNTAX Integer32 ( 1 .. 7 )
PlcChannelType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The different type of plc channels:
rx for the current reception channel,
rx last for the last reception channel,
tx for the current transmission channel."
SYNTAX INTEGER { rx ( 1 ) ,
rxLast ( 2 ) ,
tx ( 3 ) }
EstimationMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The type of Channel estimation process. Two are available:
- automatic, the equipment negociates the best configuration
with the remote equipment,
- manual, the operator defines the configuration."
SYNTAX INTEGER { automatic ( 1 ) ,
manual ( 2 ) }
GroupValue ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A band is composed of 16 groups."
SYNTAX Integer32 ( 1 .. 16 )
ResultValue ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Result value of input vectors."
SYNTAX INTEGER { success ( 1 ) ,
fail ( 2 ) }
AdaptValue ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The adapt level integer value."
SYNTAX Integer32 ( 0 .. 8191 )
ChannelBandwidthValue ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The channel bandwidth integer value."
SYNTAX Integer32 --PR01
SoftwareIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The software index."
SYNTAX Integer32 ( 1 .. 10 )
SoftwareActionResultValue ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Result value of software action process."
SYNTAX INTEGER { success ( 0 ) ,
on-going ( 1 ) ,
fileNotExist ( 2 ) ,
flashExhausted ( 3 ),
flashCorrupted ( 4 ),
notEnoughMemory ( 5 ),
invalidParameter ( 6 ),
genericError ( 7 ) }
SoftwareActionType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Type of software management action."
SYNTAX INTEGER { switch ( 1 ) ,
remove ( 2 ) }
--PR01 BEGIN
PlcModeType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Type of software management action."
SYNTAX INTEGER { ad-hoc ( 0 ) ,
slave ( 1 ) ,
master ( 2 ) }
--PR01 END
-- PLC data
plc OBJECT IDENTIFIER
::= { spc200MIB 1 }
-- statistic data
stats OBJECT IDENTIFIER
::= { plc 1 }
--PR01 BEGIN
-- protocol OBJECT IDENTIFIER
-- ::= { stats 1 }
-- ip OBJECT IDENTIFIER
-- ::= { protocol 1 }
-- mac OBJECT IDENTIFIER
-- ::= { protocol 2 }
-- plcp OBJECT IDENTIFIER
-- ::= { protocol 3 }
-- ipStatsTable OBJECT-TYPE
-- SYNTAX SEQUENCE OF IpStatsEntry
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "This table gathers all statistic data specific to
-- SPC200 chip relative to IP protocol. The data is
-- relative to the underlying interface that is under
-- the IP protocol layer. So the table index is
-- the ifIndex of such an interface."
-- ::= { ip 1 }
-- ipStatsEntry OBJECT-TYPE
-- SYNTAX IpStatsEntry
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "This row contains IP statistic data specific to
-- SPC200 chip. The data is relevant for the interface
-- under the IP protocol layer."
-- INDEX { ifIndex }
-- ::= { ipStatsTable 1 }
-- IpStatsEntry ::= SEQUENCE {
-- ipInPkts Counter32,
-- ipInErrorPkts Counter32,
-- ipOutPkts Counter32,
-- ipOutErrorPkts Counter32,
-- ipInBridgedPkts Counter32
-- }
-- ipInPkts OBJECT-TYPE
-- SYNTAX Counter32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The number of IP packets received by the interface
-- associated with this entry"
-- ::= { ipStatsEntry 1 }
-- ipInErrorPkts OBJECT-TYPE
-- SYNTAX Counter32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The number of inbound IP packets that contained
-- errors preventing them from being deliverable to a
-- higher -layer protocol on the interface associated
-- with this entry."
-- ::= { ipStatsEntry 2 }
-- ipOutPkts OBJECT-TYPE
-- SYNTAX Counter32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The total number of outbound IP packets transmitted
-- out the interface associated with this entry"
-- ::= { ipStatsEntry 3 }
-- ipOutErrorPkts OBJECT-TYPE
-- SYNTAX Counter32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The number of outbound IP packets that could not be
-- transmitted because of errors."
-- ::= { ipStatsEntry 4 }
-- ipInBridgedPkts OBJECT-TYPE
-- SYNTAX Counter32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The number of IP packets bridged from the interface,
-- associated with this entry, and another one"
-- ::= { ipStatsEntry 5 }
-- ipInPackets OBJECT-TYPE
-- SYNTAX Counter32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The total number of IP packets received
-- by the SPC200 CHIP"
-- ::= { ip 2 }
-- ipInErrorPackets OBJECT-TYPE
-- SYNTAX Counter32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The total number of inbound IP packets that
-- contained errors preventing them from being delivered."
-- ::= { ip 3 }
-- ipOutPackets OBJECT-TYPE
-- SYNTAX Counter32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The total number of outbound IP packets transmitted
-- out the interfaces"
-- ::= { ip 4 }
-- ipOutErrorPackets OBJECT-TYPE
-- SYNTAX Counter32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The total number of outbound IP packets that could
-- not be transmitted because of errors."
-- ::= { ip 5 }
-- ipBridgedPackets OBJECT-TYPE
-- SYNTAX Counter32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The total number of IP packets bridged"
-- ::= { ip 6 }
-- macStatsTable OBJECT-TYPE
-- SYNTAX SEQUENCE OF MacStatsEntry
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "This table gathers all SPC200 chip specific packet
-- statistics relative to MAC layer.
-- The data is relative to the underlying interface
-- that is under the MAC layer. So the table index is
-- the ifIndex of such an interface."
-- ::= { mac 1 }
-- macStatsEntry OBJECT-TYPE
-- SYNTAX MacStatsEntry
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "This row contains MAC statistic data specific
-- to SPC200 chip. The data is relevant for the interface
-- under the MAC layer."
-- INDEX { ifIndex }
-- ::= { macStatsTable 1 }
--
-- MacStatsEntry ::= SEQUENCE {
-- macInPkts Counter32,
-- macInErrorPkts Counter32,
-- macOutPackets Counter32,
-- macOutErrorPkts Counter32
-- }
-- macInPkts OBJECT-TYPE
-- SYNTAX Counter32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The number of MAC packets received by the interface
-- associated with this entry"
-- ::= { macStatsEntry 1 }
--
--
-- macInErrorPkts OBJECT-TYPE
-- SYNTAX Counter32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The number of inbound MAC packets that contained
-- errors preventing them from being deliverable to
-- a higher -layer protocol on the interface
-- associated with this entry."
-- ::= { macStatsEntry 2 }
-- macOutPackets OBJECT-TYPE
-- SYNTAX Counter32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The total number of outbound MAC packets transmitted
-- out the interface associated with this entry"
-- ::= { macStatsEntry 3 }
-- macOutErrorPkts OBJECT-TYPE
-- SYNTAX Counter32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The number of outbound MAC packets that could not be
-- transmitted because of errors."
-- ::= { macStatsEntry 4 }
-- plcpStatsTable OBJECT-TYPE
-- SYNTAX SEQUENCE OF PlcpStatsEntry
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "This table gathers all SPC200 chip specific packet
-- statistics relative to PLCP protocol.
-- The data is relative to the underlying interface that
-- is under the PLCP protocol layer. So the table index
-- is the ifIndex of such an interface."
-- ::= { plcp 1 }
-- plcpStatsEntry OBJECT-TYPE
-- SYNTAX PlcpStatsEntry
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "This row contains PLCP statistic data specific
-- to SPC200 chip. The data is relevant for the interface
-- under the PLCP layer."
-- INDEX { ifIndex }
-- ::= { plcpStatsTable 1 }
-- PlcpStatsEntry ::= SEQUENCE {
-- plcpInPkts Counter32,
-- plcpInErrorPkts Counter32,
-- plcpOutPkts Counter32,
-- plcpOutErrorPkts Counter32
-- }
-- plcpInPkts OBJECT-TYPE
-- SYNTAX Counter32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The number of PLCP packets received by the interface
-- associated with this entry"
-- ::= { plcpStatsEntry 1 }
-- plcpInErrorPkts OBJECT-TYPE
-- SYNTAX Counter32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The number of inbound PLCP packets that contained
-- errors preventing them from being deliverable to a
-- higher -layer protocol on the interface associated
-- with this entry."
-- ::= { plcpStatsEntry 2 }
-- plcpOutPkts OBJECT-TYPE
-- SYNTAX Counter32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The total number of outbound PLCP packets transmitted
-- out the interface associated with this entry"
-- ::= { plcpStatsEntry 3 }
-- plcpOutErrorPkts OBJECT-TYPE
-- SYNTAX Counter32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The number of outbound PLCP packets that could not be
-- transmitted because of errors."
-- ::= { plcpStatsEntry 4 }
--PR01 END
portStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF PortStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table gathers all statistic data specific
to SPC200 chip relative to plc connection."
::= { stats 2 }
portStatsEntry OBJECT-TYPE
SYNTAX PortStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This row contains statistic data specific to
SPC200 chip relative to a connection."
INDEX { plcBasePortIndex,
portStatsBandIndex,
portStatsGroupIndex,
portStatsCarrierIndex }
::= { portStatsTable 1 }
PortStatsEntry ::= SEQUENCE {
portStatsBandIndex BandValue,
portStatsGroupIndex GroupValue,
portStatsCarrierIndex CarrierValue,
portStatsSignal Counter32,
portStatsNoise Counter32
-- portStatsBer Counter32
}
portStatsBandIndex OBJECT-TYPE
SYNTAX BandValue
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The band number on which the signal,
noise, ber data are collected."
::= { portStatsEntry 1 }
portStatsGroupIndex OBJECT-TYPE
SYNTAX GroupValue
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The group number on which the signal,
noise, ber data are collected"
::= { portStatsEntry 2 }
portStatsCarrierIndex OBJECT-TYPE
SYNTAX CarrierValue
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The group number on which the signal,
noise, ber data are collected"
::= { portStatsEntry 3 }
portStatsSignal OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The DB value of the signal associated
with the carrier wave entry."
::= { portStatsEntry 4 }
portStatsNoise OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The DB value of the noise associated
with the carrier wave entry."
::= { portStatsEntry 5 }
--PR01 BEGIN
-- portStatsBer OBJECT-TYPE
-- SYNTAX Counter32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The BER value * 100 associated
-- with the carrier wave entry."
-- ::= { portStatsEntry 6 }
--PR01 END
portStats2Table OBJECT-TYPE
SYNTAX SEQUENCE OF PortStats2Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table gathers all statistic data specific to
SPC200 chip relative to plc channels. This table has
the same information as the portChannelStatsTable
but in a more compact way. This table has been added
to deal with possible slow performances."
::= { stats 3 }
portStats2Entry OBJECT-TYPE
SYNTAX PortStats2Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This row contains statistic data specific to
SPC200 chip relative to a connection."
INDEX { plcBasePortIndex,
plcModBandIndex }
::= { portStats2Table 1 }
PortStats2Entry ::= SEQUENCE {
portStats2Signal OCTET STRING,
portStats2Noise OCTET STRING,
--PR01 BEGIN
-- portStats2Ber OCTET STRING,
portStats2AvgBandAtt Counter32,
portStats2AvgBandSNR Counter32
--PR01 END
}
portStats2Signal OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The values of the signal for all the carrier waves.
The expected format is VALUE VALUE VALUE ... VALUE.
Each value is coded on two bytes.
There is one value for each 128 carriers of the
considered band."
::= { portStats2Entry 1 }
portStats2Noise OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The values of the noise for all the carrier waves.
The expected format is VALUE VALUE VALUE ... VALUE.
Each value is coded on two bytes.
There is one value for each 128 carriers of the
considered band."
::= { portStats2Entry 2 }
-- portStats2Ber OBJECT-TYPE
-- SYNTAX OCTET STRING
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The values of the signal for all the carrier waves.
-- The expected format is VALUE VALUE VALUE ... VALUE.
-- Each value is coded on two bytes.
-- There is one value for each 128 carriers of the
-- considered band.
-- The VALUE represents the BER value * 10000."
-- ::= { portStats2Entry 3 }
--PR01 BEGIN
portStats2AvgBandAtt OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average attenuation per band (dB)."
::= { portStats2Entry 3 }
portStats2AvgBandSNR OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average SNR per band (dB)."
::= { portStats2Entry 4 }
--PR01 END
--PR01 BEGIN
portStats3Table OBJECT-TYPE
SYNTAX SEQUENCE OF PortStats3Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table gathers all statistic data specific to
SPC200 chip relative to plc channels. This table has
the same information as the portChannelStatsTable
but in a more compact way. This table has been added
to deal with possible slow performances."
::= { stats 4 }
portStats3Entry OBJECT-TYPE
SYNTAX PortStats3Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This row contains statistic data specific to
SPC200 chip relative to a connection."
INDEX { plcBasePortIndex }
::= { portStats3Table 1 }
PortStats3Entry ::= SEQUENCE {
portStats3AvgAtt Counter32,
portStats3AvgSNR Counter32
}
portStats3AvgAtt OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average attenuation on the link (dB)."
::= { portStats3Entry 1 }
portStats3AvgSNR OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average SNR on the link (dB)."
::= { portStats3Entry 2 }
bootstats OBJECT-IDENTITY
STATUS current
DESCRIPTION "boot statistics"
::= { stats 5 }
bootstatsBoot OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Boot"
::= { bootstats 1 }
bootstatsManualReset OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Manual reset"
::= { bootstats 2 }
bootstatsFailureReset OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Failure reset"
::= { bootstats 3 }
--PR01 END
-- configuration data
plcObjects OBJECT IDENTIFIER
::= { plc 2 }
plcMode OBJECT-TYPE -- PR01
SYNTAX PlcModeType --PR01
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Plc Mode"
::= { plcObjects 1 }
plcTopo OBJECT IDENTIFIER
::= { plcObjects 2 }
plcNodeConfiguration OBJECT IDENTIFIER
::= { plcObjects 3 }
--PR01 BEGIN
plcSNAnalyser OBJECT IDENTIFIER
::= { plcObjects 4 }
plcSNAnalyserEnable OBJECT-TYPE
SYNTAX INTEGER { true ( 1 ) ,
false ( 2 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "true if the modem should turn to spectrum analyser mode.
In this mode the modem enters a receive only mode,
and captures periodic samples of the signal on the powerline.
The spectrum analyser mode shall be disabled for normal
powerline modem operation."
::= { plcSNAnalyser 1 }
plcSNAnalyserTable OBJECT-TYPE
SYNTAX SEQUENCE OF PlcSNAnalyserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table gathers all statistic data specific to
SPC200 chip relative to plc analyser."
::= { plcSNAnalyser 2 }
plcSNAnalyserEntry OBJECT-TYPE
SYNTAX PlcSNAnalyserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This row contains statistic data specific to
SPC200 chip relative to a band."
INDEX { plcModBandIndex }
::= { plcSNAnalyserTable 1 }
PlcSNAnalyserEntry ::= SEQUENCE {
plcSNAnalyserMinSignal OCTET STRING,
plcSNAnalyserMaxSignal OCTET STRING,
plcSNAnalyserAvgSignal OCTET STRING,
plcSNAnalyserLastSignal OCTET STRING,
plcSNAnalyserFFTDiv Counter32
}
plcSNAnalyserMinSignal OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Minimum signal measured over several samples for the
associated carrier wave entry. The value is expressed
in Glomer© which can be converted in dBm/Hz using the
following formula: dBm/Hz = 19*log10(Glomer©) - 113"
::= { plcSNAnalyserEntry 1 }
plcSNAnalyserMaxSignal OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Maximum signal measured on several samples for the
associated carrier wave entry. The value is expressed
in Glomer© which can be converted in dBm/Hz using the
following formula: dBm/Hz = 19*log10(Glomer©) - 113"
::= { plcSNAnalyserEntry 2 }
plcSNAnalyserAvgSignal OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average signal measured on several samples for the
associated carrier wave entry. The value is expressed
in Glomer© which can be converted in dBm/Hz using the
following formula: dBm/Hz = 19*log10(Glomer©) - 113"
::= { plcSNAnalyserEntry 3 }
plcSNAnalyserLastSignal OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Signal measured for last sample on the associated
carrier wave entry. The value is expressed
in Glomer© which can be converted in dBm/Hz using the
following formula: dBm/Hz = 19*log10(Glomer©) - 113"
::= { plcSNAnalyserEntry 4 }
plcSNAnalyserFFTDiv OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "FFT division factor on the associated band."
::= { plcSNAnalyserEntry 5 }
plcSNAnalyserAGC OBJECT-TYPE
SYNTAX Integer32 ( 0..255 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Gain factor in dB, as used by the
Automatic Gain Control last sample"
::= { plcSNAnalyser 3 }
plcAGCAnalyser OBJECT IDENTIFIER
::= { plcObjects 5 }
plcAGCAnalyserEnable OBJECT-TYPE
SYNTAX INTEGER { true ( 1 ) ,
false ( 2 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION " "
::= { plcAGCAnalyser 1 }
plcAGCAnalyserSamplesPart1 OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { plcAGCAnalyser 2 }
plcAGCAnalyserSamplesPart2 OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { plcAGCAnalyser 3 }
--PR01 END
plcTopoChanges OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total number of topology changes detected
by this plc bridge since the management entity
was last reset or initialized. Such changes
concerns only
- the plcBasePortTable rows
- the plcBasePortTable columns
except for plcBasePortChannelEstimation"
::= { plcTopo 1 }
plcBasePortTable OBJECT-TYPE
SYNTAX SEQUENCE OF PlcBasePortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains the list of plc remote connection"
::= { plcTopo 2 }
plcBasePortEntry OBJECT-TYPE
SYNTAX PlcBasePortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This row contains plc remote connection information"
INDEX { plcBasePortIndex }
::= { plcBasePortTable 1 }
PlcBasePortEntry ::= SEQUENCE {
plcBasePortIndex MacAddress,
plcBasePortAddress MacAddress,
plcBasePortChannelEstimation EstimationMode,
plcBasePortAttenuation Counter32 }
plcBasePortIndex OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The MAC address of the MAC layer above
the plc interface of the remote PLC equipment."
::= { plcBasePortEntry 1 }
plcBasePortAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The MAC address of the MAC layer above
the plc interface of the remote PLC equipment."
::= { plcBasePortEntry 2 }
plcBasePortChannelEstimation OBJECT-TYPE
SYNTAX EstimationMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Enable or disable the automatic channel
estimation processus."
::= { plcBasePortEntry 3 }
plcBasePortAttenuation OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Link attenuation (dB)."
::= { plcBasePortEntry 4 }
plcChannelModulationStringTable OBJECT-TYPE
SYNTAX SEQUENCE OF PlcChannelModulationStringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains string values for a quick access to
the modulation amplitude configurations of all active
channels."
::= { plcTopo 3 }
plcChannelModulationStringEntry OBJECT-TYPE
SYNTAX PlcChannelModulationStringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This row contains string values for a quick access to
the modulation amplitude configuration
of each active channel of the remote
connection referenced by plcBasePortIndex."
INDEX { plcBasePortIndex }
::= { plcChannelModulationStringTable 1 }
PlcChannelModulationStringEntry ::= SEQUENCE {
plcRxChannelModulation OCTET STRING,
plcRxLastChannelModulation OCTET STRING,
plcTxChannelModulation OCTET STRING }
plcRxChannelModulation OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The modulation amplitude values for the Rx channel of
a given remote connection entry.
The expected format is VALUE VALUE VALUE ... VALUE.
Each value is an octet representing two modulation values.
Each modulation is coded on 4 bits.
There are ( 16 groups * 7 bands ) / 2 = 66 values."
::= { plcChannelModulationStringEntry 1 }
plcRxLastChannelModulation OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The modulation amplitude values for the Rx Last channel of
a given remote connection entry.
The expected format is VALUE VALUE VALUE ... VALUE.
Each value is an octet representing two modulation values.
Each modulation is coded on 4 bits representing ModulationValue - 1.
There are ( 16 groups * 7 bands ) / 2 = 66 values."
::= { plcChannelModulationStringEntry 2 }
plcTxChannelModulation OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The modulation amplitude values for the Tx channel of
a given remote connection entry.
The expected format is VALUE VALUE VALUE ... VALUE.
Each value is an octet representing two modulation values.
Each modulation is coded on 4 bits.
There are ( 16 groups * 7 bands ) / 2 = 66 values."
::= { plcChannelModulationStringEntry 3 }
plcChannelModulationTable OBJECT-TYPE
SYNTAX SEQUENCE OF PlcChannelModulationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains the modulation amplitude
configuration of all active channels."
::= { plcTopo 4 }
plcChannelModulationEntry OBJECT-TYPE
SYNTAX PlcChannelModulationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This row contains modulation amplitude configuration
of the channel, referenced by the plcPortChannelIndex,
of the remote connection referenced by
plcBasePortIndex."
INDEX { plcBasePortIndex,
plcPortChannelIndex,
plcModBandIndex }
::= { plcChannelModulationTable 1 }
PlcChannelModulationEntry ::= SEQUENCE {
plcModBandIndex BandValue,
plcModGroup1 ModulationValue,
plcModGroup2 ModulationValue,
plcModGroup3 ModulationValue,
plcModGroup4 ModulationValue,
plcModGroup5 ModulationValue,
plcModGroup6 ModulationValue,
plcModGroup7 ModulationValue,
plcModGroup8 ModulationValue,
plcModGroup9 ModulationValue,
plcModGroup10 ModulationValue,
plcModGroup11 ModulationValue,
plcModGroup12 ModulationValue,
plcModGroup13 ModulationValue,
plcModGroup14 ModulationValue,
plcModGroup15 ModulationValue,
plcModGroup16 ModulationValue
}
plcModBandIndex OBJECT-TYPE
SYNTAX BandValue
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The band number of which the modulations are defined"
::= { plcChannelModulationEntry 1 }
plcModGroup1 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The modulation amplitude of the first group
of the band entry of the channel entry
for a given remote connection entry."
::= { plcChannelModulationEntry 2 }
plcModGroup2 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The modulation amplitude of the second group
of the band entry of the channel entry
for a given remote connection entry."
::= { plcChannelModulationEntry 3 }
plcModGroup3 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The modulation amplitude of the third group
of the band entry of the channel entry
for a given remote connection entry."
::= { plcChannelModulationEntry 4 }
plcModGroup4 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The modulation amplitude of the fourth group
of the band entry of the channel entry
for a given remote connection entry."
::= { plcChannelModulationEntry 5 }
plcModGroup5 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The modulation amplitude of the fifth group
of the band entry of the channel entry
for a given remote connection entry."
::= { plcChannelModulationEntry 6 }
plcModGroup6 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The modulation amplitude of the sixth group
of the band entry of the channel entry
for a given remote connection entry."
::= { plcChannelModulationEntry 7 }
plcModGroup7 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The modulation amplitude of the seventh group
of the band entry of the channel entry
for a given remote connection entry."
::= { plcChannelModulationEntry 8 }
plcModGroup8 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The modulation amplitude of the eighth group
of the band entry of the channel entry
for a given remote connection entry."
::= { plcChannelModulationEntry 9 }
plcModGroup9 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The modulation amplitude of the nineth group
of the band entry of the channel entry
for a given remote connection entry."
::= { plcChannelModulationEntry 10 }
plcModGroup10 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The modulation amplitude of the tenth group
of the band entry of the channel entry
for a given remote connection entry."
::= { plcChannelModulationEntry 11 }
plcModGroup11 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The modulation amplitude of the eleventh group
of the band entry of the channel entry
for a given remote connection entry."
::= { plcChannelModulationEntry 12 }
plcModGroup12 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The modulation amplitude of the twelveth group
of the band entry of the channel entry
for a given remote connection entry."
::= { plcChannelModulationEntry 13 }
plcModGroup13 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The modulation amplitude of the thirteenth group
of the band entry of the channel entry
for a given remote connection entry."
::= { plcChannelModulationEntry 14 }
plcModGroup14 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The modulation amplitude of the fourteenth group
of the band entry of the channel entry
for a given remote connection entry."
::= { plcChannelModulationEntry 15 }
plcModGroup15 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The modulation amplitude of the fifteenth group
of the band entry of the channel entry
for a given remote connection entry."
::= { plcChannelModulationEntry 16 }
plcModGroup16 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The modulation amplitude of the sixteenth group
of the band entry of the channel entry
for a given remote connection entry."
::= { plcChannelModulationEntry 17 }
plcChannelModulationInput OBJECT IDENTIFIER
::= { plcTopo 5 }
plcModulationInputAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The MAC address of the MAC layer above
the plc interface of the remote
PLC equipment for which the modulation
value changes are requested."
::= { plcChannelModulationInput 1 }
plcModulationInputChannel OBJECT-TYPE
SYNTAX PlcChannelType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The channel type of the remote PLC equipment
for which the modulation value changes
are requested."
::= { plcChannelModulationInput 2 }
plcModulationInputBand OBJECT-TYPE
SYNTAX BandValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The band number of which the modulation value
changes are requested."
::= { plcChannelModulationInput 3 }
plcInputModulationGroup1 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The new requested modulation amplitude of the
first group of the considered band and
channel input values."
::= { plcChannelModulationInput 4 }
plcInputModulationGroup2 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The new requested modulation amplitude of the
second group of the considered band and
channel input values."
::= { plcChannelModulationInput 5 }
plcInputModulationGroup3 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The new requested modulation amplitude of the
third group of the considered band and
channel input values."
::= { plcChannelModulationInput 6 }
plcInputModulationGroup4 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The new requested modulation amplitude of the
fourth group of the considered band and
channel input values."
::= { plcChannelModulationInput 7 }
plcInputModulationGroup5 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The new requested modulation amplitude of the
fifth group of the considered band and
channel input values."
::= { plcChannelModulationInput 8 }
plcInputModulationGroup6 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The new requested modulation amplitude of the
sixth group of the considered band and
channel input values."
::= { plcChannelModulationInput 9 }
plcInputModulationGroup7 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The new requested modulation amplitude of the
seventh group of the considered band and
channel input values."
::= { plcChannelModulationInput 10 }
plcInputModulationGroup8 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The new requested modulation amplitude of the
eighth group of the considered band and
channel input values."
::= { plcChannelModulationInput 11 }
plcInputModulationGroup9 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The new requested modulation amplitude of the
nineth group of the considered band and
channel input values."
::= { plcChannelModulationInput 12 }
plcInputModulationGroup10 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The new requested modulation amplitude of the
tenth group of the considered band and
channel input values."
::= { plcChannelModulationInput 13 }
plcInputModulationGroup11 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The new requested modulation amplitude of the
eleventh group of the considered band and
channel input values."
::= { plcChannelModulationInput 14 }
plcInputModulationGroup12 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The new requested modulation amplitude of the
twelveth group of the considered band and
channel input values."
::= { plcChannelModulationInput 15 }
plcInputModulationGroup13 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The new requested modulation amplitude of the
thirteenth group of the considered band and
channel input values."
::= { plcChannelModulationInput 16 }
plcInputModulationGroup14 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The new requested modulation amplitude of the
fourteenth group of the considered band and
channel input values."
::= { plcChannelModulationInput 17 }
plcInputModulationGroup15 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The new requested modulation amplitude of the
fifteenth group of the considered band and
channel input values."
::= { plcChannelModulationInput 18 }
plcInputModulationGroup16 OBJECT-TYPE
SYNTAX ModulationValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The new requested modulation amplitude of the
sixteenth group of the considered band and
channel input values."
::= { plcChannelModulationInput 19 }
plcModulationInputProceed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "True to request a modification of all the modulations
associated to a band and a channel of a remote
PLC equipment."
::= { plcChannelModulationInput 20 }
plcModulationInputResult OBJECT-TYPE
SYNTAX ResultValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Result value of the requested modulation value changes."
::= { plcChannelModulationInput 21 }
plcPortChannelTable OBJECT-TYPE
SYNTAX SEQUENCE OF PlcPortChannelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains the list of plc channels"
::= { plcTopo 6 }
plcPortChannelEntry OBJECT-TYPE
SYNTAX PlcPortChannelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This row contains plc channel information"
INDEX { plcBasePortIndex, plcPortChannelIndex }
::= { plcPortChannelTable 1 }
PlcPortChannelEntry ::= SEQUENCE {
plcPortChannelIndex Unsigned32,
plcPortChannelType PlcChannelType,
plcPortChannelGain Integer32,
plcPortChannelBandwidth ChannelBandwidthValue,
plcPortChannelMaxBandwidth ChannelBandwidthValue,
plcPortChannelSynchronizationBand BandValue
}
plcPortChannelIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The channel number belongs to the remote connection
with plc equipment associated with the
plcBasePortIndex value.
Only three channels are expected.
Index 1 for RX channel
Index 2 for RXLast channel
index 3 for TX channel"
::= { plcPortChannelEntry 1 }
plcPortChannelType OBJECT-TYPE
SYNTAX PlcChannelType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The channel type."
::= { plcPortChannelEntry 2 }
plcPortChannelGain OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The gain associated with the channel."
::= { plcPortChannelEntry 3 }
plcPortChannelBandwidth OBJECT-TYPE
SYNTAX ChannelBandwidthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The bandwidth of the channel in Kbit/s."
::= { plcPortChannelEntry 4 }
--PR01 BEGIN
plcPortChannelMaxBandwidth OBJECT-TYPE
SYNTAX ChannelBandwidthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The maximum bandwidth of the channel in Kbit/s."
::= { plcPortChannelEntry 5 }
--PR01 END
plcPortChannelSynchronizationBand OBJECT-TYPE
SYNTAX BandValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The synchronization band used for this channel."
::= { plcPortChannelEntry 6 }
plcChannelPilotStringTable OBJECT-TYPE
SYNTAX SEQUENCE OF PlcChannelPilotStringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains the string values representing
of pilot values of all active channels."
::= { plcTopo 7 }
plcChannelPilotStringEntry OBJECT-TYPE
SYNTAX PlcChannelPilotStringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This row contains a quick access for pilot values ,
of the remote connection referenced by
plcBasePortIndex."
INDEX { plcBasePortIndex }
::= { plcChannelPilotStringTable 1 }
PlcChannelPilotStringEntry ::= SEQUENCE {
plcRxChannelPilots OCTET STRING,
plcRxLastChannelPilots OCTET STRING,
plcTxChannelPilots OCTET STRING}
plcRxChannelPilots OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The carrier wave numbers which support
the pilot waves for the Rx Channel.
The expected format is VALUE VALUE VALUE ... VALUE.
Each value is a pair of octets representing the pilot
values. There is one pair (pilot1 pilot2) for each
of the 7 bands."
::= { plcChannelPilotStringEntry 1 }
plcRxLastChannelPilots OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The carrier wave numbers which support
the pilot waves for the Rx Last Channel.
The expected format is VALUE VALUE VALUE ... VALUE.
Each value is a pair of octets representing the pilot
values. There is one pair (pilot1 pilot2) for each
of the 7 bands."
::= { plcChannelPilotStringEntry 2 }
plcTxChannelPilots OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The carrier wave numbers which support
the pilot waves for the Tx Channel.
The expected format is VALUE VALUE VALUE ... VALUE.
Each value is a pair of octets representing the pilot
values. There is one pair (pilot1 pilot2) for each
of the 7 bands."
::= { plcChannelPilotStringEntry 3 }
plcChannelPilotsTable OBJECT-TYPE
SYNTAX SEQUENCE OF PlcChannelPilotsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This tabel contains pilots configuration
for each plc channel."
::= { plcTopo 8 }
plcChannelPilotsEntry OBJECT-TYPE
SYNTAX PlcChannelPilotsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This row contains the pilots 1 and 2 configuration
for a channel defined by the
couple (plcBasePortIndex, plcPortChannelIndex)"
INDEX { plcBasePortIndex,
plcPortChannelIndex,
plcChannelPilotBandIndex }
::= { plcChannelPilotsTable 1 }
PlcChannelPilotsEntry ::= SEQUENCE {
plcChannelPilotBandIndex BandValue,
plcChannelPilot1 PilotValue,
plcChannePilot2 PilotValue
}
plcChannelPilotBandIndex OBJECT-TYPE
SYNTAX BandValue
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The band number on which the pilots are defined."
::= { plcChannelPilotsEntry 1 }
plcChannelPilot1 OBJECT-TYPE
SYNTAX PilotValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The carrier wave number which supports
the first pilot wave for the channel
associated with this entry."
::= { plcChannelPilotsEntry 2 }
plcChannePilot2 OBJECT-TYPE
SYNTAX PilotValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The carrier wave number which supports
the second pilot wave for the channel
associated with this entry."
::= { plcChannelPilotsEntry 3 }
plcChannelPilotsInput OBJECT IDENTIFIER
::= { plcTopo 9 }
plcPilotsInputAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The MAC address of the MAC layer above
the plc interface of the remote
PLC equipment for which the pilot
value changes are requested."
::= { plcChannelPilotsInput 1 }
plcPilotsInputChannel OBJECT-TYPE
SYNTAX PlcChannelType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The channel type of the remote PLC equipment
for which the pilot value changes
are requested."
::= { plcChannelPilotsInput 2 }
plcPilotsInputBand OBJECT-TYPE
SYNTAX BandValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The band number of which the pilots value
changes are requested."
::= { plcChannelPilotsInput 3 }
plcInputChannelPilot1 OBJECT-TYPE
SYNTAX PilotValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The carrier wave number which supports
the first pilot wave for the considered band and
channel input values."
::= { plcChannelPilotsInput 4 }
plcInputChannelPilot2 OBJECT-TYPE
SYNTAX PilotValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The carrier wave number which supports
the second pilot wave for the considered band and
channel input values."
::= { plcChannelPilotsInput 5 }
plcPilotsInputProceed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "True to request a modification of the first and second pilot
associated to a band and a channel of a remote
PLC equipment."
::= { plcChannelPilotsInput 6 }
plcPilotsInputResult OBJECT-TYPE
SYNTAX ResultValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Result value of the requested pilot values changes."
::= { plcChannelPilotsInput 7 }
plcNodeNotches OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The values of the notches for all the node bands.
The expected format is VALUE VALUE VALUE ... VALUE.
Each value is an octet representing the 8 notches of
each group. There is one value for each 7 * 16 bands."
::= { plcNodeConfiguration 1 }
plcNodeNotchesTable OBJECT-TYPE
SYNTAX SEQUENCE OF PlcNodeNotchesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains Notches configuration
for the SPC200 chip."
::= { plcNodeConfiguration 2 }
plcNodeNotchesEntry OBJECT-TYPE
SYNTAX PlcNodeNotchesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This row contains Notches configuration for a group.
The group is defined by the couple
(plcNodeNotchesGroupIndex, plcNodeNotchesBandIndex)."
INDEX { plcNodeNotchesBandIndex, plcNodeNotchesGroupIndex }
::= { plcNodeNotchesTable 1 }
PlcNodeNotchesEntry ::= SEQUENCE {
plcNodeNotchesBandIndex BandValue,
plcNodeNotchesGroupIndex GroupValue,
plcNodeNotchesCarrier1 TruthValue,
plcNodeNotchesCarrier2 TruthValue,
plcNodeNotchesCarrier3 TruthValue,
plcNodeNotchesCarrier4 TruthValue,
plcNodeNotchesCarrier5 TruthValue,
plcNodeNotchesCarrier6 TruthValue,
plcNodeNotchesCarrier7 TruthValue,
plcNodeNotchesCarrier8 TruthValue
}
plcNodeNotchesBandIndex OBJECT-TYPE
SYNTAX BandValue
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The band number on which the notches are defined."
::= { plcNodeNotchesEntry 1 }
plcNodeNotchesGroupIndex OBJECT-TYPE
SYNTAX GroupValue
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The group number on which the notches are defined."
::= { plcNodeNotchesEntry 2 }
plcNodeNotchesCarrier1 OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Tell if the first carrier of the group entry
of the band entry is a notch carrier.
The true value means the current carrier is a notch."
::= { plcNodeNotchesEntry 3 }
plcNodeNotchesCarrier2 OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Tell if the second carrier of the group entry
of the band entry is a notch carrier.
The true value means the current carrier is a notch."
::= { plcNodeNotchesEntry 4 }
plcNodeNotchesCarrier3 OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Tell if the third carrier of the group entry
of the band entry is a notch carrier.
The true value means the current carrier is a notch."
::= { plcNodeNotchesEntry 5 }
plcNodeNotchesCarrier4 OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Tell if the fourth carrier of the group entry
of the band entry is a notch carrier.
The true value means the current carrier is a notch."
::= { plcNodeNotchesEntry 6 }
plcNodeNotchesCarrier5 OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Tell if the fifth carrier of the group entry
of the band entry is a notch carrier.
The true value means the current carrier is a notch."
::= { plcNodeNotchesEntry 7 }
plcNodeNotchesCarrier6 OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Tell if the sixth carrier of the group entry
of the band entry is a notch carrier.
The true value means the current carrier is a notch."
::= { plcNodeNotchesEntry 8 }
plcNodeNotchesCarrier7 OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Tell if the seventh carrier of the group entry
of the band entry is a notch carrier.
The true value means the current carrier is a notch."
::= { plcNodeNotchesEntry 9 }
plcNodeNotchesCarrier8 OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Tell if the eighth carrier of the group entry
of the band entry is a notch carrier.
The true value means the current carrier is a notch."
::= { plcNodeNotchesEntry 10 }
plcNodeNotchesInput OBJECT IDENTIFIER
::= { plcNodeConfiguration 3 }
plcNodeNotchesInputBand OBJECT-TYPE
SYNTAX BandValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The band number on which the notches value
changes are requested."
::= { plcNodeNotchesInput 1 }
plcNodeNotchesInputGroup OBJECT-TYPE
SYNTAX GroupValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The group number on which the notches value
changes are requested."
::= { plcNodeNotchesInput 2 }
plcNodeNotchesInputCarrier1 OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The first carrier of the considered group and
band is a notch carrier.
The true value means the current carrier is a notch."
::= { plcNodeNotchesInput 3 }
plcNodeNotchesInputCarrier2 OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The second carrier of the considered group and
band is a notch carrier.
The true value means the current carrier is a notch."
::= { plcNodeNotchesInput 4 }
plcNodeNotchesInputCarrier3 OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The third carrier of the considered group and
band is a notch carrier.
The true value means the current carrier is a notch."
::= { plcNodeNotchesInput 5 }
plcNodeNotchesInputCarrier4 OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The fourth carrier of the considered group and
band is a notch carrier.
The true value means the current carrier is a notch."
::= { plcNodeNotchesInput 6 }
plcNodeNotchesInputCarrier5 OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The eighth carrier of the considered group and
band is a notch carrier.
The true value means the current carrier is a notch."
::= { plcNodeNotchesInput 7 }
plcNodeNotchesInputCarrier6 OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The eighth carrier of the considered group and
band is a notch carrier.
The true value means the current carrier is a notch."
::= { plcNodeNotchesInput 8 }
plcNodeNotchesInputCarrier7 OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The seventh carrier of the considered group and
band is a notch carrier.
The true value means the current carrier is a notch."
::= { plcNodeNotchesInput 9 }
plcNodeNotchesInputCarrier8 OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The eighth carrier of the considered group and
band is a notch carrier.
The true value means the current carrier is a notch."
::= { plcNodeNotchesInput 10 }
plcNodeNotchesInputProceed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "True to request a modification of the carrier notches
associated to the considered group and
band."
::= { plcNodeNotchesInput 11 }
plcNodeNotchesInputResult OBJECT-TYPE
SYNTAX ResultValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Result value of the requested node carrier notches value changes."
::= { plcNodeNotchesInput 12 }
plcNodePilots OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The values of the pilot for all the node bands.
The expected format is VALUE VALUE VALUE ... VALUE.
Each value is a pair of octets representing the pilot
values. There is one pair (pilot1 pilot2) for each
of the 7 bands."
::= { plcNodeConfiguration 4 }
plcNodePilotsTable OBJECT-TYPE
SYNTAX SEQUENCE OF PlcNodePilotsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains pilot values
used by default on all channels."
::= { plcNodeConfiguration 5 }
plcNodePilotsEntry OBJECT-TYPE
SYNTAX PlcNodePilotsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This row contains pilot values
used by default on a band.
The band is defined by the index
plcNodePilotsBandIndex."
INDEX { plcNodePilotsBandIndex }
::= { plcNodePilotsTable 1 }
PlcNodePilotsEntry ::= SEQUENCE {
plcNodePilotsBandIndex BandValue,
plcNodePilot1 PilotValue,
plcNodePilot2 PilotValue
}
plcNodePilotsBandIndex OBJECT-TYPE
SYNTAX BandValue
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The band number on which the pilot values are defined."
::= { plcNodePilotsEntry 1 }
plcNodePilot1 OBJECT-TYPE
SYNTAX PilotValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The default carrier wave number
which supports the first pilot wave."
::= { plcNodePilotsEntry 2 }
plcNodePilot2 OBJECT-TYPE
SYNTAX PilotValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The default carrier wave number
which supports the second pilot wave."
::= { plcNodePilotsEntry 3 }
plcNodePilotsInput OBJECT IDENTIFIER
::= { plcNodeConfiguration 6 }
plcNodePilotsInputBand OBJECT-TYPE
SYNTAX BandValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The band number on which the pilot values
changes are requested."
::= { plcNodePilotsInput 1 }
plcInputNodePilot1 OBJECT-TYPE
SYNTAX PilotValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The default carrier wave number
which supports the first pilot wave of
the considered band."
::= { plcNodePilotsInput 2 }
plcInputNodePilot2 OBJECT-TYPE
SYNTAX PilotValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The default carrier wave number
which supports the second pilot wave of
the considered band."
::= { plcNodePilotsInput 3 }
plcNodePilotsInputProceed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "True to request a modification of the pilot values
associated to the considered band."
::= { plcNodePilotsInput 4 }
plcNodePilotsInputResult OBJECT-TYPE
SYNTAX ResultValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Result value of the requested node pilot values changes."
::= { plcNodePilotsInput 5 }
plcNodeAdaptsStringTable OBJECT-TYPE
SYNTAX SEQUENCE OF PlcNodeAdaptsStringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains string values for a
quick access to the adapt configurations
of all the carriers."
::= { plcNodeConfiguration 7 }
plcNodeAdaptsStringEntry OBJECT-TYPE
SYNTAX PlcNodeAdaptsStringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This row contains string values for a quick access to
the adapt configuration
of each carrier of a band."
INDEX { plcBasePortIndex , plcNodeAdaptsStringBandIndex }
::= { plcNodeAdaptsStringTable 1 }
PlcNodeAdaptsStringEntry ::= SEQUENCE {
plcNodeAdaptsStringBandIndex BandValue,
plcNodeAdaptsStringBand OCTET STRING }
plcNodeAdaptsStringBandIndex OBJECT-TYPE
SYNTAX BandValue
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The band number on which the adapt values are defined."
::= { plcNodeAdaptsStringEntry 1 }
plcNodeAdaptsStringBand OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The adapt values of the 128 carriers of a band.
The expected format is VALUE VALUE VALUE ... VALUE.
Each value is two octets representing one adapt carrier
level.
There are ( 16 groups * 8 carriers) = 128 values."
::= { plcNodeAdaptsStringEntry 2 }
plcNodeAdaptsTable OBJECT-TYPE
SYNTAX SEQUENCE OF PlcNodeAdaptsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains adapt level configuration
for each carrier of the node."
::= { plcNodeConfiguration 8 }
plcNodeAdaptsEntry OBJECT-TYPE
SYNTAX PlcNodeAdaptsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This row contains adapt level values
for a group of carriers.
The group is defined by the couple
(plcNodeAdaptsBandIndex,plcNodeAdaptsGroupIndex)."
INDEX { plcNodeAdaptsBandIndex,plcNodeAdaptsGroupIndex }
::= { plcNodeAdaptsTable 1 }
PlcNodeAdaptsEntry ::= SEQUENCE {
plcNodeAdaptsBandIndex BandValue,
plcNodeAdaptsGroupIndex GroupValue,
plcNodeAdaptsCarrier1 AdaptValue,
plcNodeAdaptsCarrier2 AdaptValue,
plcNodeAdaptsCarrier3 AdaptValue,
plcNodeAdaptsCarrier4 AdaptValue,
plcNodeAdaptsCarrier5 AdaptValue,
plcNodeAdaptsCarrier6 AdaptValue,
plcNodeAdaptsCarrier7 AdaptValue,
plcNodeAdaptsCarrier8 AdaptValue
}
plcNodeAdaptsBandIndex OBJECT-TYPE
SYNTAX BandValue
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The band number on which the adapt values are defined."
::= { plcNodeAdaptsEntry 1 }
plcNodeAdaptsGroupIndex OBJECT-TYPE
SYNTAX GroupValue
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The group number on which the adapt values are defined."
::= { plcNodeAdaptsEntry 2 }
plcNodeAdaptsCarrier1 OBJECT-TYPE
SYNTAX AdaptValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The adapt level of the first carrier of the group."
::= { plcNodeAdaptsEntry 3 }
plcNodeAdaptsCarrier2 OBJECT-TYPE
SYNTAX AdaptValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The adapt level of the second carrier of the group."
::= { plcNodeAdaptsEntry 4 }
plcNodeAdaptsCarrier3 OBJECT-TYPE
SYNTAX AdaptValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The adapt level of the third carrier of the group."
::= { plcNodeAdaptsEntry 5 }
plcNodeAdaptsCarrier4 OBJECT-TYPE
SYNTAX AdaptValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The adapt level of the fourth carrier of the group."
::= { plcNodeAdaptsEntry 6 }
plcNodeAdaptsCarrier5 OBJECT-TYPE
SYNTAX AdaptValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The adapt level of the fifth carrier of the group."
::= { plcNodeAdaptsEntry 7 }
plcNodeAdaptsCarrier6 OBJECT-TYPE
SYNTAX AdaptValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The adapt level of the sixth carrier of the group."
::= { plcNodeAdaptsEntry 8 }
plcNodeAdaptsCarrier7 OBJECT-TYPE
SYNTAX AdaptValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The adapt level of the seventh carrier of the group."
::= { plcNodeAdaptsEntry 9 }
plcNodeAdaptsCarrier8 OBJECT-TYPE
SYNTAX AdaptValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The adapt level of the eighth carrier of the group."
::= { plcNodeAdaptsEntry 10 }
plcNodeAdaptsInput OBJECT IDENTIFIER
::= { plcNodeConfiguration 9 }
plcNodeAdaptsInputBand OBJECT-TYPE
SYNTAX BandValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The band number on which the adapt level value
changes are requested."
::= { plcNodeAdaptsInput 1 }
plcNodeAdaptsInputGroup OBJECT-TYPE
SYNTAX GroupValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The group number on which the adapt level value
changes are requested."
::= { plcNodeAdaptsInput 2 }
plcNodeAdaptsInputCarrier1 OBJECT-TYPE
SYNTAX AdaptValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The adapt level of the first carrier of the
considered group of the chosen band."
::= { plcNodeAdaptsInput 3 }
plcNodeAdaptsInputCarrier2 OBJECT-TYPE
SYNTAX AdaptValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The adapt level of the second carrier of the
considered group of the chosen band."
::= { plcNodeAdaptsInput 4 }
plcNodeAdaptsInputCarrier3 OBJECT-TYPE
SYNTAX AdaptValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The adapt level of the third carrier of the
considered group of the chosen band."
::= { plcNodeAdaptsInput 5 }
plcNodeAdaptsInputCarrier4 OBJECT-TYPE
SYNTAX AdaptValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The adapt level of the fourth carrier of the
considered group of the chosen band."
::= { plcNodeAdaptsInput 6 }
plcNodeAdaptsInputCarrier5 OBJECT-TYPE
SYNTAX AdaptValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The adapt level of the fifth carrier of the
considered group of the chosen band."
::= { plcNodeAdaptsInput 7 }
plcNodeAdaptsInputCarrier6 OBJECT-TYPE
SYNTAX AdaptValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The adapt level of the sixth carrier of the
considered group of the chosen band."
::= { plcNodeAdaptsInput 8 }
plcNodeAdaptsInputCarrier7 OBJECT-TYPE
SYNTAX AdaptValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The adapt level of the seventh carrier of the
considered group of the chosen band."
::= { plcNodeAdaptsInput 9 }
plcNodeAdaptsInputCarrier8 OBJECT-TYPE
SYNTAX AdaptValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The adapt level of the eighth carrier of the
considered group of the chosen band."
::= { plcNodeAdaptsInput 10 }
plcNodeAdaptsInputProceed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "True to request a modification of the carrier
adapt level associated to the considered group and
band."
::= { plcNodeAdaptsInput 11 }
plcNodeAdaptsInputResult OBJECT-TYPE
SYNTAX ResultValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Result value of the requested node adapt level
value changes."
::= { plcNodeAdaptsInput 12 }
plcNodeNetConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF PlcNodeNetConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains ip and mac
addresses of the node."
::= { plcNodeConfiguration 10 }
plcNodeNetConfigEntry OBJECT-TYPE
SYNTAX PlcNodeNetConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This row contains ip and mac address
used by an interface."
INDEX { ifIndex }
::= { plcNodeNetConfigTable 1 }
PlcNodeNetConfigEntry ::= SEQUENCE {
plcNodeIpAddr IpAddress,
plcNodeNetMask IpAddress,
plcNodeMacAddr MacAddress,
plcNodeGateway IpAddress
}
plcNodeIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The IP address of the IP layer above the interface."
::= { plcNodeNetConfigEntry 1 }
plcNodeNetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The IP Subnet mask of the IP layer above the interface."
::= { plcNodeNetConfigEntry 2 }
plcNodeMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The MAC address of the MAC layer above the interface."
::= { plcNodeNetConfigEntry 3 }
plcNodeGateway OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The Gateway address of the IP layer above the interface."
::= { plcNodeNetConfigEntry 4 }
plcNodeActions OBJECT IDENTIFIER
::= { plcNodeConfiguration 11 }
plcNodeActionsCommit OBJECT IDENTIFIER
::= { plcNodeActions 1 }
plcNodeActionsCommitProceed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "True to request the commit of the configuration
changes into the flash memory"
::= { plcNodeActionsCommit 1 }
plcNodeActionsCommitResult OBJECT-TYPE
SYNTAX ResultValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Result value of the requested flash commit operation."
::= { plcNodeActionsCommit 2 }
plcNodeActionsReset OBJECT IDENTIFIER
::= { plcNodeActions 2 }
plcNodeActionsResetProceed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "True to request the reset of the node.
This operation will terminate the communication
between the manager and the node"
::= { plcNodeActionsReset 1 }
plcNodeActionsCarrier OBJECT IDENTIFIER
::= { plcNodeActions 3 }
plcNodeActionsCarrierFlatProceed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "True to request the equipment to flat the signal"
::= { plcNodeActionsCarrier 1 }
plcBssId OBJECT IDENTIFIER
::= { plcObjects 6 }
plcMasterBssId OBJECT-TYPE
SYNTAX INTEGER(0..99)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of the master Bss Id"
::= { plcBssId 1 }
plcSlaveBssId OBJECT-TYPE
SYNTAX INTEGER(0..99)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of the slave Bss Id"
::= { plcBssId 2 }
plcSpy OBJECT IDENTIFIER
::= { plcObjects 7 }
plcSpyIsDynamic OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "True to set the spy dynamic mode"
::= { plcSpy 1 }
plcStaticSpySynchBandNb OBJECT-TYPE
SYNTAX BandValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The synchronization band number used for static spy mode"
::= { plcSpy 2 }
-- software upload
softwareMgnt OBJECT IDENTIFIER
::= { plc 3 }
-- current version
currentSoftwareVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The name of the current software release."
::= { softwareMgnt 1 }
currentSoftwareBoardVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The name of the current software board release."
::= { softwareMgnt 2 }
currentSoftwareAFEVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The name of the current software Analog Front End release."
::= { softwareMgnt 3 }
-- table of software
softwareTable OBJECT-TYPE
SYNTAX SEQUENCE OF SoftwareEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains the current and reserve
softwares of the node."
::= { softwareMgnt 4 }
softwareEntry OBJECT-TYPE
SYNTAX SoftwareEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This row contains software information."
INDEX { softwareIndex }
::= { softwareTable 1 }
SoftwareEntry ::= SEQUENCE {
softwareIndex SoftwareIndex,
softwareVersion DisplayString
}
softwareIndex OBJECT-TYPE
SYNTAX SoftwareIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The index number of the software."
::= { softwareEntry 1 }
softwareVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The name of the software release."
::= { softwareEntry 2 }
-- upload software action
softwareUpload OBJECT IDENTIFIER
::= { softwareMgnt 5 }
softwareUploadTFTPServerIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The IP address of the TFTP serveur"
::= { softwareUpload 1 }
softwareUploadLogin OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The user login on the TFTP server"
::= { softwareUpload 2 }
softwareUploadPassword OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The user password on the TFTP server.
Warning: This field is displayed using 6 * characters"
::= { softwareUpload 3 }
softwareUploadFileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The software file name to upload"
::= { softwareUpload 4 }
softwareUploadProceed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "True to request the uploading to start"
::= { softwareUpload 5 }
softwareUploadResult OBJECT-TYPE
SYNTAX SoftwareActionResultValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Result value of the requested uploading"
::= { softwareUpload 6 }
softwareUploadTFTPServerPort OBJECT-TYPE -- PR01
SYNTAX Integer32 ( 0..65535 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The service port of the TFTP server"
::= { softwareUpload 7 }
-- software action
softwareAction OBJECT IDENTIFIER
::= { softwareMgnt 6 }
softwareActionIndex OBJECT-TYPE
SYNTAX SoftwareIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The index of the reserve software"
::= { softwareAction 1 }
softwareActionType OBJECT-TYPE
SYNTAX SoftwareActionType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Type of the software action software:
switch, remove "
::= { softwareAction 2 }
softwareActionProceed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "True to request the switch between the current
and the reserver software to start"
::= { softwareAction 3 }
softwareActionResult OBJECT-TYPE
SYNTAX SoftwareActionResultValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Result value of the requested action"
::= { softwareAction 4 }
-- compliance
plcConformance OBJECT IDENTIFIER
::= { plc 4 }
plcCompliances OBJECT IDENTIFIER
::= { plcConformance 1 }
plcGroups OBJECT IDENTIFIER
::= { plcConformance 2 }
plcCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The compliance statement for SPC200 chip."
MODULE
MANDATORY-GROUPS { nodeGroup, topologyGroup }
GROUP statisticGroup
DESCRIPTION "This group is mandatory for
channel performances analysis"
::= { plcCompliances 1 }
nodeGroup OBJECT-GROUP
OBJECTS { plcNodeNotches, plcMode,
plcNodeNotchesCarrier1, plcNodeNotchesCarrier2,
plcNodeNotchesCarrier3, plcNodeNotchesCarrier4,
plcNodeNotchesCarrier5, plcNodeNotchesCarrier6,
plcNodeNotchesCarrier7, plcNodeNotchesCarrier8,
plcNodePilots, plcNodePilot1, plcNodePilot2,
plcNodeAdaptsStringBand, plcNodeAdaptsCarrier1,
plcNodeAdaptsCarrier2, plcNodeAdaptsCarrier3,
plcNodeAdaptsCarrier4, plcNodeAdaptsCarrier5,
plcNodeAdaptsCarrier6, plcNodeAdaptsCarrier7,
plcNodeAdaptsCarrier8,
plcNodeIpAddr, plcNodeNetMask, plcNodeMacAddr,
plcNodeGateway, plcMasterBssId, plcSlaveBssId,
plcSpyIsDynamic, plcStaticSpySynchBandNb }
STATUS current
DESCRIPTION "A collection of objects providing
node configuration information."
::= { plcGroups 1 }
inputNodeGroup OBJECT-GROUP
OBJECTS { plcNodeNotchesInputBand, plcNodeNotchesInputGroup,
plcNodeNotchesInputCarrier1, plcNodeNotchesInputCarrier2,
plcNodeNotchesInputCarrier3, plcNodeNotchesInputCarrier4,
plcNodeNotchesInputCarrier5, plcNodeNotchesInputCarrier6,
plcNodeNotchesInputCarrier7, plcNodeNotchesInputCarrier8,
plcNodeNotchesInputProceed, plcNodeNotchesInputResult,
plcNodePilotsInputBand,
plcInputNodePilot1, plcInputNodePilot2,
plcNodePilotsInputProceed,plcNodePilotsInputResult,
plcNodeAdaptsInputBand, plcNodeAdaptsInputGroup,
plcNodeAdaptsInputCarrier1, plcNodeAdaptsInputCarrier2,
plcNodeAdaptsInputCarrier3, plcNodeAdaptsInputCarrier4,
plcNodeAdaptsInputCarrier5, plcNodeAdaptsInputCarrier6,
plcNodeAdaptsInputCarrier7, plcNodeAdaptsInputCarrier8,
plcNodeAdaptsInputProceed, plcNodeAdaptsInputResult,
plcNodeActionsCommitProceed, plcNodeActionsCommitResult,
plcNodeActionsResetProceed, plcNodeActionsCarrierFlatProceed}
STATUS current
DESCRIPTION "A collection of objects used to request
node configuration information changes."
::= { plcGroups 2 }
topologyGroup OBJECT-GROUP
OBJECTS { plcBasePortAddress, plcBasePortChannelEstimation,
plcBasePortAttenuation ,
plcChannePilot2, plcChannelPilot1,
plcRxChannelPilots,
plcRxLastChannelPilots,
plcTxChannelPilots,
plcRxChannelModulation,
plcRxLastChannelModulation,
plcTxChannelModulation,
plcModGroup1, plcModGroup10, plcModGroup11,
plcModGroup12, plcModGroup13, plcModGroup14,
plcModGroup15, plcModGroup16, plcModGroup2,
plcModGroup3, plcModGroup4, plcModGroup5,
plcModGroup6, plcModGroup7, plcModGroup8,
plcModGroup9,
plcPortChannelGain,
plcPortChannelBandwidth,
plcPortChannelMaxBandwidth,
plcPortChannelSynchronizationBand,
plcPortChannelType, plcTopoChanges }
STATUS current
DESCRIPTION "A collection of objects providing
topology configuration."
::= { plcGroups 3 }
inputTopologyGroup OBJECT-GROUP
OBJECTS { plcModulationInputAddr, plcModulationInputChannel, plcModulationInputBand,
plcInputModulationGroup1, plcInputModulationGroup2,
plcInputModulationGroup3, plcInputModulationGroup4,
plcInputModulationGroup5, plcInputModulationGroup6,
plcInputModulationGroup7, plcInputModulationGroup8,
plcInputModulationGroup9, plcInputModulationGroup10,
plcInputModulationGroup11, plcInputModulationGroup12,
plcInputModulationGroup13, plcInputModulationGroup14,
plcInputModulationGroup15, plcInputModulationGroup16,
plcModulationInputProceed, plcModulationInputResult,
plcPilotsInputAddr, plcPilotsInputChannel, plcPilotsInputBand,
plcInputChannelPilot1, plcInputChannelPilot2,
plcPilotsInputProceed, plcPilotsInputResult }
STATUS current
DESCRIPTION "A collection of objects used to request
topology configuration changes."
::= { plcGroups 4 }
statisticGroup OBJECT-GROUP
OBJECTS { --PR01 BEGIN
-- ipBridgedPackets, ipInBridgedPkts,
-- ipInErrorPackets, ipInErrorPkts, ipInPackets,
-- ipInPkts, ipOutErrorPackets, ipOutErrorPkts,
-- ipOutPackets, ipOutPkts, macInErrorPkts,
-- macInPkts, macOutErrorPkts, macOutPackets,
-- plcpInErrorPkts, plcpInPkts, plcpOutErrorPkts,
-- plcpOutPkts,
--PR01 END
portStats2AvgBandAtt, portStats2AvgBandSNR, --PR01
-- portStats2Ber,
portStats2Noise, portStats2Signal,
-- portStatsBer,
portStatsNoise, portStatsSignal,
portStats3AvgAtt, portStats3AvgSNR ,
bootstatsBoot, bootstatsManualReset, bootstatsFailureReset
} --PR01
STATUS current
DESCRIPTION "A collection of objects providing
statistic data on node and plc link performances."
::= { plcGroups 5 }
softwareGroup OBJECT-GROUP
OBJECTS { currentSoftwareVersion, currentSoftwareBoardVersion,
currentSoftwareAFEVersion, softwareVersion,
softwareUploadTFTPServerIP, softwareUploadLogin,
softwareUploadPassword, softwareUploadFileName,
softwareUploadProceed, softwareUploadResult,
softwareUploadTFTPServerPort, --PR01
softwareActionIndex, softwareActionType,
softwareActionProceed, softwareActionResult }
STATUS current
DESCRIPTION "A collection of objects providing
software management"
::= { plcGroups 6 }
--PR01 BEGIN
analyserGroup OBJECT-GROUP
OBJECTS { plcSNAnalyserAGC, plcSNAnalyserEnable,
plcSNAnalyserMinSignal, plcSNAnalyserMaxSignal,
plcSNAnalyserAvgSignal, plcSNAnalyserLastSignal,
plcSNAnalyserFFTDiv,
plcAGCAnalyserEnable,
plcAGCAnalyserSamplesPart1, plcAGCAnalyserSamplesPart2 }
STATUS current
DESCRIPTION "A collection of objects providing
spectrum analyser data"
::= { plcGroups 7 }
--PR01 END
agentCapabilities AGENT-CAPABILITIES
PRODUCT-RELEASE "Product-Release"
STATUS current
DESCRIPTION "The SPC200 chip SNMP agent capabilities"
SUPPORTS SPC200
INCLUDES { nodeGroup, inputNodeGroup,
topologyGroup, inputTopologyGroup,
statisticGroup, softwareGroup,
analyserGroup } --PR01
--OK SUPPORTS IF-MIB
--OK INCLUDES { ifGeneralInformationGroup, ifHCPacketGroup }
--OK VARIATION ifAdminStatus
--OK ACCESS read-only
--OK DESCRIPTION "Forbid the update of the administrative status"
--OK VARIATION ifLinkUpDownTrapEnable
--OK ACCESS not-implemented
--OK DESCRIPTION "No trap supported"
--KO VARIATION ifAlias
--KO ACCESS not-implemented
--KO DESCRIPTION "The non volatile alias name
--KO cannot be saved on the SPC200 chip"
--KO VARIATION ifMtu
--KO ACCESS not-implemented
--KO DESCRIPTION "Information not available on SPC200 chip"
SUPPORTS MAU-MIB
INCLUDES { mauIfGrpBasic }
VARIATION ifMauIndex
DESCRIPTION "Only one MAU. So the value is always 1"
VARIATION ifMauMediaAvailable
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
VARIATION ifMauMediaAvailableStateExits
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
VARIATION ifMauJabberState
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
VARIATION ifMauJabberingStateEnters
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
SUPPORTS IP-MIB
INCLUDES { ipGroup }
VARIATION ipForwarding
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
VARIATION ipDefaultTTL
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
VARIATION ipInHdrErrors
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
VARIATION ipInAddrErrors
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
VARIATION ipForwDatagrams
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
VARIATION ipInUnknownProtos
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
VARIATION ipInDiscards
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
VARIATION ipInDelivers
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
VARIATION ipOutDiscards
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
VARIATION ipOutNoRoutes
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
VARIATION ipReasmTimeout
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
VARIATION ipReasmReqds
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
VARIATION ipReasmOKs
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
VARIATION ipReasmFails
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
VARIATION ipFragOKs
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
VARIATION ipFragFails
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
VARIATION ipFragCreates
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
VARIATION ipAdEntBcastAddr
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
VARIATION ipAdEntReasmMaxSize
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
VARIATION ipRoutingDiscards
ACCESS not-implemented
DESCRIPTION "Information not available on SPC200 chip"
SUPPORTS SNMPv2-MIB
INCLUDES { systemGroup }
--OK SUPPORTS BRIDGE-MIB
--OK INCLUDES { dot1dBase }
--KO VARIATION dot1dBasePortDelayExceededDiscards
--KO ACCESS not-implemented
--KO DESCRIPTION "Information not available on SPC200 chip"
--KO VARIATION dot1dBasePortMtuExceededDiscards
--KO ACCESS not-implemented
--KO DESCRIPTION "Information not available on SPC200 chip"
::= { plcConformance 3 }
-- ifTableExt data
--ifTableExt OBJECT-TYPE
-- SYNTAX SEQUENCE OF IfEntryExt
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION
-- "A list of interface entries. The number of entries is
-- given by the value of ifNumber. This Table is an Ext of the
-- standard ifTable located in the IF-MIB."
-- ::= { spc200MIB 2 }
--ifEntryExt OBJECT-TYPE
-- SYNTAX IfEntryExt
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION
-- "An entry containing management information applicable to a
-- particular interface. These entries are indexed using the ifIndex
-- of the standard IF-MIB."
-- INDEX { ifIndex }
-- ::= { ifTableExt 1 }
--IfEntryExt ::= SEQUENCE {
-- ifDefaultSpeed Gauge32,
-- ifSpeedAutoNegAdminStatus INTEGER }
--ifDefaultSpeed OBJECT-TYPE
-- SYNTAX Gauge32
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "This field is used to set the speed for a given interface.
-- It contains a default value which will be copied into ifSpeed if
-- the ifSpeedAutoNegAdminStatus is disabled"
-- ::= { ifEntryExt 1 }
--ifSpeedAutoNegAdminStatus OBJECT-TYPE
-- SYNTAX INTEGER {
-- enabled(1),
-- disabled(2) }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "This field is used to enable/disable the speed auto negotiation
-- process for a given interface. If the status is disabled, the user
-- can set the speed by setting ifDefaultSpeed.
-- When the speed auto negotiation status is enabled, the hardware
-- select a speed and set it in ifSpeed. When the speed auto negotiation
-- status is disabled, the content of ifDefaultSpeed is copied into
-- ifSpeed."
-- ::= { ifEntryExt 2 }
--ifGroupExt OBJECT-GROUP
-- OBJECTS {
-- ifDefaultSpeed,
-- ifSpeedAutoNegAdminStatus }
-- STATUS current
-- DESCRIPTION
-- "The fields needed by the SPiDCOM functionalities"
-- ::= { ifTableExt 2 }
-- ipExt data , for DHCP mode
ipExt OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Extended ip needed for SPiDCOM functionalities"
::= { spc200MIB 4 }
ipDynamic OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "True if Ip address is set dynamically"
::= { ipExt 1 }
ipExtGroup OBJECT-GROUP
OBJECTS {
ipDynamic
}
STATUS current
DESCRIPTION "The fields needed by the SPiDCOM functionalities"
::= { ipExt 2 }
END
|