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
|
-- ****************************************************************************
-- COLUBRIS-DEVICE-WIRELESS-MIB definitions
--
-- Copyright (c) 2006, Colubris Networks, Inc.
-- All Rights Reserved.
--
-- Colubris Device Wireless MIB file.
--
-- ****************************************************************************
COLUBRIS-DEVICE-WIRELESS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Unsigned32, Counter32,
Counter64, IpAddress, NOTIFICATION-TYPE
FROM SNMPv2-SMI
MacAddress, TruthValue
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
colubrisMgmtV2
FROM COLUBRIS-SMI
coDevDisIndex
FROM COLUBRIS-DEVICE-MIB
ColubrisSSIDOrNone, ColubrisNotificationEnable, ColubrisRadioType
FROM COLUBRIS-TC
;
colubrisDeviceWirelessMIB MODULE-IDENTITY
LAST-UPDATED "200710300000Z"
ORGANIZATION "Colubris Networks, Inc."
CONTACT-INFO "Colubris Networks
Postal: 200 West Street Ste 300
Waltham, Massachusetts 02451-1121
UNITED STATES
Phone: +1 781 684 0001
Fax: +1 781 684 0009
E-mail: cn-snmp@colubris.com"
DESCRIPTION "Colubris Device Wireless MIB."
::= { colubrisMgmtV2 25 }
-- colubrisDeviceWirelessMIB definition
colubrisDeviceWirelessMIBObjects OBJECT IDENTIFIER ::= { colubrisDeviceWirelessMIB 1 }
-- colubris Device Wireless groups
coDeviceWirelessConfigGroup OBJECT IDENTIFIER ::= { colubrisDeviceWirelessMIBObjects 1 }
coDeviceWirelessIfStatusGroup OBJECT IDENTIFIER ::= { colubrisDeviceWirelessMIBObjects 2 }
coDeviceWirelessIfStatsGroup OBJECT IDENTIFIER ::= { colubrisDeviceWirelessMIBObjects 3 }
coDeviceWirelessIfQosGroup OBJECT IDENTIFIER ::= { colubrisDeviceWirelessMIBObjects 4 }
coDeviceWirelessVscStatusGroup OBJECT IDENTIFIER ::= { colubrisDeviceWirelessMIBObjects 5 }
coDeviceWirelessVscStatsGroup OBJECT IDENTIFIER ::= { colubrisDeviceWirelessMIBObjects 6 }
coDeviceWirelessClientStatusGroup OBJECT IDENTIFIER ::= { colubrisDeviceWirelessMIBObjects 7 }
coDeviceWirelessClientStatsGroup OBJECT IDENTIFIER ::= { colubrisDeviceWirelessMIBObjects 8 }
coDeviceWirelessClientRatesGroup OBJECT IDENTIFIER ::= { colubrisDeviceWirelessMIBObjects 9 }
coDeviceWirelessClientHTRatesGroup OBJECT IDENTIFIER ::= { colubrisDeviceWirelessMIBObjects 10 }
coDeviceWirelessDetectedAPGroup OBJECT IDENTIFIER ::= { colubrisDeviceWirelessMIBObjects 13 }
-- The Device Wireless Configuration Group
coDevWirSNRLevelNotificationEnabled OBJECT-TYPE
SYNTAX ColubrisNotificationEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This attribute, when true, enables the generation of SNR level
notifications."
DEFVAL { enable }
::= { coDeviceWirelessConfigGroup 1 }
coDevWirSNRLevelNotificationInterval OBJECT-TYPE
SYNTAX Integer32 (1..1000000)
UNITS "minutes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifies the interval in minutes between SNR level notifications."
::= { coDeviceWirelessConfigGroup 2 }
coDevWirMinimumSNRLevel OBJECT-TYPE
SYNTAX Integer32 (0..92)
UNITS "dBm"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "A SNR level notification is generated each time the average SNR
for all wireless stations connected to a VSC drops below this value."
::= { coDeviceWirelessConfigGroup 3 }
coDevWirAssociationNotificationEnabled OBJECT-TYPE
SYNTAX ColubrisNotificationEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifies if an association notification is generated when a new
wireless client station associates with any VSC."
DEFVAL { disable }
::= { coDeviceWirelessConfigGroup 4 }
-- The Device Wireless Interface Status Group
coDeviceWirelessInterfaceStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF CoDeviceWirelessInterfaceStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Device wireless interface status attributes."
::= { coDeviceWirelessIfStatusGroup 1 }
coDeviceWirelessInterfaceStatusEntry OBJECT-TYPE
SYNTAX CoDeviceWirelessInterfaceStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the coDeviceWirelessInterfaceStatusTable.
coDevDisIndex - Uniquely identifies a device in the
MultiService Controller.
coDevWirIfStaRadioIndex - Uniquely identifies a radio
on the device."
INDEX { coDevDisIndex, coDevWirIfStaRadioIndex }
::= { coDeviceWirelessInterfaceStatusTable 1 }
CoDeviceWirelessInterfaceStatusEntry ::= SEQUENCE
{
coDevWirIfStaRadioIndex Integer32,
coDevWirIfStaIfIndex Integer32,
coDevWirIfStaOperatingMode INTEGER,
coDevWirIfStaTransmitPower Integer32,
coDevWirIfStaOperatingChannel Integer32,
coDevWirIfStaRadioMode INTEGER,
coDevWirIfStaRadioType ColubrisRadioType,
coDevWirIfStaRadioOperState TruthValue,
coDevWirIfStaNumberOfClient Unsigned32,
coDevWirIfStaAutoChannelEnabled TruthValue,
coDevWirIfStaAutoChannelInterval Integer32,
coDevWirIfStaAutoPowerEnabled TruthValue,
coDevWirIfStaAutoPowerInterval Integer32,
coDevWirIfStaResetStats INTEGER,
coDevWirIfStaGreenfieldOptionEnabled TruthValue
}
coDevWirIfStaRadioIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Specifies the index of a radio on the
device."
::= { coDeviceWirelessInterfaceStatusEntry 1 }
coDevWirIfStaIfIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Link to coDevIfStaIfIndex."
::= { coDeviceWirelessInterfaceStatusEntry 2 }
coDevWirIfStaOperatingMode OBJECT-TYPE
SYNTAX INTEGER
{
station(1),
apAndWds(2),
apOnly(3),
wdsOnly(4),
monitor(5),
sensor(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current operating mode used by the radio."
::= { coDeviceWirelessInterfaceStatusEntry 3 }
coDevWirIfStaTransmitPower OBJECT-TYPE
SYNTAX Integer32 (0..20)
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Identifies the transmission power of the radio."
::= { coDeviceWirelessInterfaceStatusEntry 4 }
coDevWirIfStaOperatingChannel OBJECT-TYPE
SYNTAX Integer32 (0..199)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Identifies the current operating channel of the radio."
::= { coDeviceWirelessInterfaceStatusEntry 5 }
coDevWirIfStaRadioMode OBJECT-TYPE
SYNTAX INTEGER
{
ieee802dot11a(1),
ieee802dot11b(2),
ieee802dot11g(3),
ieee802dot11bAndg(4),
ieee802dot11aTurbo(5),
ieee802dot11na(6),
ieee802dot11ng(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Identifies the current operating phy type of the radio."
::= { coDeviceWirelessInterfaceStatusEntry 6 }
coDevWirIfStaRadioType OBJECT-TYPE
SYNTAX ColubrisRadioType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Identifies the wireless device inside the Colubris product."
::= { coDeviceWirelessInterfaceStatusEntry 7 }
coDevWirIfStaRadioOperState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "When True indicates that the radio is enabled."
::= { coDeviceWirelessInterfaceStatusEntry 8 }
coDevWirIfStaNumberOfClient OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Identifies the number of associated wireless clients."
::= { coDeviceWirelessInterfaceStatusEntry 9 }
coDevWirIfStaAutoChannelEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "When True indicates that the Auto Channel option is enabled."
::= { coDeviceWirelessInterfaceStatusEntry 10 }
coDevWirIfStaAutoChannelInterval OBJECT-TYPE
SYNTAX Integer32 (0..1440)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Time interval, in minutes, between auto rescanning of channels.
Maximum is 1440 minutes (24 hours). A value of zero disables automatic
rescanning of channels which means that the radio will automatically
select a channel when the interface intializes and use that channel
as long as the interface is operational."
::= { coDeviceWirelessInterfaceStatusEntry 11 }
coDevWirIfStaAutoPowerEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "When True indicates that the Auto Power option is enabled."
::= { coDeviceWirelessInterfaceStatusEntry 12 }
coDevWirIfStaAutoPowerInterval OBJECT-TYPE
SYNTAX Integer32 (5..1440)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Identifies the time interval, in minutes, between auto rescanning of channels.
Maximum is 1440 minutes (24 hours)."
::= { coDeviceWirelessInterfaceStatusEntry 13 }
coDevWirIfStaResetStats OBJECT-TYPE
SYNTAX INTEGER
{
idle(0),
reset(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Reset the wireless interface statistics. Reading this
object will always return 'idle'."
::= { coDeviceWirelessInterfaceStatusEntry 14 }
coDevWirIfStaGreenfieldOptionEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This attribute, when TRUE, indicates that the HT
Greenfield option is enabled."
::= { coDeviceWirelessInterfaceStatusEntry 15 }
-- The Device Wireless Interface Statistics Group
coDeviceWirelessInterfaceStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CoDeviceWirelessInterfaceStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Device wireless interface statistics attributes."
::= { coDeviceWirelessIfStatsGroup 1 }
coDeviceWirelessInterfaceStatsEntry OBJECT-TYPE
SYNTAX CoDeviceWirelessInterfaceStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the coDeviceWirelessInterfaceStatsTable.
coDevDisIndex - Uniquely identifies a device in the
MultiService Controller.
coDevWirIfStaRadioIndex - Uniquely identifies a radio
on the device."
AUGMENTS { coDeviceWirelessInterfaceStatusEntry }
::= { coDeviceWirelessInterfaceStatsTable 1 }
CoDeviceWirelessInterfaceStatsEntry ::= SEQUENCE
{
coDevWirIfStsTransmittedFragmentCount Counter32,
coDevWirIfStsMulticastTransmittedFrameCount Counter32,
coDevWirIfStsFailedCount Counter32,
coDevWirIfStsRetryCount Counter32,
coDevWirIfStsMultipleRetryCount Counter32,
coDevWirIfStsFrameDuplicateCount Counter32,
coDevWirIfStsRTSSuccessCount Counter32,
coDevWirIfStsRTSFailureCount Counter32,
coDevWirIfStsACKFailureCount Counter32,
coDevWirIfStsReceivedFragmentCount Counter32,
coDevWirIfStsMulticastReceivedFrameCount Counter32,
coDevWirIfStsFCSErrorCount Counter32,
coDevWirIfStsTransmittedFrameCount Counter32,
coDevWirIfStsReceivedFrameCount Counter32
}
coDevWirIfStsTransmittedFragmentCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This counter is incremented for each 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."
::= { coDeviceWirelessInterfaceStatsEntry 1 }
coDevWirIfStsMulticastTransmittedFrameCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This counter is incremented 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."
::= { coDeviceWirelessInterfaceStatsEntry 2 }
coDevWirIfStsFailedCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This counter is incremented when an MSDU is not transmitted
successfully due to the number of transmit attempts exceeding
either coDot11ShortRetryLimit or coDot11LongRetryLimit."
::= { coDeviceWirelessInterfaceStatsEntry 3 }
coDevWirIfStsRetryCount OBJECT-TYPE
SYNTAX Counter32
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This counter is incremented when an MSDU is successfully
transmitted after one or more retransmissions."
::= { coDeviceWirelessInterfaceStatsEntry 4 }
coDevWirIfStsMultipleRetryCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This counter is incremented when an MSDU is successfully
transmitted after more than one retransmission."
::= { coDeviceWirelessInterfaceStatsEntry 5 }
coDevWirIfStsFrameDuplicateCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This counter is incremented when a frame is received
and the Sequence Control field indicates that it is a
duplicate."
::= { coDeviceWirelessInterfaceStatsEntry 6 }
coDevWirIfStsRTSSuccessCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This counter is incremented when a CTS is received in
response to an RTS."
::= { coDeviceWirelessInterfaceStatsEntry 7 }
coDevWirIfStsRTSFailureCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This counter is incremented when a CTS is not received in
response to an RTS."
::= { coDeviceWirelessInterfaceStatsEntry 8 }
coDevWirIfStsACKFailureCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This counter is incremented when an ACK is not received
when expected."
::= { coDeviceWirelessInterfaceStatsEntry 9 }
coDevWirIfStsReceivedFragmentCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This counter is incremented for each successfully
received MPDU of type Data or Management."
::= { coDeviceWirelessInterfaceStatsEntry 10 }
coDevWirIfStsMulticastReceivedFrameCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This counter is incremented when a MSDU is received with the
multicast bit set in the destination MAC address."
::= { coDeviceWirelessInterfaceStatsEntry 11 }
coDevWirIfStsFCSErrorCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This counter is incremented when an FCS error is detected in a
received MPDU."
::= { coDeviceWirelessInterfaceStatsEntry 12 }
coDevWirIfStsTransmittedFrameCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This counter is incremented for each successfully transmitted
MSDU."
::= { coDeviceWirelessInterfaceStatsEntry 13 }
coDevWirIfStsReceivedFrameCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This counter is incremented when a MSDU is received."
::= { coDeviceWirelessInterfaceStatsEntry 14 }
-- The Device Virtual Service Communities Status Group
coDeviceWirelessVscStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF CoDeviceVscStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Device Virtual Service Communities status attributes."
::= { coDeviceWirelessVscStatusGroup 1 }
coDeviceWirelessVscStatusEntry OBJECT-TYPE
SYNTAX CoDeviceVscStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the coDeviceWirelessVscStatusTable.
coDevDisIndex - Uniquely identifies a device in the
MultiService Controller.
coDevWirIfStaRadioIndex - Uniquely identifies a radio
on the device.
coDevWirVscStaVscIndex - Uniquely identifies a Virtual Service
Community on the device
configuration file."
INDEX { coDevDisIndex, coDevWirIfStaRadioIndex, coDevWirVscStaVscIndex }
::= { coDeviceWirelessVscStatusTable 1 }
CoDeviceVscStatusEntry ::= SEQUENCE
{
coDevWirVscStaVscIndex Integer32,
coDevWirVscStaMscVscIndex Integer32,
coDevWirVscStaBSSID MacAddress,
coDevWirVscStaDefaultVLAN Integer32,
coDevWirVscStaMaximumNumberOfUsers Unsigned32,
coDevWirVscStaCurrentNumberOfUsers Unsigned32,
coDevWirVscStaAverageSNR Integer32,
coDevWirVscStaResetStats INTEGER
}
coDevWirVscStaVscIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Specifies the index of a Virtual Service Community
in the device configuration file."
::= { coDeviceWirelessVscStatusEntry 1 }
coDevWirVscStaMscVscIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Link to the Virtual Service Community in the
device configuration file
(coVscCfgIndex)."
::= { coDeviceWirelessVscStatusEntry 2 }
coDevWirVscStaBSSID OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "MAC Address assigned to the Virtual Service
Community running on the specified radio."
::= { coDeviceWirelessVscStatusEntry 3 }
coDevWirVscStaDefaultVLAN OBJECT-TYPE
SYNTAX Integer32 (0..4094)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "VLAN ID assigned to a station after a successfull
802.11 association."
::= { coDeviceWirelessVscStatusEntry 4 }
coDevWirVscStaMaximumNumberOfUsers OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Maximum number of wireless client stations that can use the VSC on a
specific radio."
::= { coDeviceWirelessVscStatusEntry 5 }
coDevWirVscStaCurrentNumberOfUsers OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates the number of wireless client stations connected via this
VSC."
::= { coDeviceWirelessVscStatusEntry 6 }
coDevWirVscStaAverageSNR OBJECT-TYPE
SYNTAX Integer32 (0..92)
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average SNR level for the users connected to this VSC."
::= { coDeviceWirelessVscStatusEntry 7 }
coDevWirVscStaResetStats OBJECT-TYPE
SYNTAX INTEGER
{
idle(0),
reset(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Reset the Virtual Service Communities
statistics. Read ing this object will always return
'idle'."
::= { coDeviceWirelessVscStatusEntry 8 }
-- The Device Virtual Service Communities Stats Group
coDeviceWirelessVscStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CoDeviceVscStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Device Virtual Service Communities statistical attributes."
::= { coDeviceWirelessVscStatsGroup 1 }
coDeviceWirelessVscStatsEntry OBJECT-TYPE
SYNTAX CoDeviceVscStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the coDeviceWirelessVscStatsTable.
coDevDisIndex - Uniquely identifies a device in the
MultiService Controller.
coDevWirIfStaRadioIndex - Uniquely identifies a radio
on the device.
coDevWirVscStaVscIndex - Uniquely identifies a Virtual Service
Community in the device
configuration file."
AUGMENTS { coDeviceWirelessVscStatusEntry }
::= { coDeviceWirelessVscStatsTable 1 }
CoDeviceVscStatsEntry ::= SEQUENCE
{
coDevWirVscStsTxSecurityFilter Counter32,
coDevWirVscStsRxSecurityFilter Counter32,
coDevWirVscStsWEPICVError Counter32,
coDevWirVscStsWEPExcluded Counter32,
coDevWirVscStsTKIPICVError Counter32,
coDevWirVscStsTKIPMICError Counter32,
coDevWirVscStsTKIPCounterMeasure Counter32,
coDevWirVscStsTKIPReplay Counter32,
coDevWirVscStsAESError Counter32,
coDevWirVscStsAESReplay Counter32
}
coDevWirVscStsTxSecurityFilter OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of outgoing packets dropped by the wireless
security filters."
::= { coDeviceWirelessVscStatsEntry 1 }
coDevWirVscStsRxSecurityFilter OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of incoming packets dropped by the wireless
security filters."
::= { coDeviceWirelessVscStatsEntry 2 }
coDevWirVscStsWEPICVError OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This counter increments 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."
::= { coDeviceWirelessVscStatsEntry 3 }
coDevWirVscStsWEPExcluded OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This counter increments when a frame is received with
the WEP subfield of the Frame Control field set to zero."
::= { coDeviceWirelessVscStatsEntry 4 }
coDevWirVscStsTKIPICVError OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of incoming packets with TKIP ICV errors."
::= { coDeviceWirelessVscStatsEntry 5 }
coDevWirVscStsTKIPMICError OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of incoming packets with TKIP MIC errors."
::= { coDeviceWirelessVscStatsEntry 6 }
coDevWirVscStsTKIPCounterMeasure OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of times the counter measure has been invoked."
::= { coDeviceWirelessVscStatsEntry 7 }
coDevWirVscStsTKIPReplay OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of incoming packets with TKIP replays."
::= { coDeviceWirelessVscStatsEntry 8 }
coDevWirVscStsAESError OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of incoming AES packets that were undecryptable."
::= { coDeviceWirelessVscStatsEntry 9 }
coDevWirVscStsAESReplay OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of incoming packets with AES replays."
::= { coDeviceWirelessVscStatsEntry 10 }
-- The Device Wireless Client Status Group
coDeviceWirelessClientStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF CoDeviceWirelessClientStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Device Wireless client status attributes."
::= { coDeviceWirelessClientStatusGroup 1 }
coDeviceWirelessClientStatusEntry OBJECT-TYPE
SYNTAX CoDeviceWirelessClientStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the coDeviceWirelessClientStatusTable.
coDevDisIndex - Uniquely identifies a device in the
MultiService Controller.
coDevWirIfStaRadioIndex - Uniquely identifies a radio
on the device.
coDevWirCliStaIndex - Uniquely identifies a wireless
client using the specified
radio on the device."
INDEX { coDevDisIndex, coDevWirIfStaRadioIndex, coDevWirCliStaIndex }
::= { coDeviceWirelessClientStatusTable 1 }
CoDeviceWirelessClientStatusEntry ::= SEQUENCE
{
coDevWirCliStaIndex Integer32,
coDevWirCliStaMACAddress MacAddress,
coDevWirCliStaVscIndex Integer32,
coDevWirCliStaConnectTime Counter32,
coDevWirCliStaSignalLevel Integer32,
coDevWirCliStaNoiseLevel Integer32,
coDevWirCliStaSNR Integer32,
coDevWirCliStaVLAN Integer32,
coDevWirCliStaTransmitRate Unsigned32,
coDevWirCliStaReceiveRate Unsigned32,
coDevWirCliStaTrafficAuthorized TruthValue,
coDevWirCliSta8021xAuthenticated TruthValue,
coDevWirCliStaMACAuthenticated TruthValue,
coDevWirCliStaMACFiltered TruthValue,
coDevWirCliStaPhyType INTEGER,
coDevWirCliStaWPAType INTEGER,
coDevWirCliStaIpAddress IpAddress,
coDevWirCliStaPowerSavingMode TruthValue,
coDevWirCliStaWME TruthValue,
coDevWirCliStaPreviousAPAddress MacAddress,
coDevWirCliStaResetStats INTEGER,
coDevWirCliStaHT TruthValue,
coDevWirCliStaTransmitMCS Unsigned32,
coDevWirCliStaReceiveMCS Unsigned32,
coDevWirCliStaChannelWidth INTEGER,
coDevWirCliStaShortGI TruthValue
}
coDevWirCliStaIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Specifies the index of a wireless client using the
specified radio in the device. The association ID is
used for the index."
::= { coDeviceWirelessClientStatusEntry 1 }
coDevWirCliStaMACAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Unique MAC Address assigned to the wireless device."
::= { coDeviceWirelessClientStatusEntry 2 }
coDevWirCliStaVscIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Index of the Virtual Service Community in the
device configuration file (coDevWirVscStaVscIndex)."
::= { coDeviceWirelessClientStatusEntry 3 }
coDevWirCliStaConnectTime OBJECT-TYPE
SYNTAX Counter32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Elapsed time in seconds since a station has associated
with this device."
::= { coDeviceWirelessClientStatusEntry 4 }
coDevWirCliStaSignalLevel OBJECT-TYPE
SYNTAX Integer32
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Strength of the wireless signal."
::= { coDeviceWirelessClientStatusEntry 5 }
coDevWirCliStaNoiseLevel OBJECT-TYPE
SYNTAX Integer32
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Level of local background noise."
::= { coDeviceWirelessClientStatusEntry 6 }
coDevWirCliStaSNR OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Relative strength of the signal level compared to the noise
level."
::= { coDeviceWirelessClientStatusEntry 7 }
coDevWirCliStaVLAN OBJECT-TYPE
SYNTAX Integer32 (0..4094)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "VLAN ID of the associated station."
::= { coDeviceWirelessClientStatusEntry 8 }
coDevWirCliStaTransmitRate OBJECT-TYPE
SYNTAX Unsigned32
UNITS "500Kb/s"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current transmit rate of a associated station."
::= { coDeviceWirelessClientStatusEntry 9 }
coDevWirCliStaReceiveRate OBJECT-TYPE
SYNTAX Unsigned32
UNITS "500Kb/s"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current receive rate of a associated station."
::= { coDeviceWirelessClientStatusEntry 10 }
coDevWirCliStaTrafficAuthorized OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current receive rate of the associated station."
::= { coDeviceWirelessClientStatusEntry 11 }
coDevWirCliSta8021xAuthenticated OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current receive rate of the associated station."
::= { coDeviceWirelessClientStatusEntry 12 }
coDevWirCliStaMACAuthenticated OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current receive rate of the associated station."
::= { coDeviceWirelessClientStatusEntry 13 }
coDevWirCliStaMACFiltered OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current receive rate of the associated station."
::= { coDeviceWirelessClientStatusEntry 14 }
coDevWirCliStaPhyType OBJECT-TYPE
SYNTAX INTEGER
{
ieee802dot11a(1),
ieee802dot11b(2),
ieee802dot11g(3),
ieee802dot11bAndg(4),
ieee802dot11n(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates the wireless mode used by the associated
station."
::= { coDeviceWirelessClientStatusEntry 15 }
coDevWirCliStaWPAType OBJECT-TYPE
SYNTAX INTEGER
{
none(1),
wpaTkip(2),
wpa2Aes(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates the WPA/Encryption type used by the
wireless station."
::= { coDeviceWirelessClientStatusEntry 16 }
coDevWirCliStaIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates the IP address of the wireless station."
::= { coDeviceWirelessClientStatusEntry 17 }
coDevWirCliStaPowerSavingMode OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "If true, indicates that the wireless station is in power saving mode."
::= { coDeviceWirelessClientStatusEntry 18 }
coDevWirCliStaWME OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "true : the wireless station sends QOS data frames.
false : the wireless station sends data frames."
::= { coDeviceWirelessClientStatusEntry 19 }
coDevWirCliStaPreviousAPAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates the if the station roamed from this access point."
::= { coDeviceWirelessClientStatusEntry 20 }
coDevWirCliStaResetStats OBJECT-TYPE
SYNTAX INTEGER
{
idle(0),
resetStats(1),
resetRates(2),
resetAll(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Reset the wireless client statistics. Reading this
object will always return 'idle'.
resetStats: reset the client statistics,
resetRates: reset the client statistics rates,
resetAll: perform both operations."
::= { coDeviceWirelessClientStatusEntry 21 }
coDevWirCliStaHT OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates that the associated station is HT."
::= { coDeviceWirelessClientStatusEntry 22 }
coDevWirCliStaTransmitMCS OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current transmit MCS of an HT associated station."
::= { coDeviceWirelessClientStatusEntry 23 }
coDevWirCliStaReceiveMCS OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current receive rMCS of an HT associated station."
::= { coDeviceWirelessClientStatusEntry 24 }
coDevWirCliStaChannelWidth OBJECT-TYPE
SYNTAX INTEGER
{
cw20MHz(1),
cw40MHz(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Channel width used by the wireless client."
::= { coDeviceWirelessClientStatusEntry 25 }
coDevWirCliStaShortGI OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates if the wireless client is using short GI."
::= { coDeviceWirelessClientStatusEntry 26 }
-- The Device Wireless Client Statistics Group
coDeviceWirelessClientStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CoDeviceWirelessClientStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Device Wireless client statistical attributes."
::= { coDeviceWirelessClientStatsGroup 1 }
coDeviceWirelessClientStatsEntry OBJECT-TYPE
SYNTAX CoDeviceWirelessClientStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the coDeviceWirelessClientStatsTable.
coDevDisIndex - Uniquely identifies a device on the
MultiService Controller.
coDevWirIfStaRadioIndex - Uniquely identifies a radio
on the device.
coDevWirCliStaIndex - Uniquely identifies a wireless
client using the specified
radio on the device."
AUGMENTS { coDeviceWirelessClientStatusEntry }
::= { coDeviceWirelessClientStatsTable 1 }
CoDeviceWirelessClientStatsEntry ::= SEQUENCE
{
coDevWirCliStsInPkts Counter32,
coDevWirCliStsOutPkts Counter32,
coDevWirCliStsInOctets Counter64,
coDevWirCliStsOutOctets Counter64
}
coDevWirCliStsInPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of packets received from the wireless station after
it associated."
::= { coDeviceWirelessClientStatsEntry 1 }
coDevWirCliStsOutPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of packets send to the wireless station after
it associated."
::= { coDeviceWirelessClientStatsEntry 2 }
coDevWirCliStsInOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of octets received from the wireless station after
it associated."
::= { coDeviceWirelessClientStatsEntry 3 }
coDevWirCliStsOutOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of octets send to the wireless station after
it associated."
::= { coDeviceWirelessClientStatsEntry 4 }
-- The Device Wireless Client Statistics Rates Group
coDeviceWirelessClientStatsRatesTable OBJECT-TYPE
SYNTAX SEQUENCE OF CoDeviceWirelessClientStatsRatesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Device Wireless client statistical rate attributes."
::= { coDeviceWirelessClientRatesGroup 1 }
coDeviceWirelessClientStatsRatesEntry OBJECT-TYPE
SYNTAX CoDeviceWirelessClientStatsRatesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the coDeviceWirelessClientStatsRatesTable.
coDevDisIndex - Uniquely identifies a device on the
MultiService Controller.
coDevWirIfStaRadioIndex - Uniquely identifies a radio
on the device.
coDevWirCliStaIndex - Uniquely identifies a wireless
client using the specified
radio on the device."
AUGMENTS { coDeviceWirelessClientStatusEntry }
::= { coDeviceWirelessClientStatsRatesTable 1 }
CoDeviceWirelessClientStatsRatesEntry ::= SEQUENCE
{
coDevWirCliStsPktsTxRate1 Counter32,
coDevWirCliStsPktsTxRate2 Counter32,
coDevWirCliStsPktsTxRate5dot5 Counter32,
coDevWirCliStsPktsTxRate11 Counter32,
coDevWirCliStsPktsTxRate6 Counter32,
coDevWirCliStsPktsTxRate9 Counter32,
coDevWirCliStsPktsTxRate12 Counter32,
coDevWirCliStsPktsTxRate18 Counter32,
coDevWirCliStsPktsTxRate24 Counter32,
coDevWirCliStsPktsTxRate36 Counter32,
coDevWirCliStsPktsTxRate48 Counter32,
coDevWirCliStsPktsTxRate54 Counter32,
coDevWirCliStsPktsRxRate1 Counter32,
coDevWirCliStsPktsRxRate2 Counter32,
coDevWirCliStsPktsRxRate5dot5 Counter32,
coDevWirCliStsPktsRxRate11 Counter32,
coDevWirCliStsPktsRxRate6 Counter32,
coDevWirCliStsPktsRxRate9 Counter32,
coDevWirCliStsPktsRxRate12 Counter32,
coDevWirCliStsPktsRxRate18 Counter32,
coDevWirCliStsPktsRxRate24 Counter32,
coDevWirCliStsPktsRxRate36 Counter32,
coDevWirCliStsPktsRxRate48 Counter32,
coDevWirCliStsPktsRxRate54 Counter32
}
coDevWirCliStsPktsTxRate1 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at 1 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 1 }
coDevWirCliStsPktsTxRate2 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at 2 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 2 }
coDevWirCliStsPktsTxRate5dot5 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at 5.5 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 3 }
coDevWirCliStsPktsTxRate11 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at 11 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 4 }
coDevWirCliStsPktsTxRate6 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at 6 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 5 }
coDevWirCliStsPktsTxRate9 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at 9 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 6 }
coDevWirCliStsPktsTxRate12 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at 12 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 7 }
coDevWirCliStsPktsTxRate18 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at 18 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 8 }
coDevWirCliStsPktsTxRate24 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at 24 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 9 }
coDevWirCliStsPktsTxRate36 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at 36 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 10 }
coDevWirCliStsPktsTxRate48 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at 48 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 11 }
coDevWirCliStsPktsTxRate54 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at 54 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 12 }
coDevWirCliStsPktsRxRate1 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at 1 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 13 }
coDevWirCliStsPktsRxRate2 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at 2 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 14 }
coDevWirCliStsPktsRxRate5dot5 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at 5.5 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 15 }
coDevWirCliStsPktsRxRate11 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at 11 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 16 }
coDevWirCliStsPktsRxRate6 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at 6 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 17 }
coDevWirCliStsPktsRxRate9 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at 9 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 18 }
coDevWirCliStsPktsRxRate12 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at 12 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 19 }
coDevWirCliStsPktsRxRate18 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at 18 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 20 }
coDevWirCliStsPktsRxRate24 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at 24 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 21 }
coDevWirCliStsPktsRxRate36 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at 36 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 22 }
coDevWirCliStsPktsRxRate48 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at 48 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 23 }
coDevWirCliStsPktsRxRate54 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at 54 Mbit/s since the
station associated."
::= { coDeviceWirelessClientStatsRatesEntry 24 }
-- The Device Wireless Client Statistics HT Rates Group
coDeviceWirelessClientStatsHTRatesTable OBJECT-TYPE
SYNTAX SEQUENCE OF CoDeviceWirelessClientStatsHTRatesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Device Wireless HT client statistical rate
attributes."
::= { coDeviceWirelessClientHTRatesGroup 1 }
coDeviceWirelessClientStatsHTRatesEntry OBJECT-TYPE
SYNTAX CoDeviceWirelessClientStatsHTRatesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the coDeviceWirelessClientStatsHTRatesTable.
coDevDisIndex - Uniquely identifies a device on the
MultiService Controller.
coDevWirIfStaRadioIndex - Uniquely identifies a radio
on the device.
coDevWirCliStaIndex - Uniquely identifies an HT
wireless client using the
specified radio on the device."
AUGMENTS { coDeviceWirelessClientStatusEntry }
::= { coDeviceWirelessClientStatsHTRatesTable 1 }
CoDeviceWirelessClientStatsHTRatesEntry ::= SEQUENCE
{
coDevWirCliStsPktsTxMCS0 Counter32,
coDevWirCliStsPktsTxMCS1 Counter32,
coDevWirCliStsPktsTxMCS2 Counter32,
coDevWirCliStsPktsTxMCS3 Counter32,
coDevWirCliStsPktsTxMCS4 Counter32,
coDevWirCliStsPktsTxMCS5 Counter32,
coDevWirCliStsPktsTxMCS6 Counter32,
coDevWirCliStsPktsTxMCS7 Counter32,
coDevWirCliStsPktsTxMCS8 Counter32,
coDevWirCliStsPktsTxMCS9 Counter32,
coDevWirCliStsPktsTxMCS10 Counter32,
coDevWirCliStsPktsTxMCS11 Counter32,
coDevWirCliStsPktsTxMCS12 Counter32,
coDevWirCliStsPktsTxMCS13 Counter32,
coDevWirCliStsPktsTxMCS14 Counter32,
coDevWirCliStsPktsTxMCS15 Counter32,
coDevWirCliStsPktsRxMCS0 Counter32,
coDevWirCliStsPktsRxMCS1 Counter32,
coDevWirCliStsPktsRxMCS2 Counter32,
coDevWirCliStsPktsRxMCS3 Counter32,
coDevWirCliStsPktsRxMCS4 Counter32,
coDevWirCliStsPktsRxMCS5 Counter32,
coDevWirCliStsPktsRxMCS6 Counter32,
coDevWirCliStsPktsRxMCS7 Counter32,
coDevWirCliStsPktsRxMCS8 Counter32,
coDevWirCliStsPktsRxMCS9 Counter32,
coDevWirCliStsPktsRxMCS10 Counter32,
coDevWirCliStsPktsRxMCS11 Counter32,
coDevWirCliStsPktsRxMCS12 Counter32,
coDevWirCliStsPktsRxMCS13 Counter32,
coDevWirCliStsPktsRxMCS14 Counter32,
coDevWirCliStsPktsRxMCS15 Counter32
}
coDevWirCliStsPktsTxMCS0 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at MCS0 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 1 }
coDevWirCliStsPktsTxMCS1 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at MCS1 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 2 }
coDevWirCliStsPktsTxMCS2 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at MCS2 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 3 }
coDevWirCliStsPktsTxMCS3 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at MCS3 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 4 }
coDevWirCliStsPktsTxMCS4 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at MCS4 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 5 }
coDevWirCliStsPktsTxMCS5 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at MCS5 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 6 }
coDevWirCliStsPktsTxMCS6 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at MCS6 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 7 }
coDevWirCliStsPktsTxMCS7 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at MCS7 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 8 }
coDevWirCliStsPktsTxMCS8 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at MCS8 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 9 }
coDevWirCliStsPktsTxMCS9 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at MCS9 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 10 }
coDevWirCliStsPktsTxMCS10 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at MCS10 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 11 }
coDevWirCliStsPktsTxMCS11 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at MCS11 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 12 }
coDevWirCliStsPktsTxMCS12 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at MCS12 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 13 }
coDevWirCliStsPktsTxMCS13 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at MCS13 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 14 }
coDevWirCliStsPktsTxMCS14 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at MCS14 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 15 }
coDevWirCliStsPktsTxMCS15 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames transmitted at MCS15 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 16 }
coDevWirCliStsPktsRxMCS0 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at MCS0 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 17 }
coDevWirCliStsPktsRxMCS1 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at MCS1 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 18 }
coDevWirCliStsPktsRxMCS2 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at MCS2 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 19 }
coDevWirCliStsPktsRxMCS3 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at MCS3 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 20 }
coDevWirCliStsPktsRxMCS4 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at MCS4 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 21 }
coDevWirCliStsPktsRxMCS5 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at MCS5 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 22 }
coDevWirCliStsPktsRxMCS6 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at MCS6 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 23 }
coDevWirCliStsPktsRxMCS7 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at MCS7 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 24 }
coDevWirCliStsPktsRxMCS8 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at MCS8 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 25 }
coDevWirCliStsPktsRxMCS9 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at MCS9 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 26 }
coDevWirCliStsPktsRxMCS10 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at MCS10 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 27 }
coDevWirCliStsPktsRxMCS11 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at MCS11 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 28 }
coDevWirCliStsPktsRxMCS12 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at MCS12 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 29 }
coDevWirCliStsPktsRxMCS13 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at MCS13 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 30 }
coDevWirCliStsPktsRxMCS14 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at MCS14 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 31 }
coDevWirCliStsPktsRxMCS15 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of frames received at MCS15 since the
station associated."
::= { coDeviceWirelessClientStatsHTRatesEntry 32 }
-- The Device Wireless Detected AP Group
coDeviceWirelessDetectedAPTable OBJECT-TYPE
SYNTAX SEQUENCE OF CoDeviceWirelessDetectedAPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Device Wireless detected AP attributes."
::= { coDeviceWirelessDetectedAPGroup 1 }
coDeviceWirelessDetectedAPEntry OBJECT-TYPE
SYNTAX CoDeviceWirelessDetectedAPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the coDeviceWirelessDetectedAPTable.
coDevDisIndex - Uniquely identifies a device on the
MultiService Controller.
coDevWirApIndex - Uniquely identifies an Access Point in
the device detected AP table."
INDEX { coDevDisIndex, coDevWirApIndex }
::= { coDeviceWirelessDetectedAPTable 1 }
CoDeviceWirelessDetectedAPEntry ::= SEQUENCE
{
coDevWirApIndex Integer32,
coDevWirApBSSID MacAddress,
coDevWirApRadioIndex Integer32,
coDevWirApSSID ColubrisSSIDOrNone,
coDevWirApChannel Integer32,
coDevWirApSignalLevel Integer32,
coDevWirApNoiseLevel Integer32,
coDevWirApSNR Integer32,
coDevWirApPHYType INTEGER,
coDevWirApSecurity INTEGER
}
coDevWirApIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The auxiliary variable used to identify instances of APs in
the device detected AP table."
::= { coDeviceWirelessDetectedAPEntry 1 }
coDevWirApBSSID OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The wireless MAC address of the remote device."
::= { coDeviceWirelessDetectedAPEntry 2 }
coDevWirApRadioIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Link to coDevWirIfStaRadioIndex."
::= { coDeviceWirelessDetectedAPEntry 3 }
coDevWirApSSID OBJECT-TYPE
SYNTAX ColubrisSSIDOrNone
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The Service Set ID broadcast by the remote device."
::= { coDeviceWirelessDetectedAPEntry 4 }
coDevWirApChannel OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The operating frequency channel of the remote device."
::= { coDeviceWirelessDetectedAPEntry 5 }
coDevWirApSignalLevel OBJECT-TYPE
SYNTAX Integer32
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Strength of the wireless signal."
::= { coDeviceWirelessDetectedAPEntry 6 }
coDevWirApNoiseLevel OBJECT-TYPE
SYNTAX Integer32
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Level of local background noise."
::= { coDeviceWirelessDetectedAPEntry 7 }
coDevWirApSNR OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Relative strength of the signal level compared to the noise
level."
::= { coDeviceWirelessDetectedAPEntry 8 }
coDevWirApPHYType OBJECT-TYPE
SYNTAX INTEGER
{
ieee802dot11a(1),
ieee802dot11b(2),
ieee802dot11g(3),
ieee802dot11na(4),
ieee802dot11ng(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Radio type used by the device."
::= { coDeviceWirelessDetectedAPEntry 9 }
coDevWirApSecurity OBJECT-TYPE
SYNTAX INTEGER
{
none(1),
wep(2),
wpa(3),
wpa2(4),
wpaAndWpa2(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates the WPA/Encryption type used by the
wireless station."
::= { coDeviceWirelessDetectedAPEntry 10 }
-- Device Wireless notifications
colubrisDeviceWirelessMIBNotificationPrefix OBJECT IDENTIFIER ::= { colubrisDeviceWirelessMIB 2 }
colubrisDeviceWirelessMIBNotifications OBJECT IDENTIFIER ::= { colubrisDeviceWirelessMIBNotificationPrefix 0 }
coDeviceWirelessSNRLevelNotification NOTIFICATION-TYPE
OBJECTS {
coDevWirVscStaBSSID,
coDevWirVscStaMscVscIndex,
coDevWirVscStaAverageSNR
}
STATUS current
DESCRIPTION "The average SNR level for all the stations using this
Virtual Service Community is below the threshlod."
::= { colubrisDeviceWirelessMIBNotifications 1 }
coDeviceWirelessAssociationNotification NOTIFICATION-TYPE
OBJECTS {
coDevWirCliStaMACAddress,
coDevWirVscStaBSSID,
coDevWirVscStaMscVscIndex
}
STATUS current
DESCRIPTION "Sent when a new association is made with a Virtual
Service Community."
::= { colubrisDeviceWirelessMIBNotifications 2 }
-- conformance information
colubrisDeviceWirelessMIBConformance OBJECT IDENTIFIER ::= { colubrisDeviceWirelessMIB 3 }
colubrisDeviceWirelessMIBCompliances OBJECT IDENTIFIER ::= { colubrisDeviceWirelessMIBConformance 1 }
colubrisDeviceWirelessMIBGroups OBJECT IDENTIFIER ::= { colubrisDeviceWirelessMIBConformance 2 }
-- compliance statements
colubrisDeviceWirelessMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The compliance statement for the device Wireless MIB."
MODULE MANDATORY-GROUPS
{
colubrisDeviceWirelessConfigMIBGroup,
colubrisDeviceWirelessIfStatusMIBGroup,
colubrisDeviceWirelessIfStatsMIBGroup,
colubrisDeviceVscStatusMIBGroup,
colubrisDeviceVscStatsMIBGroup,
colubrisDeviceWirelessClientStatusMIBGroup,
colubrisDeviceWirelessClientStatsMIBGroup,
colubrisDeviceWirelessClientStatsRatesMIBGroup,
colubrisDeviceWirelessDetectedAPMIBGroup,
colubrisDeviceWirelessNotificationGroup,
colubrisDeviceWirelessClientStatsHTRatesMIBGroup
}
::= { colubrisDeviceWirelessMIBCompliances 1 }
-- units of conformance
colubrisDeviceWirelessConfigMIBGroup OBJECT-GROUP
OBJECTS {
coDevWirSNRLevelNotificationEnabled,
coDevWirSNRLevelNotificationInterval,
coDevWirMinimumSNRLevel,
coDevWirAssociationNotificationEnabled
}
STATUS current
DESCRIPTION "A collection of objects for the device wireless
notifications."
::= { colubrisDeviceWirelessMIBGroups 1 }
colubrisDeviceWirelessIfStatusMIBGroup OBJECT-GROUP
OBJECTS {
coDevWirIfStaIfIndex,
coDevWirIfStaOperatingMode,
coDevWirIfStaTransmitPower,
coDevWirIfStaOperatingChannel,
coDevWirIfStaRadioMode,
coDevWirIfStaRadioType,
coDevWirIfStaRadioOperState,
coDevWirIfStaNumberOfClient,
coDevWirIfStaAutoChannelEnabled,
coDevWirIfStaAutoChannelInterval,
coDevWirIfStaAutoPowerEnabled,
coDevWirIfStaAutoPowerInterval,
coDevWirIfStaResetStats,
coDevWirIfStaGreenfieldOptionEnabled
}
STATUS current
DESCRIPTION "A collection of objects for the wireless interface
status."
::= { colubrisDeviceWirelessMIBGroups 2 }
colubrisDeviceWirelessIfStatsMIBGroup OBJECT-GROUP
OBJECTS {
coDevWirIfStsTransmittedFragmentCount,
coDevWirIfStsMulticastTransmittedFrameCount,
coDevWirIfStsFailedCount,
coDevWirIfStsRetryCount,
coDevWirIfStsMultipleRetryCount,
coDevWirIfStsFrameDuplicateCount,
coDevWirIfStsRTSSuccessCount,
coDevWirIfStsRTSFailureCount,
coDevWirIfStsACKFailureCount,
coDevWirIfStsReceivedFragmentCount,
coDevWirIfStsMulticastReceivedFrameCount,
coDevWirIfStsFCSErrorCount,
coDevWirIfStsTransmittedFrameCount,
coDevWirIfStsReceivedFrameCount
}
STATUS current
DESCRIPTION "A collection of objects for the wireless interface
statistics."
::= { colubrisDeviceWirelessMIBGroups 3 }
colubrisDeviceVscStatusMIBGroup OBJECT-GROUP
OBJECTS {
coDevWirVscStaMscVscIndex,
coDevWirVscStaBSSID,
coDevWirVscStaDefaultVLAN,
coDevWirVscStaMaximumNumberOfUsers,
coDevWirVscStaCurrentNumberOfUsers,
coDevWirVscStaAverageSNR,
coDevWirVscStaResetStats
}
STATUS current
DESCRIPTION "A collection of objects for Virtual Service
Communities status information."
::= { colubrisDeviceWirelessMIBGroups 4 }
colubrisDeviceVscStatsMIBGroup OBJECT-GROUP
OBJECTS {
coDevWirVscStsTxSecurityFilter,
coDevWirVscStsRxSecurityFilter,
coDevWirVscStsWEPICVError,
coDevWirVscStsWEPExcluded,
coDevWirVscStsTKIPICVError,
coDevWirVscStsTKIPMICError,
coDevWirVscStsTKIPCounterMeasure,
coDevWirVscStsTKIPReplay,
coDevWirVscStsAESError,
coDevWirVscStsAESReplay
}
STATUS current
DESCRIPTION "A collection of objects for Virtual Service
Communities statistical information."
::= { colubrisDeviceWirelessMIBGroups 5 }
colubrisDeviceWirelessClientStatusMIBGroup OBJECT-GROUP
OBJECTS {
coDevWirCliStaMACAddress,
coDevWirCliStaVscIndex,
coDevWirCliStaConnectTime,
coDevWirCliStaSignalLevel,
coDevWirCliStaNoiseLevel,
coDevWirCliStaSNR,
coDevWirCliStaVLAN,
coDevWirCliStaTransmitRate,
coDevWirCliStaReceiveRate,
coDevWirCliStaTrafficAuthorized,
coDevWirCliSta8021xAuthenticated,
coDevWirCliStaMACAuthenticated,
coDevWirCliStaMACFiltered,
coDevWirCliStaPhyType,
coDevWirCliStaWPAType,
coDevWirCliStaIpAddress,
coDevWirCliStaPowerSavingMode,
coDevWirCliStaWME,
coDevWirCliStaPreviousAPAddress,
coDevWirCliStaResetStats,
coDevWirCliStaHT,
coDevWirCliStaTransmitMCS,
coDevWirCliStaReceiveMCS,
coDevWirCliStaChannelWidth,
coDevWirCliStaShortGI
}
STATUS current
DESCRIPTION "A collection of objects for wireless client status
information."
::= { colubrisDeviceWirelessMIBGroups 6 }
colubrisDeviceWirelessClientStatsMIBGroup OBJECT-GROUP
OBJECTS {
coDevWirCliStsInPkts,
coDevWirCliStsOutPkts,
coDevWirCliStsInOctets,
coDevWirCliStsOutOctets
}
STATUS current
DESCRIPTION "A collection of objects for wireless client
statistical information."
::= { colubrisDeviceWirelessMIBGroups 7 }
colubrisDeviceWirelessClientStatsRatesMIBGroup OBJECT-GROUP
OBJECTS {
coDevWirCliStsPktsTxRate1,
coDevWirCliStsPktsTxRate2,
coDevWirCliStsPktsTxRate5dot5,
coDevWirCliStsPktsTxRate11,
coDevWirCliStsPktsTxRate6,
coDevWirCliStsPktsTxRate9,
coDevWirCliStsPktsTxRate12,
coDevWirCliStsPktsTxRate18,
coDevWirCliStsPktsTxRate24,
coDevWirCliStsPktsTxRate36,
coDevWirCliStsPktsTxRate48,
coDevWirCliStsPktsTxRate54,
coDevWirCliStsPktsRxRate1,
coDevWirCliStsPktsRxRate2,
coDevWirCliStsPktsRxRate5dot5,
coDevWirCliStsPktsRxRate11,
coDevWirCliStsPktsRxRate6,
coDevWirCliStsPktsRxRate9,
coDevWirCliStsPktsRxRate12,
coDevWirCliStsPktsRxRate18,
coDevWirCliStsPktsRxRate24,
coDevWirCliStsPktsRxRate36,
coDevWirCliStsPktsRxRate48,
coDevWirCliStsPktsRxRate54
}
STATUS current
DESCRIPTION "A collection of objects for wireless client
statistical rates information."
::= { colubrisDeviceWirelessMIBGroups 8 }
colubrisDeviceWirelessDetectedAPMIBGroup OBJECT-GROUP
OBJECTS {
coDevWirApBSSID,
coDevWirApRadioIndex,
coDevWirApSSID,
coDevWirApChannel,
coDevWirApSignalLevel,
coDevWirApNoiseLevel,
coDevWirApSNR,
coDevWirApPHYType,
coDevWirApSecurity
}
STATUS current
DESCRIPTION "A collection of objects for detected AP information."
::= { colubrisDeviceWirelessMIBGroups 9 }
colubrisDeviceWirelessNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS {
coDeviceWirelessSNRLevelNotification,
coDeviceWirelessAssociationNotification
}
STATUS current
DESCRIPTION "A collection of supported wireless notifications."
::= { colubrisDeviceWirelessMIBGroups 10 }
colubrisDeviceWirelessClientStatsHTRatesMIBGroup OBJECT-GROUP
OBJECTS {
coDevWirCliStsPktsTxMCS0,
coDevWirCliStsPktsTxMCS1,
coDevWirCliStsPktsTxMCS2,
coDevWirCliStsPktsTxMCS3,
coDevWirCliStsPktsTxMCS4,
coDevWirCliStsPktsTxMCS5,
coDevWirCliStsPktsTxMCS6,
coDevWirCliStsPktsTxMCS7,
coDevWirCliStsPktsTxMCS8,
coDevWirCliStsPktsTxMCS9,
coDevWirCliStsPktsTxMCS10,
coDevWirCliStsPktsTxMCS11,
coDevWirCliStsPktsTxMCS12,
coDevWirCliStsPktsTxMCS13,
coDevWirCliStsPktsTxMCS14,
coDevWirCliStsPktsTxMCS15,
coDevWirCliStsPktsRxMCS0,
coDevWirCliStsPktsRxMCS1,
coDevWirCliStsPktsRxMCS2,
coDevWirCliStsPktsRxMCS3,
coDevWirCliStsPktsRxMCS4,
coDevWirCliStsPktsRxMCS5,
coDevWirCliStsPktsRxMCS6,
coDevWirCliStsPktsRxMCS7,
coDevWirCliStsPktsRxMCS8,
coDevWirCliStsPktsRxMCS9,
coDevWirCliStsPktsRxMCS10,
coDevWirCliStsPktsRxMCS11,
coDevWirCliStsPktsRxMCS12,
coDevWirCliStsPktsRxMCS13,
coDevWirCliStsPktsRxMCS14,
coDevWirCliStsPktsRxMCS15
}
STATUS current
DESCRIPTION "A collection of objects for wireless HT
client statistical rates information."
::= { colubrisDeviceWirelessMIBGroups 11 }
END
|