1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
|
--
-- whisp-sm-mib.mib
-- GENERATED FROM ui_db.xml
--
-- *****************************************************************************************
-- Copyright 2005 - 2015 (c), Cambium Networks
-- Cambium Networks Confidential Proprietary
-- *****************************************************************************************
--
-- Canopy SM and Backhaul Timing Slave MIB definitions.
--
-- *****************************************************************************************
WHISP-SM-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Counter32, Counter64, Gauge32, TimeTicks, IpAddress, Unsigned32
FROM SNMPv2-SMI
DisplayString, PhysAddress, MacAddress
FROM SNMPv2-TC
OBJECT-GROUP
FROM SNMPv2-CONF
WhispLUID, WhispMACAddress
FROM WHISP-TCV2-MIB
whispModules, whispBox, whispAps, whispSm
FROM WHISP-GLOBAL-REG-MIB
dhcpRfPublicIp, whispBoxEsn
FROM WHISP-BOX-MIBV2-MIB
;
whispSmMibModule MODULE-IDENTITY
LAST-UPDATED "200304150000Z"
ORGANIZATION "Cambium Networks"
CONTACT-INFO
"Cambium Networks Support
email: support@cambiumnetworks.com"
DESCRIPTION
"This module contains MIB definitions for Subscriber Modem."
::= {whispModules 13}
-- -------------------------------------------------------------------------
-- Top Level Registrations
whispSmConfig OBJECT IDENTIFIER ::= {whispSm 1}
whispSmSecurity OBJECT IDENTIFIER ::= {whispSm 7}
whispSmStatus OBJECT IDENTIFIER ::= {whispSm 2}
whispSmGroups OBJECT IDENTIFIER ::= {whispSm 3}
whispSmEvent OBJECT IDENTIFIER ::= {whispSm 4}
whispSmDfsEvent OBJECT IDENTIFIER ::= {whispSmEvent 1}
whispSmSpAnEvent OBJECT IDENTIFIER ::= {whispSmEvent 2}
whispSmDHCPClientEvent OBJECT IDENTIFIER ::= {whispSmEvent 3}
whispSmControls OBJECT IDENTIFIER ::= {whispSm 8}
-- -------------------------------------------------------------------------
-- Subscriber Modem and Backhaul timing slave configuration
rfScanList OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RF scan list string.
The frequencies vary by product and region.
If the frequency list is too long an SNMP error will be returned. If this occurs please refer to
OID rfScanListTable, which will allow user to enter the full range of available frequencies.
String length is limited to SNMP buffer size, so while all frequencies may be set, not all may be retrieved.
Special settings:
0: none.
all: All frequencies in the band(s) supported by the radio will be selected.
all49, all51, all52: Available only for 450i 5 GHz wideband radio.
all54, all57: Available only for 450 and 450i 5 GHz radios.
When doing a set, separate values with comma with no white space between values."
::={whispSmConfig 1}
powerUpMode OBJECT-TYPE
SYNTAX INTEGER {
operational(0),
aim(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"SM Power Up Mode With No 802.3 Link.
0 - Power up in Operational mode.
1 - Power up in Aim mode."
::={whispSmConfig 2}
lanIpSm OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"LAN IP."
::={whispSmConfig 3}
lanMaskSm OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"LAN subnet mask."
::={whispSmConfig 4}
defaultGwSm OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Default gateway."
::={whispSmConfig 5}
networkAccess OBJECT-TYPE
SYNTAX INTEGER {
localIP(0),
publicIP(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Network accessibility. Public or local IP.
For multipoint only."
::={whispSmConfig 6}
authKeySm OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Authentication key. It should be equal or less than 32
characters long."
::={whispSmConfig 7}
enable8023link OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"To enable or disable 802.3 link. For SMs only. Deprecated: Use enable8023linkBox instead."
::={whispSmConfig 8}
authKeyOption OBJECT-TYPE
SYNTAX INTEGER {
useDefault(0),
useKeySet(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This option is for SMs only. Backhaul timing slave always
uses the set key.
0 - Use default key.
1 - Use set key."
::={whispSmConfig 9}
timingPulseGated OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"0 - Disable (Always propagate the frame timing pulse).
1 - Enable (If SM out of sync then dont propagate the frame timing pulse)."
::={whispSmConfig 10}
-- NAPT configuration
naptPrivateIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"NAPT private IP address. Only the first three bytes can be
changed when NAPT is enabled."
::={whispSmConfig 11}
naptPrivateSubnetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"NAPT private subnet mask. Only the last byte can be
changed when NAPT is enabled. The address will always be:
255.255.255.x."
::={whispSmConfig 12}
naptPublicIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP Address of NAPT Public Interface. The variable is available
only when NAPT is enabled."
::={whispSmConfig 13}
naptPublicSubnetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Subnet mask for NAPT Public Interface. The variable is available
only when NAPT is enabled."
::={whispSmConfig 14}
naptPublicGatewayIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP Address of NAPT Public Interface Gateway. The variable is available
only when NAPT is enabled."
::={whispSmConfig 15}
naptRFPublicIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP Address of RF Public Interface. The variable is available
only when NAPT is enabled."
::={whispSmConfig 16}
naptRFPublicSubnetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Subnet mask of RF Public Interface. The variable is available
only when NAPT is enabled."
::={whispSmConfig 17}
naptRFPublicGateway OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP Address of RF Public Interface Gateway. The variable is
available only when NAPT is enabled."
::={whispSmConfig 18}
naptEnable OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To enable or disable NAPT. For multipoint only.
1=Enable NAPT, 0=Disable NAPT."
::={whispSmConfig 19}
arpCacheTimeout OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ARP cache time out in unit of minutes. For multipoint only.
Range from 1-30."
::={whispSmConfig 20}
tcpGarbageCollectTmout OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Units of minutes for TCP garbage collection. For multipoint only.
Range 4-1440."
::={whispSmConfig 21}
udpGarbageCollectTmout OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Units of minutes for UDP garbage collection. For multipoint only.
Range 1-1440."
::={whispSmConfig 22}
-- DHCP configuration
dhcpClientEnable OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"To enable or disable DHCP client. For multipoint SM's
with NAPT enabled."
::={whispSmConfig 23}
dhcpServerEnable OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To enable or disable DHCP server. For multipoint SM's
with NAPT enabled."
::={whispSmConfig 24}
dhcpServerLeaseTime OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Units of days for DHCP server lease time. For multipoint
SM's with NAPT enabled. Range from 1-30."
::={whispSmConfig 25}
dhcpIPStart OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The last byte will be set for the starting IP that
our DHCP server gives away. The first 3 bytes of the
starting IP are the same as those of NAPT private IP"
::={whispSmConfig 26}
dnsAutomatic OBJECT-TYPE
SYNTAX INTEGER {
manually(0),
automatically(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To have DHCP Server obtain DNS information automatically or manually."
::={whispSmConfig 27}
prefferedDNSIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The preferred DNS IP when we are configured for static DNS
(Not used when configured for automatic DNS)."
::={whispSmConfig 28}
alternateDNSIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The alternate DNS IP when we are configured for static DNS
(Not used when configured for automatic DNS)."
::={whispSmConfig 29}
dmzIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Only the last byte of DMZ Host IP will be set.
The first 3 bytes of DMZ IP are the same as those of
NAPT private IP."
::={whispSmConfig 30}
dmzEnable OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To enable or disable DMZ host functionality."
::={whispSmConfig 31}
dhcpNumIPsToLease OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Number of IP addresses that our DHCP server can give away."
::={whispSmConfig 32}
pppoeFilter OBJECT-TYPE
SYNTAX INTEGER {
filterOff(0),
filterOn(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"To set PPPoE packet filter when NAT is disabled.
Obsolete - Use corresponding OID in whipsBoxConfig MIB."
::={whispSmConfig 33}
smbFilter OBJECT-TYPE
SYNTAX INTEGER {
filterOff(0),
filterOn(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"To set SMB packet filter when NAT is disabled.
Obsolete - Use corresponding OID in whipsBoxConfig MIB."
::={whispSmConfig 34}
snmpFilter OBJECT-TYPE
SYNTAX INTEGER {
filterOff(0),
filterOn(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"To set SNMP packet filter when NAT is disabled.
Obsolete - Use corresponding OID in whipsBoxConfig MIB."
::={whispSmConfig 35}
userP1Filter OBJECT-TYPE
SYNTAX INTEGER {
filterOff(0),
filterOn(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"To set user defined port 1 packet filter when
NAT is disabled.
Obsolete - Use corresponding OID in whipsBoxConfig MIB."
::={whispSmConfig 36}
userP2Filter OBJECT-TYPE
SYNTAX INTEGER {
filterOff(0),
filterOn(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"To set user defined port 2 packet filter when
NAT is disabled.
Obsolete - Use corresponding OID in whipsBoxConfig MIB."
::={whispSmConfig 37}
userP3Filter OBJECT-TYPE
SYNTAX INTEGER {
filterOff(0),
filterOn(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"To set user defined port 3 packet filter when
NAT is disabled.
Obsolete - Use corresponding OID in whipsBoxConfig MIB."
::={whispSmConfig 38}
allOtherIpFilter OBJECT-TYPE
SYNTAX INTEGER {
filterOff(0),
filterOn(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"To set all other IPv4 packet filter when NAT
is disabled.
Obsolete - Use corresponding OID in whipsBoxConfig MIB."
::={whispSmConfig 39}
upLinkBCastFilter OBJECT-TYPE
SYNTAX INTEGER {
filterOff(0),
filterOn(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"This variable is currently obsolete."
::={whispSmConfig 40}
arpFilter OBJECT-TYPE
SYNTAX INTEGER {
filterOff(0),
filterOn(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"To set ARP packet filter when NAT is disabled.
Obsolete - Use corresponding OID in whipsBoxConfig MIB."
::={whispSmConfig 41}
allOthersFilter OBJECT-TYPE
SYNTAX INTEGER {
filterOff(0),
filterOn(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"To set all other packet filter when NAT is disabled.
Obsolete - Use corresponding OID in whipsBoxConfig MIB."
::={whispSmConfig 42}
-- User Defined Port Filtering Configuration
userDefinedPort1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"An integer value of number one user defined port. Range:0-65535
Obsolete - Use corresponding OID in whipsBoxConfig MIB."
::={whispSmConfig 43}
port1TCPFilter OBJECT-TYPE
SYNTAX INTEGER {
filterOff(0),
filterOn(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"To set user defined port 1 TCP traffic filter.
Obsolete - Use corresponding OID in whipsBoxConfig MIB."
::={whispSmConfig 44}
port1UDPFilter OBJECT-TYPE
SYNTAX INTEGER {
filterOff(0),
filterOn(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"To set user defined port 1 UDP traffic filter.
Obsolete - Use corresponding OID in whipsBoxConfig MIB."
::={whispSmConfig 45}
userDefinedPort2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"An integer value of number two user defined port. Range:0-65535
Obsolete - Use corresponding OID in whipsBoxConfig MIB."
::={whispSmConfig 46}
port2TCPFilter OBJECT-TYPE
SYNTAX INTEGER {
filterOff(0),
filterOn(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"To set user defined port 2 TCP traffic filter.
Obsolete - Use corresponding OID in whipsBoxConfig MIB."
::={whispSmConfig 47}
port2UDPFilter OBJECT-TYPE
SYNTAX INTEGER {
filterOff(0),
filterOn(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"To set user defined port 2 UDP traffic filter.
Obsolete - Use corresponding OID in whipsBoxConfig MIB."
::={whispSmConfig 48}
userDefinedPort3 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"An integer value of number three user defined port. Range:0-65535
Obsolete - Use corresponding OID in whipsBoxConfig MIB."
::={whispSmConfig 49}
port3TCPFilter OBJECT-TYPE
SYNTAX INTEGER {
filterOff(0),
filterOn(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"To set user defined port 3 TCP traffic filter.
Obsolete - Use corresponding OID in whipsBoxConfig MIB."
::={whispSmConfig 50}
port3UDPFilter OBJECT-TYPE
SYNTAX INTEGER {
filterOff(0),
filterOn(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"To set user defined port 3 UDP traffic filter.
Obsolete - Use corresponding OID in whipsBoxConfig MIB."
::={whispSmConfig 51}
bootpcFilter OBJECT-TYPE
SYNTAX INTEGER {
filterOff(0),
filterOn(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"To set bootp client sourced packets filter when
NAT is disabled.
Obsolete - Use corresponding OID in whipsBoxConfig MIB."
::={whispSmConfig 52}
bootpsFilter OBJECT-TYPE
SYNTAX INTEGER {
filterOff(0),
filterOn(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"To set bootp server sourced packets filter when
NAT is disabled.
Obsolete - Use corresponding OID in whipsBoxConfig MIB."
::={whispSmConfig 53}
ip4MultFilter OBJECT-TYPE
SYNTAX INTEGER {
filterOff(0),
filterOn(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"To set IPv4 MultiCast packets filter when
NAT is disabled.
Obsolete - Use corresponding OID in whipsBoxConfig MIB."
::={whispSmConfig 54}
ingressVID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Untagged ingress VID."
::={whispSmConfig 55}
-- CIR configuration
lowPriorityUplinkCIR OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Low priority uplink CIR."
::={whispSmConfig 56}
lowPriorityDownlinkCIR OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Low priority downlink CIR."
::={whispSmConfig 57}
hiPriorityChannel OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enable(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To enable or disable high priority channel."
::={whispSmConfig 58}
hiPriorityUplinkCIR OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"High priority uplink CIR."
::={whispSmConfig 59}
hiPriorityDownlinkCIR OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"High priority downlink CIR."
::={whispSmConfig 60}
smRateAdapt OBJECT-TYPE
SYNTAX INTEGER {
onex(0),
onextwox(1),
onextwoxthreex(2)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"Rate adaptation parameter. 0: no rate adaptation. 1: 1x and 2x adaptation. 2: 1x,2x and 3x adaptation."
::={whispSmConfig 61}
upLnkDataRate OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Sustained uplink bandwidth cap."
::={whispSmConfig 62}
upLnkLimit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Burst uplink bandwidth cap."
::={whispSmConfig 63}
dwnLnkDataRate OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Sustained downlink bandwidth cap."
::={whispSmConfig 64}
dwnLnkLimit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Burst downlink bandwidth cap."
::={whispSmConfig 65}
dfsConfig OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"To configure proper regions for Dynamic Frequency Shifting. For 5.2/5.4/5.7 GHz radios."
::={whispSmConfig 66}
ethAccessFilterEnable OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"To enable or disable Ethernet Port access filtering to SM Management Functions.
(0) - Ethernet access to SM Management allowed.
(1) - Ethernet access to SM Management blocked."
::={whispSmConfig 67}
ipAccessFilterEnable OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To enable or disable IP access filtering to Management functions.
(0) - IP access will be allowed from all addresses.
(1) - IP access will be controlled using allowedIPAccess1-3 entries."
::={whispSmConfig 68}
allowedIPAccess1 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Allow access to SM Management from this IP.
0 is default setting to allow from all IPs."
::={whispSmConfig 69}
allowedIPAccess2 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Allow access to SM Management from this IP.
0 is default setting to allow from all IPs."
::={whispSmConfig 70}
allowedIPAccess3 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Allow access to SM Management from this IP.
0 is default setting to allow from all IPs."
::={whispSmConfig 71}
rfDhcpState OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To enable or disable RF Interface DHCP feature."
::={whispSmConfig 72}
-- Broadcast MIR Feature.
bCastMIR OBJECT-TYPE
SYNTAX INTEGER {
disabled(0)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To enable and set Broadcast/ Multicast MIR feature. Use value of 0 to disable.
Units are as per bCastMIRUnits variable. Set the units first and then set this value."
::={whispSmConfig 73}
bhsReReg OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"Allows BHS re-registration every 24 hours. Enable allows re-registration and Disable does not. 24 Hour Encryption Refresh."
::={whispSmConfig 74}
smLEDModeFlag OBJECT-TYPE
SYNTAX INTEGER {
legacy(0),
revised(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To set LED Panel Operation to Revised Mode(1) or to Legacy Mode(0)"
::={whispSmConfig 75}
ethAccessEnable OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To enable or disable Ethernet Port access to SM Management Functions.
(1) - Ethernet access to SM Management allowed.
(0) - Ethernet access to SM Management blocked."
::={whispSmConfig 76}
pppoeEnable OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable PPPoE on the SM. NAT MUST be enabled prior and Translation Bridging MUST be DISABLED on the AP."
::={whispSmConfig 77}
pppoeAuthenticationType OBJECT-TYPE
SYNTAX INTEGER {
none(0),
chap-pap(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the PPPoE Authentication Type to either None or CHAP/pap"
::={whispSmConfig 78}
pppoeAccessConcentrator OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the PPPoE Access Concentrator Name. Less than or equal to 32 characters"
::={whispSmConfig 79}
pppoeServiceName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the PPPoE Service Name. Less than or equal to 32 characters"
::={whispSmConfig 80}
pppoeUserName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the PPPoE Username. Less than or equal to 32 characters"
::={whispSmConfig 81}
pppoePassword OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the PPPoE Password. Less than or equal to 32 characters"
::={whispSmConfig 82}
pppoeTCPMSSClampEnable OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable TCP MSS Clamping. Enabling this will cause the SM to edit the TCP MSS in TCP SYN and SYN-ACK packets.
This will allow for a workaround for MTU issues so that the TCP session will only go up to the clamped MSS. If you are
using PMTUD reliably, this should not be needed."
::={whispSmConfig 83}
pppoeMTUOverrideEnable OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable the overriding of the PPP link's MTU. Normally, the PPP link will set the MTU to the MRU of the
PPPoE Server, but this may be overridden. If the MRU of the PPPoE server is smaller than the desired MTU,
the smaller MTU will be used."
::={whispSmConfig 84}
pppoeMTUOverrideValue OBJECT-TYPE
SYNTAX INTEGER (0..1492)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable the overriding of the PPP link's MTU. Normally, the PPP link will set the MTU to the MRU of the
PPPoE Server, but this may be overridden. If the MRU of the PPPoE server is smaller than the desired MTU,
the smaller MTU will be used. Max MTU of a PPPoE link is 1492."
::={whispSmConfig 85}
pppoeTimerType OBJECT-TYPE
SYNTAX INTEGER {
keepAlive(1),
idleTimeout(2)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the PPPoE Timer type. Can be a Keep Alive timer where the link will be checked periodically and
automatically redialed if the link is down. Also could be an Idle Timeout where the link will
be automatically dropped after an idle period and redialed if user data is present. Keep Alive timers
are in seconds while Idle Timeout timers are in minutes."
::={whispSmConfig 86}
pppoeTimeoutPeriod OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Timeout Period. The use of this depends on the Timer Type. If the Timer Type is KeepAlive, then
the timeout period is in seconds. If the Timer Type is Idle Timeout, then the timeout period is in minutes.
Minimum values are 20 seconds for KeepAlive timer, and 5 minutes for Idle Timeout."
::={whispSmConfig 87}
timedSpectrumAnalysisDuration OBJECT-TYPE
SYNTAX INTEGER (10..1000)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"As of release 13.0.2 this value is depricated. Please use the OID in whispBoxConfig.
Value in seconds for a timed spectrum analysis. Range is 10-1000 seconds."
::={whispSmConfig 88}
spectrumAnalysisOnBoot OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To enable or disable Spectrum Analysis on boot up for one scan through the band.
(0) - Disabled
(1) - Enabled"
::={whispSmConfig 89}
spectrumAnalysisAction OBJECT-TYPE
SYNTAX INTEGER {
stopSpectrumAnalysis(0),
startTimedSpectrumAnalysis(1),
startContinuousSpectrumAnalysis(2),
idleNoSpectrumAnalysis(3),
idleCompleteSpectrumAnalysis(4),
inProgressTimedSpectrumAnalysis(5),
inProgressContinuousSpectrumAnalysis(6)}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"As of release 13.0.2, this OID has been deprecated. Please use the OID in whispBoxConfig.
Start or stop timed or continuous Spectrum Analysis and also give status.
(0) - Stop Spectrum Analysis
(1) - Start Timed Spectrum Analysis
(2) - Start Continuous Spectrum Analysis
(3) - Idle, no Spectrum Analysis results.
(4) - Idle, Spectrum Analysis results available.
(5) - Timed or Remote Spectrum Analysis in progress.
(6) - Continuous Spectrum Analysis in progress.
Note: Continuous mode has a max of 24 hours."
::={whispSmConfig 90}
pppoeConnectOD OBJECT-TYPE
SYNTAX INTEGER {
connectOnDemand(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Force a manual PPPoE connection attempt."
::={whispSmConfig 91}
pppoeDisconnectOD OBJECT-TYPE
SYNTAX INTEGER {
disconnectOnDemand(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Force a manual PPPoE disconnection."
::={whispSmConfig 92}
smAntennaType OBJECT-TYPE
SYNTAX INTEGER {
integrated(0),
external(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"Deprecated. See whispBoxStatus.antType for antenna type information."
::={whispSmConfig 93}
-- SM NAT Connection Type
natConnectionType OBJECT-TYPE
SYNTAX INTEGER {
staticIP(0),
dhcp(1),
pppoe(2)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To configure the SM NAT connection type. Options are Static IP, DHCP, or PPPoE."
::={whispSmConfig 94}
-- SM WAN (NAT and/or PPPoE) Ping Reply Enable
wanPingReplyEnable OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Allow Ping replies from SM WAN interface. Applies to both NAT and PPPoE WAN interfaces."
::={whispSmConfig 95}
packetFilterDirection OBJECT-TYPE
SYNTAX INTEGER {
upstream(1),
downstream(2)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"To packet filter direction when NAT is disabled. Upstream is default.
Obsolete - Use corresponding OID in whipsBoxConfig MIB."
::={whispSmConfig 96}
colorCode2 OBJECT-TYPE
SYNTAX INTEGER (0..254)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Second Color code. The variable is deprecated. See additionalColorCode in whispSmConfig."
::={whispSmConfig 97}
colorCodepriority2 OBJECT-TYPE
SYNTAX INTEGER {
primary(1),
secondary(2),
tertiary(3),
disable(0)}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Priority setting for the second color code. The variable is deprecated.
See additionalColorCodePriority in whispSmConfig."
::={whispSmConfig 98}
colorCode3 OBJECT-TYPE
SYNTAX INTEGER (0..254)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Third Color code. The variable is deprecated. See additionalColorCode in whispSmConfig."
::={whispSmConfig 99}
colorCodepriority3 OBJECT-TYPE
SYNTAX INTEGER {
primary(1),
secondary(2),
tertiary(3),
disable(0)}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Priority setting for the third color code. The variable is deprecated.
See additionalColorCodePriority in whispSmConfig."
::={whispSmConfig 100}
colorCode4 OBJECT-TYPE
SYNTAX INTEGER (0..254)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Fourth Color code. The variable is deprecated. See additionalColorCode in whispSmConfig."
::={whispSmConfig 101}
colorCodepriority4 OBJECT-TYPE
SYNTAX INTEGER {
primary(1),
secondary(2),
tertiary(3),
disable(0)}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Priority setting for the fourth color code. The variable is deprecated.
See additionalColorCodePriority in whispSmConfig."
::={whispSmConfig 102}
colorCode5 OBJECT-TYPE
SYNTAX INTEGER (0..254)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Fifth Color code. The variable is deprecated. See additionalColorCode in whispSmConfig."
::={whispSmConfig 103}
colorCodepriority5 OBJECT-TYPE
SYNTAX INTEGER {
primary(1),
secondary(2),
tertiary(3),
disable(0)}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Priority setting for the fifth color code. The variable is deprecated.
See additionalColorCodePriority in whispSmConfig."
::={whispSmConfig 104}
colorCode6 OBJECT-TYPE
SYNTAX INTEGER (0..254)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Sixth Color code. The variable is deprecated. See additionalColorCode in whispSmConfig."
::={whispSmConfig 105}
colorCodepriority6 OBJECT-TYPE
SYNTAX INTEGER {
primary(1),
secondary(2),
tertiary(3),
disable(0)}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Priority setting for the sixth color code. The variable is deprecated.
See additionalColorCodePriority in whispSmConfig."
::={whispSmConfig 106}
colorCode7 OBJECT-TYPE
SYNTAX INTEGER (0..254)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Seventh Color code. The variable is deprecated. See additionalColorCode in whispSmConfig."
::={whispSmConfig 107}
colorCodepriority7 OBJECT-TYPE
SYNTAX INTEGER {
primary(1),
secondary(2),
tertiary(3),
disable(0)}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Priority setting for the seventh color code. The variable is deprecated.
See additionalColorCodePriority in whispSmConfig."
::={whispSmConfig 108}
colorCode8 OBJECT-TYPE
SYNTAX INTEGER (0..254)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Eighth Color code. The variable is deprecated. See additionalColorCode in whispSmConfig."
::={whispSmConfig 109}
colorCodepriority8 OBJECT-TYPE
SYNTAX INTEGER {
primary(1),
secondary(2),
tertiary(3),
disable(0)}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Priority setting for the eighth color code. The variable is deprecated.
See additionalColorCodePriority in whispSmConfig."
::={whispSmConfig 110}
colorCode9 OBJECT-TYPE
SYNTAX INTEGER (0..254)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Ninth Color code. The variable is deprecated. See additionalColorCode in whispSmConfig."
::={whispSmConfig 111}
colorCodepriority9 OBJECT-TYPE
SYNTAX INTEGER {
primary(1),
secondary(2),
tertiary(3),
disable(0)}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Priority setting for the ninth color code. The variable is deprecated.
See additionalColorCodePriority in whispSmConfig."
::={whispSmConfig 112}
colorCode10 OBJECT-TYPE
SYNTAX INTEGER (0..254)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Tenth Color code. The variable is deprecated. See additionalColorCode in whispSmConfig."
::={whispSmConfig 113}
colorCodepriority10 OBJECT-TYPE
SYNTAX INTEGER {
primary(1),
secondary(2),
tertiary(3),
disable(0)}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Priority setting for the tenth color code. The variable is deprecated.
See additionalColorCodePriority in whispSmConfig."
::={whispSmConfig 114}
natDNSProxyEnable OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If enabled, the SM will advertise itself as the DNS server when it sends out DHCP client leases and forward DNS queries automatically.
If disabled, the SM will forward on upstream DNS server information when it sends out DHCP client leases."
::={whispSmConfig 115}
allIpv4Filter OBJECT-TYPE
SYNTAX INTEGER {
filterOff(0),
filterOn(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"To set all IPv4 packet filter when NAT
is disabled. Enabling this will automatically enable all of the known IP filters (SMB, SNMP, Bootp,
IPv4 Mcast, User Defined Ports, and All Other IPv4).
Obsolete - Use corresponding OID in whipsBoxConfig MIB."
::={whispSmConfig 116}
spectrumAnalysisDisplay OBJECT-TYPE
SYNTAX INTEGER {
averaging(0),
instantaneous(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The display for Spectrum Analyzer:
(0) - Averaging over entire period
(1) - Instantaneous showing the last reading"
::={whispSmConfig 117}
syslogSMXmitSetting OBJECT-TYPE
SYNTAX INTEGER {
obtain-from-AP(0),
enable(1),
disable(2)}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Obtains Syslog transmit configuration from AP/BHM if set to 0, overrides if 1 or 2. Transmits syslog data to Syslog server if enabled(1), stops if disabled (2)."
::={whispSmConfig 118}
syslogServerApPreferred OBJECT-TYPE
SYNTAX INTEGER {
use-local(0),
use-AP-preferred(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Uses Syslog server configuration from AP/BHM if enabled and available,
otherwise uses local configuration."
::={whispSmConfig 119}
syslogMinLevelApPreferred OBJECT-TYPE
SYNTAX INTEGER {
use-local(0),
use-AP-preferred(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Uses Syslog minimum transmit level configuration from AP/BHM if available,
otherwise uses local configuration."
::={whispSmConfig 120}
syslogSMXmitControl OBJECT-TYPE
SYNTAX INTEGER {
obtain-from-AP-default-disabled(0),
obtain-from-AP-default-enabled(1),
disable(2),
enable(3)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Obtains Syslog transmit configuration from AP/BHM if available, or specifies the local transmit state."
::={whispSmConfig 121}
eapPeerAAAServerCommonName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"THIS OID IS CURRENTLY UNUSED: EAP Peer Server Common Name"
::={whispSmConfig 126}
rfScanListBandFilter OBJECT-TYPE
SYNTAX INTEGER {
band5400(8),
band5700(9)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"This element is obsolete."
::={whispSmConfig 127}
upLnkMaxBurstDataRate OBJECT-TYPE
SYNTAX INTEGER
UNITS "Kilobits/sec"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum burst uplink rate."
::={whispSmConfig 128}
dwnLnkMaxBurstDataRate OBJECT-TYPE
SYNTAX INTEGER
UNITS "Kilobits/sec"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum burst downlink rate."
::={whispSmConfig 129}
cyclicPrefixScan OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Cyclic Prefix value for frequency scanning used by MIMO SMs only.
When setting use a comma delimited list of cyclic prefixes with no spaces. For example: 1/8,1/16"
::={whispSmConfig 130}
bandwidthScan OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Bandwidth values for frequency scanning used by MIMO SMs only.
When setting use a comma delimited list of bandwidths.
For example: 10, 20"
::={whispSmConfig 131}
apSelection OBJECT-TYPE
SYNTAX INTEGER {
powerLevel(1),
optimizeForThroughput(0)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This OID affects what AP to attempt to register to when Canopy SMs scan see more than one AP that are valid in it's configuration.
(0) - Default, Canopy radios after scanning select the best AP that will optimize for estimated throughput.
(1) - Select the AP with the best receive power level.
Note this is only if multiple APs fit the current scan configuration, and will be overriden by color codes, RADIUS, etc."
::={whispSmConfig 132}
radioBandscanConfig OBJECT-TYPE
SYNTAX INTEGER {
instant(0),
delayed(1),
apply(2)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Used to determine when frequency, cyclic prefix and bandwidth settings take effect for
band scanning MIMO SMs.
0 - Instant
1 - Delayed
2 - Apply changes"
::={whispSmConfig 133}
forcepoweradjust OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This will force a multipoint SM to initiate an asynchronous power adjust sequence.
This is done automatically every 2 minutes."
::={whispSmConfig 134}
clearBerrResults OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This will clear the BER results."
::={whispSmConfig 135}
berrautoupdateflag OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This indicates if the once a second BERR updating of counters is enabled. 1 = enabled 0 = disabled"
::={whispSmConfig 136}
testSMBER OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"0 - Disable (Return the SM to a normal operation state).
1 - Enable (Set SM into a BER test state)."
::={whispSmConfig 137}
allowedIPAccessNMLength1 OBJECT-TYPE
SYNTAX INTEGER (1..32)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Length of the network mask to apply to the AllowedIPAddress when assessing if access is allowed"
::={whispSmConfig 138}
allowedIPAccessNMLength2 OBJECT-TYPE
SYNTAX INTEGER (1..32)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Length of the network mask to apply to the AllowedIPAddress when assessing if access is allowed"
::={whispSmConfig 139}
allowedIPAccessNMLength3 OBJECT-TYPE
SYNTAX INTEGER (1..32)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Length of the network mask to apply to the AllowedIPAddress when assessing if access is allowed"
::={whispSmConfig 140}
naptRemoteManage OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable-standalone(1),
enable-wan(2)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To enable or disable Remote Management. For multipoint only.
0=Disable Remote Management,
1=Enable - Standalone Config,
2=Enable - Use WAN Interface."
::={whispSmConfig 141}
spectrumAnalysisScanBandwidth OBJECT-TYPE
SYNTAX INTEGER {
bandwidth5MHz(0),
bandwidth10MHz(1),
bandwidth20MHz(2),
bandwidth7MHz(3),
bandwidth15MHz(4),
bandwidth30MHz(5)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Scanning Bandwidth used for the Spectrum Analyzer. Only available on PMP 450."
::={whispSmConfig 142}
berDeModSelect OBJECT-TYPE
SYNTAX INTEGER {
qpsk(0),
qam-16(1),
qam-64(2),
qam-256(3)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The BER demodulation level the SM is set. 0 for QPSK, 1 for 16-QAM, 2 for 64-QAM, and 3 for 256-QAM."
::={whispSmConfig 143}
multicastVCRcvRate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Multicast VC Receive Rate"
::={whispSmConfig 144}
pmp430ApRegistrationOptions OBJECT-TYPE
SYNTAX INTEGER {
pmp430(1),
pmp450(2),
both(3)}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Deprecated. The 430 SM only supports PMP 450
interoperability mode."
::={whispSmConfig 145}
switchRadioModeAndReboot OBJECT-TYPE
SYNTAX INTEGER {
finishedReboot(0),
switchRadioModeAndReboot(1)}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"As of 14.2, the 430 SM no longer supports multiple
radio modes. It only support 450 interoperability
mode."
::={whispSmConfig 146}
natTslTableSize OBJECT-TYPE
SYNTAX INTEGER (1024..8192)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"NAT Translation Table Size.
Range 1024-8192."
::={whispSmConfig 147}
ingressVIDPriority OBJECT-TYPE
SYNTAX INTEGER (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ingress VID VLAN Priority."
::={whispSmConfig 148}
ingressVIDPriorityMode OBJECT-TYPE
SYNTAX INTEGER {
promote-IP-priority(0),
define-priority(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ingress VID VLAN Priority Mode."
::={whispSmConfig 149}
providerVIDPriority OBJECT-TYPE
SYNTAX INTEGER (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Provider VID VLAN Priority."
::={whispSmConfig 150}
providerVIDPriorityMode OBJECT-TYPE
SYNTAX INTEGER {
promote-IP-priority(0),
define-priority(1),
copy-inner-tag-priority(2)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Provider VID VLAN Priority Mode."
::={whispSmConfig 151}
additionalColorCode OBJECT-TYPE
SYNTAX INTEGER (0..254)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Add an additional color code. Setting additionalColorCode and
additionalColorCodePriority adds an entry."
::={whispSmConfig 152}
additionalColorCodePriority OBJECT-TYPE
SYNTAX INTEGER {
primary(1),
secondary(2),
tertiary(3)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Add an additional color code priority. Setting additionalColorCode and
additionalColorCodePriority adds an entry."
::={whispSmConfig 153}
deleteAdditionalColorCode OBJECT-TYPE
SYNTAX INTEGER (0..254)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Delete an additional color code."
::={whispSmConfig 154}
bCastMIRUnits OBJECT-TYPE
SYNTAX INTEGER {
kbps(0),
pps(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Units of Broadcast/ Multicast MIR value. Set units first and then bCastMIR"
::={whispSmConfig 155}
txPowerControl OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/Disable Automatic control of SM TX power.
Engineering use only."
::={whispSmConfig 157}
bridgeTableSize OBJECT-TYPE
SYNTAX INTEGER (4..4096)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Bridge Table Size : 4 -- 4096."
::={whispSmConfig 158}
bridgeTableRestrict OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Restrict forwarding packets from hosts for which MAC address is not in the bridge table."
::={whispSmConfig 159}
maxTxPowerEnable OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable Max Tx Power configuration.
This is used with OID maxTxPower to set the max transmit power.
This might be required in certain regions and frequency bands.
See User Guide for more information.
Enabling this will not allow a radio to transmit above its EIRP limit.
The AP's Transmit Power Control may still adjust the Tx power down.
SM only."
::={whispSmConfig 160}
maxTxPower OBJECT-TYPE
SYNTAX INTEGER (-30..27)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This OID is controled by OID maxTxPowerEnable.
This might be required in certain regions and frequency bands.
See user guide for more information.
Setting this will not allow a radio to transmit above its EIRP limit.
The AP's Transmit Power Control may still adjust the Tx power down.
SM only."
::={whispSmConfig 161}
rfScanListTable OBJECT-TYPE
SYNTAX SEQUENCE OF RfScanListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The list of configured scanning frequencies on the SM or BHS."
::= {whispSmConfig 156}
rfScanListEntry OBJECT-TYPE
SYNTAX RfScanListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry of configured scanning frequencies on the SM or BHS."
INDEX {rfScanListFrequency}
::= {rfScanListTable 1}
RfScanListEntry ::= SEQUENCE{
rfScanListFrequency INTEGER
}
rfScanListFrequency OBJECT-TYPE
SYNTAX INTEGER (0..9000000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RF scan list.
The frequencies vary by product and region."
::={rfScanListEntry 1}
numAuthCerts OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"can have a max value of 2"
::={whispSmSecurity 2}
authenticationEnforce OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
aaa(1),
presharedkey(2)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"enforce SM to register with specifed Auth Enabled AP"
::={whispSmSecurity 3}
-- PEAP is not supported for MPC860 platorm
phase1 OBJECT-TYPE
SYNTAX INTEGER {
eapttls(0),
eapMSChapV2(1),
eappeap(2)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Select the outer method for EAP Authentication.
Note: PEAP is not supported for MPC860 platform."
::={whispSmSecurity 4}
phase2 OBJECT-TYPE
SYNTAX INTEGER {
pap(0),
chap(1),
mschapv2(2)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Select the outer method for EAP Authentication"
::={whispSmSecurity 5}
authOuterId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..253))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"EAP Peer Username"
::={whispSmSecurity 6}
authPassword OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"EAP Peer password"
::={whispSmSecurity 7}
authUsername OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"EAP Peer Identity"
::={whispSmSecurity 8}
useRealm OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable the use of realm option."
::={whispSmSecurity 9}
realm OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"EAP Peer Realm"
::={whispSmSecurity 10}
certTable OBJECT-TYPE
SYNTAX SEQUENCE OF CertEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of CA Certificates on SM."
::= {whispSmSecurity 1}
certEntry OBJECT-TYPE
SYNTAX CertEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry of Certifcates."
INDEX {certIndex}
::= {certTable 1}
CertEntry ::= SEQUENCE{
certIndex INTEGER,
cert INTEGER,
action INTEGER,
certificateDN DisplayString
}
certIndex OBJECT-TYPE
SYNTAX INTEGER (1..2)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"User information table index."
::={certEntry 1}
cert OBJECT-TYPE
SYNTAX INTEGER {
inactive(0),
active(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"0: Inactive 1: Active"
::={certEntry 2}
action OBJECT-TYPE
SYNTAX INTEGER {
noop(0),
delete(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"0: No Operation 1: Delete Certificate"
::={certEntry 3}
certificateDN OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Distinguished Name of Certificate 2"
::={certEntry 4}
-- Subscriber Modem status page
sessionStatus OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SM registered or not."
::={whispSmStatus 1}
rssi OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radio signal strength index. FSK only."
::={whispSmStatus 2}
jitter OBJECT-TYPE
SYNTAX Gauge32 (0..15)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A measure of multipath interference. Applicable to FSK radios only."
::={whispSmStatus 3}
airDelay OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Round trip delay in bits."
::={whispSmStatus 4}
radioSlicingSm OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"This variable is deprecated."
::={whispSmStatus 5}
radioTxGainSm OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radio transmission gain setting. Applicable to FSK radios only."
::={whispSmStatus 6}
calibrationStatus OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Varible deprecated. Please use calibrationStatusBox."
::={whispSmStatus 7}
radioDbm OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Rx Power level.
For MIMO this is the combined power of the horizontal and vertical paths."
::={whispSmStatus 8}
registeredToAp OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AP MAC address that the SM registered to."
::={whispSmStatus 9}
-- DHCP client status:
dhcpCip OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Assigned IP address to DHCP client."
::={whispSmStatus 10}
dhcpSip OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Public DHCP server IP."
::={whispSmStatus 11}
dhcpClientLease OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DHCP client lease time."
::={whispSmStatus 12}
dhcpCSMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Public DHCP server subnet mask."
::={whispSmStatus 13}
dhcpDfltRterIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Public default router IP address."
::={whispSmStatus 14}
dhcpcdns1 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Primary public domain name server."
::={whispSmStatus 15}
dhcpcdns2 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Secondary public domain name server."
::={whispSmStatus 16}
dhcpcdns3 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Third public domain name server."
::={whispSmStatus 17}
dhcpDomName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Public domain name server."
::={whispSmStatus 18}
adaptRate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"VC adapt rate."
::={whispSmStatus 20}
radioDbmInt OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radio power level(integer).
For MIMO radios this is the combined power of the horiztontal and vertical paths."
::={whispSmStatus 21}
dfsStatus OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Dynamic frequency shifting status. For DFS Radio only."
::={whispSmStatus 22}
radioTxPwr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Tx Power level. Valid for FSK and OFDM SMs."
::={whispSmStatus 23}
activeRegion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The active region of the radio."
::={whispSmStatus 24}
snmpBerLevel OBJECT-TYPE
SYNTAX INTEGER {
twoLevelOrMimoQPSK(2),
fourLevelOrMimo16QAM(4),
mimo64QAM(6),
mimo256QAM(8)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"BER level.
For PMP 450 systems: 2=MIMO QPSK, 4=MIMO 16-QAM, 6=MIMO64-QAM, 8=256-QAM
For non PMP 450: 2=2 level BER, 4=4 level BER."
::={whispSmStatus 25}
nbBitsRcvd OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of BER bits received (non MIMO platforms only)."
::={whispSmStatus 26}
nbPriBitsErr OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Primary bit errors (non MIMO platforms only)."
::={whispSmStatus 27}
nbSndBitsErr OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of secondary bit errors (non MIMO platforms only)."
::={whispSmStatus 28}
primaryBER OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"Obsoleted, invalid type to represent this data. Measured Primary Bit Error Rate."
::={whispSmStatus 29}
secondaryBER OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"Obsoleted, invalid type to represent this data. Measured Secondary Bit Error Rate."
::={whispSmStatus 30}
totalBER OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"Obsoleted, invalid type to represent this data. Measured Total Bit Error Rate."
::={whispSmStatus 31}
minRSSI OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Measured Min. RSSI. Applicable to FSK radios only."
::={whispSmStatus 32}
maxRSSI OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Measured Max. RSSI. Applicable to FSK radios only."
::={whispSmStatus 33}
minJitter OBJECT-TYPE
SYNTAX Gauge32 (0..15)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Measured Min. Jitter. Applicable to FSK radios only."
::={whispSmStatus 34}
maxJitter OBJECT-TYPE
SYNTAX Gauge32 (0..15)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Measured Max. Jitter. Applicable to FSK radios only."
::={whispSmStatus 35}
smSessionTimer OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SM current session timer."
::={whispSmStatus 36}
pppoeSessionStatus OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current PPPoE Session Status"
::={whispSmStatus 37}
pppoeSessionID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current PPPoE Session ID"
::={whispSmStatus 38}
pppoeIPCPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current PPPoE IPCP IP Address"
::={whispSmStatus 39}
pppoeMTUOverrideEn OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current PPPoE MTU Override Setting"
::={whispSmStatus 40}
pppoeMTUValue OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current PPPoE MTU Value"
::={whispSmStatus 41}
pppoeTimerTypeValue OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
keepAlive(1),
idleTimeout(2)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current PPPoE Timer Type. 0 is disabled, 1 is Keep Alive timer, and 2 is Idle Timeout timer."
::={whispSmStatus 42}
pppoeTimeoutValue OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current PPPoE Timeout Period. The use of this depends on the Timer Type. If the Timer Type is KeepAlive, then
the timeout period is in seconds. If the Timer Type is Idle Timeout, then the timeout period is in minutes."
::={whispSmStatus 43}
pppoeDNSServer1 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PPPoE DNS Server 1"
::={whispSmStatus 44}
pppoeDNSServer2 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PPPoE DNS Server 2"
::={whispSmStatus 45}
pppoeControlBytesSent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PPPoE Control Bytes Sent"
::={whispSmStatus 46}
pppoeControlBytesReceived OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PPPoE Control Bytes Received"
::={whispSmStatus 47}
pppoeDataBytesSent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PPPoE Data Bytes Sent"
::={whispSmStatus 48}
pppoeDataBytesReceived OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PPPoE Data Bytes Received"
::={whispSmStatus 49}
pppoeEnabledStatus OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PPPoE Enabled"
::={whispSmStatus 50}
pppoeTCPMSSClampEnableStatus OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PPPoE TCP MSS Clamping Enable"
::={whispSmStatus 51}
pppoeACNameStatus OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current PPPoE Access Concentrator In Use"
::={whispSmStatus 52}
pppoeSvcNameStatus OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current PPPoE Service Name In Use"
::={whispSmStatus 53}
pppoeSessUptime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Uptime of current PPPoE Session in ticks"
::={whispSmStatus 54}
primaryBERDisplay OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Measured Primary Bit Error Rate.
Non MIMO platforms only."
::={whispSmStatus 55}
secondaryBERDisplay OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Measured Secondary Bit Error Rate.
FSK platforms only."
::={whispSmStatus 56}
totalBERDisplay OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Measured Total Bit Error Rate.
For MIMO this is combined both paths."
::={whispSmStatus 57}
minRadioDbm OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum receive power of beacon in dBm.
For MIMO radios, this is only available in the vertical path."
::={whispSmStatus 58}
maxRadioDbm OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum receive power in dBm (rounded to nearest integer)."
::={whispSmStatus 59}
pppoeSessIdleTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Idle Time of current PPPoE Session in ticks"
::={whispSmStatus 60}
radioDbmAvg OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average Receive Power of the AP's beacon in dBm.
OFDM Radios only.
For MIMO this is only the verical path, as the beacon is not transmitted on horizontal."
::={whispSmStatus 61}
zoltarFPGAFreqOffset OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"FPGA peek of 70001088"
::={whispSmStatus 62}
zoltarSWFreqOffset OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"FPGA peek of 7000108C"
::={whispSmStatus 63}
airDelayns OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Round trip delay in nanoseconds."
::={whispSmStatus 64}
currentColorCode OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current Color Code of the Registered AP/BHM. A value of -1 is return when the device is not registered."
::={whispSmStatus 65}
currentColorCodePri OBJECT-TYPE
SYNTAX INTEGER {
none(0),
primary(1),
secondary(2),
tertiary(3)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current priority of the Registered color code"
::={whispSmStatus 66}
currentChanFreq OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Current Channel Frequency of the AP/BHM when in session."
::={whispSmStatus 67}
linkQualityBeacon OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Engineering only.
Link Quality for incoming beacons.
For Gen II OFDM radios and forward.
For PMP 450 and forward this is vertical path."
::={whispSmStatus 68}
dhcpServerPktXmt OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets transmitted by SM DHCP Server"
::={whispSmStatus 72}
dhcpServerPktRcv OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets received by SM DHCP Server"
::={whispSmStatus 73}
dhcpServerPktToss OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets tossed by SM DHCP Server"
::={whispSmStatus 74}
receiveFragmentsModulationPercentage OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Engineering use only.
The percentage of recent fragments received at which modulation.
For Gen II OFDM only and forward."
::={whispSmStatus 86}
fragmentsReceived1XVertical OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Engineering use only.
Number of fragments received in 1x modulation.
For GenII OFDM only and forward.
For MIMO this is the vertical path."
::={whispSmStatus 87}
fragmentsReceived2XVertical OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Engineering use only.
Number of fragments received in 2x modulation.
For GenII OFDM only and forward.
For MIMO this is the vertical path."
::={whispSmStatus 88}
fragmentsReceived3XVertical OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Engineering use only.
Number of fragments received in 3x modulation.
For GenII OFDM only and forward.
For MIMO this is the vertical path."
::={whispSmStatus 89}
fragmentsReceived4XVertical OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Engineering use only.
Number of fragments received in 4x modulation.
For GenII OFDM only and forward.
For MIMO this is the vertical path."
::={whispSmStatus 90}
linkQualityData1XVertical OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Engineering use only.
Link Quality for the data VC for QPSK modulation (1X).
For Gen II OFDM radios and forward only.
For MIMO this is the vertical path."
::={whispSmStatus 91}
linkQualityData2XVertical OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Engineering use only.
Link Quality for the data VC for 16-QAM modulation (2X).
For Gen II OFDM radios and forward only.
For MIMO this is the vertical path."
::={whispSmStatus 92}
linkQualityData3XVertical OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Engineering use only.
Link Quality for the data VC for 64-QAM modulation (3X).
For Gen II OFDM radios and forward only.
For MIMO this is the vertical path."
::={whispSmStatus 93}
linkQualityData4XVertical OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Engineering use only.
Link Quality for the data VC for 256-QAM modulation (4X).
For Gen II OFDM radios and forward only.
For MIMO this is the vertical path."
::={whispSmStatus 94}
signalToNoiseRatioSMVertical OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An estimated signal to noise ratio based on the last received data.
For GenII OFDM only and forward.
For MIMO this is the vertical antenna.
Will return zero if Signal to Noise Ratio Calculation is disabled."
::={whispSmStatus 95}
rfStatTxSuppressionCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"RF Scheduler Stats DFS TX Suppression Count"
::={whispSmStatus 96}
bridgecbUplinkCreditRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Sustained uplink data rate."
::={whispSmStatus 97}
bridgecbUplinkCreditLimit OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Uplink Burst Allocation."
::={whispSmStatus 98}
bridgecbDownlinkCreditRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Sustained uplink data rate."
::={whispSmStatus 99}
bridgecbDownlinkCreditLimit OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Uplink Burst Allocation."
::={whispSmStatus 100}
mimoQpskBerDisplay OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"QPSK BER statistics.
MIMO platforms only."
::={whispSmStatus 101}
mimo16QamBerDisplay OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"16-QAM BER statistics
MIMO platforms only.
Engineering use only."
::={whispSmStatus 102}
mimo64QamBerDisplay OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"64-QAM BER statistics
MIMO platforms only.
Engineering use only."
::={whispSmStatus 103}
mimo256QamBerDisplay OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"256-QAM BER statistics
MIMO platforms only.
Engineering use only."
::={whispSmStatus 104}
mimoBerRcvModulationType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Receive modulation type.
MIMO platforms only."
::={whispSmStatus 105}
signalToNoiseRatioSMHorizontal OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An estimated signal to noise ratio based on the last received data for horizontal antenna.
MIMO radios only.
Will return zero if Signal to Noise Ratio Calculation is disabled.
When operating in MIMO-A will return 0."
::={whispSmStatus 106}
maxRadioDbmDeprecated OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"This OID was inadvertently moved in 12.0.2. Please use maxRadioDbm. This OID is deprecated
and kept for backwards compatibility."
::={whispSmStatus 107}
signalStrengthRatio OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Signal Strength Ratio in dB is the power received by the vertical antenna input (dB) -
power received by the horizontal antenna input (dB).
MIMO radios only."
::={whispSmStatus 108}
fragmentsReceived1XHorizontal OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Engineering use only.
Number of fragments received in 1x modulation.
For MIMO radios only.
For MIMO this is the horizontal path.
Fragments received in MIMO-A will only be counted on vertical."
::={whispSmStatus 109}
fragmentsReceived2XHorizontal OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Engineering use only.
Number of fragments received in 2x modulation.
For MIMO radios only.
For MIMO this is the horizontal path.
Fragments received in MIMO-A will only be counted on vertical."
::={whispSmStatus 110}
fragmentsReceived3XHorizontal OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Engineering use only.
Number of fragments received in 3x modulation.
For MIMO radios only.
For MIMO this is the horizontal path.
Fragments received in MIMO-A will only be counted on vertical."
::={whispSmStatus 111}
fragmentsReceived4XHorizontal OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Engineering use only.
Number of fragments received in 4x modulation.
For MIMO radios only.
For MIMO this is the horizontal path.
Fragments received in MIMO-A will only be counted on vertical."
::={whispSmStatus 112}
linkQualityData1XHorizontal OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Engineering use only.
Link Quality for the data VC for QPSK modulation (1X).
For MIMO radios only.
For MIMO this is the horizontal path.
Fragments received in MIMO-A will only be counted on vertical."
::={whispSmStatus 113}
linkQualityData2XHorizontal OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Engineering use only.
Link Quality for the data VC for 16-QAM modulation (2X).
For MIMO radios only.
For MIMO this is the horizontal path.
Fragments received in MIMO-A will only be counted on vertical."
::={whispSmStatus 114}
linkQualityData3XHorizontal OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Engineering use only.
Link Quality for the data VC for 64-QAM modulation (3X).
For MIMO radios only.
For MIMO this is the horizontal path.
Fragments received in MIMO-A will only be counted on vertical."
::={whispSmStatus 115}
linkQualityData4XHorizontal OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Engineering use only.
Link Quality for the data VC for 256-QAM modulation (4X).
For MIMO radios only.
For MIMO this is the horizontal path.
Fragments received in MIMO-A will only be counted on vertical."
::={whispSmStatus 116}
radioDbmHorizontal OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Receive power level of the horizontal antenna in dBm.
MIMO radios only."
::={whispSmStatus 117}
radioDbmVertical OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Receive power level of the vertical antenna in dBm.
MIMO radios only."
::={whispSmStatus 118}
bridgecbDownlinkMaxBurstBitRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum burst downlink rate."
::={whispSmStatus 119}
bridgecbUplinkMaxBurstBitRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum burst uplink Rate."
::={whispSmStatus 120}
currentCyclicPrefix OBJECT-TYPE
SYNTAX INTEGER {
one-quarter(0),
one-eighth(1),
one-sixteenth(2)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Current Cyclic Prefix of the AP/BHM when in session."
::={whispSmStatus 121}
currentBandwidth OBJECT-TYPE
SYNTAX INTEGER {
bandwidth5mhz(1),
bandwidth7MHz(2),
bandwidth10mhz(3),
bandwidth15mhz(4),
bandwidth20mhz(5),
bandwidth30mhz(6),
bandwidth40MHz(7)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Current Bandwidth of the AP/BHM when in session."
::={whispSmStatus 122}
berPwrRxFPGAPathA OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"BER power level on FPGA Rx Path A of SM. Engineering Use Only."
::={whispSmStatus 123}
berPwrRxFPGAPathB OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"BER power level on FPGA Rx Path B of SM. Engineering Use Only."
::={whispSmStatus 124}
rawBERPwrRxPathA OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Raw unadjusted BER power level on FPGA Rx Path A of SM. Engineering Use Only."
::={whispSmStatus 125}
rawBERPwrRxPathB OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Raw unadjusted BER power level on FPGA Rx Path B of SM. Engineering Use Only."
::={whispSmStatus 126}
radioModeStatus OBJECT-TYPE
SYNTAX INTEGER {
undefined(0),
pmp430(1),
pmp450Interoperability(2)}
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The current radio mode that SM is operating in.
PMP 430 SMs only.
As of 14.2, the 430 SM only supports PMP 450
interoperability mode, so this will only return
pmp450Interoperability."
::={whispSmStatus 127}
adaptRateLowPri OBJECT-TYPE
SYNTAX INTEGER {
noSession(0),
rate1X(1),
rate2X(2),
rete3X(3),
rate4X(4),
rate6X(6),
rate8X(8)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current transmitting rate of the low priority VC.
0 : SM is not in session
1 : 1X QPSK SISO
2 : 2X 16-QAM SISO or QPSK MIMO
3 : 3X 64-QAM SISO
4 : 4X 256-QAM SISO or 16-QAM MIMO
6 : 6X 64-QAM MIMO
8 : 8X 256-QAM MIMO"
::={whispSmStatus 128}
adaptRateHighPri OBJECT-TYPE
SYNTAX INTEGER {
noHighPriorityChannel(-1),
noSession(0),
rate1X(1),
rate2X(2),
rete3X(3),
rate4X(4),
rate6X(6),
rate8X(8)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current transmitting rate of the high priority VC.
-1 : High Priority Channel not configured
0 : SM is not in session
1 : 1X QPSK SISO
2 : 2X 16-QAM SISO or QPSK MIMO
3 : 3X 64-QAM SISO
4 : 4X 256-QAM SISO or 16-QAM MIMO
6 : 6X 64-QAM MIMO
8 : 8X 256-QAM MIMO"
::={whispSmStatus 129}
bitErrorsQSPKpathA OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bit errors received from BER packet at QPSK path A.
Valid MIMO platforms only."
::={whispSmStatus 130}
bitErrorsQSPKpathB OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bit errors received from BER packet at QPSK path B.
Valid MIMO platforms only."
::={whispSmStatus 131}
bitErrors16QAMpathA OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bit errors received from BER packet at 16-QAM path A.
Valid MIMO platforms only.
Engineering use only."
::={whispSmStatus 132}
bitErrors16QAMpathB OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bit errors received from BER packet at 16-QAM path B.
Valid MIMO platforms only.
Engineering use only."
::={whispSmStatus 133}
bitErrors64QAMpathA OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bit errors received from BER packet at 64-QAM path A.
Valid MIMO platforms only.
Engineering use only."
::={whispSmStatus 134}
bitErrors64QAMpathB OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bit errors received from BER packet at 64-QAM path B.
Valid MIMO platforms only.
Engineering use only."
::={whispSmStatus 135}
bitErrors256QAMpathA OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bit errors received from BER packet at 256-QAM path A.
Valid MIMO platforms only.
Engineering use only."
::={whispSmStatus 136}
bitErrors256QAMpathB OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bit errors received from BER packet at 256-QAM path B.
Valid MIMO platforms only.
Engineering use only."
::={whispSmStatus 137}
bitsReceivedPerPathModulation OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bit received from BER.
To calculate Bit Error Rate, take bit errors at a modulation and path and divide by this OID.
To get combined BER add errors and divide by this multiplied by each path and modulation.
i.e. MIMO QPSK combined BER = ((errors on path A) + (errors on path B))/(bits recieved per path modulation * 2)
Valid MIMO platforms only."
::={whispSmStatus 138}
beaconsPercentReceived OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current percentage of beacons that the SM/BHS successfully receiving."
::={whispSmStatus 139}
mapsPercentReceived OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PMP 450 only.
The current percentage of scheduling maps that the SM/BHS successfully receiving."
::={whispSmStatus 140}
natTslTableEntries OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Entries in NAT Translation Table."
::={whispSmStatus 141}
maxReceivePower OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum receive power level for this session.
MIMO radios only."
::={whispSmStatus 142}
beaconsPercentMinReceived OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The percentage of the least number of beacons that the SM/BHS successfully received in a 16 second window for the last 15 minutes. This will be updated only once in 15 minutes."
::={whispSmStatus 143}
beaconsPercentMaxReceived OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The percentage of the maximum number of beacons that the SM/BHS successfully received in a 16 second window for the last 15 minutes. This will be updated only once in 15 minutes."
::={whispSmStatus 144}
beaconsPercentReceivedSnapshot OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The percentage of beacons that the SM/BHS successfully received for the last 15 minutes. This will be updated only once in 15 minutes."
::={whispSmStatus 145}
smSectorID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current Sector ID of the Registered AP/BHM.
A value of -1 is return when the device is not registered or AP/BHM does not support Sector ID."
::={whispSmStatus 146}
scanCycleCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of scan cycles. This increments after the SM completes scanning every configured frequency and channel bandwidth."
::={whispSmStatus 147}
bridgeCbErrStatBridgeDropCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packet drop count for hosts with MAC address not in bridge table"
::={whispSmStatus 148}
dhcpServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF DhcpServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of DHCP server hosts."
::= {whispSmStatus 19}
dhcpServerEntry OBJECT-TYPE
SYNTAX DhcpServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry of DHCP server hosts."
INDEX {hostIp}
::= {dhcpServerTable 1}
DhcpServerEntry ::= SEQUENCE{
hostIp IpAddress,
hostMacAddress PhysAddress,
hostLease TimeTicks
}
hostIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DHCP server IP address."
::={dhcpServerEntry 1}
hostMacAddress OBJECT-TYPE
SYNTAX PhysAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Private host MAC address."
::={dhcpServerEntry 2}
hostLease OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Lease time assigned by DHCP server host."
::={dhcpServerEntry 3}
whispSmConfigGroup OBJECT-GROUP
OBJECTS {
rfScanListBandFilter,
rfScanList,
powerUpMode,
lanIpSm,
lanMaskSm,
defaultGwSm,
networkAccess,
authKeySm,
enable8023link,
authKeyOption,
timingPulseGated,
naptPrivateIP,
naptPrivateSubnetMask,
naptPublicIP,
naptPublicSubnetMask,
naptPublicGatewayIP,
naptRFPublicIP,
naptRFPublicSubnetMask,
naptRFPublicGateway,
naptEnable,
arpCacheTimeout,
tcpGarbageCollectTmout,
udpGarbageCollectTmout,
natTslTableSize,
dhcpClientEnable,
dhcpServerEnable,
dhcpServerLeaseTime,
dhcpIPStart,
dnsAutomatic,
prefferedDNSIP,
alternateDNSIP,
natDNSProxyEnable,
spectrumAnalysisDisplay,
dmzIP,
dmzEnable,
dhcpNumIPsToLease,
pppoeFilter,
smbFilter,
snmpFilter,
userP1Filter,
userP2Filter,
userP3Filter,
allOtherIpFilter,
allIpv4Filter,
upLinkBCastFilter,
arpFilter,
allOthersFilter,
userDefinedPort1,
port1TCPFilter,
port1UDPFilter,
userDefinedPort2,
port2TCPFilter,
port2UDPFilter,
userDefinedPort3,
port3TCPFilter,
port3UDPFilter,
bootpcFilter,
bootpsFilter,
ip4MultFilter,
ingressVID,
ingressVIDPriority,
ingressVIDPriorityMode,
providerVIDPriority,
providerVIDPriorityMode,
lowPriorityUplinkCIR,
lowPriorityDownlinkCIR,
hiPriorityChannel,
hiPriorityUplinkCIR,
hiPriorityDownlinkCIR,
smRateAdapt,
upLnkMaxBurstDataRate,
upLnkDataRate,
upLnkLimit,
dwnLnkMaxBurstDataRate,
cyclicPrefixScan,
bandwidthScan,
apSelection,
radioBandscanConfig,
forcepoweradjust,
clearBerrResults,
berrautoupdateflag,
testSMBER,
dwnLnkDataRate,
dwnLnkLimit,
dfsConfig,
ethAccessFilterEnable,
ipAccessFilterEnable,
allowedIPAccess1,
allowedIPAccess2,
allowedIPAccess3,
allowedIPAccessNMLength1,
allowedIPAccessNMLength2,
allowedIPAccessNMLength3,
rfDhcpState,
bCastMIR,
bhsReReg,
smLEDModeFlag,
ethAccessEnable,
pppoeEnable,
pppoeAuthenticationType,
pppoeAccessConcentrator,
pppoeServiceName,
pppoeUserName,
pppoePassword,
pppoeTCPMSSClampEnable,
pppoeMTUOverrideEnable,
pppoeMTUOverrideValue,
pppoeTimerType,
pppoeTimeoutPeriod,
timedSpectrumAnalysisDuration,
spectrumAnalysisScanBandwidth,
spectrumAnalysisOnBoot,
spectrumAnalysisAction,
pppoeConnectOD,
pppoeDisconnectOD,
smAntennaType,
natConnectionType,
wanPingReplyEnable,
packetFilterDirection,
colorCode2,
colorCodepriority2,
colorCode3,
colorCodepriority3,
colorCode4,
colorCodepriority4,
colorCode5,
colorCodepriority5,
colorCode6,
colorCodepriority6,
colorCode7,
colorCodepriority7,
colorCode8,
colorCodepriority8,
colorCode9,
colorCodepriority9,
colorCode10,
colorCodepriority10,
additionalColorCode,
additionalColorCodePriority,
deleteAdditionalColorCode,
bridgeTableSize,
bridgeTableRestrict,
berDeModSelect,
multicastVCRcvRate,
syslogServerApPreferred,
syslogMinLevelApPreferred,
syslogSMXmitSetting,
syslogSMXmitControl,
bCastMIRUnits,
naptRemoteManage,
maxTxPowerEnable,
maxTxPower,
txPowerControl,
eapPeerAAAServerCommonName,
pmp430ApRegistrationOptions,
switchRadioModeAndReboot}
STATUS current
DESCRIPTION
"Canopy Subscriber Module configuration group."
::= {whispSmGroups 1}
whispSmStatusGroup OBJECT-GROUP
OBJECTS {
natTslTableEntries,
sessionStatus,
rssi,
jitter,
airDelay,
radioSlicingSm,
radioTxGainSm,
calibrationStatus,
radioDbm,
registeredToAp,
dhcpCip,
dhcpSip,
dhcpClientLease,
dhcpCSMask,
dhcpDfltRterIP,
dhcpcdns1,
dhcpcdns2,
dhcpcdns3,
dhcpDomName,
adaptRate,
adaptRateLowPri,
adaptRateHighPri,
bitErrorsQSPKpathA,
bitErrorsQSPKpathB,
bitErrors16QAMpathA,
bitErrors16QAMpathB,
bitErrors64QAMpathA,
bitErrors64QAMpathB,
bitErrors256QAMpathA,
bitErrors256QAMpathB,
bitsReceivedPerPathModulation,
radioDbmInt,
dfsStatus,
radioTxPwr,
activeRegion,
snmpBerLevel,
nbBitsRcvd,
nbPriBitsErr,
nbSndBitsErr,
primaryBER,
secondaryBER,
totalBER,
minRSSI,
maxRSSI,
minJitter,
maxJitter,
smSessionTimer,
pppoeSessionStatus,
pppoeSessionID,
pppoeIPCPAddress,
pppoeMTUOverrideEn,
pppoeMTUValue,
pppoeTimerTypeValue,
pppoeTimeoutValue,
pppoeDNSServer1,
pppoeDNSServer2,
pppoeControlBytesSent,
pppoeControlBytesReceived,
pppoeDataBytesSent,
pppoeDataBytesReceived,
pppoeEnabledStatus,
pppoeTCPMSSClampEnableStatus,
pppoeACNameStatus,
pppoeSvcNameStatus,
pppoeSessUptime,
primaryBERDisplay,
secondaryBERDisplay,
totalBERDisplay,
mimoQpskBerDisplay,
mimo16QamBerDisplay,
mimo64QamBerDisplay,
mimo256QamBerDisplay,
mimoBerRcvModulationType,
minRadioDbm,
maxRadioDbm,
maxRadioDbmDeprecated,
pppoeSessIdleTime,
radioDbmAvg,
zoltarFPGAFreqOffset,
zoltarSWFreqOffset,
airDelayns,
smSectorID,
scanCycleCount,
currentColorCode,
currentColorCodePri,
currentChanFreq,
linkQualityBeacon,
currentCyclicPrefix,
currentBandwidth,
berPwrRxFPGAPathA,
berPwrRxFPGAPathB,
rawBERPwrRxPathA,
rawBERPwrRxPathB,
linkQualityData1XVertical,
linkQualityData2XVertical,
linkQualityData3XVertical,
linkQualityData4XVertical,
linkQualityData1XHorizontal,
linkQualityData2XHorizontal,
linkQualityData3XHorizontal,
linkQualityData4XHorizontal,
signalToNoiseRatioSMVertical,
signalToNoiseRatioSMHorizontal,
signalStrengthRatio,
radioDbmHorizontal,
radioDbmVertical,
rfStatTxSuppressionCount,
receiveFragmentsModulationPercentage,
fragmentsReceived1XVertical,
fragmentsReceived2XVertical,
fragmentsReceived3XVertical,
fragmentsReceived4XVertical,
fragmentsReceived1XHorizontal,
fragmentsReceived2XHorizontal,
fragmentsReceived3XHorizontal,
fragmentsReceived4XHorizontal,
beaconsPercentReceived,
mapsPercentReceived,
beaconsPercentMinReceived,
beaconsPercentMaxReceived,
beaconsPercentReceivedSnapshot,
maxReceivePower,
bridgecbUplinkCreditRate,
bridgecbUplinkCreditLimit,
bridgecbDownlinkCreditRate,
bridgecbDownlinkCreditLimit,
bridgecbDownlinkMaxBurstBitRate,
bridgecbUplinkMaxBurstBitRate,
bridgeCbErrStatBridgeDropCount,
radioModeStatus}
STATUS current
DESCRIPTION
"Canopy Subscriber Module status group."
::= {whispSmGroups 2}
whispSmNotifGroup NOTIFICATION-GROUP
NOTIFICATIONS {
enterSpectrumAnalysis,
availableSpectrumAnalysis,
whispRadarDetected,
whispRadarEnd,
smNatWanDHCPClientEvent,
smNatRFPubDHCPClientEvent}
STATUS current
DESCRIPTION
"WHiSP SMs notification group."
::= {whispSmGroups 3}
whispMappingTableGroup OBJECT-GROUP
OBJECTS {
tableIndex,
protocol,
port,
localIp}
STATUS current
DESCRIPTION
"Canopy SM NAT port mapping Table group."
::= {whispSmGroups 4}
-- DFS events
whispRadarDetected NOTIFICATION-TYPE
OBJECTS {
dfsStatus,
whispBoxEsn}
STATUS current
DESCRIPTION
"Radar detected transmit stopped."
::={whispSmDfsEvent 1}
whispRadarEnd NOTIFICATION-TYPE
OBJECTS {
dfsStatus,
whispBoxEsn}
STATUS current
DESCRIPTION
"Radar ended back to normal transmit."
::={whispSmDfsEvent 2}
-- Spectrum Analysis Events
enterSpectrumAnalysis NOTIFICATION-TYPE
OBJECTS {
whispBoxEsn}
STATUS current
DESCRIPTION
"Entering spectrum analysis.
physAddress - MAC address of the SM"
::={whispSmSpAnEvent 1}
-- Spectrum Analysis Events
availableSpectrumAnalysis NOTIFICATION-TYPE
OBJECTS {
whispBoxEsn}
STATUS current
DESCRIPTION
"Spectrum analysis is complete, SM is re-registered with AP and results are available.
physAddress - MAC address of the SM"
::={whispSmSpAnEvent 2}
-- SM NAT WAN DHCP Client Event
smNatWanDHCPClientEvent NOTIFICATION-TYPE
OBJECTS {
dhcpCip,
whispBoxEsn}
STATUS current
DESCRIPTION
"NAT WAN DHCP Client has received a new address via DHCP."
::={whispSmDHCPClientEvent 1}
-- SM NAT RF Public DHCP Client Event
smNatRFPubDHCPClientEvent NOTIFICATION-TYPE
OBJECTS {
dhcpRfPublicIp,
whispBoxEsn}
STATUS current
DESCRIPTION
"NAT RF Public DHCP Client has received a new address via DHCP."
::={whispSmDHCPClientEvent 2}
clearLinkStats OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this to a nonzero value will clear the link stats."
::={whispSmControls 1}
rescan OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this to a nonzero value will start the rescan.
Warning: If currently connected, this will cause the SM/BHS to drop session"
::={whispSmControls 2}
apEvalControl OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this to 0 will clear the AP Evaluation Data."
::={whispSmControls 3}
whispMappingTable OBJECT-TYPE
SYNTAX SEQUENCE OF WhispMappingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"NAT port mapping information table."
::= {whispSm 5}
whispMappingEntry OBJECT-TYPE
SYNTAX WhispMappingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Mapping table entry."
INDEX {tableIndex}
::= {whispMappingTable 1}
WhispMappingEntry ::= SEQUENCE{
tableIndex INTEGER,
protocol INTEGER,
port INTEGER,
localIp IpAddress
}
tableIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"User information table index."
::={whispMappingEntry 1}
protocol OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Protocol type: 0:both UDP and TCP, 1:UDP, 2:TCP."
::={whispMappingEntry 2}
port OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Application port number. e.g. 23=telnet, 21=ftp etc. Should be a positive integer."
::={whispMappingEntry 3}
localIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP of local host to which the incoming packet mapped to an application should be forwarded."
::={whispMappingEntry 4}
whispSmTranslationTable OBJECT-TYPE
SYNTAX SEQUENCE OF WhispSmTranslationTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Translation Table."
::= {whispSm 6}
whispSmTranslationTableEntry OBJECT-TYPE
SYNTAX WhispSmTranslationTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Translation Table Entry."
INDEX {whispTranslationTableIndex}
::= {whispSmTranslationTable 1}
WhispSmTranslationTableEntry ::= SEQUENCE{
whispTranslationTableIndex INTEGER,
whispTranslationTableMacAddr MacAddress,
whispTranslationTableIpAddr IpAddress,
whispTranslationTableAge Counter32
}
whispTranslationTableIndex OBJECT-TYPE
SYNTAX INTEGER (1..127)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index into translation table."
::={whispSmTranslationTableEntry 1}
whispTranslationTableMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MAC Address of the registered entity."
::={whispSmTranslationTableEntry 2}
whispTranslationTableIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Ip Address of the registered entity."
::={whispSmTranslationTableEntry 3}
whispTranslationTableAge OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Age of the registered entity."
::={whispSmTranslationTableEntry 4}
whispSmColorCodeTable OBJECT-TYPE
SYNTAX SEQUENCE OF WhispSmColorCodeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Additional color code Table."
::= {whispSm 9}
whispSmColorCodeEntry OBJECT-TYPE
SYNTAX WhispSmColorCodeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Additional Color code Entry."
INDEX {entryColorCode}
::= {whispSmColorCodeTable 1}
WhispSmColorCodeEntry ::= SEQUENCE{
entryColorCode INTEGER,
entryColorCodePriority INTEGER
}
entryColorCode OBJECT-TYPE
SYNTAX INTEGER (0..254)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"color code."
::={whispSmColorCodeEntry 1}
entryColorCodePriority OBJECT-TYPE
SYNTAX INTEGER {
primary(1),
secondary(2),
tertiary(3)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"color code priority."
::={whispSmColorCodeEntry 2}
whispSmAPEvalTable OBJECT-TYPE
SYNTAX SEQUENCE OF WhispSmAPEvalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"AP Eval List."
::= {whispSm 10}
whispSmAPEvalEntry OBJECT-TYPE
SYNTAX WhispSmAPEvalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Evaluation of AP and BHM Entries"
INDEX {evalIndex}
::= {whispSmAPEvalTable 1}
WhispSmAPEvalEntry ::= SEQUENCE{
evalIndex INTEGER,
evalFrequency INTEGER,
evalChannelBandwidth INTEGER,
evalCyclicPrefix INTEGER,
evalESN PhysAddress,
evalRegion DisplayString,
evalBeaconReceivePowerCombined INTEGER,
evalBeaconReceivePowerH INTEGER,
evalBeaconReceivePowerV INTEGER,
evalFECEnable INTEGER,
evalType INTEGER,
evalAvail INTEGER,
evalAge INTEGER,
evalLockout INTEGER,
evalRegFail INTEGER,
evalRange INTEGER,
evalMaxRange INTEGER,
evalTxBER INTEGER,
evalEBCast INTEGER,
evalSessionCount INTEGER,
evalNoLuid INTEGER,
evalOutOfRange INTEGER,
evalAuthFail INTEGER,
evalEncryptFail INTEGER,
evalReScanReq INTEGER,
evalLimitReached INTEGER,
evalNoVCs INTEGER,
evalVCReserveFail INTEGER,
evalVCActFail INTEGER,
evalTxPower INTEGER,
evalReceiveTargetLevel INTEGER,
evalColorCode INTEGER,
evalBeaconVersion INTEGER,
evalSectorUserCount INTEGER,
evalSyncSrc INTEGER,
evalNumULSlots INTEGER,
evalNumDLSlots INTEGER,
evalNumULContSlots INTEGER,
evalICC INTEGER,
evalAuthentication INTEGER,
evalSMPPPoE INTEGER,
evalPToPVLAN INTEGER,
evalFramePeriod INTEGER
}
evalIndex OBJECT-TYPE
SYNTAX INTEGER (1..16)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of the radio seen in the scan"
::={whispSmAPEvalEntry 1}
evalFrequency OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Transmit Frequency in KHz"
::={whispSmAPEvalEntry 2}
evalChannelBandwidth OBJECT-TYPE
SYNTAX INTEGER {
bandwidth3Point5MHz(0),
bandwidth5MHz(1),
bandwidth7MHz(2),
bandwidth10MHz(3),
bandwidth15MHz(4),
bandwidth20MHz(5),
bandwidth30MHz(6),
bandwidth40MHz(7)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Channel Bandwidth"
::={whispSmAPEvalEntry 3}
evalCyclicPrefix OBJECT-TYPE
SYNTAX INTEGER {
one-quarter(0),
one-eighth(1),
one-sixteenth(2)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Cyclic Prefix value, for OFDM Radios only."
::={whispSmAPEvalEntry 4}
evalESN OBJECT-TYPE
SYNTAX PhysAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radio ESN"
::={whispSmAPEvalEntry 5}
evalRegion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Region"
::={whispSmAPEvalEntry 6}
evalBeaconReceivePowerCombined OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Beacon Receive Power Combined in dBm(rounded to nearest integer)"
::={whispSmAPEvalEntry 7}
evalBeaconReceivePowerH OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Beacon Receive Power in dBm(rounded to nearest integer) for Path H(MIMO Radios only)"
::={whispSmAPEvalEntry 8}
evalBeaconReceivePowerV OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Beacon Receive Power in dBm(rounded to nearest integer) for Path V(MIMO Radios only)"
::={whispSmAPEvalEntry 9}
evalFECEnable OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Forward Error Correction Enabled Status.
Note, this is always enabled on 450 and forward."
::={whispSmAPEvalEntry 10}
evalType OBJECT-TYPE
SYNTAX INTEGER {
multipoint(0),
point-to-point(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radio Type (Point-to-Point or Multipoint)"
::={whispSmAPEvalEntry 11}
evalAvail OBJECT-TYPE
SYNTAX INTEGER {
false(0),
true(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Returns True if seen on the previous SM's scan"
::={whispSmAPEvalEntry 12}
evalAge OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of minutes since index was last seen"
::={whispSmAPEvalEntry 13}
evalLockout OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of minutes radio is currently locked out"
::={whispSmAPEvalEntry 14}
evalRegFail OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Registration Fail Count"
::={whispSmAPEvalEntry 15}
evalRange OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Range in feet"
::={whispSmAPEvalEntry 16}
evalMaxRange OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max Range is in miles"
::={whispSmAPEvalEntry 17}
evalTxBER OBJECT-TYPE
SYNTAX INTEGER {
false(0),
true(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radio is transmitting Bit Error Rate symbol or not
Note: This is always enabled on 450 and forward"
::={whispSmAPEvalEntry 18}
evalEBCast OBJECT-TYPE
SYNTAX INTEGER {
false(0),
true(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Broadcast Encryption status"
::={whispSmAPEvalEntry 19}
evalSessionCount OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Session Count"
::={whispSmAPEvalEntry 20}
evalNoLuid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times the registration request has been rejected due to No Luid"
::={whispSmAPEvalEntry 21}
evalOutOfRange OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times the registration request has been rejected due to out of range"
::={whispSmAPEvalEntry 22}
evalAuthFail OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times the registration request has been rejected due to authentication failure"
::={whispSmAPEvalEntry 23}
evalEncryptFail OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times the registration request has been rejected due to encrypt fail"
::={whispSmAPEvalEntry 24}
evalReScanReq OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Rescan request count"
::={whispSmAPEvalEntry 25}
evalLimitReached OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times failed when trying to register with an limited AP maxed out"
::={whispSmAPEvalEntry 26}
evalNoVCs OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times the registration request has been rejected due to No VCs"
::={whispSmAPEvalEntry 27}
evalVCReserveFail OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times the registration request has been rejected due to VC reserve fail"
::={whispSmAPEvalEntry 28}
evalVCActFail OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times the registration request has been rejected due to VC activate fail"
::={whispSmAPEvalEntry 29}
evalTxPower OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Transmit Power in dBm"
::={whispSmAPEvalEntry 30}
evalReceiveTargetLevel OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Receive Target Level(in dBm)(PMP only)"
::={whispSmAPEvalEntry 31}
evalColorCode OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Color Code"
::={whispSmAPEvalEntry 32}
evalBeaconVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Beacon Version"
::={whispSmAPEvalEntry 33}
evalSectorUserCount OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Sector User Count(AP only)"
::={whispSmAPEvalEntry 34}
evalSyncSrc OBJECT-TYPE
SYNTAX INTEGER {
generate-sync(0),
gps-sync(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Sync Source(PMP only)"
::={whispSmAPEvalEntry 35}
evalNumULSlots OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of uplink slots"
::={whispSmAPEvalEntry 36}
evalNumDLSlots OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of downlink slots"
::={whispSmAPEvalEntry 37}
evalNumULContSlots OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of uplink contention slots(PMP only)"
::={whispSmAPEvalEntry 38}
evalICC OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Instalaton Color Code(PMP only)"
::={whispSmAPEvalEntry 39}
evalAuthentication OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Authentication Setting(PMP only)"
::={whispSmAPEvalEntry 40}
evalSMPPPoE OBJECT-TYPE
SYNTAX INTEGER {
not-supported(0),
suported(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SM PPPoE status(PMP only)"
::={whispSmAPEvalEntry 41}
evalPToPVLAN OBJECT-TYPE
SYNTAX INTEGER {
not-supported(0),
suported(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PToP VLAN"
::={whispSmAPEvalEntry 42}
evalFramePeriod OBJECT-TYPE
SYNTAX INTEGER {
twoPointFiveMs(0),
fiveMs(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Frame Period"
::={whispSmAPEvalEntry 43}
END
|