1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
|
-- *******************************************************************
-- CISCO-LWAPP-SYS-MIB.my
-- March 2007, Devesh Pujari, Srinath Candadai
-- Feb 2011, Suja Thangaveluchamy
--
-- Copyright (c) 2007-2012-2018 by Cisco Systems Inc.
-- All rights reserved.
-- *******************************************************************
CISCO-LWAPP-SYS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Integer32,
Counter32,
Unsigned32,
IpAddress,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
MacAddress,
RowStatus,
TruthValue
FROM SNMPv2-TC
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
InetAddressType,
InetAddress,
InetPortNumber
FROM INET-ADDRESS-MIB
cldcClientAccessVLAN
FROM CISCO-LWAPP-DOT11-CLIENT-MIB
ciscoMgmt
FROM CISCO-SMI;
-- ********************************************************************
-- * MODULE IDENTITY
-- ********************************************************************
ciscoLwappSysMIB MODULE-IDENTITY
LAST-UPDATED "201807030000Z"
ORGANIZATION "Cisco Systems Inc."
CONTACT-INFO
"Cisco Systems,
Customer Service
Postal: 170 West Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
Email: cs-wnbu-snmp@cisco.com"
DESCRIPTION
"This MIB is intended to be implemented on all those
devices operating as Central controllers, that
terminate the Light Weight Access Point Protocol
tunnel from Cisco Light-weight LWAPP Access Points.
This MIB provides global configuration and status
information for the controller. All general system
related information is presented in this MIB.
The relationship between CC and the LWAPP APs
can be depicted as follows:
+......+ +......+ +......+
+ + + + + +
+ CC + + CC + + CC +
+ + + + + +
+......+ +......+ +......+
.. . .
.. . .
. . . .
. . . .
. . . .
. . . .
+......+ +......+ +......+ +......+
+ + + + + + + +
+ AP + + AP + + AP + + AP +
+ + + + + + + +
+......+ +......+ +......+ +......+
. . .
. . . .
. . . .
. . . .
. . . .
+......+ +......+ +......+ +......+
+ + + + + + + +
+ MN + + MN + + MN + + MN +
+ + + + + + + +
+......+ +......+ +......+ +......+
The LWAPP tunnel exists between the controller and
the APs. The MNs communicate with the APs through
the protocol defined by the 802.11 standard.
LWAPP APs, upon bootup, discover and join one of the
controllers and the controller pushes the configuration,
that includes the WLAN parameters, to the LWAPP APs.
The APs then encapsulate all the 802.11 frames from
wireless clients inside LWAPP frames and forward
the LWAPP frames to the controller.
GLOSSARY
Access Point ( AP )
An entity that contains an 802.11 medium access
control ( MAC ) and physical layer ( PHY ) interface
and provides access to the distribution services via
the wireless medium for associated clients.
LWAPP APs encapsulate all the 802.11 frames in
LWAPP frames and sends them to the controller to which
it is logically connected.
Light Weight Access Point Protocol ( LWAPP )
This is a generic protocol that defines the
communication between the Access Points and the
Central Controller.
Mobile Node ( MN )
A roaming 802.11 wireless device in a wireless
network associated with an access point. Mobile Node
and client are used interchangeably.
Extensible Authentication Protocol ( EAP )
EAP is a universal authentication protocol used in
wireless and PPP networks. It is defined by RFC 3748.
EAP-Flexible Authentication ( EAP-FAST )
This protocol is used via secure tunneling for 802.1X EAP.
PAC
PAC (Protected Access Credential) is a meachanism for
mutual authentication in EAP-FAST.
PEAP
The Protected Extensible Authentication Protocol, also known
as Protected EAP or simply PEAP, is a protocol that
encapsulates EAP within a potentially encrypted and
authenticated Transport Layer Security (TLS) tunnel.The
purpose was to correct deficiencies in EAP;
EAP assumed a protected communication channel, such as that
provided by physical security, so facilities for protection
of the EAP conversation were not provided.
EAP-SIM
EAP for GSM Subscriber Identity Module (EAP-SIM) is used
for authentication and session key distribution using the
Subscriber Identity Module (SIM) from the Global System
for Mobile Communications (GSM).
RAID
Redudant array of independant disks (RAID) combines multiple
disk drive components into logical unit for the purposes of
data redundancy and performance improvements.
Lawful-Interception (LI)
Lawful Interception is a feature to send client logging
details to a server.
REFERENCE
[1] Wireless LAN Medium Access Control ( MAC ) and
Physical Layer ( PHY ) Specifications.
[2] Draft-obara-capwap-lwapp-00.txt, IETF Light
Weight Access Point Protocol.
[3] IEEE 802.1X - Authentication for Wireless and
Wired Connections."
REVISION "201807030000Z"
DESCRIPTION
"Added following objects
-clsLiStatus
-clsLiReportingInterval
-clsLiAddressType
-clsLiAddress
Added new enum yangBundle type for clsUploadFileType object."
REVISION "201804240000Z"
DESCRIPTION
"Added clsTransferStreamingUsername,
clsTransferStreamingPassword,
clsTransferStreamingOptimizedJoinEnable,
clsUSBMode.
Added new enum value https(4) and sftp(5) to
clsTransferStreamingMode.
Added new enum value usb(4) to clsTransferMode."
REVISION "201705030000Z"
DESCRIPTION
"Added ciscoLwappLyncInfoGroup, ciscoLwappSysInfoGroup,
ciscoLwappSysMulticastMLDGroup, ciscoLwappSysConfigGroupSup1,
ciscoLwappSysStatsConfigGroup.
Deprecated ciscoLwappSysMIBComplianceRev2 and replaced
by ciscoLwappSysMIBComplianceRev3."
REVISION "201206180000Z"
DESCRIPTION
"Added ciscoLwappSysPortConfigGroup,
ciscoLwappSysSecurityConfigGroup, ciscoLwappSysIgmpConfigGroup,
ciscoLwappSysSecNotifObjsGroup, ciscoLwappSysNotifsGroup and
ciscoLwappSysNotifControlGroup.
Deprecated ciscoLwappSysMIBComplianceRev1 and added
ciscoLwappSysMIBComplianceRev2"
REVISION "201002090000Z"
DESCRIPTION
"Updated clsTransferConfigGroup, ciscoLwappSysConfigGroupSup1.
Deprecate ciscoLwappSysMIBCompliance.
Added clsTransferConfig, clsSysArpProxyEnabled."
REVISION "200710170000Z"
DESCRIPTION
"Added timezone and syslog objects."
REVISION "200703140000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 618 }
ciscoLwappSysMIBNotifs OBJECT IDENTIFIER
::= { ciscoLwappSysMIB 0 }
ciscoLwappSysMIBObjects OBJECT IDENTIFIER
::= { ciscoLwappSysMIB 1 }
ciscoLwappSysMIBConform OBJECT IDENTIFIER
::= { ciscoLwappSysMIB 2 }
clsConfig OBJECT IDENTIFIER
::= { ciscoLwappSysMIBObjects 1 }
clsConfigDownload OBJECT IDENTIFIER
::= { clsConfig 2 }
clsConfigUpload OBJECT IDENTIFIER
::= { clsConfig 3 }
clsTransferConfigGroup OBJECT IDENTIFIER
::= { clsConfig 4 }
clsConfigGeneral OBJECT IDENTIFIER
::= { clsConfig 5 }
clsConfigNetworkGeneral OBJECT IDENTIFIER
::= { clsConfigGeneral 5 }
clsLiConfigGeneral OBJECT IDENTIFIER
::= { clsConfigGeneral 7 }
clsSyslogIpConfig OBJECT IDENTIFIER
::= { clsConfig 6 }
clsTransferConfig OBJECT IDENTIFIER
::= { clsConfig 8 }
cLSysMulticastIGMP OBJECT IDENTIFIER
::= { clsConfig 13 }
cLSPortModeConfig OBJECT IDENTIFIER
::= { clsConfig 14 }
clsCoreDump OBJECT IDENTIFIER
::= { clsConfig 15 }
cLSysMulticastMLD OBJECT IDENTIFIER
::= { clsConfig 17 }
clsConfigStats OBJECT IDENTIFIER
::= { clsConfig 18 }
clsAlarmObjects OBJECT IDENTIFIER
::= { clsConfig 19 }
clsSysThresholdConfig OBJECT IDENTIFIER
::= { clsConfig 20 }
clsNMHeartBeat OBJECT IDENTIFIER
::= { clsConfig 21 }
cLSTrapSwitchConfig OBJECT IDENTIFIER
::= { clsConfig 25 }
clsConfigCalea OBJECT IDENTIFIER
::= { clsConfig 34 }
clsStatus OBJECT IDENTIFIER
::= { ciscoLwappSysMIBObjects 2 }
clsImageInfo OBJECT IDENTIFIER
::= { ciscoLwappSysMIBObjects 3 }
clsCpuInfo OBJECT IDENTIFIER
::= { ciscoLwappSysMIBObjects 4 }
clsSecurityGroup OBJECT IDENTIFIER
::= { ciscoLwappSysMIBObjects 5 }
ciscoLwappSysMIBNotifObjects OBJECT IDENTIFIER
::= { ciscoLwappSysMIBObjects 6 }
ciscoLwappSysMIBNotifControlObjects OBJECT IDENTIFIER
::= { ciscoLwappSysMIBObjects 7 }
clsSysInfo OBJECT IDENTIFIER
::= { ciscoLwappSysMIBObjects 8 }
clsLyncInfo OBJECT IDENTIFIER
::= { ciscoLwappSysMIBObjects 9 }
clsStreamingTransferConfig OBJECT IDENTIFIER
::= { clsTransferConfig 2 }
clsDot3BridgeEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether 803.2 bridging
mode is enabled or disabled on the controller.
A value of 'true' indicates that, the bridging
mode is enabled.
A value of 'false' indicates that, the bridging
mode is disabled."
DEFVAL { false }
::= { clsConfig 1 }
clsDownloadFileType OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
code(2),
config(3),
webAuthCert(4),
webAdminCert(5),
signatures(6),
customWebAuth(7),
vendorDeviceCert(8),
vendorCaCert(9),
ipsecDeviceCert(10),
ipsecCaCert(11),
radiusavplist(12),
icon(13),
apimage(14),
naservcacert(15),
webhookcacert(16)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the file types that
can be downloaded to the controller.
The file types for download are:
unknown - Unknown file type
code - Code file
config - Configuration file
webAuthCert - Web authentication certificates
webAdminCert - Web administrative certificates
signatures - Signature file
customWebAuth - Custom web authentication
tar file
vendorDeviceCert - Vendor device certificates
vendorCaCert - Vendor certificate authority
certificates
ipsecDeviceCert - Ipsec device certificates
ipsecCaCert - Ipsec certificate authority
certificates
radiusavplist - Avp's to be sent in radius
packets
icon - icon files to be used in
Hotspot 2.0
apimage - Download ap image for
flexexpress
naservcacert - NA server certificate authority
certificates
webhookcacert - Webhook CA Certificate"
::= { clsConfigDownload 1 }
clsDownloadCertificateKey OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the key used
to encrypt the EAP certificate, specified
by IEEE 802.1X standard, during upload from
the controller and for decrypting the file
after its downloaded to the controller.
This object is relevant only when
clsDownloadFileType is 'vendorDeviceCert'.
For all other values of clsDownloadFileType
object this will return an empty string."
::= { clsConfigDownload 2 }
clsUploadFileType OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
config(2),
errorLog(3),
systemTrace(4),
trapLog(5),
crashFile(6),
signatures(7),
pac(8),
radioCoreDump(9),
invalidConfig(10),
debugfile(11),
pktCapture(12),
watchdogCrash(13),
panicCrash(14),
vendorDevCert(15),
vendorCaCert(16),
webAdminCert(17),
webAuthCert(18),
ipsecDeviceCert(19),
ipsecCaCert(20),
radiusavplist(21),
yangBundle(22)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the file types that
can be uploaded from the controller.
The file types for upload are:
unknown - Unknown file
config - Configuration file
errorLog - Error log
systemTrace - System trace
trapLog - Trap log
crashFile - Crash file
signatures - Signature file
pac - PAC file
radioCoreDump - AP's Radio core dump file
invalidConfig - Upload the file which contains the
invalid configuration commands feeded
by the downloaded Config file.
debugfile - Debug file.
pktCapture - Packet Capture File
watchdogCrash - Watchdog Crash Information File
panicCrash - Panic Crash Information File.
vendorDevCert - EAP ca certificate.
vendorCaCert - EAP dev certificate.
webAdminCert - Web Admin certificate.
webAuthCert - Web Auth certificate.
ipsecDeviceCert - Ipsec device certificates
ipsecCaCert - Ipsec certificate authority
certificates
radiusavplist - Avp's to be sent in radius
packets.
yangBundle - Bundle of yang files."
::= { clsConfigUpload 1 }
clsUploadPacUsername OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..63))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the upload user name
for protected access credential (PAC). This
object needs to be set before setting
clsUploadFileType to 'pac'. For all other
values of clsUploadFileType this will return
an empty string."
::= { clsConfigUpload 2 }
clsUploadPacPassword OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the upload password for
protected access credential (PAC). This object
needs to be set before setting clsUploadFileType
to 'pac'. For all other values of clsUploadFileType
this will return an empty string.
When read, this object will return '****'."
::= { clsConfigUpload 3 }
clsUploadPacValidity OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
UNITS "days"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the upload validity in
days for protected access credential (PAC).
This object is relevant only when
clsUploadFileType is set to 'pac'.
For all other values of clsUploadFileType
this will return an empty string."
::= { clsConfigUpload 4 }
-- ******************************************************
-- Network Route config table
-- ******************************************************
clsNetworkRouteConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF ClsNetworkRouteConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table represents of the network route
entries of a switch."
::= { clsConfigNetworkGeneral 1 }
clsNetworkRouteConfigEntry OBJECT-TYPE
SYNTAX ClsNetworkRouteConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents the network
route of a switch."
INDEX {
clsNetworkRouteIPAddressType,
clsNetworkRouteIPAddress
}
::= { clsNetworkRouteConfigTable 1 }
ClsNetworkRouteConfigEntry ::= SEQUENCE {
clsNetworkRouteIPAddressType InetAddressType,
clsNetworkRouteIPAddress InetAddress,
clsNetworkRoutePrefixLength Unsigned32,
clsNetworkRouteGatewayType InetAddressType,
clsNetworkRouteGateway InetAddress,
clsNetworkRouteStatus RowStatus
}
clsNetworkRouteIPAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This objects represents network route IP
address type."
::= { clsNetworkRouteConfigEntry 1 }
clsNetworkRouteIPAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This objects represents the network route IP
address."
::= { clsNetworkRouteConfigEntry 2 }
clsNetworkRoutePrefixLength OBJECT-TYPE
SYNTAX Unsigned32 (0..128)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the prefix length for
route Inet address."
::= { clsNetworkRouteConfigEntry 3 }
clsNetworkRouteGatewayType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies gateway IP type
of network route."
::= { clsNetworkRouteConfigEntry 4 }
clsNetworkRouteGateway OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies gateway IP
of network route."
::= { clsNetworkRouteConfigEntry 5 }
clsNetworkRouteStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies status column for this
row and used to create and delete specific
instances of rows in this table."
::= { clsNetworkRouteConfigEntry 6 }
clsTransferConfigFileEncryption OBJECT-TYPE
SYNTAX INTEGER {
disable(1),
enable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies encryption and decryption
of configuration file while uploading and
downloading.
A value of disable(1) indicates that, encryption
is disabled.
A value of enable(2) indicates that, encryption
is enabled.
This is applicable only when clsDownloadFileType,
clsUploadFileType is set to Config."
DEFVAL { disable }
::= { clsTransferConfigGroup 1 }
clsTransferConfigFileEncryptionKey OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the key to be used when encrypting
the configuration file while upload from the controller
or while decrypting the file after download to the controller.
This is applicable only when clsDownloadFileType,
clsUploadFileType is set to Config.
When read, this object will return '****'."
::= { clsTransferConfigGroup 2 }
-- ******************************************************
-- Transfer config table
-- ******************************************************
clsTransferConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF ClsTransferConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table represent the server details which
will be used by the controller to upload/
download files. The conceptual rows are
statically populated by the agent during
system boot up."
::= { clsTransferConfig 1 }
clsTransferConfigEntry OBJECT-TYPE
SYNTAX ClsTransferConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table provides information about
the server to which the controller will upload/download files
represented by clsTransferType and clsTransferMode."
INDEX {
clsTransferType,
clsTransferMode
}
::= { clsTransferConfigTable 1 }
ClsTransferConfigEntry ::= SEQUENCE {
clsTransferType INTEGER,
clsTransferMode INTEGER,
clsTransferServerAddressType InetAddressType,
clsTransferServerAddress InetAddress,
clsTransferPath SnmpAdminString,
clsTransferFilename SnmpAdminString,
clsTransferFtpUsername SnmpAdminString,
clsTransferFtpPassword SnmpAdminString,
clsTransferFtpPortNum InetPortNumber,
clsTransferTftpMaxRetries Unsigned32,
clsTransferTftpTimeout Unsigned32,
clsTransferStart INTEGER,
clsTransferStatus INTEGER,
clsTransferStatusString SnmpAdminString
}
clsTransferType OBJECT-TYPE
SYNTAX INTEGER {
download(1),
upload(2)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the type of operation
mode of the server by the controller.
A value of download indicates that, mode of transfer
is download
A value of upload indicates that, mode of transfer
is upload."
DEFVAL { download }
::= { clsTransferConfigEntry 1 }
clsTransferMode OBJECT-TYPE
SYNTAX INTEGER {
tftp(1),
ftp(2),
sftp(3),
usb(4)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the protocol used by the server and the
controller to transfer a file.
A value of tftp indicates that, transfer mode is tftp.
A value of ftp indicates that, transfer mode is ftp.
A value of sftp indicates that, transfer mode is sftp.
A value of usb indicates that, transfer mode is usb."
DEFVAL { tftp }
::= { clsTransferConfigEntry 2 }
clsTransferServerAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the server IP address
type to which the controller will transfer
the file."
::= { clsTransferConfigEntry 3 }
clsTransferServerAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the server IP address
to which the controller will transfer the file.
It is governed by clsTransferServerAddressType."
::= { clsTransferConfigEntry 4 }
clsTransferPath OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the directory path for file transfer.
The format depends on the host server.
e.g. /tftpboot/code/ - in case of UNIX server
c:\tftp\code - in case of DOS/Windows server"
::= { clsTransferConfigEntry 5 }
clsTransferFilename OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the file name for the file being
transferred from the controller.
An example would be file path set to c:\tftp\code\
and file name set to e1r1v1.opr."
::= { clsTransferConfigEntry 6 }
clsTransferFtpUsername OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..31))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the FTP username for
transferring file on the server.
This is valid for FTP/SFTP transfer mode
parameters."
::= { clsTransferConfigEntry 7 }
clsTransferFtpPassword OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..31))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the FTP password for
transferring file on the server.
This is valid for SFTP/FTP transfer mode
parameters. It returns '****' when queried."
::= { clsTransferConfigEntry 8 }
clsTransferFtpPortNum OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the port number to be used by
the FTP protocol while connecting to the server.
This is valid only for FTP transfer mode."
::= { clsTransferConfigEntry 9 }
clsTransferTftpMaxRetries OBJECT-TYPE
SYNTAX Unsigned32 (1..254)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies maximum number of retries to be
allowed for a TFTP message packet before aborting the
transfer operation. This is valid only for TFTP transfer
mode."
DEFVAL { 10 }
::= { clsTransferConfigEntry 10 }
clsTransferTftpTimeout OBJECT-TYPE
SYNTAX Unsigned32 (1..254)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies timeout in seconds for a TFTP message
packet. This is valid only for TFTP transfer mode."
DEFVAL { 6 }
::= { clsTransferConfigEntry 11 }
clsTransferStart OBJECT-TYPE
SYNTAX INTEGER {
none(1),
initiate(2),
initiatePeer(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether the file transfer
operation is initiated in active or standby.
A value of none indicates that, no operation begins.
A value of initiate indicates that, transfer of
file begins on active.
A value of initiatePeer indicates that, file transfer
operation begins on standby."
DEFVAL { none }
::= { clsTransferConfigEntry 12 }
clsTransferStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
notInitiated(2),
transferStarting(3),
errorStarting(4),
wrongFileType(5),
updatingConfig(6),
invalidConfigFile(7),
writingToFlash(8),
failureWritingToFlash(9),
checkingCRC(10),
failedCRC(11),
unknownDirection(12),
transferSuccessful(13),
transferFailed(14),
bootBreakOff(15),
invalidTarFile(16)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the current status of a file
transfer operation.
The following are valid only when clsTransferType is
'download' :- bootBreakOff(14), invalidTarFile(15).
A value of unknown(1) indicates that, unknown state
of transfer.
A value of notInitiated(2) indicates that, no transfer
operation has been initiated
A value of transferStarting(3) indicates that, transfer
operation has commenced.
A value of errorStarting(4) indicates that, error while
starting transfer operation.
A value of wrongFileType(5) indicates that, wrong file
type specified.
A value of updatingConfig(6) indicates that, updating
configuration.
A value of invalidConfigFile(7) indicates that, invalid
config file specified.
A value of writingToFlash(8) indicates that, writing to
flash
A value of failureWritingToFlash(9) indicates that, writing
to flash failed.
A value of checkingCRC(10) indicates that, checking cyclic
redundancy check.
A value of failedCRC(11) indicates that, CRC check failed.
A value of unknownDirection(12) indicates that, unknown
direction of transfer.
A value of transferSuccessful(13) indicates that, transfer
operation succeeded.
A value of transferFailed(14) indicates that, transfer
failed.
A value of bootBreakOff(15) indicates that, Boot break
off.
A value of invalidTarFile(16) indicates that, invalid Tar
file."
DEFVAL { unknown }
::= { clsTransferConfigEntry 13 }
clsTransferStatusString OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the current status of a file
transfer operation in human readable format."
::= { clsTransferConfigEntry 14 }
-- EUR ADD
-- ******************************************************
-- Ap Transfer config table
-- ******************************************************
clsApTransferTable OBJECT-TYPE
SYNTAX SEQUENCE OF ClsApTransferEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table represents the information about the
802.11 LWAPP Access Points that have joined to
the controller.
LWAPP APs exchange configuration messages with the
controller and get the required configuration for
their 802.11 related operations, after they join the
controller."
::= { clsStreamingTransferConfig 1 }
clsApTransferEntry OBJECT-TYPE
SYNTAX ClsApTransferEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table provides information about
one 802.11 LWAPP Access Point that has joined to
the controller.
Entries are removed when the APs lose their
association with the controller due to loss
of communication."
INDEX { clsApTransferSysMacAddress }
::= { clsApTransferTable 1 }
ClsApTransferEntry ::= SEQUENCE {
clsApTransferSysMacAddress MacAddress,
clsApPrimaryVers SnmpAdminString,
clsApBackupVers SnmpAdminString,
clsApPredStatus SnmpAdminString,
clsApPredFailReason SnmpAdminString,
clsApPredRetryCount Unsigned32,
clsApPredNextRetryTime SnmpAdminString
}
clsApTransferSysMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the radio MAC address
of the AP and uniquely identifies an entry in
this table."
::= { clsApTransferEntry 1 }
clsApPrimaryVers OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the primary image version of AP"
::= { clsApTransferEntry 2 }
clsApBackupVers OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the backup image version of AP"
::= { clsApTransferEntry 3 }
clsApPredStatus OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the status of predownload,
Initiated/failed/predownloading/backedoff"
::= { clsApTransferEntry 4 }
clsApPredFailReason OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents Failure reason for image download."
::= { clsApTransferEntry 5 }
clsApPredRetryCount OBJECT-TYPE
SYNTAX Unsigned32 (1..254)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents number of retries by AP to download
the image"
::= { clsApTransferEntry 6 }
clsApPredNextRetryTime OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the next retry time of
image download by AP."
::= { clsApTransferEntry 7 }
clsTransferStreamingMode OBJECT-TYPE
SYNTAX INTEGER {
tftp(1),
http(2),
cco(3),
https(4),
sftp(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the mode of transfer used
by the controller with the server.
A value of tftp indicates that, streaming mode
is TFTP.
A value of http indicates that, streaming mode
is http.
A value of cco indicates that, streaming mode
is cco.
A value of https indicates that, streaming mode
is https.
A value of sftp indicates that, streaming mode
is sftp."
DEFVAL { tftp }
::= { clsStreamingTransferConfig 2 }
clsTransferStreamingServerAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the server IP address
type from which the controller will transfer
the image file."
DEFVAL { ipv4 }
::= { clsStreamingTransferConfig 3 }
clsTransferStreamingServerAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the server IP address to
which the controller will transfer the file."
::= { clsStreamingTransferConfig 4 }
clsTransferStreamingPath OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the directory path
for file transfer. The controller remembers
the last file path used."
::= { clsStreamingTransferConfig 5 }
clsStreamingTransferStart OBJECT-TYPE
SYNTAX INTEGER {
initiate(1),
none(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether the file transfer
operation started or not.
A value of initiate(1) indicates that, the transfer
operation is started.
A value of none(2) indicates that, no operation is
started"
DEFVAL { none }
::= { clsStreamingTransferConfig 6 }
clsTransferHttpStreamingUsername OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies username of CCO server.
Specific to http/cco mode"
::= { clsStreamingTransferConfig 7 }
clsTransferHttpStreamingPassword OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies password of CCO server.
Specific to http/cco mode"
::= { clsStreamingTransferConfig 8 }
clsTransferHttpStreamingSuggestedVersion OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents suggested image version to
be downloaded from CCO.Specific to http/cco mode"
::= { clsStreamingTransferConfig 9 }
clsTransferHttpStreamingLatestVersion OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents latest image version to
be downloaded from CCO.Specific to http/cco mode"
::= { clsStreamingTransferConfig 10 }
clsTransferHttpStreamingCcoPoll OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents recent CCO Polled time"
::= { clsStreamingTransferConfig 11 }
clsTransferStreamingServerPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents streaming server port
for https/sftp"
::= { clsStreamingTransferConfig 12 }
clsTransferStreamingUsername OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies username of server.
Specific to https/sftp mode"
::= { clsStreamingTransferConfig 13 }
clsTransferStreamingPassword OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies password of server.
Specific to https/sftp mode"
::= { clsStreamingTransferConfig 14 }
clsTransferStreamingOptimizedJoinEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specified the state of the optimized
join feature."
::= { clsStreamingTransferConfig 15 }
-- ******************************************************
-- Time configuration of controller
-- ******************************************************
clsTimeZone OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies timezone for the controller.
Enter the timezone location index.
1. (GMT-12:00) International Date Line West
2. (GMT-11:00) Samoa
3. (GMT-10:00) Hawaii
4. (GMT -9:00) Alaska
5. (GMT -8:00) Pacific Time (US and Canada)
6. (GMT -7:00) Mountain Time (US and Canada)
7. (GMT -6:00) Central Time (US and Canada)
8. (GMT -5:00) Eastern Time (US and Canada)
9. (GMT -4:00) Altantic Time (Canada)
10. (GMT -3:00) Buenos Aires (Agentina)
11. (GMT -2:00) Mid-Atlantic
12. (GMT -1:00) Azores
13. (GMT) London, Lisbon, Dublin, Edinburgh
14. (GMT +1:00) Amsterdam, Berlin, Rome, Vienna
15. (GMT +2:00) Jerusalem
16. (GMT +3:00) Baghdad
17. (GMT +4:00) Muscat, Abu Dhabi
18. (GMT +4:30) Kabul
19. (GMT +5:00) Karachi, Islamabad, Tashkent
20. (GMT +5:30) Colombo, Kolkata, Mumbai, New Delhi
21. (GMT +5:45) Katmandu
22. (GMT +6:00) Almaty, Novosibirsk
23. (GMT +6:30) Rangoon
24. (GMT +7:00) Saigon, Hanoi, Bangkok, Jakatar
25. (GMT +8:00) HongKong, Bejing, Chongquing
26. (GMT +9:00) Tokyo, Osaka, Sapporo
27. (GMT +9:30) Darwin
28. (GMT+10:00) Sydney, Melbourne, Canberra
29. (GMT+11:00) Magadan, Solomon Is., New Caledonia
30. (GMT+12:00) Kamchatka, Marshall Is., Fiji"
::= { clsConfigGeneral 1 }
clsTimeZoneDescription OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the timezone description
for the controller."
::= { clsConfigGeneral 2 }
clsMaxClientsTrapThreshold OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the threshold for number
of clients on the controller to trigger a trap.
The trap ciscoLwappMaxClientsReached
will be triggered once the count of clients
on the controller reaches this limit and the
clsMaxClientsTrapEnabled is enabled."
::= { clsConfigGeneral 3 }
clsMaxRFIDTagsTrapThreshold OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the threshold for number
of RFID tags on the controller to trigger a trap.
The trap ciscoLwappMaxRFIDTagsReached
will be triggered once the count of RFID tags
on the controller reaches this limit and the
clsMaxRFIDTagsTrapEnabled is enabled."
::= { clsConfigGeneral 4 }
clsSensorTemperature OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
UNITS "Centigrade"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents current internal temperature of
the unit in Centigrade"
::= { clsConfigGeneral 6 }
-- ******************************************************
-- Lawful Interception Configuration
-- ******************************************************
clsLiStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether lawful intercept is enabled
for the flexconnect access points connected to the
wireless LAN Controller.
A value of 'true' indicates that lawful intercept is
enabled.
A value of 'false' indicates that lawful intercept is
disabled.
This config is applicable for flexconnect access points."
DEFVAL { false }
::= { clsLiConfigGeneral 1 }
clsLiReportingInterval OBJECT-TYPE
SYNTAX TimeInterval
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the interval at which AP needs to
send LI statistical information to the WLC. Interval is in the
range of 60 - 600 seconds.
This config is applicable for flexconnect access points."
DEFVAL { 60 }
::= { clsLiConfigGeneral 2 }
clsLiAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the IP address type of the syslog
server to which the LI statistics will be sent.
This config is applicable for flexconnect access points."
::= { clsLiConfigGeneral 3 }
clsLiAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the IP address of the syslog server
to which LI statistics needs to be sent.
This config is applicable for flexconnect access points."
::= { clsLiConfigGeneral 4 }
-- ******************************************************
-- syslog configuration Table
-- ******************************************************
cLSysLogConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF CLSysLogConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table represents multiple syslog servers to
which the the syslog messages will be sent to by the
controller."
::= { clsSyslogIpConfig 1 }
cLSysLogConfigEntry OBJECT-TYPE
SYNTAX CLSysLogConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table provides information about
the host to which the syslog messages will be sent to."
INDEX { cLSysLogServerIndex }
::= { cLSysLogConfigTable 1 }
CLSysLogConfigEntry ::= SEQUENCE {
cLSysLogServerIndex Unsigned32,
cLSysLogAddressType InetAddressType,
cLSysLogAddress InetAddress,
cLSysLogHostRowStatus RowStatus
}
cLSysLogServerIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the index of the host to
which syslog messages will be sent."
::= { cLSysLogConfigEntry 1 }
cLSysLogAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object represents the IP address type of
the host to which syslog messages will be sent.
'DNS' is used when the hostname of the server
is configured."
::= { cLSysLogConfigEntry 2 }
cLSysLogAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the IP address or hostname
of the host to which syslog messages will be sent."
::= { cLSysLogConfigEntry 3 }
cLSysLogHostRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the status column for this row and is used
to create and delete specific instances of rows in
this table."
::= { cLSysLogConfigEntry 4 }
cLSysArpUnicastEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether ARP unicast
is enabled or disabled on the controller.
A value of 'true' indicates that, the ARP
unicast is enabled.
A value of 'false' indicates that, the ARP
unicast is disabled."
DEFVAL { false }
::= { clsConfig 7 }
cLSysBroadcastForwardingEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether broadcast forwarding
is enabled or disabled on the controller.
A value of 'true' indicates that, the broadcast
forwarding is enabled.
A value of 'false' indicates that, the broadcast
forwarding is disabled."
DEFVAL { false }
::= { clsConfig 9 }
cLSysLagModeEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether Link Aggregation(LAG)
mode is enabled or disabled on the controller.
A value of 'true' indicates that, the LAG mode
is enabled.
A value of 'false' indicates that, the LAG mode
is disabled on the controller."
DEFVAL { false }
::= { clsConfig 10 }
clsConfigProductBranchVersion OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..30))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the branch name of the specific
controller branch. For Mesh branches, this string has
the value M(Mesh). Zero length string is returned if
there is no branch name. This string is append to the
product version for display purposes. For example,
if the mesh product version is 4.1.191.10, a manager
application may the version string as 4.1.191.10M
(Mesh)"
::= { clsConfig 11 }
clsConfigDhcpProxyEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether the DHCP proxy
option is enabled or disabled.
A value of 'true' indicates that, the proxy option
is enabled on the controller.
A value of 'false' indicates that, the proxy option
is disabled on the controller."
DEFVAL { false }
::= { clsConfig 12 }
-- ******************************************************
-- IGMP configuration Table
-- ******************************************************
cLSysMulticastIGMPSnoopingEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether Multicast IGMP Snooping
is enabled or disabled on the controller.
A value of 'true' indicates that the Multicast IGMP
Snooping is enabled. To enable this,
agentNetworkMulticastMode/clsConfigMulticastEnabled
must not be in disabled state.
A value of 'false' indicates that the Multicast IGMP
Snooping is disabled on the controller."
DEFVAL { false }
::= { cLSysMulticastIGMP 1 }
cLSysMulticastIGMPSnoopingTimeout OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the IGMP timeout, in seconds.
To set this value, cLSysMulticastIGMPSnoopingEnabled
must be set to true. When the timeout expires, the
controller sends a query on all WLANs, causing all
clients that are listening to a multicast group to
send a packet back to the controller."
::= { cLSysMulticastIGMP 2 }
cLSysMulticastIGMPQueryInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the IGMP query interval, in seconds.
To set this value, cLSysMulticastIGMPSnoopingEnabled must
be set to true."
::= { cLSysMulticastIGMP 3 }
cLSysMulticastLLBridgingStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether link local is enabled
or disabled on the controller.
A value of 'true' indicates that the link local is
enabled.
A value of 'false' indicates that the link local is
disabled on the controller."
DEFVAL { false }
::= { cLSysMulticastIGMP 4 }
-- stats-timer config.
--
-- ********************************************************************
-- clsPortModeConfigTable
-- ********************************************************************
clsPortModeConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF ClsPortModeConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table represents the entries for physical port related
parameters."
::= { cLSPortModeConfig 1 }
clsPortModeConfigEntry OBJECT-TYPE
SYNTAX ClsPortModeConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains the switch's physical port,
phyical mode related attribues. Each entry exists
for available physical interface. Entries
cannot be created or deleted by the user."
INDEX { clsPortDot1dBasePort }
::= { clsPortModeConfigTable 1 }
ClsPortModeConfigEntry ::= SEQUENCE {
clsPortDot1dBasePort Unsigned32,
clsPortModePhysicalMode INTEGER,
clsPortModePhysicalStatus INTEGER,
clsPortModeSfpType SnmpAdminString,
clsPortUpDownCount Counter32,
clsPortModeMaxSpeed INTEGER
}
clsPortDot1dBasePort OBJECT-TYPE
SYNTAX Unsigned32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents unique unsigned integer value
which identifies the base port number."
::= { clsPortModeConfigEntry 1 }
clsPortModePhysicalMode OBJECT-TYPE
SYNTAX INTEGER {
autoNegotiate(1),
half10(2),
full10(3),
half100(4),
full100(5),
full1000sx(6),
half1000(7),
full1000(8),
half10000(9),
full10000(10)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The object specifies the speed mode of switch port.
A value of autoNegotiate indicates that, port senses
speed and negotiates with the port at the other end
of the link for data transfer operation
A value of half10 indicates that, port operates at
10mbps half duplex speed.
A value of full10 indicates that, port operates at
10mbps full duplex speed.
A value of half100 indicates that, port operates at
100mbps half duplex speed.
A value of full100 indicates that, port operates at
100mbps full duplex speed.
A value of full1000sx indicates that, port operates at
1000mbps full duplex speed over multi mode fiber.
A value of half1000 indicates that, port operates at
1000mbps half duplex speed.
A value of full1000 indicates that, port operates at
1000mbps full duplex speed.
A value of half10000 indicates that, port operates at
10000mbps half duplex speed.
A value of full10000 indicates that, port operates at
10000mbps full duplex speed."
DEFVAL { autoNegotiate }
::= { clsPortModeConfigEntry 2 }
clsPortModePhysicalStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
autonegotiate(2),
half10(3),
full10(4),
half100(5),
full100(6),
full1000sx(7),
half1000(8),
full1000(9),
half10000(10),
full10000(11),
half2500(12),
full2500(13),
half5000(14),
full5000(15)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the switch port's current physical
speed status.
A value of unknown indicates that, the speed of the
port is not known
A value of autoNegotiate indicates that, port senses
speed and negotiates with the port at the other end
of the link for data transfer operation
A value of half10 indicates that, port operates at
10mbps half duplex speed.
A value of full10 indicates that, port operates at
10mbps full duplex speed.
A value of half100 indicates that, port operates at
100mbps half duplex speed.
A value of full100 indicates that, port operates at
100mbps full duplex speed
A value of full1000sx indicates that, port operates at
1000mbps full duplex speed over multi mode fiber.
A value of half1000 indicates that, port operates at
1000mbps half duplex speed.
A value of full1000 indicates that, port operates at
1000mbps full duplex speed.
A value of half2500 indicates that, port operates at
2500mbps half duplex speed.
A value of full2500 indicates that, port operates at
2500mbps full duplex speed.
A value of half5000 indicates that, port operates at
5000mbps half duplex speed.
A value of full5000 indicates that, port operates at
5000mbps full duplex speed.
A value of half10000 indicates that, port operates at
10000mbps half duplex speed.
A value of full10000 indicates that, port operates at
10000mbps full duplex speed."
DEFVAL { unknown }
::= { clsPortModeConfigEntry 3 }
clsPortModeSfpType OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the SFP type of the port.
When there is no SFP connected to the port, the
string is represented with value as Not Present."
::= { clsPortModeConfigEntry 4 }
clsPortUpDownCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the total number of
up/down count of the port. Every time the
value of ifOperStatus is changed, this MIB
object should be incremented."
::= { clsPortModeConfigEntry 5 }
clsPortModeMaxSpeed OBJECT-TYPE
SYNTAX INTEGER {
autonegotiate(1),
full1000(2),
full2500(3),
full5000(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The object specifies the maxspeed mode of MGIG port.
A value of full1000 indicates that, port will operate
at maximum autonegotiated speed of 1000mbps or less.
A value of full2500 indicates that, port will operate
at maximum autonegotiated speed of 2500mbps or less.
A value of full5000 indicates that, port will operate
at maximum autonegotiated speed of 5000mbps or less."
DEFVAL { autonegotiate }
::= { clsPortModeConfigEntry 6 }
-- ********************************************************************
-- core dump configuration
-- ********************************************************************
clsCoreDumpTransferEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether the core dump
file transfer is enabled or disabled.
A value of 'true' indicates that, the core dump
file transfer is enabled.
A value of 'false' indicates that , the core dump
file transfer is disabled"
DEFVAL { false }
::= { clsCoreDump 1 }
clsCoreDumpTransferMode OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
ftp(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the Core Dump Transfer Mode.
A value 'unknown' cannot be set.
A value of ftp indicates that, mode is ftp.
FTP attributes clsCoreDumpServerIpAddress,
clsCoreDumpFileName, clsCoreDumpUserName, clsCoreDumpPassword
can be set.
unknown when the value of clsCoreDumpTransferEnable
is disabled."
DEFVAL { ftp }
::= { clsCoreDump 2 }
clsCoreDumpServerIPAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the IP address type of the server."
::= { clsCoreDump 3 }
clsCoreDumpServerIPAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the IP address of the server where the
core-dump will be uploaded. The type of this address is
determined by the value of clsCoreDumpServerIpAddressType
object."
::= { clsCoreDump 4 }
clsCoreDumpFileName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the filename of the core-dump by which
it gets uploaded on the server."
::= { clsCoreDump 5 }
clsCoreDumpUserName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the login name at the FTP server."
::= { clsCoreDump 6 }
clsCoreDumpPassword OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the login password of the FTP server."
::= { clsCoreDump 7 }
clsConfigMulticastEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether global multicast is
enabled or disabled.
A value of 'true' indicates that the multicast option is
enabled on the controller.
A value of 'false' indicates that the multicast option is
disabled on the controller."
DEFVAL { false }
::= { clsConfig 16 }
clsConfigArpUnicastEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether arp is forwarded in
unicast format or the default mode of Multicast.
A value of 'true' indicates that, the arp packets
for passive client will be unicasted.
A value of 'false' indicates that, the arp-packets
will be sent based on the config of multicast mode
multicast/unicast."
DEFVAL { false }
::= { clsConfig 37 }
-- ********************************************************************
-- Multicast MLDSnooping configuration
-- ********************************************************************
cLSysMulticastMLDSnoopingEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether multicast MLD Snooping is enabled
or disabled on the controller.
A value of 'true' indicates that the multicast MLD Snooping
is enabled. To enable this, agentNetworkMulticastMode/
clsConfigMulticastEnabled must not be in disabled state.
A value of 'false' indicates that the multicast MLD Snooping
is disabled on the controller."
DEFVAL { false }
::= { cLSysMulticastMLD 1 }
cLSysMulticastMLDSnoopingTimeout OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the MLD timeout, in seconds.
To set this value, cLSysMulticastMLDSnoopingEnabled
must be set to True. When the timeout expires, the
controller sends a query on all WLANs, causing all
clients that are listening to a multicast group to
send a packet back to the controller."
DEFVAL { 60 }
::= { cLSysMulticastMLD 2 }
cLSysMulticastMLDQueryInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the MLD query interval, in seconds.
To set this value, cLSysMulticastMLDSnoopingEnabled must
be set to true."
DEFVAL { 20 }
::= { cLSysMulticastMLD 3 }
-- stats-timer config.
--
-- ********************************************************************
-- * System Realtime Stats Timer Interval
-- ********************************************************************
clsSysRealtimeStatsTimer OBJECT-TYPE
SYNTAX Unsigned32 (2..5)
UNITS "Seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the realtime stats interval of
the system. There are 2 stats modes: realtime and
normal. Realtime interval is much less than normal mode."
DEFVAL { 5 }
::= { clsConfigStats 1 }
-- ********************************************************************
-- * System Normal Stats Timer Interval
-- ********************************************************************
clsSysNormalStatsTimer OBJECT-TYPE
SYNTAX Unsigned32 (10..180)
UNITS "Seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the normal stats interval of the system.
There are 2 stats modes: realtime and normal. Realtime interval
is much less than normal mode."
DEFVAL { 180 }
::= { clsConfigStats 2 }
-- ********************************************************************
-- * System Sampling Statistics Interval
-- ********************************************************************
clsSysStatsSamplingInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the sampling interval of the system,
which is applied to WLC and APs connected to this WLC.
WLC and APs poll specific data every sampling interval."
::= { clsConfigStats 3 }
-- ********************************************************************
-- * System Average Statistics Interval
-- ********************************************************************
clsSysStatsAverageInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the average statistics interval of
the system, which is applied to WLC and APs connected to
this WLC. This interval works as a time window for
calculating the average value of the data polled by WLC/AP
every sampling interval."
::= { clsConfigStats 4 }
-- Alarm service config.
--
-- ********************************************************************
-- * Alarm Hold Time
-- ********************************************************************
clsAlarmHoldTime OBJECT-TYPE
SYNTAX Unsigned32 (0..3600)
UNITS "second"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the time in seconds for which
an alarm object should be soaked when its on/off
state is changed."
DEFVAL { 6 }
::= { clsAlarmObjects 1 }
-- ********************************************************************
-- * Alarm Retransmit Interval
-- ********************************************************************
clsAlarmTrapRetransmitInterval OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
UNITS "second"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the trap retransmission
interval in seconds. Setting this value to 0 means
no retransmission."
DEFVAL { 0 }
::= { clsAlarmObjects 2 }
-- System-wide thresholds config.
--
-- ********************************************************************
-- * Controller CPU usage threshold
-- ********************************************************************
clsSysControllerCpuUsageThreshold OBJECT-TYPE
SYNTAX Unsigned32 (0..100)
UNITS "Percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the CPU usage threshold on a
controller.
Setting this value to 0 means no threshold."
DEFVAL { 0 }
::= { clsSysThresholdConfig 1 }
-- ********************************************************************
-- * Controller memory usage threshold
-- ********************************************************************
clsSysControllerMemoryUsageThreshold OBJECT-TYPE
SYNTAX Unsigned32 (0..100)
UNITS "Percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the memory usage threshold on a
controller.
Setting this value to 0 means no threshold."
DEFVAL { 0 }
::= { clsSysThresholdConfig 2 }
-- ********************************************************************
-- * AP CPU usage threshold
-- ********************************************************************
clsSysApCpuUsageThreshold OBJECT-TYPE
SYNTAX Unsigned32 (0..100)
UNITS "Percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the CPU usage threshold on a
AP. Setting this value to 0 means no threshold."
DEFVAL { 0 }
::= { clsSysThresholdConfig 3 }
-- ********************************************************************
-- * AP memory usage threshold
-- ********************************************************************
clsSysApMemoryUsageThreshold OBJECT-TYPE
SYNTAX Unsigned32 (0..100)
UNITS "Percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the memory usage threshold on a
AP. Setting this value to 0 means no threshold."
DEFVAL { 0 }
::= { clsSysThresholdConfig 4 }
-- ********************************************************************
-- NMHeartBeat Configuration
-- ********************************************************************
clsNMHeartBeatEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether heart beat trap to network
manager is enabled or disabled.
A value of 'true' indicates that, network manager
heart beat feature is enabled.
A value of 'false' indicates that, network manager
heart beat feature is disabled."
DEFVAL { false }
::= { clsNMHeartBeat 1 }
clsNMHeartBeatInterval OBJECT-TYPE
SYNTAX Unsigned32 (1..65535)
UNITS "Seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the heart beat trap interval in
seconds to network manager."
DEFVAL { 180 }
::= { clsNMHeartBeat 2 }
clsSysLogEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether debug log to syslog is
enabled or disabled.
A value of 'true' indicates that debug log to syslog is
enabled on the controller.
A value of 'false' indicates that debug log to syslog is
disabled on the controller."
DEFVAL { false }
::= { clsConfig 22 }
clsSysLogLevel OBJECT-TYPE
SYNTAX INTEGER {
emergencies(1),
alerts(2),
critical(3),
errors(4),
warnings(5),
notifications(6),
informational(7),
debugging(8)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the debug log level that
can be send to syslog on the controller.
The level for syslog are:
emergencies - system is unusable
alerts - action must be taken immediately
critical - critical conditions
errors - error conditions
warnings - warning conditions
notifications - normal but signification condition
informational - Informational
debugging - debug-level messages."
::= { clsConfig 23 }
clsConfigApMaxCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"This object represents the the max number of AP's
supported in WLC."
DEFVAL { 0 }
::= { clsConfig 24 }
clsUSBMode OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether USB is enabled or disabled.
A value of 'true' indicates that, USB is enabled.
A value of 'false' indicates that, USB is disabled."
DEFVAL { true }
::= { clsConfig 40 }
-- ********************************************************************
-- * Trap Black List Table
-- ********************************************************************
clsTrapBlacklistTable OBJECT-TYPE
SYNTAX SEQUENCE OF ClsTrapBlacklistEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table represents the trap blacklist.
Traps in black list will be blocked while
sending out."
::= { cLSTrapSwitchConfig 1 }
clsTrapBlacklistEntry OBJECT-TYPE
SYNTAX ClsTrapBlacklistEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table provides the name of trap
in trap blacklist."
INDEX { clsBlacklistTrapIndex }
::= { clsTrapBlacklistTable 1 }
ClsTrapBlacklistEntry ::= SEQUENCE {
clsBlacklistTrapIndex Unsigned32,
clsTrapNameInBlacklist SnmpAdminString,
clsTrapBlacklistRowStatus RowStatus
}
clsBlacklistTrapIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents trap uniquely in blacklist."
::= { clsTrapBlacklistEntry 1 }
clsTrapNameInBlacklist OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies name of trap in trap blacklist."
::= { clsTrapBlacklistEntry 2 }
clsTrapBlacklistRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the status column for this row and used
to create and delete specific instances of rows
in this table."
::= { clsTrapBlacklistEntry 3 }
clsLinkLocalBridgingEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether link local bridging on
client packets is enabled or disabled.
A value of 'true' indicates that link local bridging on
client packets is enabled on the controller.
A value of 'false' indicates that link local bridging on
client packets is disabled on the controller."
::= { clsConfig 26 }
clsNetworkHttpProfCustomPort OBJECT-TYPE
SYNTAX Unsigned32 (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the custom port
for http profiling."
DEFVAL { 80 }
::= { clsConfig 27 }
clsWGBForcedL2RoamEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether forced L2 Roaming
is enabled or disable for WGB clients.
A value of 'true' indicates that, forced L2 Roaming
is enabled for WGB clients.
A value of 'false' indicates that, forced L2 Roaming
is disabled for WGB clients."
DEFVAL { false }
::= { clsConfig 38 }
clsCrashSystem OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether to reset the switch
with a crash or not.
A value of 'true' indicates that, the switch
would crash.
A value of 'false'indicates that, not crashed."
DEFVAL { false }
::= { clsConfig 99 }
-- ********************************************************************
-- clsIconCfg
-- ********************************************************************
clsIconCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF ClsIconCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table represents the generic icon file configuration in
the controller. It has only one argument; the icon file name
which shall be used to index the rows in this table."
::= { clsConfig 28 }
clsIconCfgEntry OBJECT-TYPE
SYNTAX ClsIconCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents the icon config entry"
INDEX { clsIconCfgFileName }
::= { clsIconCfgTable 1 }
ClsIconCfgEntry ::= SEQUENCE {
clsIconCfgFileName SnmpAdminString,
clsIconCfgFileType SnmpAdminString,
clsIconCfgLangCode SnmpAdminString,
clsIconCfgWidth Unsigned32,
clsIconCfgHeight Unsigned32,
clsIconCfgRowStatus RowStatus
}
clsIconCfgFileName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the icon filename"
::= { clsIconCfgEntry 1 }
clsIconCfgFileType OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the filetype of the icon file"
DEFVAL { "" }
::= { clsIconCfgEntry 2 }
clsIconCfgLangCode OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (2..3))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the language code associated
with the icon file"
DEFVAL { "" }
::= { clsIconCfgEntry 3 }
clsIconCfgWidth OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the width of the icon file"
DEFVAL { 0 }
::= { clsIconCfgEntry 4 }
clsIconCfgHeight OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the height of the icon file"
DEFVAL { 0 }
::= { clsIconCfgEntry 5 }
clsIconCfgRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies status column for this row
and used to create and delete specific
instances of rows in this table."
::= { clsIconCfgEntry 6 }
-- ***************************************************************
-- ** Http Proxy and Dns Server Ip********************************
-- ***************************************************************
clsNetworkHttpProxyPort OBJECT-TYPE
SYNTAX Unsigned32 (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the custom port
for http proxy"
::= { clsConfig 29 }
clsNetworkHttpProxyIpType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the http proxy IP address
type"
DEFVAL { 0 }
::= { clsConfig 30 }
clsNetworkHttpProxyIp OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This Object specifies the IP address of the
http proxy"
::= { clsConfig 31 }
clsNetworkDnsServerIpType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the DNS server IP address
type"
DEFVAL { 0 }
::= { clsConfig 32 }
clsNetworkDnsServerIp OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This Object specifies the IP address of the DNS server"
::= { clsConfig 33 }
-- ***************************************************************
-- ** Calea Configuration *******************************
-- ***************************************************************
clsConfigCaleaEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether CALEA lawful Intercept
feature enabled or disabled.
A value of 'true' indicates that, CALEA lawful Intercept
feature enabled.
A value of 'false'indicates that, CALEA lawful Intercept
feature disabled."
DEFVAL { false }
::= { clsConfigCalea 1 }
clsConfigCaleaServerIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This object specifies the address of the CALEA
lawful intercept server"
::= { clsConfigCalea 2 }
clsConfigCaleaPort OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies about port number of CALEA lawful
intercept server"
DEFVAL { 0 }
::= { clsConfigCalea 3 }
clsConfigCaleaAccountingInterval OBJECT-TYPE
SYNTAX Unsigned32 (1..1440)
UNITS "Minutes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the accounting interval of CALEA
lawful intercept."
DEFVAL { 8 }
::= { clsConfigCalea 4 }
clsConfigCaleaVenue OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the CALEA Venue description"
::= { clsConfigCalea 5 }
clsConfigCaleaServerIpType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This Object specifies the address type of the
CALEA lawful intercept server"
DEFVAL { ipv4 }
::= { clsConfigCalea 6 }
clsConfigCaleaServerIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This Object specifies the IPv4 address of the CALEA
lawful intercept server"
::= { clsConfigCalea 7 }
clSysLogIPSecStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies Syslog over IPSEC Status
A value of 'true' indicates that, syslog over
ipsec is enabled.
A value of 'false' indicates that syslog over
ipsec is disabled."
DEFVAL { false }
::= { clsConfig 35 }
clSysLogIPSecProfName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..31))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies IPsec profile to be used
for syslog over IPSec."
::= { clsConfig 36 }
-- ********************************************************************
-- * Status Objects
-- ********************************************************************
cLSysLagModeInTransition OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents whether the LAG mode is
in transition or not.
A value of 'true' indicates that, the LAG mode
is in transition and the controller has to be
rebooted to take effect.
A value of 'false' indicates that, the LAG mode
is not in transition."
DEFVAL { false }
::= { clsStatus 1 }
clsRAIDStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF ClsRAIDStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table represents the RAID and rebuild status."
::= { clsStatus 2 }
clsRAIDStatusEntry OBJECT-TYPE
SYNTAX ClsRAIDStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table provides RAID drive status."
INDEX { clsRAIDDriveNumber }
::= { clsRAIDStatusTable 1 }
ClsRAIDStatusEntry ::= SEQUENCE {
clsRAIDDriveNumber Unsigned32,
clsRAIDStatus INTEGER,
clsRAIDRebuildPercentage Unsigned32
}
clsRAIDDriveNumber OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates drive number in the system."
::= { clsRAIDStatusEntry 1 }
clsRAIDStatus OBJECT-TYPE
SYNTAX INTEGER {
good(1),
bad(2),
badstartrebuild(3),
rebuilding(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the status of the drive.
A value of good indicates that, hard disk in RAID
volume is good.
A value of bad indicates that, hard disk in RAID
volume is bad.
A value of badstartrebuild indicates that, hard disk
in RAID volume is bad and rebuild is triggered.
A value of rebuilding indicates that, hard disk in
RAID volume is rebuilding."
DEFVAL { good }
::= { clsRAIDStatusEntry 2 }
clsRAIDRebuildPercentage OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the rebuild percentage of drive.
This object is applicable only when RAID status is
rebuilding."
::= { clsRAIDStatusEntry 3 }
-- ********************************************************************
-- * Emergency Image Version
-- ********************************************************************
clsEmergencyImageVersion OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents Cisco recommends installing Cisco
Unified Wireless Network Controller Boot Software ,
(*_ER.aes , where star denotes the version of the controller
image ) on all controller platforms. If this ER.aes is not
installed, the controller would not be able to show the
Emergency Image Version correctly(or Field Recovery Image
Version), and would be shown as 'N/A'. The ER.aes files are
independent from the controller software files. Any controller
software file can be run with any ER.aes file. However,
installing the latest boot software file (*_ER.aes , where
star denotes the controller version) ensures that the boot
software modifications in all of the previous and current
boot software ER.aes files are installed."
::= { clsImageInfo 1 }
-- Security oids
clsSecStrongPwdCaseCheck OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the whether password case check
is enabled or disabled.
A value of 'true' indicates that, the new password must
contain characters from at least three of the following
classes : lowercase letters, uppercase letters, digits
and special characters.
A value of 'false' indicates that, no checks for
password."
DEFVAL { false }
::= { clsSecurityGroup 1 }
clsSecStrongPwdConsecutiveCheck OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether the password consecutive
check is enabled or disabled.
A value of 'true' indicates that, the password provided
should not have a character repeated more than thrice
consecutively.
A value of 'false' indicates that, character repeatation
check disabled"
DEFVAL { false }
::= { clsSecurityGroup 2 }
clsSecStrongPwdDefaultCheck OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether default check for the
passwords is enabled or disabled.
A value of 'true' indicates that, the new password must
not be 'cisco', 'ocsic', 'admin', 'nimda' or any variant
obtained by changing the capitalization of letters therein,
or by substituting '1' '|' or '!' for i, and/or substituting
'0' for 'o', and/or substituting '$' for 's'.
A value of 'false' indicates that, default check disabled for
the password."
DEFVAL { false }
::= { clsSecurityGroup 3 }
clsSecStrongPwdAsUserNameCheck OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether username check for the
password is enabled or disabled.
A value of 'true' indicates that, the new password must
not be same as the associated username or the reversed
username.
A value of 'false' indicates that, check for user name in
the password is disabled"
DEFVAL { false }
::= { clsSecurityGroup 4 }
clsSecStrongPwdPositionCheck OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether position check for the
passwords is enabled or disabled.
A value of 'true' indicates that, position check for
the password is enabled.
A value of 'false' indicates that, position check for
the password is disabled."
DEFVAL { false }
::= { clsSecurityGroup 5 }
clsSecStrongPwdDigitCheck OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether digit check for the
passwords is enabled or disabled.
A value of 'true' indicates that, digit check for the
passwords is enabled.
A value of 'false' indicates that, digit check for the
passwords is disabled."
DEFVAL { false }
::= { clsSecurityGroup 6 }
clsSecStrongPwdMinLength OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the minimum password length for the
passwords configured in controller."
::= { clsSecurityGroup 7 }
clsSecStrongPwdMinUpperCase OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the minimum number of upper case
characters for the passwords configured in controller."
::= { clsSecurityGroup 8 }
clsSecStrongPwdMinLowerCase OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the minimum number of upper case
characters for the passwords configured in controller."
::= { clsSecurityGroup 9 }
clsSecStrongPwdMinDigits OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the minimum number of digits for the
passwords configured in controller."
::= { clsSecurityGroup 10 }
clsSecStrongPwdMinSpecialChar OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the minimum special characters for the
passwords configured in controller."
::= { clsSecurityGroup 11 }
clsSecWlanCCEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents whether WLAN common criteria
is enabled or disabled.
A value of 'true' indicates that, WLAN common criteria
is enabled.
A value of 'false' indicates that, WLAN common criteria
is disabled."
DEFVAL { false }
::= { clsSecurityGroup 12 }
clsSecUcaplEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents whether UCAPL is enabled or
disabled.
A value of 'true' indicates that, UCAPL is enabled.
A value of 'false' indicates that, UCAPL is disabled."
DEFVAL { false }
::= { clsSecurityGroup 13 }
clsSecMgmtUsrLockoutEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether lockout for the
management user is enabled or disabled.
A value of 'true'indicates that, lockout for the
management user is enabled.
A value of 'false' indicates that, lockout for the
management user is disabled."
DEFVAL { false }
::= { clsSecurityGroup 14 }
clsSecMgmtUsrLockoutTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the lockout time for the
management user configured in controller."
::= { clsSecurityGroup 15 }
clsSecMgmtUsrLockoutAttempts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the lockout attempts for the
management user configured in controller."
::= { clsSecurityGroup 16 }
clsSecSnmpv3UsrLockoutEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether the lockout for the
SNMP version3 user is enabled or disabled.
A value of 'true' indicates that, lockout for the
SNMPV3 user is enabled.
A value of 'false' indicates that, lockout for the
SNMPV3 user is disabled."
DEFVAL { false }
::= { clsSecurityGroup 17 }
clsSecSnmpv3UsrLockoutTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the lockout time for the
SNMP v3 user configured in controller."
::= { clsSecurityGroup 18 }
clsSecSnmpv3UsrLockoutAttempts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the lockout attempts for the
SNMP v3 user configured in controller."
::= { clsSecurityGroup 19 }
clsSecMgmtUsrLockoutLifetime OBJECT-TYPE
SYNTAX Unsigned32 (0..180)
UNITS "days"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the lockout life time
for the management user configured in controller."
::= { clsSecurityGroup 20 }
clsSecSnmpv3UsrLockoutLifetime OBJECT-TYPE
SYNTAX Unsigned32 (0..180)
UNITS "days"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the lockout life time for the
SNMPV3 user configured in controller."
::= { clsSecurityGroup 21 }
-- ********************************************************************
-- * System Flash Size
-- ********************************************************************
clsSysFlashSize OBJECT-TYPE
SYNTAX Unsigned32
UNITS "KBytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the total flash memory
size in Kbytes."
::= { clsSysInfo 1 }
-- ********************************************************************
-- * System Memory Type
-- ********************************************************************
clsSysMemoryType OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the system memory type."
::= { clsSysInfo 2 }
-- ********************************************************************
-- * System Supported MAX Clients
-- ********************************************************************
clsSysMaxClients OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents max associated clients
supported per WLC"
::= { clsSysInfo 3 }
-- ********************************************************************
-- * Number of connected AP's
-- ********************************************************************
clsSysApConnectCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the count of AP's that are
connected with WLC"
::= { clsSysInfo 4 }
clsSysNetId OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the SysNetId which is the numeric string
to identify the system information like SysName"
::= { clsSysInfo 5 }
-- ********************************************************************
-- * WLC System Current Memory Usage
-- ********************************************************************
clsSysCurrentMemoryUsage OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the current percent usage
of system memory. This MIB object should be updated
every clsSysStatsSamplingInterval."
::= { clsSysInfo 6 }
-- ********************************************************************
-- * WLC System Average Memory Usage
-- ********************************************************************
clsSysAverageMemoryUsage OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the average percent usage
of system memory. The memory average usage should be
the average of memory-Usage during the time window
specified by clsSysStatsAverageInterval."
::= { clsSysInfo 7 }
-- ********************************************************************
-- * WLC System Current CPU Usage
-- ********************************************************************
clsSysCurrentCpuUsage OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the current percent usage of all CPUs.
This MIB should be updated every clsSysStatsSamplingInterval."
::= { clsSysInfo 8 }
-- ********************************************************************
-- * WLC System Average CPU Usage
-- ********************************************************************
clsSysAverageCpuUsage OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the average percent CPU usage.
The average CPU usage should be the average of CPU-Usage
during the time window specified by
clsSysStatsAverageInterval."
::= { clsSysInfo 9 }
-- ********************************************************************
-- * System Cpu Type
-- ********************************************************************
clsSysCpuType OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the cpu type."
::= { clsSysInfo 10 }
clsMaxRFIDTagsCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the maximum RFID tags present
on the controller."
::= { clsSysInfo 11 }
clsMaxClientsCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the maximum clients present
on the controller."
::= { clsSysInfo 12 }
clsApAssocFailedCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the count when Access Point
failed to associate with the controller."
::= { clsSysInfo 13 }
clsCurrentPortalClientCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the current portal clients present
on the controller."
::= { clsSysInfo 14 }
clsCurrentOnlineUsersCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the current all online clients present
on the controller."
::= { clsSysInfo 15 }
clsSysAbnormalOfflineCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the abnormal offline count for the wlc."
::= { clsSysInfo 16 }
clsSysFlashType OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the system Flash type."
::= { clsSysInfo 17 }
clsSysOpenUsersCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the current all online open
authentication clients present on the controller."
::= { clsSysInfo 18 }
clsSysWepPskUsersCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the current all online wep/psk
authentication clients present on the controller."
::= { clsSysInfo 19 }
clsSysPeapSimUsersCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the current all online
peap/sim authentication clients present on the
controller."
::= { clsSysInfo 20 }
clsSysPeapSimReqCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the PEAP/SIM request
on the controller."
::= { clsSysInfo 21 }
clsSysPeapSimReqSuccessCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the successful PEAP/SIM request
on the controller."
::= { clsSysInfo 22 }
clsSysPeapSimReqFailureCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the failed PEAP/SIM request
on the controller."
::= { clsSysInfo 23 }
clsSysNasId OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..31))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the SysNasId. NasId is used to
support Roaming, location-based service."
::= { clsSysInfo 24 }
clsSysCoChannelTrapRssiThreshold OBJECT-TYPE
SYNTAX Integer32
UNITS "dBm"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the minimum value of RSSI
considered for the trap of Co-Channel AP."
::= { clsSysInfo 25 }
clsSysAdjChannelTrapRssiThreshold OBJECT-TYPE
SYNTAX Integer32
UNITS "dBm"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the minimum value of RSSI
considered for the trap of Adj channel AP"
::= { clsSysInfo 26 }
clsSysClientTrapRssiThreshold OBJECT-TYPE
SYNTAX Integer32
UNITS "dBm"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the minimum value of RSSI
considered for the trap of client."
::= { clsSysInfo 27 }
clsSysCmxActiveConnections OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the count of active connections
present on the controller."
::= { clsSysInfo 28 }
-- ********************************************************************
-- * Individual CPU Usage
-- ********************************************************************
clsAllCpuUsage OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the CPU usage string."
::= { clsCpuInfo 1 }
-- ********************************************************************
-- * Lync Control Object
-- ********************************************************************
clsLyncState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether Lync is enabled on system.
A value of 'true' indicates that, Lync state is enabled.
A value of 'false' indicates that, Lync state is disabled."
DEFVAL { false }
::= { clsLyncInfo 1 }
clsLyncPort OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies about port number of Lync Service."
::= { clsLyncInfo 2 }
clsLyncProtocol OBJECT-TYPE
SYNTAX INTEGER {
http(1),
securehttp(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies about protocol of Lync Service.
A value of http indicates that, lync protocol is http.
A value of secure http indicates that, lync protocol is
secure http."
DEFVAL { http }
::= { clsLyncInfo 3 }
-- stats-timer config.
--
-- ********************************************************************
-- clsSysPing
-- ********************************************************************
clsSysPingTestTable OBJECT-TYPE
SYNTAX SEQUENCE OF ClsSysPingTestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table represents the test ping entries"
::= { clsStatus 3 }
clsSysPingTestEntry OBJECT-TYPE
SYNTAX ClsSysPingTestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each Entry (conceptual row) in the clsSysPingTest Table
represents a ping test id."
INDEX { clsSysPingTestId }
::= { clsSysPingTestTable 1 }
ClsSysPingTestEntry ::= SEQUENCE {
clsSysPingTestId Integer32,
clsSysPingTestIPAddressType InetAddressType,
clsSysPingTestIPAddress InetAddress,
clsSysPingTestSendCount Integer32,
clsSysPingTestReceivedCount Integer32,
clsSysPingTestStatus INTEGER,
clsSysPingTestMaxTimeInterval Unsigned32,
clsSysPingTestMinTimeInterval Unsigned32,
clsSysPingTestAvgTimeInterval Unsigned32,
clsSysPingTestRowStatus RowStatus
}
clsSysPingTestId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the index of pingtest ID"
::= { clsSysPingTestEntry 1 }
clsSysPingTestIPAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the IP address type"
::= { clsSysPingTestEntry 2 }
clsSysPingTestIPAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the IP address of the
device to which ping test to perform"
::= { clsSysPingTestEntry 3 }
clsSysPingTestSendCount OBJECT-TYPE
SYNTAX Integer32 (1..100)
UNITS "Bytes"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the number of bytes sent"
::= { clsSysPingTestEntry 4 }
clsSysPingTestReceivedCount OBJECT-TYPE
SYNTAX Integer32
UNITS "Bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the number of bytes received."
::= { clsSysPingTestEntry 5 }
clsSysPingTestStatus OBJECT-TYPE
SYNTAX INTEGER {
inprogress(1),
complete(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents status of the ping test.
A value of inprogress indicates that, ping test
in progress.
A value of complete indicates that, ping test
is complete."
::= { clsSysPingTestEntry 6 }
clsSysPingTestMaxTimeInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "mSec"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents maximum time interval in msec."
::= { clsSysPingTestEntry 7 }
clsSysPingTestMinTimeInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "mSec"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents minimum time interval in msec."
::= { clsSysPingTestEntry 8 }
clsSysPingTestAvgTimeInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "mSec"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents average time interval in msec."
::= { clsSysPingTestEntry 9 }
clsSysPingTestRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the status column for this row and used
to create and delete specific instances of rows
in this table."
::= { clsSysPingTestEntry 10 }
-- ********************************************************************
-- * Notification Control Object
-- ********************************************************************
clsSecStrongPwdCheckTrapEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether the ciscoLwappStrongPwdCheck
notification would be generated.
A value of 'true' indicates that, the agent generates
ciscoLwappStrongPwdCheck notification.
A value of 'false' indicates that, the agent doesn't
generates ciscoLwappStrongPwdCheck notification."
DEFVAL { true }
::= { ciscoLwappSysMIBNotifControlObjects 1 }
clsMaxClientsTrapEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether the
ciscoLwappMaxClientsReached notification would be
generated.
A value of 'true' indicates that, the agent generates
ciscoLwappMaxClientsReached notification.
A value of 'false' indicates that, the agent doesn't
generates ciscoLwappMaxClientsReached notification."
DEFVAL { true }
::= { ciscoLwappSysMIBNotifControlObjects 2 }
clsMaxRFIDTagsTrapEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether the
ciscoLwappMaxRFIDTagsReached notification would be
generated.
A value of 'true' indicates that, the agent generates
ciscoLwappMaxRFIDTagsReached notification.
A value of 'false' indicates that, the agent doesn't
generates ciscoLwappMaxRFIDTagsReached notification."
DEFVAL { true }
::= { ciscoLwappSysMIBNotifControlObjects 3 }
clsNacAlertTrapEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether the
Nac alert association/disassociation notification
would be generated.
A value of 'true' indicates that, the agent generates
nac alert notification.
A value of 'false' indicates that, the agent doesn't
generates nac alert notification."
DEFVAL { true }
::= { ciscoLwappSysMIBNotifControlObjects 4 }
clsMfpTrapEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether the
mfp trap notification would be generated.
A value of 'true' indicates that, the agent generates
mfp notification.
A value of 'false' indicates that, the agent doesn't
generates mfp notification."
DEFVAL { true }
::= { ciscoLwappSysMIBNotifControlObjects 5 }
-- ********************************************************************
-- * Notification Objects
-- ********************************************************************
clsSecStrongPwdManagementUser OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..24))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the management user who
enabled or disabled the strong password checks."
::= { ciscoLwappSysMIBNotifObjects 1 }
clsSecStrongPwdCheckType OBJECT-TYPE
SYNTAX INTEGER {
caseCheck(1),
consecutiveCheck(2),
defaultCheck(3),
usernameCheck(4),
allChecks(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the type of the check that was
enabled or disabled by the management user.
A value of 'caseCheck' indicates that, the caseCheck
was enabled or disabled by the management user.
A value of 'consecutiveCheck' indicates that, the
consecutiveCheck was enabled or disabled by the
management user.
A value of 'defaultCheck' indicates that, the
defaultCheck was enabled or disabled by the
management user.
A value of 'usernameCheck' indicates that, the
usernameCheck was enabled or disabled by the
management user.
A value of 'allChecks' indicates that, all checks
were enabled by the management user."
::= { ciscoLwappSysMIBNotifObjects 2 }
clsSecStrongPwdCheckOption OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents whether the strong password check
was enabled/disabled."
::= { ciscoLwappSysMIBNotifObjects 3 }
clsSysAlarmSet OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object represents whether this system alarm is
raise or clear.
A value of 'true' indicates that, this event is
enabled.
A value of 'false' indicates that, this even is
disabled."
::= { ciscoLwappSysMIBNotifObjects 4 }
clsSysMaxThresholdReachedClear OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object represents whether this event is
raise or clear.
A value of 'true' indicates that, this event is
cleared
A value of 'false' indicates that, this event is
raised."
::= { ciscoLwappSysMIBNotifObjects 5 }
clsTransferCfgAnalyzeResult OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
keyMismatch(2),
fileMissing(3),
contentMismatch(4)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object represents the config file analyze result.
A value of unknown indicates that, unknown error.
A value of keyMismatch indicates that, the encrypt
key mismatch.
A value of fileMissing indicates that, the config
file missing.
A value of contentMismatch indicates that, the file is
not intended for this product."
::= { ciscoLwappSysMIBNotifObjects 6 }
clsWlcSwVersionBeforeUpgrade OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object represents the wlc software version
info before upgrading fail."
::= { ciscoLwappSysMIBNotifObjects 7 }
clsWlcSwVersionAfterUpgrade OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object represents the wlc software version
info after upgrading fail."
::= { ciscoLwappSysMIBNotifObjects 8 }
clsWlcUpgradeFailReason OBJECT-TYPE
SYNTAX INTEGER {
unknownReason(1),
fileTypeMismatch(2),
fileCheckFail(3),
fileBackupToFlashFail(4)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object represents the wlc upgrade fail reason.
A value of unknownReason indicates that, reason is unknown.
A value of fileTypeMismatch indicates that, mismatch in
the file extension. please check whether the extension is
.aes.
A value of fileCheckFail indicates that, file check fail,
please check whether the image is correct.
A value of fileBackupToFlashFail indicates that, flash
backup fail, please check whether the flash space is
enough."
::= { ciscoLwappSysMIBNotifObjects 9 }
clsPortNumber OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents port number of MGIG port."
::= { ciscoLwappSysMIBNotifObjects 10 }
clsPortSpeed OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents port speed (Mbps) of MGIG Port."
::= { ciscoLwappSysMIBNotifObjects 11 }
clsPortSlot OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents slot number where MGIG port is present."
::= { ciscoLwappSysMIBNotifObjects 12 }
-- ********************************************************************
-- * Notifications
-- ********************************************************************
ciscoLwappSysInvalidXmlConfig NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"This notification will be sent whenever invalid configuration
is detected by XML."
::= { ciscoLwappSysMIBNotifs 1 }
ciscoLwappNoVlanConfigured NOTIFICATION-TYPE
OBJECTS { cldcClientAccessVLAN }
STATUS current
DESCRIPTION
"This notification will be sent whenever wired client tries to
associate without interface for specified VLAN.
cldcClientAccessVLAN represents the access VLAN of the client.
cldcClientMacAddress represents the MAC address of the client."
::= { ciscoLwappSysMIBNotifs 2 }
ciscoLwappStrongPwdCheckNotif NOTIFICATION-TYPE
OBJECTS {
clsSecStrongPwdManagementUser,
clsSecStrongPwdCheckType,
clsSecStrongPwdCheckOption
}
STATUS current
DESCRIPTION
"This notification will be sent whenever the management user
enables/disables the strong password rules.
clsSecStrongPwdManagementUser represents the management user
configuring the strong password security checks.
clsSecStrongPwdCheckType represents the type of check that has
been enabled or disabled.
clsSecStrongPwdCheckOption represents the option chosen by the
user."
::= { ciscoLwappSysMIBNotifs 3 }
ciscoLwappSysCpuUsageHigh NOTIFICATION-TYPE
OBJECTS {
clsSysCurrentCpuUsage,
clsSysAlarmSet
}
STATUS current
DESCRIPTION
"This notification will be sent whenever WLC detects
its CPU usage is higher than the threshold
configured in clsSysControllerCpuUsageThreshold, this
notification is generated with clsSysAlarmSet set to
true. When its CPU usage falls below the threshold
lately, this notification is generated with
clsSysAlarmSet set to false."
::= { ciscoLwappSysMIBNotifs 4 }
ciscoLwappSysMemoryUsageHigh NOTIFICATION-TYPE
OBJECTS {
clsSysCurrentMemoryUsage,
clsSysAlarmSet
}
STATUS current
DESCRIPTION
"This notification will be sent whenever WLC detects
its memory usage is higher than the threshold
configured in clsSysControllerMemoryUsageThreshold,
this notification is generated with clsSysAlarmSet set
to true. When its memory usage falls below the threshold
lately, this notification is generated with
clsSysAlarmSet set to false."
::= { ciscoLwappSysMIBNotifs 5 }
ciscoLwappMaxRFIDTagsReached NOTIFICATION-TYPE
OBJECTS {
clsMaxRFIDTagsTrapThreshold,
clsMaxRFIDTagsCount,
clsSysMaxThresholdReachedClear
}
STATUS current
DESCRIPTION
"This notification is generated when the number of
RFID tags on the controller exceeds the limit defined by
clsMaxRFIDTagsTrapThreshold."
::= { ciscoLwappSysMIBNotifs 6 }
ciscoLwappMaxClientsReached NOTIFICATION-TYPE
OBJECTS {
clsMaxClientsTrapThreshold,
clsMaxClientsCount,
clsSysMaxThresholdReachedClear
}
STATUS current
DESCRIPTION
"This notification is generated when the number of
clients on the controller exceeds the limit defined by
clsMaxClientsTrapThreshold."
::= { ciscoLwappSysMIBNotifs 7 }
ciscoLwappNMHeartBeat NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"This notification will be sent when Network Manager
Heart Beat Enable."
::= { ciscoLwappSysMIBNotifs 8 }
ciscoLwappCfgFileAnalyzeFail NOTIFICATION-TYPE
OBJECTS {
clsTransferFilename,
clsTransferCfgAnalyzeResult
}
STATUS current
DESCRIPTION
"This notification will be sent when config file
analyze fails."
::= { ciscoLwappSysMIBNotifs 9 }
ciscoLwappWlcUpgradeFail NOTIFICATION-TYPE
OBJECTS {
clsWlcSwVersionBeforeUpgrade,
clsWlcSwVersionAfterUpgrade,
clsWlcUpgradeFailReason
}
STATUS current
DESCRIPTION
"This notification is generated when the wlc
upgrade fails."
::= { ciscoLwappSysMIBNotifs 10 }
ciscoLwappRAIDStatus NOTIFICATION-TYPE
OBJECTS {
clsRAIDStatus,
clsRAIDDriveNumber,
clsRAIDRebuildPercentage
}
STATUS current
DESCRIPTION
"This notification is generated when the wlc
hard disc status changes."
::= { ciscoLwappSysMIBNotifs 11 }
ciscoLwappPortLinkSpeedTrap NOTIFICATION-TYPE
OBJECTS {
clsPortNumber,
clsPortSpeed,
clsPortSlot
}
STATUS current
DESCRIPTION
"This notification is generated when link speed changes
in MGIG port."
::= { ciscoLwappSysMIBNotifs 12 }
-- *******************************************************************
-- * Compliance statements
-- *******************************************************************
ciscoLwappSysMIBCompliances OBJECT IDENTIFIER
::= { ciscoLwappSysMIBConform 1 }
ciscoLwappSysMIBGroups OBJECT IDENTIFIER
::= { ciscoLwappSysMIBConform 2 }
ciscoLwappSysMIBCompliance MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for the SNMP entities that
implement the ciscoLwappSysMIB module."
MODULE -- this module
MANDATORY-GROUPS { ciscoLwappSysConfigGroup }
::= { ciscoLwappSysMIBCompliances 1 }
ciscoLwappSysMIBComplianceRev1 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for the SNMP entities that
implement the ciscoLwappSysMIB module."
MODULE -- this module
MANDATORY-GROUPS { ciscoLwappSysConfigGroup }
GROUP ciscoLwappSysConfigFileEncryptionGroup
DESCRIPTION
"This group is mandatory only for platforms which support Config
Encryption."
GROUP ciscoLwappSysTransferOperationConfigGroup
DESCRIPTION
"This group is mandatory only for platforms which support
configuration of Transfer operation."
::= { ciscoLwappSysMIBCompliances 2 }
ciscoLwappSysMIBComplianceRev2 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for the SNMP entities that
implement the ciscoLwappSysMIB module. This deprecates
ciscoLwappSysMIBComplianceRev1."
MODULE -- this module
MANDATORY-GROUPS {
ciscoLwappSysConfigGroup,
ciscoLwappSysPortConfigGroup,
ciscoLwappSysSecurityConfigGroup,
ciscoLwappSysIgmpConfigGroup,
ciscoLwappSysSecNotifObjsGroup,
ciscoLwappSysNotifsGroup,
ciscoLwappSysNotifControlGroup,
ciscoLwappSysConfigGroupVer1
}
GROUP ciscoLwappSysConfigFileEncryptionGroup
DESCRIPTION
"This group is mandatory only for platforms which support Config
Encryption."
GROUP ciscoLwappSysTransferOperationConfigGroup
DESCRIPTION
"This group is mandatory only for platforms which support
configuration of Transfer operation."
::= { ciscoLwappSysMIBCompliances 3 }
ciscoLwappSysMIBComplianceRev3 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for the SNMP entities that
implement the ciscoLwappSysMIB module. This deprecates
ciscoLwappSysMIBComplianceRev1."
MODULE -- this module
MANDATORY-GROUPS {
ciscoLwappSysConfigGroup,
ciscoLwappSysPortConfigGroup,
ciscoLwappSysSecurityConfigGroup,
ciscoLwappSysIgmpConfigGroup,
ciscoLwappSysSecNotifObjsGroup,
ciscoLwappSysNotifsGroup,
ciscoLwappSysNotifControlGroup,
ciscoLwappLyncInfoGroup,
ciscoLwappSysConfigGroupSup1,
ciscoLwappSysInfoGroup,
ciscoLwappSysStatsConfigGroup,
ciscoLwappSysMulticastMLDGroup,
ciscoLwappSysConfigGroupVer1
}
GROUP ciscoLwappSysConfigFileEncryptionGroup
DESCRIPTION
"This group is mandatory only for platforms which support Config
Encryption."
GROUP ciscoLwappSysTransferOperationConfigGroup
DESCRIPTION
"This group is mandatory only for platforms which support
configuration of Transfer operation."
::= { ciscoLwappSysMIBCompliances 4 }
ciscoLwappSysMIBComplianceRev4 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the SNMP entities that
implement the ciscoLwappSysMIB module. This deprecates
ciscoLwappSysMIBComplianceRev1."
MODULE -- this module
MANDATORY-GROUPS {
ciscoLwappSysConfigGroup,
ciscoLwappSysPortConfigGroup,
ciscoLwappSysSecurityConfigGroup,
ciscoLwappSysIgmpConfigGroup,
ciscoLwappSysSecNotifObjsGroup,
ciscoLwappSysNotifsGroup,
ciscoLwappSysNotifControlGroup,
ciscoLwappLyncInfoGroup,
ciscoLwappSysConfigGroupSup1,
ciscoLwappSysInfoGroup,
ciscoLwappSysStatsConfigGroup,
ciscoLwappSysMulticastMLDGroup,
ciscoLwappSysConfigGroupVer2
}
GROUP ciscoLwappSysConfigFileEncryptionGroup
DESCRIPTION
"This group is mandatory only for platforms which support Config
Encryption."
GROUP ciscoLwappSysTransferOperationConfigGroup
DESCRIPTION
"This group is mandatory only for platforms which support
configuration of Transfer operation."
::= { ciscoLwappSysMIBCompliances 5 }
-- ********************************************************************
-- * Units of conformance
-- ********************************************************************
ciscoLwappSysConfigGroup OBJECT-GROUP
OBJECTS {
clsDot3BridgeEnabled,
clsDownloadFileType,
clsDownloadCertificateKey,
clsUploadFileType,
clsUploadPacUsername,
clsUploadPacPassword,
clsUploadPacValidity
}
STATUS current
DESCRIPTION
"This collection of objects represent the system wide
configuration on the controller."
::= { ciscoLwappSysMIBGroups 1 }
ciscoLwappSysConfigFileEncryptionGroup OBJECT-GROUP
OBJECTS {
clsTransferConfigFileEncryption,
clsTransferConfigFileEncryptionKey
}
STATUS current
DESCRIPTION
"This object represents the System encryption configuration on
the controller."
::= { ciscoLwappSysMIBGroups 2 }
ciscoLwappSysConfigGroupSup1 OBJECT-GROUP
OBJECTS {
clsTimeZone,
clsTimeZoneDescription,
clsMaxClientsTrapThreshold,
clsMaxRFIDTagsTrapThreshold,
cLSysLogAddressType,
cLSysLogAddress,
cLSysLogHostRowStatus,
cLSysArpUnicastEnabled,
clsConfigArpUnicastEnabled,
clsNetworkRoutePrefixLength,
clsNetworkRouteGatewayType,
clsNetworkRouteGateway,
clsNetworkRouteStatus
}
STATUS current
DESCRIPTION
"This collection of objects represents the
timzone and syslog configuration on the
controller."
::= { ciscoLwappSysMIBGroups 3 }
ciscoLwappSysTransferOperationConfigGroup OBJECT-GROUP
OBJECTS {
clsTransferServerAddressType,
clsTransferServerAddress,
clsTransferPath,
clsTransferFilename,
clsTransferFtpUsername,
clsTransferFtpPassword,
clsTransferFtpPortNum,
clsTransferTftpMaxRetries,
clsTransferTftpTimeout,
clsTransferStart,
clsTransferStatus,
clsTransferStatusString,
clsApPrimaryVers,
clsApBackupVers,
clsApPredStatus,
clsApPredFailReason,
clsApPredRetryCount,
clsApPredNextRetryTime,
clsTransferStreamingMode,
clsTransferStreamingServerAddressType,
clsTransferStreamingServerAddress,
clsTransferStreamingPath,
clsStreamingTransferStart,
clsTransferHttpStreamingUsername,
clsTransferHttpStreamingPassword,
clsTransferHttpStreamingSuggestedVersion,
clsTransferHttpStreamingLatestVersion,
clsTransferHttpStreamingCcoPoll,
clsTransferStreamingServerPort,
clsTransferStreamingUsername,
clsTransferStreamingPassword,
clsTransferStreamingOptimizedJoinEnable
}
STATUS current
DESCRIPTION
"This object represents the System Transfer operation
configuration on the controller."
::= { ciscoLwappSysMIBGroups 4 }
ciscoLwappSysPortConfigGroup OBJECT-GROUP
OBJECTS {
clsPortModePhysicalMode,
clsPortModePhysicalStatus,
clsPortModeSfpType,
clsPortUpDownCount,
clsPortModeMaxSpeed
}
STATUS current
DESCRIPTION
"This collection of objects represent the system wide
configuration on the controller."
::= { ciscoLwappSysMIBGroups 5 }
ciscoLwappSysSecurityConfigGroup OBJECT-GROUP
OBJECTS {
clsSecStrongPwdCaseCheck,
clsSecStrongPwdConsecutiveCheck,
clsSecStrongPwdDefaultCheck,
clsSecStrongPwdAsUserNameCheck,
clsSecStrongPwdPositionCheck,
clsSecStrongPwdDigitCheck,
clsSecStrongPwdMinLength,
clsSecStrongPwdMinUpperCase,
clsSecStrongPwdMinLowerCase,
clsSecStrongPwdMinDigits,
clsSecStrongPwdMinSpecialChar,
clsSecWlanCCEnable,
clsSecUcaplEnable,
clsSecMgmtUsrLockoutEnable,
clsSecMgmtUsrLockoutTime,
clsSecMgmtUsrLockoutAttempts,
clsSecSnmpv3UsrLockoutEnable,
clsSecSnmpv3UsrLockoutTime,
clsSecSnmpv3UsrLockoutAttempts,
clsSecMgmtUsrLockoutLifetime,
clsSecSnmpv3UsrLockoutLifetime
}
STATUS current
DESCRIPTION
"This collection of objects represent the system security
configuration on the controller."
::= { ciscoLwappSysMIBGroups 6 }
ciscoLwappSysIgmpConfigGroup OBJECT-GROUP
OBJECTS {
cLSysMulticastIGMPSnoopingEnabled,
cLSysMulticastIGMPSnoopingTimeout,
cLSysMulticastIGMPQueryInterval,
cLSysMulticastLLBridgingStatus
}
STATUS current
DESCRIPTION
"This collection of objects represent the IGMP multicast
configuration on the controller."
::= { ciscoLwappSysMIBGroups 7 }
ciscoLwappSysSecNotifObjsGroup OBJECT-GROUP
OBJECTS {
clsSecStrongPwdManagementUser,
clsSecStrongPwdCheckType,
clsSecStrongPwdCheckOption,
clsSysAlarmSet,
clsSysMaxThresholdReachedClear,
clsTransferCfgAnalyzeResult,
clsWlcSwVersionBeforeUpgrade,
clsTransferCfgAnalyzeResult,
clsWlcSwVersionBeforeUpgrade,
clsWlcUpgradeFailReason,
clsWlcSwVersionAfterUpgrade,
clsPortNumber,
clsPortSpeed,
clsPortSlot
}
STATUS current
DESCRIPTION
"This collection of objects represent the information carried
by the security related notifications sent by the agent to a
network management station."
::= { ciscoLwappSysMIBGroups 8 }
ciscoLwappSysNotifsGroup NOTIFICATION-GROUP
NOTIFICATIONS {
ciscoLwappSysInvalidXmlConfig,
ciscoLwappNoVlanConfigured,
ciscoLwappStrongPwdCheckNotif,
ciscoLwappSysCpuUsageHigh,
ciscoLwappSysMemoryUsageHigh,
ciscoLwappMaxClientsReached,
ciscoLwappMaxClientsReached,
ciscoLwappNMHeartBeat,
ciscoLwappCfgFileAnalyzeFail,
ciscoLwappMaxRFIDTagsReached,
ciscoLwappWlcUpgradeFail,
ciscoLwappRAIDStatus,
ciscoLwappPortLinkSpeedTrap
}
STATUS current
DESCRIPTION
"This collection of objects represent the system config related
notifications sent by the agent to a network management
station."
::= { ciscoLwappSysMIBGroups 9 }
ciscoLwappSysNotifControlGroup OBJECT-GROUP
OBJECTS {
clsSecStrongPwdCheckTrapEnabled,
clsMaxClientsTrapEnabled,
clsMaxRFIDTagsTrapEnabled,
clsNacAlertTrapEnabled,
clsMfpTrapEnabled
}
STATUS current
DESCRIPTION
"This collection of objects represent the flags to control the
generation of notification."
::= { ciscoLwappSysMIBGroups 10 }
ciscoLwappSysConfigGroupVer1 OBJECT-GROUP
OBJECTS {
clsConfigProductBranchVersion,
clsConfigDhcpProxyEnabled,
clsCoreDumpTransferEnable,
clsCoreDumpTransferMode,
clsCoreDumpFileName,
clsCoreDumpUserName,
clsCoreDumpPassword,
clsConfigMulticastEnabled,
clsEmergencyImageVersion,
clsNMHeartBeatEnable,
clsNMHeartBeatInterval,
clsSysControllerCpuUsageThreshold,
clsSysControllerMemoryUsageThreshold,
clsSysApCpuUsageThreshold,
clsSysApMemoryUsageThreshold,
clsTrapNameInBlacklist,
clsTrapBlacklistRowStatus,
clsLinkLocalBridgingEnabled,
clsNetworkHttpProfCustomPort,
clsWGBForcedL2RoamEnabled,
clsCrashSystem,
clsConfigCaleaEnabled,
clsConfigCaleaServerIpAddr,
clsConfigCaleaServerIpType,
clsConfigCaleaPort,
clsConfigCaleaAccountingInterval,
clsConfigCaleaVenue,
clSysLogIPSecStatus,
clSysLogIPSecProfName,
clsRAIDStatus,
clsRAIDRebuildPercentage,
clsSysPingTestIPAddressType,
clsSysPingTestIPAddress,
clsSysPingTestSendCount,
clsSysPingTestReceivedCount,
clsSysPingTestStatus,
clsSysPingTestMaxTimeInterval,
clsSysPingTestMinTimeInterval,
clsSysPingTestAvgTimeInterval,
clsSysPingTestRowStatus,
clsSensorTemperature,
cLSysBroadcastForwardingEnabled,
cLSysLagModeEnabled,
clsCoreDumpServerIPAddressType,
clsAlarmHoldTime,
clsAlarmTrapRetransmitInterval,
clsSysLogEnabled,
clsSysLogLevel,
clsIconCfgFileType,
clsIconCfgLangCode,
clsIconCfgWidth,
clsIconCfgHeight,
clsIconCfgRowStatus,
clsNetworkHttpProxyIpType,
clsNetworkHttpProxyIp,
clsNetworkDnsServerIpType,
clsNetworkDnsServerIp,
cLSysLagModeEnabled,
clsNetworkHttpProxyPort,
clsCoreDumpServerIPAddress,
clsAllCpuUsage,
clsUSBMode
}
STATUS deprecated
DESCRIPTION
"This collection of objects represent the system wide
configuration on the controller."
::= { ciscoLwappSysMIBGroups 11 }
ciscoLwappSysStatsConfigGroup OBJECT-GROUP
OBJECTS {
clsSysRealtimeStatsTimer,
clsSysStatsSamplingInterval,
clsSysNormalStatsTimer,
clsSysStatsAverageInterval
}
STATUS current
DESCRIPTION
"This collection of objects represents the
statistics intervals configtation
on the controller."
::= { ciscoLwappSysMIBGroups 12 }
ciscoLwappSysInfoGroup OBJECT-GROUP
OBJECTS {
clsSysFlashSize,
clsSysMemoryType,
clsSysMaxClients,
clsSysApConnectCount,
clsSysNetId,
clsSysCurrentMemoryUsage,
clsSysAverageMemoryUsage,
clsSysCurrentCpuUsage,
clsSysAverageCpuUsage,
clsSysCpuType,
clsMaxRFIDTagsCount,
clsMaxClientsCount,
clsApAssocFailedCount,
clsCurrentPortalClientCount,
clsCurrentOnlineUsersCount,
clsSysAbnormalOfflineCount,
clsSysFlashType,
clsSysOpenUsersCount,
clsSysWepPskUsersCount,
clsSysPeapSimUsersCount,
clsSysPeapSimReqCount,
clsSysPeapSimReqSuccessCount,
clsSysPeapSimReqFailureCount,
clsSysNasId,
clsSysCoChannelTrapRssiThreshold,
clsSysAdjChannelTrapRssiThreshold,
clsSysClientTrapRssiThreshold,
clsSysCmxActiveConnections,
cLSysLagModeInTransition
}
STATUS current
DESCRIPTION
"This collection of objects represent System Information
configuration on the controller."
::= { ciscoLwappSysMIBGroups 13 }
ciscoLwappLyncInfoGroup OBJECT-GROUP
OBJECTS {
clsLyncState,
clsLyncPort,
clsLyncProtocol
}
STATUS current
DESCRIPTION
"This collection of objects represent System Information
configuration on the controller."
::= { ciscoLwappSysMIBGroups 14 }
ciscoLwappSysMulticastMLDGroup OBJECT-GROUP
OBJECTS {
cLSysMulticastMLDSnoopingEnabled,
cLSysMulticastMLDSnoopingTimeout,
cLSysMulticastMLDQueryInterval
}
STATUS current
DESCRIPTION
"This collection of objects represent Multicast MLD
configuration on the controller."
::= { ciscoLwappSysMIBGroups 15 }
ciscoLwappSysConfigGroupVer2 OBJECT-GROUP
OBJECTS {
clsConfigProductBranchVersion,
clsConfigDhcpProxyEnabled,
clsCoreDumpTransferEnable,
clsCoreDumpTransferMode,
clsCoreDumpFileName,
clsCoreDumpUserName,
clsCoreDumpPassword,
clsConfigMulticastEnabled,
clsEmergencyImageVersion,
clsNMHeartBeatEnable,
clsNMHeartBeatInterval,
clsSysControllerCpuUsageThreshold,
clsSysControllerMemoryUsageThreshold,
clsSysApCpuUsageThreshold,
clsSysApMemoryUsageThreshold,
clsTrapNameInBlacklist,
clsTrapBlacklistRowStatus,
clsLinkLocalBridgingEnabled,
clsNetworkHttpProfCustomPort,
clsWGBForcedL2RoamEnabled,
clsCrashSystem,
clsConfigCaleaEnabled,
clsConfigCaleaServerIpAddr,
clsConfigCaleaServerIpType,
clsConfigCaleaPort,
clsConfigCaleaAccountingInterval,
clsConfigCaleaVenue,
clSysLogIPSecStatus,
clSysLogIPSecProfName,
clsRAIDStatus,
clsRAIDRebuildPercentage,
clsSysPingTestIPAddressType,
clsSysPingTestIPAddress,
clsSysPingTestSendCount,
clsSysPingTestReceivedCount,
clsSysPingTestStatus,
clsSysPingTestMaxTimeInterval,
clsSysPingTestMinTimeInterval,
clsSysPingTestAvgTimeInterval,
clsSysPingTestRowStatus,
clsSensorTemperature,
cLSysBroadcastForwardingEnabled,
cLSysLagModeEnabled,
clsCoreDumpServerIPAddressType,
clsAlarmHoldTime,
clsAlarmTrapRetransmitInterval,
clsSysLogEnabled,
clsSysLogLevel,
clsIconCfgFileType,
clsIconCfgLangCode,
clsIconCfgWidth,
clsIconCfgHeight,
clsIconCfgRowStatus,
clsNetworkHttpProxyIpType,
clsNetworkHttpProxyIp,
clsNetworkDnsServerIpType,
clsNetworkDnsServerIp,
cLSysLagModeEnabled,
clsNetworkHttpProxyPort,
clsCoreDumpServerIPAddress,
clsAllCpuUsage,
clsUSBMode,
clsLiStatus,
clsLiReportingInterval,
clsLiAddressType,
clsLiAddress
}
STATUS current
DESCRIPTION
"This collection of objects represent the system wide
configuration on the controller."
::= { ciscoLwappSysMIBGroups 16 }
END
|