1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
|
-- *****************************************************************
-- CISCO-DOT11-IF-MIB.my: CISCO IEEE 802.11 INTERFACE MIB file
--
-- April 2002, Francis Pang
--
-- Copyright (c) 2002-2007 by Cisco Systems, Inc.
-- All rights reserved.
-- *****************************************************************
--
CISCO-DOT11-IF-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
Integer32,
Unsigned32,
Counter32
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
TEXTUAL-CONVENTION,
MacAddress,
RowStatus,
TruthValue
FROM SNMPv2-TC
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
ifIndex
FROM IF-MIB
dot11AuthenticationAlgorithmsIndex,
dot11SupportedDataRatesRxIndex
FROM IEEE802dot11-MIB
ciscoMgmt
FROM CISCO-SMI;
-- ********************************************************************
-- * MODULE IDENTITY
-- ********************************************************************
ciscoDot11IfMIB MODULE-IDENTITY
LAST-UPDATED "200612200000Z"
ORGANIZATION "Cisco System Inc."
CONTACT-INFO
" Cisco Systems
Customer Service
Postal: 170 West Tasman Drive,
San Jose CA 95134-1706.
USA
Tel: +1 800 553-NETS
E-mail: cs-dot11@cisco.com"
DESCRIPTION
"This MIB module provides network management
support for Cisco IEEE 802.11 Wireless LAN
type device (Access Point) radio interfaces.
ACRONYMS
AES
Advanced Encryption Standard
AP
Access point
AID
Association IDentifier for wireless stations.
BSS
IEEE 802.11 Basic Service Set.
CCMP
Code Mode/CBC Mac Protocol
CEPT
European Conference of Postal and
Telecommunications Administrations.
CRC
Cyclic Redundancy Check.
DSSS
Direct-Sequence Spread Spectrum.
EAP
Extensible Authentication Protocol.
ERP
Extended Rate PHY
FHSS
Frequency-Hopping Spread Spectrum.
IAPP
Inter-Access-Point Protocol.
ICV
Integrity Check Value.
ISM
Industrial, Scientific, and Medical.
MBSSID
Multiple Broadcast SSID
MIC
Message Integrity Check.
MMH
Multi-Modal Hashing.
OFDM
Orthogonal Frequency Division Multiplexing.
PHY
Physical Layer (Layer 1 in network model).
PLCP
Physical Layer Convergence Procedure.
PMD
Physical Medium Dependent.
PSPF
Public Secure Packet Forwarding.
RF
Radio Frequency.
SS
Spread-spectrum.
SSID
Radio Service Set ID.
STA
IEEE 802.11 wireless station.
U-NII
Unlicensed National information Infrastructure
VLAN
Virtual LAN.
WEP
Wired Equivalent Privacy.
WGB
Work-group Bridge
WPA
WiFi Protected Access
GLOSSARY
Access point
Transmitter/receiver (transceiver) device
that commonly connects and transports data
between a wireless network and a wired network.
Association
The service used to establish access point
or station mapping and enable STA invocation
of the distribution system services.
(Wireless clients attempt to connect to
access points.)
Basic Rate
A data rate that is mandatory for client
devices to support in order for them to achieve
successful association.
Basic Service Set
The IEEE 802.11 BSS of an AP comprises of the
stations directly associating with the AP.
Bridge
Device that connects two or more segments
and reduces traffic by analyzing the
destination address, filtering the frame,
and forwarding the frame to all connected
segments.
Bridge AP
It is an AP that functions as a transparent
bridge between 2 wired LAN segments.
Broadcast SSID
Clients can send out Broadcast SSID Probe
Requests to a nearby AP, and the AP will
broadcast its own SSID within its beacons
to response to the clients. Clients can use
this Broadcast SSID to associate and
communicate with the AP.
Cyclic Redundancy Check
CRC is an error detect mechanism that applies
to frame transmission.
Direct-Sequence Spread Spectrum
DSSS combines a data signal at the sending
station with a higher data rate bit sequence,
which many refer to as a chipping code (also
known as processing gain). A high processing gain
increases the signals resistance to interference.
DSSS sends a specific string of bits for each data
bit sent.
ERP-CCK Modulation
This signal modulation technique is supported in
PHY implementing IEEE 802.11b/g Protocol.
ERP-OFDM Modulation
This signal modulation technique is supported in
PHY implementing IEEE 802.11g Protocol.
Extensible Authentication Protocol
EAP acts as the interface between a wireless
client and an authentication server, such as a
RADIUS server, to which the access point
communicates over the wired network.
Extended Rate PHY
This PHY implements the IEEE 802.11g Protocol.
Frequency-Hopping Spread Spectrum
In FHSS, a hopping code determines the frequencies
the radio will transmit and in which order. To
properly receive the signal, the receiver must be
set to same hopping code and listen to the
incoming signal at the right time and correct
frequency. The code pattern maintains a single
logical channel.
IEEE 802.11
Standard to encourage interoperability among
wireless networking equipment.
IEEE 802.11b
High-rate wireless LAN standard for wireless
data transfer at up to 11 Mbps.
IEEE P802.11g
Higher Speed Physical Layer (PHY) Extension to
IEEE 802.11b, will boost wireless LAN speed to 54
Mbps by using OFDM (orthogonal frequency division
multiplexing). The IEEE 802.11g specification is
backward compatible with the widely deployed IEEE
802.11b standard.
Inter-Access-Point Protocol
The IEEE 802.11 standard does not define how
access points track moving users or how to
negotiate a handoff from one access point to the
next, a process referred to as roaming. IAPP is
a Cisco proprietary protocol to support roaming.
However, IAPP does not address how the wireless
system tracks users moving from one subnet to
another.
Independent network
Network that provides peer-to-peer connectivity
without relying on a complete network
infrastructure.
Integrity Check Value
The WEP ICV shall be a 32-bit value containing
the 32-bit cyclic redundancy code designed for
verifying wireless data frame integrity.
Message Integrity Check
A MIC can, optionally, be added to WEP-encrypted
802.11 frames. MIC prevents attacks on encrypted
packets. MIC, implemented on both the access point
and all associated client devices, adds a few bytes
to each packet to make the packets tamper-proof.
Native VLAN ID
A switch port and/or AP can be configured with a
'native VLAN ID'. Untagged or priority-tagged
frames are implicitly associated with the native
VLAN ID. The default native VLAN ID is '1' if
VLAN tagging is enabled. The native VLAN ID is '0'
or 'no VLAN ID' if VLAN tagging is not enabled.
Node
Device on a network; has its own unique network
address and name.
Non-Root Bridge
This wireless bridge does not connect to the main
wired LAN segment. It connects to a remote wired
LAN segment and can associate with root bridges and
other non-root bridges that accept client
associations. It also can accept associations from
other non-root bridges, repeater access points,
and client devices.
Physical Layer Convergence Procedure
In IEEE 802.11 wireless LANs, PLCP defines a method
of mapping the IEEE 802.11 MAC sublayer protocol
data units into a framing format suitable for
sending and receiving user data and management
information between two or more wireless stations
using the associated PMD system.
Physical Medium Dependent
In IEEE 802.11 wireless LANs, a PMD system, whose
function defines the characteristics of, and method
of transmitting and receiving data through, a
wireless medium between two or more wireless
stations each using the DSSS.
Preamble
The radio preamble are data at the head of a
packet that contains information access points
and client devices required by IEEE 802.11 when
sending and receiving packets.
Primary LAN
In an AP, if the destinations of inbound unicast
frames are unknown, the frames are sent toward
the primary LAN defined on the device.
Radio carrier
Radio waves that deliver energy to a remote
receiver; in other words, radio waves in a
wireless LAN environment.
Repeater
Device that connects multiple segments,
listening to each and regenerating the signal
on one to every other connected one; so that
the signal can travel further.
Repeater or Non-root Access Point
The repeater access point is not connected
to the wired LAN. The Repeater is a wireless
LAN transceiver that transfers data between
a client and another access point, another
repeater, or between two bridges. The repeater
is placed within radio range of an access point
connected to the wired LAN, another repeater, or
an non-root bridge to extend the range of the
infrastructure.
Radio Frequency
Radio wave and modulation process or operation.
Root Access Point
This access point connects clients to the main
wired LAN.
Root (Wireless) Bridge
This wireless bridge connects to the main wired
LAN. It can communicate with non-root wireless
bridges, repeater access points, and client
devices but not with another wireless root
bridge. Only one wireless bridge in a wireless
LAN can be set as the wireless root bridge.
Spread-spectrum
Wideband radio frequency technique that
consumes more bandwidth than the narrow-band
alternative but produces a signal that is louder
and easier to detect. There are two types of
spread-spectrum radio: frequency hopping and
direct sequence.
Radio Service Set ID
SSID is a unique identifier that APs and clients
use to identify with each other. SSID is a simple
means of access control and is not for security.
The SSID can be any alphanumeric entry up to 32
characters.
Tag header
A 'tag header' is as defined in the IEEE 802.1Q
standard. An 802.1Q tag header contains a 3-bit
priority field and a 12-bit VLAN ID field.
A 'priority tag' has a VLAN ID of 0, to indicate
'no VLAN ID'. A 'VLAN tag' has a non-zero
VLAN ID.
Virtual LAN
VLAN defined in the IEEE 802.1Q VLAN standard
supports logically segmenting of LAN
infrastructure into different subnets or
workgroups so that packets are switched only
between ports within the same VLAN.
VLAN ID
Each VLAN is identified by a 12-bit 'VLAN ID'.
A VLAN ID of '0' is used to indicate
'no VLAN ID'. Valid VLAN IDs range from '1' to
'4095'. VLAN of ID '4095' is the default VLAN
for Cisco VoIP Phones.
Wired Equivalent Privacy
WEP is generally used to refer to 802.11
encryption.
Work-group Bridge
It is a client to APs or wireless root bridges.
The radio port of a WGB serves as the uplink to
the main network and the Ethernet port provides
network access for devices like PC or IP phone.
Upgrade of Frequencies
As per the latest regulations proposed by the
Japanese Government, the four channels 34
( 5170 GHz ), 38 ( 5190 GHz), 42 ( 5210 ) and
44 ( 5230 ) in the 5150-5250 MHz band has been
shifted by 10 MHz. Thus, the new channels in the
5150-5250 MHz band are 36 ( 5180 ), 40 ( 5200 )
and 44 ( 5220 ) and 48 ( 5240 )."
REVISION "200612200000Z"
DESCRIPTION
"- Added following objects in cd11IfStationConfigTable
cd11IfMobileStationListIgnore
cd11IfMobileStationScanChannel.
- Added cd11Ifdot11MobileStationScanGroup OBJECT-GROUP
- Added ciscoDot11IfComplianceRev4 MODULE-COMPLIANCE."
REVISION "200503100000Z"
DESCRIPTION
"Updated the cd11IfCurrentCarrierSet to define new
carrier types."
REVISION "200406060000Z"
DESCRIPTION
"Modified the cd11IfPhyNativePowerUseStandard to
read-write and updated cd11IfNativeTxPowerSupportTable
and cd11IfRfNativePowerTable to add the object
cd11IfRadioModulationClass as indices."
REVISION "200405060000Z"
DESCRIPTION
"Added cd11IfStationSwitchOverNotif and
cd11IfRogueApDetectedNotif notifications"
REVISION "200404170000Z"
DESCRIPTION
"Added cd11IfVlanPsPacketForwardEnable and
cd11IfPsPacketForwardEnable for PSPF support.
Added cd11IfMultipleBssidEnable for MBSSID support.
Modified Cd11IfVlanEncryptKeyEntry to add objects
for WEP encryption support. Added
cd11IfRogueApDetectedTable for rogue AP detection
information. Added cd11IfFrequencyBandTable,
cd11IfRfNativePowerTable, and
cd11IfNativeTxPowerSupportTable to support per
radio frequency band power configuration. Added
cd11IfDataRatesSensitivityTable for receive
sensitivity specifications of IEEE 802.11 radio."
REVISION "200402270000Z"
DESCRIPTION
"Updated the cd11IfStationRole object description.
Modified CDot11IfCipherType textual convention to
match the latest design. Updated
cd11IfClientTxPowerTable power levels to allow
negative dBm power. Modified the
MODULE-COMPLIANCE for this MIB."
REVISION "200311170000Z"
DESCRIPTION
"Added cd11IfWorldModeCountry, cd11IfWorldMode, and
cd11IfMobileStationScanParent to
cd11IfStationConfigEntry. Added cd11IfPhyConcatenation
to cd11IfPhyOperationEntry. Added
cd11IfVlanEncryptKeyTransmit to
Cd11IfVlanEncryptKeyEntry. Added
cd11IfClientTxPowerTable, cd11IfOfdmTxPowerTable,
cd11IfRadioMonitoringTable, and
cd11IfVlanSecurityTable. Modified the
MODULE-COMPLIANCE for this MIB."
REVISION "200307130000Z"
DESCRIPTION
"Added cd11IfPhyBasicRateSet to identify if a rate
in the dot11OperationalRateSet is a Basic Rate, added
cd11IfPhyMacSpecification to identify the IEEE 802.11
Standard being applied to the radio, modified the
cd11IfPhyDsssCurrentChannel and cd11IfChanSelectChannel
ranges to support 802.11A radio, and added new device
types to cd11IfStationRole.
Added cd11IfAuxSsidAuthAlgEapMethod,
cd11IfAuxSsidAuthAlgMacMethod, cd11IfAuthAlgEapMethod,
and cd11IfAuthAlgMacAddrMethod to specify the
authentication method list."
REVISION "200212290000Z"
DESCRIPTION
"Added a new cd11IfVlanEncryptKeyTable to support
per interface and VLAN encryption key and
cd11IfDomainCapabilitySet to support the
IEEE 802.11 dot11MultiDomainCapabilityTable."
REVISION "200208010000Z"
DESCRIPTION
"Corrected the description of roleBridge(2) of
the cd11IfStationRole object and changed the roleAP(1)
to roleWgb(1)."
REVISION "200207040000Z"
DESCRIPTION
"Changed cd11IfAuxSsidBroadcastSsid from read-only
to read-write."
REVISION "200205100000Z"
DESCRIPTION
"The maximum value for cd11IfAuxiliarySsidLength is
changed to '4095'. The new cd11IfAuxSsidIndex replaces
cd11IfAuxSsid as the cd11IfAuxSsidTable index. New
enumerate values are added to cd11IfStationRole. New
MAC address authentication cd11IfAuthAlgRequireMacAddr
and cd11IfAuxSsidAuthAlgRequireMac objects are added to
the authentication algorithm tables."
REVISION "200204110000Z"
DESCRIPTION
"This is the initial version of this MIB module."
::= { ciscoMgmt 272 }
ciscoDot11IfMIBNotifications OBJECT IDENTIFIER
::= { ciscoDot11IfMIB 0 }
ciscoDot11IfMIBObjects OBJECT IDENTIFIER
::= { ciscoDot11IfMIB 1 }
cd11IfConfigurations OBJECT IDENTIFIER
::= { ciscoDot11IfMIBObjects 1 }
cd11IfStatistics OBJECT IDENTIFIER
::= { ciscoDot11IfMIBObjects 2 }
cd11IfManagement OBJECT IDENTIFIER
::= { cd11IfConfigurations 1 }
cd11IfPhyConfig OBJECT IDENTIFIER
::= { cd11IfConfigurations 2 }
cd11IfMacStatistics OBJECT IDENTIFIER
::= { cd11IfStatistics 1 }
-- Textual Conventions
CDot11IfVlanIdOrZero ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This is a 12-bit VLAN ID used in the VLAN Tag
header. A value of '0' indicates NULL or no VLAN ID.
and '4095' is the default VLAN for Cisco VoIP Phones.
This textual convention differs from the VlanId
textual convention, defined by the Q-BRIDGE-MIB
in RFC-2674, because VlanId does not permit the
value '0' and '4095'."
REFERENCE
"RFC-2674, Bridge MIB Extensions, August 1999,
Q-BRIDGE-MIB, E. Bell."
SYNTAX Unsigned32 (0..4095)
WepKeyType128 ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"WEP shared secret encryption key, 128-bits or 16
octets. Only the first 13 octets are accessible to
users among the total 16 octets."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, Section 8.3.2."
SYNTAX OCTET STRING (SIZE (5..13))
CDot11IfMicAlgorithm ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Auxiliary MIC calculated on WEP-encoded packets
to validate that they have not been modified.
This is in addition to the standard 802.11 ICV.
The two options are:
micNone(1) - do not apply MIC,
micMXX(2) - apply MMH MIC,
micMichael(3) - Michael MIC."
SYNTAX INTEGER {
micNone(1),
micMXX(2),
micMichael(3)
}
CDot11IfWepKeyPermuteAlgorithm ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This defines the function through which the WEP
encryption key is permuted between key renewal
periods.
wepPermuteNone(1) - no WEP key permutation,
wepPermuteIV(2) - WEP key permutation with
initialization vector."
SYNTAX INTEGER {
wepPermuteNone(1),
wepPermuteIV(2)
}
CDot11IfCipherType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"These are the frame encryption cipher types for
frames on IEEE 802.11 radio interfaces.
ckip Cisco Per packet key hashing,
cmic Cisco MMH MIC,
tkip WPA Temporal Key encryption,
wep40 40-bit WEP key,
wep128 128-bit WEP key,
aesccm WPA AES CCMP encryption."
SYNTAX BITS {
ckip(0),
cmic(1),
tkip(2),
wep40(3),
wep128(4),
aesccm(5)
}
CDot11RadioFrequencyBandType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"These are the radio frequency band names
the IEEE 802.11 radio is operating on:
ism24G(0) - ISM 2.4 GHz band,
unii1(1) - U-NII-1 band (5.15-5.25 GHz),
unii2(2) - U-NII-2 band (5.25-5.35 GHz),
unii3(3) - U-NII-3 band (5.725-5.825 GHz),
cept(4) - CEPT band B (5.47-5.725 GHz),
japan49G(5) - Japan 4.9 band (4.9-5.0 GHz),
japan50G(6) - Japan 5.0 band (5.03-5.091 GHz)."
SYNTAX BITS {
ism24G(0),
unii1(1),
unii2(2),
unii3(3),
cept(4),
japan49G(5),
japan50G(6)
}
CDot11RadioModulationClass ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"These are classifications of radio modulation
techniques used by the various Physical Layers
of IEEE 802.11 radios:
dsss(1) - modulation schemes associated
with DSSS type PHYs,
ofdm(2) - modulation schemes associated
with OFDM type PHYs."
SYNTAX INTEGER {
dsss(1),
ofdm(2)
}
Cd11IfDot11UpgradeStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"These are the various status on the
Radio Upgrade:
unknown(1) - upgrade status unknown,
upgradeNotApplicable(2) - Regulatory domain upgrade
is not applicable for 11b/g
radios and 11a radios not in
Japan regulatory domain,
upgradeNotDone(3) - 11a radio is in Japan domain but
yet to be upgraded,
upgradeNotNeeded(4) - 11a radio is already configured to
operate in the W52 domain and that
the upgrade is not needed,
upgradeDone(5) - upgrade has been done from J52 to W52."
SYNTAX INTEGER {
unknown(1),
upgradeNotApplicable(2),
upgradeNotDone(3),
upgradeNotNeeded(4),
upgradeDone(5)
}
-- ********************************************************************
-- * Cisco IEEE 802.11 Interface Extension
-- ********************************************************************
-- Configuration Objects
cd11IfStationConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfStationConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains attributes to configure radio
interfaces managed by this agent. The attributes
are extensions to the configuration parameters in
the dot11StationConfigTable defined in the
IEEE802dot11-MIB. This table configures the station
role of the interface, proprietary extensions,
hierarchy, security option and parameters, and
communication settings. This table has a sparse
dependent relationship on the ifTable.
For each entry in this table, there exists an entry
in the ifTable of ifType ieee80211(71).
Entries in this table cannot be created or deleted
by the network management system. All entries are
created or deleted by the agent."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, IEEE802dot11-MIB."
::= { cd11IfManagement 1 }
cd11IfStationConfigEntry OBJECT-TYPE
SYNTAX Cd11IfStationConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A collection of configuration attributes for
an IEEE 802.11 radio interface. These attributes
are supplements to attributes defined in the
dot11StationConfigTable in IEEE802dot11-MIB."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, IEEE802dot11-MIB."
INDEX { ifIndex }
::= { cd11IfStationConfigTable 1 }
Cd11IfStationConfigEntry ::=
SEQUENCE {
cd11IfStationRole INTEGER,
cd11IfCiscoExtensionsEnable TruthValue,
cd11IfAllowBroadcastSsidAssoc TruthValue,
cd11IfPrivacyOptionMaxRate Integer32,
cd11IfEthernetEncapsulDefault INTEGER,
cd11IfBridgeSpacing Unsigned32,
cd11IfDesiredSsidMaxAssocSta Unsigned32,
cd11IfAuxiliarySsidLength Unsigned32,
cd11IfVoipExtensionsEnable TruthValue,
cd11IfDesiredSsidMicAlgorithm CDot11IfMicAlgorithm,
cd11IfDesiredSsidWepPermuteAlg
CDot11IfWepKeyPermuteAlgorithm,
cd11IfWorldMode INTEGER,
cd11IfWorldModeCountry OCTET STRING,
cd11IfMobileStationScanParent TruthValue,
cd11IfPsPacketForwardEnable TruthValue,
cd11IfMultipleBssidEnable TruthValue,
cd11IfMobileStationListIgnore TruthValue,
cd11IfMobileStationScanChannel OCTET STRING
}
cd11IfStationRole OBJECT-TYPE
SYNTAX INTEGER {
roleWgb(1),
roleBridge(2),
roleClient(3),
roleRoot(4),
roleRepeater(5),
roleApBridge(6),
roleApRepeater(7),
roleIBSS(8),
roleNrBridge(9),
roleApNrBridge(10),
roleScanner(11)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This defines the role of this station itself within
the 802.11 BSS of which it is a member. The roles are:
roleWgb(1) - infrastructure type WGB
client,
roleBridge(2) - root bridge,
roleClient(3) - independent BBS type
WGB client,
roleRoot(4) - root access point,
roleRepeater(5) - repeater,
roleApBridge(6) - AP and root bridge,
roleApRepeater(7) - AP and repeater,
roleIBSS(8) - independent BSS,
roleNrBridge(9) - non-root bridge,
roleApNrBridge(10) - AP and non-root bridge,
roleScanner(11) - scanner for rogue APs
and clients.
The default role is roleRoot(4)."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 3."
::= { cd11IfStationConfigEntry 1 }
cd11IfCiscoExtensionsEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Cisco Aironet extensions to the basic IEEE
802.11 protocols are enabled if the value is
'true'. The extension enables better BSS
performance and faster roaming. If the value
is 'false', only the basic IEEE 802.11 protocols
are used. This ensures maximum compatibility
with non-Cisco equipment. The default value is
'true'."
::= { cd11IfStationConfigEntry 2 }
cd11IfAllowBroadcastSsidAssoc OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If the value of cd11IfStationRole is either
'roleRoot' or 'roleRepeater', and if
cd11IfAllowBroadcastSsidAssoc is 'true',
the device radio driver will respond
to Broadcast SSID Probe Requests and will
broadcast its own SSID within its beacons.
If cd11IfAllowBroadcastSsidAssoc is 'false',
the radio will not respond to the Broadcast
SSID and will not broadcast its SSID within
beacons. The default value is 'true'."
::= { cd11IfStationConfigEntry 3 }
cd11IfPrivacyOptionMaxRate OBJECT-TYPE
SYNTAX Integer32 (2..127)
UNITS "500 Kb per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the maximum transmit bit
rate supported by the radio when using, for example,
WEP encryption. The rate is expressed in standard
IEEE 802.11 increments of 500Kb/sec."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 8.1.2."
::= { cd11IfStationConfigEntry 4 }
cd11IfEthernetEncapsulDefault OBJECT-TYPE
SYNTAX INTEGER {
encap802dot1H(1),
encapRfc1042(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the Ethernet encapsulation
transform type used within the BSS. The encapsulations
allowed are either IEEE 802.1H type or RFC-1042 type.
IEEE 802.1H designates the Subnetwork Access Protocol
(SNAP) mechanism as the Ethernet encapsulation protocol.
Subsequently, other (non-IP) uses of the RFC-1042
mechanism. RFC-1042 specifies a translation for
Ethernet frames, such that they can be exchanged with
end stations on LANs that do not provide an Ethernet
service.
encap802dot1H(1) - IEEE 802.1H SNAP encapsulation
encapRfc1042(2) - RFC-1042 encapsulation.
The default encapsulation type is encap802dot1H(1)."
REFERENCE
"IEEE Std 802.1H-1997, Media Access Control
Bridging of Ethernet V2.0 in Local Area
Networks. RFC-1042, February 1988, A Standard for
the Transmission of IP Datagrams over IEEE 802
Networks, J. Postel and J. Reynolds."
::= { cd11IfStationConfigEntry 5 }
cd11IfBridgeSpacing OBJECT-TYPE
SYNTAX Unsigned32 (0..38640)
UNITS "Kilometers"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If this device is a root wireless bridge,
this value is the distance in kilometers
reported between this device and its
farthest non-root bridge client."
::= { cd11IfStationConfigEntry 6 }
cd11IfDesiredSsidMaxAssocSta OBJECT-TYPE
SYNTAX Unsigned32 (0..2007)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object defines the maximum number of IEEE
802.11 stations which may associate with this radio
interface through IEEE802dot11-MIB dot11DesiredSSID.
If this value is '0', the maximum number is limited
only by the IEEE 802.11 standard and any hardware or
radio firmware limitations of the access point. The
default value is '0'."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 5.7."
::= { cd11IfStationConfigEntry 7 }
cd11IfAuxiliarySsidLength OBJECT-TYPE
SYNTAX Unsigned32 (0..4095)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the maximum number of SSIDs
allowed for a radio interface or the number of SSID
entries per radio interface in the cd11IfAuxSsidTable.
The default value is '25'."
::= { cd11IfStationConfigEntry 8 }
cd11IfVoipExtensionsEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object enables the radio generate proprietary
elements in its beacons and probe responses to support
Voice-over-IP (VoIP) phones. The default value is
'true'."
::= { cd11IfStationConfigEntry 9 }
cd11IfDesiredSsidMicAlgorithm OBJECT-TYPE
SYNTAX CDot11IfMicAlgorithm
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object defines the auxiliary MIC calculated
on WEP-encoded packets of stations associated with
this radio interface through IEEE802dot11-MIB
dot11DesiredSSID. The default value is micNone(1)."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 8.2.3."
::= { cd11IfStationConfigEntry 10 }
cd11IfDesiredSsidWepPermuteAlg OBJECT-TYPE
SYNTAX CDot11IfWepKeyPermuteAlgorithm
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object defines the function through which
the WEP encryption key is permuted between key
renewal periods for stations associated with this
radio interface through IEEE802dot11-MIB
dot11DesiredSSID. The default value is
wepPermuteNone(1)."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 8.2.3."
::= { cd11IfStationConfigEntry 11 }
cd11IfWorldMode OBJECT-TYPE
SYNTAX INTEGER {
none(1),
legacy(2),
dot11d(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object sets the World-Mode function of the
radio to allow it to function in countries other
than it was manufactured for.
none(1) - No world mode setting,
legacy(2) - compatible with legacy hardware,
dot11d(3) - use IEEE 802.11d mechanism."
DEFVAL { none }
::= { cd11IfStationConfigEntry 12 }
cd11IfWorldModeCountry OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(3))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object sets the dot11CountryString in the
IEEE802dot11-MIB identifying the country in which
the radio is operating. When cd11IfWorldMode is
either legacy(2) or dot11d(3), this object value
will be sent in the radio management frame.
The first two octets of this string is the two
character country code as described in document
ISO/IEC 3166-1. The third octet shall be one of
the following:
1. an ASCII space character, if the regulations under
which the station is operating encompass all
environments in the country,
2. an ASCII 'O' character, if the regulations under
which the station is operating are for an Outdoor
environment only, or
3. an ASCII 'I' character, if the regulations under
which the station is operating are for an Indoor
environment only."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, IEEE802dot11-MIB."
::= { cd11IfStationConfigEntry 13 }
cd11IfMobileStationScanParent OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object enables the radio to scan for a better
parent when it is a mobile non-root device, for
example, the value of cd11IfStationRole is roleWgb(1)."
DEFVAL { false }
::= { cd11IfStationConfigEntry 14 }
cd11IfPsPacketForwardEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If no VLAN is configured on the radio interface,
this object configures the PSPF feature. Otherwise,
cd11IfVlanPsPacketForwardEnable is used to configure
the PSPF feature per VLAN. If it is 'true', PSPF is
on the radio interface and direct traffic between
wireless clients of the interface is not allowed.
If it is 'false', PSPF is disabled on the VLAN and
direct traffic between wireless clients of the
interface is allowed."
DEFVAL { false }
::= { cd11IfStationConfigEntry 15 }
cd11IfMultipleBssidEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If it is 'true', multiple broadcast SSID is
enabled on the radio. To a wireless client, a
MBSSID AP appears to be several distinct co-located
APs, and it transmits a beacon for each broadcast
SSID or SSID. This allows all of the SSIDs visible
for passive scanning."
DEFVAL { false }
::= { cd11IfStationConfigEntry 16 }
cd11IfMobileStationListIgnore OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether the radio should
process the AP adjacency and Enhanced Neighbor
List reports specified in the CCX Specification.
AP adjacency and Enhanced Neighbor List provide
information about the infrastructure wireless
devices found in the near vicinity of this
radio.
This object is applicable only when the radio's
role as represented by the object cd11IfStationRole
is one of roleWgb(1), roleRepeater(5) or
roleNrbridge(9).
Agent will populate a value of 'false', when the
radio's role as represented by cd11IfStationRole
is one of roleRoot(4) ,roleBridge(2) or
roleApBridge(6), to indicate that the object is
not applicable for the radio in these roles. Set
requests will be rejected when the radio is
configured to be in one of these roles.
User can configure this object only when
cd11IfMobileStationScanChannel is configured with
a valid set of channels. When
cd11IfMobileStationScanChannel is configured with
a value of 0, the agent will automatically
populate a value of 'false'. "
DEFVAL { false }
::= { cd11IfStationConfigEntry 17 }
cd11IfMobileStationScanChannel OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the channels to be used by
the infractructure clients for scanning purposes.
This object is applicable only when the radio's
role as represented by the object cd11IfStationRole
is one of roleWgb(1), roleRepeater(5) or
roleNrbridge(9). Agent will reject the request
to set this object when the cd11IfStationRole doesn't
populate one of the values mentioned above.
Each octet carries the channel number. To configure
the radio to scan all the channels applicable to a
particular regulatory domain, this object should be
configured with only one octet of value 0. "
::= { cd11IfStationConfigEntry 18 }
cd11IfAuthAlgorithmTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfAuthAlgorithmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains attributes to configure
authentication algorithm parameters for associations
through the SSID defined by IEEE802dot11-MIB
dot11DesiredSSID object. It defines attributes
additional to those defined in the IEEE802dot11-MIB
dot11AuthenticationAlgorithmsTable. An interface
may support multiple authentication algorithms.
This table has an expansion dependent relationship
on the ifTable. For each entry in this table,
there exists at least an entry in the ifTable of
ifType ieee80211(71). This table uses the
dot11AuthenticationAlgorithmsIndex of the
dot11AuthenticationAlgorithmsTable defined in the
IEEE802dot11-MIB as the expansion index.
Entries in this table cannot be created or deleted
by the network management system. All entries are
created or deleted by the agent."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 5.7.6 and IEEE802dot11-MIB."
::= { cd11IfManagement 2 }
cd11IfAuthAlgorithmEntry OBJECT-TYPE
SYNTAX Cd11IfAuthAlgorithmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry specifies authentication algorithm
configuration attributes of a VLAN for the
dot11DesiredSSID on a radio interface."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 8.2 and IEEE802dot11-MIB."
INDEX {
ifIndex,
dot11AuthenticationAlgorithmsIndex
}
::= { cd11IfAuthAlgorithmTable 1 }
Cd11IfAuthAlgorithmEntry ::=
SEQUENCE {
cd11IfAuthAlgRequireEap TruthValue,
cd11IfAuthAlgRequireMacAddr TruthValue,
cd11IfAuthAlgDefaultVlan CDot11IfVlanIdOrZero,
cd11IfAuthAlgEapMethod SnmpAdminString,
cd11IfAuthAlgMacAddrMethod SnmpAdminString
}
cd11IfAuthAlgRequireEap OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If the value is 'true', stations authenticating
with the corresponding IEEE802dot11-MIB
dot11AuthenticationAlgorithm must complete
network-level EAP authentication before their
association attempts will be unblocked. If the
value is 'false', stations authenticating with
the corresponding dot11AuthenticationAlgorithm
will be unblocked as soon as they complete the
802.11 authentication. The default value is
'true'."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 8.2 and IEEE802dot11-MIB."
::= { cd11IfAuthAlgorithmEntry 1 }
cd11IfAuthAlgRequireMacAddr OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If the value is 'true', stations authenticating
with the corresponding IEEE802dot11-MIB
dot11AuthenticationAlgorithm must complete
additional MAC address authentication before their
association attempts will be unblocked. If the
value is 'false', stations authenticating with
the corresponding dot11AuthenticationAlgorithm
will be unblocked as soon as they complete the
802.11 authentication. The default value is
'true'."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 8.2 and IEEE802dot11-MIB."
::= { cd11IfAuthAlgorithmEntry 2 }
cd11IfAuthAlgDefaultVlan OBJECT-TYPE
SYNTAX CDot11IfVlanIdOrZero
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object defines the default VLAN identifier
for stations associated with this radio interface
with this authentication and through
IEEE802dot11-MIB dot11DesiredSSID. If the value
of this object is '0', it indicates that either the
default VLAN are not defined for this authentication
on this radio interface or the default VLAN is the
native VLAN ID. The default value is '0'."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 8.2 and IEEE802dot11-MIB."
::= { cd11IfAuthAlgorithmEntry 3 }
cd11IfAuthAlgEapMethod OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If the value of cd11IfAuthAlgRequireEap is 'true'
or dot11AuthenticationAlgorithm is Network-EAP,
this is the EAP method list to used for the EAP
authentication."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, IEEE802dot11-MIB."
::= { cd11IfAuthAlgorithmEntry 4 }
cd11IfAuthAlgMacAddrMethod OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If the value of cd11IfAuthAlgRequireMacAddr
is 'true', this is the MAC address method list to
used for the MAC authentication."
::= { cd11IfAuthAlgorithmEntry 5 }
cd11IfWepDefaultKeysTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfWepDefaultKeysEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The dot11WEPDefaultKeysTable defined by the
IEEE802dot11-MIB allows only WEP keys of length
up to 40 bits. This table overrides the the
dot11WEPDefaultKeysTable and supports keys of
from 40 to 128 bits. A maximum of four keys can
associate with any IEEE 802.11 radio interface.
For devices implementing this table, they should
not implement the dot11WEPDefaultKeysTable.
This table has an expansion dependent relationship
on the ifTable. For each entry in this table,
there exists at least an entry in the ifTable of
ifType ieee80211(71). Entries in this table
cannot be created or deleted by the network
management system. All entries are created or
deleted by the agent."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, IEEE802dot11-MIB."
::= { cd11IfManagement 3 }
cd11IfWepDefaultKeysEntry OBJECT-TYPE
SYNTAX Cd11IfWepDefaultKeysEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A collection of attributes defining a WEP key for
a radio interface."
INDEX {
ifIndex,
cd11IfWepDefaultKeyIndex
}
::= { cd11IfWepDefaultKeysTable 1 }
Cd11IfWepDefaultKeysEntry ::=
SEQUENCE {
cd11IfWepDefaultKeyIndex Unsigned32,
cd11IfWepDefaultKeyLen Unsigned32,
cd11IfWepDefaultKeyValue WepKeyType128
}
cd11IfWepDefaultKeyIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object identifies a WEP key instance for
a radio interface."
::= { cd11IfWepDefaultKeysEntry 1 }
cd11IfWepDefaultKeyLen OBJECT-TYPE
SYNTAX Unsigned32 (5..13)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the length in octets of
the WEP key cd11IfWepDefaultKeyValue. The
default key length is '13'."
::= { cd11IfWepDefaultKeysEntry 2 }
cd11IfWepDefaultKeyValue OBJECT-TYPE
SYNTAX WepKeyType128
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is the WEP default secret key value. Any
attempt to read this object by the NMS will
result in return of a zero-length string. The
default value is a NULL string."
::= { cd11IfWepDefaultKeysEntry 3 }
cd11IfDesiredBssTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfDesiredBssEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"When the radio is not functioning as an access
point (i.e., cd11IfStationRole is not 'roleRoot'),
and for example, this radio is a repeater or
bridge, this table will contain a list of preferred
access points with which the radio interface should
associate with. This table has an expansion
dependent relationship on the ifTable. For each
entry in this table, there exists at least an entry
in the ifTable of ifType ieee80211(71).
Entries in this table cannot be created or deleted
by the network management system. All entries are
created or deleted by the agent."
::= { cd11IfManagement 5 }
cd11IfDesiredBssEntry OBJECT-TYPE
SYNTAX Cd11IfDesiredBssEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry provides the MAC address of a preferred
access point. A maximum of 4 BSS addresses can be
configured to an interface."
INDEX {
ifIndex,
cd11IfDesiredBssIndex
}
::= { cd11IfDesiredBssTable 1 }
Cd11IfDesiredBssEntry ::=
SEQUENCE {
cd11IfDesiredBssIndex Unsigned32,
cd11IfDesiredBssAddr MacAddress
}
cd11IfDesiredBssIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object defines the priority order in which
preferred access points should be probed. Lower
index values indicate higher priority."
::= { cd11IfDesiredBssEntry 1 }
cd11IfDesiredBssAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object defines the BSS identifier (MAC
address) of the access point with which the radio
should try to associate with. The value of this
object is '00:00:00:00:00:00' if the BSS
identifier for this priority is not specified
or configured. The default value is
'000000000000'H."
::= { cd11IfDesiredBssEntry 2 }
cd11IfAuxSsidTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfAuxSsidEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"When the radio is not functioning as a client
station (i.e., cd11IfStationRole is not
'roleClient'), and for example, this is a access
point or independent BSS, this table will contain
a list of SSIDs which stations must be used to
associate with this radio. This table has an
expansion dependent relationship on the ifTable.
For each entry in this table, there exists at least
an entry in the ifTable of ifType ieee80211(71).
Entries in this table cannot be created or deleted
by the network management system. All entries are
created or deleted by the agent."
::= { cd11IfManagement 6 }
cd11IfAuxSsidEntry OBJECT-TYPE
SYNTAX Cd11IfAuxSsidEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A collection of attributes defining an auxiliary
service set which client stations can associate on
the specific interface. An interface can have
multiple auxiliary service sets while IEEE 802.11
defines only one desired service set for each
interface. Each radio interface currently supports
up to 25 SSIDs, and the cd11IfAuxiliarySsidLength
object specifies the configured maximum."
INDEX {
ifIndex,
cd11IfAuxSsidIndex
}
::= { cd11IfAuxSsidTable 1 }
Cd11IfAuxSsidEntry ::=
SEQUENCE {
cd11IfAuxSsidIndex Unsigned32,
cd11IfAuxSsid OCTET STRING,
cd11IfAuxSsidBroadcastSsid TruthValue,
cd11IfAuxSsidMaxAssocSta Unsigned32,
cd11IfAuxSsidMicAlgorithm CDot11IfMicAlgorithm,
cd11IfAuxSsidWepPermuteAlg
CDot11IfWepKeyPermuteAlgorithm
}
cd11IfAuxSsidIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4095)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object identifies a SSID defined on a radio."
::= { cd11IfAuxSsidEntry 1 }
cd11IfAuxSsid OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies a SSID recognized by this
radio interface. The radio interface shall respond
to probe requests using this SSID, but it does not
advertise this SSID in its beacons."
::= { cd11IfAuxSsidEntry 2 }
cd11IfAuxSsidBroadcastSsid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates if an auxiliary SSID
is the Broadcast SSID. There is only one Broadcast
SSID per IEEE 802.11 radio interface."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 7.3.2.1."
::= { cd11IfAuxSsidEntry 3 }
cd11IfAuxSsidMaxAssocSta OBJECT-TYPE
SYNTAX Unsigned32 (0..2007)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object defines the maximum number of IEEE
802.11 stations which may associate with this radio
interface through the cd11IfAuxSsid. If the value
is '0', the maximum number is limited only by the
IEEE 802.11 standard and any hardware or radio
firmware limitations of the access point. The
default value is '0'."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 5.7."
::= { cd11IfAuxSsidEntry 4 }
cd11IfAuxSsidMicAlgorithm OBJECT-TYPE
SYNTAX CDot11IfMicAlgorithm
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object defines the auxiliary MIC algorithm
applied to WEP-encoded packets of stations associated
with this radio interface through the cd11IfAuxSsid.
The default value is micNone(1)."
::= { cd11IfAuxSsidEntry 5 }
cd11IfAuxSsidWepPermuteAlg OBJECT-TYPE
SYNTAX CDot11IfWepKeyPermuteAlgorithm
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object defines the function through which
the WEP encryption key is permuted between key renewal
periods for stations associated with this radio
interface through the cd11IfAuxSsid. The default value
is wepPermuteNone(1)."
::= { cd11IfAuxSsidEntry 6 }
cd11IfAuxSsidAuthAlgTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfAuxSsidAuthAlgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains attributes to configure
authentication algorithms for SSIDs listed in the
cd11IfAuxSsidTable. This table extends the
IEEE802dot11-MIB dot11AuthenticationAlgorithmsTable
for multiple SSIDs support. Multiple SSIDs
can associate with an interface and multiple
authentication algorithms can apply to an auxiliary
SSID.
This table has an expansion dependent relationship
on the ifTable. For each entry in this table,
there exists at least an entry in the ifTable of
ifType ieee80211(71). Entries in this table cannot
be created or deleted by the network management
system. All entries are created or deleted by
the agent."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 5.7.6."
::= { cd11IfManagement 7 }
cd11IfAuxSsidAuthAlgEntry OBJECT-TYPE
SYNTAX Cd11IfAuxSsidAuthAlgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry specifies authentication algorithm
configuration attributes of a VLAN for an auxiliary
SSID on a radio interface."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, IEEE802dot11-MIB."
INDEX {
ifIndex,
cd11IfAuxSsidIndex,
dot11AuthenticationAlgorithmsIndex
}
::= { cd11IfAuxSsidAuthAlgTable 1 }
Cd11IfAuxSsidAuthAlgEntry ::=
SEQUENCE {
cd11IfAuxSsidAuthAlgEnable TruthValue,
cd11IfAuxSsidAuthAlgRequireEap TruthValue,
cd11IfAuxSsidAuthAlgRequireMac TruthValue,
cd11IfAuxSsidAuthAlgDefaultVlan CDot11IfVlanIdOrZero,
cd11IfAuxSsidAuthAlgEapMethod SnmpAdminString,
cd11IfAuxSsidAuthAlgMacMethod SnmpAdminString
}
cd11IfAuxSsidAuthAlgEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If the value is 'true', this device may
authenticate an association using SSID (specified
by cd11IfAuxiliarySSIDIndex) with the algorithm
identified by IEEE802dot11-MIB
dot11AuthenticationAlgorithmsIndex. The default
value is 'true'."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, IEEE802dot11-MIB."
::= { cd11IfAuxSsidAuthAlgEntry 1 }
cd11IfAuxSsidAuthAlgRequireEap OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If both the values of this object and
cd11IfAuxSsidAuthAlgEnable are 'true', the
association authentication must complete additional
network-level EAP authentication before client
stations will be unblocked from their association
attempts. If the value of this object is 'false'
while cd11IfAuxSsidAuthAlgEnable is 'true', client
stations will be unblocked as soon as they
complete this enabled IEEE 802.11 authentication.
The default value is 'true'."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, IEEE802dot11-MIB."
::= { cd11IfAuxSsidAuthAlgEntry 2 }
cd11IfAuxSsidAuthAlgRequireMac OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If both the values of this object and
cd11IfAuxSsidAuthAlgEnable are 'true', the
association authentication must complete additional
MAC address authentication before client stations
will be unblocked from their association
attempts. If the value of this object is 'false'
while cd11IfAuxSsidAuthAlgEnable is 'true', client
stations will be unblocked as soon as they
complete this enabled IEEE 802.11 authentication.
The default value is 'true'."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, IEEE802dot11-MIB."
::= { cd11IfAuxSsidAuthAlgEntry 3 }
cd11IfAuxSsidAuthAlgDefaultVlan OBJECT-TYPE
SYNTAX CDot11IfVlanIdOrZero
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object defines the default VLAN identifier
for stations associated with this radio interface
with the dot11AuthenticationAlgorithmsIndex
authentication defined in IEEE802dot11-MIB and
through the cd11IfAuxSsid. If the value
of this object is '0', it indicates that either the
default VLAN are not defined for that authentication
on this radio interface or the default VLAN is the
native VLAN ID. The default value is '0'."
::= { cd11IfAuxSsidAuthAlgEntry 4 }
cd11IfAuxSsidAuthAlgEapMethod OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If the value of cd11IfAuxSsidAuthAlgRequireEap
is 'true' or dot11AuthenticationAlgorithm is
Network-EAP, this is the EAP method list to used
for the EAP authentication."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, IEEE802dot11-MIB."
::= { cd11IfAuxSsidAuthAlgEntry 5 }
cd11IfAuxSsidAuthAlgMacMethod OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If the value of cd11IfAuxSsidAuthAlgRequireMac
is 'true', this is the MAC address method list to
used for the MAC authentication."
::= { cd11IfAuxSsidAuthAlgEntry 6 }
cd11IfAssignedAidTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfAssignedAidEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"When the radio is not functioning as a client
station (i.e., cd11IfStationRole is not
'roleClient'), this is the list of AIDs which this
agent will assign to the clients associating with
it. An AID is assigned if the corresponding MAC
address matches that of the client. This table has
an expansion dependent relationship on the ifTable.
For each entry in this table, there exists at least
an entry in the ifTable of ifType ieee80211(71).
Entries in this table cannot be created or deleted
by the network management system. All entries are
created or deleted by the agent."
::= { cd11IfManagement 8 }
cd11IfAssignedAidEntry OBJECT-TYPE
SYNTAX Cd11IfAssignedAidEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry associates an AID with a client MAC
address. The relationship between AID and client
MAC address is one to one."
INDEX {
ifIndex,
cd11IfAssignedAid
}
::= { cd11IfAssignedAidTable 1 }
Cd11IfAssignedAidEntry ::=
SEQUENCE {
cd11IfAssignedAid Unsigned32,
cd11IfAssignedSta MacAddress
}
cd11IfAssignedAid OBJECT-TYPE
SYNTAX Unsigned32 (2..2007)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object specifies the AID for a client
station to the radio interface."
::= { cd11IfAssignedAidEntry 1 }
cd11IfAssignedSta OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object defines the client station MAC
address. When a client associates with this
radio interface, it shall always be assigned with
the cd11IfAssignedAid as its IEEE 802.11 AID.
The default value is '000000000000'H."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 5.7.2."
::= { cd11IfAssignedAidEntry 2 }
cd11IfVlanEncryptKeyTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfVlanEncryptKeyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains shared WEP keys for all IEEE
802.11 packets transmitted and received frames over
a VLAN identified by the cwvlWlanVlanId if both VLAN
and encryption are enabled (i.e., the
cwvlWlanEncryptionMode is wep(2) or aes(3)) on the
radio interface.
If WEP encryption is enabled for the transmitted
IEEE 802.11 frames, then the Default Shared WEP
key in the set is used to encrypt the transmitted
broadcast and multicast frames associated with
the cwvlWlanVlanId. Key '1' in the set is the
default key. If an individual session key is not
defined for the target station address, then the
Default Shared WEP key will also be used to encrypt
or decrypt unicast frames associated with the
cwvlWlanVlanId."
REFERENCE
"CISCO-WLAN-VLAN-MIB, June 2002, Cisco Systems
Wireless Virtual LAN MIB."
::= { cd11IfManagement 9 }
cd11IfVlanEncryptKeyEntry OBJECT-TYPE
SYNTAX Cd11IfVlanEncryptKeyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains the key index, key length, and
key value. There is a maximum of 4 keys per VLAN or
key set. Each key set exists only if the
corresponding VLAN is enabled on the interface, and
it is indexed by the VLAN ID."
INDEX {
ifIndex,
cd11IfVlanId,
cd11IfVlanEncryptKeyIndex
}
::= { cd11IfVlanEncryptKeyTable 1 }
Cd11IfVlanEncryptKeyEntry
::= SEQUENCE {
cd11IfVlanId CDot11IfVlanIdOrZero,
cd11IfVlanEncryptKeyIndex Unsigned32,
cd11IfVlanEncryptKeyLen Unsigned32,
cd11IfVlanEncryptKeyValue WepKeyType128,
cd11IfVlanEncryptKeyStatus RowStatus,
cd11IfVlanEncryptKeyTransmit TruthValue
}
cd11IfVlanId OBJECT-TYPE
SYNTAX CDot11IfVlanIdOrZero
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object identifies the VLAN (1 to 4095) on
this radio interface. The object value should
match the corresponding cwvlWlanVlanId in the
cwvlWlanVlanTable or cd11IfVlanSecurityVlanId
object in the cd11IfVlanSecurityTable. When
the value is '0', the encryption keys are applied
to the non-VLAN configuration."
REFERENCE
"CISCO-WLAN-VLAN-MIB, June 2002, Cisco Systems
Wireless Virtual LAN MIB."
::= { cd11IfVlanEncryptKeyEntry 1 }
cd11IfVlanEncryptKeyIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object is a representative of the
corresponding 802.11 WEP Key Index used when
transmitting or receiving frames with this key.
SNMP table indexing conventions require table
index to be non-zero. Therefore, this object has
to be one greater than the actual 802.11 WEP key
index. A value of '1' for this object corresponds
to a value of '0' for the 802.11 WEP key index."
::= { cd11IfVlanEncryptKeyEntry 2 }
cd11IfVlanEncryptKeyLen OBJECT-TYPE
SYNTAX Unsigned32 (0..13)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the length in octets of
cd11IfVlanEncryptKeyValue. Common values are 5 for
40-bit WEP key and 13 for 128-bit WEP key. A value
of '0' means that the key is not set but the VLAN
is enabled."
DEFVAL { 0 }
::= { cd11IfVlanEncryptKeyEntry 3 }
cd11IfVlanEncryptKeyValue OBJECT-TYPE
SYNTAX WepKeyType128
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the WEP secret key value. The agent
always returns a zero-length string when this
object is read for security reason."
::= { cd11IfVlanEncryptKeyEntry 4 }
cd11IfVlanEncryptKeyStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object controls and reflects the status of
rows in this table.
When the row in 'active' state, the NMS can modify
both key length and value. To delete a row, set this
object value to 'destroy'."
::= { cd11IfVlanEncryptKeyEntry 5 }
cd11IfVlanEncryptKeyTransmit OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Only one of the 4 keys of a VLAN can be the transmit
key. Setting any one of the 4 keys to 'true', the
agent will automatically change the value of
cd11IfVlanEncryptKeyTransmit of the other 3 keys to
'false' if they exist."
::= { cd11IfVlanEncryptKeyEntry 6 }
cd11IfVlanSecurityTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfVlanSecurityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains encryption method and key
rotation configurations for all VLANs on all
IEEE 802.11 radio interfaces. This table has an
expansion dependent relationship on the ifTable.
For each entry in this table, there exists at least
an entry in the ifTable of ifType ieee80211(71).
VLANs are identified by the cd11IfVlanSecurityVlanId,
and the actual VLAN does not have to exist or be
enabled for the encryption configuration to exist."
::= { cd11IfManagement 10 }
cd11IfVlanSecurityEntry OBJECT-TYPE
SYNTAX Cd11IfVlanSecurityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry is a set of encryption configurations
for traffic on a VLAN of a IEEE 802.11 radio
interface."
INDEX {
ifIndex,
cd11IfVlanSecurityVlanId
}
::= { cd11IfVlanSecurityTable 1 }
Cd11IfVlanSecurityEntry
::= SEQUENCE {
cd11IfVlanSecurityVlanId CDot11IfVlanIdOrZero,
cd11IfVlanSecurityVlanEnabled TruthValue,
cd11IfVlanBcastKeyChangeInterval Unsigned32,
cd11IfVlanBcastKeyCapabilChange TruthValue,
cd11IfVlanBcastKeyClientLeave TruthValue,
cd11IfVlanSecurityCiphers CDot11IfCipherType,
cd11IfVlanSecurityRowStatus RowStatus,
cd11IfVlanEncryptionMode INTEGER,
cd11IfVlanWepEncryptOptions INTEGER,
cd11IfVlanWepEncryptMic TruthValue,
cd11IfVlanWepEncryptKeyHashing TruthValue,
cd11IfVlanPsPacketForwardEnable TruthValue
}
cd11IfVlanSecurityVlanId OBJECT-TYPE
SYNTAX CDot11IfVlanIdOrZero
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the VLAN ID (1-4095) to which the
parameters in each conceptual row shall be
applied. If the value is '0', these parameters
apply to the non-VLAN configuration."
::= { cd11IfVlanSecurityEntry 1 }
cd11IfVlanSecurityVlanEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If the value is 'true', this VLAN sub-interface is
enabled on all trunk and hybrid ports. If the value
is 'false', this VLAN is disabled on all ports. For
platforms supporting NMS to create VLAN sub-interfaces,
setting this object to 'true' will create the
corresponding VLAN sub-interfaces on all ports and
'false' will remove the the corresponding VLAN."
::= { cd11IfVlanSecurityEntry 2 }
cd11IfVlanBcastKeyChangeInterval OBJECT-TYPE
SYNTAX Unsigned32 (0|10..10000000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the broadcast key rotation period. If the
value is '0', there is no key rotation."
::= { cd11IfVlanSecurityEntry 3 }
cd11IfVlanBcastKeyCapabilChange OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If it is 'true', a new key will be used every time
when the common set of encryption capability among
clients of this radio on this VLAN is changed."
DEFVAL { false }
::= { cd11IfVlanSecurityEntry 4 }
cd11IfVlanBcastKeyClientLeave OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If it is 'true', a new key will be used every time
when a client of the radio on this VLAN disassociates."
DEFVAL { false }
::= { cd11IfVlanSecurityEntry 5 }
cd11IfVlanSecurityCiphers OBJECT-TYPE
SYNTAX CDot11IfCipherType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If cd11IfVlanEncryptionMode is cipher(1), these
are all the possible cipher type combinations
currently supported for data frame encryption from
different IEEE 802.11 radio interface implementations.
Some platform may support only a subset of the
combinations. Agent will not honor invalid
combinations. If none of the bits are set, no
encryption will be done.
aesccm WPA AES CCMP encryption,
ckip Cisco Per packet key hashing,
cmic Cisco MMH MIC,
ckip|cmic Cisco Per packet key hashing and MIC,
tkip WPA Temporal Key encryption,
wep128 128-bit WEP key,
wep40 40-bit WEP key.
tkip|wep128 WPA Temporal Key and 128-bit WEP,
tkip|wep40 WPA Temporal Key and 40-bit WEP."
::= { cd11IfVlanSecurityEntry 6 }
cd11IfVlanSecurityRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is used to create a new row, modify or
delete an existing VLAN encryption configuration
in this table.
Creation of rows must be done via 'createAndGo' and
cd11IfVlanSecurityVlanEnabled and
cd11IfVlanSecurityCiphers columns are mandatory.
This object will become 'active' if the NMS performs
a multivarbind set including this object and
successfully creates the encryption configuration.
Modification and deletion of rows can be done via
'createAndGo' and 'delete' respectively when this
object is 'active'. Any encryption configurations
of a VLAN should only be deleted when it is not
being used for any client association."
::= { cd11IfVlanSecurityEntry 7 }
cd11IfVlanEncryptionMode OBJECT-TYPE
SYNTAX INTEGER {
cipher(1),
wep(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Encryption mode this VLANs are:
cipher(1) - WPA and Cisco encryptions,
wep(2) - WEP Only encryption"
DEFVAL { cipher }
::= { cd11IfVlanSecurityEntry 8 }
cd11IfVlanWepEncryptOptions OBJECT-TYPE
SYNTAX INTEGER {
mandatory(1),
optional(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If cd11IfVlanEncryptionMode is wep(2),
mandatory(1) - WEP encryption is mandatory,
optional(2) - WEP encryption is option.
for all data frames on this VLAN."
DEFVAL { mandatory }
::= { cd11IfVlanSecurityEntry 9 }
cd11IfVlanWepEncryptMic OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If cd11IfVlanEncryptionMode is wep(2) and
this object is 'true', MIC will be performed
on all data frames on this VLAN. Otherwise,
no MIC will be done."
DEFVAL { false }
::= { cd11IfVlanSecurityEntry 10 }
cd11IfVlanWepEncryptKeyHashing OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If cd11IfVlanEncryptionMode is wep(2) and
this object is 'true', key hashing will be
used for encryption. Otherwise, no key
hashing will be done."
DEFVAL { false }
::= { cd11IfVlanSecurityEntry 11 }
cd11IfVlanPsPacketForwardEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If both cd11IfVlanSecurityVlanEnabled and this
object are 'true', PSPF is enabled on VLAN
cd11IfVlanSecurityVlanId of this radio interface
and direct traffic between wireless clients of the
VLAn is not allowed. Otherwise, PSPF is disabled
on the VLAN and direct traffic between wireless
clients of the VLAN is allowed."
DEFVAL { false }
::= { cd11IfVlanSecurityEntry 12 }
cd11IfRadioMonitoringTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfRadioMonitoringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is for monitoring of remote active
IEEE 802.11 radio devices on the network.
Each table entry shows an active radio being
monitored by a hot standby radio on this
monitoring unit.
This table has a sparse dependent relationship
on the ifTable. For each entry in this table,
there exists an entry in the ifTable of ifType
ieee80211(71). Entries on this table can be
added, deleted, and modified by the NMS."
::= { cd11IfManagement 11 }
cd11IfRadioMonitoringEntry OBJECT-TYPE
SYNTAX Cd11IfRadioMonitoringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry specifies the MAC address of the remote
radio and the monitoring configuration and status
of the local radio. Most platforms supporting this
table only support one entry per ifIndex."
INDEX {
ifIndex,
cd11IfRemoteRadioMacAddr
}
::= { cd11IfRadioMonitoringTable 1 }
Cd11IfRadioMonitoringEntry
::= SEQUENCE {
cd11IfRemoteRadioMacAddr MacAddress,
cd11IfRadioMonitorPollingFreq Unsigned32,
cd11IfRadioMonitorPollingTimeOut Unsigned32,
cd11IfLocalRadioMonitorStatus INTEGER,
cd11IfRadioMonitorRowStatus RowStatus
}
cd11IfRemoteRadioMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Mac address of the active IEEE 802.11 radio device
to be monitored by this hot standby monitoring radio.
The cd11IfPhyMacSpecification of the local and remote
radios must be the same in order for the monitoring to
happen."
::= { cd11IfRadioMonitoringEntry 1 }
cd11IfRadioMonitorPollingFreq OBJECT-TYPE
SYNTAX Unsigned32 (1..30)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The frequency, in seconds, the remote active radio
specified by cd11IfRemoteRadioMacAddr is polled
for its health."
DEFVAL { 5 }
::= { cd11IfRadioMonitoringEntry 2 }
cd11IfRadioMonitorPollingTimeOut OBJECT-TYPE
SYNTAX Unsigned32 (1..600)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The total time, in seconds, this standby monitoring
radio unit can tolerate the failure of polling
of the active radio unit. After this duration, one
more failure of the polling will trigger this hot
standby monitoring radio to take over and become an
active radio. It will then stop all monitoring
activity and set the instance of
cd11IfLocalRadioMonitorStatus indexed by the
failed radio cd11IfRemoteRadioMacAddr to 'active'."
DEFVAL { 5 }
::= { cd11IfRadioMonitoringEntry 3 }
cd11IfLocalRadioMonitorStatus OBJECT-TYPE
SYNTAX INTEGER {
active(1),
monitor(2),
inactive(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"NMS can only set this object to monitor(2). In
the monitor(2) state, this local radio will monitor
the remote radio specified in the
cd11IfRemoteRadioMacAddr.
When the remote radio fails or goes down, this local
radio will takeover the functions and became active.
The agent will set the instance of
cd11IfLocalRadioMonitorStatus indexed by the
failed radio cd11IfRemoteRadioMacAddr to 'active'.
This local radio will not monitor any other radios
when it is active, therefore, all other instances of
cd11IfLocalRadioMonitorStatus indexed by the same
ifIndex but different cd11IfRemoteRadioMacAddr
will be set to 'inactive'."
::= { cd11IfRadioMonitoringEntry 4 }
cd11IfRadioMonitorRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used for creating, modifying, and
deleting rows in this table.
Creation of rows must be done via 'createAndGo'.
This object will become 'active' if the NMS performs
a multivarbind set including this object.
Any object in a row can be modified any time when
the row is in the 'active' state via 'createAndGo'.
Removal of a row can be done via setting this
object to 'destroy'."
::= { cd11IfRadioMonitoringEntry 5 }
cd11IfDot11UpgradeStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfDot11UpgradeStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table represents the status of upgrade of
the radios to the newer frequencies of the 5150-5250
MHz band.
This table has a sparse dependent relationship on the
ifTable. For each entry in this table, there exists
an entry in the ifTable of ifType ieee80211(71).
Entries in this table cannot be created or deleted
by the network management system. All entries are
created or deleted by the agent. "
::= { cd11IfManagement 12 }
cd11IfDot11UpgradeStatusEntry OBJECT-TYPE
SYNTAX Cd11IfDot11UpgradeStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry corresponds to one conceptual row in
cd11IfDot11UpgradeStatusTable and represents the
status of upgrade of a dot11 radio interface. "
INDEX { ifIndex }
::= { cd11IfDot11UpgradeStatusTable 1 }
Cd11IfDot11UpgradeStatusEntry ::=
SEQUENCE {
cd11IfDot11UpgradeStatus Cd11IfDot11UpgradeStatus
}
cd11IfDot11UpgradeStatus OBJECT-TYPE
SYNTAX Cd11IfDot11UpgradeStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the status of upgrade of
a dot11 radio interface. "
::= {cd11IfDot11UpgradeStatusEntry 1 }
cd11IfPhyOperationTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfPhyOperationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the IEEE 802.11 Physical
Layer operation configuration parameters for
each radio interface. This table has a sparse
dependent relationship on the ifTable.
For each entry in this table, there exists an
entry in the ifTable of ifType ieee80211(71).
Entries in this table cannot be created or deleted
by the network management system. All entries are
created or deleted by the agent."
::= { cd11IfPhyConfig 1 }
cd11IfPhyOperationEntry OBJECT-TYPE
SYNTAX Cd11IfPhyOperationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A collection of attributes defining the physical
characteristics and behaviors of an IEEE 802.11 PHY."
INDEX { ifIndex }
::= { cd11IfPhyOperationTable 1 }
Cd11IfPhyOperationEntry ::=
SEQUENCE {
cd11IfCurrentCarrierSet INTEGER,
cd11IfModulationType INTEGER,
cd11IfPreambleType INTEGER,
cd11IfDomainCapabilitySet Integer32,
cd11IfPhyBasicRateSet OCTET STRING,
cd11IfPhyMacSpecification INTEGER,
cd11IfPhyConcatenation Integer32,
cd11IfPhyNativePowerUseStandard
TruthValue
}
cd11IfCurrentCarrierSet OBJECT-TYPE
SYNTAX INTEGER {
usa(0),
europe(1),
japan(2),
spain(3),
france(4),
belgium(5),
israel(6),
canada(7),
australia(8),
japanWide(9),
world(10),
usa5GHz(11),
europe5GHz(12),
japan5GHz(13),
singapore5GHz(14),
taiwan5GHz(15),
china(16),
northAmer5GHzUNI3(17),
chnIreAus5GHzUNI3(18),
hkNZ5GHzUNI3(19),
korea5GHzUNI3(20),
mexAusNZ5GHz(21),
china5GHz(22),
korea5GHzUNI123E(23),
japan5GHzUNI12(24),
taiwan5GHzUNI23E(25),
israel5GhzUNI12(26),
usaFCC49PS(27),
japan5GHzUNI1(28)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object defines the carrier set of the radio.
The carrier set implies a regulatory domain, but
geographic-specific restrictions within a regulatory
domain may necessitate several carrier sets within
the regulatory domain.
usa(0) - ISM 2.4 GHz America
europe(1) - ISM 2.4 GHz Europe
japan(2) - ISM 2.4 GHz Japan
spain(3) - ISM 2.4 GHz Spain
france(4) - ISM 2.4 GHz France
belgium(5) - ISM 2.4 GHz Belgium
israel(6) - ISM 2.4 GHz Israel
canada(7) - ISM 2.4 GHz Canada
australia(8) - ISM 2.4 GHz Australia
japanWide(9) - ISM 2.4 GHz JapanWide
world(10) - ISM 2.4 GHz World
usa5GHz(11) - OFDM UNII 2 America
europe5GHz(12) - OFDM UNII 2 Europe
japan5GHz(13) - OFDM UNII 2 Japan
singapore5GHz(14) - OFDM UNII 2 Singapore
taiwan5GHz(15) - OFDM UNII 2 Taiwan
china(16) - ISM 2.4 GHz China
northAmer5GHzUNI3(17)
- OFDM UNII 3 North America
chnIreAus5GHzUNI3(18)
- OFDM UNII 3 China, Ireland, Austrialia
hkNZ5GHzUNI3(19)
- OFDM UNII 3 Hong Kong, New Zealand
korea5GHzUNI3(20)
- OFDM UNII 3 Korea
mexAusNZ5GHzUNI3(21)
- OFDM UNII 3 Mexical, Australia,
New Zealand (North America without
ETSI Channels)
china5GHzUNI2(22)
- OFDM UNII 2 China
korea5GHzUNI123E(23)
- OFDM UNII 1,2,3,ETSI Korea
japan5GHzUNI12(24)
- OFDM UNII 1,2 Japan
taiwan5GHzUNI23E(25)
- OFDM UNII 2,3,ETSI Taiwan
israel5GhzUNI12(26)
- OFDM UNII 1,2 Israel
usaFCC49PS(27)
- OFDM FCC49 USA Public Safety
japan5GHzUNI1(28)
- OFDM UNII 1 Japan"
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 14.6.10."
::= { cd11IfPhyOperationEntry 1 }
cd11IfModulationType OBJECT-TYPE
SYNTAX INTEGER {
standard(1),
mok(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the RF modulation type of
the radio.
standard(1) - Standard, this is the default
setting currently defined in the
IEEE 802.11 standard.
mok(2) - MOK, this modulation was used
before the IEEE finished the
high-speed 802.11 standard.
The default modulation type is standard(1)."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 14.6.10."
::= { cd11IfPhyOperationEntry 2 }
cd11IfPreambleType OBJECT-TYPE
SYNTAX INTEGER {
long(1),
short(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the current radio preamble
type in use by the station. Possible values:
long(1) - long preambles
short(2) - short preambles.
A long preamble ensures compatibility between
access point and all early models of Cisco
Aironet Wireless LAN adapters (client devices).
A short preamble improves throughput performance.
The default preamble type is short(2)."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 14.6.10."
::= { cd11IfPhyOperationEntry 3 }
cd11IfDomainCapabilitySet OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the current multi-domain
capability setting of this radio. This object
takes one of the dot11MultiDomainCapabilityIndex
values on the dot11MultiDomainCapabilityTable.
The setting controls the first working radio channel
number, the number of working channels, and the
maximum transmit power level of the radio. The
setting must match the corresponding value of the
cd11IfCurrentCarrierSet set for this radio. This
object is writable only if the IEEE 802.11
multi-domain capability option is implemented
and enabled via dot11MultiDomainCapabilityImplemented
and dot11MultiDomainCapabilityEnabled."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, IEEE802dot11-MIB."
::= { cd11IfPhyOperationEntry 4 }
cd11IfPhyBasicRateSet OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..126))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute specifies if a data rate in the
dot11OperationalRateSet of the IEEE802dot11-MIB
is a Basic Rate for this radio interface.
If a data rate is a Basic Rate, the corresponding
octet of this attribute will contain a value of
128 (or the most significant bit is set). Otherwise,
the corresponding octet of this attribute will
be 0."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, IEEE802dot11-MIB."
::= { cd11IfPhyOperationEntry 5 }
cd11IfPhyMacSpecification OBJECT-TYPE
SYNTAX INTEGER {
ieee802dot11a(1),
ieee802dot11b(2),
ieee802dot11g(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies which IEEE 802.11 Standard
applies to this radio interface.
ieee802dot11a(1) - IEEE 802.11a Standard,
ieee802dot11b(2) - IEEE 802.11b Standard,
ieee802dot11g(3) - IEEE 802.11g Standard."
REFERENCE
"IEEE P802.11g (expected June 2003), Wireless LAN
Medium Access Control (MAC) and Physical Layer (PHY)
Specifications: Higher Speed Physical Layer (PHY)
Extension to IEEE 802.11b."
::= { cd11IfPhyOperationEntry 6 }
cd11IfPhyConcatenation OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If the value of cd11IfStationRole is 'roleBridge'
or 'roleNrBridge', this object sets the maximum
packet concatenation size in bytes for all
outbound packets. For our current 5 GHz product,
the maximum value range is from 1600 to 4000."
::= { cd11IfPhyOperationEntry 7 }
cd11IfPhyNativePowerUseStandard OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates if queries for current
transmit power and number of transmit power levels
of the radio for the frequency band shall be via
the Standard IEEE802dot11-MIB dot11PhyTxPowerTable
dot11CurrentTxPowerLevel and
dot11NumberSupportedPowerLevels objects or
corresponding cd11IfNativeCurrentPowerLevel
and cd11IfNativeNumberPowerLevels objects
in the cd11IfRfNativePowerTable.
If the value is 'true', the dot11CurrentTxPowerLevel
is used to configure the current radio transmit
power level. If the value is 'false', the
cd11IfNativeCurrentPowerLevel object shall be used
to configure the current radio transmit power level."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, IEEE802dot11-MIB."
DEFVAL { true }
::= { cd11IfPhyOperationEntry 8 }
cd11IfPhyFhssTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfPhyFhssEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the Physical Layer
Frequency Hopping Spread Spectrum configuration
parameters for each radio interface. This table
has a sparse dependent relationship on the ifTable.
For each entry in this table, there exists an
entry in the ifTable of ifType ieee80211(71).
Entries in this table cannot be created or deleted
by the network management system. All entries are
created or deleted by the agent."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 14.1.2."
::= { cd11IfPhyConfig 4 }
cd11IfPhyFhssEntry OBJECT-TYPE
SYNTAX Cd11IfPhyFhssEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A collection of attributes defining the FHSS
configuration parameters of a radio interface."
INDEX { ifIndex }
::= { cd11IfPhyFhssTable 1 }
Cd11IfPhyFhssEntry ::=
SEQUENCE {
cd11IfPhyFhssMaxCompatibleRate Integer32
}
cd11IfPhyFhssMaxCompatibleRate OBJECT-TYPE
SYNTAX Integer32 (2..127)
UNITS "500 Kb per second"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the of maximum data
rate at which the station may transmit data.
The octet contains a value representing a rate.
The rate should be within the range from '2' to
'127', corresponding to data rates in increments
of 500 kb/s from 1 Mb/s to 63.5 Mb/s. It should be
one of the rates in the IEEE802dot11-MIB
dot11OperationalRateSet. The default value is
'127'."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, IEEE802dot11-MIB."
::= { cd11IfPhyFhssEntry 1 }
cd11IfPhyDsssTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfPhyDsssEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the Physical Layer
Direct Sequence Spread Spectrum configuration
parameters for each radio interface. This table
has a sparse dependent relationship on the ifTable.
For each entry in this table, there exists an
entry in the ifTable of ifType ieee80211(71).
Entries in this table cannot be created or deleted
by the network management system. All entries are
created or deleted by the agent."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 15.1."
::= { cd11IfPhyConfig 5 }
cd11IfPhyDsssEntry OBJECT-TYPE
SYNTAX Cd11IfPhyDsssEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A collection of attributes defining the DSSS
configuration parameters of a radio interface."
INDEX { ifIndex }
::= { cd11IfPhyDsssTable 1 }
Cd11IfPhyDsssEntry ::=
SEQUENCE {
cd11IfPhyDsssMaxCompatibleRate Integer32,
cd11IfPhyDsssChannelAutoEnable TruthValue,
cd11IfPhyDsssCurrentChannel INTEGER
}
cd11IfPhyDsssMaxCompatibleRate OBJECT-TYPE
SYNTAX Integer32 (2..127)
UNITS "500 Kb per second"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the of maximum data
rate at which the station may transmit data.
The octet contains a value representing a rate.
The rate should be within the range from '2' to
'127', corresponding to data rates in increments
of 500 kb/s from 1 Mb/s to 63.5 Mb/s. It should
be one of the rates in the IEEE802dot11-MIB
dot11OperationalRateSet. The default value is
'127'."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, IEEE802dot11-MIB."
::= { cd11IfPhyDsssEntry 1 }
cd11IfPhyDsssChannelAutoEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If the value is 'true' and the radio is function
as an access point device (i.e., cd11IfStationRole
is 'roleRoot', the radio will scan for other BSS
activity on all channels available in the current
cd11IfCurrentCarrierSet before establishing its
own BSS. After the scan, this station will
establish its own BSS on the channel with the
least probability of radio signal congestion.
If the value is 'false', this station always
establishes its BSS on IEEE802dot11-MIB
dot11CurrentChannel. The default value is 'true'."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, IEEE802dot11-MIB."
::= { cd11IfPhyDsssEntry 2 }
cd11IfPhyDsssCurrentChannel OBJECT-TYPE
SYNTAX INTEGER (1..14 |
34|36|38|40|42|44|46|48|52|56|60|64 |
149|153|157|161)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operating frequency channel of
the DSSS PHY, as selected either by selective
scanning or via IEEE802dot11-MIB dot11CurrentChannel.
Valid channel numbers are defined in the
IEEE 802.11 Standard.
For North America, 802.11b channels allowed are 1 to
11 and 802.11a channels allowed are 36,40,44,48,52,56,
60, and 64."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 15.4.6.2."
::= { cd11IfPhyDsssEntry 3 }
cd11IfSuppDataRatesPrivacyTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfSuppDataRatesPrivacyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines the transmit and receive bit
rate of the radio on each IEEE 802.11 interface
and the WEP encryption support at those rates.
This table has an expansion dependent relationship
on the ifTable. For each entry in this table,
there exists at least an entry in the ifTable of
ifType ieee80211(71). Entries in this table
cannot be created or deleted by the network
management system. All entries are created or
deleted by the agent."
::= { cd11IfPhyConfig 11 }
cd11IfSuppDataRatesPrivacyEntry OBJECT-TYPE
SYNTAX Cd11IfSuppDataRatesPrivacyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry specifies the encryption support for
a particular data rate on a radio interface."
INDEX {
ifIndex,
cd11IfSuppDataRatesPrivacyIndex
}
::= { cd11IfSuppDataRatesPrivacyTable 1 }
Cd11IfSuppDataRatesPrivacyEntry ::=
SEQUENCE {
cd11IfSuppDataRatesPrivacyIndex Integer32,
cd11IfSuppDataRatesPrivacyValue Integer32,
cd11IfSuppDataRatesPrivacyEnabl TruthValue
}
cd11IfSuppDataRatesPrivacyIndex OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object identifies a data rate supported
on a radio. Each radio can support up to 8
different rates."
::= { cd11IfSuppDataRatesPrivacyEntry 1 }
cd11IfSuppDataRatesPrivacyValue OBJECT-TYPE
SYNTAX Integer32 (2..127)
UNITS "500 Kb per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object defines the receiving or transmission
bit rates supported by the PLCP and PMD, represented
by a count from 0x02-0x7f, corresponding to
data rates in increments of 500Kb/s from 1 Mb/s to
63.5 Mb/s."
::= { cd11IfSuppDataRatesPrivacyEntry 2 }
cd11IfSuppDataRatesPrivacyEnabl OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether WEP encryption is
supported by the radio for both transmit and receive
operations at the corresponding bit rate specified
by the cd11IfSuppDataRatesPrivacyValue."
::= { cd11IfSuppDataRatesPrivacyEntry 3 }
cd11IfChanSelectTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfChanSelectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies for each 802.11 channel,
whether the scanning process controlled by the
cd11IfPhyDsssChannelAutoEnable can select a
particular channel for use. This table has an
expansion dependent relationship on the ifTable.
For each entry in this table, there exists at least
an entry in the ifTable of ifType ieee80211(71).
Entries in this table cannot be created or deleted
by the network management system. All entries are
created or deleted by the agent."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 15.4.6.2."
::= { cd11IfPhyConfig 12 }
cd11IfChanSelectEntry OBJECT-TYPE
SYNTAX Cd11IfChanSelectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry specifies if a particular radio channel
is enabled on a radio interface."
INDEX {
ifIndex,
cd11IfChanSelectChannel
}
::= { cd11IfChanSelectTable 1 }
Cd11IfChanSelectEntry ::=
SEQUENCE {
cd11IfChanSelectChannel INTEGER,
cd11IfChanSelectEnable TruthValue
}
cd11IfChanSelectChannel OBJECT-TYPE
SYNTAX INTEGER (1..14 |
34|36|38|40|42|44|46|48|52|56|60|64 |
149|153|157|161)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object specifies an IEEE 802.11 channel
number which is a candidate for low-occupancy
scanning."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 15.4.6.2."
::= { cd11IfChanSelectEntry 1 }
cd11IfChanSelectEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If the value is 'true', cd11IfChanSelectChannel
is available for the system to use as its
cd11IfPhyDsssCurrentChannel after scanning for
channel occupancy. If the value is 'false',
cd11IfChanSelectChannel is not available. The
default value is 'true'."
::= { cd11IfChanSelectEntry 2 }
cd11IfClientTxPowerTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfClientTxPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table shows the recommended client
transmit power level for the radio and selects
one of the levels as the desired transmit power
level to be used by the client of the radio. By
adjusting the transmit power, the radio can limit
the interference caused by adjacent clients using
the same or adjacent channels."
::= { cd11IfPhyConfig 13 }
cd11IfClientTxPowerEntry OBJECT-TYPE
SYNTAX Cd11IfClientTxPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry specifies the number of available
transmit power levels, the values of all the
levels, and the selected level for a radio
interface."
INDEX { ifIndex }
::= { cd11IfClientTxPowerTable 1 }
Cd11IfClientTxPowerEntry ::=
SEQUENCE {
cd11IfClientNumberTxPowerLevels Integer32,
cd11IfClientTxPowerLevel1 Integer32,
cd11IfClientTxPowerLevel2 Integer32,
cd11IfClientTxPowerLevel3 Integer32,
cd11IfClientTxPowerLevel4 Integer32,
cd11IfClientTxPowerLevel5 Integer32,
cd11IfClientTxPowerLevel6 Integer32,
cd11IfClientTxPowerLevel7 Integer32,
cd11IfClientTxPowerLevel8 Integer32,
cd11IfClientCurrentTxPowerLevel Integer32
}
cd11IfClientNumberTxPowerLevels OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of power levels available for the
clients. This attribute can have a value of
1 to 8."
::= { cd11IfClientTxPowerEntry 1 }
cd11IfClientTxPowerLevel1 OBJECT-TYPE
SYNTAX Integer32 (-10000..10000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The client transmit output power for LEVEL1
in mW or dBm."
::= { cd11IfClientTxPowerEntry 2 }
cd11IfClientTxPowerLevel2 OBJECT-TYPE
SYNTAX Integer32 (-10000..10000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The client transmit output power for LEVEL2
in mW or dBm."
::= { cd11IfClientTxPowerEntry 3 }
cd11IfClientTxPowerLevel3 OBJECT-TYPE
SYNTAX Integer32 (-10000..10000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The client transmit output power for LEVEL3
in mW or dBm."
::= { cd11IfClientTxPowerEntry 4 }
cd11IfClientTxPowerLevel4 OBJECT-TYPE
SYNTAX Integer32 (-10000..10000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The client transmit output power for LEVEL4
in mW or dBm."
::= { cd11IfClientTxPowerEntry 5 }
cd11IfClientTxPowerLevel5 OBJECT-TYPE
SYNTAX Integer32 (-10000..10000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The client transmit output power for LEVEL5
in mW or dBm."
::= { cd11IfClientTxPowerEntry 6 }
cd11IfClientTxPowerLevel6 OBJECT-TYPE
SYNTAX Integer32 (-10000..10000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The client transmit output power for LEVEL6
in mW or dBm."
::= { cd11IfClientTxPowerEntry 7 }
cd11IfClientTxPowerLevel7 OBJECT-TYPE
SYNTAX Integer32 (-10000..10000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The client transmit output power for LEVEL7
in mW or dBm."
::= { cd11IfClientTxPowerEntry 8 }
cd11IfClientTxPowerLevel8 OBJECT-TYPE
SYNTAX Integer32 (-10000..10000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The client transmit output power for LEVEL8
in mW or dBm."
::= { cd11IfClientTxPowerEntry 9 }
cd11IfClientCurrentTxPowerLevel OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The TxPowerLevel N currently selected for client
to transmit data. It is up to the clients to honor
this transmit power setting."
::= { cd11IfClientTxPowerEntry 10 }
cd11IfErpOfdmTxPowerTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfErpOfdmTxPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table shows the available ERP-OFDM
transmit power levels for radios implementing
IEEE 802.11g Protocol and configures one of the
levels as the transmit power level.
This table has a sparse dependent relationship
on the ifTable. For each entry in this table,
there exists an entry in the ifTable of ifType
ieee80211(71) and the corresponding
cd11IfPhyMacSpecification is ieee802dot11g(3).
For all IEEE802.11g radios with an entry in this
table, the IEEE802dot11-MIB dot11PhyTxPowerTable
will be used to configure ERP-CCK transmit power
levels."
::= { cd11IfPhyConfig 14 }
cd11IfErpOfdmTxPowerEntry OBJECT-TYPE
SYNTAX Cd11IfErpOfdmTxPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry specifies the number of available
transmit power levels, the values of all the
levels, and the configured transmit power level
for an IEEE 802.11g radio interface."
INDEX { ifIndex }
::= { cd11IfErpOfdmTxPowerTable 1 }
Cd11IfErpOfdmTxPowerEntry ::=
SEQUENCE {
cd11IfErpOfdmNumberTxPowerLevels Integer32,
cd11IfErpOfdmTxPowerLevel1 Integer32,
cd11IfErpOfdmTxPowerLevel2 Integer32,
cd11IfErpOfdmTxPowerLevel3 Integer32,
cd11IfErpOfdmTxPowerLevel4 Integer32,
cd11IfErpOfdmTxPowerLevel5 Integer32,
cd11IfErpOfdmTxPowerLevel6 Integer32,
cd11IfErpOfdmTxPowerLevel7 Integer32,
cd11IfErpOfdmTxPowerLevel8 Integer32,
cd11IfErpOfdmCurrentTxPowerLevel Integer32
}
cd11IfErpOfdmNumberTxPowerLevels OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of power levels available for this
radio. This attribute can have a value of
1 to 8."
::= { cd11IfErpOfdmTxPowerEntry 1 }
cd11IfErpOfdmTxPowerLevel1 OBJECT-TYPE
SYNTAX Integer32 (0..10000)
UNITS "mW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ERP-OFDM transmit output power for LEVEL1."
::= { cd11IfErpOfdmTxPowerEntry 2 }
cd11IfErpOfdmTxPowerLevel2 OBJECT-TYPE
SYNTAX Integer32 (0..10000)
UNITS "mW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ERP-OFDM transmit output power for LEVEL2."
::= { cd11IfErpOfdmTxPowerEntry 3 }
cd11IfErpOfdmTxPowerLevel3 OBJECT-TYPE
SYNTAX Integer32 (0..10000)
UNITS "mW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ERP-OFDM transmit output power for LEVEL3."
::= { cd11IfErpOfdmTxPowerEntry 4 }
cd11IfErpOfdmTxPowerLevel4 OBJECT-TYPE
SYNTAX Integer32 (0..10000)
UNITS "mW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ERP-OFDM transmit output power for LEVEL4."
::= { cd11IfErpOfdmTxPowerEntry 5 }
cd11IfErpOfdmTxPowerLevel5 OBJECT-TYPE
SYNTAX Integer32 (0..10000)
UNITS "mW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ERP-OFDM transmit output power for LEVEL5."
::= { cd11IfErpOfdmTxPowerEntry 6 }
cd11IfErpOfdmTxPowerLevel6 OBJECT-TYPE
SYNTAX Integer32 (0..10000)
UNITS "mW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ERP-OFDM transmit output power for LEVEL6."
::= { cd11IfErpOfdmTxPowerEntry 7 }
cd11IfErpOfdmTxPowerLevel7 OBJECT-TYPE
SYNTAX Integer32 (0..10000)
UNITS "mW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ERP-OFDM transmit output power for LEVEL7."
::= { cd11IfErpOfdmTxPowerEntry 8 }
cd11IfErpOfdmTxPowerLevel8 OBJECT-TYPE
SYNTAX Integer32 (0..10000)
UNITS "mW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ERP-OFDM transmit output power for LEVEL8."
::= { cd11IfErpOfdmTxPowerEntry 9 }
cd11IfErpOfdmCurrentTxPowerLevel OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The TxPowerLevel N currently configured
to transmit data."
::= { cd11IfErpOfdmTxPowerEntry 10 }
cd11IfFrequencyBandTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfFrequencyBandEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table identifies the radio frequency
(sub)bands supported on the IEEE 802.11 radio
interfaces while operating per the regulations
imposed by the cd11IfCurrentCarrierSet.
This table has an expansion dependent relationship
on the ifTable. For each entry in this table,
there exists at least an entry in the ifTable of
ifType ieee80211(71). This table uses the
cd11IfRfFrequencyBand as the expansion index.
All entries in this table are created or deleted
only by the agent."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, IEEE802dot11-MIB."
::= { cd11IfPhyConfig 15 }
cd11IfFrequencyBandEntry OBJECT-TYPE
SYNTAX Cd11IfFrequencyBandEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry defines a supported radio frequency
band for an IEEE 802.11 radio interface."
INDEX {
ifIndex,
cd11IfRfFrequencyBand
}
::= { cd11IfFrequencyBandTable 1 }
Cd11IfFrequencyBandEntry ::=
SEQUENCE {
cd11IfRfFrequencyBand Unsigned32,
cd11IfRfFrequencyUnits INTEGER,
cd11IfRfStartChannelNumber Unsigned32,
cd11IfRfEndChannelNumber Unsigned32,
cd11IfRfChannelSpacingNumber Unsigned32,
cd11IfRfStartChannelFrequency Unsigned32,
cd11IfRfFrequencySpacing Unsigned32,
cd11IfRfFrequencyBandType
CDot11RadioFrequencyBandType,
cd11IfMaxChannelSwitchTime Unsigned32
}
cd11IfRfFrequencyBand OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object identifies radio frequency bands
supported on the radio."
::= { cd11IfFrequencyBandEntry 1 }
cd11IfRfFrequencyUnits OBJECT-TYPE
SYNTAX INTEGER {
mHz(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This base frequency units combines with the
cd11IfRfStartChannelFrequency to define the
actual frequency of the channel and combines
with the cd11IfRfFrequencySpacing to define the
minimum frequency spacing between two adjacent
frequency channels.
For example, frequency spacing of 5 MHz is
'mHz' in cd11IfRfFrequencyUnits and 5 in
cd11IfRfFrequencySpacing."
DEFVAL { mHz }
::= { cd11IfFrequencyBandEntry 2 }
cd11IfRfStartChannelNumber OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Numeric identifier of the first channel supported
in this radio frequency band. For example,
currently at the 2.4 GHz ISM band, the first channel
number is 1, while for the U-NII-1 band in the FCC
regulatory domain, the first supported channel is
number 36 at frequency 5180 MHz."
::= { cd11IfFrequencyBandEntry 3 }
cd11IfRfEndChannelNumber OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Numeric identifier of the last channel supported
in this radio frequency band. For example, in the
FCC regulatory domain, the last channel of the 2.4
GHz ISM band is number 11 and the last channel of
the U-NII-1 band is number 48 at frequency 5240 MHz."
::= { cd11IfFrequencyBandEntry 4 }
cd11IfRfChannelSpacingNumber OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Numeric spacing between the identifiers of two
adjacent supported channels in this band. For
example, currently at the 2.4 GHz ISM band, the
numeric channel spacing is 1, resulting in a channel
identifier sequence of 1, 2, 3, etc. In the
U-NII-1 band, the numeric channel spacing is 4,
resulting in a channel identifier sequence
of 36, 40, 44, etc."
::= { cd11IfFrequencyBandEntry 5 }
cd11IfRfStartChannelFrequency OBJECT-TYPE
SYNTAX Unsigned32 (0..10000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the base channel frequency of the
cd11IfRfStartChannelNumber channel from which
subsequent channels of this frequency band are
defined. The actual frequency value is defined
and calculated by multiplying this object with the
cd11IfRfFrequencyUnits. The subsequent channels
in the band are calculated by adding the
cd11IfRfChannelSpacingNumber multiplied by the
cd11IfRfFrequencySpacing to this object value.
For example, the first channel of U-NII-1 band is
channel 36, the cd11IfRfFrequencyUnits is 'mHz',
the cd11IfRfStartChannelFrequency is '5180', and
the cd11IfRfChannelSpacingNumber is 4. If the
cd11IfRfFrequencySpacing is 5 MHz, the second
supported channel of the U-NII-1 band will be
channel 40 at frequency 5200 MHz."
::= { cd11IfFrequencyBandEntry 6 }
cd11IfRfFrequencySpacing OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the frequency separation between two
adjacent radio frequency channels. The actual
frequency value is calculated by multiplying this
object with the cd11IfRfFrequencyUnits. For
example, for a frequency spacing of 5 MHz, the
value of cd11IfRfFrequencyUnits is 'mHz' and
the value of this object is 5."
::= { cd11IfFrequencyBandEntry 7 }
cd11IfRfFrequencyBandType OBJECT-TYPE
SYNTAX CDot11RadioFrequencyBandType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the enumerated radio frequency band name(s)
which this (sub)band occupies.
If the frequency band defined in a table row is not
included in the current CDot11RadioFrequencyBandType
definition, none of the bits are set for this object."
::= { cd11IfFrequencyBandEntry 8 }
cd11IfMaxChannelSwitchTime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum time required for the radio interface
to switch its transceiver from one channel to any
other supported channel in any supported band."
::= { cd11IfFrequencyBandEntry 9 }
cd11IfNativeTxPowerSupportTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfNativeTxPowerSupportEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table shows the transmit powers supported for
all the radio frequency bands on the IEEE 802.11
radios.
This table has an expansion dependent relationship
on the ifTable. For each entry in this table,
there exists at least an entry in the ifTable of
ifType ieee80211(71). This table uses the
cd11IfRfFrequencyBand of cd11IfFrequencyBandTable,
cd11IfRadioModulationClass, and
cd11IfNativeTxPowerLevel as the expansion indices.
All entries in this table can only be created or
deleted by the agent."
::= { cd11IfPhyConfig 16 }
cd11IfNativeTxPowerSupportEntry OBJECT-TYPE
SYNTAX Cd11IfNativeTxPowerSupportEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry specifies a supported transmit power
level for a frequency band, with a specified
modulation technique, on the IEEE 802.11 radio
interface."
INDEX {
ifIndex,
cd11IfRfFrequencyBand,
cd11IfRadioModulationClass,
cd11IfNativeTxPowerLevel
}
::= { cd11IfNativeTxPowerSupportTable 1 }
Cd11IfNativeTxPowerSupportEntry ::=
SEQUENCE {
cd11IfRadioModulationClass CDot11RadioModulationClass,
cd11IfNativeTxPowerLevel Unsigned32,
cd11IfNativeTxPower Integer32
}
cd11IfRadioModulationClass OBJECT-TYPE
SYNTAX CDot11RadioModulationClass
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This identifies a radio modulation technique
used by the 802.11 radio interface."
::= { cd11IfNativeTxPowerSupportEntry 1 }
cd11IfNativeTxPowerLevel OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the unique index for a transmit power of a
radio frequency band for the radio."
::= { cd11IfNativeTxPowerSupportEntry 2 }
cd11IfNativeTxPower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a transmit power available at a radio
frequency band for the radio, when using the
modulation technique specified by the
cd11IfRadioModulationClass. The value of the
cd11IfNativeTxPowerUnits defines the units of this
transmit power. The value can be negative if the
units is 'dBm'."
::= { cd11IfNativeTxPowerSupportEntry 3 }
cd11IfRfNativePowerTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfRfNativePowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table configures the radio power settings
for frequency bands supported on the IEEE 802.11
radios. This table serves as an alternative for
the IEEE802dot11-MIB dot11PhyTxPowerTable. This
table allows different transmit powers to be used
on different radio frequency bands.
This table has an expansion dependent relationship
on the ifTable. For each entry in this table,
there exists at least an entry in the ifTable of
ifType ieee80211(71). This table uses the
cd11IfRfFrequencyBand and cd11IfRadioModulationClass
as the expansion indices.
All entries in this table are created or deleted
only by the agent."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, IEEE802dot11-MIB."
::= { cd11IfPhyConfig 17 }
cd11IfRfNativePowerEntry OBJECT-TYPE
SYNTAX Cd11IfRfNativePowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry specifies the transmit power
settings of a particular radio frequency band,
with a specified modulation technique, for
an IEEE 802.11 radio interface."
INDEX {
ifIndex,
cd11IfRfFrequencyBand,
cd11IfRadioModulationClass
}
::= { cd11IfRfNativePowerTable 1 }
Cd11IfRfNativePowerEntry ::=
SEQUENCE {
cd11IfNativeNumberPowerLevels Unsigned32,
cd11IfNativeCurrentPowerLevel Unsigned32,
cd11IfNativePowerUnits INTEGER
}
cd11IfNativeNumberPowerLevels OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of transmit power levels of a radio
frequency band for the radio. The value of this
object should be the same as the maximum
cd11IfNativeTxPowerLevel of the same ifIndex,
cd11IfRadioFrequencyBand, and
cd11IfRadioModulationClass.
If the value of this object is 0, the radio can
only receive, not transmit, on this frequency
band and modulation technique."
::= { cd11IfRfNativePowerEntry 1 }
cd11IfNativeCurrentPowerLevel OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If cd11IfPhyNativePowerUseStandard is 'false',
this object configures the current transmit power
level of a radio frequency band for the radio.
The value shall be one of the supported
cd11IfNativeTxPowerLevel for the radio of the
the same frequency band and modulation technique.
For any radio does not transmit power in the
specified radio frequency band and modulation
technique, the value of this object is 0."
::= { cd11IfRfNativePowerEntry 2 }
cd11IfNativePowerUnits OBJECT-TYPE
SYNTAX INTEGER {
mW(1),
dBm(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The native transmit power units implemented on the
radio. It is the units for the cd11IfNativeTxPower.
For the IEEE802dot11-MIB dot11PhyTxPowerTable,
'mW' is the only supported units."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, IEEE802dot11-MIB."
DEFVAL { mW }
::= { cd11IfRfNativePowerEntry 3 }
cd11IfDataRatesSensitivityTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfDataRatesSensitivityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies the receive sensitivity
specifications of IEEE 802.11 radio interfaces.
This table has an expansion dependent relationship
on the ifTable. For each entry in this table,
there exists at least an entry in the ifTable of
ifType ieee80211(71). This table uses the
cd11IfRadioModulationClass and IEEE802dot11-MIB
dot11SupportedDataRatesRxIndex as the expansion
indices.
Entries in this table cannot be created or deleted
by the network management system. All entries are
created or deleted by the agent."
::= { cd11IfPhyConfig 18 }
cd11IfDataRatesSensitivityEntry OBJECT-TYPE
SYNTAX Cd11IfDataRatesSensitivityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry specifies the receive sensitivity of an
IEEE 802.11 radio interface, with a specified
modulation technique, for each supported data
rate identified by the dot11SupportedDataRatesRxIndex."
INDEX {
ifIndex,
cd11IfRadioModulationClass,
dot11SupportedDataRatesRxIndex
}
::= { cd11IfDataRatesSensitivityTable 1 }
Cd11IfDataRatesSensitivityEntry ::=
SEQUENCE {
cd11IfRatesSensRequiredSnr Integer32,
cd11IfRatesSensContention Integer32
}
cd11IfRatesSensRequiredSnr OBJECT-TYPE
SYNTAX Integer32
UNITS "dB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum SNR requirement for each data rate
supported by a radio interface, when using the
modulation technique specified by
cd11IfRadioModulationClass. This is the required
carrier to noise difference."
::= { cd11IfDataRatesSensitivityEntry 1 }
cd11IfRatesSensContention OBJECT-TYPE
SYNTAX Integer32
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average contention sensitivity level for each
data rate supported by a radio interface, when using
the modulation technique specified by
cd11IfRadioModulationClass. This is the value where
50% of the packets are received successfully."
::= { cd11IfDataRatesSensitivityEntry 2 }
-- Statistics Objects
cd11IfMacLayerCountersTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfMacLayerCountersEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table includes MAC layer statistics collected
by the IEEE 802.11 radio interface. This table has
a sparse dependent relationship on the ifTable.
For each entry in this table, there exists an entry
in the ifTable of ifType ieee80211(71)."
::= { cd11IfMacStatistics 1 }
cd11IfMacLayerCountersEntry OBJECT-TYPE
SYNTAX Cd11IfMacLayerCountersEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains counters of frame transmissions
for a radio interface."
INDEX { ifIndex }
::= { cd11IfMacLayerCountersTable 1 }
Cd11IfMacLayerCountersEntry ::=
SEQUENCE {
cd11IfTransDeferEnerDetects Counter32,
cd11IfRecFrameMacCrcErrors Counter32,
cd11IfSsidMismatches Counter32
}
cd11IfTransDeferEnerDetects OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter shall increment when a frame transmission
is deferred due to energy detection."
::= { cd11IfMacLayerCountersEntry 1 }
cd11IfRecFrameMacCrcErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter shall increment when a frame received has
any MAC CRC error."
::= { cd11IfMacLayerCountersEntry 2 }
cd11IfSsidMismatches OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter shall increment when a beacon or probe
response frame received for which the SSIDs in the
frame do not match the IEEE802dot11-MIB
dot11DesiredSSID object."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, IEEE802dot11-MIB."
::= { cd11IfMacLayerCountersEntry 3 }
cd11IfRogueApDetectedTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfRogueApDetectedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table includes rogue AP detected
information collected by the IEEE 802.11 radio
interface and 802.11 system management. This
table has a sparse dependent relationship on
the ifTable. For each entry in this table,
there exists an entry in the ifTable of ifType
ieee80211(71)."
::= { cd11IfMacStatistics 2 }
cd11IfRogueApDetectedEntry OBJECT-TYPE
SYNTAX Cd11IfRogueApDetectedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains information of a rogue AP
detected by a radio interface."
INDEX {
ifIndex,
cd11IfRogueApMacAddr
}
::= { cd11IfRogueApDetectedTable 1 }
Cd11IfRogueApDetectedEntry ::=
SEQUENCE {
cd11IfRogueApMacAddr MacAddress,
cd11IfRogueApName SnmpAdminString
}
cd11IfRogueApMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the MAC address of a rogue access point
detected by this radio."
::= { cd11IfRogueApDetectedEntry 1 }
cd11IfRogueApName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the name of the rogue access point."
::= { cd11IfRogueApDetectedEntry 2 }
-- ********************************************************************
-- * Notifications
-- ********************************************************************
cd11IfStationSwitchOverNotif NOTIFICATION-TYPE
OBJECTS {
cd11IfLocalRadioMonitorStatus
}
STATUS current
DESCRIPTION
"This notification will be sent when a radio
interface changes the cd11IfLocalRadioMonitorStatus
from 'monitor' to 'active'."
::= { ciscoDot11IfMIBNotifications 1 }
cd11IfRogueApDetectedNotif NOTIFICATION-TYPE
OBJECTS {
cd11IfRogueApName
}
STATUS current
DESCRIPTION
"This notification will be sent when a radio
interface detects a new rogue AP and causes
a new row to be added to the
cd11IfRogueApDetectedTable."
::= { ciscoDot11IfMIBNotifications 2 }
-- ********************************************************************
-- * Conformance information
-- ********************************************************************
ciscoDot11IfMIBConformance
OBJECT IDENTIFIER ::= { ciscoDot11IfMIB 3 }
ciscoDot11IfMIBCompliances
OBJECT IDENTIFIER ::= { ciscoDot11IfMIBConformance 1 }
ciscoDot11IfMIBGroups
OBJECT IDENTIFIER ::= { ciscoDot11IfMIBConformance 2 }
-- *****************************************************************
-- Compliance statements
-- *****************************************************************
ciscoDot11IfCompliance MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for the cd11IfManagement,
cd11IfPhyConfig, cd11IfMacStatisticsGroup, and
cd11IfDomainCapabilityGroup groups."
MODULE
MANDATORY-GROUPS {
cd11IfManagementGroup,
cd11IfPhyConfigGroup,
cd11IfMacStatisticsGroup,
cd11IfDomainCapabilityGroup
}
OBJECT cd11IfVlanEncryptKeyStatus
DESCRIPTION
"Creation of rows must be done via
'createAndGo' for all keys. When the
agent successfully creates the encryption
key, this object is set to 'active' by the
agent."
GROUP cd11IfVlanEncryptKeyConfigGroup
DESCRIPTION
"This group is required only if different
WEP keys are configured for the same VLAN
on different IEEE 802.11 radio interfaces.
The CISCO-WLAN-VLAN-MIB cwvlWlanNUcastKeyTable
should be used otherwise."
::= { ciscoDot11IfMIBCompliances 1 }
ciscoDot11IfComplianceRev1 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement of the ciscoDot11IfMIB
module."
MODULE
MANDATORY-GROUPS {
cd11IfRadioManageGroup,
cd11IfAssociationManageGroup,
cd11IfPhyConfigGroupRev1,
cd11IfMacStatisticsGroup
}
GROUP cd11IfSsidAssociationGroup
DESCRIPTION
"This group is required only if the platform
implementing this MIB does not support
CISCO-DOT11-SSID-SECURITY-MIB."
GROUP cd11IfVlanManageGroup
DESCRIPTION
"This group is required only if different
WEP keys are configured for the same VLAN
on different IEEE 802.11 radio interfaces
or if the CISCO-WLAN-VLAN-MIB is not
supported on the platform implementing
this MIB."
GROUP cd11IfRemoteMonitoringGroup
DESCRIPTION
"This group is required only if the platform
implementing this MIB does not support
CISCO-L2-DEV-MONITORING-MIB."
GROUP cd11IfPhyErpConfigGroup
DESCRIPTION
"This group is required only if the platform
implementing IEEE 802.11g Protocol."
OBJECT cd11IfVlanEncryptKeyStatus
DESCRIPTION
"Creation of rows must be done via
'createAndGo' for all keys. When the
agent successfully creates the encryption
key, this object is set to 'active' by the
agent."
OBJECT cd11IfPhyFhssMaxCompatibleRate
DESCRIPTION
"This object is only mandatory for devices
supporting Frequency-Hopping Spread Spectrum."
::= { ciscoDot11IfMIBCompliances 2 }
ciscoDot11IfComplianceRev2 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement of the ciscoDot11IfMIB
module."
MODULE
MANDATORY-GROUPS {
cd11IfStationManageGroup,
cd11IfAssociationManageGroup,
cd11IfPhyConfigGroupRev1,
cd11IfMacStatisticsGroup,
cd11IfNativeRadioManageGroup,
cd11IfDataRatesSensitivityGroup
}
GROUP cd11IfSsidAssociationGroup
DESCRIPTION
"This group is required only if the platform
implementing this MIB does not support
CISCO-DOT11-SSID-SECURITY-MIB."
GROUP cd11IfVlanManageGroup
DESCRIPTION
"This group is required only if different
encryption cipher types are configured for
the same VLAN on different IEEE 802.11 radio
interfaces or if the CISCO-WLAN-VLAN-MIB is
not supported on the platform implementing
this MIB."
GROUP cd11IfVlanWepManageGroup
DESCRIPTION
"This group is required only if different
WEP keys are configured for the same VLAN
on different IEEE 802.11 radio interfaces
or if the CISCO-WLAN-VLAN-MIB is not
supported on the platform implementing
this MIB."
GROUP cd11IfRemoteMonitoringGroup
DESCRIPTION
"This group is required only if the platform
implementing this MIB does not support
CISCO-L2-DEV-MONITORING-MIB."
GROUP cd11IfPhyErpConfigGroup
DESCRIPTION
"This group is required only if the platform
implementing IEEE 802.11g Protocol."
GROUP cd11IfRogueApDetectedGroup
DESCRIPTION
"This group is required only if the platform
implementing this MIB does not support
ciscoDdpIappRogueApInfoGroup objects in
CISCO-DDP-IAPP-MIB."
GROUP cd11IfMonitorNotificationGroup
DESCRIPTION
"This group is required only if the platform
implementing this MIB does not support
CISCO-DDP-IAPP-MIB ciscoDdpIappNotificationGroup
and CISCO-L2-DEV-MONITORING-MIB
ciscoL2DevMonNotificationGroup."
OBJECT cd11IfVlanEncryptKeyStatus
DESCRIPTION
"Creation of rows must be done via
'createAndGo' for all keys. When the
agent successfully creates the encryption
key, this object is set to 'active' by the
agent."
OBJECT cd11IfPhyFhssMaxCompatibleRate
DESCRIPTION
"This object is only mandatory for devices
supporting Frequency-Hopping Spread Spectrum."
::= { ciscoDot11IfMIBCompliances 3 }
ciscoDot11IfComplianceRev3 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement of the ciscoDot11IfMIB
module."
MODULE
MANDATORY-GROUPS {
cd11IfStationManageGroup,
cd11IfAssociationManageGroup,
cd11IfPhyConfigGroupRev1,
cd11IfMacStatisticsGroup,
cd11IfNativeRadioManageGroup,
cd11IfDataRatesSensitivityGroup,
cd11Ifdot11UpgradeStatusGroup
}
GROUP cd11IfSsidAssociationGroup
DESCRIPTION
"This group is required only if the platform
implementing this MIB does not support
CISCO-DOT11-SSID-SECURITY-MIB."
GROUP cd11IfVlanManageGroup
DESCRIPTION
"This group is required only if different
encryption cipher types are configured for
the same VLAN on different IEEE 802.11 radio
interfaces or if the CISCO-WLAN-VLAN-MIB is
not supported on the platform implementing
this MIB."
GROUP cd11IfVlanWepManageGroup
DESCRIPTION
"This group is required only if different
WEP keys are configured for the same VLAN
on different IEEE 802.11 radio interfaces
or if the CISCO-WLAN-VLAN-MIB is not
supported on the platform implementing
this MIB."
GROUP cd11IfRemoteMonitoringGroup
DESCRIPTION
"This group is required only if the platform
implementing this MIB does not support
CISCO-L2-DEV-MONITORING-MIB."
GROUP cd11IfPhyErpConfigGroup
DESCRIPTION
"This group is required only if the platform
implementing IEEE 802.11g Protocol."
GROUP cd11IfRogueApDetectedGroup
DESCRIPTION
"This group is required only if the platform
implementing this MIB does not support
ciscoDdpIappRogueApInfoGroup objects in
CISCO-DDP-IAPP-MIB."
GROUP cd11IfMonitorNotificationGroup
DESCRIPTION
"This group is required only if the platform
implementing this MIB does not support
CISCO-DDP-IAPP-MIB ciscoDdpIappNotificationGroup
and CISCO-L2-DEV-MONITORING-MIB
ciscoL2DevMonNotificationGroup."
OBJECT cd11IfVlanEncryptKeyStatus
DESCRIPTION
"Creation of rows must be done via
'createAndGo' for all keys. When the
agent successfully creates the encryption
key, this object is set to 'active' by the
agent."
OBJECT cd11IfPhyFhssMaxCompatibleRate
DESCRIPTION
"This object is only mandatory for devices
supporting Frequency-Hopping Spread Spectrum."
::= { ciscoDot11IfMIBCompliances 4 }
ciscoDot11IfComplianceRev4 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement of the ciscoDot11IfMIB
module."
MODULE
MANDATORY-GROUPS {
cd11IfStationManageGroup,
cd11IfAssociationManageGroup,
cd11IfPhyConfigGroupRev1,
cd11IfMacStatisticsGroup,
cd11IfNativeRadioManageGroup,
cd11IfDataRatesSensitivityGroup,
cd11Ifdot11UpgradeStatusGroup,
cd11Ifdot11MobileStationScanGroup
}
GROUP cd11IfSsidAssociationGroup
DESCRIPTION
"This group is required only if the platform
implementing this MIB does not support
CISCO-DOT11-SSID-SECURITY-MIB."
GROUP cd11IfVlanManageGroup
DESCRIPTION
"This group is required only if different
encryption cipher types are configured for
the same VLAN on different IEEE 802.11 radio
interfaces or if the CISCO-WLAN-VLAN-MIB is
not supported on the platform implementing
this MIB."
GROUP cd11IfVlanWepManageGroup
DESCRIPTION
"This group is required only if different
WEP keys are configured for the same VLAN
on different IEEE 802.11 radio interfaces
or if the CISCO-WLAN-VLAN-MIB is not
supported on the platform implementing
this MIB."
GROUP cd11IfRemoteMonitoringGroup
DESCRIPTION
"This group is required only if the platform
implementing this MIB does not support
CISCO-L2-DEV-MONITORING-MIB."
GROUP cd11IfPhyErpConfigGroup
DESCRIPTION
"This group is required only if the platform
implementing IEEE 802.11g Protocol."
GROUP cd11IfRogueApDetectedGroup
DESCRIPTION
"This group is required only if the platform
implementing this MIB does not support
ciscoDdpIappRogueApInfoGroup objects in
CISCO-DDP-IAPP-MIB."
GROUP cd11IfMonitorNotificationGroup
DESCRIPTION
"This group is required only if the platform
implementing this MIB does not support
CISCO-DDP-IAPP-MIB ciscoDdpIappNotificationGroup
and CISCO-L2-DEV-MONITORING-MIB
ciscoL2DevMonNotificationGroup."
OBJECT cd11IfVlanEncryptKeyStatus
DESCRIPTION
"Creation of rows must be done via
'createAndGo' for all keys. When the
agent successfully creates the encryption
key, this object is set to 'active' by the
agent."
OBJECT cd11IfPhyFhssMaxCompatibleRate
DESCRIPTION
"This object is only mandatory for devices
supporting Frequency-Hopping Spread Spectrum."
::= { ciscoDot11IfMIBCompliances 5 }
-- *****************************************************************
-- Units of conformance
-- *****************************************************************
cd11IfManagementGroup OBJECT-GROUP
OBJECTS {
cd11IfStationRole,
cd11IfCiscoExtensionsEnable,
cd11IfAllowBroadcastSsidAssoc,
cd11IfPrivacyOptionMaxRate,
cd11IfEthernetEncapsulDefault,
cd11IfBridgeSpacing,
cd11IfDesiredSsidMaxAssocSta,
cd11IfAuxiliarySsidLength,
cd11IfVoipExtensionsEnable,
cd11IfDesiredSsidMicAlgorithm,
cd11IfDesiredSsidWepPermuteAlg,
cd11IfAuthAlgRequireEap,
cd11IfAuthAlgRequireMacAddr,
cd11IfAuthAlgDefaultVlan,
cd11IfWepDefaultKeyLen,
cd11IfWepDefaultKeyValue,
cd11IfDesiredBssAddr,
cd11IfAuxSsid,
cd11IfAuxSsidBroadcastSsid,
cd11IfAuxSsidMaxAssocSta,
cd11IfAuxSsidMicAlgorithm,
cd11IfAuxSsidWepPermuteAlg,
cd11IfAuxSsidAuthAlgEnable,
cd11IfAuxSsidAuthAlgRequireEap,
cd11IfAuxSsidAuthAlgRequireMac,
cd11IfAuxSsidAuthAlgDefaultVlan,
cd11IfAssignedSta
}
STATUS deprecated
DESCRIPTION
"Information to support management of
IEEE 802.11 protocol interfaces."
::= { ciscoDot11IfMIBGroups 1 }
cd11IfPhyConfigGroup OBJECT-GROUP
OBJECTS {
cd11IfCurrentCarrierSet,
cd11IfModulationType,
cd11IfPreambleType,
cd11IfPhyFhssMaxCompatibleRate,
cd11IfPhyDsssMaxCompatibleRate,
cd11IfPhyDsssChannelAutoEnable,
cd11IfPhyDsssCurrentChannel,
cd11IfSuppDataRatesPrivacyValue,
cd11IfSuppDataRatesPrivacyEnabl,
cd11IfChanSelectEnable
}
STATUS deprecated
DESCRIPTION
"Information to support configuration of
IEEE 802.11 protocol Physical layer."
::= { ciscoDot11IfMIBGroups 2 }
cd11IfMacStatisticsGroup OBJECT-GROUP
OBJECTS {
cd11IfTransDeferEnerDetects,
cd11IfRecFrameMacCrcErrors,
cd11IfSsidMismatches
}
STATUS current
DESCRIPTION
"Statistics information on IEEE 802.11
radio interface MAC layer."
::= { ciscoDot11IfMIBGroups 3 }
cd11IfVlanEncryptKeyConfigGroup OBJECT-GROUP
OBJECTS {
cd11IfVlanEncryptKeyLen,
cd11IfVlanEncryptKeyValue,
cd11IfVlanEncryptKeyStatus
}
STATUS deprecated
DESCRIPTION
"WEP key configuration for specific VLANs
on IEEE 802.11 radio interface."
::= { ciscoDot11IfMIBGroups 4 }
cd11IfDomainCapabilityGroup OBJECT-GROUP
OBJECTS {
cd11IfDomainCapabilitySet
}
STATUS deprecated
DESCRIPTION
"This object class provides the objects necessary
to manage the channels and transmit power usable by
a radio within its regulatory domain."
::= { ciscoDot11IfMIBGroups 5 }
cd11IfPhyMacCapabilityGroup OBJECT-GROUP
OBJECTS {
cd11IfPhyBasicRateSet,
cd11IfPhyMacSpecification
}
STATUS deprecated
DESCRIPTION
"This object class provides the objects necessary
to manage the Basic Rate capability applied to the
defined operational data rate and and IEEE 802.11
Standard applied to the radio."
::= { ciscoDot11IfMIBGroups 6 }
cd11IfAuthAlgMethodListGroup OBJECT-GROUP
OBJECTS {
cd11IfAuthAlgEapMethod,
cd11IfAuthAlgMacAddrMethod,
cd11IfAuxSsidAuthAlgEapMethod,
cd11IfAuxSsidAuthAlgMacMethod
}
STATUS deprecated
DESCRIPTION
"This object class provides the objects necessary
to specify the authentication method applied to
MAC address or EAP authentications."
::= { ciscoDot11IfMIBGroups 7 }
cd11IfRadioManageGroup OBJECT-GROUP
OBJECTS {
cd11IfStationRole,
cd11IfCiscoExtensionsEnable,
cd11IfPrivacyOptionMaxRate,
cd11IfEthernetEncapsulDefault,
cd11IfBridgeSpacing,
cd11IfVoipExtensionsEnable,
cd11IfAuxiliarySsidLength,
cd11IfAllowBroadcastSsidAssoc,
cd11IfDesiredBssAddr,
cd11IfAssignedSta,
cd11IfWorldMode,
cd11IfWorldModeCountry,
cd11IfMobileStationScanParent
}
STATUS deprecated
DESCRIPTION
"Information to manage IEEE 802.11 protocol
radio interface settings."
::= { ciscoDot11IfMIBGroups 8 }
cd11IfAssociationManageGroup OBJECT-GROUP
OBJECTS {
cd11IfDesiredSsidMaxAssocSta,
cd11IfDesiredSsidMicAlgorithm,
cd11IfDesiredSsidWepPermuteAlg,
cd11IfAuthAlgRequireEap,
cd11IfAuthAlgRequireMacAddr,
cd11IfAuthAlgDefaultVlan,
cd11IfAuthAlgEapMethod,
cd11IfAuthAlgMacAddrMethod,
cd11IfWepDefaultKeyLen,
cd11IfWepDefaultKeyValue
}
STATUS current
DESCRIPTION
"Information to manage IEEE 802.11 protocol
interface desired SSID association and
default encryption key settings."
::= { ciscoDot11IfMIBGroups 9 }
cd11IfSsidAssociationGroup OBJECT-GROUP
OBJECTS {
cd11IfAuxSsid,
cd11IfAuxSsidBroadcastSsid,
cd11IfAuxSsidMaxAssocSta,
cd11IfAuxSsidMicAlgorithm,
cd11IfAuxSsidWepPermuteAlg,
cd11IfAuxSsidAuthAlgEnable,
cd11IfAuxSsidAuthAlgRequireEap,
cd11IfAuxSsidAuthAlgRequireMac,
cd11IfAuxSsidAuthAlgDefaultVlan,
cd11IfAuxSsidAuthAlgEapMethod,
cd11IfAuxSsidAuthAlgMacMethod
}
STATUS current
DESCRIPTION
"Information to manage IEEE 802.11 protocol
interface SSID association and authentication
settings."
::= { ciscoDot11IfMIBGroups 10 }
cd11IfVlanManageGroup OBJECT-GROUP
OBJECTS {
cd11IfVlanEncryptKeyLen,
cd11IfVlanEncryptKeyValue,
cd11IfVlanEncryptKeyStatus,
cd11IfVlanEncryptKeyTransmit,
cd11IfVlanSecurityVlanEnabled,
cd11IfVlanBcastKeyChangeInterval,
cd11IfVlanBcastKeyCapabilChange,
cd11IfVlanBcastKeyClientLeave,
cd11IfVlanSecurityCiphers,
cd11IfVlanSecurityRowStatus
}
STATUS current
DESCRIPTION
"Information to manage IEEE 802.11 protocol
interface VLAN and encryption settings."
::= { ciscoDot11IfMIBGroups 11 }
cd11IfRemoteMonitoringGroup OBJECT-GROUP
OBJECTS {
cd11IfRadioMonitorPollingFreq,
cd11IfRadioMonitorPollingTimeOut,
cd11IfLocalRadioMonitorStatus,
cd11IfRadioMonitorRowStatus
}
STATUS current
DESCRIPTION
"Information to manage IEEE 802.11 protocol
interface remote radio monitoring settings."
::= { ciscoDot11IfMIBGroups 12 }
cd11IfPhyConfigGroupRev1 OBJECT-GROUP
OBJECTS {
cd11IfCurrentCarrierSet,
cd11IfModulationType,
cd11IfPreambleType,
cd11IfDomainCapabilitySet,
cd11IfPhyBasicRateSet,
cd11IfPhyMacSpecification,
cd11IfPhyConcatenation,
cd11IfPhyDsssMaxCompatibleRate,
cd11IfPhyDsssChannelAutoEnable,
cd11IfPhyDsssCurrentChannel,
cd11IfPhyFhssMaxCompatibleRate,
cd11IfSuppDataRatesPrivacyValue,
cd11IfSuppDataRatesPrivacyEnabl,
cd11IfChanSelectEnable,
cd11IfClientNumberTxPowerLevels,
cd11IfClientTxPowerLevel1,
cd11IfClientTxPowerLevel2,
cd11IfClientTxPowerLevel3,
cd11IfClientTxPowerLevel4,
cd11IfClientTxPowerLevel5,
cd11IfClientTxPowerLevel6,
cd11IfClientTxPowerLevel7,
cd11IfClientTxPowerLevel8,
cd11IfClientCurrentTxPowerLevel
}
STATUS current
DESCRIPTION
"Information to configure IEEE 802.11 protocol
Physical layer settings."
::= { ciscoDot11IfMIBGroups 13 }
cd11IfPhyErpConfigGroup OBJECT-GROUP
OBJECTS {
cd11IfErpOfdmNumberTxPowerLevels,
cd11IfErpOfdmTxPowerLevel1,
cd11IfErpOfdmTxPowerLevel2,
cd11IfErpOfdmTxPowerLevel3,
cd11IfErpOfdmTxPowerLevel4,
cd11IfErpOfdmTxPowerLevel5,
cd11IfErpOfdmTxPowerLevel6,
cd11IfErpOfdmTxPowerLevel7,
cd11IfErpOfdmTxPowerLevel8,
cd11IfErpOfdmCurrentTxPowerLevel
}
STATUS current
DESCRIPTION
"Information to configure IEEE 802.11g protocol
Physical layer settings."
::= { ciscoDot11IfMIBGroups 14 }
cd11IfVlanWepManageGroup OBJECT-GROUP
OBJECTS {
cd11IfVlanEncryptionMode,
cd11IfVlanWepEncryptOptions,
cd11IfVlanWepEncryptMic,
cd11IfVlanWepEncryptKeyHashing
}
STATUS current
DESCRIPTION
"Information to manage IEEE 802.11 protocol
interface VLAN WEP encryption settings."
::= { ciscoDot11IfMIBGroups 15 }
cd11IfRogueApDetectedGroup OBJECT-GROUP
OBJECTS {
cd11IfRogueApName
}
STATUS current
DESCRIPTION
"Rogue AP detection information."
::= { ciscoDot11IfMIBGroups 16 }
cd11IfStationManageGroup OBJECT-GROUP
OBJECTS {
cd11IfStationRole,
cd11IfCiscoExtensionsEnable,
cd11IfPrivacyOptionMaxRate,
cd11IfEthernetEncapsulDefault,
cd11IfBridgeSpacing,
cd11IfVoipExtensionsEnable,
cd11IfAuxiliarySsidLength,
cd11IfAllowBroadcastSsidAssoc,
cd11IfDesiredBssAddr,
cd11IfAssignedSta,
cd11IfWorldMode,
cd11IfWorldModeCountry,
cd11IfMobileStationScanParent,
cd11IfPsPacketForwardEnable,
cd11IfMultipleBssidEnable,
cd11IfVlanPsPacketForwardEnable
}
STATUS current
DESCRIPTION
"Information to manage IEEE 802.11 protocol
radio interface settings."
::= { ciscoDot11IfMIBGroups 17 }
cd11IfNativeRadioManageGroup OBJECT-GROUP
OBJECTS {
cd11IfPhyNativePowerUseStandard,
cd11IfRfFrequencyUnits,
cd11IfRfStartChannelNumber,
cd11IfRfEndChannelNumber,
cd11IfRfChannelSpacingNumber,
cd11IfRfStartChannelFrequency,
cd11IfRfFrequencySpacing,
cd11IfRfFrequencyBandType,
cd11IfMaxChannelSwitchTime,
cd11IfNativeNumberPowerLevels,
cd11IfNativeCurrentPowerLevel,
cd11IfNativePowerUnits,
cd11IfNativeTxPower
}
STATUS current
DESCRIPTION
"Native parameters to manage IEEE 802.11
radio power and frequency bands."
::= { ciscoDot11IfMIBGroups 18 }
cd11IfDataRatesSensitivityGroup OBJECT-GROUP
OBJECTS {
cd11IfRatesSensRequiredSnr,
cd11IfRatesSensContention
}
STATUS current
DESCRIPTION
"Receive sensitivity specification for IEEE
802.11 radios."
::= { ciscoDot11IfMIBGroups 19 }
cd11IfMonitorNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS {
cd11IfStationSwitchOverNotif,
cd11IfRogueApDetectedNotif
}
STATUS current
DESCRIPTION
"The notification group for this module."
::= { ciscoDot11IfMIBGroups 20 }
cd11Ifdot11UpgradeStatusGroup OBJECT-GROUP
OBJECTS {
cd11IfDot11UpgradeStatus
}
STATUS current
DESCRIPTION
"This collection of objects provide information
about the status of upgrade of the dot11 radios
to operate in the new frequency set. "
::= { ciscoDot11IfMIBGroups 21 }
cd11Ifdot11MobileStationScanGroup OBJECT-GROUP
OBJECTS {
cd11IfMobileStationListIgnore,
cd11IfMobileStationScanChannel
}
STATUS current
DESCRIPTION
"This collection of objects provide information
about the limited channel to scan and Ignore
List. "
::= { ciscoDot11IfMIBGroups 22 }
END
|