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
|
HIPATH-WIRELESS-DOT11-EXTNS-MIB DEFINITIONS ::= BEGIN
IMPORTS
hiPathWirelessMgmt, hiPathWirelessModules
FROM HIPATH-WIRELESS-SMI
dot11WEPDefaultKeyIndex
FROM IEEE802dot11-MIB
ifIndex
FROM IF-MIB
OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
Integer32, Unsigned32, Counter64, OBJECT-TYPE, MODULE-IDENTITY
FROM SNMPv2-SMI
MacAddress, TruthValue, RowStatus, DisplayString
FROM SNMPv2-TC;
-- 1.3.6.1.4.1.4329.15.5.3
hiPathWirelessDot11ExtnsMIB MODULE-IDENTITY
LAST-UPDATED "201602231446Z" -- Tuesday Feb 23 14:46 UTC 2016
ORGANIZATION
"Chantry Networks, Inc"
CONTACT-INFO
"Chantry Networks, Inc.
55 Commerce Valley Drive (W), Suite 400
Thornhill, Ontario L3T 7V9, Canada
Phone: 1-289-695-3182
Fax: 1 289-695-3299"
DESCRIPTION
"This module provides extension objects to the ieee80211 MIB."
REVISION "201602231446Z" -- Tuesday Feb 23 14:46 UTC 2016
DESCRIPTION
"
- deprecated dot11ExtSmtMaxBasicRate, dot11ExtSmtMaxOperationalRate, dot11ExtSmtBGretries, dot11ExtSmtBEretries,
dot11ExtSmtVIretries, dot11ExtSmtVOretries and dot11ExtSmtTVOretries from dot11ExtSmtTable.
- deprecated dot11ExtWEPKeyMappingsTable.
"
REVISION "201503121515Z" -- Mar 12, 2015 at 15:15 GMT
DESCRIPTION
"- Added dot11ExtSmtProbeSuppression, dot11ExtSmtForceDisassociate, and
dot11ExtSmtRssThreshold to dot11ExtSmtTable.
"
REVISION "201310161515Z" -- Oct 16, 2013 at 15:15 GMT
DESCRIPTION
"- Added dot11ExtSmtRadioAttenuation to dot11ExtSmtTable.
- Added width80Mhz(4) to dot11nChlWidth.
- Added dot11c(5) to dot11Capabilities.
- Added dot11ac(11) and dot11cStrict(12) to dot11ExtRadioType.
- Added notSupport(0) to dot11DiversityRxDiversity and dot11DiversityTxDiversity.
- Added mode11AC(6) to assocIfIndex.
"
REVISION "201304301515Z" -- April 30, 2013 at 15:15 GMT
DESCRIPTION
"- Added assocDLLostRetriesPackets and assocDLLostRetriesBytes to assocGroupTable.
"
REVISION "201108171815Z" -- August 17, 2011 at 18:15 GMT
DESCRIPTION
"dot11ExtRadioStatsTable was modified:
- Added new elements to enhanace radio stats -- dot11ExtRadioAvgBusyChPercentage, dot11ExtRadioMaxBusyChPercentage,
dot11ExtRadioAvgRxChOccPercentage, dot11ExtRadioMaxRxChOccPercentage
- Description of some the elements in that table are enhanced.
- Defined range for some the elements in that table.
New object group, dot11ExtRadioStatsGroup, was created."
REVISION "201107201145Z" -- July 20, 2011 at 11:45 GMT
DESCRIPTION
"assocIfIndex definition was enhanced to include 11n operational mode."
REVISION "201105050958Z" -- May 05, 2011 at 09:58 GMT
DESCRIPTION
"- Table dot11nConfigTable was modified. More radio attributes were added to that table.
- assocGroupRSS was added to assocGroupTable.
- New object groups were created for modified tables: dot11nConfigGroup, assocGroupGroup, assocCountersGroup.
- Corrected description for assocReceivedRSSI."
REVISION "201101131125Z" -- January 13, 2011 at 11:25 GMT
DESCRIPTION
"- dot11ExtRadioType: Radio attribute was modified with more granularity.
- Contact information was modified.
- Corrected error in revision history descriptions."
REVISION "201004081716Z" -- April 08, 2010 at 17:16 GMT
DESCRIPTION
"Obsoleted:
- dot11ExtVlanSmtTable elements: vlanBridgeMode and vlanTag"
REVISION "200901191415Z" -- January 19, 2009 at 14:15 GMT
DESCRIPTION
"Updated contact information.
Corrected syntax error in dot11ExtSmtDcsMode."
REVISION "200805091651Z" -- May 09, 2008 at 16:51 GMT
DESCRIPTION
"Added antenna selection.
Added more radio attributes to dot11ExtSmtTable.
Added radio stats (dot11ExtRadioStatsTable).
"
REVISION "200709281430Z" -- September 28, 2007 at 14:30 GMT
DESCRIPTION
"- Additional radio attributes were added to dot11ExtSmtTable.
- dot11gBasicG was obsoleted.
- dot11bBasicB was obsoleted."
REVISION "200610241305Z" -- October 24, 2006 at 13:05 GMT
DESCRIPTION
"Added antenna diversity for radios.
accocIfIndex syntax and description were modified."
REVISION "200510280114Z" -- October 28, 2005 at 01:14 GMT
DESCRIPTION
"Initial revision."
::= { hiPathWirelessModules 3 }
--
-- Type definitions
--
WEPKeytype ::= OCTET STRING (SIZE (0 | 14 | 38))
--
-- Node definitions
--
-- 1.3.6.1.4.1.4329.15.3.1
dot11ExtnsMib OBJECT IDENTIFIER ::= { hiPathWirelessMgmt 1 }
-- 1.3.6.1.4.1.4329.15.3.1.1
dot11Extsmt OBJECT IDENTIFIER ::= { dot11ExtnsMib 1 }
-- 1.3.6.1.4.1.4329.15.3.1.1.1
dot11ExtBSSIDTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11ExtBSSIDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The dot11ExtBSSIDTable contains a list of the BSS (Basic Service Set)
Identifiers supported by each radio, and associates an
SSID with with each BSS."
::= { dot11Extsmt 1 }
-- 1.3.6.1.4.1.4329.15.3.1.1.1.1
dot11ExtBSSIDEntry OBJECT-TYPE
SYNTAX Dot11ExtBSSIDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the BSSID table."
INDEX { ifIndex, dot11ExtBSSIndex }
::= { dot11ExtBSSIDTable 1 }
Dot11ExtBSSIDEntry ::=
SEQUENCE {
dot11ExtBSSIndex
Integer32,
dot11ExtBSSID
MacAddress,
dot11ExtSSIDID
Integer32,
dot11ExtSSID
OCTET STRING,
dot11ExtBSSIDWEPKeyIndex
Integer32,
dot11ExtSSIDSuppress
TruthValue,
dot11ExtPriorityTrafficHandling
TruthValue
}
-- 1.3.6.1.4.1.4329.15.3.1.1.1.1.1
dot11ExtBSSIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value, greater than zero, that identifies
each Basic Service Set Identifier (BSSID) supported by a radio."
::= { dot11ExtBSSIDEntry 1 }
-- 1.3.6.1.4.1.4329.15.3.1.1.1.1.2
dot11ExtBSSID OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Basic Service Set Identifier (BSSID) uniquely identifies a
wireless network adapter. In the case of the AP2620,
a radio can support up to 8 distinct BSSIDs."
::= { dot11ExtBSSIDEntry 2 }
-- 1.3.6.1.4.1.4329.15.3.1.1.1.1.3
dot11ExtSSIDID OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"SSIDID is a High Path Wireless internal numeric identifier for the SSID.
This number is meaningless external to the product."
::= { dot11ExtBSSIDEntry 3 }
-- 1.3.6.1.4.1.4329.15.3.1.1.1.1.4
dot11ExtSSID OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Service Set Identifier (SSID) is the network name identifying
the wireless network to which this adapter belongs."
::= { dot11ExtBSSIDEntry 4 }
-- 1.3.6.1.4.1.4329.15.3.1.1.1.1.5
dot11ExtBSSIDWEPKeyIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the WEP default key associated with this BSS
from the ieee802dot11 dot11WEPDefaultKeysTable."
::= { dot11ExtBSSIDEntry 5 }
-- 1.3.6.1.4.1.4329.15.3.1.1.1.1.6
dot11ExtSSIDSuppress OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When True, the radio will not broadcast the SSID associated
with this BSSID in the beacons."
::= { dot11ExtBSSIDEntry 6 }
-- 1.3.6.1.4.1.4329.15.3.1.1.1.1.7
dot11ExtPriorityTrafficHandling OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When True, priority traffic handling is enabled for this BSSID."
::= { dot11ExtBSSIDEntry 7 }
-- 1.3.6.1.4.1.4329.15.3.1.1.2
dot11ExtWEPKeyMappingsTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11ExtWEPKeyMappingsEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The dot11ExtWEPKeyMappingsTable supports the ability to
configure a separate WEP key for each BSS/Station pairing.
The WEPKeyMappingValues in this table are logically WRITE-ONLY.
Any attempt to read these values will return null or 0."
::= { dot11Extsmt 2 }
-- 1.3.6.1.4.1.4329.15.3.1.1.2.1
dot11ExtWEPKeyMappingsEntry OBJECT-TYPE
SYNTAX Dot11ExtWEPKeyMappingsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dot11ExtWEPKeyMappingsTable."
INDEX { ifIndex, dot11ExtBSSIndex, dot11ExtWEPKeyMappingIndex }
::= { dot11ExtWEPKeyMappingsTable 1 }
Dot11ExtWEPKeyMappingsEntry ::=
SEQUENCE {
dot11ExtWEPKeyMappingIndex
Integer32,
dot11ExtWEPKeyMappingAddress
MacAddress,
dot11ExtWEPKeyMappingWEPOn
TruthValue,
dot11ExtWEPKeyMappingValue
WEPKeytype,
dot11ExtWEPKeyMappingStatus
RowStatus
}
-- 1.3.6.1.4.1.4329.15.3.1.1.2.1.1
dot11ExtWEPKeyMappingIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The auxiliary variable used to identify instances
of the columnar objects in the WEP Key Mappings Table."
::= { dot11ExtWEPKeyMappingsEntry 1 }
-- 1.3.6.1.4.1.4329.15.3.1.1.2.1.2
dot11ExtWEPKeyMappingAddress 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."
::= { dot11ExtWEPKeyMappingsEntry 2 }
-- 1.3.6.1.4.1.4329.15.3.1.1.2.1.3
dot11ExtWEPKeyMappingWEPOn 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."
::= { dot11ExtWEPKeyMappingsEntry 3 }
-- 1.3.6.1.4.1.4329.15.3.1.1.2.1.4
dot11ExtWEPKeyMappingValue OBJECT-TYPE
SYNTAX WEPKeytype
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A WEP secret key value."
::= { dot11ExtWEPKeyMappingsEntry 4 }
-- 1.3.6.1.4.1.4329.15.3.1.1.2.1.5
dot11ExtWEPKeyMappingStatus 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."
::= { dot11ExtWEPKeyMappingsEntry 5 }
-- 1.3.6.1.4.1.4329.15.3.1.1.3
dot11CapabilitiesTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11CapabilitiesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The dot11CapabilitiesTable contains the 802.11 protocols
that each radio in the accessPoint are capable of supporting."
::= { dot11Extsmt 3 }
-- 1.3.6.1.4.1.4329.15.3.1.1.3.1
dot11CapabilitiesEntry OBJECT-TYPE
SYNTAX Dot11CapabilitiesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dot11CapabilitiesTable."
INDEX { ifIndex }
::= { dot11CapabilitiesTable 1 }
Dot11CapabilitiesEntry ::=
SEQUENCE {
dot11Capabilities
BITS
}
-- 1.3.6.1.4.1.4329.15.3.1.1.3.1.1
dot11Capabilities OBJECT-TYPE
SYNTAX BITS
{
dot11b(0),
dot11g(1),
dot11a(2),
dot11j(3),
dot11n(4),
dot11c(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Describes the capabilities of a radio, for example the protocol supported."
::= { dot11CapabilitiesEntry 1 }
-- 1.3.6.1.4.1.4329.15.3.1.1.4
dot11bConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11bConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains configuration elements specific to the 802.11b protocol."
::= { dot11Extsmt 4 }
-- 1.3.6.1.4.1.4329.15.3.1.1.4.1
dot11bConfigEntry OBJECT-TYPE
SYNTAX Dot11bConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The dot11bConfigTable contains configuration elements
specific to the 802.11b protocol. If an attempt to
read the elements is made for a radio which does not
support 802.11b, null or 0 will be returned."
INDEX { ifIndex }
::= { dot11bConfigTable 1 }
Dot11bConfigEntry ::=
SEQUENCE {
dot11bEnabled
TruthValue,
dot11BasicB
INTEGER
}
-- 1.3.6.1.4.1.4329.15.3.1.1.4.1.1
dot11bEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When true, 802.1b protocol support is active on this radio."
::= { dot11bConfigEntry 1 }
-- 1.3.6.1.4.1.4329.15.3.1.1.4.1.2
dot11BasicB OBJECT-TYPE
SYNTAX INTEGER
{
basic11b(1),
basic11(2)
}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"Specifies the basic rate set for a 11b or 11b+g radio. When set to
basic11b, the radio uses all four 11b rates (1, 2, 5.5 and 11 Mbps)
as basic rates. When when set to basic11 the radio uses
only the two 11 rates (1 and 2 Mbps) as basic rates."
::= { dot11bConfigEntry 2 }
-- 1.3.6.1.4.1.4329.15.3.1.1.5
dot11gConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11gConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The dot11gConfigTable contains configuration elements
specific to the 802.11g protocol. If an attempt to
read the elements is made for a radio which does not
support 802.11g, null or 0 will be returned."
::= { dot11Extsmt 5 }
-- 1.3.6.1.4.1.4329.15.3.1.1.5.1
dot11gConfigEntry OBJECT-TYPE
SYNTAX Dot11gConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dot11gConfigTable."
INDEX { ifIndex }
::= { dot11gConfigTable 1 }
Dot11gConfigEntry ::=
SEQUENCE {
dot11gEnabled
TruthValue,
dot11gProtectionMode
INTEGER,
dot11gProtectionType
INTEGER,
dot11gProtectionRate
INTEGER,
dot11gBasicG
INTEGER,
dot11gProtectionModeSelected
INTEGER
}
-- 1.3.6.1.4.1.4329.15.3.1.1.5.1.1
dot11gEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When true, 802.1g protocol support is active on this radio."
::= { dot11gConfigEntry 1 }
-- 1.3.6.1.4.1.4329.15.3.1.1.5.1.3
dot11gProtectionMode OBJECT-TYPE
SYNTAX INTEGER
{
none(1),
auto(2),
always(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configures whether and when to use Protection Mode for the 802.11g
transmissions. Protection Mode helps reduce collisions with legacy
802.11b stations at the expense of additional overhead. None specifies
that no protection is to be used. Auto specifies that
radio will enable protection mode when it detects
an 802.11b station. Always specifies that protection
mode is always enabled."
::= { dot11gConfigEntry 3 }
-- 1.3.6.1.4.1.4329.15.3.1.1.5.1.4
dot11gProtectionType OBJECT-TYPE
SYNTAX INTEGER
{
ctsOnly(1),
rtcCts(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Determines whether 802.11g Protection Mode uses a RTS-CTS sequence
or a CTS-only protection mechanism when Protection Mode is enabled."
::= { dot11gConfigEntry 4 }
-- 1.3.6.1.4.1.4329.15.3.1.1.5.1.5
dot11gProtectionRate OBJECT-TYPE
SYNTAX INTEGER
{
rate1Mbps(0),
rate2Mbps(1),
rate5Mbps(2),
rate11Mbps(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the rate to be used by RTS or CTS in protection mode."
::= { dot11gConfigEntry 5 }
-- 1.3.6.1.4.1.4329.15.3.1.1.5.1.6
dot11gBasicG OBJECT-TYPE
SYNTAX INTEGER
{
default(1),
basic11(2),
basic11b(3),
ofdm(4)
}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"Specifies the set of basic rates in 11-g-only mode. Default
allows all possible basic rates (1, 2, 5.5, 11, 6, 12 and 24 Mbps).
Basic11 specifies only 11 rates (1 nad 2 Mbps) as basic. Basic11b
specifies all four 11b rates (1, 2, 5.5 and 11 Mbps) as basic.
OFDM specifies only OFDM rates (6, 12 and 24 Mbps) as basic."
::= { dot11gConfigEntry 6 }
-- 1.3.6.1.4.1.4329.15.3.1.1.5.1.7
dot11gProtectionModeSelected OBJECT-TYPE
SYNTAX INTEGER
{
off(0),
on(1),
notAvailable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Protection mode selected by Access Point. Values are:
off(0) = protection mode is set to off by Access Point.
on(1) = protection mode is set to on by Access Point.
notAvailable(2) = protection mode status is not available, either
due to Access Point's version or stats have not yet been collected
by Controller."
::= { dot11gConfigEntry 7 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7
dot11ExtSmtTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11ExtSmtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Extended settings table."
::= { dot11Extsmt 7 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1
dot11ExtSmtEntry OBJECT-TYPE
SYNTAX Dot11ExtSmtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the Extended settings table dot11ExtSmtTable."
INDEX { ifIndex }
::= { dot11ExtSmtTable 1 }
Dot11ExtSmtEntry ::=
SEQUENCE {
smtShortPreambleInvoked
INTEGER,
dot11ExtSmtCurrentChannel
Integer32,
dot11ExtSmtMaxBasicRate
OCTET STRING,
dot11ExtSmtMinBasicRate
OCTET STRING,
dot11ExtSmtMaxOperationalRate
OCTET STRING,
dot11ExtSmtCurChanSelectedByAP
Integer32,
dot11ExtSmtRFDomain
DisplayString,
dot11ExtSmtAutoTxPowerCtrl
Integer32,
dot11ExtSmtCurrentTxPowerLevel
Integer32,
dot11ExtSmtMaxTxPower
Integer32,
dot11ExtSmtMinTxPower
Integer32,
dot11ExtSmtAutoTxPowerCtrlAdjust
Integer32,
dot11ExtSmtBGretries
Integer32,
dot11ExtSmtBEretries
Integer32,
dot11ExtSmtVIretries
Integer32,
dot11ExtSmtVOretries
Integer32,
dot11ExtSmtTVOretries
Integer32,
dot11ExtSmtDcsMode
INTEGER,
dot11ExtSmtDcsNoiseThreshold
Integer32,
dot11ExtSmtDcsChlOccThreshold
Integer32,
dot11ExtSmtDcsUpdatePeriod
Integer32,
dot11ExtSmtDcsChannelSelection
Integer32,
dot11ExtSmtDcsChannelList
DisplayString,
dot11ExtSmtRadioAttenuation
Integer32,
dot11ExtSmtProbeSuppression
INTEGER,
dot11ExtSmtForceDisassociate
INTEGER,
dot11ExtSmtRssThreshold
Integer32
}
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.1
smtShortPreambleInvoked OBJECT-TYPE
SYNTAX INTEGER
{
notApplicable(0),
shortPreamble(1),
longPreamble(2),
autoSelectPreamble(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the type of preamble used in an 11b/g radio:
always short, always long or automatically selected."
::= { dot11ExtSmtEntry 1 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.2
dot11ExtSmtCurrentChannel OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specfies the current radio channel. Value of zero means 'auto' selection."
::= { dot11ExtSmtEntry 2 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.3
dot11ExtSmtMaxBasicRate OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..126))
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Specifies the maximum basic rate."
::= { dot11ExtSmtEntry 3 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.4
dot11ExtSmtMinBasicRate OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..126))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the minimum basic rate which is
also the minimum operational rate."
::= { dot11ExtSmtEntry 4 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.5
dot11ExtSmtMaxOperationalRate OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..126))
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Specifies the maximum operational rate."
::= { dot11ExtSmtEntry 5 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.6
dot11ExtSmtCurChanSelectedByAP OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Current channel selected by Access Point."
::= { dot11ExtSmtEntry 6 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.7
dot11ExtSmtRFDomain OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Identifies a radio as belonging to an RF Domain. This is
used to provide dynamic radio management when all SSIDs
are suppressed."
::= { dot11ExtSmtEntry 7 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.8
dot11ExtSmtAutoTxPowerCtrl OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Auto Transmission Power Control."
::= { dot11ExtSmtEntry 8 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.9
dot11ExtSmtCurrentTxPowerLevel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Current transmission power level of the radio."
::= { dot11ExtSmtEntry 9 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.10
dot11ExtSmtMaxTxPower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum transmission power level of the radio."
::= { dot11ExtSmtEntry 10 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.11
dot11ExtSmtMinTxPower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Minimum transmission power level of the radio."
::= { dot11ExtSmtEntry 11 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.12
dot11ExtSmtAutoTxPowerCtrlAdjust OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Auto Transmission Power Control adjust."
::= { dot11ExtSmtEntry 12 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.13
dot11ExtSmtBGretries OBJECT-TYPE
SYNTAX Integer32 (0..10)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Number of retries for Background traffics. "
::= { dot11ExtSmtEntry 13 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.14
dot11ExtSmtBEretries OBJECT-TYPE
SYNTAX Integer32 (0..10)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Number of retries for Best Efforts traffics."
::= { dot11ExtSmtEntry 14 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.15
dot11ExtSmtVIretries OBJECT-TYPE
SYNTAX Integer32 (0..10)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Number of retries for Video traffics."
::= { dot11ExtSmtEntry 15 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.16
dot11ExtSmtVOretries OBJECT-TYPE
SYNTAX Integer32 (0..10)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Number of retries for Voice traffics."
::= { dot11ExtSmtEntry 16 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.17
dot11ExtSmtTVOretries OBJECT-TYPE
SYNTAX Integer32 (0..10)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Number of retries for Turbo Voice traffics."
::= { dot11ExtSmtEntry 17 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.18
dot11ExtSmtDcsMode OBJECT-TYPE
SYNTAX INTEGER
{
off(0),
monitor(1),
active(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"DCS operation mode."
::= { dot11ExtSmtEntry 18 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.19
dot11ExtSmtDcsNoiseThreshold OBJECT-TYPE
SYNTAX Integer32 (-95..-50)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"DCS Nose Threshould. It determines at which interface level
the AP will decide to look for a ne operating channel. The
unit is dBm. It is valid only when DCS operation mode is set
to monitor or active"
::= { dot11ExtSmtEntry 19 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.20
dot11ExtSmtDcsChlOccThreshold OBJECT-TYPE
SYNTAX Integer32 (10..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"DCS Channel Occupancy Threshold. It determines at which channel
utilization the AP decides to look for a new operating channel.
The unit is % percentage. It is valid only when DCS operation
mode is set to monitor or active"
::= { dot11ExtSmtEntry 20 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.21
dot11ExtSmtDcsUpdatePeriod OBJECT-TYPE
SYNTAX Integer32 (0..15)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"DCS Update Period. It determines the period during which the AP
averages the DCS Noise Threshold & DCS channel Occupancy Threshold
measurements. The unit is minutes. The range is 1-15. The 0 means
DCS is disabled. It is valid only when DCS operation mode is set
to monitor or active"
::= { dot11ExtSmtEntry 21 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.22
dot11ExtSmtDcsChannelSelection OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"DCS Channel Plan Selection.It is Bitmask of:
1 = all chls (only A),
2 = 3 chls (only BG),
4 = 4 chls (only BG),
8 = auto (only BG),
16 = custom"
::= { dot11ExtSmtEntry 22 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.23
dot11ExtSmtDcsChannelList OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"DCS Channel Plan List.It is custom channel plan. It is valid only when
DCS Channel Plan Selection is set to custom"
::= { dot11ExtSmtEntry 23 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.24
dot11ExtSmtRadioAttenuation OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Attenuation of cable between external antenna and AP in db.
value -1 : not configured.
"
::= { dot11ExtSmtEntry 24 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.25
dot11ExtSmtProbeSuppression OBJECT-TYPE
SYNTAX INTEGER
{
disable(0),
enable(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables/Disables probe suppression. Default is disabled.
"
::= { dot11ExtSmtEntry 25 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.26
dot11ExtSmtForceDisassociate OBJECT-TYPE
SYNTAX INTEGER
{
disable(0),
enable(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IF force-disassoc is enabled, Clients that are associated are sent a Disassoc if the averaged
RSS is < RSS-threshold -5dBm (with some hysteresis). Default is disabled."
::= { dot11ExtSmtEntry 26 }
-- 1.3.6.1.4.1.4329.15.3.1.1.7.1.27
dot11ExtSmtRssThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The radio probe suppression RSS threshold. The range is from -50dBm to -100dBm. Default value is -90dBm."
::= { dot11ExtSmtEntry 27 }
-- 1.3.6.1.4.1.4329.15.3.1.1.8
dot11ExtVlanSmtTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11ExtVlanSmtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains configuration about bridging mode for the radio."
::= { dot11Extsmt 8 }
-- 1.3.6.1.4.1.4329.15.3.1.1.8.1
dot11ExtVlanSmtEntry OBJECT-TYPE
SYNTAX Dot11ExtVlanSmtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in dot11ExtVlanSmtTable table."
INDEX { ifIndex, dot11ExtBSSIndex }
::= { dot11ExtVlanSmtTable 1 }
Dot11ExtVlanSmtEntry ::=
SEQUENCE {
vlanBridgeMode
TruthValue,
vlanTag
Integer32
}
-- 1.3.6.1.4.1.4329.15.3.1.1.8.1.1
vlanBridgeMode OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"When true, bridging mode is enabled on this radio."
::= { dot11ExtVlanSmtEntry 1 }
-- 1.3.6.1.4.1.4329.15.3.1.1.8.1.2
vlanTag OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"Integer specifying the VLAN tag. If untagged, returns -1."
::= { dot11ExtVlanSmtEntry 2 }
-- 1.3.6.1.4.1.4329.15.3.1.1.10
dot11DiversityTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11DiversityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of configuration elements specific to diversity support."
::= { dot11Extsmt 10 }
-- 1.3.6.1.4.1.4329.15.3.1.1.10.1
dot11DiversityEntry OBJECT-TYPE
SYNTAX Dot11DiversityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dot11DiversityTable."
INDEX { ifIndex }
::= { dot11DiversityTable 1 }
Dot11DiversityEntry ::=
SEQUENCE {
dot11DiversityRxDiversity
INTEGER,
dot11DiversityTxDiversity
INTEGER,
dot11AntennaSelection
INTEGER
}
-- 1.3.6.1.4.1.4329.15.3.1.1.10.1.1
dot11DiversityRxDiversity OBJECT-TYPE
SYNTAX INTEGER
{
notSupport(0),
best(1),
left(2),
right(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Diversity support for reception."
DEFVAL { best }
::= { dot11DiversityEntry 1 }
-- 1.3.6.1.4.1.4329.15.3.1.1.10.1.2
dot11DiversityTxDiversity OBJECT-TYPE
SYNTAX INTEGER
{
notSupport(0),
best(1),
left(2),
right(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Diversity support for transmission."
DEFVAL { best }
::= { dot11DiversityEntry 2 }
-- 1.3.6.1.4.1.4329.15.3.1.1.10.1.3
dot11AntennaSelection OBJECT-TYPE
SYNTAX INTEGER
{
none(0),
left(1),
middle(2),
leftMiddle(3),
right(4),
leftRight(5),
middleRight(6),
leftMiddleRight(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Antenna Selection for transmission and reception."
DEFVAL { none }
::= { dot11DiversityEntry 3 }
-- 1.3.6.1.4.1.4329.15.3.1.1.11
dot11nConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11nConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The dot11nConfigTable contains configuration elements
specific to the 802.11n protocol. If an attempt to
read the elements is made for a radio which does not
support 802.11n, null or 0 will be returned."
::= { dot11Extsmt 11 }
-- 1.3.6.1.4.1.4329.15.3.1.1.11.1
dot11nConfigEntry OBJECT-TYPE
SYNTAX Dot11nConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dot11nConfigTable."
INDEX { ifIndex }
::= { dot11nConfigTable 1 }
Dot11nConfigEntry ::=
SEQUENCE {
dot11nEnabled
TruthValue,
dot11nChlBonding
INTEGER,
dot11nChlWidth
INTEGER,
dot11nChlGuardInterval
INTEGER,
dot11nProtectEnabled
TruthValue,
dot11nProtectType
INTEGER,
dot11nProtectOffset
INTEGER,
dot11nPtotectBusyThr
INTEGER,
dot11nAggrMsduEnabled
TruthValue,
dot11nAggrMsduMaxLen
INTEGER,
dot11nAggrMpduEnabled
TruthValue,
dot11nAggrMpduMaxLen
INTEGER,
dot11nAggrMsduSubFrames
INTEGER,
dot11nAddbaSupEnabled
TruthValue,
dot11nConfigLDPC
TruthValue,
dot11nConfigSTBC
TruthValue,
dot11nConfigTXBF
TruthValue
}
-- 1.3.6.1.4.1.4329.15.3.1.1.11.1.1
dot11nEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When true, 802.1n protocol support is active on this radio."
::= { dot11nConfigEntry 1 }
-- 1.3.6.1.4.1.4329.15.3.1.1.11.1.2
dot11nChlBonding OBJECT-TYPE
SYNTAX INTEGER
{
nobond(0),
up(1),
down(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"802.11n protocol Channel Bonding."
::= { dot11nConfigEntry 2 }
-- 1.3.6.1.4.1.4329.15.3.1.1.11.1.3
dot11nChlWidth OBJECT-TYPE
SYNTAX INTEGER
{
width20Mhz(1),
width40Mhz(2),
auto(3),
width80Mhz(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"802.11n protocol Channel Width."
::= { dot11nConfigEntry 3 }
-- 1.3.6.1.4.1.4329.15.3.1.1.11.1.4
dot11nChlGuardInterval OBJECT-TYPE
SYNTAX INTEGER
{
short(1),
long(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"802.11n protocol Guard Interval."
::= { dot11nConfigEntry 4 }
-- 1.3.6.1.4.1.4329.15.3.1.1.11.1.5
dot11nProtectEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"802.11n protocol Channel Protectino Mode."
::= { dot11nConfigEntry 5 }
-- 1.3.6.1.4.1.4329.15.3.1.1.11.1.6
dot11nProtectType OBJECT-TYPE
SYNTAX INTEGER
{
none(0),
ctsOnly(1),
rtsCts(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"802.11n protocol 40Mhz Channel Protection Type."
::= { dot11nConfigEntry 6 }
-- 1.3.6.1.4.1.4329.15.3.1.1.11.1.7
dot11nProtectOffset OBJECT-TYPE
SYNTAX INTEGER
{
protectOffset20Mhz(1),
protectOffset25Mhz(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"802.11n protocol 40Mhz Channel Protection Offset."
::= { dot11nConfigEntry 7 }
-- 1.3.6.1.4.1.4329.15.3.1.1.11.1.8
dot11nPtotectBusyThr OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"802.11n protocol 40Mhz Channel Protection Busy Threshold."
::= { dot11nConfigEntry 8 }
-- 1.3.6.1.4.1.4329.15.3.1.1.11.1.9
dot11nAggrMsduEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"802.11n protocol Aggregate MSDUs."
::= { dot11nConfigEntry 9 }
-- 1.3.6.1.4.1.4329.15.3.1.1.11.1.10
dot11nAggrMsduMaxLen OBJECT-TYPE
SYNTAX INTEGER (2290..4096)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"802.11n protocol Aggregate MSDU Max Length."
::= { dot11nConfigEntry 10 }
-- 1.3.6.1.4.1.4329.15.3.1.1.11.1.11
dot11nAggrMpduEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"802.11n protocol Aggregate MPDUs."
::= { dot11nConfigEntry 11 }
-- 1.3.6.1.4.1.4329.15.3.1.1.11.1.12
dot11nAggrMpduMaxLen OBJECT-TYPE
SYNTAX INTEGER (1024..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"802.11n protocol Aggregate MPDU Max Length."
::= { dot11nConfigEntry 12 }
-- 1.3.6.1.4.1.4329.15.3.1.1.11.1.13
dot11nAggrMsduSubFrames OBJECT-TYPE
SYNTAX INTEGER (2..64)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"802.11n protocol Aggregate MPDU Max Number of Sub-frames."
::= { dot11nConfigEntry 13 }
-- 1.3.6.1.4.1.4329.15.3.1.1.11.1.14
dot11nAddbaSupEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"802.11n protocol ADDBA Support."
::= { dot11nConfigEntry 14 }
-- 1.3.6.1.4.1.4329.15.3.1.1.11.1.15
dot11nConfigLDPC OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Advanced error-detecting coding using Low Density Parity Check codes
to increase the reliability of the transmission."
::= { dot11nConfigEntry 15 }
-- 1.3.6.1.4.1.4329.15.3.1.1.11.1.16
dot11nConfigSTBC OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A simple transmit diversity scheme using Space Time Block Coding to
provide added robustness for devices where there are more transmit
chains than receiver chains."
::= { dot11nConfigEntry 16 }
-- 1.3.6.1.4.1.4329.15.3.1.1.11.1.17
dot11nConfigTXBF OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An advanced transmit diversity scheme performing transmit beamforming to
generate signals that can be optimally received to enhance the reliability
and performance of wireless links."
::= { dot11nConfigEntry 17 }
-- 1.3.6.1.4.1.4329.15.3.1.2
dot11ExtAPObjs OBJECT IDENTIFIER ::= { dot11ExtnsMib 2 }
-- 1.3.6.1.4.1.4329.15.3.1.2.2
dot1XConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot1XConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Conceptual table for 802.1X settings required for wireless
security."
::= { dot11ExtAPObjs 2 }
-- 1.3.6.1.4.1.4329.15.3.1.2.2.1
dot1XConfigEntry OBJECT-TYPE
SYNTAX Dot1XConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in dot1XConfigTable table."
INDEX { ifIndex, dot11ExtBSSIndex }
::= { dot1XConfigTable 1 }
Dot1XConfigEntry ::=
SEQUENCE {
dot1XEnabled
TruthValue,
dot1XDynamicRekeyingInterval
Unsigned32,
dot1XWPA1Enabled
TruthValue,
dot1XWPAPassphrase
DisplayString,
dot1XWPACipherType
INTEGER,
dot1XWPA2Enabled
TruthValue,
dot1XWPA2CipherType
INTEGER,
dot1XConfigKeyManagement
INTEGER
}
-- 1.3.6.1.4.1.4329.15.3.1.2.2.1.1
dot1XEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable 802.1X authentication for this BSSID."
::= { dot1XConfigEntry 1 }
-- 1.3.6.1.4.1.4329.15.3.1.2.2.1.2
dot1XDynamicRekeyingInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object defines the time period, in seconds, after which
the key value must be updated."
::= { dot1XConfigEntry 2 }
-- 1.3.6.1.4.1.4329.15.3.1.2.2.1.3
dot1XWPA1Enabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables WPA.1 (Wi-Fi Protected Access) on this BSSID"
::= { dot1XConfigEntry 3 }
-- 1.3.6.1.4.1.4329.15.3.1.2.2.1.4
dot1XWPAPassphrase OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the WPA passphrase for the BSSID. This element is logically
write only. Any attempt to read this element will result in null or 0."
::= { dot1XConfigEntry 4 }
-- 1.3.6.1.4.1.4329.15.3.1.2.2.1.5
dot1XWPACipherType OBJECT-TYPE
SYNTAX INTEGER
{
tkipOnly(1),
auto(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines the encryption algoritms allowed with WPA:
only TKIP if tkipOnly or both AES and TKIP if auto.
This value has meaning if WPA.1 is enabled."
::= { dot1XConfigEntry 5 }
-- 1.3.6.1.4.1.4329.15.3.1.2.2.1.6
dot1XWPA2Enabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When true, WPA v.2 support is enabled."
::= { dot1XConfigEntry 6 }
-- 1.3.6.1.4.1.4329.15.3.1.2.2.1.7
dot1XWPA2CipherType OBJECT-TYPE
SYNTAX INTEGER
{
auto(2),
aesOnly(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines the encryption algoritms allowed with WPA2:
only AES if aesOnly or both AES and TKIP if auto.
This value has meaning if WPA.2 is enabled."
::= { dot1XConfigEntry 7 }
-- 1.3.6.1.4.1.4329.15.3.1.2.2.1.8
dot1XConfigKeyManagement OBJECT-TYPE
SYNTAX INTEGER
{
none(0),
opportunisticKeying(1),
preAuthentication(2),
opportunisticKeyingAndPreauth(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Key caching method in use.
This field has meaning when dot1XEnabled is true and WPAv2 is enabled."
::= { dot1XConfigEntry 8 }
-- 1.3.6.1.4.1.4329.15.3.1.4
dot11ExtCounters OBJECT IDENTIFIER ::= { dot11ExtnsMib 4 }
-- 1.3.6.1.4.1.4329.15.3.1.4.1
assocGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF AssocGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"STA statistics table."
::= { dot11ExtCounters 1 }
-- 1.3.6.1.4.1.4329.15.3.1.4.1.1
assocGroupEntry OBJECT-TYPE
SYNTAX AssocGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry in the STA statistics table."
INDEX { assocAddress }
::= { assocGroupTable 1 }
AssocGroupEntry ::=
SEQUENCE {
assocAddress
MacAddress,
assocIfIndex
INTEGER,
assocReceivedRSSI
Integer32,
assocTransmittedRSSI
Integer32,
assocReceivedRate
Unsigned32,
assocTransmittedRate
Unsigned32,
assocReceivedFrameCount
Counter64,
assocTransmittedFrameCount
Counter64,
assocReceiveErrors
Counter64,
assocTransmitErrors
Counter64,
assocTransmitBytes
Counter64,
assocReceiveBytes
Counter64,
assocReceivedRSS
Integer32,
assocDLLostRetriesPackets
Integer32,
assocDLLostRetriesBytes
Integer32
}
-- 1.3.6.1.4.1.4329.15.3.1.4.1.1.1
assocAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MAC address associated with the client."
::= { assocGroupEntry 1 }
-- 1.3.6.1.4.1.4329.15.3.1.4.1.1.2
assocIfIndex OBJECT-TYPE
SYNTAX INTEGER
{
unknown(0),
mode11A(1),
mode11G(2),
mode11B(3),
modeN50(4),
modeN24(5),
mode11AC(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of the radio mode with which the client is associated.
Values are: 11A =1, 11G =2 and 11B =3.
Symbols notation: modeN50 = an = n5.0Ghz, modeN24 = bgn = n2.4Ghz."
::= { assocGroupEntry 2 }
-- 1.3.6.1.4.1.4329.15.3.1.4.1.1.3
assocReceivedRSSI OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"RSSI - Received Signal Strength Indicator.
RSS[dBm] = RSSI[dB]-Noise Floor[dBm] measured in dBm, i.e actual Rx power.
RSSI is a normalized indicator of RSS in which RSS is scaled to some vendor
specific range."
::= { assocGroupEntry 3 }
-- 1.3.6.1.4.1.4329.15.3.1.4.1.1.4
assocTransmittedRSSI OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Received signal strength averaged for the ACK packets received in response
to transmitted packets for this client."
::= { assocGroupEntry 4 }
-- 1.3.6.1.4.1.4329.15.3.1.4.1.1.5
assocReceivedRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PHY rate for the packets received from this client."
::= { assocGroupEntry 5 }
-- 1.3.6.1.4.1.4329.15.3.1.4.1.1.6
assocTransmittedRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PHY rate used to transmit packets for this client."
::= { assocGroupEntry 6 }
-- 1.3.6.1.4.1.4329.15.3.1.4.1.1.7
assocReceivedFrameCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Frames received from this client."
::= { assocGroupEntry 7 }
-- 1.3.6.1.4.1.4329.15.3.1.4.1.1.8
assocTransmittedFrameCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Frames transmitted for this client."
::= { assocGroupEntry 8 }
-- 1.3.6.1.4.1.4329.15.3.1.4.1.1.9
assocReceiveErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Frames received with errors from this client."
::= { assocGroupEntry 9 }
-- 1.3.6.1.4.1.4329.15.3.1.4.1.1.10
assocTransmitErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Frames transmitted with errors (not acknowledged)
for this cleint."
::= { assocGroupEntry 10 }
-- 1.3.6.1.4.1.4329.15.3.1.4.1.1.11
assocTransmitBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Bytes transmitted for this client."
::= { assocGroupEntry 11 }
-- 1.3.6.1.4.1.4329.15.3.1.4.1.1.12
assocReceiveBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Bytes received from this client."
::= { assocGroupEntry 12 }
-- 1.3.6.1.4.1.4329.15.3.1.4.1.1.13
assocReceivedRSS OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"RSS - Received Signal Strength.
RSS[dBm] = RSSI[dB]-Noise Floor[dBm] measured in dBm, i.e actual Rx power.
RSS is the actual signal strength measured at the receiver. It is typically
measured in units of dBm."
::= { assocGroupEntry 13 }
-- 1.3.6.1.4.1.4329.15.3.1.4.1.1.14
assocDLLostRetriesPackets OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of downlink (the transmission path is from Access Point to client) lost packets due to excessive retries for this client.
"
::= { assocGroupEntry 14 }
-- 1.3.6.1.4.1.4329.15.3.1.4.1.1.15
assocDLLostRetriesBytes OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of downlink (the transmission path is from Access Point to client) lost bytes due to excessive retries for this client.
"
::= { assocGroupEntry 15 }
-- 1.3.6.1.4.1.4329.15.3.1.4.2
assocCountersTable OBJECT-TYPE
SYNTAX SEQUENCE OF AssocCountersEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"STA association statistics table."
::= { dot11ExtCounters 2 }
-- 1.3.6.1.4.1.4329.15.3.1.4.2.1
assocCountersEntry OBJECT-TYPE
SYNTAX AssocCountersEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry in the STA association statistics table."
INDEX { assocAddress }
::= { assocCountersTable 1 }
AssocCountersEntry ::=
SEQUENCE {
assocAuthenticationCount
Counter64,
assocDeauthenticationCount
Counter64,
assocAssociationCount
Counter64,
assocDeassociationCount
Counter64,
assocReassociationCount
Counter64
}
-- 1.3.6.1.4.1.4329.15.3.1.4.2.1.1
assocAuthenticationCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of authentications for this client."
::= { assocCountersEntry 1 }
-- 1.3.6.1.4.1.4329.15.3.1.4.2.1.2
assocDeauthenticationCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of deauthentications for this client."
::= { assocCountersEntry 2 }
-- 1.3.6.1.4.1.4329.15.3.1.4.2.1.3
assocAssociationCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of associations for this client."
::= { assocCountersEntry 3 }
-- 1.3.6.1.4.1.4329.15.3.1.4.2.1.4
assocDeassociationCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of deassociations for this client."
::= { assocCountersEntry 4 }
-- 1.3.6.1.4.1.4329.15.3.1.4.2.1.5
assocReassociationCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of reassociations for this client."
::= { assocCountersEntry 5 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3
dot11ExtRadioStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11ExtRadioStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of statistics for the dot11 radio."
::= { dot11ExtCounters 3 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1
dot11ExtRadioStatsEntry OBJECT-TYPE
SYNTAX Dot11ExtRadioStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dot11ExtRadioStatsEntry."
INDEX { ifIndex }
::= { dot11ExtRadioStatsTable 1 }
Dot11ExtRadioStatsEntry ::=
SEQUENCE {
dot11ExtRadioType
INTEGER,
dot11ExtRadioInUcastPkts
Counter64,
dot11ExtRadioInMcastPkts
Counter64,
dot11ExtRadioInBcastPkts
Counter64,
dot11ExtRadioInOctets
Counter64,
dot11ExtRadioInErrors
Counter64,
dot11ExtRadioInDiscardsPkts
Counter64,
dot11ExtRadioOutUcastPkts
Counter64,
dot11ExtRadioOutMcastPkts
Counter64,
dot11ExtRadioOutBcastPkts
Counter64,
dot11ExtRadioOutOctets
Counter64,
dot11ExtRadioOutErrors
Counter64,
dot11ExtRadioOutDiscardsPkts
Counter64,
dot11ExtRadioWepIcvErrorCount
Counter64,
dot11ExtRadioWepExcludedCount
Counter64,
dot11ExtRadioRetryCount
Counter64,
dot11ExtRadioMultipleRetryCount
Counter64,
dot11ExtRadioRtsSuccessCount
Counter64,
dot11ExtRadioRtsFailCount
Counter64,
dot11ExtRadioAckFailCount
Counter64,
dot11ExtRadioFrameDupCount
Counter64,
dot11ExtRadioTransFragCount
Counter64,
dot11ExtRadioMulTransFrameCount
Counter64,
dot11ExtRadioFailedCount
Counter64,
dot11ExtRadioReceivedFragCount
Counter64,
dot11ExtRadioMulRecFrameCount
Counter64,
dot11ExtRadioFcsErrorCount
Counter64,
dot11ExtRadioWepUndecrypCount
Counter64,
dot11ExtRadioTransFrameCount
Counter64,
dot11ExtRadioDeauthCacCount
Counter64,
dot11ExtRadioAvgNfCount
INTEGER,
dot11ExtRadioMaxNfCount
INTEGER,
dot11ExtRadioAvgChlOccCount
INTEGER,
dot11ExtRadioMaxChlOccCount
INTEGER,
dot11ExtRadioAvgTxOccCount
INTEGER,
dot11ExtRadioMaxTxOccCount
INTEGER,
dot11ExtRadioAvgRxOccCount
INTEGER,
dot11ExtRadioMaxRxOccCount
INTEGER,
dot11ExtRadioAvgBusyChPercentage
Unsigned32,
dot11ExtRadioMaxBusyChPercentage
Unsigned32,
dot11ExtRadioAvgRxChOccPercentage
Unsigned32,
dot11ExtRadioMaxRxChOccPercentage
Unsigned32
}
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.1
dot11ExtRadioType OBJECT-TYPE
SYNTAX INTEGER
{
off(0),
dot11a(1),
dot11an(2),
dot11anStrict(3),
dot11b(4),
dot11g(5),
dot11bg(6),
dot11gn(7),
dot11bgn(8),
dot11gnStrict(9),
dot11j(10),
dot11ac(11),
dot11cStrict(12)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the type of radio (a/an or b/g/bgn)."
::= { dot11ExtRadioStatsEntry 1 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.2
dot11ExtRadioInUcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of unicast packets from wireless-to-wired network at this radio."
::= { dot11ExtRadioStatsEntry 2 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.3
dot11ExtRadioInMcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of multicast packets from wireless-to-wired network at this radio."
::= { dot11ExtRadioStatsEntry 3 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.4
dot11ExtRadioInBcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of broadcast packets from wireless-to-wired network at this radio."
::= { dot11ExtRadioStatsEntry 4 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.5
dot11ExtRadioInOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total bytes from wireless-to-wired network at this radio."
::= { dot11ExtRadioStatsEntry 5 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.6
dot11ExtRadioInErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of error packets from wireless-to-wired network at this radio."
::= { dot11ExtRadioStatsEntry 6 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.7
dot11ExtRadioInDiscardsPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of discarded packets from wireless-to-wired network at this radio."
::= { dot11ExtRadioStatsEntry 7 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.8
dot11ExtRadioOutUcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of unicast packets from wired-to-wireless network at this radio."
::= { dot11ExtRadioStatsEntry 8 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.9
dot11ExtRadioOutMcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of multicast packets from wired-to-wireless network at this radio."
::= { dot11ExtRadioStatsEntry 9 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.10
dot11ExtRadioOutBcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of broadcast from wired-to-wireless network at this radio."
::= { dot11ExtRadioStatsEntry 10 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.11
dot11ExtRadioOutOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total bytes from wired-to-wireless network at this radio."
::= { dot11ExtRadioStatsEntry 11 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.12
dot11ExtRadioOutErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of error packets from wired-to-wireless network at this radio."
::= { dot11ExtRadioStatsEntry 12 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.13
dot11ExtRadioOutDiscardsPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of discarded packets from wired-to-wireless network at this radio."
::= { dot11ExtRadioStatsEntry 13 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.14
dot11ExtRadioWepIcvErrorCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of WEP ICV Errors."
::= { dot11ExtRadioStatsEntry 14 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.15
dot11ExtRadioWepExcludedCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of WEP excluded."
::= { dot11ExtRadioStatsEntry 15 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.16
dot11ExtRadioRetryCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of retry frames."
::= { dot11ExtRadioStatsEntry 16 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.17
dot11ExtRadioMultipleRetryCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of multiple retries frames."
::= { dot11ExtRadioStatsEntry 17 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.18
dot11ExtRadioRtsSuccessCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of successful RTS frames."
::= { dot11ExtRadioStatsEntry 18 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.19
dot11ExtRadioRtsFailCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of failed RTS frames."
::= { dot11ExtRadioStatsEntry 19 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.20
dot11ExtRadioAckFailCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of failed ACK frames."
::= { dot11ExtRadioStatsEntry 20 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.21
dot11ExtRadioFrameDupCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of duplicated frames."
::= { dot11ExtRadioStatsEntry 21 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.22
dot11ExtRadioTransFragCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of transmitted fragment."
::= { dot11ExtRadioStatsEntry 22 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.23
dot11ExtRadioMulTransFrameCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of transmitted multicast fragment."
::= { dot11ExtRadioStatsEntry 23 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.24
dot11ExtRadioFailedCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of failed frames."
::= { dot11ExtRadioStatsEntry 24 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.25
dot11ExtRadioReceivedFragCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received fragment."
::= { dot11ExtRadioStatsEntry 25 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.26
dot11ExtRadioMulRecFrameCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received multicast frame."
::= { dot11ExtRadioStatsEntry 26 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.27
dot11ExtRadioFcsErrorCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of FCS errors frames."
::= { dot11ExtRadioStatsEntry 27 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.28
dot11ExtRadioWepUndecrypCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of undecryptable WEP frames."
::= { dot11ExtRadioStatsEntry 28 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.29
dot11ExtRadioTransFrameCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of transmitted frames."
::= { dot11ExtRadioStatsEntry 29 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.30
dot11ExtRadioDeauthCacCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of deauthentications due to CAC."
::= { dot11ExtRadioStatsEntry 30 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.31
dot11ExtRadioAvgNfCount OBJECT-TYPE
SYNTAX INTEGER (50..100)
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Noise floor measured by the AP on the 802.11 channel. Noise floor is measured during
the quiet time, between the valid transmission or reception of 802.11 frames.
Variable is reported as average over the last 30 seconds."
::= { dot11ExtRadioStatsEntry 31 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.32
dot11ExtRadioMaxNfCount OBJECT-TYPE
SYNTAX INTEGER (50..100)
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum noise floor measured by the AP on the 802.11 channel. Noise floor is measured
during the quiet time, between the valid transmission or reception of 802.11 frames.
Variable is reported as max over the last 30 seconds."
::= { dot11ExtRadioStatsEntry 32 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.33
dot11ExtRadioAvgChlOccCount OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average DCS Channel Utilization by Adjacent APs [%]."
::= { dot11ExtRadioStatsEntry 33 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.34
dot11ExtRadioMaxChlOccCount OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum DCS Channel Utilization by Adjacent APs [%]."
::= { dot11ExtRadioStatsEntry 34 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.35
dot11ExtRadioAvgTxOccCount OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TxOccupancy variable reports the time (in %) AP was transmitting during the last 100
seconds. During AP transmission all other STA/AP's has only receive access to the channel.
Variable is reported as average over the last 100 seconds."
::= { dot11ExtRadioStatsEntry 35 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.36
dot11ExtRadioMaxTxOccCount OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TxOccupancy variable reports the maximum time (in %) AP was transmitting during
the last 100 seconds. During AP transmission all other STA/AP's has only receive
access to the channel. Variable is reported as max over the last 100 seconds."
::= { dot11ExtRadioStatsEntry 36 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.37
dot11ExtRadioAvgRxOccCount OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average DCS RX Channel Utilization [%]."
::= { dot11ExtRadioStatsEntry 37 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.38
dot11ExtRadioMaxRxOccCount OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum DCS RX Channel Utilization [%]."
::= { dot11ExtRadioStatsEntry 38 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.39
dot11ExtRadioAvgBusyChPercentage OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"STA/AP performs clear channel assessment before transmitting on the 802.11 wireless
channel. BusyChannel variable reports the time (in % ) that channel was busy during
the last 100 seconds. Channel is busy either because there is interference with energy
above a threshold (-62dBm) or because there is active transmission of other STA or AP.
BusyChannel is indicator of the congestions and interference on the channel. Variable
is reported as average over the last 100 seconds."
::= { dot11ExtRadioStatsEntry 39 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.40
dot11ExtRadioMaxBusyChPercentage OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"STA/AP performs clear channel assessment before transmitting on the 802.11 wireless
channel. BusyChannel variable reports the maximum time (in % ) that channel was busy
during the last 100 seconds. Channel is busy either because there is an interference
with energy above a threshold (-62dBm) or because there is an active transmission of
other STA or AP. BusyChannel is indicator of the congestions and interference on the
channel. Variable is reported as maximum over the last 100 seconds."
::= { dot11ExtRadioStatsEntry 40 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.41
dot11ExtRadioAvgRxChOccPercentage OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"RxOccupancy variable reports the time (in %) AP received valid 802.11 frames on the
radio receiver during the last 100 seconds. Variable counts all 802.11 frames sensed
on the channel, including the frames not destined to this AP and rejected by the AP.
Variable does not count signals (interference) that is not recognized as valid 802.11
signal. Variable is reported as average over the last 100 seconds."
::= { dot11ExtRadioStatsEntry 41 }
-- 1.3.6.1.4.1.4329.15.3.1.4.3.1.42
dot11ExtRadioMaxRxChOccPercentage OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"RxOccupancy variable reports the maximum time (in %) AP received valid 802.11 frames
on the radio receiver during the last 100 seconds. Variable counts all the 802.11
frames sensed on the channel, including the frames not destined to this AP and rejected
by the AP. Variable does not count signals (interference) that is not recognized as
valid 802.11 signal. Variable is reported as max over the last 100 seconds."
::= { dot11ExtRadioStatsEntry 42 }
-- 1.3.6.1.4.1.4329.15.3.1.5
dot11ExtConformance OBJECT IDENTIFIER ::= { dot11ExtnsMib 5 }
-- this module
-- 1.3.6.1.4.1.4329.15.3.1.5.1
hiPathWirelessDot11ExtModule MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"HIPATH-WIRELESS-DOT11-EXTNS module compliance."
MODULE -- this module
MANDATORY-GROUPS { hiPathWirelessDot11ExtGroups, dot11nConfigGroup, assocGroupGroup, assocCountersGroup,
dot11ExtRadioStatsGroup}
::= { dot11ExtConformance 1 }
-- 1.3.6.1.4.1.4329.15.3.1.5.2
hiPathWirelessDot11ExtGroups OBJECT-GROUP
OBJECTS { dot11ExtSSIDID, dot11ExtSSID, dot11ExtWEPKeyMappingIndex, dot11ExtWEPKeyMappingAddress, dot11ExtWEPKeyMappingWEPOn,
dot11ExtWEPKeyMappingValue, dot11ExtWEPKeyMappingStatus, dot11gEnabled, dot11gProtectionMode, dot11gProtectionType,
smtShortPreambleInvoked, dot11ExtBSSID, dot11ExtBSSIDWEPKeyIndex, dot11bEnabled, dot11Capabilities,
dot11ExtBSSIndex, dot11ExtSSIDSuppress, dot11ExtPriorityTrafficHandling, dot11gProtectionRate, dot1XWPA2Enabled,
dot1XEnabled, dot1XDynamicRekeyingInterval, dot1XWPA1Enabled, dot1XWPAPassphrase, dot1XWPACipherType,
dot11ExtSmtMinBasicRate, dot11ExtSmtMaxBasicRate, dot11ExtSmtMaxOperationalRate, dot11DiversityTxDiversity, dot11DiversityRxDiversity,
dot1XConfigKeyManagement, dot11ExtSmtTVOretries, dot11ExtSmtCurChanSelectedByAP, dot11ExtSmtRFDomain, dot11ExtSmtAutoTxPowerCtrl,
dot11ExtSmtCurrentTxPowerLevel, dot11ExtSmtMaxTxPower, dot11ExtSmtMinTxPower, dot11ExtSmtAutoTxPowerCtrlAdjust, dot11ExtSmtBGretries,
dot11ExtSmtBEretries, dot11ExtSmtVIretries, dot11ExtSmtVOretries, dot11gProtectionModeSelected, dot1XWPA2CipherType,
dot11ExtSmtCurrentChannel, dot11ExtSmtDcsMode, dot11ExtSmtDcsNoiseThreshold, dot11ExtSmtDcsChlOccThreshold, dot11ExtSmtDcsUpdatePeriod,
dot11ExtSmtDcsChannelSelection, dot11ExtSmtDcsChannelList, dot11AntennaSelection, dot11ExtSmtRadioAttenuation, dot11ExtSmtProbeSuppression,
dot11ExtSmtForceDisassociate, dot11ExtSmtRssThreshold
}
STATUS current
DESCRIPTION
"High Path Wireless DOT11-EXTNS object-group."
::= { dot11ExtConformance 2 }
-- 1.3.6.1.4.1.4329.15.3.1.5.3
hiPathWirelessDot11ObsoleteGroups OBJECT-GROUP
OBJECTS { vlanBridgeMode, dot11gBasicG, dot11BasicB, vlanTag }
STATUS obsolete
DESCRIPTION
"Objects in this list are obsolete."
::= { dot11ExtConformance 3 }
-- 1.3.6.1.4.1.4329.15.3.1.5.4
dot11EWCGroups OBJECT IDENTIFIER ::= { dot11ExtConformance 4 }
-- 1.3.6.1.4.1.4329.15.3.1.5.4.1
dot11nConfigGroup OBJECT-GROUP
OBJECTS { dot11nEnabled, dot11nChlBonding, dot11nChlWidth, dot11nChlGuardInterval, dot11nProtectEnabled,
dot11nProtectType, dot11nProtectOffset, dot11nPtotectBusyThr, dot11nAggrMsduEnabled, dot11nAggrMsduMaxLen,
dot11nAggrMpduEnabled, dot11nAggrMpduMaxLen, dot11nAggrMsduSubFrames, dot11nAddbaSupEnabled, dot11nConfigLDPC,
dot11nConfigSTBC, dot11nConfigTXBF }
STATUS current
DESCRIPTION
"Objects in this group contain attributes of dot11n radio."
::= { dot11EWCGroups 1 }
-- 1.3.6.1.4.1.4329.15.3.1.5.4.2
assocGroupGroup OBJECT-GROUP
OBJECTS { assocAddress, assocIfIndex, assocReceivedRSSI, assocTransmittedRSSI, assocReceivedRate,
assocTransmittedRate, assocReceivedFrameCount, assocTransmittedFrameCount, assocReceiveErrors, assocTransmitErrors,
assocTransmitBytes, assocReceiveBytes, assocReceivedRSS, assocDLLostRetriesPackets, assocDLLostRetriesBytes }
STATUS current
DESCRIPTION
"Objects in this group contain information about associated MUs."
::= { dot11EWCGroups 2 }
-- 1.3.6.1.4.1.4329.15.3.1.5.4.3
assocCountersGroup OBJECT-GROUP
OBJECTS { assocAuthenticationCount, assocDeauthenticationCount, assocAssociationCount, assocDeassociationCount, assocReassociationCount
}
STATUS current
DESCRIPTION
"Objects in this group contain stats related to associated MUs."
::= { dot11EWCGroups 3 }
-- 1.3.6.1.4.1.4329.15.3.1.5.4.4
dot11ExtRadioStatsGroup OBJECT-GROUP
OBJECTS { dot11ExtRadioType, dot11ExtRadioInUcastPkts, dot11ExtRadioInMcastPkts, dot11ExtRadioInBcastPkts, dot11ExtRadioInOctets,
dot11ExtRadioInErrors, dot11ExtRadioInDiscardsPkts, dot11ExtRadioOutUcastPkts, dot11ExtRadioOutMcastPkts, dot11ExtRadioOutBcastPkts,
dot11ExtRadioOutOctets, dot11ExtRadioOutErrors, dot11ExtRadioOutDiscardsPkts, dot11ExtRadioWepIcvErrorCount, dot11ExtRadioWepExcludedCount,
dot11ExtRadioRetryCount, dot11ExtRadioMultipleRetryCount, dot11ExtRadioRtsSuccessCount, dot11ExtRadioRtsFailCount, dot11ExtRadioAckFailCount,
dot11ExtRadioFrameDupCount, dot11ExtRadioTransFragCount, dot11ExtRadioMulTransFrameCount, dot11ExtRadioFailedCount, dot11ExtRadioReceivedFragCount,
dot11ExtRadioMulRecFrameCount, dot11ExtRadioFcsErrorCount, dot11ExtRadioWepUndecrypCount, dot11ExtRadioTransFrameCount, dot11ExtRadioDeauthCacCount,
dot11ExtRadioAvgNfCount, dot11ExtRadioMaxNfCount, dot11ExtRadioAvgChlOccCount, dot11ExtRadioMaxChlOccCount, dot11ExtRadioAvgTxOccCount,
dot11ExtRadioMaxTxOccCount, dot11ExtRadioAvgRxOccCount, dot11ExtRadioMaxRxOccCount, dot11ExtRadioAvgBusyChPercentage, dot11ExtRadioMaxBusyChPercentage,
dot11ExtRadioAvgRxChOccPercentage, dot11ExtRadioMaxRxChOccPercentage }
STATUS current
DESCRIPTION
"Objects in this group contain statistics related a radio."
::= { dot11EWCGroups 4 }
END
|