summaryrefslogtreecommitdiff
path: root/MIBS/fortinet/MERU-GLOBAL-STATISTICS-MIB
blob: 6315b82fe0d397ac3b849f2827c0ebc7dc61db22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
-- *****************************************************************
-- Meru Networks Enterprise Specific MIB
--
-- Copyright (c) 2005 by Meru Networks
-- All rights reserved
--
-- *****************************************************************

MERU-GLOBAL-STATISTICS-MIB  DEFINITIONS ::= BEGIN

IMPORTS
    NOTIFICATION-TYPE, 
    OBJECT-TYPE, 
    MODULE-IDENTITY, 
    OBJECT-IDENTITY,
    enterprises, 
    Counter32, 
    Counter64, 
    Gauge32, 
    TimeTicks, 
    IpAddress, 
    Integer32
        FROM SNMPv2-SMI
    Ipv6Address
        FROM IPV6-TC
    TEXTUAL-CONVENTION, 
    TimeInterval, 
    TimeStamp,
    DateAndTime, 
    TruthValue, 
    DisplayString, 
    MacAddress, 
    RowStatus
        FROM SNMPv2-TC
    mwStatistics
        FROM MERU-SMI
    MwlNodeType,
    MwlOnOffSwitch,
    MwlBandType
        FROM MERU-TC;

  mwGlobalStatistics  MODULE-IDENTITY
    LAST-UPDATED "200506050000Z"
    ORGANIZATION "Meru Networks"
    CONTACT-INFO "support@merunetworks.com"
    DESCRIPTION
        "This MIB defines all the managed objects used to manage the Meru WLAN 
         Global Statistics infrastructure"
    ::= { mwStatistics 1 } 
  
    mwAuthStats                              OBJECT IDENTIFIER ::= { mwGlobalStatistics 3 }
    mwQosStats                               OBJECT IDENTIFIER ::= { mwGlobalStatistics 4 }
    mwSystemGeneral                          OBJECT IDENTIFIER ::= { mwGlobalStatistics 13 }
    mwSystemResource                         OBJECT IDENTIFIER ::= { mwGlobalStatistics 14 }
    mwSystemStation                          OBJECT IDENTIFIER ::= { mwGlobalStatistics 15 }
    mwSystemThruput                          OBJECT IDENTIFIER ::= { mwGlobalStatistics 16 }
    
  
  mwIf80211StatsTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF MwIf80211StatsEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
         "This object describes Wireless (802.11) Statistics "
    ::= { mwGlobalStatistics 1 }

  mwIf80211StatsEntry  OBJECT-TYPE
    SYNTAX MwIf80211StatsEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
         "This object describes Wireless (802.11) Statistics "
    INDEX {  mwIf80211StatsTableIndex  }
    ::= { mwIf80211StatsTable 1 }

  MwIf80211StatsEntry  ::=  SEQUENCE { 
       mwIf80211StatsTableIndex                                    Integer32, 
       mwIf80211StatsNodeId                                        Unsigned32,
       mwIf80211StatsIfIndex                                       Integer32,
       mwIf80211StatsChannel                                       Unsigned32,
       mwIf80211StatsNodeName                                      DisplayString,
       mwIf80211StatsThroughput                                    Counter64,
       mwIf80211StatsNoiseLevel                                    Integer32,
       mwIf80211StatsFailedCount                                   Counter64,
       mwIf80211StatsTxFragCount                                   Counter64,
       mwIf80211StatsRxByteCount                                   Counter64,
       mwIf80211StatsTxByteCount                                   Counter64,
       mwIf80211StatsIfRetryCount                                  Counter64,
       mwIf80211StatsTxFrameCount                                  Counter64,
       mwIf80211StatsRcvFragCount                                  Counter64,
       mwIf80211StatsTxAMSDUCount                                  Counter64,
       mwIf80211StatsRxAMSDUCount                                  Counter64,
       mwIf80211StatsTxAMPDUCount                                  Counter64,
       mwIf80211StatsRxAMPDUCount                                  Counter64,
       mwIf80211StatsFrameDupCount                                 Counter64,
       mwIf80211StatsFcsErrorCount                                 Counter64,
       mwIf80211StatsPlcpErrorCount                                Counter64,
       mwIf80211StatsLossPercentage                                Integer32,
       mwIf80211StatsBeaconOverhead                                Integer32,
       mwIf80211StatsRtsSuccessCount                               Counter64,
       mwIf80211StatsRtsFailureCount                               Counter64,
       mwIf80211StatsAckFailureCount                               Counter64,
       mwIf80211StatsRetryAMSDUCount                               Counter64,
       mwIf80211StatsTxRetryCountBAR                               Counter64,
       mwIf80211StatsRetryPercentage                               Integer32,
       mwIf80211StatsFailedAMSDUCount                              Counter64,
       mwIf80211StatsPSMPSuccessCount                              Counter64,
       mwIf80211StatsPSMPFailureCount                              Counter64,
       mwIf80211StatsBeamformingCount                              Counter64,
       mwIf80211StatsRfBarrierActions                              Counter64,
       mwIf80211StatsMcastTxFrameCount                             Counter64,
       mwIf80211StatsQosCFPollsRxCount                             Counter64,
       mwIf80211StatsAMSDUAckFailCount                             Counter64,
       mwIf80211StatsFrame20MhzTxCount                             Counter64,
       mwIf80211StatsFrame40MhzTxCount                             Counter64,
       mwIf80211StatsFrame20MhzRxCount                             Counter64,
       mwIf80211StatsFrame40MhzRxCount                             Counter64,
       mwIf80211StatsGrantRDGUsedCount                             Counter64,
       mwIf80211StatsTotalRxMgmtFrames                             Unsigned32,
       mwIf80211StatsMultipleRetryCount                            Counter64,
       mwIf80211StatsMcastRcvFrameCount                            Counter64,
       mwIf80211StatsChannelUtilization                            Counter64,
       mwIf80211StatsTxMPDUInAMPDUCount                            Counter64,
       mwIf80211StatsMPDUInRxAMPDUCount                            Counter64,
       mwIf80211StatsTxRetryCountUnaggr                            Counter64,
       mwIf80211StatsRxRetriedFrameCount                           Counter64,
       mwIf80211StatsRxUnicastFrameCount                           Counter64,
       mwIf80211StatsQosCFPollsLostCount                           Counter64,
       mwIf80211StatsGrantRDGUnusedCount                           Counter64,
       mwIf80211StatsDualCTSSuccessCount                           Counter64,
       mwIf80211StatsDualCTSFailureCount                           Counter64,
       mwIf80211StatsSTBCCTSSuccessCount                           Counter64,
       mwIf80211StatsSTBCCTSFailureCount                           Counter64,
       mwIf80211StatsRTSLSIGSuccessCount                           Counter64,
       mwIf80211StatsRTSLSIGFailureCount                           Counter64,
       mwIf80211StatsTxUnicastFrameCount                           Counter64,
       mwIf80211StatsRxAllDataFrameCount                           Counter64,
       mwIf80211StatsNeighborhoodCounter                           Unsigned32,
       mwIf80211StatsAssignedStationCount                          Counter64,
       mwIf80211StatsMultiRetryAMSDUCount                          Counter64,
       mwIf80211StatsTxOctetsInAMSDUCount                          Counter64,
       mwIf80211StatsRxOctetsInAMSDUCount                          Counter64,
       mwIf80211StatsTxOctetsInAMPDUCount                          Counter64,
       mwIf80211StatsRxOctetsInAMPDUCount                          Counter64,
       mwIf80211StatsImplicitBARFailCount                          Counter64,
       mwIf80211StatsExplicitBARFailCount                          Counter64,
       mwIf80211StatsChanWidthSwitchCount                          Counter64,
       mwIf80211StatsTxMultiRetryCountBAR                          Counter64,
       mwIf80211StatsTotalRxControlFrames                          Unsigned32,
       mwIf80211StatsProbeReqRespOverhead                          Integer32,
       mwIf80211StatsWepUndecryptableCount                         Counter64,
       mwIf80211StatsQosDiscardedFragCount                         Counter64,
       mwIf80211StatsQosCFPollsUnusedCount                         Counter64,
       mwIf80211StatsAMPDUDelCRCErrorCount                         Counter64,
       mwIf80211StatsTxRetryCountSubfrAggr                         Counter64,
       mwIf80211StatsProfileBeaconDataRate                         DisplayString,
       mwIf80211StatsAssociatedStationCount                        Counter64,
       mwIf80211StatsDiscoveredStationCount                        Counter64,
       mwIf80211StatsTxFrameInGrantRDGCount                        Counter64,
       mwIf80211StatsTxOctetInGrantRDGCount                        Counter64,
       mwIf80211StatsNonSTBCCTSSuccessCount                        Counter64,
       mwIf80211StatsNonSTBCCTSFailureCount                        Counter64,
       mwIf80211StatsTxRetryLimitExCountBAR                        Counter64,
       mwIf80211StatsQosCFPollsUnusableCount                       Counter64,
       mwIf80211StatsTxRetryLimitExCountAggr                       Counter64,
       mwIf80211StatsTxMultiRetryCountUnaggr                       Counter64,
       mwIf80211StatsTxFailedHwRetryExceeded                       Counter64,
       mwIf80211StatsTxRetryLimitExCountUnaggr                     Counter64,
       mwIf80211StatsRxDataForAssignedStations                     Unsigned32,
       mwIf80211StatsTxMultiRetryCountSubfrAggr                    Counter64,
       mwIf80211StatsMgmtFrameOverheadInAirtime                    Unsigned32,
       mwIf80211StatsTxRetryLimitExCountSubfrAggr                  Counter64,
       mwIf80211StatsUnicastBeaconLossThrExceeded                  Counter64,
       mwIf80211StatsRxMgmtFramesForAssignedStations               Unsigned32,
       mwIf80211StatsPotentialBeaconCollisionCounter               Unsigned32,
       mwIf80211StatsRowStatus                                     RowStatus 
  }
   
   
  mwIf80211StatsTableIndex  OBJECT-TYPE
    SYNTAX Integer32 
    MAX-ACCESS not-accessible 
    STATUS     current
    DESCRIPTION
         "The index value of the  table "
    ::= { mwIf80211StatsEntry 1 }

  mwIf80211StatsNodeId  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes AP ID"
    ::= { mwIf80211StatsEntry    2 }

  mwIf80211StatsIfIndex  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Interface Index"
    ::= { mwIf80211StatsEntry    3 }

  mwIf80211StatsNodeName  OBJECT-TYPE
    SYNTAX DisplayString
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes AP Name"
    ::= { mwIf80211StatsEntry    4 }

  mwIf80211StatsThroughput  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Average throughput"
    ::= { mwIf80211StatsEntry    5 }

  mwIf80211StatsNoiseLevel  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Current Noise Level"
    ::= { mwIf80211StatsEntry    6 }

  mwIf80211StatsFailedCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Failed Count"
    ::= { mwIf80211StatsEntry    7 }

  mwIf80211StatsTxFragCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Transmit Fragment Count"
    ::= { mwIf80211StatsEntry    8 }

  mwIf80211StatsRxByteCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Number of bytes received"
    ::= { mwIf80211StatsEntry    9 }

  mwIf80211StatsTxByteCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Number of bytes transmitted"
    ::= { mwIf80211StatsEntry   10 }

  mwIf80211StatsIfRetryCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Retry Count"
    ::= { mwIf80211StatsEntry   11 }

  mwIf80211StatsTxFrameCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Transmit Frame Count"
    ::= { mwIf80211StatsEntry   12 }

  mwIf80211StatsRcvFragCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Received Fragment Count"
    ::= { mwIf80211StatsEntry   13 }

  mwIf80211StatsTxAMSDUCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Transmit AMSDU Count"
    ::= { mwIf80211StatsEntry   14 }

  mwIf80211StatsRxAMSDUCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Received AMSDU Count"
    ::= { mwIf80211StatsEntry   15 }

  mwIf80211StatsTxAMPDUCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Transmit AMPDU Count"
    ::= { mwIf80211StatsEntry   16 }

  mwIf80211StatsRxAMPDUCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Received AMPDU Count"
    ::= { mwIf80211StatsEntry   17 }

  mwIf80211StatsFrameDupCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Frame Duplicate Count"
    ::= { mwIf80211StatsEntry   18 }

  mwIf80211StatsFcsErrorCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes FCS Error Count"
    ::= { mwIf80211StatsEntry   19 }

  mwIf80211StatsPlcpErrorCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes PLCP Error Count"
    ::= { mwIf80211StatsEntry   20 }

  mwIf80211StatsLossPercentage  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Loss Percentage"
    ::= { mwIf80211StatsEntry   21 }

  mwIf80211StatsRtsSuccessCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes RTS Success Count"
    ::= { mwIf80211StatsEntry   22 }

  mwIf80211StatsRtsFailureCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes RTS Failure Count"
    ::= { mwIf80211StatsEntry   23 }

  mwIf80211StatsAckFailureCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes ACK Failure Count"
    ::= { mwIf80211StatsEntry   24 }

  mwIf80211StatsRetryAMSDUCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Retry AMSDU Count"
    ::= { mwIf80211StatsEntry   25 }

  mwIf80211StatsTxRetryCountBAR  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Transmit Retry Count BAR"
    ::= { mwIf80211StatsEntry   26 }

  mwIf80211StatsFailedAMSDUCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Failed AMSDU Count"
    ::= { mwIf80211StatsEntry   27 }

  mwIf80211StatsPSMPSuccessCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes PSMP Success Count"
    ::= { mwIf80211StatsEntry   28 }

  mwIf80211StatsPSMPFailureCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes PSMP Failure Count"
    ::= { mwIf80211StatsEntry   29 }

  mwIf80211StatsBeamformingCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Beamforming Count"
    ::= { mwIf80211StatsEntry   30 }

  mwIf80211StatsMcastTxFrameCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Multicast Transmit Frame Count"
    ::= { mwIf80211StatsEntry   31 }

  mwIf80211StatsQosCFPollsRxCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Qos CF Polls Rx Count"
    ::= { mwIf80211StatsEntry   32 }

  mwIf80211StatsAMSDUAckFailCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes AMSDU Ack Failure Count"
    ::= { mwIf80211StatsEntry   33 }

  mwIf80211StatsFrame20MhzTxCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Frame 20 Mhz Transmit Count"
    ::= { mwIf80211StatsEntry   34 }

  mwIf80211StatsFrame40MhzTxCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Frame 40 Mhz Transmit Count"
    ::= { mwIf80211StatsEntry   35 }

  mwIf80211StatsFrame20MhzRxCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Frame 20 Mhz Received Count"
    ::= { mwIf80211StatsEntry   36 }

  mwIf80211StatsFrame40MhzRxCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Frame 40 Mhz Received Count"
    ::= { mwIf80211StatsEntry   37 }

  mwIf80211StatsGrantRDGUsedCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Granted RDG Used Count"
    ::= { mwIf80211StatsEntry   38 }

  mwIf80211StatsMultipleRetryCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Multiple Retry Count"
    ::= { mwIf80211StatsEntry   39 }

  mwIf80211StatsMcastRcvFrameCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Multicast Received Frame Count"
    ::= { mwIf80211StatsEntry   40 }

  mwIf80211StatsChannelUtilization  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Channel Utilization"
    ::= { mwIf80211StatsEntry   41 }

  mwIf80211StatsTxMPDUInAMPDUCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Transmit MPDUs in AMPDU Count"
    ::= { mwIf80211StatsEntry   42 }

  mwIf80211StatsMPDUInRxAMPDUCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes MPDUs in Received AMPDU Count"
    ::= { mwIf80211StatsEntry   43 }

  mwIf80211StatsTxRetryCountUnaggr  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Transmit Retry Count Unaggr"
    ::= { mwIf80211StatsEntry   44 }

  mwIf80211StatsRxRetriedFrameCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Received Retried frame Count"
    ::= { mwIf80211StatsEntry   45 }

  mwIf80211StatsRxUnicastFrameCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Received Unicast frame Count"
    ::= { mwIf80211StatsEntry   46 }

  mwIf80211StatsQosCFPollsLostCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Qos CF Polls Lost Count"
    ::= { mwIf80211StatsEntry   47 }

  mwIf80211StatsGrantRDGUnusedCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Granted RDG Unused Count"
    ::= { mwIf80211StatsEntry   48 }

  mwIf80211StatsDualCTSSuccessCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Dual CTS Success Count"
    ::= { mwIf80211StatsEntry   49 }

  mwIf80211StatsDualCTSFailureCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Dual CTS Failure Count"
    ::= { mwIf80211StatsEntry   50 }

  mwIf80211StatsSTBCCTSSuccessCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes STBCCTS Success Count"
    ::= { mwIf80211StatsEntry   51 }

  mwIf80211StatsSTBCCTSFailureCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes STBCCTS Failure Count"
    ::= { mwIf80211StatsEntry   52 }

  mwIf80211StatsRTSLSIGSuccessCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes RTSLSIG Success Count"
    ::= { mwIf80211StatsEntry   53 }

  mwIf80211StatsRTSLSIGFailureCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes RTSLSIG Failure Count"
    ::= { mwIf80211StatsEntry   54 }

  mwIf80211StatsAssignedStationCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Assigned Station Count"
    ::= { mwIf80211StatsEntry   55 }

  mwIf80211StatsMultiRetryAMSDUCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Multiple Retry AMSDU Count"
    ::= { mwIf80211StatsEntry   56 }

  mwIf80211StatsTxOctetsInAMSDUCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Transmit Octets In AMSDU Count"
    ::= { mwIf80211StatsEntry   57 }

  mwIf80211StatsRxOctetsInAMSDUCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Received Octets In AMSDU Count"
    ::= { mwIf80211StatsEntry   58 }

  mwIf80211StatsTxOctetsInAMPDUCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Transmit Octets In AMPDU Count"
    ::= { mwIf80211StatsEntry   59 }

  mwIf80211StatsRxOctetsInAMPDUCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Received Octets In AMPDU Count"
    ::= { mwIf80211StatsEntry   60 }

  mwIf80211StatsImplicitBARFailCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Implicit BAR Failure Count"
    ::= { mwIf80211StatsEntry   61 }

  mwIf80211StatsExplicitBARFailCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Explicit BAR Failure Count"
    ::= { mwIf80211StatsEntry   62 }

  mwIf80211StatsChanWidthSwitchCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Channel Width Switch Count"
    ::= { mwIf80211StatsEntry   63 }

  mwIf80211StatsTxMultiRetryCountBAR  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Transmit Multiple Retry Count BAR"
    ::= { mwIf80211StatsEntry   64 }

  mwIf80211StatsWepUndecryptableCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes WEP Undecryptable Count"
    ::= { mwIf80211StatsEntry   65 }

  mwIf80211StatsQosDiscardedFragCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Qos Discarded Fragment Count"
    ::= { mwIf80211StatsEntry   66 }

  mwIf80211StatsQosCFPollsUnusedCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Qos CF Polls Unused Count"
    ::= { mwIf80211StatsEntry   67 }

  mwIf80211StatsAMPDUDelCRCErrorCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes AMPDU Delimeter CRC Error Count"
    ::= { mwIf80211StatsEntry   68 }

  mwIf80211StatsTxRetryCountSubfrAggr  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Transmit Retry Count Subframe in Aggr"
    ::= { mwIf80211StatsEntry   69 }

  mwIf80211StatsAssociatedStationCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Associated Station Count"
    ::= { mwIf80211StatsEntry   70 }

  mwIf80211StatsDiscoveredStationCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Discovered Station Count"
    ::= { mwIf80211StatsEntry   71 }

  mwIf80211StatsTxFrameInGrantRDGCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Transmit Frames in Granted RDG Count"
    ::= { mwIf80211StatsEntry   72 }

  mwIf80211StatsTxOctetInGrantRDGCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Transmit Octets in Granted RDG Count"
    ::= { mwIf80211StatsEntry   73 }

  mwIf80211StatsNonSTBCCTSSuccessCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Non STBCCTS Success Count"
    ::= { mwIf80211StatsEntry   74 }

  mwIf80211StatsNonSTBCCTSFailureCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Non STBCCTS Failure Count"
    ::= { mwIf80211StatsEntry   75 }

  mwIf80211StatsTxRetryLimitExCountBAR  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Transmit Retry Limit Exceed Count BAR"
    ::= { mwIf80211StatsEntry   76 }

  mwIf80211StatsQosCFPollsUnusableCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Qos CF Polls Unusable Count"
    ::= { mwIf80211StatsEntry   77 }

  mwIf80211StatsTxRetryLimitExCountAggr  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Transmit Retry Limit Exceed Count Aggr"
    ::= { mwIf80211StatsEntry   78 }

  mwIf80211StatsTxMultiRetryCountUnaggr  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Transmit Multiple Retry Count Unaggr"
    ::= { mwIf80211StatsEntry   79 }

  mwIf80211StatsTxRetryLimitExCountUnaggr  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Transmit Retry Limit Exceed Count Unaggr"
    ::= { mwIf80211StatsEntry   81 }

  mwIf80211StatsTxMultiRetryCountSubfrAggr  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Transmit Multiple Retry Count Subframe in Aggr"
    ::= { mwIf80211StatsEntry   82 }

  mwIf80211StatsTxRetryLimitExCountSubfrAggr  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Transmit Retry Limit Exceed Count Subframe in Aggr"
    ::= { mwIf80211StatsEntry   83 }

  mwIf80211StatsUnicastBeaconLossThrExceeded  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Unicast Beacon Loss Threshold Exceeded"
    ::= { mwIf80211StatsEntry   84 }

  mwIf80211StatsTxFailedHwRetryExceeded  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx Failed Count by Hardware Retry Exceed"
    ::= { mwIf80211StatsEntry   85 }

  mwIf80211StatsRxDataForAssignedStations  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Rx Data for Assigned Stations"
    ::= { mwIf80211StatsEntry   86 }

  mwIf80211StatsRxMgmtFramesForAssignedStations  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Rx Management Frames"
    ::= { mwIf80211StatsEntry   87 }

  mwIf80211StatsTotalRxMgmtFrames  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Total Rx Management Frames"
    ::= { mwIf80211StatsEntry   88 }

  mwIf80211StatsTotalRxControlFrames  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Total Rx Control Frames"
    ::= { mwIf80211StatsEntry   89 }

  mwIf80211StatsMgmtFrameOverheadInAirtime  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Management Frame Overhead"
    ::= { mwIf80211StatsEntry   90 }

  mwIf80211StatsTxUnicastFrameCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Transmitted Unicast Frame Count"
    ::= { mwIf80211StatsEntry   91 }

  mwIf80211StatsRxAllDataFrameCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Received All Data Frame Count"
    ::= { mwIf80211StatsEntry   92 }

  mwIf80211StatsRfBarrierActions  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Frames blocked by RF-barrier"
    ::= { mwIf80211StatsEntry   93 }

  mwIf80211StatsBeaconOverhead  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Beacon Overhead"
    ::= { mwIf80211StatsEntry   94 }

  mwIf80211StatsProbeReqRespOverhead  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Probe Request and Response Overhead"
    ::= { mwIf80211StatsEntry   95 }

  mwIf80211StatsNeighborhoodCounter  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Neighborhood Counter"
    ::= { mwIf80211StatsEntry   96 }

  mwIf80211StatsPotentialBeaconCollisionCounter  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Potential Beacon Collision Counter"
    ::= { mwIf80211StatsEntry   97 }

  mwIf80211StatsProfileBeaconDataRate  OBJECT-TYPE
    SYNTAX DisplayString
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Profile of Beacon Data Rate"
    ::= { mwIf80211StatsEntry   98 }

  mwIf80211StatsRetryPercentage  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Retry Percentage"
    ::= { mwIf80211StatsEntry   99 }

  mwIf80211StatsChannel  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Channel"
    ::= { mwIf80211StatsEntry  100 }

  mwIf80211StatsRowStatus  OBJECT-TYPE
    SYNTAX RowStatus
    MAX-ACCESS read-create
    STATUS     current
    DESCRIPTION
         "This object is used to create and delete rows in the table"
    ::= { mwIf80211StatsEntry 103 }

  mwIfStatsTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF MwIfStatsEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
         "This object describes Ethernet Statistics "
    ::= { mwGlobalStatistics 2 }

  mwIfStatsEntry  OBJECT-TYPE
    SYNTAX MwIfStatsEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
         "This object describes Ethernet Statistics "
    INDEX {  mwIfStatsTableIndex  }
    ::= { mwIfStatsTable 1 }

  MwIfStatsEntry  ::=  SEQUENCE { 
       mwIfStatsTableIndex                                         Integer32, 
       mwIfStatsIfDescr                                            DisplayString,
       mwIfStatsIfNodeId                                           Integer32,
       mwIfStatsIfOutQLen                                          Counter64,
       mwIfStatsIfIndexStr                                         DisplayString,
       mwIfStatsIfNodeName                                         DisplayString,
       mwIfStatsIfNodeType                                         MwlNodeType,
       mwIfStatsIfInOctets                                         Counter64,
       mwIfStatsIfInErrors                                         Counter64,
       mwIfStatsIfOutOctets                                        Counter64,
       mwIfStatsIfOutErrors                                        Counter64,
       mwIfStatsIfInDiscards                                       Counter64,
       mwIfStatsIfInUcastPkts                                      Counter64,
       mwIfStatsIfOutDiscards                                      Counter64,
       mwIfStatsIfInNUcastPkts                                     Counter64,
       mwIfStatsIfOutUcastPkts                                     Counter64,
       mwIfStatsIfOutNUcastPkts                                    Counter64,
       mwIfStatsIfInUnknownProtos                                  Counter64,
       mwIfStatsRowStatus                                          RowStatus 
  }
   
   
  mwIfStatsTableIndex  OBJECT-TYPE
    SYNTAX Integer32 
    MAX-ACCESS not-accessible 
    STATUS     current
    DESCRIPTION
         "The index value of the  table "
    ::= { mwIfStatsEntry 1 }

  mwIfStatsIfDescr  OBJECT-TYPE
    SYNTAX DisplayString
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Description"
    ::= { mwIfStatsEntry    3 }

  mwIfStatsIfNodeId  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Node ID"
    ::= { mwIfStatsEntry    4 }

  mwIfStatsIfOutQLen  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Out Queue Length"
    ::= { mwIfStatsEntry    5 }

  mwIfStatsIfNodeName  OBJECT-TYPE
    SYNTAX DisplayString
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Node Name"
    ::= { mwIfStatsEntry    6 }

  mwIfStatsIfNodeType  OBJECT-TYPE
    SYNTAX MwlNodeType
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Node Type"
    ::= { mwIfStatsEntry    7 }

  mwIfStatsIfInOctets  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes In Octets"
    ::= { mwIfStatsEntry    8 }

  mwIfStatsIfInErrors  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes In Errors"
    ::= { mwIfStatsEntry    9 }

  mwIfStatsIfOutOctets  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Out Octets"
    ::= { mwIfStatsEntry   10 }

  mwIfStatsIfOutErrors  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Out Errors"
    ::= { mwIfStatsEntry   11 }

  mwIfStatsIfInDiscards  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes In Discards"
    ::= { mwIfStatsEntry   12 }

  mwIfStatsIfInUcastPkts  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes In Unicast Packets"
    ::= { mwIfStatsEntry   13 }

  mwIfStatsIfOutDiscards  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Out Discards"
    ::= { mwIfStatsEntry   14 }

  mwIfStatsIfInNUcastPkts  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes In Non-Unicast Packets"
    ::= { mwIfStatsEntry   15 }

  mwIfStatsIfOutUcastPkts  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Out Unicast Packets"
    ::= { mwIfStatsEntry   16 }

  mwIfStatsIfOutNUcastPkts  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Out Non-Unicast Packets"
    ::= { mwIfStatsEntry   17 }

  mwIfStatsIfInUnknownProtos  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes In Unknown Protocols"
    ::= { mwIfStatsEntry   18 }

  mwIfStatsIfIndexStr  OBJECT-TYPE
    SYNTAX DisplayString
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Interface Index"
    ::= { mwIfStatsEntry   22 }

  mwIfStatsRowStatus  OBJECT-TYPE
    SYNTAX RowStatus
    MAX-ACCESS read-create
    STATUS     current
    DESCRIPTION
         "This object is used to create and delete rows in the table"
    ::= { mwIfStatsEntry 20 }

  mwAuthStatsAuth8021xRequestCount  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes 802.1x Authentication Request Count"
    ::= { mwAuthStats    1 }

  mwAuthStatsAuth8021xSuccessCount  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes 802.1x Authentication Success Count"
    ::= { mwAuthStats    2 }

  mwAuthStatsAuth8021xFailureCount  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes 802.1x Authentication Failure Count"
    ::= { mwAuthStats    3 }

  mwAuthStatsAuth8021xStationCount  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes 802.1x Authentication Station Count"
    ::= { mwAuthStats    4 }

  mwQosStatsSessionCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Session Count"
    ::= { mwQosStats    1 }

  mwQosStatsH323SessionCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes H.323 Session Count"
    ::= { mwQosStats    2 }

  mwQosStatsSipSessionCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes SIP Session Count"
    ::= { mwQosStats    3 }

  mwQosStatsSccpSessionCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes SCCP Session Count"
    ::= { mwQosStats    4 }

  mwQosStatsRejectedSessionCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Rejected Session Count"
    ::= { mwQosStats    5 }

  mwQosStatsRejectedH323SessionCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Rejected H.323 Session Count"
    ::= { mwQosStats    6 }

  mwQosStatsRejectedSipSessionCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Rejected SIP Session Count"
    ::= { mwQosStats    7 }

  mwQosStatsRejectedSccpSessionCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Rejected SCCP Session Count"
    ::= { mwQosStats    8 }

  mwQosStatsPendingSessionCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Pending Session Count"
    ::= { mwQosStats    9 }

  mwQosStatsH323PendingSessionCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Pending H.323 Session Count"
    ::= { mwQosStats   10 }

  mwQosStatsSipPendingSessionCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Pending SIP Session Count"
    ::= { mwQosStats   11 }

  mwQosStatsSccpPendingSessionCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Pending SCCP Session Count"
    ::= { mwQosStats   12 }

  mwQosStatsQosActiveFlowCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Active Flows"
    ::= { mwQosStats   13 }

  mwQosStatsQosPendingFlowCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Pending Flows"
    ::= { mwQosStats   14 }

  mwStationStatsTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF MwStationStatsEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
         "This object describes Station Statistics "
    ::= { mwGlobalStatistics 6 }

  mwStationStatsEntry  OBJECT-TYPE
    SYNTAX MwStationStatsEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
         "This object describes Station Statistics "
    INDEX {  mwStationStatsTableIndex  }
    ::= { mwStationStatsTable 1 }

  MwStationStatsEntry  ::=  SEQUENCE { 
       mwStationStatsTableIndex                                    Integer32, 
       mwStationStatsMacAddress                                    MacAddress,
       mwStationStatsRssiReportCount                               Unsigned32,
       mwStationStatsDhcpRequestCount                              Counter64,
       mwStationStatsBssidReportCount                              Unsigned32,
       mwStationStatsSipVideoBandwidth                             Counter64,
       mwStationStatsSipVideoFlowCount                             Counter64,
       mwStationStatsSipAudioBandwidth                             Counter64,
       mwStationStatsSipAudioFlowCount                             Counter64,
       mwStationStatsAddressChangeCount                            Counter64,
       mwStationStatsQosActiveFlowCount                            Counter64,
       mwStationStatsH323VideoBandwidth                            Counter64,
       mwStationStatsH323VideoFlowCount                            Counter64,
       mwStationStatsH323AudioBandwidth                            Counter64,
       mwStationStatsH323AudioFlowCount                            Counter64,
       mwStationStatsSccpVideoBandwidth                            Unsigned32,
       mwStationStatsSccpVideoFlowCount                            Unsigned32,
       mwStationStatsSccpAudioBandwidth                            Unsigned32,
       mwStationStatsSccpAudioFlowCount                            Unsigned32,
       mwStationStatsQosPendingFlowCount                           Counter64,
       mwStationStatsSipVideoRsvBandwidth                          Counter64,
       mwStationStatsSipAudioRsvBandwidth                          Counter64,
       mwStationStatsVoluntaryHandoffCount                         Counter64,
       mwStationStatsH323VideoRsvBandwidth                         Counter64,
       mwStationStatsH323AudioRsvBandwidth                         Counter64,
       mwStationStatsSccpVideoRsvBandwidth                         Unsigned32,
       mwStationStatsSccpAudioRsvBandwidth                         Unsigned32,
       mwStationStatsInvoluntaryHandoffCount                       Counter64 
  }
   
   
  mwStationStatsTableIndex  OBJECT-TYPE
    SYNTAX Integer32 
    MAX-ACCESS not-accessible 
    STATUS     current
    DESCRIPTION
         "The index value of the  table "
    ::= { mwStationStatsEntry 1 }

  mwStationStatsMacAddress  OBJECT-TYPE
    SYNTAX MacAddress
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes MAC Address"
    ::= { mwStationStatsEntry    2 }

  mwStationStatsDhcpRequestCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes DHCP Request Count"
    ::= { mwStationStatsEntry    3 }

  mwStationStatsSipVideoBandwidth  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes SIP Video Bandwidth"
    ::= { mwStationStatsEntry    4 }

  mwStationStatsSipVideoFlowCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes SIP Video Flow Count"
    ::= { mwStationStatsEntry    5 }

  mwStationStatsSipAudioBandwidth  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes SIP Audio Bandwidth"
    ::= { mwStationStatsEntry    6 }

  mwStationStatsSipAudioFlowCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes SIP Audio Flow Count"
    ::= { mwStationStatsEntry    7 }

  mwStationStatsAddressChangeCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Address Change Count"
    ::= { mwStationStatsEntry    8 }

  mwStationStatsQosActiveFlowCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes QoS Active Flow Count"
    ::= { mwStationStatsEntry    9 }

  mwStationStatsH323VideoBandwidth  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes H.323 Video Bandwidth"
    ::= { mwStationStatsEntry   10 }

  mwStationStatsH323VideoFlowCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes H.323 Video Flow Count"
    ::= { mwStationStatsEntry   11 }

  mwStationStatsH323AudioBandwidth  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes H.323 Audio Bandwidth"
    ::= { mwStationStatsEntry   12 }

  mwStationStatsH323AudioFlowCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes H.323 Audio Flow Count"
    ::= { mwStationStatsEntry   13 }

  mwStationStatsSccpVideoBandwidth  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes SCCP Video Bandwidth"
    ::= { mwStationStatsEntry   14 }

  mwStationStatsSccpVideoFlowCount  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes SCCP Video Flow Count"
    ::= { mwStationStatsEntry   15 }

  mwStationStatsSccpAudioBandwidth  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes SCCP Audio Bandwidth"
    ::= { mwStationStatsEntry   16 }

  mwStationStatsSccpAudioFlowCount  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes SCCP Audio Flow Count"
    ::= { mwStationStatsEntry   17 }

  mwStationStatsQosPendingFlowCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes QoS Pending Flow Count"
    ::= { mwStationStatsEntry   18 }

  mwStationStatsSipVideoRsvBandwidth  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes SIP Video Reserved Bandwidth"
    ::= { mwStationStatsEntry   19 }

  mwStationStatsSipAudioRsvBandwidth  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes SIP Audio Reserved Bandwidth"
    ::= { mwStationStatsEntry   20 }

  mwStationStatsVoluntaryHandoffCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Voluntary Handoff Count"
    ::= { mwStationStatsEntry   21 }

  mwStationStatsH323VideoRsvBandwidth  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes H.323 Video Reserved Bandwidth"
    ::= { mwStationStatsEntry   22 }

  mwStationStatsH323AudioRsvBandwidth  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes H.323 Audio Reserved Bandwidth"
    ::= { mwStationStatsEntry   23 }

  mwStationStatsSccpVideoRsvBandwidth  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes SCCP Video Reserved Bandwidth"
    ::= { mwStationStatsEntry   24 }

  mwStationStatsSccpAudioRsvBandwidth  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes SCCP Audio Reserved Bandwidth"
    ::= { mwStationStatsEntry   25 }

  mwStationStatsInvoluntaryHandoffCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Involuntary Handoff Count"
    ::= { mwStationStatsEntry   26 }

  mwStationStatsRssiReportCount  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Rssi Report Count"
    ::= { mwStationStatsEntry   27 }

  mwStationStatsBssidReportCount  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Bssid Report Count"
    ::= { mwStationStatsEntry   28 }

  mwApStationStatsTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF MwApStationStatsEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
         "This object describes Station Per AP Statistics "
    ::= { mwGlobalStatistics 7 }

  mwApStationStatsEntry  OBJECT-TYPE
    SYNTAX MwApStationStatsEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
         "This object describes Station Per AP Statistics "
    INDEX {  mwApStationStatsTableIndex  }
    ::= { mwApStationStatsTable 1 }

  MwApStationStatsEntry  ::=  SEQUENCE { 
       mwApStationStatsTableIndex                                  Integer32, 
       mwApStationStatsEssId                                       DisplayString,
       mwApStationStatsBssId                                       MacAddress,
       mwApStationStatsApName                                      DisplayString,
       mwApStationStatsIfIndex                                     Integer32,
       mwApStationStatsWepErrors                                   Counter64,
       mwApStationStatsRxDataRate                                  Counter64,
       mwApStationStatsTxDataRate                                  Counter64,
       mwApStationStatsNmsApNodeId                                 Integer32,
       mwApStationStatsRxByteCount                                 Counter64,
       mwApStationStatsTxByteCount                                 Counter64,
       mwApStationStatsRxPacketCount                               Counter64,
       mwApStationStatsTxPacketCount                               Counter64,
       mwApStationStatsTxAckMissCount                              Counter64,
       mwApStationStatsDhcpErrorCount                              Counter64,
       mwApStationStatsLRUSwapCounter                              Counter64,
       mwApStationStatsRxFcsErrorCount                             Counter64,
       mwApStationStatsStationIPAddress                            Ipv6Address,
       mwApStationStatsRxDuplicateCount                            Counter64,
       mwApStationStatsDhcpRequestCount                            Counter64,
       mwApStationStatsSUBeamFormerSupp                            MwlOnOffSwitch,
       mwApStationStatsSUBeamFormeeSupp                            MwlOnOffSwitch,
       mwApStationStatsMUBeamFormeeSupp                            MwlOnOffSwitch,
       mwApStationStatsStationMacAddress                           MacAddress,
       mwApStationStatsStationIPv4Address                          IpAddress,
       mwApStationStatsChannelUtilization                          Counter64,
       mwApStationStatsSoundingFrameCount                          Integer32,
       mwApStationStatsRxRetriedFrameCount                         Counter64,
       mwApStationStatsRxAverageAggrLength                         Counter64,
       mwApStationStatsTxAverageAggrLength                         Counter64,
       mwApStationStatsPSPollFramesRxCount                         Counter64,
       mwApStationStatsStationQueueOverflow                        Counter64,
       mwApStationStatsPowerSaveQueueOverflow                      Counter64,
       mwApStationStatsSWEncryptionFramesCount                     Counter64,
       mwApStationStatsSWDecryptionFramesCount                     Counter64,
       mwApStationStatsTxFailedHwRetryExceeded                     Counter64,
       mwApStationStatsTotalPowerSaveTransitions                   Counter64 
  }
   
   
  mwApStationStatsTableIndex  OBJECT-TYPE
    SYNTAX Integer32 
    MAX-ACCESS not-accessible 
    STATUS     current
    DESCRIPTION
         "The index value of the  table "
    ::= { mwApStationStatsEntry 1 }

  mwApStationStatsEssId  OBJECT-TYPE
    SYNTAX DisplayString
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes SSID"
    ::= { mwApStationStatsEntry    2 }

  mwApStationStatsBssId  OBJECT-TYPE
    SYNTAX MacAddress
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes BSS ID"
    ::= { mwApStationStatsEntry    3 }

  mwApStationStatsApName  OBJECT-TYPE
    SYNTAX DisplayString
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes AP Name"
    ::= { mwApStationStatsEntry    4 }

  mwApStationStatsIfIndex  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Interface Index"
    ::= { mwApStationStatsEntry    5 }

  mwApStationStatsWepErrors  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Encryption error count"
    ::= { mwApStationStatsEntry    6 }

  mwApStationStatsRxDataRate  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Data received rate"
    ::= { mwApStationStatsEntry    7 }

  mwApStationStatsTxDataRate  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Data transmitted rate"
    ::= { mwApStationStatsEntry    8 }

  mwApStationStatsNmsApNodeId  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes AP ID"
    ::= { mwApStationStatsEntry    9 }

  mwApStationStatsRxByteCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Number of bytes received"
    ::= { mwApStationStatsEntry   10 }

  mwApStationStatsTxByteCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Number of bytes transmitted"
    ::= { mwApStationStatsEntry   11 }

  mwApStationStatsRxPacketCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Rx packet count"
    ::= { mwApStationStatsEntry   12 }

  mwApStationStatsTxPacketCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Tx packet count"
    ::= { mwApStationStatsEntry   13 }

  mwApStationStatsTxAckMissCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Missed Transmit Ack count"
    ::= { mwApStationStatsEntry   14 }

  mwApStationStatsDhcpErrorCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes DHCP error count"
    ::= { mwApStationStatsEntry   15 }

  mwApStationStatsRxFcsErrorCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Receive FCS error count"
    ::= { mwApStationStatsEntry   16 }

  mwApStationStatsStationIPAddress  OBJECT-TYPE
    SYNTAX Ipv6Address
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Station IP Address"
    ::= { mwApStationStatsEntry   17 }

  mwApStationStatsRxDuplicateCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Duplicates received"
    ::= { mwApStationStatsEntry   18 }

  mwApStationStatsDhcpRequestCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes DHCP request count"
    ::= { mwApStationStatsEntry   19 }

  mwApStationStatsStationMacAddress  OBJECT-TYPE
    SYNTAX MacAddress
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Station MAC Address"
    ::= { mwApStationStatsEntry   20 }

  mwApStationStatsChannelUtilization  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Channel Utilization"
    ::= { mwApStationStatsEntry   21 }

  mwApStationStatsRxRetriedFrameCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Receive retries count"
    ::= { mwApStationStatsEntry   22 }

  mwApStationStatsRxAverageAggrLength  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Rx Avg Aggregated Length"
    ::= { mwApStationStatsEntry   23 }

  mwApStationStatsTxAverageAggrLength  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Tx Avg Aggregated Length"
    ::= { mwApStationStatsEntry   24 }

  mwApStationStatsTotalPowerSaveTransitions  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Number of Power Save transitions"
    ::= { mwApStationStatsEntry   25 }

  mwApStationStatsStationQueueOverflow  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Station Q Overflow Count"
    ::= { mwApStationStatsEntry   26 }

  mwApStationStatsPowerSaveQueueOverflow  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Power Save Q Overflow Count"
    ::= { mwApStationStatsEntry   27 }

  mwApStationStatsPSPollFramesRxCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Power Save Poll Frames Received Count"
    ::= { mwApStationStatsEntry   28 }

  mwApStationStatsSWEncryptionFramesCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes SW Encryption Frames Count"
    ::= { mwApStationStatsEntry   29 }

  mwApStationStatsSWDecryptionFramesCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes SW Decryption Frames Count"
    ::= { mwApStationStatsEntry   30 }

  mwApStationStatsLRUSwapCounter  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes LRU Swap Count"
    ::= { mwApStationStatsEntry   31 }

  mwApStationStatsTxFailedHwRetryExceeded  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Tx Failed Count by Hardware Retry Exceed"
    ::= { mwApStationStatsEntry   32 }

  mwApStationStatsSUBeamFormerSupp  OBJECT-TYPE
    SYNTAX MwlOnOffSwitch
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes SU Beamformer support"
    ::= { mwApStationStatsEntry   38 }

  mwApStationStatsSUBeamFormeeSupp  OBJECT-TYPE
    SYNTAX MwlOnOffSwitch
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes SU Beamformee support"
    ::= { mwApStationStatsEntry   39 }

  mwApStationStatsSoundingFrameCount  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes SU/MU Sounding Frame Count"
    ::= { mwApStationStatsEntry   40 }

  mwApStationStatsStationIPv4Address  OBJECT-TYPE
    SYNTAX IpAddress
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Station IP Address"
    ::= { mwApStationStatsEntry   41 }

  mwApStationStatsMUBeamFormeeSupp  OBJECT-TYPE
    SYNTAX MwlOnOffSwitch
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes MU Beamformee support"
    ::= { mwApStationStatsEntry   42 }

  mwCacApStatsTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF MwCacApStatsEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
         "This object describes Call Admission Control AP Statistics "
    ::= { mwGlobalStatistics 8 }

  mwCacApStatsEntry  OBJECT-TYPE
    SYNTAX MwCacApStatsEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
         "This object describes Call Admission Control AP Statistics "
    INDEX {  mwCacApStatsTableIndex  }
    ::= { mwCacApStatsTable 1 }

  MwCacApStatsEntry  ::=  SEQUENCE { 
       mwCacApStatsTableIndex                                      Integer32, 
       mwCacApStatsNmsApNodeId                                     Integer32,
       mwCacApStatsCurrentCalls                                    Unsigned32,
       mwCacApStatsRejectedCalls                                   Unsigned32 
  }
   
   
  mwCacApStatsTableIndex  OBJECT-TYPE
    SYNTAX Integer32 
    MAX-ACCESS not-accessible 
    STATUS     current
    DESCRIPTION
         "The index value of the  table "
    ::= { mwCacApStatsEntry 1 }

  mwCacApStatsNmsApNodeId  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes AP ID"
    ::= { mwCacApStatsEntry    2 }

  mwCacApStatsCurrentCalls  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Current Calls"
    ::= { mwCacApStatsEntry    3 }

  mwCacApStatsRejectedCalls  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Cumulative Rejected Calls"
    ::= { mwCacApStatsEntry    4 }

  mwCacBssStatsTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF MwCacBssStatsEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
         "This object describes Call Admission Control BSS Statistics "
    ::= { mwGlobalStatistics 9 }

  mwCacBssStatsEntry  OBJECT-TYPE
    SYNTAX MwCacBssStatsEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
         "This object describes Call Admission Control BSS Statistics "
    INDEX {  mwCacBssStatsTableIndex  }
    ::= { mwCacBssStatsTable 1 }

  MwCacBssStatsEntry  ::=  SEQUENCE { 
       mwCacBssStatsTableIndex                                     Integer32, 
       mwCacBssStatsBssId                                          MacAddress,
       mwCacBssStatsCurrentCalls                                   Unsigned32,
       mwCacBssStatsRejectedCalls                                  Unsigned32 
  }
   
   
  mwCacBssStatsTableIndex  OBJECT-TYPE
    SYNTAX Integer32 
    MAX-ACCESS not-accessible 
    STATUS     current
    DESCRIPTION
         "The index value of the  table "
    ::= { mwCacBssStatsEntry 1 }

  mwCacBssStatsBssId  OBJECT-TYPE
    SYNTAX MacAddress
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes BSSID"
    ::= { mwCacBssStatsEntry    2 }

  mwCacBssStatsCurrentCalls  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Current Calls"
    ::= { mwCacBssStatsEntry    3 }

  mwCacBssStatsRejectedCalls  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Cumulative Rejected Calls"
    ::= { mwCacBssStatsEntry    4 }

  mwRf6DiagStatsTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF MwRf6DiagStatsEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
         "This object describes AP300 Diagnostic Statistics "
    ::= { mwGlobalStatistics 10 }

  mwRf6DiagStatsEntry  OBJECT-TYPE
    SYNTAX MwRf6DiagStatsEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
         "This object describes AP300 Diagnostic Statistics "
    INDEX {  mwRf6DiagStatsTableIndex  }
    ::= { mwRf6DiagStatsTable 1 }

  MwRf6DiagStatsEntry  ::=  SEQUENCE { 
       mwRf6DiagStatsTableIndex                                    Integer32, 
       mwRf6DiagStatsNodeId                                        Unsigned32,
       mwRf6DiagStatsIfIndex                                       Integer32,
       mwRf6DiagStatsNodeName                                      DisplayString,
       mwRf6DiagStatsRxEolINTs                                     Counter64,
       mwRf6DiagStatsTxTimeoutINTs                                 Counter64,
       mwRf6DiagStatsRxOverrunINTs                                 Counter64,
       mwRf6DiagStatsTxUnderrunINTs                                Counter64,
       mwRf6DiagStatsBeaconMissCount                               Counter64,
       mwRf6DiagStatsFatalHwErrorINTs                              Counter64,
       mwRf6DiagStatsTotalTidResetCnt                              Counter64,
       mwRf6DiagStatsIsSlamTxNoAckAddr                             Counter64,
       mwRf6DiagStatsRadioResetTPScale                             Counter64,
       mwRf6DiagStatsRadioResetRxChain                             Counter64,
       mwRf6DiagStatsTxAggrDataUnderrun                            Counter64,
       mwRf6DiagStatsTotalRadioResetCnt                            Counter64,
       mwRf6DiagStatsNoSkBufferForBeacon                           Counter64,
       mwRf6DiagStatsRxPacketsBadVersion                           Counter64,
       mwRf6DiagStatsRadioResetCalibrate                           Counter64,
       mwRf6DiagStatsTxFailedByNoTxBuffer                          Counter64,
       mwRf6DiagStatsRadioResetNoTxFrames                          Counter64,
       mwRf6DiagStatsBeaconBufferNullCount                         Counter64,
       mwRf6DiagStatsRadioResetBeaconStuck                         Counter64,
       mwRf6DiagStatsTxFailedByFIFOUnderrun                        Counter64,
       mwRf6DiagStatsRadioResetFatalTasklet                        Counter64,
       mwRf6DiagStatsRadioResetRxornTasklet                        Counter64,
       mwRf6DiagStatsTxAggrDelimiterUnderrun                       Counter64,
       mwRf6DiagStatsCarrierSenseTimeoutINTs                       Counter64,
       mwRf6DiagStatsRadioResetTxAntennaSwitch                     Counter64,
       mwRf6DiagStatsTxAggrDescriptorConfigError                   Counter64,
       mwRf6DiagStatsRowStatus                                     RowStatus 
  }
   
   
  mwRf6DiagStatsTableIndex  OBJECT-TYPE
    SYNTAX Integer32 
    MAX-ACCESS not-accessible 
    STATUS     current
    DESCRIPTION
         "The index value of the  table "
    ::= { mwRf6DiagStatsEntry 1 }

  mwRf6DiagStatsNodeId  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes AP ID"
    ::= { mwRf6DiagStatsEntry    2 }

  mwRf6DiagStatsIfIndex  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Interface Index"
    ::= { mwRf6DiagStatsEntry    3 }

  mwRf6DiagStatsNodeName  OBJECT-TYPE
    SYNTAX DisplayString
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes AP Name"
    ::= { mwRf6DiagStatsEntry    4 }

  mwRf6DiagStatsFatalHwErrorINTs  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Fatal Hardware Interrupt Count"
    ::= { mwRf6DiagStatsEntry    5 }

  mwRf6DiagStatsBeaconMissCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Beacon Miss Count"
    ::= { mwRf6DiagStatsEntry    6 }

  mwRf6DiagStatsBeaconBufferNullCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Beacon Buffer Null Count"
    ::= { mwRf6DiagStatsEntry    7 }

  mwRf6DiagStatsNoSkBufferForBeacon  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes No Sk Buffer Avail Count for Beacon"
    ::= { mwRf6DiagStatsEntry    8 }

  mwRf6DiagStatsTxUnderrunINTs  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx Underrun Interrupt Count"
    ::= { mwRf6DiagStatsEntry    9 }

  mwRf6DiagStatsTxTimeoutINTs  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx Timeout Interrupt Count"
    ::= { mwRf6DiagStatsEntry   10 }

  mwRf6DiagStatsTxFailedByNoTxBuffer  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx Failed Count by no Tx Buffer"
    ::= { mwRf6DiagStatsEntry   11 }

  mwRf6DiagStatsTxFailedByFIFOUnderrun  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx Failed Count by FIFO Underrun"
    ::= { mwRf6DiagStatsEntry   12 }

  mwRf6DiagStatsTxAggrDescriptorConfigError  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx Aggregate Descriptor Config Error"
    ::= { mwRf6DiagStatsEntry   13 }

  mwRf6DiagStatsTxAggrDataUnderrun  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx Aggregate Data Underrun Count"
    ::= { mwRf6DiagStatsEntry   14 }

  mwRf6DiagStatsTxAggrDelimiterUnderrun  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx Aggregate Delimiter Underrun Count"
    ::= { mwRf6DiagStatsEntry   15 }

  mwRf6DiagStatsTotalTidResetCnt  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Total TID Reset Count"
    ::= { mwRf6DiagStatsEntry   16 }

  mwRf6DiagStatsCarrierSenseTimeoutINTs  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Carrier Sense Timeout Count"
    ::= { mwRf6DiagStatsEntry   17 }

  mwRf6DiagStatsIsSlamTxNoAckAddr  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx No Ack Addr Count"
    ::= { mwRf6DiagStatsEntry   18 }

  mwRf6DiagStatsRxOverrunINTs  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Rx Overrun Interrupt Count"
    ::= { mwRf6DiagStatsEntry   19 }

  mwRf6DiagStatsRxEolINTs  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Rx EOL Interrupt Count"
    ::= { mwRf6DiagStatsEntry   20 }

  mwRf6DiagStatsRxPacketsBadVersion  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Rx Packet Count with Bad Version"
    ::= { mwRf6DiagStatsEntry   21 }

  mwRf6DiagStatsRadioResetBeaconStuck  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Radio Reset Count by BeaconStuck"
    ::= { mwRf6DiagStatsEntry   22 }

  mwRf6DiagStatsRadioResetTPScale  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Radio Reset Count by TP Scale"
    ::= { mwRf6DiagStatsEntry   23 }

  mwRf6DiagStatsRadioResetFatalTasklet  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Radio Reset Count by Fatal Tasklet"
    ::= { mwRf6DiagStatsEntry   24 }

  mwRf6DiagStatsRadioResetRxornTasklet  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Radio Reset Count by Rx Orn Tasklet"
    ::= { mwRf6DiagStatsEntry   25 }

  mwRf6DiagStatsRadioResetCalibrate  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Radio Reset Count by Calibrate"
    ::= { mwRf6DiagStatsEntry   26 }

  mwRf6DiagStatsRadioResetTxAntennaSwitch  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Radio Reset Count by Tx ANT Switch"
    ::= { mwRf6DiagStatsEntry   27 }

  mwRf6DiagStatsRadioResetRxChain  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Radio Reset Count by Rx Chain"
    ::= { mwRf6DiagStatsEntry   28 }

  mwRf6DiagStatsRadioResetNoTxFrames  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Radio Reset Count by No Tx Frame"
    ::= { mwRf6DiagStatsEntry   29 }

  mwRf6DiagStatsTotalRadioResetCnt  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Total Radio Reset Count"
    ::= { mwRf6DiagStatsEntry   30 }

  mwRf6DiagStatsRowStatus  OBJECT-TYPE
    SYNTAX RowStatus
    MAX-ACCESS read-create
    STATUS     current
    DESCRIPTION
         "This object is used to create and delete rows in the table"
    ::= { mwRf6DiagStatsEntry 31 }

  mwAp1000DiagStatsTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF MwAp1000DiagStatsEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
         "This object describes AP1000 Diagnostic Statistics "
    ::= { mwGlobalStatistics 11 }

  mwAp1000DiagStatsEntry  OBJECT-TYPE
    SYNTAX MwAp1000DiagStatsEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
         "This object describes AP1000 Diagnostic Statistics "
    INDEX {  mwAp1000DiagStatsTableIndex  }
    ::= { mwAp1000DiagStatsTable 1 }

  MwAp1000DiagStatsEntry  ::=  SEQUENCE { 
       mwAp1000DiagStatsTableIndex                                 Integer32, 
       mwAp1000DiagStatsDmaDE                                      Counter64,
       mwAp1000DiagStatsDmaDA                                      Counter64,
       mwAp1000DiagStatsNodeId                                     Unsigned32,
       mwAp1000DiagStatsTxDrop                                     Counter64,
       mwAp1000DiagStatsIfIndex                                    Integer32,
       mwAp1000DiagStatsRxNoBuf                                    Counter64,
       mwAp1000DiagStatsTxError                                    Counter64,
       mwAp1000DiagStatsRxStuck                                    Counter64,
       mwAp1000DiagStatsRxError                                    Counter64,
       mwAp1000DiagStatsNodeName                                   DisplayString,
       mwAp1000DiagStatsRxEolINTs                                  Counter64,
       mwAp1000DiagStatsTxChanRej                                  Counter64,
       mwAp1000DiagStatsTxTplunfl                                  Counter64,
       mwAp1000DiagStatsTxFfiFull                                  Counter64,
       mwAp1000DiagStatsRxCgprqrm                                  Counter64,
       mwAp1000DiagStatsTxPhyError                                 Counter64,
       mwAp1000DiagStatsBcnTxFailed                                Counter64,
       mwAp1000DiagStatsTxqOverflow                                Counter64,
       mwAp1000DiagStatsPmgOverflow                                Counter64,
       mwAp1000DiagStatsTxTimeoutINTs                              Counter64,
       mwAp1000DiagStatsRxOverrunINTs                              Counter64,
       mwAp1000DiagStatsTxUnderrunINTs                             Counter64,
       mwAp1000DiagStatsBeaconMissCount                            Counter64,
       mwAp1000DiagStatsFatalHwErrorINTs                           Counter64,
       mwAp1000DiagStatsTotalTidResetCnt                           Counter64,
       mwAp1000DiagStatsTotalRadioResetCnt                         Counter64,
       mwAp1000DiagStatsRxPacketsBadVersion                        Counter64,
       mwAp1000DiagStatsTxFailedByNoTxBuffer                       Counter64,
       mwAp1000DiagStatsTxFailedByFIFOUnderrun                     Counter64,
       mwAp1000DiagStatsRowStatus                                  RowStatus 
  }
   
   
  mwAp1000DiagStatsTableIndex  OBJECT-TYPE
    SYNTAX Integer32 
    MAX-ACCESS not-accessible 
    STATUS     current
    DESCRIPTION
         "The index value of the  table "
    ::= { mwAp1000DiagStatsEntry 1 }

  mwAp1000DiagStatsNodeId  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes AP ID"
    ::= { mwAp1000DiagStatsEntry    2 }

  mwAp1000DiagStatsIfIndex  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Interface Index"
    ::= { mwAp1000DiagStatsEntry    3 }

  mwAp1000DiagStatsNodeName  OBJECT-TYPE
    SYNTAX DisplayString
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes AP Name"
    ::= { mwAp1000DiagStatsEntry    4 }

  mwAp1000DiagStatsFatalHwErrorINTs  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Fatal Hardware Interrupt Count"
    ::= { mwAp1000DiagStatsEntry    5 }

  mwAp1000DiagStatsBeaconMissCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Beacon Miss Count"
    ::= { mwAp1000DiagStatsEntry    6 }

  mwAp1000DiagStatsTxUnderrunINTs  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx Underrun Interrupt Count"
    ::= { mwAp1000DiagStatsEntry    7 }

  mwAp1000DiagStatsTxTimeoutINTs  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx Timeout Interrupt Count"
    ::= { mwAp1000DiagStatsEntry    8 }

  mwAp1000DiagStatsTxFailedByNoTxBuffer  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx Failed Count by no Tx Buffer"
    ::= { mwAp1000DiagStatsEntry    9 }

  mwAp1000DiagStatsTxFailedByFIFOUnderrun  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx Failed Count by FIFO Underrun"
    ::= { mwAp1000DiagStatsEntry   10 }

  mwAp1000DiagStatsTotalTidResetCnt  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Total TID Reset Count"
    ::= { mwAp1000DiagStatsEntry   11 }

  mwAp1000DiagStatsRxOverrunINTs  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Rx Overrun Interrupt Count"
    ::= { mwAp1000DiagStatsEntry   12 }

  mwAp1000DiagStatsRxEolINTs  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Rx EOL Interrupt Count"
    ::= { mwAp1000DiagStatsEntry   13 }

  mwAp1000DiagStatsRxPacketsBadVersion  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Rx Packet Count with Bad Version"
    ::= { mwAp1000DiagStatsEntry   14 }

  mwAp1000DiagStatsTotalRadioResetCnt  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Total Radio Reset Count"
    ::= { mwAp1000DiagStatsEntry   15 }

  mwAp1000DiagStatsTxPhyError  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx Physical Error Count"
    ::= { mwAp1000DiagStatsEntry   16 }

  mwAp1000DiagStatsRxNoBuf  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Rx Out of Buffer Errors"
    ::= { mwAp1000DiagStatsEntry   17 }

  mwAp1000DiagStatsTxChanRej  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx Frames Suppressed due to Channel Rejection"
    ::= { mwAp1000DiagStatsEntry   18 }

  mwAp1000DiagStatsDmaDE  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx/Rx Dma Descriptor Errors"
    ::= { mwAp1000DiagStatsEntry   19 }

  mwAp1000DiagStatsDmaDA  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx/Rx Dma Data Errors"
    ::= { mwAp1000DiagStatsEntry   20 }

  mwAp1000DiagStatsTxTplunfl  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx Template Underflows"
    ::= { mwAp1000DiagStatsEntry   21 }

  mwAp1000DiagStatsBcnTxFailed  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Failed to Tx Beacon Frame"
    ::= { mwAp1000DiagStatsEntry   22 }

  mwAp1000DiagStatsTxError  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx Data Errors"
    ::= { mwAp1000DiagStatsEntry   23 }

  mwAp1000DiagStatsRxStuck  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Rx Watchdog Bailout for Stuck State"
    ::= { mwAp1000DiagStatsEntry   24 }

  mwAp1000DiagStatsRxError  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Rx Data Errors"
    ::= { mwAp1000DiagStatsEntry   25 }

  mwAp1000DiagStatsTxFfiFull  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Release Ampdu due to Insufficient Tx Descriptors"
    ::= { mwAp1000DiagStatsEntry   26 }

  mwAp1000DiagStatsTxDrop  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Ampdu Tx Dropped Packets"
    ::= { mwAp1000DiagStatsEntry   27 }

  mwAp1000DiagStatsTxqOverflow  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes TxQ Overflows Count"
    ::= { mwAp1000DiagStatsEntry   28 }

  mwAp1000DiagStatsPmgOverflow  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes PmQ Overflows Count"
    ::= { mwAp1000DiagStatsEntry   29 }

  mwAp1000DiagStatsRxCgprqrm  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Rx Probe Request Queue Overflow in AP"
    ::= { mwAp1000DiagStatsEntry   30 }

  mwAp1000DiagStatsRowStatus  OBJECT-TYPE
    SYNTAX RowStatus
    MAX-ACCESS read-create
    STATUS     current
    DESCRIPTION
         "This object is used to create and delete rows in the table"
    ::= { mwAp1000DiagStatsEntry 31 }

  mwAp400DiagStatsTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF MwAp400DiagStatsEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
         "This object describes AP400 Diagnostic Statistics "
    ::= { mwGlobalStatistics 12 }

  mwAp400DiagStatsEntry  OBJECT-TYPE
    SYNTAX MwAp400DiagStatsEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
         "This object describes AP400 Diagnostic Statistics "
    INDEX {  mwAp400DiagStatsTableIndex  }
    ::= { mwAp400DiagStatsTable 1 }

  MwAp400DiagStatsEntry  ::=  SEQUENCE { 
       mwAp400DiagStatsTableIndex                                  Integer32, 
       mwAp400DiagStatsNodeId                                      Unsigned32,
       mwAp400DiagStatsIfIndex                                     Integer32,
       mwAp400DiagStatsNodeName                                    DisplayString,
       mwAp400DiagStatsRxEolINTs                                   Counter64,
       mwAp400DiagStatsRxPhyError                                  Counter64,
       mwAp400DiagStatsTxTimeoutINTs                               Counter64,
       mwAp400DiagStatsRxOverrunINTs                               Counter64,
       mwAp400DiagStatsTxUnderrunINTs                              Counter64,
       mwAp400DiagStatsBeaconMissCount                             Counter64,
       mwAp400DiagStatsFatalHwErrorINTs                            Counter64,
       mwAp400DiagStatsTotalTidResetCnt                            Counter64,
       mwAp400DiagStatsIsSlamTxNoAckAddr                           Counter64,
       mwAp400DiagStatsRadioResetTPScale                           Counter64,
       mwAp400DiagStatsRadioResetRxChain                           Counter64,
       mwAp400DiagStatsTxAggrDataUnderrun                          Counter64,
       mwAp400DiagStatsTotalRadioResetCnt                          Counter64,
       mwAp400DiagStatsNoSkBufferForBeacon                         Counter64,
       mwAp400DiagStatsRxPacketsBadVersion                         Counter64,
       mwAp400DiagStatsRadioResetCalibrate                         Counter64,
       mwAp400DiagStatsTxFailedByNoTxBuffer                        Counter64,
       mwAp400DiagStatsRadioResetNoTxFrames                        Counter64,
       mwAp400DiagStatsBeaconBufferNullCount                       Counter64,
       mwAp400DiagStatsRadioResetBeaconStuck                       Counter64,
       mwAp400DiagStatsTxFailedByFIFOUnderrun                      Counter64,
       mwAp400DiagStatsRadioResetFatalTasklet                      Counter64,
       mwAp400DiagStatsRadioResetRxornTasklet                      Counter64,
       mwAp400DiagStatsTxAggrDelimiterUnderrun                     Counter64,
       mwAp400DiagStatsCarrierSenseTimeoutINTs                     Counter64,
       mwAp400DiagStatsRadioResetTxAntennaSwitch                   Counter64,
       mwAp400DiagStatsTxAggrDescriptorConfigError                 Counter64,
       mwAp400DiagStatsRowStatus                                   RowStatus 
  }
   
   
  mwAp400DiagStatsTableIndex  OBJECT-TYPE
    SYNTAX Integer32 
    MAX-ACCESS not-accessible 
    STATUS     current
    DESCRIPTION
         "The index value of the  table "
    ::= { mwAp400DiagStatsEntry 1 }

  mwAp400DiagStatsNodeId  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes AP ID"
    ::= { mwAp400DiagStatsEntry    2 }

  mwAp400DiagStatsIfIndex  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Interface Index"
    ::= { mwAp400DiagStatsEntry    3 }

  mwAp400DiagStatsNodeName  OBJECT-TYPE
    SYNTAX DisplayString
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes AP Name"
    ::= { mwAp400DiagStatsEntry    4 }

  mwAp400DiagStatsFatalHwErrorINTs  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Fatal Hardware Interrupt Count"
    ::= { mwAp400DiagStatsEntry    5 }

  mwAp400DiagStatsBeaconMissCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Beacon Miss Count"
    ::= { mwAp400DiagStatsEntry    6 }

  mwAp400DiagStatsBeaconBufferNullCount  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Beacon Buffer Null Count"
    ::= { mwAp400DiagStatsEntry    7 }

  mwAp400DiagStatsNoSkBufferForBeacon  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes No Sk Buffer Avail Count for Beacon"
    ::= { mwAp400DiagStatsEntry    8 }

  mwAp400DiagStatsTxUnderrunINTs  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx Underrun Interrupt Count"
    ::= { mwAp400DiagStatsEntry    9 }

  mwAp400DiagStatsTxTimeoutINTs  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx Timeout Interrupt Count"
    ::= { mwAp400DiagStatsEntry   10 }

  mwAp400DiagStatsTxFailedByNoTxBuffer  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx Failed Count by no Tx Buffer"
    ::= { mwAp400DiagStatsEntry   11 }

  mwAp400DiagStatsTxFailedByFIFOUnderrun  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx Failed Count by FIFO Underrun"
    ::= { mwAp400DiagStatsEntry   12 }

  mwAp400DiagStatsTxAggrDescriptorConfigError  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx Aggregate Descriptor Config Error"
    ::= { mwAp400DiagStatsEntry   13 }

  mwAp400DiagStatsTxAggrDataUnderrun  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx Aggregate Data Underrun Count"
    ::= { mwAp400DiagStatsEntry   14 }

  mwAp400DiagStatsTxAggrDelimiterUnderrun  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx Aggregate Delimiter Underrun Count"
    ::= { mwAp400DiagStatsEntry   15 }

  mwAp400DiagStatsTotalTidResetCnt  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Total TID Reset Count"
    ::= { mwAp400DiagStatsEntry   16 }

  mwAp400DiagStatsCarrierSenseTimeoutINTs  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Carrier Sense Timeout Count"
    ::= { mwAp400DiagStatsEntry   17 }

  mwAp400DiagStatsIsSlamTxNoAckAddr  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Tx No Ack Addr Count"
    ::= { mwAp400DiagStatsEntry   18 }

  mwAp400DiagStatsRxOverrunINTs  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Rx Overrun Interrupt Count"
    ::= { mwAp400DiagStatsEntry   19 }

  mwAp400DiagStatsRxEolINTs  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Rx EOL Interrupt Count"
    ::= { mwAp400DiagStatsEntry   20 }

  mwAp400DiagStatsRxPacketsBadVersion  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Rx Packet Count with Bad Version"
    ::= { mwAp400DiagStatsEntry   21 }

  mwAp400DiagStatsRadioResetBeaconStuck  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Radio Reset Count by BeaconStuck"
    ::= { mwAp400DiagStatsEntry   22 }

  mwAp400DiagStatsRadioResetTPScale  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Radio Reset Count by TP Scale"
    ::= { mwAp400DiagStatsEntry   23 }

  mwAp400DiagStatsRadioResetFatalTasklet  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Radio Reset Count by Fatal Tasklet"
    ::= { mwAp400DiagStatsEntry   24 }

  mwAp400DiagStatsRadioResetRxornTasklet  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Radio Reset Count by Rx Orn Tasklet"
    ::= { mwAp400DiagStatsEntry   25 }

  mwAp400DiagStatsRadioResetCalibrate  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Radio Reset Count by Calibrate"
    ::= { mwAp400DiagStatsEntry   26 }

  mwAp400DiagStatsRadioResetTxAntennaSwitch  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Radio Reset Count by Tx ANT Switch"
    ::= { mwAp400DiagStatsEntry   27 }

  mwAp400DiagStatsRadioResetRxChain  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Radio Reset Count by Rx Chain"
    ::= { mwAp400DiagStatsEntry   28 }

  mwAp400DiagStatsRadioResetNoTxFrames  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Radio Reset Count by No Tx Frame"
    ::= { mwAp400DiagStatsEntry   29 }

  mwAp400DiagStatsTotalRadioResetCnt  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Total Radio Reset Count"
    ::= { mwAp400DiagStatsEntry   30 }

  mwAp400DiagStatsRxPhyError  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Rx Phy Error Count"
    ::= { mwAp400DiagStatsEntry   31 }

  mwAp400DiagStatsRowStatus  OBJECT-TYPE
    SYNTAX RowStatus
    MAX-ACCESS read-create
    STATUS     current
    DESCRIPTION
         "This object is used to create and delete rows in the table"
    ::= { mwAp400DiagStatsEntry 32 }

  mwSystemGeneralName  OBJECT-TYPE
    SYNTAX DisplayString
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Controller's Hostname"
    ::= { mwSystemGeneral    1 }

  mwSystemGeneralModel  OBJECT-TYPE
    SYNTAX DisplayString
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Controller's Model Name"
    ::= { mwSystemGeneral    2 }

  mwSystemGeneralVersion  OBJECT-TYPE
    SYNTAX DisplayString
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Controller's Version"
    ::= { mwSystemGeneral    3 }

  mwSystemGeneralUptime  OBJECT-TYPE
    SYNTAX TimeTicks
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Controller's Uptime"
    ::= { mwSystemGeneral    4 }

  mwSystemGeneralMaxApLimit  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Access Point Limit"
    ::= { mwSystemGeneral    5 }

  mwSystemGeneralMaxClientLimit  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Client(s)"
    ::= { mwSystemGeneral    6 }

  mwSystemGeneralInstalledApLicenses  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Installed Access Point License Count"
    ::= { mwSystemGeneral    7 }

  mwSystemGeneralInUseApLicenses  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes In-Use Access Point License Count"
    ::= { mwSystemGeneral    8 }

  mwSystemGeneralTotalOnlineAps  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Online Access Point Count"
    ::= { mwSystemGeneral    9 }

  mwSystemGeneralTotalOfflineAps  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Offline Access Point Count"
    ::= { mwSystemGeneral   10 }

  mwSystemGeneralTotalWirelessStations  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Wireless Station Count"
    ::= { mwSystemGeneral   11 }

  mwSystemGeneralTotal24GStations  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes 2.4GHz Station Count"
    ::= { mwSystemGeneral   12 }

  mwSystemGeneralTotal5GStations  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes 5GHz Station Count"
    ::= { mwSystemGeneral   13 }

  mwSystemGeneralTotalWiredStations  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Wired Station Count"
    ::= { mwSystemGeneral   14 }

  mwSystemGeneralTotalAlarms  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Alarm Count"
    ::= { mwSystemGeneral   15 }

  mwSystemGeneralTotalCritAlarms  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Critical Alarm Count"
    ::= { mwSystemGeneral   16 }

  mwSystemGeneralTotalMajorAlarms  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Major Alarm Count"
    ::= { mwSystemGeneral   17 }

  mwSystemGeneralTotalMinorAlarms  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Minor Alarm Count"
    ::= { mwSystemGeneral   18 }

  mwSystemGeneralTotalRogueAps  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Rogue Access Point Count"
    ::= { mwSystemGeneral   19 }

  mwSystemGeneralTotalRogueStations  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Rogue Station Count"
    ::= { mwSystemGeneral   20 }

  mwSystemGeneralTotalRogueUnknownDevices  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Unknown Rogue Device Count"
    ::= { mwSystemGeneral   21 }

  mwSystemGeneralTotalClearEssProfiles  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Clear ESS Profile Count"
    ::= { mwSystemGeneral   22 }

  mwSystemGeneralTotalSecureEssProfiles  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Secure ESS Profile Count"
    ::= { mwSystemGeneral   23 }

  mwSystemGeneralTotalCaptivePortalEssProfiles  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Captive Portal ESS Profile Count"
    ::= { mwSystemGeneral   24 }

  mwSystemResourceCpuUsagePercentageUser  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes CPU Usage User[%]"
    ::= { mwSystemResource    1 }

  mwSystemResourceCpuUsagePercentageSystem  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes CPU Usage System[%]"
    ::= { mwSystemResource    2 }

  mwSystemResourceCpuUsagePercentageIdle  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes CPU Usage Idle[%]"
    ::= { mwSystemResource    3 }

  mwSystemResourceMemoryTotalSize  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Memory Size Total[K]"
    ::= { mwSystemResource    4 }

  mwSystemResourceMemoryUsedSize  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Memory Size Used[K]"
    ::= { mwSystemResource    5 }

  mwSystemResourceMemoryFreeSize  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Memory Size Free[K]"
    ::= { mwSystemResource    6 }

  mwSystemResourceRootFileSystemTotalSize  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Root File System Size Total[K]"
    ::= { mwSystemResource    7 }

  mwSystemResourceRootFileSystemUsedSize  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Root File System Size Used[K]"
    ::= { mwSystemResource    8 }

  mwSystemResourceRootFileSystemAvailSize  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Root File System Size Available[K]"
    ::= { mwSystemResource    9 }

  mwSystemResourceRootFileSystemUsagePercentage  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Root File System Usage[%]"
    ::= { mwSystemResource   10 }

  mwSystemResourceHighCpuUsagePercentage  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes High CPU Usage [%]"
    ::= { mwSystemResource   11 }

  mwSystemResourceAvgCpuUsagePercentage  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Average CPU Usage [%]"
    ::= { mwSystemResource   12 }

  mwSystemResourceCurCpuUsagePercentage  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Current CPU Usage [%]"
    ::= { mwSystemResource   13 }

  mwSystemResourceHighMemUsagePercentage  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes High Memory Usage [%]"
    ::= { mwSystemResource   14 }

  mwSystemResourceAvgMemUsagePercentage  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Average Memory Usage [%]"
    ::= { mwSystemResource   15 }

  mwSystemResourceCurMemUsagePercentage  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Current Memory Usage [%]"
    ::= { mwSystemResource   16 }

  mwSystemStationTotal11aStations  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes 802.11a Station Count"
    ::= { mwSystemStation    1 }

  mwSystemStationTotal11an1Stations  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes 802.11an1stream Station Count"
    ::= { mwSystemStation    2 }

  mwSystemStationTotal11an2Stations  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes 802.11an2stream Station Count"
    ::= { mwSystemStation    3 }

  mwSystemStationTotal11an3Stations  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes 802.11an3stream Station Count"
    ::= { mwSystemStation    4 }

  mwSystemStationTotal11bStations  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes 802.11b Station Count"
    ::= { mwSystemStation    5 }

  mwSystemStationTotal11bgStations  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes 802.11bg Station Count"
    ::= { mwSystemStation    6 }

  mwSystemStationTotal11gn1Stations  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes 802.11gn1stream Station Count"
    ::= { mwSystemStation    7 }

  mwSystemStationTotal11gn2Stations  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes 802.11gn2stream Station Count"
    ::= { mwSystemStation    8 }

  mwSystemStationTotal11gn3Stations  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes 802.11gn3stream Station Count"
    ::= { mwSystemStation    9 }

  mwSystemStationTotalDataStations  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Associated Data Station Count"
    ::= { mwSystemStation   10 }

  mwSystemStationTotalPhoneStations  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Associated Phone Station Count"
    ::= { mwSystemStation   11 }

  mwSystemStationTotalWiredStations  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Associated Wired Station Count"
    ::= { mwSystemStation   12 }

  mwSystemStationTotal11ac1Stations  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes 802.11ac1stream Station Count"
    ::= { mwSystemStation   13 }

  mwSystemStationTotal11ac2Stations  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes 802.11ac2stream Station Count"
    ::= { mwSystemStation   14 }

  mwSystemStationTotal11ac3Stations  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes 802.11ac3stream Station Count"
    ::= { mwSystemStation   15 }

  mwSystemStationUnknown  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS  read-only 
    STATUS     current
    DESCRIPTION
         "This object describes Unknown rf band station count"
    ::= { mwSystemStation   16 }

  mwSystemThruputTotalControllerRxBytes  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Controller Total Rx Bytes"
    ::= { mwSystemThruput    1 }

  mwSystemThruputTotalControllerTxBytes  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Controller Total Tx Bytes"
    ::= { mwSystemThruput    2 }

  mwSystemThruputControllerRxThroughput  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Controller Rx Throughput[bps]"
    ::= { mwSystemThruput    3 }

  mwSystemThruputControllerTxThroughput  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Controller Tx Throughput[bps]"
    ::= { mwSystemThruput    4 }

  mwSystemThruputTotalWlanSystemRxBytes  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes WLAN Total Rx Bytes"
    ::= { mwSystemThruput    5 }

  mwSystemThruputTotalWlanSystemTxBytes  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes WLAN Total Tx Bytes"
    ::= { mwSystemThruput    6 }

  mwSystemThruputWlanRxThroughput  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes WLAN Rx Throughput[bps]"
    ::= { mwSystemThruput    7 }

  mwSystemThruputWlanTxThroughput  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes WLAN Tx Throughput[bps]"
    ::= { mwSystemThruput    8 }

  mwPerEss80211StatsTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF MwPerEss80211StatsEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
         "This object describes ESS Statistics "
    ::= { mwGlobalStatistics 17 }

  mwPerEss80211StatsEntry  OBJECT-TYPE
    SYNTAX MwPerEss80211StatsEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
         "This object describes ESS Statistics "
    INDEX {  mwPerEss80211StatsTableIndex  }
    ::= { mwPerEss80211StatsTable 1 }

  MwPerEss80211StatsEntry  ::=  SEQUENCE { 
       mwPerEss80211StatsTableIndex                                Integer32, 
       mwPerEss80211StatsEssId                                     DisplayString(SIZE (0..32)),
       mwPerEss80211StatsBssid                                     MacAddress,
       mwPerEss80211StatsNodeId                                    Unsigned32,
       mwPerEss80211StatsIfIndex                                   Integer32,
       mwPerEss80211StatsRxThroughput                              Unsigned32,
       mwPerEss80211StatsTxThroughput                              Unsigned32,
       mwPerEss80211StatsTotalRxBytes                              Counter64,
       mwPerEss80211StatsTotalTxBytes                              Counter64,
       mwPerEss80211StatsUnknownStation                            Integer32,
       mwPerEss80211StatsTotalThroughput                           Unsigned32,
       mwPerEss80211StatsTotalVideoRxBytes                         Counter64,
       mwPerEss80211StatsTotalVideoTxBytes                         Counter64,
       mwPerEss80211StatsTotalVoiceRxBytes                         Counter64,
       mwPerEss80211StatsTotalVoiceTxBytes                         Counter64,
       mwPerEss80211StatsTotalUnicastRxBytes                       Counter64,
       mwPerEss80211StatsTotalUnicastTxBytes                       Counter64,
       mwPerEss80211StatsAssociatedStationNum                      Integer32,
       mwPerEss80211StatsTotalBestEffortRxBytes                    Counter64,
       mwPerEss80211StatsTotalBestEffortTxBytes                    Counter64,
       mwPerEss80211StatsTotalBackgroundRxBytes                    Counter64,
       mwPerEss80211StatsTotalBackgroundTxBytes                    Counter64,
       mwPerEss80211StatsTotalBroadcastDataBytes                   Counter64,
       mwPerEss80211StatsTotalMulticastDataBytes                   Counter64,
       mwPerEss80211StatsAssociated11bStationNum                   Integer32,
       mwPerEss80211StatsAssociated11aStationNum                   Integer32,
       mwPerEss80211StatsAssociated11bgStationNum                  Integer32,
       mwPerEss80211StatsAssociated11an1StationNum                 Integer32,
       mwPerEss80211StatsAssociated11an2StationNum                 Integer32,
       mwPerEss80211StatsAssociated11an3StationNum                 Integer32,
       mwPerEss80211StatsAssociated11ac1StationNum                 Integer32,
       mwPerEss80211StatsAssociated11ac2StationNum                 Integer32,
       mwPerEss80211StatsAssociated11ac3StationNum                 Integer32,
       mwPerEss80211StatsAssociated11bgn1StationNum                Integer32,
       mwPerEss80211StatsAssociated11bgn2StationNum                Integer32,
       mwPerEss80211StatsAssociated11bgn3StationNum                Integer32 
  }
   
   
  mwPerEss80211StatsTableIndex  OBJECT-TYPE
    SYNTAX Integer32 
    MAX-ACCESS not-accessible 
    STATUS     current
    DESCRIPTION
         "The index value of the  table "
    ::= { mwPerEss80211StatsEntry 1 }

  mwPerEss80211StatsNodeId  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes AP ID"
    ::= { mwPerEss80211StatsEntry    2 }

  mwPerEss80211StatsIfIndex  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Interface Index"
    ::= { mwPerEss80211StatsEntry    3 }

  mwPerEss80211StatsEssId  OBJECT-TYPE
    SYNTAX DisplayString(SIZE (0..32))
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes ESSID"
    ::= { mwPerEss80211StatsEntry    4 }

  mwPerEss80211StatsBssid  OBJECT-TYPE
    SYNTAX MacAddress
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes BSSID"
    ::= { mwPerEss80211StatsEntry    5 }

  mwPerEss80211StatsRxThroughput  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes ESS Rx Throughput[bps]"
    ::= { mwPerEss80211StatsEntry    6 }

  mwPerEss80211StatsTxThroughput  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes ESS Tx Throughput[bps]"
    ::= { mwPerEss80211StatsEntry    7 }

  mwPerEss80211StatsTotalThroughput  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes ESS Total Throughput[bps]"
    ::= { mwPerEss80211StatsEntry    8 }

  mwPerEss80211StatsTotalRxBytes  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Total Rx bytes Count"
    ::= { mwPerEss80211StatsEntry   11 }

  mwPerEss80211StatsTotalTxBytes  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Total Tx bytes Count"
    ::= { mwPerEss80211StatsEntry   12 }

  mwPerEss80211StatsTotalVideoRxBytes  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Total Video Rx bytes Count"
    ::= { mwPerEss80211StatsEntry   13 }

  mwPerEss80211StatsTotalVideoTxBytes  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Total Video Tx bytes Count"
    ::= { mwPerEss80211StatsEntry   14 }

  mwPerEss80211StatsTotalVoiceRxBytes  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Total Voice Rx bytes Count"
    ::= { mwPerEss80211StatsEntry   15 }

  mwPerEss80211StatsTotalVoiceTxBytes  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Total Voice Tx bytes Count"
    ::= { mwPerEss80211StatsEntry   16 }

  mwPerEss80211StatsTotalBestEffortRxBytes  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Total BestEffort Rx bytes Count"
    ::= { mwPerEss80211StatsEntry   17 }

  mwPerEss80211StatsTotalBestEffortTxBytes  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Total BestEffort Tx bytes Count"
    ::= { mwPerEss80211StatsEntry   18 }

  mwPerEss80211StatsTotalBackgroundRxBytes  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Total Background Rx bytes Count"
    ::= { mwPerEss80211StatsEntry   19 }

  mwPerEss80211StatsTotalBackgroundTxBytes  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Total Background Tx bytes Count"
    ::= { mwPerEss80211StatsEntry   20 }

  mwPerEss80211StatsTotalUnicastRxBytes  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Total Unicast Rx bytes Count"
    ::= { mwPerEss80211StatsEntry   21 }

  mwPerEss80211StatsTotalUnicastTxBytes  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Total Unicast Tx bytes Count"
    ::= { mwPerEss80211StatsEntry   22 }

  mwPerEss80211StatsTotalBroadcastDataBytes  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Total Broadcast Data bytes Count"
    ::= { mwPerEss80211StatsEntry   23 }

  mwPerEss80211StatsTotalMulticastDataBytes  OBJECT-TYPE
    SYNTAX Counter64
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Total Multicast Data bytes Count"
    ::= { mwPerEss80211StatsEntry   24 }

  mwPerEss80211StatsAssociatedStationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Associated station count"
    ::= { mwPerEss80211StatsEntry   39 }

  mwPerEss80211StatsAssociated11bStationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Associated 802.11b station count"
    ::= { mwPerEss80211StatsEntry   40 }

  mwPerEss80211StatsAssociated11bgStationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Associated 802.11bg station count"
    ::= { mwPerEss80211StatsEntry   41 }

  mwPerEss80211StatsAssociated11bgn1StationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Associated 802.11bgn1stream station count"
    ::= { mwPerEss80211StatsEntry   42 }

  mwPerEss80211StatsAssociated11bgn2StationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Associated 802.11bgn2stream station count"
    ::= { mwPerEss80211StatsEntry   43 }

  mwPerEss80211StatsAssociated11bgn3StationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Associated 802.11bgn3stream station count"
    ::= { mwPerEss80211StatsEntry   44 }

  mwPerEss80211StatsAssociated11aStationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Associated 802.11a station count"
    ::= { mwPerEss80211StatsEntry   45 }

  mwPerEss80211StatsAssociated11an1StationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Associated 802.11an1stream station count"
    ::= { mwPerEss80211StatsEntry   46 }

  mwPerEss80211StatsAssociated11an2StationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Associated 802.11an2stream station count"
    ::= { mwPerEss80211StatsEntry   47 }

  mwPerEss80211StatsAssociated11an3StationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Associated 802.11an3stream station count"
    ::= { mwPerEss80211StatsEntry   48 }

  mwPerEss80211StatsAssociated11ac1StationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Associated 802.11ac1stream station count"
    ::= { mwPerEss80211StatsEntry   49 }

  mwPerEss80211StatsAssociated11ac2StationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Associated 802.11ac2stream station count"
    ::= { mwPerEss80211StatsEntry   50 }

  mwPerEss80211StatsAssociated11ac3StationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Associated 802.11ac3stream station count"
    ::= { mwPerEss80211StatsEntry   51 }

  mwPerEss80211StatsUnknownStation  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Unknown station count"
    ::= { mwPerEss80211StatsEntry   52 }

  mwEssStatsSummaryTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF MwEssStatsSummaryEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
         "This object describes ESS Statistics Summary "
    ::= { mwGlobalStatistics 18 }

  mwEssStatsSummaryEntry  OBJECT-TYPE
    SYNTAX MwEssStatsSummaryEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
         "This object describes ESS Statistics Summary "
    INDEX {  mwEssStatsSummaryTableIndex  }
    ::= { mwEssStatsSummaryTable 1 }

  MwEssStatsSummaryEntry  ::=  SEQUENCE { 
       mwEssStatsSummaryTableIndex                                 Integer32, 
       mwEssStatsSummaryRFBand                                     MwlBandType,
       mwEssStatsSummaryEssId                                      DisplayString(SIZE (0..32)),
       mwEssStatsSummaryRadioCount                                 Integer32,
       mwEssStatsSummaryBStationNum                                Integer32,
       mwEssStatsSummaryAStationNum                                Integer32,
       mwEssStatsSummaryRxThroughput                               Unsigned32,
       mwEssStatsSummaryTxThroughput                               Unsigned32,
       mwEssStatsSummaryBGStationNum                               Integer32,
       mwEssStatsSummaryGN1StationNum                              Integer32,
       mwEssStatsSummaryGN2StationNum                              Integer32,
       mwEssStatsSummaryGN3StationNum                              Integer32,
       mwEssStatsSummaryAN1StationNum                              Integer32,
       mwEssStatsSummaryAN2StationNum                              Integer32,
       mwEssStatsSummaryAN3StationNum                              Integer32,
       mwEssStatsSummaryAC1StationNum                              Integer32,
       mwEssStatsSummaryAC2StationNum                              Integer32,
       mwEssStatsSummaryAC3StationNum                              Integer32,
       mwEssStatsSummaryTotalThroughput                            Unsigned32,
       mwEssStatsSummaryTotalStationNum                            Integer32,
       mwEssStatsSummaryUnknownStationNum                          Integer32 
  }
   
   
  mwEssStatsSummaryTableIndex  OBJECT-TYPE
    SYNTAX Integer32 
    MAX-ACCESS not-accessible 
    STATUS     current
    DESCRIPTION
         "The index value of the  table "
    ::= { mwEssStatsSummaryEntry 1 }

  mwEssStatsSummaryEssId  OBJECT-TYPE
    SYNTAX DisplayString(SIZE (0..32))
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes ESSID"
    ::= { mwEssStatsSummaryEntry    2 }

  mwEssStatsSummaryRFBand  OBJECT-TYPE
    SYNTAX MwlBandType
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
         "This object describes RF Band"
    ::= { mwEssStatsSummaryEntry    3 }

  mwEssStatsSummaryRadioCount  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Total Radio Count"
    ::= { mwEssStatsSummaryEntry    4 }

  mwEssStatsSummaryRxThroughput  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes ESS Rx Throughput[bps]"
    ::= { mwEssStatsSummaryEntry    5 }

  mwEssStatsSummaryTxThroughput  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes ESS Tx Throughput[bps]"
    ::= { mwEssStatsSummaryEntry    6 }

  mwEssStatsSummaryTotalThroughput  OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes ESS Total Throughput[bps]"
    ::= { mwEssStatsSummaryEntry    7 }

  mwEssStatsSummaryTotalStationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Associated station count"
    ::= { mwEssStatsSummaryEntry   10 }

  mwEssStatsSummaryBStationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes 802.11b station count"
    ::= { mwEssStatsSummaryEntry   11 }

  mwEssStatsSummaryBGStationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes 802.11bg station count"
    ::= { mwEssStatsSummaryEntry   12 }

  mwEssStatsSummaryGN1StationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes 802.11gn1stream station count"
    ::= { mwEssStatsSummaryEntry   13 }

  mwEssStatsSummaryGN2StationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes 802.11gn2stream station count"
    ::= { mwEssStatsSummaryEntry   14 }

  mwEssStatsSummaryGN3StationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes 802.11gn3stream station count"
    ::= { mwEssStatsSummaryEntry   15 }

  mwEssStatsSummaryAStationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes 802.11a station count"
    ::= { mwEssStatsSummaryEntry   16 }

  mwEssStatsSummaryAN1StationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes 802.11an1stream station count"
    ::= { mwEssStatsSummaryEntry   17 }

  mwEssStatsSummaryAN2StationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes 802.11an2stream station count"
    ::= { mwEssStatsSummaryEntry   18 }

  mwEssStatsSummaryAN3StationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes 802.11an3stream station count"
    ::= { mwEssStatsSummaryEntry   19 }

  mwEssStatsSummaryAC1StationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes 802.11ac1stream station count"
    ::= { mwEssStatsSummaryEntry   20 }

  mwEssStatsSummaryAC2StationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes 802.11ac2stream station count"
    ::= { mwEssStatsSummaryEntry   21 }

  mwEssStatsSummaryAC3StationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes 802.11ac3stream station count"
    ::= { mwEssStatsSummaryEntry   22 }

  mwEssStatsSummaryUnknownStationNum  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This object describes Unknown station count"
    ::= { mwEssStatsSummaryEntry   23 }

  
END