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
|
-- *****************************************************************
-- IEEE802dot11-MIB :
-- IEEE 802.11 Management Information Base file
--
-- Nov 2002, Francis Pang
--
-- Copyright (c) 2002 by cisco Systems, Inc.
-- All rights reserved.
-- *****************************************************************
-- **********************************************************************
-- * IEEE 802.11 Management Information Base
-- **********************************************************************
IEEE802dot11-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
NOTIFICATION-TYPE,Integer32, Counter32,
Unsigned32 FROM SNMPv2-SMI
DisplayString , MacAddress, RowStatus,
TruthValue FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP,
NOTIFICATION-GROUP FROM SNMPv2-CONF
ifIndex FROM RFC1213-MIB;
-- **********************************************************************
-- * Tree Definition
-- **********************************************************************
member-body OBJECT IDENTIFIER ::= { iso 2 }
us OBJECT IDENTIFIER ::= { member-body 840 }
-- **********************************************************************
-- * MODULE IDENTITY
-- **********************************************************************
ieee802dot11 MODULE-IDENTITY
LAST-UPDATED "0208300000Z"
ORGANIZATION "IEEE 802.11"
CONTACT-INFO
"WG E-mail: stds-802-11@ieee.org
Chair: Stuart J. Kerry
Postal: Philips Semiconductors, Inc.
1109 McKay Drive
M/S 48 SJ
San Jose, CA 95130-1706 USA
Tel: +1 408 474 7356
Fax: +1 408 474 7247
E-mail: stuart.kerry@philips.com
Editor: Bob O'Hara
Postal: Informed Technology, Inc.
1750 Nantucket Circle, Suite 138
Santa Clara, CA 95054 USA
Tel: +1 408 986 9596
Fax: +1 408 727 2654
E-mail: bob@informed-technology.com"
DESCRIPTION
"The MIB module for IEEE 802.11 entities.
iso(1).member-body(2).us(840).ieee802dot11(10036)"
::= { us 10036 }
-- **********************************************************************
-- * Major sections
-- **********************************************************************
-- Station ManagemenT (SMT) Attributes
-- DEFINED AS "The SMT object class provides the necessary support
-- at the station to manage the processes in the station such that
-- the station may work cooperatively as a part of an IEEE 802.11
-- network."
dot11smt OBJECT IDENTIFIER ::= { ieee802dot11 1 }
-- dot11smt GROUPS
-- dot11StationConfigTable ::= { dot11smt 1 }
-- dot11AuthenticationAlgorithmsTable ::= { dot11smt 2 }
-- dot11WEPDefaultKeysTable ::= { dot11smt 3 }
-- dot11WEPKeyMappingsTable ::= { dot11smt 4 }
-- dot11PrivacyTable ::= { dot11smt 5 }
-- dot11SMTnotification ::= { dot11smt 6 }
-- dot11MultiDomainCapabilityTable ::= { dot11smt 7 }
-- MAC Attributes
-- DEFINED AS "The MAC object class provides the necessary support
-- for the access control, generation, and verification of frame
-- check sequences (FCSs), and proper delivery of valid data to
-- upper layers."
dot11mac OBJECT IDENTIFIER ::= { ieee802dot11 2 }
-- MAC GROUPS
-- reference IEEE Std 802.1f-1993
-- dot11OperationTable ::= { dot11mac 1 }
-- dot11CountersTable ::= { dot11mac 2 }
-- dot11GroupAddressesTable ::= { dot11mac 3 }
-- Resource Type ID
dot11res OBJECT IDENTIFIER ::= { ieee802dot11 3 }
dot11resAttribute OBJECT IDENTIFIER ::= { dot11res 1 }
-- PHY Attributes
-- DEFINED AS "The PHY object class provides the necessary support
-- for required PHY operational information that may vary from PHY
-- to PHY and from STA to STA to be communicated to upper layers."
dot11phy OBJECT IDENTIFIER ::= { ieee802dot11 4 }
-- PHY GROUPS
-- dot11PhyOperationTable ::= { dot11phy 1 }
-- dot11PhyAntennaTable ::= { dot11phy 2 }
-- dot11PhyTxPowerTable ::= { dot11phy 3 }
-- dot11PhyFHSSTable ::= { dot11phy 4 }
-- dot11PhyDSSSTable ::= { dot11phy 5 }
-- dot11PhyIRTable ::= { dot11phy 6 }
-- dot11RegDomainsSupportedTable ::= { dot11phy 7 }
-- dot11AntennasListTable ::= { dot11phy 8 }
-- dot11SupportedDataRatesTxTable ::= { dot11phy 9 }
-- dot11SupportedDataRatesRxTable ::= { dot11phy 10 }
-- dot11PhyOFDMTable ::= { dot11phy 11 }
-- dot11PhyHRDSSSTable ::= { dot11phy 12 }
-- dot11EHCCHoppingPatternTable ::= { dot11phy 13 }
-- **********************************************************************
-- * Textual conventions from 802 definitions
-- **********************************************************************
WEPKeytype ::= OCTET STRING (SIZE (5))
-- **********************************************************************
-- * MIB attribute OBJECT-TYPE definitions follow
-- **********************************************************************
-- **********************************************************************
-- * SMT Station Config Table
-- **********************************************************************
dot11StationConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11StationConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Station Configuration attributes. In tablular form to
allow for multiple instances on an agent."
::= { dot11smt 1 }
dot11StationConfigEntry OBJECT-TYPE
SYNTAX Dot11StationConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dot11StationConfigTable. It is
possible for there to be multiple IEEE 802.11 interfaces
on one agent, each with its unique MAC address. The
relationship between an IEEE 802.11 interface and an
interface in the context of the Internet-standard MIB is
one-to-one. As such, the value of an ifIndex object
instance can be directly used to identify corresponding
instances of the objects defined herein.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
INDEX { ifIndex }
::= { dot11StationConfigTable 1 }
Dot11StationConfigEntry ::=
SEQUENCE {
dot11StationID MacAddress,
dot11MediumOccupancyLimit INTEGER,
dot11CFPollable TruthValue,
dot11CFPPeriod INTEGER,
dot11CFPMaxDuration INTEGER,
dot11AuthenticationResponseTimeOut Unsigned32,
dot11PrivacyOptionImplemented TruthValue,
dot11PowerManagementMode INTEGER,
dot11DesiredSSID OCTET STRING,
dot11DesiredBSSType INTEGER,
dot11OperationalRateSet OCTET STRING,
dot11BeaconPeriod INTEGER,
dot11DTIMPeriod INTEGER,
dot11AssociationResponseTimeOut Unsigned32,
dot11DisassociateReason INTEGER,
dot11DisassociateStation MacAddress,
dot11DeauthenticateReason INTEGER,
dot11DeauthenticateStation MacAddress,
dot11AuthenticateFailStatus INTEGER,
dot11AuthenticateFailStation MacAddress,
dot11MultiDomainCapabilityImplemented TruthValue,
dot11MultiDomainCapabilityEnabled TruthValue,
dot11CountryString OCTET STRING }
dot11StationID OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"The purpose of dot11StationID is to allow a manager to
identify a station for its own purposes. This attribute
provides for that eventuality while keeping the true MAC
address independent. Its syntax is MAC address, and the
default value is the station's assigned, unique
MAC address."
::= { dot11StationConfigEntry 1 }
dot11MediumOccupancyLimit OBJECT-TYPE
SYNTAX INTEGER (0..1000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute shall indicate the maximum amount of time,
in TU, that a point coordinator (PC) may control the usage
of the wireless medium (WM) without relinquishing control
for long enough to allow at least one instance of DCF access
to the medium. The default value of this attribute shall
be 100, and the maximum value shall be 1000."
::= { dot11StationConfigEntry 2 }
dot11CFPollable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When this attribute is true, it shall indicate that
the STA is able to respond to a CF-Poll with a data frame
within a SIFS time. This attribute shall be false if
the STA is not able to respond to a CF-Poll with a data
frame within a SIFS time."
::= { dot11StationConfigEntry 3 }
dot11CFPPeriod OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The attribute shall describe the number of DTIM intervals
between the start of CFPs. It is modified by
MLME-START.request primitive."
::= { dot11StationConfigEntry 4 }
dot11CFPMaxDuration OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The attribute shall describe the maximum duration of
the CFP in TU that may be generated by the PCF. It is
modified by MLME-START.request primitive."
::= { dot11StationConfigEntry 5 }
dot11AuthenticationResponseTimeOut OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute shall specify the number of time units (TUs)
that a responding STA should wait for the next frame in the
authentication sequence."
::= { dot11StationConfigEntry 6 }
dot11PrivacyOptionImplemented OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute, when true, shall indicate that the IEEE
802.11 WEP option is implemented. The default value of
this attribute shall be false."
::= { dot11StationConfigEntry 7 }
dot11PowerManagementMode OBJECT-TYPE
SYNTAX INTEGER { active(1), powersave(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute shall specify the power management
mode of the STA. When set to active, it shall
indicate that the station is not in power-save
(PS) mode. When set to powersave, it shall indicate
that the station is in power-save mode. The power
management mode is transmitted in all frames
according to the rules in 7.1.3.1.7."
::= { dot11StationConfigEntry 8 }
dot11DesiredSSID OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute reflects the Service Set ID (SSID)
used in the DesiredSSID parameter of the most recent
MLME_Scan.request. This value may be modified
by an external management entity and used by the
local SME to make decisions about the Scanning
process."
::= { dot11StationConfigEntry 9 }
dot11DesiredBSSType OBJECT-TYPE
SYNTAX INTEGER { infrastructure(1), independent(2), any(3) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute shall specify the type of BSS the
station shall use when scanning for a BSS with
which to synchronize. This value is used to filter
Probe Response frames and Beacons. When set to
infrastructure, the station shall only synchronize
with a BSS whose Capability Information field has
the ESS subfield set to 1. When set to independent,
the station shall only synchronize with a BSS whose
Capability Information field has the IBSS subfield
set to 1. When set to any, the station may
synchronize to either type of BSS."
::= { dot11StationConfigEntry 10 }
dot11OperationalRateSet OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..126))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute shall specify the set of data
rates at which the station may transmit data.
Each octet contains a value representing a rate.
Each rate shall be within the range from 2 to 127,
corresponding to data rates in increments of
500 kbit/s from 1 Mbit/s to 63.5 Mbit/s, and shall
be supported (as indicated in the supported rates
table) for receiving data. This value is reported in
transmitted Beacon, Probe Request, Probe Response,
Association Request, Association Response,
Reassociation Request, and Reassociation Response
frames, and is used to determine whether a BSS
with which the station desires to synchronize is
suitable. It is also used when starting a BSS,
as specified in 10.3."
::= { dot11StationConfigEntry 11 }
dot11BeaconPeriod OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute shall specify the number of TUs that
a station shall use for scheduling Beacon
transmissions. This value is transmitted in Beacon
and Probe Response frames."
::= { dot11StationConfigEntry 12 }
dot11DTIMPeriod OBJECT-TYPE
SYNTAX INTEGER(1..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute shall specify the number of beacon
intervals that shall elapse between transmission of
Beacons frames containing a TIM element whose DTIM
Count field is 0. This value is transmitted in
the DTIM Period field of Beacon frames."
::= { dot11StationConfigEntry 13 }
dot11AssociationResponseTimeOut OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute shall specify the number of TU that a
requesting STA should wait for a response to a
transmitted association-request MMPDU."
::= { dot11StationConfigEntry 14 }
dot11DisassociateReason OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute holds the most recently
transmitted Reason Code in a Disassociation
frame. If no Disassociation frame has been
transmitted, the value of this attribute shall
be 0."
REFERENCE "IEEE Std 802.11-2002, 7.3.1.7"
::= { dot11StationConfigEntry 15 }
dot11DisassociateStation OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute holds the MAC address from the
Address 1 field of the most recently transmitted
Disassociation frame. If no Disassociation
frame has been transmitted, the value of this
attribute shall be 0."
::= { dot11StationConfigEntry 16 }
dot11DeauthenticateReason OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute holds the most recently
transmitted Reason Code in a Deauthentication
frame. If no Deauthentication frame has been
transmitted, the value of this attribute shall
be 0."
REFERENCE "IEEE Std 802.11-2002, 7.3.1.7"
::= { dot11StationConfigEntry 17 }
dot11DeauthenticateStation OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute holds the MAC address from the
Address 1 field of the most recently transmitted
Deauthentication frame. If no Deauthentication
frame has been transmitted, the value of this
attribute shall be 0."
::= { dot11StationConfigEntry 18 }
dot11AuthenticateFailStatus OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute holds the most recently
transmitted Status Code in a failed
Authentication frame. If no failed
Authentication frame has been transmitted, the
value of this attribute shall be 0."
REFERENCE "IEEE Std 802.11-2002, 7.3.1.9"
::= { dot11StationConfigEntry 19 }
dot11AuthenticateFailStation OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute holds the MAC address from the
Address 1 field of the most recently transmitted
failed Authentication frame. If no failed
Authentication frame has been transmitted, the
value of this attribute shall be 0."
::= { dot11StationConfigEntry 20 }
dot11MultiDomainCapabilityImplemented OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute, when TRUE, indicates that the
station implementation is capable of supporting
multiple regulatory domains. The capability is
disabled, otherwise. The default value of this
attribute is FALSE."
::= { dot11StationConfigEntry 21 }
dot11MultiDomainCapabilityEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute, when TRUE, indicates that the
capability of the station to operate in multiple
regulatory domains is enabled. The capability is
disabled, otherwise. The default value of this
attribute is FALSE."
::= { dot11StationConfigEntry 22 }
dot11CountryString OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(3))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute identifies the country in which the
station is operating. 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."
::= { dot11StationConfigEntry 23 }
-- **********************************************************************
-- * End of dot11StationConfig TABLE
-- **********************************************************************
-- **********************************************************************
-- * AuthenticationAlgorithms TABLE
-- **********************************************************************
dot11AuthenticationAlgorithmsTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11AuthenticationAlgorithmsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This (conceptual) table of attributes shall be a set of
all the authentication algorithms supported by the
stations. The following are the default values and the
associated algorithm:
Value = 1: Open System
Value = 2: Shared Key"
REFERENCE "IEEE Std 802.11-2002, 7.3.1.1"
::= { dot11smt 2 }
dot11AuthenticationAlgorithmsEntry OBJECT-TYPE
SYNTAX Dot11AuthenticationAlgorithmsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An Entry (conceptual row) in the Authentication
Algorithms Table.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
INDEX { ifIndex,
dot11AuthenticationAlgorithmsIndex }
::= { dot11AuthenticationAlgorithmsTable 1 }
Dot11AuthenticationAlgorithmsEntry ::=
SEQUENCE { dot11AuthenticationAlgorithmsIndex Integer32,
dot11AuthenticationAlgorithm INTEGER,
dot11AuthenticationAlgorithmsEnable TruthValue }
dot11AuthenticationAlgorithmsIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The auxiliary variable used to identify instances
of the columnar objects in the Authentication Algorithms Table."
::= { dot11AuthenticationAlgorithmsEntry 1 }
dot11AuthenticationAlgorithm OBJECT-TYPE
SYNTAX INTEGER { openSystem(1), sharedKey(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute shall be a set of all the authentication
algorithms supported by the STAs. The following are the
default values and the associated algorithm.
Value = 1: Open System
Value = 2: Shared Key"
::= { dot11AuthenticationAlgorithmsEntry 2 }
dot11AuthenticationAlgorithmsEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute, when true at a station, shall enable the acceptance
of the authentication algorithm described in the corresponding table
entry in authentication frames received by the station that have odd
authentication sequence numbers. The default value of this attribute
shall be 1 for the Open System table entry and 2 for all other table
entries."
::= { dot11AuthenticationAlgorithmsEntry 3 }
-- **********************************************************************
-- * End of AuthenticationAlgorithms TABLE
-- **********************************************************************
-- **********************************************************************
-- * WEPDefaultKeys TABLE
-- **********************************************************************
dot11WEPDefaultKeysTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11WEPDefaultKeysEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Conceptual table for WEP default keys. This table shall
contain the four WEP default secret key values
corresponding to the four possible KeyID values. The WEP
default secret keys are logically WRITE-ONLY. Attempts to
read the entries in this table shall return unsuccessful
status and values of null or zero. The default value of
each WEP default key shall be null."
REFERENCE "IEEE Std 802.11-2002, 8.3.2"
::= { dot11smt 3 }
dot11WEPDefaultKeysEntry OBJECT-TYPE
SYNTAX Dot11WEPDefaultKeysEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An Entry (conceptual row) in the WEP Default Keys Table.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
INDEX { ifIndex,
dot11WEPDefaultKeyIndex}
::= { dot11WEPDefaultKeysTable 1 }
Dot11WEPDefaultKeysEntry ::=
SEQUENCE { dot11WEPDefaultKeyIndex INTEGER,
dot11WEPDefaultKeyValue WEPKeytype }
dot11WEPDefaultKeyIndex OBJECT-TYPE
SYNTAX INTEGER (1..4)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The auxiliary variable used to identify instances
of the columnar objects in the WEP Default Keys Table.
The value of this variable is equal to the WEPDefaultKeyID + 1"
::= { dot11WEPDefaultKeysEntry 1 }
dot11WEPDefaultKeyValue OBJECT-TYPE
SYNTAX WEPKeytype
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A WEP default secret key value."
::= { dot11WEPDefaultKeysEntry 2 }
-- **********************************************************************
-- * End of WEPDefaultKeys TABLE
-- **********************************************************************
-- **********************************************************************
-- * WEPKeyMappings TABLE
-- **********************************************************************
dot11WEPKeyMappingsTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11WEPKeyMappingsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Conceptual table for WEP Key Mappings. The MIB supports
the ability to share a separate WEP key for each RA/TA
pair. The Key Mappings Table contains zero or one entry
for each MAC address and contains two fields for each
entry: WEPOn and the corresponding WEP key. The WEP key
mappings are logically WRITE-ONLY. Attempts to read the
entries in this table shall return unsuccessful status and
values of null or zero. The default value for all WEPOn
fields is false."
REFERENCE "IEEE Std 802.11-2002, 8.3.2"
::= { dot11smt 4 }
dot11WEPKeyMappingsEntry OBJECT-TYPE
SYNTAX Dot11WEPKeyMappingsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An Entry (conceptual row) in the WEP Key Mappings Table.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
INDEX { ifIndex,
dot11WEPKeyMappingIndex }
::= { dot11WEPKeyMappingsTable 1 }
Dot11WEPKeyMappingsEntry ::=
SEQUENCE { dot11WEPKeyMappingIndex Integer32,
dot11WEPKeyMappingAddress MacAddress,
dot11WEPKeyMappingWEPOn TruthValue,
dot11WEPKeyMappingValue WEPKeytype,
dot11WEPKeyMappingStatus RowStatus }
dot11WEPKeyMappingIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The auxiliary variable used to identify instances
of the columnar objects in the WEP Key Mappings Table."
::= { dot11WEPKeyMappingsEntry 1 }
dot11WEPKeyMappingAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The MAC address of the STA for which the values from this
key mapping entry are to be used."
::= { dot11WEPKeyMappingsEntry 2 }
dot11WEPKeyMappingWEPOn OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Boolean as to whether WEP is to be used when communicating
with the dot11WEPKeyMappingAddress STA."
::= { dot11WEPKeyMappingsEntry 3 }
dot11WEPKeyMappingValue OBJECT-TYPE
SYNTAX WEPKeytype
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A WEP secret key value."
::= { dot11WEPKeyMappingsEntry 4 }
dot11WEPKeyMappingStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status column used for creating, modifying, and
deleting instances of the columnar objects in the WEP key
mapping Table."
DEFVAL { active }
::= { dot11WEPKeyMappingsEntry 5 }
-- **********************************************************************
-- * End of WEPKeyMappings TABLE
-- **********************************************************************
-- **********************************************************************
-- * dot11PrivacyTable TABLE
-- **********************************************************************
dot11PrivacyTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11PrivacyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Group containing attributes concerned with IEEE 802.11
Privacy. Created as a table to allow multiple
instantiations on an agent."
::= { dot11smt 5 }
dot11PrivacyEntry OBJECT-TYPE
SYNTAX Dot11PrivacyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dot11PrivacyTable Table.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
INDEX { ifIndex }
::= { dot11PrivacyTable 1 }
Dot11PrivacyEntry ::=
SEQUENCE { dot11PrivacyInvoked TruthValue,
dot11WEPDefaultKeyID INTEGER,
dot11WEPKeyMappingLength Unsigned32,
dot11ExcludeUnencrypted TruthValue,
dot11WEPICVErrorCount Counter32,
dot11WEPExcludedCount Counter32 }
dot11PrivacyInvoked OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When this attribute is true, it shall indicate that the IEEE
802.11 WEP mechanism is used for transmitting frames of type
Data. The default value of this attribute shall be false."
::= { dot11PrivacyEntry 1 }
dot11WEPDefaultKeyID OBJECT-TYPE
SYNTAX INTEGER (0..3)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute shall indicate the use of the first,
second, third, or fourth element of the WEPDefaultKeys
array when set to values of zero, one, two, or three. The
default value of this attribute shall be 0."
REFERENCE "IEEE Std 802.11-2002, 8.3.2"
::= { dot11PrivacyEntry 2 }
dot11WEPKeyMappingLength OBJECT-TYPE
SYNTAX Unsigned32 (10..4294967295)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum number of tuples that dot11WEPKeyMappings can hold."
REFERENCE "IEEE Std 802.11-2002, 8.3.2"
::= { dot11PrivacyEntry 3 }
dot11ExcludeUnencrypted OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When this attribute is true, the STA shall not indicate at
the MAC service interface received MSDUs that have the WEP
subfield of the Frame Control field equal to zero. When this
attribute is false, the STA may accept MSDUs that have the WEP
subfield of the Frame Control field equal to zero. The default
value of this attribute shall be false."
::= { dot11PrivacyEntry 4 }
dot11WEPICVErrorCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter shall increment when a frame is received with the
WEP subfield of the Frame Control field set to one and the value
of the ICV as received in the frame does not match the ICV value
that is calculated for the contents of the received frame."
::= { dot11PrivacyEntry 5 }
dot11WEPExcludedCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter shall increment when a frame is received with the
WEP subfield of the Frame Control field set to zero and the value
of dot11ExcludeUnencrypted causes that frame to be discarded."
::= { dot11PrivacyEntry 6 }
-- **********************************************************************
-- * End of dot11Privacy TABLE
-- **********************************************************************
-- **********************************************************************
-- * SMT notification Objects
-- **********************************************************************
dot11SMTnotification OBJECT IDENTIFIER ::= { dot11smt 6 }
dot11Disassociate NOTIFICATION-TYPE
OBJECTS { ifIndex, dot11DisassociateReason, dot11DisassociateStation }
STATUS current
DESCRIPTION
"The disassociate notification shall be sent when the STA
sends a Disassociation frame. The value of the notification
shall include the MAC address of the MAC to which the Disassociation
frame was sent and the reason for the disassociation.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
::= { dot11SMTnotification 0 1 }
dot11Deauthenticate NOTIFICATION-TYPE
OBJECTS { ifIndex, dot11DeauthenticateReason, dot11DeauthenticateStation }
STATUS current
DESCRIPTION
"The deauthenticate notification shall be sent when the STA
sends a Deauthentication frame. The value of the notification
shall include the MAC address of the MAC to which the Deauthentication
frame was sent and the reason for the deauthentication.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
::= { dot11SMTnotification 0 2 }
dot11AuthenticateFail NOTIFICATION-TYPE
OBJECTS { ifIndex, dot11AuthenticateFailStatus, dot11AuthenticateFailStation }
STATUS current
DESCRIPTION
"The authenticate failure notification shall be sent when the STA
sends an Authentication frame with a status code other than
'successful'. The value of the notification
shall include the MAC address of the MAC to which the Authentication
frame was sent and the reason for the authentication failure.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
::= { dot11SMTnotification 0 3 }
-- **********************************************************************
-- * End of SMT notification Objects
-- **********************************************************************
-- ********************************************************************
-- * dot11MultiDomainCapability TABLE
-- ********************************************************************
dot11MultiDomainCapabilityTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11MultiDomainCapabilityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This (conceptual) table of attributes for
cross-domain mobility."
::= { dot11smt 7 }
dot11MultiDomainCapabilityEntry OBJECT-TYPE
SYNTAX Dot11MultiDomainCapabilityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the Multiple Domain
Capability Table.
IfIndex - Each IEEE 802.11 interface is represented
by an ifEntry. Interface tables in this MIB are
indexed by ifIndex."
INDEX { ifIndex,
dot11MultiDomainCapabilityIndex }
::= { dot11MultiDomainCapabilityTable 1 }
Dot11MultiDomainCapabilityEntry ::=
SEQUENCE { dot11MultiDomainCapabilityIndex Integer32,
dot11FirstChannelNumber Integer32,
dot11NumberofChannels Integer32,
dot11MaximumTransmitPowerLevel Integer32 }
dot11MultiDomainCapabilityIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The auxiliary variable used to identify instances of
the columnar objects in the Multi Domain Capability Table."
::= { dot11MultiDomainCapabilityEntry 1 }
dot11FirstChannelNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute shall indicate the value of the lowest
channel number in the subband for the associated domain
country string. The default value of this attribute
shall be zero."
::= { dot11MultiDomainCapabilityEntry 2 }
dot11NumberofChannels OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute shall indicate the value of the total
number of channels allowed in the subband for the
associated domain country string. The default value of
this attribute shall be zero."
::= { dot11MultiDomainCapabilityEntry 3 }
dot11MaximumTransmitPowerLevel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute shall indicate the maximum transmit power,
in dBm, allowed in the subband for the associated domain
country string. The default value of this attribute shall
be zero."
::= { dot11MultiDomainCapabilityEntry 4 }
-- ********************************************************************
-- * End of dot11MultiDomainCapability TABLE
-- ********************************************************************
-- **********************************************************************
-- * MAC Attribute Templates
-- **********************************************************************
-- **********************************************************************
-- * dot11OperationTable TABLE
-- **********************************************************************
dot11OperationTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11OperationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Group contains MAC attributes pertaining to the operation
of the MAC. This has been implemented as a table in order
to allow for multiple instantiations on an agent."
::= { dot11mac 1 }
dot11OperationEntry OBJECT-TYPE
SYNTAX Dot11OperationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dot11OperationEntry Table.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
INDEX { ifIndex }
::= { dot11OperationTable 1 }
Dot11OperationEntry ::=
SEQUENCE { dot11MACAddress MacAddress,
dot11RTSThreshold INTEGER,
dot11ShortRetryLimit INTEGER,
dot11LongRetryLimit INTEGER,
dot11FragmentationThreshold INTEGER,
dot11MaxTransmitMSDULifetime Unsigned32,
dot11MaxReceiveLifetime Unsigned32,
dot11ManufacturerID DisplayString,
dot11ProductID DisplayString }
dot11MACAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique MAC Address assigned to the STA."
::= { dot11OperationEntry 1 }
dot11RTSThreshold OBJECT-TYPE
SYNTAX INTEGER (0..2347)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute shall indicate the number of octets in an MPDU,
below which an RTS/CTS handshake shall not be performed. An
RTS/CTS handshake shall be performed at the beginning of any
frame exchange sequence where the MPDU is of type Data or
Management, the MPDU has an individual address in the Address1
field, and the length of the MPDU is greater than
this threshold. (For additional details, refer to Table 21 in
9.7.) Setting this attribute to be larger than the maximum
MSDU size shall have the effect of turning off the RTS/CTS
handshake for frames of Data or Management type transmitted by
this STA. Setting this attribute to zero shall have the effect
of turning on the RTS/CTS handshake for all frames of Data or
Management type transmitted by this STA. The default value of
this attribute shall be 2347."
::= { dot11OperationEntry 2 }
dot11ShortRetryLimit OBJECT-TYPE
SYNTAX INTEGER (1..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute shall indicate the maximum number of
transmission attempts of a frame, the length of which is less
than or equal to dot11RTSThreshold, that shall be made before a
failure condition is indicated. The default value of this
attribute shall be 7."
::= { dot11OperationEntry 3 }
dot11LongRetryLimit OBJECT-TYPE
SYNTAX INTEGER (1..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute shall indicate the maximum number of
transmission attempts of a frame, the length of which is
greater than dot11RTSThreshold, that shall be made before a
failure condition is indicated. The default value of this
attribute shall be 4."
::= { dot11OperationEntry 4 }
dot11FragmentationThreshold OBJECT-TYPE
SYNTAX INTEGER (256..2346)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute shall specify the current maximum size, in
octets, of the MPDU that may be delivered to the PHY. An MSDU
shall be broken into fragments if its size exceeds the value
of this attribute after adding MAC headers and trailers. An MSDU
or MMPDU shall be fragmented when the resulting frame has an
individual address in the Address1 field, and the length of the
frame is larger than this threshold. The default value for this
attribute shall be the lesser of 2346 or the aMPDUMaxLength of
the attached PHY and shall never exceed the lesser of 2346 or
the aMPDUMaxLength of the attached PHY. The value of this
attribute shall never be less than 256. "
::= { dot11OperationEntry 5 }
dot11MaxTransmitMSDULifetime OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The MaxTransmitMSDULifetime shall be the elapsed time in TU,
after the initial transmission of an MSDU, after which further
attempts to transmit the MSDU shall be terminated. The default
value of this attribute shall be 512."
::= { dot11OperationEntry 6 }
dot11MaxReceiveLifetime OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The MaxReceiveLifetime shall be the elapsed time in TU,
after the initial reception of a fragmented MMPDU or MSDU,
after which further attempts to reassemble the MMPDU or
MSDU shall be terminated. The default value shall be
512."
::= { dot11OperationEntry 7 }
dot11ManufacturerID OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ManufacturerID shall include, at a minimum, the name
of the manufacturer. It may include additional
information at the manufacturer's discretion. The default
value of this attribute shall be null."
::= { dot11OperationEntry 8 }
dot11ProductID OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ProductID shall include, at a minimum, an identifier
that is unique to the manufacturer. It may include
additional information at the manufacturer's discretion.
The default value of this attribute shall be null."
::= { dot11OperationEntry 9 }
-- **********************************************************************
-- * End of dot11OperationEntry TABLE
-- **********************************************************************
-- **********************************************************************
-- * dot11Counters TABLE
-- **********************************************************************
dot11CountersTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11CountersEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Group containing attributes that are MAC counters.
Implemented as a table to allow for multiple
instantiations on an agent."
::= { dot11mac 2 }
dot11CountersEntry OBJECT-TYPE
SYNTAX Dot11CountersEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dot11CountersEntry Table.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
INDEX { ifIndex }
::= { dot11CountersTable 1 }
Dot11CountersEntry ::=
SEQUENCE { dot11TransmittedFragmentCount Counter32,
dot11MulticastTransmittedFrameCount Counter32,
dot11FailedCount Counter32,
dot11RetryCount Counter32,
dot11MultipleRetryCount Counter32,
dot11FrameDuplicateCount Counter32,
dot11RTSSuccessCount Counter32,
dot11RTSFailureCount Counter32,
dot11ACKFailureCount Counter32,
dot11ReceivedFragmentCount Counter32,
dot11MulticastReceivedFrameCount Counter32,
dot11FCSErrorCount Counter32,
dot11TransmittedFrameCount Counter32,
dot11WEPUndecryptableCount Counter32 }
dot11TransmittedFragmentCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter shall be incremented for an acknowledged MPDU
with an individual address in the address 1 field or an MPDU
with a multicast address in the address 1 field of type Data
or Management."
::= { dot11CountersEntry 1 }
dot11MulticastTransmittedFrameCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter shall increment only when the multicast bit
is set in the destination MAC address of a successfully
transmitted MSDU. When operating as a STA in an ESS, where
these frames are directed to the AP, this implies having
received an acknowledgment to all associated MPDUs."
::= { dot11CountersEntry 2 }
dot11FailedCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter shall increment when an MSDU is not transmitted
successfully due to the number of transmit attempts exceeding
either the dot11ShortRetryLimit or dot11LongRetryLimit."
::= { dot11CountersEntry 3 }
dot11RetryCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter shall increment when an MSDU is successfully
transmitted after one or more retransmissions."
::= { dot11CountersEntry 4 }
dot11MultipleRetryCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter shall increment when an MSDU is successfully
transmitted after more than one retransmission."
::= { dot11CountersEntry 5 }
dot11FrameDuplicateCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter shall increment when a frame is received
that the Sequence Control field indicates is a
duplicate."
::= { dot11CountersEntry 6 }
dot11RTSSuccessCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter shall increment when a CTS is received in
response to an RTS."
::= { dot11CountersEntry 7 }
dot11RTSFailureCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter shall increment when a CTS is not received in
response to an RTS."
::= { dot11CountersEntry 8 }
dot11ACKFailureCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter shall increment when an ACK is not received
when expected."
::= { dot11CountersEntry 9 }
dot11ReceivedFragmentCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter shall be incremented for each successfully
received MPDU of type Data or Management."
::= { dot11CountersEntry 10 }
dot11MulticastReceivedFrameCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter shall increment when a MSDU is received
with the multicast bit set in the destination
MAC address."
::= { dot11CountersEntry 11 }
dot11FCSErrorCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter shall increment when an FCS error is
detected in a received MPDU."
::= { dot11CountersEntry 12 }
dot11TransmittedFrameCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter shall increment for each successfully transmitted MSDU."
::= { dot11CountersEntry 13 }
dot11WEPUndecryptableCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter shall increment when a frame is received with
the WEP subfield of the Frame Control field set to one and the
WEPOn value for the key mapped to the TA's MAC address
indicates that the frame should not have been encrypted or
that frame is discarded due to the receiving STA not
implementing the privacy option."
::= { dot11CountersEntry 14 }
-- **********************************************************************
-- * End of dot11CountersEntry TABLE
-- **********************************************************************
-- **********************************************************************
-- * GroupAddresses TABLE
-- **********************************************************************
dot11GroupAddressesTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11GroupAddressesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual table containing a set of MAC addresses
identifying the multicast addresses for which this STA
will receive frames. The default value of this attribute
shall be null."
::= { dot11mac 3 }
dot11GroupAddressesEntry OBJECT-TYPE
SYNTAX Dot11GroupAddressesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An Entry (conceptual row) in the Group Addresses Table.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
INDEX { ifIndex,
dot11GroupAddressesIndex}
::= { dot11GroupAddressesTable 1 }
Dot11GroupAddressesEntry ::=
SEQUENCE { dot11GroupAddressesIndex Integer32,
dot11Address MacAddress,
dot11GroupAddressesStatus RowStatus }
dot11GroupAddressesIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The auxiliary variable used to identify instances
of the columnar objects in the Group Addresses Table."
::= { dot11GroupAddressesEntry 1 }
dot11Address OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"MAC address identifying a multicast addresses
from which this STA will receive frames."
::= { dot11GroupAddressesEntry 2 }
dot11GroupAddressesStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status column used for creating, modifying, and
deleting instances of the columnar objects in the Group
Addresses Table."
DEFVAL { active }
::= { dot11GroupAddressesEntry 3 }
-- **********************************************************************
-- * End of GroupAddress TABLE
-- **********************************************************************
-- **********************************************************************
-- * Resource Type Attribute Templates
-- **********************************************************************
dot11ResourceTypeIDName OBJECT-TYPE
SYNTAX DisplayString (SIZE(4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Contains the name of the Resource Type ID managed object.
The attribute is read-only and always contains the value
RTID. This attribute value shall not be used as a naming
attribute for any other managed object class."
REFERENCE "IEEE Std 802.1F-1993, A.7"
DEFVAL { "RTID" }
::= { dot11resAttribute 1 }
-- **********************************************************************
-- * dot11ResourceInfo TABLE
-- **********************************************************************
dot11ResourceInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11ResourceInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Provides a means of indicating, in data readable from a
managed object, information that identifies the source of
the implementation."
REFERENCE "IEEE Std 802.1F-1993, A.7"
::= { dot11resAttribute 2 }
dot11ResourceInfoEntry OBJECT-TYPE
SYNTAX Dot11ResourceInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dot11ResourceInfo Table.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
INDEX { ifIndex }
::= { dot11ResourceInfoTable 1 }
Dot11ResourceInfoEntry ::=
SEQUENCE { dot11manufacturerOUI OCTET STRING,
dot11manufacturerName DisplayString,
dot11manufacturerProductName DisplayString,
dot11manufacturerProductVersion DisplayString }
dot11manufacturerOUI OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(3))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Takes the value of an organizationally unique identifier."
::= { dot11ResourceInfoEntry 1 }
dot11manufacturerName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A printable string used to identify the manufacturer of the
resource. Maximum string length is 128 octets."
::= { dot11ResourceInfoEntry 2 }
dot11manufacturerProductName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A printable string used to identify the manufacturer's product
name of the resource. Maximum string length is 128 octets."
::= { dot11ResourceInfoEntry 3 }
dot11manufacturerProductVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Printable string used to identify the manufacturer's product
version of the resource. Maximum string length is 128 octets."
::= { dot11ResourceInfoEntry 4 }
-- **********************************************************************
-- * End of dot11ResourceInfo TABLE
-- **********************************************************************
-- **********************************************************************
-- * PHY Attribute Templates
-- **********************************************************************
-- **********************************************************************
-- * dot11PhyOperation TABLE
-- **********************************************************************
dot11PhyOperationTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11PhyOperationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"PHY level attributes concerned with
operation. Implemented as a table indexed on
ifIndex to allow for multiple instantiations on an
Agent."
::= { dot11phy 1 }
dot11PhyOperationEntry OBJECT-TYPE
SYNTAX Dot11PhyOperationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dot11PhyOperation Table.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
INDEX { ifIndex }
::= { dot11PhyOperationTable 1 }
Dot11PhyOperationEntry ::=
SEQUENCE { dot11PHYType INTEGER,
dot11CurrentRegDomain Integer32,
dot11TempType INTEGER }
dot11PHYType OBJECT-TYPE
SYNTAX INTEGER { fhss(1), dsss(2), irbaseband(3), ofdm(4),
hrdsss(5) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is an 8-bit integer value that identifies the PHY type
supported by the attached PLCP and PMD. Currently defined
values and their corresponding PHY types are:
FHSS 2.4 GHz = 01 , DSSS 2.4 GHz = 02, IR Baseband = 03,
OFDM 5GHz = 04, HRDSSS = 05"
::= { dot11PhyOperationEntry 1 }
dot11CurrentRegDomain OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The current regulatory domain this instance of the PMD is
supporting. This object corresponds to one of the
RegDomains listed in dot11RegDomainsSupported."
::= { dot11PhyOperationEntry 2 }
dot11TempType OBJECT-TYPE
SYNTAX INTEGER { tempType1(1), tempType2(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"There are different operating temperature requirements
dependent on the anticipated environmental conditions. This
attribute describes the current PHY's operating temperature
range capability. Currently defined values and their
corresponding temperature ranges are:
Type 1 = X'01'-Commercial range of 0 to 40 degrees C,
Type 2 = X'02'-Industrial range of -30 to 70 degrees C."
::= { dot11PhyOperationEntry 3 }
-- **********************************************************************
-- * End of dot11PhyOperation TABLE
-- **********************************************************************
-- **********************************************************************
-- * dot11PhyAntenna TABLE
-- **********************************************************************
dot11PhyAntennaTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11PhyAntennaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Group of attributes for PhyAntenna. Implemented as a
table indexed on ifIndex to allow for multiple instances on
an agent."
::= { dot11phy 2}
dot11PhyAntennaEntry OBJECT-TYPE
SYNTAX Dot11PhyAntennaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dot11PhyAntenna Table.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
INDEX { ifIndex }
::= { dot11PhyAntennaTable 1 }
Dot11PhyAntennaEntry ::=
SEQUENCE { dot11CurrentTxAntenna Integer32,
dot11DiversitySupport INTEGER,
dot11CurrentRxAntenna Integer32 }
dot11CurrentTxAntenna OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The current antenna being used to transmit. This value
is one of the values appearing in dot11SupportedTxAntenna. This
may be used by a management agent to control which antenna is
used for transmission. "
::= { dot11PhyAntennaEntry 1 }
dot11DiversitySupport OBJECT-TYPE
SYNTAX INTEGER { fixedlist(1), notsupported(2), dynamic(3) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This implementation's support for diversity, encoded as:
X'01'-diversity is available and is performed over the fixed
list of antennas defined in dot11DiversitySelectionRx.
X'02'-diversity is not supported.
X'03'-diversity is supported and control of diversity is also
available, in which case the attribute
dot11DiversitySelectionRx can be dynamically modified by the
LME."
::= { dot11PhyAntennaEntry 2 }
dot11CurrentRxAntenna OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The current antenna being used to receive, if the dot11
DiversitySupport indicates that diversity is not supported.
The selected antenna shall be one of the antennae marked
for receive in the dot11AntennasListTable."
::= { dot11PhyAntennaEntry 3 }
-- **********************************************************************
-- * End of dot11PhyAntenna TABLE
-- **********************************************************************
-- **********************************************************************
-- * dot11PhyTxPower TABLE
-- **********************************************************************
dot11PhyTxPowerTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11PhyTxPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Group of attributes for dot11PhyTxPowerTable. Implemented
as a table indexed on STA ID to allow for multiple
instances on an Agent."
::= { dot11phy 3}
dot11PhyTxPowerEntry OBJECT-TYPE
SYNTAX Dot11PhyTxPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dot11PhyTxPower Table.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
INDEX { ifIndex }
::= { dot11PhyTxPowerTable 1 }
Dot11PhyTxPowerEntry ::=
SEQUENCE { dot11NumberSupportedPowerLevels INTEGER,
dot11TxPowerLevel1 INTEGER,
dot11TxPowerLevel2 INTEGER,
dot11TxPowerLevel3 INTEGER,
dot11TxPowerLevel4 INTEGER,
dot11TxPowerLevel5 INTEGER,
dot11TxPowerLevel6 INTEGER,
dot11TxPowerLevel7 INTEGER,
dot11TxPowerLevel8 INTEGER,
dot11CurrentTxPowerLevel INTEGER }
dot11NumberSupportedPowerLevels OBJECT-TYPE
SYNTAX INTEGER (1..8)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of power levels supported by the PMD.
This attribute can have a value of 1 to 8."
::= { dot11PhyTxPowerEntry 1 }
dot11TxPowerLevel1 OBJECT-TYPE
SYNTAX INTEGER (0..10000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transmit output power for LEVEL1 in mW.
This is also the default power level."
::= { dot11PhyTxPowerEntry 2 }
dot11TxPowerLevel2 OBJECT-TYPE
SYNTAX INTEGER (0..10000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transmit output power for LEVEL2 in mW."
::= { dot11PhyTxPowerEntry 3 }
dot11TxPowerLevel3 OBJECT-TYPE
SYNTAX INTEGER (0..10000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transmit output power for LEVEL3 in mW."
::= { dot11PhyTxPowerEntry 4 }
dot11TxPowerLevel4 OBJECT-TYPE
SYNTAX INTEGER (0..10000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transmit output power for LEVEL4 in mW."
::= { dot11PhyTxPowerEntry 5 }
dot11TxPowerLevel5 OBJECT-TYPE
SYNTAX INTEGER (0..10000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transmit output power for LEVEL5 in mW."
::= { dot11PhyTxPowerEntry 6 }
dot11TxPowerLevel6 OBJECT-TYPE
SYNTAX INTEGER (0..10000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transmit output power for LEVEL6 in mW."
::= { dot11PhyTxPowerEntry 7 }
dot11TxPowerLevel7 OBJECT-TYPE
SYNTAX INTEGER (0..10000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transmit output power for LEVEL7 in mW."
::= { dot11PhyTxPowerEntry 8 }
dot11TxPowerLevel8 OBJECT-TYPE
SYNTAX INTEGER (0..10000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transmit output power for LEVEL8 in mW."
::= { dot11PhyTxPowerEntry 9 }
dot11CurrentTxPowerLevel OBJECT-TYPE
SYNTAX INTEGER (1..8)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The TxPowerLevel N currently being used to transmit data.
Some PHYs also use this value to determine the receiver
sensitivity requirements for CCA."
::= { dot11PhyTxPowerEntry 10 }
-- **********************************************************************
-- * End of dot11PhyTxPower TABLE
-- **********************************************************************
-- **********************************************************************
-- * dot11PhyFHSS TABLE
-- **********************************************************************
dot11PhyFHSSTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11PhyFHSSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Group of attributes for dot11PhyFHSSTable. Implemented as a
table indexed on STA ID to allow for multiple instances on
an Agent."
::= { dot11phy 4 }
dot11PhyFHSSEntry OBJECT-TYPE
SYNTAX Dot11PhyFHSSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dot11PhyFHSS Table.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
INDEX { ifIndex }
::= { dot11PhyFHSSTable 1 }
Dot11PhyFHSSEntry ::=
SEQUENCE { dot11HopTime INTEGER,
dot11CurrentChannelNumber INTEGER,
dot11MaxDwellTime INTEGER,
dot11CurrentDwellTime INTEGER,
dot11CurrentSet INTEGER,
dot11CurrentPattern INTEGER,
dot11CurrentIndex INTEGER,
dot11EHCCPrimeRadix Integer32,
dot11EHCCNumberofChannelsFamilyIndex Integer32,
dot11EHCCCapabilityImplemented TruthValue,
dot11EHCCCapabilityEnabled TruthValue,
dot11HopAlgorithmAdopted INTEGER,
dot11RandomTableFlag TruthValue,
dot11NumberofHoppingSets Integer32,
dot11HopModulus Integer32,
dot11HopOffset Integer32 }
dot11HopTime OBJECT-TYPE
SYNTAX INTEGER (224)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time in microseconds for the PMD to change from
channel 2 to channel 80."
::= { dot11PhyFHSSEntry 1 }
dot11CurrentChannelNumber OBJECT-TYPE
SYNTAX INTEGER (0..200)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The current channel number of the frequency output by the RF
synthesizer."
::= { dot11PhyFHSSEntry 2 }
dot11MaxDwellTime OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum time in TU that the transmitter
is permitted to operate on a single channel."
::= { dot11PhyFHSSEntry 3 }
dot11CurrentDwellTime OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The current time in TU that the transmitter shall operate
on a single channel, as set by the MAC. Default is 19 TU."
::= { dot11PhyFHSSEntry 4 }
dot11CurrentSet OBJECT-TYPE
SYNTAX INTEGER (1..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The current set of patterns the PLME
is using to determine the hopping sequence. "
::= { dot11PhyFHSSEntry 5 }
dot11CurrentPattern OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The current pattern the PLME is
using to determine the hop sequence."
::= { dot11PhyFHSSEntry 6 }
dot11CurrentIndex OBJECT-TYPE
SYNTAX INTEGER (1..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The current index value the PLME is using to determine
the CurrentChannelNumber."
::= { dot11PhyFHSSEntry 7 }
dot11EHCCPrimeRadix OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute indicates the value to be
used as the prime radix (N) in the HCC and
EHCC algorithms."
::= { dot11PhyFHSSEntry 8 }
dot11EHCCNumberofChannelsFamilyIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute indicates the value to be
used as the maximum for the family index (a)
in the HCC and EHCC algorithms. The value of
this field shall not be less than the prime
radix minus 3 (N - 3). The valid range of
allowed values is (N - 1), (N - 2), and (N - 3)."
::= { dot11PhyFHSSEntry 9 }
dot11EHCCCapabilityImplemented OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute, when TRUE, indicates that the
station implementation is capable of generating
the HCC or EHCC algorithms for determining Hopping
patterns. The capability is disabled, otherwise.
The default value of this attribute is FALSE."
::= { dot11PhyFHSSEntry 10 }
dot11EHCCCapabilityEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute, when TRUE, indicates that the
capability of the station to operate using the HCC
or EHCC algorithms for determining Hopping Patterns
is enabled. The capability is disabled, otherwise.
The default value of this attribute is FALSE."
::= { dot11PhyFHSSEntry 11 }
dot11HopAlgorithmAdopted OBJECT-TYPE
SYNTAX INTEGER { crnt(1), hopindex(2), hcc(3) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute, indicates which of the algorithms
will be used to generate the Hopping Patterns.
Valid values are:
1 - hopping patterns as defined in clause 14
2 - hop index method (with or without table)
3 - HCC/EHCC method"
::= { dot11PhyFHSSEntry 12 }
dot11RandomTableFlag OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute, indicates that a Random Table is
present when the value is True. When the value is
False it indicates that a Random Table is not
present and that the hop index method is to be
used to determine the hopping sequence. The default
value of this attribute is True."
::= { dot11PhyFHSSEntry 13 }
dot11NumberofHoppingSets OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Number of Sets field indicates the total
number of sets within the hopping patterns."
::= { dot11PhyFHSSEntry 14 }
dot11HopModulus OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of allowed channels for the hopping
set. This is defined by the governing regulatory
agency for the country code of the country
in which this device is operating."
::= { dot11PhyFHSSEntry 15 }
dot11HopOffset OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The next position in the hopping set."
::= { dot11PhyFHSSEntry 16 }
-- **********************************************************************
-- * End of dot11PhyFHSS TABLE
-- **********************************************************************
-- **********************************************************************
-- * dot11PhyDSSSEntry TABLE
-- **********************************************************************
dot11PhyDSSSTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11PhyDSSSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry of attributes for dot11PhyDSSSEntry. Implemented as a
table indexed on ifIndex allow for multiple instances on
an Agent."
::= { dot11phy 5 }
dot11PhyDSSSEntry OBJECT-TYPE
SYNTAX Dot11PhyDSSSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dot11PhyDSSSEntry Table.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
INDEX { ifIndex }
::= { dot11PhyDSSSTable 1 }
Dot11PhyDSSSEntry ::=
SEQUENCE { dot11CurrentChannel INTEGER,
dot11CCAModeSupported INTEGER,
dot11CurrentCCAMode INTEGER,
dot11EDThreshold Integer32 }
dot11CurrentChannel OBJECT-TYPE
SYNTAX INTEGER (1..14)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The current operating frequency channel of the DSSS
PHY. Valid channel numbers are as defined in 15.4.6.2"
::= { dot11PhyDSSSEntry 1 }
dot11CCAModeSupported OBJECT-TYPE
SYNTAX INTEGER (1..7)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"dot11CCAModeSupported is a bit-significant value,
representing all of the CCA modes supported by the PHY.
Valid values are:
energy detect only (ED_ONLY) = 01,
carrier sense only (CS_ONLY) = 02,
carrier sense and energy detect (ED_and_CS)= 04
or the logical sum of any of these values. This
attribute shall not be used to indicate the CCA modes
supported by a higher rate extension PHY. Rather, the
dot11HRCCAModeSupported attribute shall be used to
indicate the CCA modes of the higher rate extension PHY."
::= { dot11PhyDSSSEntry 2 }
dot11CurrentCCAMode OBJECT-TYPE
SYNTAX INTEGER { edonly(1), csonly(2), edandcs(4), cswithtimer(8),
hrcsanded(16) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The current CCA method in operation. Valid values are:
energy detect only (edonly) = 01,
carrier sense only (csonly) = 02,
carrier sense and energy detect (edandcs)= 04
carrier sense with timer (cswithtimer)= 08
high rate carrier sense and energy detect (hrcsanded)=16."
::= { dot11PhyDSSSEntry 3 }
dot11EDThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The current Energy Detect Threshold being used by the DSSS PHY."
::= { dot11PhyDSSSEntry 4 }
-- **********************************************************************
-- * End of dot11PhyDSSSEntry TABLE
-- **********************************************************************
-- **********************************************************************
-- * dot11PhyIR TABLE
-- **********************************************************************
dot11PhyIRTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11PhyIREntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Group of attributes for dot11PhyIRTable. Implemented as a
table indexed on ifIndex to allow for multiple instances on
an Agent."
::= { dot11phy 6 }
dot11PhyIREntry OBJECT-TYPE
SYNTAX Dot11PhyIREntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dot11PhyIR Table.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
INDEX { ifIndex }
::= { dot11PhyIRTable 1 }
Dot11PhyIREntry ::=
SEQUENCE { dot11CCAWatchdogTimerMax Integer32,
dot11CCAWatchdogCountMax Integer32,
dot11CCAWatchdogTimerMin Integer32,
dot11CCAWatchdogCountMin Integer32 }
dot11CCAWatchdogTimerMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This parameter, together with CCAWatchdogCountMax,
determines when energy detected in the channel can be
ignored."
::= { dot11PhyIREntry 1 }
dot11CCAWatchdogCountMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This parameter, together with CCAWatchdogTimerMax,
determines when energy detected in the channel can be
ignored."
::= { dot11PhyIREntry 2 }
dot11CCAWatchdogTimerMin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The minimum value to which CCAWatchdogTimerMax can be
set."
::= { dot11PhyIREntry 3 }
dot11CCAWatchdogCountMin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The minimum value to which CCAWatchdogCount can be set."
::= { dot11PhyIREntry 4 }
-- **********************************************************************
-- * End of dot11PhyIR TABLE
-- **********************************************************************
-- **********************************************************************
-- * dot11RegDomainsSupported TABLE
-- **********************************************************************
dot11RegDomainsSupportedTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11RegDomainsSupportedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"There are different operational requirements dependent on
the regulatory domain. This attribute list describes the
regulatory domains the PLCP and PMD support in this
implementation. Currently defined values and their
corresponding Regulatory Domains are:
FCC (USA) = X'10', DOC (Canada) = X'20', ETSI (most of
Europe) = X'30', Spain = X'31', France = X'32', MKK
(Japan) = X'40', Others = X'00' "
::= { dot11phy 7}
dot11RegDomainsSupportedEntry OBJECT-TYPE
SYNTAX Dot11RegDomainsSupportedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dot11RegDomainsSupportedTable.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
INDEX { ifIndex,
dot11RegDomainsSupportedIndex }
::= { dot11RegDomainsSupportedTable 1 }
Dot11RegDomainsSupportedEntry ::=
SEQUENCE { dot11RegDomainsSupportedIndex Integer32,
dot11RegDomainsSupportedValue INTEGER }
dot11RegDomainsSupportedIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The auxiliary variable used to identify instances
of the columnar objects in the RegDomainsSupport Table."
::= { dot11RegDomainsSupportedEntry 1 }
dot11RegDomainsSupportedValue OBJECT-TYPE
SYNTAX INTEGER { fcc(16), doc(32), etsi(48), spain (49), france(50),
mkk (64) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"There are different operational requirements dependent on
the regulatory domain. This attribute list describes the
regulatory domains the PLCP and PMD support in this
implementation. Currently defined values and their
corresponding Regulatory Domains are:
FCC (USA) = X'10', DOC (Canada) = X'20', ETSI (most of
Europe) = X'30', Spain = X'31', France = X'32', MKK
(Japan) = X'40' "
::= { dot11RegDomainsSupportedEntry 2 }
-- **********************************************************************
-- * End of dot11RegDomainsSupported TABLE
-- **********************************************************************
-- **********************************************************************
-- * dot11AntennasList TABLE
-- **********************************************************************
dot11AntennasListTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11AntennasListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table represents the list of antennae. An antenna can be
marked to be capable of transmitting, receiving, and/or for
participation in receive diversity. Each entry in this table
represents a single antenna with its properties. The maximum
number of antennae that can be contained in this table is 255."
::= { dot11phy 8 }
dot11AntennasListEntry OBJECT-TYPE
SYNTAX Dot11AntennasListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dot11AntennasListTable, representing the properties
of a single antenna.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
INDEX { ifIndex,
dot11AntennaListIndex }
::= { dot11AntennasListTable 1 }
Dot11AntennasListEntry ::=
SEQUENCE { dot11AntennaListIndex Integer32,
dot11SupportedTxAntenna TruthValue,
dot11SupportedRxAntenna TruthValue,
dot11DiversitySelectionRx TruthValue }
dot11AntennaListIndex OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique index of an antenna which is used to identify the columnar
objects in the dot11AntennasList Table."
::= { dot11AntennasListEntry 1 }
dot11SupportedTxAntenna OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When true, this object indicates that the antenna represented by
dot11AntennaIndex can be used as a transmit antenna."
::= { dot11AntennasListEntry 2 }
dot11SupportedRxAntenna OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When true, this object indicates that the antenna represented by the
dot11AntennaIndex xan be used as a receive antenna."
::= { dot11AntennasListEntry 3 }
dot11DiversitySelectionRx OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When true, this object indicates that the antenna represented by
dot11AntennaIndex can be used for receive diversity. This object
may only be true if the antenna can be used as a receive antenna,
as indicated by dot11SupportedRxAntenna."
::= { dot11AntennasListEntry 4 }
-- **********************************************************************
-- * End of dot11AntennasList TABLE
-- **********************************************************************
-- **********************************************************************
-- * SupportedDataRatesTx TABLE
-- **********************************************************************
dot11SupportedDataRatesTxTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11SupportedDataRatesTxEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Transmit bit rates supported by the PLCP and PMD,
represented by a count from X'02-X'7f, corresponding to data
rates in increments of 500kbit/s from 1 Mbit/s to 63.5 Mbit/s subject
to limitations of each individual PHY."
::= { dot11phy 9 }
dot11SupportedDataRatesTxEntry OBJECT-TYPE
SYNTAX Dot11SupportedDataRatesTxEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An Entry (conceptual row) in the dot11SupportedDataRatesTx
Table.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
INDEX { ifIndex,
dot11SupportedDataRatesTxIndex }
::= { dot11SupportedDataRatesTxTable 1 }
Dot11SupportedDataRatesTxEntry ::=
SEQUENCE { dot11SupportedDataRatesTxIndex Integer32,
dot11SupportedDataRatesTxValue Integer32 }
dot11SupportedDataRatesTxIndex OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index object which identifies which data rate to access.
Range is 1..8."
::= { dot11SupportedDataRatesTxEntry 1 }
dot11SupportedDataRatesTxValue OBJECT-TYPE
SYNTAX Integer32 (2..127)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Transmit bit rates supported by the PLCP and PMD,
represented by a count from X'02-X'7f, corresponding to data
rates in increments of 500kbit/s from 1 Mbit/s to 63.5 Mbit/s subject
to limitations of each individual PHY."
::= { dot11SupportedDataRatesTxEntry 2 }
-- **********************************************************************
-- * End of dot11SupportedDataRatesTx TABLE
-- **********************************************************************
-- **********************************************************************
-- * SupportedDataRatesRx TABLE
-- **********************************************************************
dot11SupportedDataRatesRxTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11SupportedDataRatesRxEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The receive bit rates supported by the PLCP and PMD,
represented by a count from X'002-X'7f, corresponding to data
rates in increments of 500kbit/s from 1 Mbit/s to 63.5 Mbit/s."
::= { dot11phy 10 }
dot11SupportedDataRatesRxEntry OBJECT-TYPE
SYNTAX Dot11SupportedDataRatesRxEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An Entry (conceptual row) in the dot11SupportedDataRatesRx Table.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
INDEX { ifIndex,
dot11SupportedDataRatesRxIndex }
::= { dot11SupportedDataRatesRxTable 1 }
Dot11SupportedDataRatesRxEntry ::=
SEQUENCE { dot11SupportedDataRatesRxIndex Integer32,
dot11SupportedDataRatesRxValue Integer32 }
dot11SupportedDataRatesRxIndex OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index object which identifies which data rate to access.
Range is 1..8."
::= { dot11SupportedDataRatesRxEntry 1 }
dot11SupportedDataRatesRxValue OBJECT-TYPE
SYNTAX Integer32 (2..127)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The receive bit rates supported by the PLCP and PMD,
represented by a count from X'02-X'7f, corresponding to data
rates in increments of 500kbit/s from 1 Mbit/s to 63.5 Mbit/s."
::= { dot11SupportedDataRatesRxEntry 2 }
-- **********************************************************************
-- * End of dot11SupportedDataRatesRx TABLE
-- **********************************************************************
--**********************************************************************
-- * dot11PhyOFDM TABLE
--**********************************************************************
dot11PhyOFDMTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11PhyOFDMEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Group of attributes for dot11PhyOFDMTable. Implemented as a
table indexed on ifindex to allow for multiple instances on
an Agent."
::= { dot11phy 11 }
dot11PhyOFDMEntry OBJECT-TYPE
SYNTAX Dot11PhyOFDMEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dot11PhyOFDM Table.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
INDEX { ifIndex }
::= { dot11PhyOFDMTable 1 }
Dot11PhyOFDMEntry ::=
SEQUENCE { dot11CurrentFrequency INTEGER,
dot11TIThreshold Integer32,
dot11FrequencyBandsSupported INTEGER }
dot11CurrentFrequency OBJECT-TYPE
SYNTAX INTEGER (0..99)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of the current operating frequency channel of the OFDM PHY."
::= { dot11PhyOFDMEntry 1 }
dot11TIThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Threshold being used to detect a busy medium (frequency).
CCA shall report a busy medium upon detecting the RSSI above
this threshold."
::= { dot11PhyOFDMEntry 2 }
dot11FrequencyBandsSupported OBJECT-TYPE
SYNTAX INTEGER (1..7)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The capability of the OFDM PHY implementation to operate in
the three U-NII bands. Coded as an integer value of a three
bit field as follows:
bit 0 .. capable of operating in the lower (5.15-5.25 GHz)
U-NII band
bit 1 .. capable of operating in the middle (5.25-5.35 GHz)
U-NII band
bit 2 .. capable of operating in the upper (5.725-5.825 GHz)
U-NII band
For example, for an implementation capable of operating in the
lower and mid bands this attribute would take the value 3."
::= { dot11PhyOFDMEntry 3 }
-- **********************************************************************
-- * End of dot11PhyOFDM TABLE
-- **********************************************************************
-- **********************************************************************
-- * dot11PhyHRDSSSEntry TABLE
-- **********************************************************************
dot11PhyHRDSSSTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11PhyHRDSSSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry of attributes for dot11PhyHRDSSSEntry.
Implemented as a table indexed on ifIndex to allow for
multiple instances on an Agent."
::= { dot11phy 12 }
dot11PhyHRDSSSEntry OBJECT-TYPE
SYNTAX Dot11PhyHRDSSSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dot11PhyHRDSSSEntry Table.
ifIndex - Each IEEE 802.11 interface is represented by an
ifEntry. Interface tables in this MIB module are indexed
by ifIndex."
INDEX { ifIndex }
::= { dot11PhyHRDSSSTable 1 }
Dot11PhyHRDSSSEntry ::=
SEQUENCE { dot11ShortPreambleOptionImplemented TruthValue,
dot11PBCCOptionImplemented TruthValue,
dot11ChannelAgilityPresent TruthValue,
dot11ChannelAgilityEnabled TruthValue,
dot11HRCCAModeSupported INTEGER }
dot11ShortPreambleOptionImplemented OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute, when true, shall indicate that the
short preamble option as defined in subclause 18.2.2.2
is implemented. The default value of this attribute
shall be false."
::= {dot11PhyHRDSSSEntry 1 }
dot11PBCCOptionImplemented OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute, when true, shall indicate that the PBCC
modulation option as defined in subclause 18.4.6.6 is
implemented. The default value of this attribute shall
be false."
::= {dot11PhyHRDSSSEntry 2 }
dot11ChannelAgilityPresent OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute indicates that the PHY is capable of
channel agility."
::= { dot11PhyHRDSSSEntry 3 }
dot11ChannelAgilityEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute indicates that the PHY channel agility
functionality is enabled."
::= { dot11PhyHRDSSSEntry 4 }
dot11HRCCAModeSupported OBJECT-TYPE
SYNTAX INTEGER (1..31)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"dot11HRCCAModeSupported is a bit-significant value,
representing all of the CCA modes supported by the PHY.
Valid values are:
energy detect only (ED_ONLY) = 01,
carrier sense only (CS_ONLY) = 02,
carrier sense and energy detect (ED_and_CS)= 04,
carrier sense with timer (CS_and_Timer)= 08,
high rate carrier sense and energy detect
(HRCS_and_ED)= 16
or the logical sum of any of these values. In
the high rate extension PHY, this attribute shall
be used in preference to the dot11CCAModeSupported
attribute."
::= { dot11PhyHRDSSSEntry 5 }
-- **********************************************************************
-- * End of dot11PhyHRDSSSEntry TABLE
-- **********************************************************************
-- ********************************************************************
-- * dot11 Hopping Pattern TABLE
-- ********************************************************************
dot11HoppingPatternTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11HoppingPatternEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table of attributes necessary for
a frequency hopping implementation to be able to
create the hopping sequences necessary to operate
in the subband for the associated domain country string."
::= { dot11phy 13 }
dot11HoppingPatternEntry OBJECT-TYPE
SYNTAX Dot11HoppingPatternEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the Hopping Pattern Table
that indicates the random hopping sequence to be followed.
IfIndex - Each IEEE 802.11 interface is represented
by an ifEntry. Interface tables in this MIB are indexed
by ifIndex."
INDEX { ifIndex,
dot11HoppingPatternIndex }
::= { dot11HoppingPatternTable 1 }
Dot11HoppingPatternEntry ::=
SEQUENCE {
dot11HoppingPatternIndex Integer32,
dot11RandomTableFieldNumber Integer32 }
dot11HoppingPatternIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The auxiliary variable used to identify instances of
the columnar objects in the Hopping Pattern Table."
::= { dot11HoppingPatternEntry 1}
dot11RandomTableFieldNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute shall indicate the value of the
starting channel number in the hopping sequence of
the subband for the associated domain country string.
The default value of this attribute shall be zero."
::= { dot11HoppingPatternEntry 2}
-- **********************************************************************
-- * End of dot11 Hopping Pattern TABLE
--**********************************************************************
-- **********************************************************************
-- * Conformance Information
-- **********************************************************************
dot11Conformance OBJECT IDENTIFIER ::= { ieee802dot11 5 }
dot11Groups OBJECT IDENTIFIER ::= { dot11Conformance 1 }
dot11Compliances OBJECT IDENTIFIER ::= { dot11Conformance 2 }
-- **********************************************************************
-- * Compliance Statements
-- **********************************************************************
dot11Compliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for SNMPv2 entities
that implement the IEEE 802.11 MIB."
MODULE -- this module
MANDATORY-GROUPS {
dot11SMTbase2,
dot11MACbase, dot11CountersGroup,
dot11SmtAuthenticationAlgorithms,
dot11ResourceTypeID, dot11PhyOperationComplianceGroup }
GROUP dot11PhyDSSSComplianceGroup
DESCRIPTION
"Implementation of this group is required when object
dot11PHYType has the value of dsss. This group is
mutually exclusive with the groups dot11PhyIRComplianceGroup,
dot11PhyFHSSComplianceGroup, dot11PhyOFDMComplianceGroup
and dot11PhyHRDSSSComplianceGroup."
GROUP dot11PhyIRComplianceGroup
DESCRIPTION
"Implementation of this group is required when object
dot11PHYType has the value of irbaseband. This group is
mutually exclusive with the groups dot11PhyDSSSComplianceGroup,
dot11PhyFHSSComplianceGroup, dot11PhyOFDMComplianceGroup
and dot11PhyHRDSSSComplianceGroup."
GROUP dot11PhyFHSSComplianceGroup
DESCRIPTION
"Implementation of this group is required when object
dot11PHYType has the value of fhss. This group is
mutually exclusive with the groups dot11PhyDSSSComplianceGroup,
dot11PhyIRComplianceGroup, dot11PhyOFDMComplianceGroup
and dot11PhyHRDSSSComplianceGroup."
GROUP dot11PhyOFDMComplianceGroup
DESCRIPTION
"Implementation of this group is required when object
dot11PHYType has the value of ofdm. This group is
mutually exclusive with the groups dot11PhyDSSSComplianceGroup,
dot11PhyIRComplianceGroup, dot11PhyFHSSComplianceGroup
and dot11PhyHRDSSSComplianceGroup."
GROUP dot11PhyHRDSSSComplianceGroup
DESCRIPTION
"Implementation of this group is required when object
dot11PHYType has the value of hrdsss. This group is
mutually exclusive with the groups
dot11PhyDSSSComplianceGroup, dot11PhyIRComplianceGroup,
dot11PhyFHSSComplianceGroup and dot11PhyOFDMComplianceGroup."
-- OPTIONAL-GROUPS { dot11SMTprivacy, dot11MACStatistics,
-- dot11PhyAntennaComplianceGroup, dot11PhyTxPowerComplianceGroup,
-- dot11PhyRegDomainsSupportGroup,
-- dot11PhyAntennasListGroup, dot11PhyRateGroup }
::= { dot11Compliances 1 }
-- **********************************************************************
-- * Groups - units of conformance
-- **********************************************************************
dot11SMTbase OBJECT-GROUP
OBJECTS { dot11StationID, dot11MediumOccupancyLimit,
dot11CFPollable,
dot11CFPPeriod,
dot11CFPMaxDuration,
dot11AuthenticationResponseTimeOut,
dot11PrivacyOptionImplemented,
dot11PowerManagementMode,
dot11DesiredSSID, dot11DesiredBSSType,
dot11OperationalRateSet,
dot11BeaconPeriod, dot11DTIMPeriod,
dot11AssociationResponseTimeOut }
STATUS deprecated
DESCRIPTION
"The SMT object class provides the necessary support at the
STA to manage the processes in the STA such that the STA may
work cooperatively as a part of an IEEE 802.11 network."
::= { dot11Groups 1 }
dot11SMTprivacy OBJECT-GROUP
OBJECTS { dot11PrivacyInvoked,
dot11WEPKeyMappingLength, dot11ExcludeUnencrypted,
dot11WEPICVErrorCount , dot11WEPExcludedCount ,
dot11WEPDefaultKeyID,
dot11WEPDefaultKeyValue,
dot11WEPKeyMappingWEPOn,
dot11WEPKeyMappingValue , dot11WEPKeyMappingAddress,
dot11WEPKeyMappingStatus }
STATUS current
DESCRIPTION
"The SMTPrivacy package is a set of attributes that shall be
present if WEP is implemented in the STA."
::= { dot11Groups 2 }
dot11MACbase OBJECT-GROUP
OBJECTS { dot11MACAddress, dot11Address,
dot11GroupAddressesStatus,
dot11RTSThreshold, dot11ShortRetryLimit,
dot11LongRetryLimit, dot11FragmentationThreshold,
dot11MaxTransmitMSDULifetime,
dot11MaxReceiveLifetime, dot11ManufacturerID,
dot11ProductID }
STATUS current
DESCRIPTION
"The MAC object class provides the necessary support for the
access control, generation, and verification of frame check
sequences (FCSs), and proper delivery of valid data to upper
layers."
::= { dot11Groups 3 }
dot11MACStatistics OBJECT-GROUP
OBJECTS { dot11RetryCount, dot11MultipleRetryCount,
dot11RTSSuccessCount, dot11RTSFailureCount,
dot11ACKFailureCount, dot11FrameDuplicateCount }
STATUS current
DESCRIPTION
"The MACStatistics package provides extended statistical
information on the operation of the MAC. This
package is completely optional."
::= { dot11Groups 4 }
dot11ResourceTypeID OBJECT-GROUP
OBJECTS { dot11ResourceTypeIDName, dot11manufacturerOUI,
dot11manufacturerName, dot11manufacturerProductName,
dot11manufacturerProductVersion }
STATUS current
DESCRIPTION
"Attributes used to identify a STA, its manufacturer,
and various product names and versions."
::= { dot11Groups 5 }
dot11SmtAuthenticationAlgorithms OBJECT-GROUP
OBJECTS { dot11AuthenticationAlgorithm,
dot11AuthenticationAlgorithmsEnable }
STATUS current
DESCRIPTION
"Authentication Algorithm Table."
::= { dot11Groups 6 }
dot11PhyOperationComplianceGroup OBJECT-GROUP
OBJECTS { dot11PHYType, dot11CurrentRegDomain, dot11TempType }
STATUS current
DESCRIPTION
"PHY layer operations attributes."
::= { dot11Groups 7 }
dot11PhyAntennaComplianceGroup OBJECT-GROUP
OBJECTS { dot11CurrentTxAntenna, dot11DiversitySupport,
dot11CurrentRxAntenna }
STATUS current
DESCRIPTION
"Attributes for Data Rates for IEEE 802.11."
::= { dot11Groups 8 }
dot11PhyTxPowerComplianceGroup OBJECT-GROUP
OBJECTS { dot11NumberSupportedPowerLevels, dot11TxPowerLevel1,
dot11TxPowerLevel2, dot11TxPowerLevel3, dot11TxPowerLevel4,
dot11TxPowerLevel5, dot11TxPowerLevel6, dot11TxPowerLevel7,
dot11TxPowerLevel8, dot11CurrentTxPowerLevel }
STATUS current
DESCRIPTION
"Attributes for Control and Management of transmit power."
::= { dot11Groups 9 }
dot11PhyFHSSComplianceGroup OBJECT-GROUP
OBJECTS { dot11HopTime, dot11CurrentChannelNumber, dot11MaxDwellTime,
dot11CurrentDwellTime, dot11CurrentSet, dot11CurrentPattern,
dot11CurrentIndex}
STATUS current
DESCRIPTION
"Attributes that configure the Frequency Hopping for IEEE
802.11."
::= { dot11Groups 10 }
dot11PhyDSSSComplianceGroup OBJECT-GROUP
OBJECTS { dot11CurrentChannel, dot11CCAModeSupported,
dot11CurrentCCAMode, dot11EDThreshold}
STATUS current
DESCRIPTION
"Attributes that configure the DSSS for IEEE 802.11."
::= { dot11Groups 11 }
dot11PhyIRComplianceGroup OBJECT-GROUP
OBJECTS { dot11CCAWatchdogTimerMax, dot11CCAWatchdogCountMax,
dot11CCAWatchdogTimerMin, dot11CCAWatchdogCountMin}
STATUS current
DESCRIPTION
"Attributes that configure the baseband IR for IEEE 802.11."
::= { dot11Groups 12 }
dot11PhyRegDomainsSupportGroup OBJECT-GROUP
OBJECTS { dot11RegDomainsSupportedValue}
STATUS current
DESCRIPTION
"Attributes that specify the supported Regulation Domains."
::= { dot11Groups 13}
dot11PhyAntennasListGroup OBJECT-GROUP
OBJECTS { dot11SupportedTxAntenna,
dot11SupportedRxAntenna, dot11DiversitySelectionRx }
STATUS current
DESCRIPTION
"Attributes that specify the supported Regulation Domains."
::= { dot11Groups 14 }
dot11PhyRateGroup OBJECT-GROUP
OBJECTS { dot11SupportedDataRatesTxValue,
dot11SupportedDataRatesRxValue }
STATUS current
DESCRIPTION
"Attributes for Data Rates for IEEE 802.11."
::= { dot11Groups 15 }
dot11CountersGroup OBJECT-GROUP
OBJECTS { dot11TransmittedFragmentCount,
dot11MulticastTransmittedFrameCount,
dot11FailedCount, dot11ReceivedFragmentCount,
dot11MulticastReceivedFrameCount,
dot11FCSErrorCount,
dot11WEPUndecryptableCount,
dot11TransmittedFrameCount }
STATUS current
DESCRIPTION
"Attributes from the dot11CountersGroup that are not described
in the dot11MACStatistics group. These objects are
mandatory."
::= { dot11Groups 16 }
dot11NotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS { dot11Disassociate,
dot11Deauthenticate,
dot11AuthenticateFail }
STATUS current
DESCRIPTION
"IEEE 802.11 notifications"
::= { dot11Groups 17 }
dot11SMTbase2 OBJECT-GROUP
OBJECTS { dot11MediumOccupancyLimit,
dot11CFPollable,
dot11CFPPeriod,
dot11CFPMaxDuration,
dot11AuthenticationResponseTimeOut,
dot11PrivacyOptionImplemented,
dot11PowerManagementMode,
dot11DesiredSSID, dot11DesiredBSSType,
dot11OperationalRateSet,
dot11BeaconPeriod, dot11DTIMPeriod,
dot11AssociationResponseTimeOut,
dot11DisassociateReason,
dot11DisassociateStation,
dot11DeauthenticateReason,
dot11DeauthenticateStation,
dot11AuthenticateFailStatus,
dot11AuthenticateFailStation }
STATUS current
DESCRIPTION
"The SMTbase2 object class provides the necessary support at the
STA to manage the processes in the STA such that the STA may
work cooperatively as a part of an IEEE 802.11 network."
::= { dot11Groups 18 }
dot11PhyOFDMComplianceGroup OBJECT-GROUP
OBJECTS { dot11CurrentFrequency,
dot11TIThreshold,
dot11FrequencyBandsSupported }
STATUS current
DESCRIPTION
"Attributes that configure the OFDM for IEEE 802.11."
::= { dot11Groups 19 }
dot11SMTbase3 OBJECT-GROUP
OBJECTS { dot11MediumOccupancyLimit,
dot11CFPollable,
dot11CFPPeriod,
dot11CFPMaxDuration,
dot11AuthenticationResponseTimeOut,
dot11PrivacyOptionImplemented,
dot11PowerManagementMode,
dot11DesiredSSID, dot11DesiredBSSType,
dot11OperationalRateSet,
dot11BeaconPeriod, dot11DTIMPeriod,
dot11AssociationResponseTimeOut,
dot11DisassociateReason,
dot11DisassociateStation,
dot11DeauthenticateReason,
dot11DeauthenticateStation,
dot11AuthenticateFailStatus,
dot11AuthenticateFailStation,
dot11MultiDomainCapabilityImplemented,
dot11MultiDomainCapabilityEnabled,
dot11CountryString }
STATUS current
DESCRIPTION
"The SMTbase3 object class provides the necessary support at the
STA to manage the processes in the STA such that the STA may
work cooperatively as a part of an IEEE 802.11 network, when the STA
is capable of multi-domain operation. This object group should be
implemented when the multi-domain capability option is implemented."
::= { dot11Groups 20 }
dot11MultiDomainCapabilityGroup OBJECT-GROUP
OBJECTS { dot11FirstChannelNumber,
dot11NumberofChannels,
dot11MaximumTransmitPowerLevel }
STATUS current
DESCRIPTION
"The dot11MultiDomainCapabilityGroup object class provides
the objects necessary to manage the channels usable by a STA,
when the multi-domain capability option is implemented."
::= { dot11Groups 21 }
dot11PhyFHSSComplianceGroup2 OBJECT-GROUP
OBJECTS { dot11HopTime, dot11CurrentChannelNumber, dot11MaxDwellTime,
dot11CurrentDwellTime, dot11CurrentSet, dot11CurrentPattern,
dot11CurrentIndex, dot11EHCCPrimeRadix,
dot11EHCCNumberofChannelsFamilyIndex,
dot11EHCCCapabilityImplemented, dot11EHCCCapabilityEnabled,
dot11HopAlgorithmAdopted, dot11RandomTableFlag,
dot11NumberofHoppingSets, dot11HopModulus,
dot11HopOffset, dot11RandomTableFieldNumber }
STATUS current
DESCRIPTION
"Attributes that configure the Frequency Hopping for IEEE
802.11 when multi-domain capability option is implemented."
::= { dot11Groups 22 }
dot11PhyHRDSSSComplianceGroup OBJECT-GROUP
OBJECTS { dot11CurrentChannel, dot11CCAModeSupported,
dot11CurrentCCAMode, dot11EDThreshold,
dot11ShortPreambleOptionImplemented,
dot11PBCCOptionImplemented, dot11ChannelAgilityPresent,
dot11ChannelAgilityEnabled, dot11HRCCAModeSupported }
STATUS current
DESCRIPTION
"Attributes that configure the HRDSSS for IEEE 802.11."
::= { dot11Groups 23 }
-- **********************************************************************
-- * End of 802.11 MIB
-- **********************************************************************
END
|