summaryrefslogtreecommitdiff
path: root/MIBS/comware/HH3C-DOT11-WIPS-MIB
blob: 7d4a712f822eba69c841fb5ecca02eb9da985eed (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
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
-- =============================================================================
-- Copyright (c) 2004-2016 New H3C Tech. Co., Ltd.  All rights reserved.
--
-- Description:
--   The file defines a MIB to provide wireless intrusion prevention service
--   feature.
-- Reference:
-- Version: V1.1
-- History:
--   V1.0 created by sunanzhi
--     Initial version 2015-03-20
--        2015-12-08 updated by sunanzhi
--     Modify the node name of Hh3cDot11WIPSVsdEntry,Hh3cDot11WIPSAp2VsdEntry,
--     Hh3cDot11WIPSApRadioEntry,Hh3cDot11WIPSDctAPEntry,
--     Hh3cDot11WIPSDctStaEntry
--     Add new objects Hh3cDot11WIPSRuleEntry,Hh3cDot11WIPSAlySigRuleEntry,
--     Hh3cDot11WIPSAlyClaRuleEntry,Hh3cDot11WIPSTrustMacEntry,
--     Hh3cDot11WIPSBlockMacEntry,Hh3cDot11WIPSManulClaEntry,
--     Hh3cDot11WIPSTrustOuiEntry,Hh3cDot11WIPSTrustSSidEntry,
--     Hh3cDot11WIPSMalfDtcEntry,Hh3cDot11WIPSLgeDutEntry,
--     Hh3cDot11WIPSRtLmtEntry,Hh3cDot11WIPSDtcAckEntry,
--     Hh3cDot11WIPSDtcDevTimeEntry,Hh3cDot11WIPSApimperEntry,
--     Hh3cDot11WIPSDctSoftApEntry,Hh3cDot11WIPSPowerSaveEntry,
--     Hh3cDot11WIPSIgnListMacEntry,Hh3cDot11WIPSHoneyPotEntry,
--     Hh3cDot11WIPSAPFldEntry,Hh3cDot11WIPSCtmManualsEntry,
--     Hh3cDot11WIPSCtmSensorEntry,Hh3cDot11WIPSInvOuiStateEntry,
--     Hh3cDot11WIPSAPClaAuthEntry,Hh3cDot11WIPSAPClaCltOnlEntry,
--     Hh3cDot11WIPSAPClaDiscrEntry,Hh3cDot11WIPSAPClaRssiEntry,
--     Hh3cDot11WIPSAPClaUpdurEntry,Hh3cDot11WIPSAPClaOuiEntry,
--     Hh3cDot11WIPSAPClaSryEntry,Hh3cDot11WIPSAPClaSsidEntry,
--     Hh3cDot11WIPSDtcSigEntry,Hh3cDot11WIPSPolicyEntry,
--     Hh3cDot11WIPSSigFrameTypeEntry,Hh3cDot11WIPSCtmEntry,
--     Hh3cDot11WIPSSigPatternEntry,Hh3cDot11WIPSSigSeqNumEntry,
--     Hh3cDot11WIPSSigSsidEntry,Hh3cDot11WIPSSigSsidLengthEntry,
--     Hh3cDot11WIPSFldDetectEntry,Hh3cDot11WIPSSignatureMacEntry,
--     Hh3cDot11WIPSRadioCfgEntry,Hh3cDot11WIPSNatDetectEntry,
--     Hh3cDot11WIPSApAssoCltEntry,Hh3cDot11WIPSApRpSenEntry,
--     Hh3cDot11WIPSCtmRecEntry,Hh3cDot11WIPSDevEntry,Hh3cDot11WIPSCtmDevEntry,
--     Hh3cDot11WIPSCltProbeEntry,Hh3cDot11WIPSPbeStaEntry,
--     Hh3cDot11WIPSCltRptApEntry,Hh3cDot11WIPSNatDtcCltEntry,
--     Hh3cDot11WIPSAckStaEntry
--   V1.1 2016-02-17 updated by sunanzhi
--     Modify the objects Hh3cDot11WIPSEncryptMethod,Hh3cDot11WIPSAuthMethod
--     Hh3cDot11WIPSAPSecurityType,hh3cDot11WIPSDctAPSSID
--        2016-03-28 updated by sunanzhi
--     Delete the objects Hh3cDot11WIPSCltProbeEntry,Hh3cDot11WIPSPbeStaEntry
--     Hh3cDot11WIPSRadioCfgEntry
-- =============================================================================
HH3C-DOT11-WIPS-MIB DEFINITIONS ::= BEGIN

IMPORTS
    TimeTicks, Integer32, Unsigned32, OBJECT-TYPE, MODULE-IDENTITY
        FROM SNMPv2-SMI
    TruthValue, RowStatus, MacAddress, TEXTUAL-CONVENTION
        FROM SNMPv2-TC
    hh3cDot11
        FROM HH3C-OID-MIB;

hh3cDot11WIPS MODULE-IDENTITY
    LAST-UPDATED "201603280951Z"        -- March 28, 2016 at 09:51 GMT
    ORGANIZATION
        "New H3C Technologies Co., Ltd."
    CONTACT-INFO
        "Platform Team New H3C Technologies Co., Ltd.
        Hai-Dian District Beijing P.R. China
        http://www.h3c.com
        Zip:100085
        "
    DESCRIPTION
        "This MIB provides information about the Wireless Intrusion
        Prevention System (WIPS) feature.

        WIPS is designed to protect an area that is serviced by
        a wireless network.
        It aids in early detection of malicious outsider attacks
        and intrusions via wireless networks, and takes countermeasures
        to ensure the wireless environment security.
        "
    REVISION "201603280951Z"        -- March 28, 2016 at 09:51 GMT
    DESCRIPTION
        "Delete table for probe."
    REVISION "201602161051Z"        -- February 16, 2016 at 10:51 GMT
    DESCRIPTION
        "Modify objects."
    REVISION "201512081551Z"        -- December 08, 2015 at 15:51 GMT
    DESCRIPTION
        "Add new objects."
    REVISION "201503311351Z"        -- March 31, 2015 at 13:51 GMT
    DESCRIPTION
        "The initial revision of this MIB module."
    ::= {  hh3cDot11 15 }

--
-- Textual conventions
--
Hh3cDot11WIPSEnabledStatus ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION
        "The enable status values for objects.
        Values include enabled and disbaled."
    SYNTAX      INTEGER { enabled(1), disabled(2) }

Hh3cDot11WIPSRtLmtType ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the type of rate limit configuration."
    SYNTAX INTEGER
        {
        ap(1),
        client(4)
        }

Hh3cDot11WIPSDeviceType ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the type of device."
    SYNTAX INTEGER
        {
        ap(1),
        client(2)
        }

Hh3cDot11WIPSPolicyTypeValue ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the type of policy."
    SYNTAX INTEGER
        {
        classification(1),
        countermeasure(2),
        detect(3),
        signature(4)
        }

Hh3cDot11WIPSClassifyType ::= TEXTUAL-CONVENTION
   STATUS current
   DESCRIPTION
        "Represents the category of the device detected by WIPS."
   SYNTAX INTEGER
       {
       none(1),
       authorizedap(2),
       misconfiguredap(3),
       rogueap(4),
       externalap(5),
       adhoc(6),
       meshap(7),
       potentialauthorizedap(8),
       potentialrogueap(9),
       potentialexternalap(10),
       uncategorizedap(11),
       authorizedclient(12),
       unauthorizedclient(13),
       misassociaionclient(14),
       uncategorizedclient(15)
       }

Hh3cDot11WIPSRadioType ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents AP 802.11 radio type of 802.11a/b/g/n as per
        the standard.
        The following values are supported:
        dot11a  - 802.11a
        dot11b  - 802.11b
        dot11g  - 802.11g
        dot11n  - 802.11n
        dot11gn  - 802.11gn
        dot11an  - 802.11an
        dot11ac  - 802.11ac
        dot11gac  - 802.11gac"
    SYNTAX INTEGER
        {
        dot11a(1),
        dot11b(2),
        dot11g(4),
        dot11n(8),
        dot11gn(16),
        dot11an(32),
        dot11ac(64),
        dot11gac(128)
        }

Hh3cDot11WIPSDevStatus ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the status of devices detected by WIPS."
    SYNTAX INTEGER
        {
        active(1),
        inactive(2)
        }

Hh3cDot11WIPSAPType ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the type of AP detected by WIPS."
    SYNTAX INTEGER
        {
        normal(1),
        adhoc(2),
        mesh(3)
        }


Hh3cDot11WIPSDevClassifyWay ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the method that the device is categorized."
    SYNTAX INTEGER
        {
        manual(1),
        invalidOUI(2),
        trustlist(3),
        blocklist(4),
        associated(5),
        userdefined(6),
        auto(7)
        }

Hh3cDot11WIPSAPClassifyType ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the category of the AP detected by WIPS."
    SYNTAX INTEGER
        {
        authorized(1),
        misconfigured(2),
        rogue(3),
        external(4),
        adhoc(5),
        mesh(6),
        potentialAuthorized(7),
        potentialRogue(8),
        potentialExternal(9),
        uncategorized(10)
        }

Hh3cDot11WIPSStaClassifyType ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the category of the client detected by WIPS."
    SYNTAX INTEGER
        {
        authorized(1),
        unauthorized(2),
        misassociated(3),
        uncategorized(4)
        }

Hh3cDot11WIPSChannel ::= TEXTUAL-CONVENTION
    DISPLAY-HINT "d"
    STATUS current
    DESCRIPTION
        "Represents the channel number."
    SYNTAX Integer32 (1..224)

Hh3cDot11WIPSEncryptMethod ::= TEXTUAL-CONVENTION
    DISPLAY-HINT "d"
    STATUS current
    DESCRIPTION
        "Represents the frame encryption cipher types(bitmap) for
        frames on IEEE 802.11 radio interfaces.
        The MIB defines TC by referring to the 802.11i protocol.
        The following bits are supported:
        first bit:    none,
        second bit:   wep,
        third bit:    wep40,
        fourth bit:   tkip
        fifth bit:    reserve
        sixth bit:    ccmp
        seventh bit:  wep104
        eighth bit:   wep128"
    SYNTAX Integer32 (1..65535)

Hh3cDot11WIPSAuthMethod ::= TEXTUAL-CONVENTION
    DISPLAY-HINT "d"
    STATUS current
    DESCRIPTION
        "Represents the key management mode(bitmap), compliant with 802.11i.
        The following bits are supported:
        first bit:   none         - No key management mode is specified,
        second bit:  dot1x        - 802.1X authentication.
        third bit:   psk          - Pre-shared key authentication,
        fourth bit:  other        - Other authentication."
    SYNTAX Integer32 (1..65535)

Hh3cDot11WIPSAPSecurityType ::= TEXTUAL-CONVENTION
    DISPLAY-HINT "d"
    STATUS current
    DESCRIPTION
        "Represents the AP security type(bitmap).
        The following bits are supported:
        first bit:   none,
        second bit:  wpa2,
        third bit:   wpa,
        fourth bit:  wlanex
        fifth bit:   wep"
    SYNTAX Integer32 (1..255)

Hh3cDot11WIPSMalformedType ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the category of malformed packet."
    SYNTAX INTEGER
        {
        duplicatedie(1),
        fatajack(2),
        illegalibssess(3),
        invalidaddresscombination(4),
        invalidassocreq(5),
        invalidauth(6),
        invaliddeauthcode(7),
        invaliddisassoccode(8),
        invalidhtie(9),
        invalidielength(10),
        invalidpktlength(11),
        nullproberesp(13),
        overfloweapolkey(14),
        overflowssid(15),
        redundantie(16)
        }

Hh3cDot11WIPSCtmType ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the category of countermeasure method."
    SYNTAX INTEGER
        {
        externalAp(1),
        misassociationClient(2),
        misconfiguredAp(3),
        potentialAuthorizedAp(4),
        potentialExternalAp(5),
        potentialRogueAp(6),
        rogueAp(7),
        unauthorizedClient(8),
        uncategorizedAp(9),
        uncategorizedClient(10),
        attack(11),
        adhoc(12)
        }

Hh3cDot11WIPSRuleTypes ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the type of rule"
    SYNTAX INTEGER
        {
        signature(4),
        apclassfication(5)
        }

Hh3cDot11WIPSSigFrameTypes ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the type of signature frame configuration."
    SYNTAX INTEGER
        {
        management(1),
        control(2),
        data(3)
        }

Hh3cDot11WIPSSigFrameSubTypes ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the type of signature manage frame configuration."
    SYNTAX INTEGER
        {
        assocerq(1),
        assocresp(2),
        probereq(3),
        beacon(4),
        disasso(5),
        auth(6),
        deauth(7)
        }

Hh3cDot11WIPSSigSsidMatchTypes ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the match type of signature ssid configuration."
    SYNTAX INTEGER
        {
        equal(1),
        notequal(2),
        include(3),
        notinclude(4)
        }

Hh3cDot11WIPSSigMacMacType ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the mac type of signature ssid configuration."
    SYNTAX INTEGER
        {
        source(1),
        destination(2),
        bssid(3)
        }

Hh3cDot11WIPSManualAPType ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the type of AP manual classification."
    SYNTAX INTEGER
        {
       authap(1),
       misconfiguredap(2),
        rogueap(3),
        externalap(4)
        }

Hh3cDot11WIPSDtcAckTypes ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the type of attack detect."
    SYNTAX INTEGER
        {
        apspoof(1),
        clientspoof(4),
        weakiv(6),
        windowsbridge(7),
        fortymhz(8),
        omerta(11),
        disassoc(12),
        deauth(13),
        prohibitedchannel(14),
        authunencryptedap(16),
        authunencryptedclient(17),
        hotspot(18),
        greenmode(19),
        tableoverflow(20),
        mitm(22),
        wirelessbridge(23),
        apchannelchange(25)
        }

Hh3cDot11WIPSDtcDevTimeTypes ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the type of device time."
    SYNTAX INTEGER
        {
        deviceap(1),
        deviceclient(2)
        }

Hh3cDot11WIPSFldDctType ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the type of flood detect."
    SYNTAX INTEGER
        {
        associationrequest(1),
        authentication(2),
        beacon(3),
        blockack(4),
        cts(5),
        deauthentication(6),
        disassociation(7),
        eapolstart(8),
        nulldata(9),
        proberequest(10),
        reassociationrequest(11),
        rts(12),
        eapollogoff(13),
        eapfailure(14),
        eapsuccess(15)
        }

Hh3cDot11WIPSAPClaAuthMethods ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the type of AP classification method."
    SYNTAX INTEGER
        {
        none(1),
        dot1x(2),
        psk(3),
        other(5)
        }


Hh3cDot11WIPSAPClassifyCmpType ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the compare type of AP classification method.
        The following values are supported:
        equal         - equal.
        include       - include."
    SYNTAX INTEGER
        {
        equal(1),
        include(3)
        }

Hh3cDot11WIPSAPClasSsidCmpType ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the compare type of AP classification ssid.
        The following values are supported:
        equal         - equal.
        not equal     - not equal.
        include       - include.
        not include   - not include."
    SYNTAX INTEGER
        {
        equal(1),
        notequal(2),
        include(3),
        notinclude(4)
        }


Hh3cDot11WIPSAPClaSecurityType ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the type of AP classification security.
        clear   1
        wpa2   2
        wpa    3
        wep    9"
    SYNTAX INTEGER
        {
        clear(1),
        wpa2(2),
        wpa(3),
        wep(9)
        }

Hh3cDot11WIPSAlyAPClaRuleType ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION
        "Represents the category of apply AP classification rule."
    SYNTAX INTEGER
        {
        rogue(1),
        external(2),
        misconfigured(3),
        authorized(4)
        }

Hh3cDot11WIPSOuiAddress ::= TEXTUAL-CONVENTION
    DISPLAY-HINT "1x:"
    STATUS       current
    DESCRIPTION
        "Represents an 802 OUI address represented in the
        `canonical' order defined by IEEE 802.1a, i.e., as if it
        were transmitted least significant bit first, even though
        802.5 (in contrast to other 802.x protocols) requires MAC
        addresses to be transmitted most significant bit first."
    SYNTAX       OCTET STRING (SIZE (3))

--
-- Node definitions
--
hh3cDot11WIPSConfigGroup OBJECT IDENTIFIER ::= { hh3cDot11WIPS 1 }
hh3cDot11WIPSDataGroup OBJECT IDENTIFIER ::= { hh3cDot11WIPS 2 }

hh3cDot11WIPSVsdTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSVsdEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table provides information about virtual security domains (VSDs)."
    ::= { hh3cDot11WIPSConfigGroup 1 }

hh3cDot11WIPSVsdEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSVsdEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about one VSD."
    INDEX { hh3cDot11WIPSVsdName }
    ::= { hh3cDot11WIPSVsdTable 1 }

Hh3cDot11WIPSVsdEntry ::= SEQUENCE {
        hh3cDot11WIPSVsdName                      OCTET STRING,
        hh3cDot11WIPSVsdRowStatus                 RowStatus,
        hh3cDot11WIPSVsdDetectPolicy              OCTET STRING,
        hh3cDot11WIPSVsdCtmPolicy                 OCTET STRING,
        hh3cDot11WIPSVsdSignaturePolicy           OCTET STRING,
        hh3cDot11WIPSVsdClasPolicy                OCTET STRING
     }

hh3cDot11WIPSVsdName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the name of the virtual security domain."
    ::= { hh3cDot11WIPSVsdEntry 1 }

hh3cDot11WIPSVsdRowStatus OBJECT-TYPE
    SYNTAX RowStatus
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "The status of this table entry."
    ::= { hh3cDot11WIPSVsdEntry 2 }

hh3cDot11WIPSVsdDetectPolicy OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (0..63))
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "Represents the name of the attack detect policy attached to the VSD,
        zero-length for not config."
    ::= { hh3cDot11WIPSVsdEntry 3 }

hh3cDot11WIPSVsdCtmPolicy OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (0..63))
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "Represents the name of the countermeasure policy attached to the VSD,
        zero-length for not config."
    ::= { hh3cDot11WIPSVsdEntry 4 }

hh3cDot11WIPSVsdSignaturePolicy OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (0..63))
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "Represents the name of the signature policy attached to the VSD,
        zero-length for not config."
    ::= { hh3cDot11WIPSVsdEntry 5 }

hh3cDot11WIPSVsdClasPolicy OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (0..63))
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "Represents the name of the malformed packet detect policy attached
        to the VSD,zero-length for not config."
    ::= { hh3cDot11WIPSVsdEntry 6 }

hh3cDot11WIPSAp2VsdTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSAp2VsdEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table defines sensors attached to VSDs."
    ::= { hh3cDot11WIPSConfigGroup 2 }

hh3cDot11WIPSAp2VsdEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSAp2VsdEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about a sensor in a VSD."
    INDEX { hh3cDot11WIPSAp2VsdApName }
    ::= { hh3cDot11WIPSAp2VsdTable 1 }

Hh3cDot11WIPSAp2VsdEntry ::= SEQUENCE {
        hh3cDot11WIPSAp2VsdApName        OCTET STRING,
        hh3cDot11WIPSAp2VsdRowStatus     RowStatus,
        hh3cDot11WIPSAp2VsdVsdName       OCTET STRING
     }

hh3cDot11WIPSAp2VsdApName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..64))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the sensor name."
    ::= { hh3cDot11WIPSAp2VsdEntry 1 }

hh3cDot11WIPSAp2VsdRowStatus OBJECT-TYPE
    SYNTAX RowStatus
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "The status of this table entry."
    ::= { hh3cDot11WIPSAp2VsdEntry 2 }

hh3cDot11WIPSAp2VsdVsdName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "Represents the name of a virtual security domain."
    ::= { hh3cDot11WIPSAp2VsdEntry 3 }


hh3cDot11WIPSApRadioTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSApRadioEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the enable status of WIPS on radios of sensors."
    ::= { hh3cDot11WIPSConfigGroup 3 }

hh3cDot11WIPSApRadioEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSApRadioEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the enable status
         of WIPS on one radio of a sensor."
    INDEX { hh3cDot11WIPSApRadioApName, hh3cDot11WIPSApRadioRadioID }
    ::= { hh3cDot11WIPSApRadioTable 1 }

Hh3cDot11WIPSApRadioEntry ::= SEQUENCE {
        hh3cDot11WIPSApRadioApName       OCTET STRING,
        hh3cDot11WIPSApRadioRadioID      Integer32,
        hh3cDot11WIPSApRadioStatus       Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSApRadioApName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..64))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the sensor name."
    ::= { hh3cDot11WIPSApRadioEntry 1 }

hh3cDot11WIPSApRadioRadioID OBJECT-TYPE
    SYNTAX Integer32 (1..4)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents a radio identifier."
    ::= { hh3cDot11WIPSApRadioEntry 2 }

hh3cDot11WIPSApRadioStatus OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of WIPS on the radio."
    ::= { hh3cDot11WIPSApRadioEntry 3 }

hh3cDot11WIPSRuleTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSRuleEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table defines signature rule or ap-class rule."
    ::= { hh3cDot11WIPSConfigGroup 4 }

hh3cDot11WIPSRuleEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSRuleEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about
         signature rule or ap-class rule."
    INDEX { hh3cDot11WIPSRuleType, hh3cDot11WIPSRuleId }
    ::= { hh3cDot11WIPSRuleTable 1 }

Hh3cDot11WIPSRuleEntry ::= SEQUENCE {
        hh3cDot11WIPSRuleType                Hh3cDot11WIPSRuleTypes,
        hh3cDot11WIPSRuleId                  Integer32,
        hh3cDot11WIPSRuleRowStatus           RowStatus
     }

hh3cDot11WIPSRuleType OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSRuleTypes
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the rule type."
    ::= { hh3cDot11WIPSRuleEntry 1 }

hh3cDot11WIPSRuleId OBJECT-TYPE
    SYNTAX Integer32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the rule id."
    ::= { hh3cDot11WIPSRuleEntry 2 }

hh3cDot11WIPSRuleRowStatus OBJECT-TYPE
    SYNTAX RowStatus
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "The status of this table entry."
    ::= { hh3cDot11WIPSRuleEntry 3 }

hh3cDot11WIPSAlySigRuleTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSAlySigRuleEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table provides information about applying signature rule."
    ::= { hh3cDot11WIPSConfigGroup 5 }

hh3cDot11WIPSAlySigRuleEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSAlySigRuleEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about applying signature rule."
    INDEX { hh3cDot11WIPSAlySigPolicyName, hh3cDot11WIPSAlySigRuleID }
    ::= { hh3cDot11WIPSAlySigRuleTable 1 }

Hh3cDot11WIPSAlySigRuleEntry ::= SEQUENCE {
        hh3cDot11WIPSAlySigPolicyName                OCTET STRING,
        hh3cDot11WIPSAlySigRuleID                    Integer32,
        hh3cDot11WIPSAlySigRowStatus                 RowStatus
     }

hh3cDot11WIPSAlySigPolicyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the name of signature policy name."
    ::= { hh3cDot11WIPSAlySigRuleEntry 1 }

hh3cDot11WIPSAlySigRuleID OBJECT-TYPE
    SYNTAX Integer32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the rule id of signature."
    ::= { hh3cDot11WIPSAlySigRuleEntry 2 }

hh3cDot11WIPSAlySigRowStatus OBJECT-TYPE
    SYNTAX RowStatus
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "The status of this table entry."
    ::= { hh3cDot11WIPSAlySigRuleEntry 3 }

hh3cDot11WIPSAlyClaRuleTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSAlyClaRuleEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table provides information about applying classification rule."
    ::= { hh3cDot11WIPSConfigGroup 6 }

hh3cDot11WIPSAlyClaRuleEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSAlyClaRuleEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about applying classification rule."
    INDEX { hh3cDot11WIPSAlyClaPolicyName, hh3cDot11WIPSAlyClasRuleID }
    ::= { hh3cDot11WIPSAlyClaRuleTable 1 }

Hh3cDot11WIPSAlyClaRuleEntry ::= SEQUENCE {
        hh3cDot11WIPSAlyClaPolicyName           OCTET STRING,
        hh3cDot11WIPSAlyClasRuleID              Integer32,
        hh3cDot11WIPSAlyClaRuleType             Hh3cDot11WIPSAlyAPClaRuleType,
        hh3cDot11WIPSAlyClaRuleLevel            Integer32,
        hh3cDot11WIPSAlyClaRowStatus            RowStatus
     }

hh3cDot11WIPSAlyClaPolicyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the name of classification policy name."
    ::= { hh3cDot11WIPSAlyClaRuleEntry 1 }

hh3cDot11WIPSAlyClasRuleID OBJECT-TYPE
    SYNTAX Integer32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the rule id of classification."
    ::= { hh3cDot11WIPSAlyClaRuleEntry 2 }

hh3cDot11WIPSAlyClaRuleType OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSAlyAPClaRuleType
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "The type of applying classfication rule."
    ::= { hh3cDot11WIPSAlyClaRuleEntry 3 }

hh3cDot11WIPSAlyClaRuleLevel OBJECT-TYPE
    SYNTAX Integer32 (1..100)
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "The level of applying classfication rule."
    ::= { hh3cDot11WIPSAlyClaRuleEntry 4 }

hh3cDot11WIPSAlyClaRowStatus OBJECT-TYPE
    SYNTAX RowStatus
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "The status of this table entry."
    ::= { hh3cDot11WIPSAlyClaRuleEntry 5 }

hh3cDot11WIPSTrustMacTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSTrustMacEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table defines adding a MacAdress to the trust-device-list(TDL)"
    ::= { hh3cDot11WIPSConfigGroup 7 }

hh3cDot11WIPSTrustMacEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSTrustMacEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about a Mac in a TDL."
    INDEX { hh3cDot11WIPSTrustMacPolicyName, hh3cDot11WIPSTrustMacAddress }
    ::= { hh3cDot11WIPSTrustMacTable 1 }

Hh3cDot11WIPSTrustMacEntry ::= SEQUENCE {
        hh3cDot11WIPSTrustMacPolicyName     OCTET STRING,
        hh3cDot11WIPSTrustMacAddress        MacAddress,
        hh3cDot11WIPSTrustMacRowStatus      RowStatus
     }

hh3cDot11WIPSTrustMacPolicyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the classification policy name."
    ::= { hh3cDot11WIPSTrustMacEntry 1 }

hh3cDot11WIPSTrustMacAddress OBJECT-TYPE
    SYNTAX MacAddress
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the MAC address."
    ::= { hh3cDot11WIPSTrustMacEntry 2 }

hh3cDot11WIPSTrustMacRowStatus OBJECT-TYPE
    SYNTAX RowStatus
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "The status of this table entry."
    ::= { hh3cDot11WIPSTrustMacEntry 3 }

hh3cDot11WIPSBlockMacTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSBlockMacEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table defines add MacAdress to the static-forbidden-list(SFL)"
    ::= { hh3cDot11WIPSConfigGroup 8 }

hh3cDot11WIPSBlockMacEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSBlockMacEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about a Mac in a SFL."
    INDEX { hh3cDot11WIPSBlockMacPolicyName, hh3cDot11WIPSBlockMacAddress }
    ::= { hh3cDot11WIPSBlockMacTable 1 }

Hh3cDot11WIPSBlockMacEntry ::= SEQUENCE {
        hh3cDot11WIPSBlockMacPolicyName       OCTET STRING,
        hh3cDot11WIPSBlockMacAddress          MacAddress,
        hh3cDot11WIPSBlockMacRowStatus        RowStatus
     }

hh3cDot11WIPSBlockMacPolicyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the classification policy name."
    ::= { hh3cDot11WIPSBlockMacEntry 1 }

hh3cDot11WIPSBlockMacAddress OBJECT-TYPE
    SYNTAX MacAddress
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the MAC address."
    ::= { hh3cDot11WIPSBlockMacEntry 2 }

hh3cDot11WIPSBlockMacRowStatus OBJECT-TYPE
    SYNTAX RowStatus
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "The status of this table entry."
    ::= { hh3cDot11WIPSBlockMacEntry 3 }

hh3cDot11WIPSManulClaTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSManulClaEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the manual classify information."
    ::= { hh3cDot11WIPSConfigGroup 9 }

hh3cDot11WIPSManulClaEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSManulClaEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the address specified manually in a policy."
    INDEX { hh3cDot11WIPSManulClaPlyName, hh3cDot11WIPSManulClaMac }
    ::= { hh3cDot11WIPSManulClaTable 1 }

Hh3cDot11WIPSManulClaEntry ::= SEQUENCE {
        hh3cDot11WIPSManulClaPlyName        OCTET STRING,
        hh3cDot11WIPSManulClaMac            MacAddress,
        hh3cDot11WIPSManulClassifyType      Hh3cDot11WIPSManualAPType,
        hh3cDot11WIPSManuClaRowStatus       RowStatus
     }

hh3cDot11WIPSManulClaPlyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the policy name."
    ::= { hh3cDot11WIPSManulClaEntry 1 }

hh3cDot11WIPSManulClaMac OBJECT-TYPE
    SYNTAX MacAddress
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the MAC address of AP."
    ::= { hh3cDot11WIPSManulClaEntry 2 }

hh3cDot11WIPSManulClassifyType OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSManualAPType
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "The classification type of AP."
    ::= { hh3cDot11WIPSManulClaEntry 3 }

hh3cDot11WIPSManuClaRowStatus OBJECT-TYPE
    SYNTAX RowStatus
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "The status of this table entry."
    ::= { hh3cDot11WIPSManulClaEntry 4 }

hh3cDot11WIPSTrustOuiTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSTrustOuiEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table provides information about trust oui."
    ::= { hh3cDot11WIPSConfigGroup 10 }

hh3cDot11WIPSTrustOuiEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSTrustOuiEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about trust oui."
    INDEX { hh3cDot11WIPSTrustOuiPolicyName, hh3cDot11WIPSTrustOuiMac }
    ::= { hh3cDot11WIPSTrustOuiTable 1 }

Hh3cDot11WIPSTrustOuiEntry ::= SEQUENCE {
        hh3cDot11WIPSTrustOuiPolicyName                OCTET STRING,
        hh3cDot11WIPSTrustOuiMac                       Hh3cDot11WIPSOuiAddress,
        hh3cDot11WIPSTrustOuiRowStatus                 RowStatus
     }

hh3cDot11WIPSTrustOuiPolicyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the name of classification policy name."
    ::= { hh3cDot11WIPSTrustOuiEntry 1 }

hh3cDot11WIPSTrustOuiMac OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSOuiAddress
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the address of trust oui."
    ::= { hh3cDot11WIPSTrustOuiEntry 2 }

hh3cDot11WIPSTrustOuiRowStatus OBJECT-TYPE
    SYNTAX RowStatus
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "The status of this table entry."
    ::= { hh3cDot11WIPSTrustOuiEntry 3 }

hh3cDot11WIPSTrustSSidTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSTrustSSidEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table defines add one SSID to the trust-device-list(TDL)"
    ::= { hh3cDot11WIPSConfigGroup 11 }

hh3cDot11WIPSTrustSSidEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSTrustSSidEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about a SSID in a TDL."
    INDEX { hh3cDot11WIPSTrustSSidPlyName, hh3cDot11WIPSTrustSSidName }
    ::= { hh3cDot11WIPSTrustSSidTable 1 }

Hh3cDot11WIPSTrustSSidEntry ::= SEQUENCE {
        hh3cDot11WIPSTrustSSidPlyName          OCTET STRING,
        hh3cDot11WIPSTrustSSidName             OCTET STRING,
        hh3cDot11WIPSTrustSSidRowStatus        RowStatus
     }

hh3cDot11WIPSTrustSSidPlyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the classification policy name."
    ::= { hh3cDot11WIPSTrustSSidEntry 1 }

hh3cDot11WIPSTrustSSidName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..32))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the SSID name."
    ::= { hh3cDot11WIPSTrustSSidEntry 2 }

hh3cDot11WIPSTrustSSidRowStatus OBJECT-TYPE
    SYNTAX RowStatus
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "The status of this table entry."
    ::= { hh3cDot11WIPSTrustSSidEntry 3 }

hh3cDot11WIPSMalfDtcTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSMalfDtcEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the malformed packet detect information."
    ::= { hh3cDot11WIPSConfigGroup 12 }

hh3cDot11WIPSMalfDtcEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSMalfDtcEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the malformed type in a detect policy."
    INDEX { hh3cDot11WIPSMalfDtcPolicyName, hh3cDot11WIPSMalfDtcType }
    ::= { hh3cDot11WIPSMalfDtcTable 1 }

Hh3cDot11WIPSMalfDtcEntry ::= SEQUENCE {
        hh3cDot11WIPSMalfDtcPolicyName       OCTET STRING,
        hh3cDot11WIPSMalfDtcType             Hh3cDot11WIPSMalformedType,
        hh3cDot11WIPSMalfDtcQuietTime        Integer32,
        hh3cDot11WIPSMalfDtciStatus          Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSMalfDtcPolicyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the policy name."
    ::= { hh3cDot11WIPSMalfDtcEntry 1 }

hh3cDot11WIPSMalfDtcType OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSMalformedType
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The malformed type of detect."
    ::= { hh3cDot11WIPSMalfDtcEntry 2 }

hh3cDot11WIPSMalfDtcQuietTime OBJECT-TYPE
    SYNTAX Integer32 (5..604800)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the quiet time."
    ::= { hh3cDot11WIPSMalfDtcEntry 3 }

hh3cDot11WIPSMalfDtciStatus OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of malformed detect."
    ::= { hh3cDot11WIPSMalfDtcEntry 4 }

hh3cDot11WIPSLgeDutTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSLgeDutEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the infomation about
         large duration malformed detect."
    ::= { hh3cDot11WIPSConfigGroup 13 }

hh3cDot11WIPSLgeDutEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSLgeDutEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the infomation about
         large duration malformed detect."
    INDEX { hh3cDot11WIPSLgeDutPolicyName }
    ::= { hh3cDot11WIPSLgeDutTable 1 }

Hh3cDot11WIPSLgeDutEntry ::= SEQUENCE {
        hh3cDot11WIPSLgeDutPolicyName           OCTET STRING,
        hh3cDot11WIPSLgeDutThreshold            Integer32,
        hh3cDot11WIPSLgeDutQuietTime            Integer32,
        hh3cDot11WIPSLgeDutStatus               Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSLgeDutPolicyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the detect policy name."
    ::= { hh3cDot11WIPSLgeDutEntry 1 }

hh3cDot11WIPSLgeDutThreshold OBJECT-TYPE
    SYNTAX Integer32 (1..32767)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents large duration malformed detect threshold."
    ::= { hh3cDot11WIPSLgeDutEntry 2 }

hh3cDot11WIPSLgeDutQuietTime OBJECT-TYPE
    SYNTAX Integer32 (5..604800)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents large duration malformed detect quiet time ."
    ::= { hh3cDot11WIPSLgeDutEntry 3 }

hh3cDot11WIPSLgeDutStatus OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of large duration malformed detect."
    ::= { hh3cDot11WIPSLgeDutEntry 4 }

hh3cDot11WIPSRtLmtTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSRtLmtEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table defines the control of AP learned the devices rate."
    ::= { hh3cDot11WIPSConfigGroup 14 }

hh3cDot11WIPSRtLmtEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSRtLmtEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about a control of AP learned rate ."
    INDEX { hh3cDot11WIPSRtLmtPolicyName, hh3cDot11WIPSRtLmtRtLmtType }
    ::= { hh3cDot11WIPSRtLmtTable 1 }

Hh3cDot11WIPSRtLmtEntry ::= SEQUENCE {
        hh3cDot11WIPSRtLmtPolicyName       OCTET STRING,
        hh3cDot11WIPSRtLmtRtLmtType        Hh3cDot11WIPSRtLmtType,
        hh3cDot11WIPSRtLmtInterval         Integer32,
        hh3cDot11WIPSRtLmtThreshold        Integer32,
        hh3cDot11WIPSRtLmtQuiet            Integer32,
        hh3cDot11WIPSRtLmtStatus           Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSRtLmtPolicyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the classification policy name."
    ::= { hh3cDot11WIPSRtLmtEntry 1 }

hh3cDot11WIPSRtLmtRtLmtType OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSRtLmtType
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the device type."
    ::= { hh3cDot11WIPSRtLmtEntry 2 }

hh3cDot11WIPSRtLmtInterval OBJECT-TYPE
    SYNTAX Integer32(1..3600)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The statistics cycle of AP learned device."
    ::= { hh3cDot11WIPSRtLmtEntry 3 }

hh3cDot11WIPSRtLmtThreshold OBJECT-TYPE
    SYNTAX Integer32(1..4096)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The maximum devices number of AP learned."
    ::= { hh3cDot11WIPSRtLmtEntry 4 }

hh3cDot11WIPSRtLmtQuiet OBJECT-TYPE
    SYNTAX Integer32(1200..3600)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents a quiet time after the warning log had been sent."
    ::= { hh3cDot11WIPSRtLmtEntry 5 }

hh3cDot11WIPSRtLmtStatus OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of the control of AP learned the devices rate."
    ::= { hh3cDot11WIPSRtLmtEntry 6 }

hh3cDot11WIPSDtcAckTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSDtcAckEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the infomation about detect attack."
    ::= { hh3cDot11WIPSConfigGroup 15 }

hh3cDot11WIPSDtcAckEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSDtcAckEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the infomation about detect attack."
    INDEX { hh3cDot11WIPSDtcAckPolicyName, hh3cDot11WIPSDtcAckType }
    ::= { hh3cDot11WIPSDtcAckTable 1 }

Hh3cDot11WIPSDtcAckEntry ::= SEQUENCE {
        hh3cDot11WIPSDtcAckPolicyName            OCTET STRING,
        hh3cDot11WIPSDtcAckType                  Hh3cDot11WIPSDtcAckTypes,
        hh3cDot11WIPSDtcAckQuietTime             Integer32,
        hh3cDot11WIPSDtcAckInterval              Integer32,
        hh3cDot11WIPSDtcAckThreshold             Integer32,
        hh3cDot11WIPSDtcAckStatus                Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSDtcAckPolicyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the detect policy name."
    ::= { hh3cDot11WIPSDtcAckEntry 1 }

hh3cDot11WIPSDtcAckType OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSDtcAckTypes
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the detect attack type."
    ::= { hh3cDot11WIPSDtcAckEntry 2 }


hh3cDot11WIPSDtcAckQuietTime OBJECT-TYPE
    SYNTAX Integer32 (5..604800)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents detect attack quiet time ."
    ::= { hh3cDot11WIPSDtcAckEntry 3 }

hh3cDot11WIPSDtcAckInterval OBJECT-TYPE
    SYNTAX Integer32 (1..3600)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents detect attack  interval."
    ::= { hh3cDot11WIPSDtcAckEntry 4 }

hh3cDot11WIPSDtcAckThreshold OBJECT-TYPE
    SYNTAX Integer32 (1..100000)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents detect attack threshold."
    ::= { hh3cDot11WIPSDtcAckEntry 5 }

hh3cDot11WIPSDtcAckStatus OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of detect attack."
    ::= { hh3cDot11WIPSDtcAckEntry 6 }

hh3cDot11WIPSDtcDevTimeTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSDtcDevTimeEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the infomation about detect device time."
    ::= { hh3cDot11WIPSConfigGroup 16 }

hh3cDot11WIPSDtcDevTimeEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSDtcDevTimeEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the infomation about detect device time."
    INDEX { hh3cDot11WIPSDtcDevTimePlyName, hh3cDot11WIPSDtcDevTimeType }
    ::= { hh3cDot11WIPSDtcDevTimeTable 1 }

Hh3cDot11WIPSDtcDevTimeEntry ::= SEQUENCE {
        hh3cDot11WIPSDtcDevTimePlyName         OCTET STRING,
        hh3cDot11WIPSDtcDevTimeType            Hh3cDot11WIPSDtcDevTimeTypes,
        hh3cDot11WIPSDtcDevTimeInactive        Integer32,
        hh3cDot11WIPSDtcDevTimeAging           Integer32,
        hh3cDot11WIPSDtcDevTimeStatus          Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSDtcDevTimePlyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the detect policy name."
    ::= { hh3cDot11WIPSDtcDevTimeEntry 1 }

hh3cDot11WIPSDtcDevTimeType OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSDtcDevTimeTypes
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the detect device time type."
    ::= { hh3cDot11WIPSDtcDevTimeEntry 2 }

hh3cDot11WIPSDtcDevTimeInactive OBJECT-TYPE
    SYNTAX Integer32 (60..1200)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents detect device time inactive time."
    ::= { hh3cDot11WIPSDtcDevTimeEntry 3 }

hh3cDot11WIPSDtcDevTimeAging OBJECT-TYPE
    SYNTAX Integer32 (120..86400)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents detect device time aging time."
    ::= { hh3cDot11WIPSDtcDevTimeEntry 4 }

hh3cDot11WIPSDtcDevTimeStatus OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of detect device time."
    ::= { hh3cDot11WIPSDtcDevTimeEntry 5 }

hh3cDot11WIPSApimperTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSApimperEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table provides information about AP impersonation."
    ::= { hh3cDot11WIPSConfigGroup 17 }

hh3cDot11WIPSApimperEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSApimperEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about one AP impersonation."
    INDEX { hh3cDot11WIPSApimperPolicyName }
    ::= { hh3cDot11WIPSApimperTable 1 }

Hh3cDot11WIPSApimperEntry ::= SEQUENCE {
        hh3cDot11WIPSApimperPolicyName      OCTET STRING,
        hh3cDot11WIPSApimperQuiet           Integer32,
        hh3cDot11WIPSApimperStatus          Hh3cDot11WIPSEnabledStatus
      }

hh3cDot11WIPSApimperPolicyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the name of policy."
    ::= { hh3cDot11WIPSApimperEntry 1 }

hh3cDot11WIPSApimperQuiet OBJECT-TYPE
    SYNTAX Integer32 (5..604800)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The quiet of this table entry."
    ::= { hh3cDot11WIPSApimperEntry 2 }

hh3cDot11WIPSApimperStatus OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The status of this table entry."
    ::= { hh3cDot11WIPSApimperEntry 3 }

hh3cDot11WIPSDctSoftApTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSDctSoftApEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the enable status of detect of soft AP."
    ::= { hh3cDot11WIPSConfigGroup 18 }

hh3cDot11WIPSDctSoftApEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSDctSoftApEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the enable status of detect a soft AP."
    INDEX { hh3cDot11WIPSDctSoftApPlyName }
    ::= { hh3cDot11WIPSDctSoftApTable 1 }

Hh3cDot11WIPSDctSoftApEntry ::= SEQUENCE {
        hh3cDot11WIPSDctSoftApPlyName      OCTET STRING,
        hh3cDot11WIPSDctSoftApThold        Integer32,
        hh3cDot11WIPSDctSoftApStatus       Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSDctSoftApPlyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the detect policy name."
    ::= { hh3cDot11WIPSDctSoftApEntry 1 }

hh3cDot11WIPSDctSoftApThold OBJECT-TYPE
    SYNTAX Integer32 (5..600)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents a convert time."
    ::= { hh3cDot11WIPSDctSoftApEntry 2 }

hh3cDot11WIPSDctSoftApStatus OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of detect a soft AP."
    ::= { hh3cDot11WIPSDctSoftApEntry 3 }

hh3cDot11WIPSPowerSaveTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSPowerSaveEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "This table contains the power-save detect information."
    ::= { hh3cDot11WIPSConfigGroup 19 }

hh3cDot11WIPSPowerSaveEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSPowerSaveEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about power-save detect."
    INDEX { hh3cDot11WIPSPowerSavePlyName }
    ::= { hh3cDot11WIPSPowerSaveTable 1 }

Hh3cDot11WIPSPowerSaveEntry ::= SEQUENCE {
        hh3cDot11WIPSPowerSavePlyName       OCTET STRING,
        hh3cDot11WIPSPowerSaveInterval      Integer32,
        hh3cDot11WIPSPowerSaveMinOffPkt     Integer32,
        hh3cDot11WIPSPowerSaveOnOffPct      Integer32,
        hh3cDot11WIPSPowerSaveQuiet         Integer32,
        hh3cDot11WIPSPowerSaveStatus        Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSPowerSavePlyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the policy name."
    ::= { hh3cDot11WIPSPowerSaveEntry 1 }

hh3cDot11WIPSPowerSaveInterval OBJECT-TYPE
    SYNTAX Integer32 (1..3600)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the interval of power-save detect."
    ::= { hh3cDot11WIPSPowerSaveEntry 2 }

hh3cDot11WIPSPowerSaveMinOffPkt OBJECT-TYPE
    SYNTAX Integer32 (10..150)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the minoffpacket of power-save detect."
    ::= { hh3cDot11WIPSPowerSaveEntry 3 }

hh3cDot11WIPSPowerSaveOnOffPct OBJECT-TYPE
    SYNTAX Integer32 (0..100)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the onoffpercent of power-save detect."
    ::= { hh3cDot11WIPSPowerSaveEntry 4 }

hh3cDot11WIPSPowerSaveQuiet OBJECT-TYPE
    SYNTAX Integer32 (5..604800)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the quiettime of power-save detect."
    ::= { hh3cDot11WIPSPowerSaveEntry 5 }

hh3cDot11WIPSPowerSaveStatus OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the enabled status of power-save detect."
    ::= { hh3cDot11WIPSPowerSaveEntry 6 }

hh3cDot11WIPSIgnListMacTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSIgnListMacEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table defines ignore list MAC."
    ::= { hh3cDot11WIPSConfigGroup 20 }

hh3cDot11WIPSIgnListMacEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSIgnListMacEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about ignore list MAC."
    INDEX { hh3cDot11WIPSIgnListMacMacAddr }
    ::= { hh3cDot11WIPSIgnListMacTable 1 }

Hh3cDot11WIPSIgnListMacEntry ::= SEQUENCE {
        hh3cDot11WIPSIgnListMacMacAddr        MacAddress,
        hh3cDot11WIPSIgnListMacRowStus        RowStatus
     }

hh3cDot11WIPSIgnListMacMacAddr OBJECT-TYPE
    SYNTAX MacAddress
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the MAC address."
    ::= { hh3cDot11WIPSIgnListMacEntry 1 }

hh3cDot11WIPSIgnListMacRowStus OBJECT-TYPE
    SYNTAX RowStatus
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "The status of this table entry."
    ::= { hh3cDot11WIPSIgnListMacEntry 2 }

hh3cDot11WIPSHoneyPotTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSHoneyPotEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table defines the detect of honey-pot."
    ::= { hh3cDot11WIPSConfigGroup 21 }

hh3cDot11WIPSHoneyPotEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSHoneyPotEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the enable status of detect honey-pot."
    INDEX { hh3cDot11WIPSHoneyPotPlyName }
    ::= { hh3cDot11WIPSHoneyPotTable 1 }

Hh3cDot11WIPSHoneyPotEntry ::= SEQUENCE {
        hh3cDot11WIPSHoneyPotPlyName        OCTET STRING,
        hh3cDot11WIPSHoneyPotSim            Integer32,
        hh3cDot11WIPSHoneyPotQuiet          Integer32,
        hh3cDot11WIPSHoneyPotStatus         Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSHoneyPotPlyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the detect policy name."
    ::= { hh3cDot11WIPSHoneyPotEntry 1 }

hh3cDot11WIPSHoneyPotSim OBJECT-TYPE
    SYNTAX Integer32 (70..100)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the similarity-value of matching SSID."
    ::= { hh3cDot11WIPSHoneyPotEntry 2 }

hh3cDot11WIPSHoneyPotQuiet OBJECT-TYPE
     SYNTAX Integer32 (5..604800)
     MAX-ACCESS read-write
     STATUS current
     DESCRIPTION
         "Represents a quiet time after the warning log had been sent."
     ::= { hh3cDot11WIPSHoneyPotEntry 3 }

hh3cDot11WIPSHoneyPotStatus OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of detect honey-pot."
    ::= { hh3cDot11WIPSHoneyPotEntry 4 }

hh3cDot11WIPSAPFldTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSAPFldEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table defines the detect of AP-flood."
    ::= { hh3cDot11WIPSConfigGroup 22 }

hh3cDot11WIPSAPFldEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSAPFldEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the enable status of detect AP-flood."
    INDEX { hh3cDot11WIPSAPFldPolicyName }
    ::= { hh3cDot11WIPSAPFldTable 1 }

Hh3cDot11WIPSAPFldEntry ::= SEQUENCE {
        hh3cDot11WIPSAPFldPolicyName        OCTET STRING,
        hh3cDot11WIPSAPFldApnum             Integer32,
        hh3cDot11WIPSAPFldExceed            Integer32,
        hh3cDot11WIPSAPFldQuiet             Integer32,
        hh3cDot11WIPSAPFldStatus            Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSAPFldPolicyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the detect policy name."
    ::= { hh3cDot11WIPSAPFldEntry 1 }

hh3cDot11WIPSAPFldApnum OBJECT-TYPE
    SYNTAX Integer32 (10..200)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents allowable AP devices number in a wireless network."
    ::= { hh3cDot11WIPSAPFldEntry 2 }

hh3cDot11WIPSAPFldExceed OBJECT-TYPE
     SYNTAX Integer32 (10..200)
     MAX-ACCESS read-write
     STATUS current
     DESCRIPTION
         "Represents the allowable maximum AP devices number had exceed."
     ::= { hh3cDot11WIPSAPFldEntry 3 }

hh3cDot11WIPSAPFldQuiet OBJECT-TYPE
     SYNTAX Integer32 (5..604800)
     MAX-ACCESS read-write
     STATUS current
     DESCRIPTION
         "Represents a quiet time after the warning log had been sent."
     ::= { hh3cDot11WIPSAPFldEntry 4 }

hh3cDot11WIPSAPFldStatus OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of detect AP-flood."
    ::= { hh3cDot11WIPSAPFldEntry 5 }

hh3cDot11WIPSCtmManualsTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSCtmManualsEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "This table contains the manual countermeasure information."
    ::= { hh3cDot11WIPSConfigGroup 23 }

hh3cDot11WIPSCtmManualsEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSCtmManualsEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about manual countermeasure."
    INDEX { hh3cDot11WIPSCtmManualsPlyName, hh3cDot11WIPSCtmManualsMacAddr }
    ::= { hh3cDot11WIPSCtmManualsTable 1 }

Hh3cDot11WIPSCtmManualsEntry ::= SEQUENCE {
        hh3cDot11WIPSCtmManualsPlyName    OCTET STRING,
        hh3cDot11WIPSCtmManualsMacAddr    MacAddress,
        hh3cDot11WIPSCtmManualsRowStus     RowStatus
     }

hh3cDot11WIPSCtmManualsPlyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the policy name."
    ::= { hh3cDot11WIPSCtmManualsEntry 1 }

hh3cDot11WIPSCtmManualsMacAddr OBJECT-TYPE
    SYNTAX MacAddress
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the MAC address."
    ::= { hh3cDot11WIPSCtmManualsEntry 2 }

hh3cDot11WIPSCtmManualsRowStus OBJECT-TYPE
    SYNTAX RowStatus
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "The status of this table entry."
    ::= { hh3cDot11WIPSCtmManualsEntry 3 }

hh3cDot11WIPSCtmSensorTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSCtmSensorEntry

    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the countermeasure all sensor information."
    ::= { hh3cDot11WIPSConfigGroup 24 }

hh3cDot11WIPSCtmSensorEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSCtmSensorEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about countermeasure all sensor."
    INDEX { hh3cDot11WIPSCtmSensorPolicyName }
    ::= { hh3cDot11WIPSCtmSensorTable 1 }

Hh3cDot11WIPSCtmSensorEntry ::= SEQUENCE {
        hh3cDot11WIPSCtmSensorPolicyName        OCTET STRING,
        hh3cDot11WIPSCtmSensoriStatus           Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSCtmSensorPolicyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the policy name."
    ::= { hh3cDot11WIPSCtmSensorEntry 1 }

hh3cDot11WIPSCtmSensoriStatus OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The status of this table entry."
    ::= { hh3cDot11WIPSCtmSensorEntry 2 }


hh3cDot11WIPSInvOuiStateTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSInvOuiStateEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the invalid OUI classification information."
    ::= { hh3cDot11WIPSConfigGroup 25 }

hh3cDot11WIPSInvOuiStateEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSInvOuiStateEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains about status of invalid OUI classification."
    INDEX { hh3cDot11WIPSInvOuiStaPlyName }
    ::= { hh3cDot11WIPSInvOuiStateTable 1 }

Hh3cDot11WIPSInvOuiStateEntry ::= SEQUENCE {
        hh3cDot11WIPSInvOuiStaPlyName       OCTET STRING,
        hh3cDot11WIPSInvOuiStaiStatus       Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSInvOuiStaPlyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the policy name."
    ::= { hh3cDot11WIPSInvOuiStateEntry 1 }

hh3cDot11WIPSInvOuiStaiStatus OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of invalid OUI classification."
    ::= { hh3cDot11WIPSInvOuiStateEntry 2 }

hh3cDot11WIPSAPClaAuthTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSAPClaAuthEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the enable status of
         WIPS AP classification authentication."
    ::= { hh3cDot11WIPSConfigGroup 26 }

hh3cDot11WIPSAPClaAuthEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSAPClaAuthEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the enable status of
         WIPS AP classification authentication."
    INDEX { hh3cDot11WIPSAPClaAuthRuleID }
    ::= { hh3cDot11WIPSAPClaAuthTable 1 }

Hh3cDot11WIPSAPClaAuthEntry ::= SEQUENCE {
        hh3cDot11WIPSAPClaAuthRuleID        Integer32,
        hh3cDot11WIPSAPClaAuthMethod        Hh3cDot11WIPSAPClaAuthMethods,
        hh3cDot11WIPSAPClaAuthType          Hh3cDot11WIPSAPClassifyCmpType,
        hh3cDot11WIPSAPClaAuthStatus        Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSAPClaAuthRuleID OBJECT-TYPE
    SYNTAX Integer32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the rule ID."
    ::= { hh3cDot11WIPSAPClaAuthEntry 1 }

hh3cDot11WIPSAPClaAuthMethod OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSAPClaAuthMethods
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the AP classification authentication method."
    ::= { hh3cDot11WIPSAPClaAuthEntry 2 }

hh3cDot11WIPSAPClaAuthType OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSAPClassifyCmpType
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the AP classification authentication compare type."
    ::= { hh3cDot11WIPSAPClaAuthEntry 3 }

hh3cDot11WIPSAPClaAuthStatus OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of AP classification authentication."
    ::= { hh3cDot11WIPSAPClaAuthEntry 4 }

hh3cDot11WIPSAPClaCltOnlTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSAPClaCltOnlEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the enable status of
         AP classification clinet online."
    ::= { hh3cDot11WIPSConfigGroup 27 }

hh3cDot11WIPSAPClaCltOnlEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSAPClaCltOnlEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the enable status of
         AP classification clinet online."
    INDEX { hh3cDot11WIPSAPClaCltOnlRuleID }
    ::= { hh3cDot11WIPSAPClaCltOnlTable 1 }

Hh3cDot11WIPSAPClaCltOnlEntry ::= SEQUENCE {
        hh3cDot11WIPSAPClaCltOnlRuleID      Integer32,
        hh3cDot11WIPSAPClaCltOnlV1          Integer32,
        hh3cDot11WIPSAPClaCltOnlV2          Integer32,
        hh3cDot11WIPSAPClaCltOnlSts         Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSAPClaCltOnlRuleID OBJECT-TYPE
    SYNTAX Integer32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the rule ID."
    ::= { hh3cDot11WIPSAPClaCltOnlEntry 1 }

hh3cDot11WIPSAPClaCltOnlV1 OBJECT-TYPE
    SYNTAX Integer32 (0..128)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the AP classification clinet online value1."
    ::= { hh3cDot11WIPSAPClaCltOnlEntry 2 }

hh3cDot11WIPSAPClaCltOnlV2 OBJECT-TYPE
    SYNTAX Integer32 (0..128)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the AP classification clinet online value2."
    ::= { hh3cDot11WIPSAPClaCltOnlEntry 3 }

hh3cDot11WIPSAPClaCltOnlSts OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of WIPS AP classification clinet online."
    ::= { hh3cDot11WIPSAPClaCltOnlEntry 4 }

hh3cDot11WIPSAPClaDiscrTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSAPClaDiscrEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the enable status of AP classification discover."
    ::= { hh3cDot11WIPSConfigGroup 28 }

hh3cDot11WIPSAPClaDiscrEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSAPClaDiscrEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the enable status of AP classification discover."
    INDEX { hh3cDot11WIPSAPClaDiscrRuleID }
    ::= { hh3cDot11WIPSAPClaDiscrTable 1 }

Hh3cDot11WIPSAPClaDiscrEntry ::= SEQUENCE {
        hh3cDot11WIPSAPClaDiscrRuleID       Integer32,
        hh3cDot11WIPSAPClaDiscrV1           Integer32,
        hh3cDot11WIPSAPClaDiscrV2           Integer32,
        hh3cDot11WIPSAPClaDiscrSta          Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSAPClaDiscrRuleID OBJECT-TYPE
    SYNTAX Integer32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the rule ID."
    ::= { hh3cDot11WIPSAPClaDiscrEntry 1 }

hh3cDot11WIPSAPClaDiscrV1 OBJECT-TYPE
    SYNTAX Integer32 (1..128)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the AP classification discover value1."
    ::= { hh3cDot11WIPSAPClaDiscrEntry 2 }

hh3cDot11WIPSAPClaDiscrV2 OBJECT-TYPE
    SYNTAX Integer32 (1..128)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the AP classification discover value2."
    ::= { hh3cDot11WIPSAPClaDiscrEntry 3 }

hh3cDot11WIPSAPClaDiscrSta OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of AP classification discover."
    ::= { hh3cDot11WIPSAPClaDiscrEntry 4 }

--
-- APClassifyRssi
--
hh3cDot11WIPSAPClaRssiTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSAPClaRssiEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the enable status of AP classification rssi."
    ::= { hh3cDot11WIPSConfigGroup 29 }

hh3cDot11WIPSAPClaRssiEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSAPClaRssiEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the enable status of AP classification rssi."
    INDEX { hh3cDot11WIPSAPClaRssiRuleID }
    ::= { hh3cDot11WIPSAPClaRssiTable 1 }

Hh3cDot11WIPSAPClaRssiEntry ::= SEQUENCE {
        hh3cDot11WIPSAPClaRssiRuleID        Integer32,
        hh3cDot11WIPSAPClaRssiV1            Integer32,
        hh3cDot11WIPSAPClaRssiV2            Integer32,
        hh3cDot11WIPSAPClaRssiSta           Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSAPClaRssiRuleID OBJECT-TYPE
    SYNTAX Integer32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the rule ID."
    ::= { hh3cDot11WIPSAPClaRssiEntry 1 }

hh3cDot11WIPSAPClaRssiV1 OBJECT-TYPE
    SYNTAX Integer32 (0..100)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the AP classification rssi value1."
    ::= { hh3cDot11WIPSAPClaRssiEntry 2 }

hh3cDot11WIPSAPClaRssiV2 OBJECT-TYPE
    SYNTAX Integer32 (0..100)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the AP classification rssi value2."
    ::= { hh3cDot11WIPSAPClaRssiEntry 3 }

hh3cDot11WIPSAPClaRssiSta OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of AP classification rssi."
    ::= { hh3cDot11WIPSAPClaRssiEntry 4 }

hh3cDot11WIPSAPClaUpdurTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSAPClaUpdurEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the enable status of AP classification upduration."
    ::= { hh3cDot11WIPSConfigGroup 30 }

hh3cDot11WIPSAPClaUpdurEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSAPClaUpdurEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the enable status of AP classification upduration."
    INDEX { hh3cDot11WIPSAPClaUpdurRuleID }
    ::= { hh3cDot11WIPSAPClaUpdurTable 1 }

Hh3cDot11WIPSAPClaUpdurEntry ::= SEQUENCE {
        hh3cDot11WIPSAPClaUpdurRuleID       Integer32,
        hh3cDot11WIPSAPClaUpdurV1           Integer32,
        hh3cDot11WIPSAPClaUpdurV2           Integer32,
        hh3cDot11WIPSAPClaUpdurSta          Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSAPClaUpdurRuleID OBJECT-TYPE
    SYNTAX Integer32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the rule ID."
    ::= { hh3cDot11WIPSAPClaUpdurEntry 1 }

hh3cDot11WIPSAPClaUpdurV1 OBJECT-TYPE
    SYNTAX Integer32 (0..2592000)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the AP classification upduration value1."
    ::= { hh3cDot11WIPSAPClaUpdurEntry 2 }

hh3cDot11WIPSAPClaUpdurV2 OBJECT-TYPE
    SYNTAX Integer32 (0..2592000)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the AP classification upduration value2."
    ::= { hh3cDot11WIPSAPClaUpdurEntry 3 }

hh3cDot11WIPSAPClaUpdurSta OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of AP classification upduration."
    ::= { hh3cDot11WIPSAPClaUpdurEntry 4 }

hh3cDot11WIPSAPClaOuiTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSAPClaOuiEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the enable status of AP classification oui."
    ::= { hh3cDot11WIPSConfigGroup 31 }

hh3cDot11WIPSAPClaOuiEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSAPClaOuiEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the enable status of AP classification oui."
    INDEX { hh3cDot11WIPSAPClaOuiRuleID }
    ::= { hh3cDot11WIPSAPClaOuiTable 1 }

Hh3cDot11WIPSAPClaOuiEntry ::= SEQUENCE {
        hh3cDot11WIPSAPClaOuiRuleID        Integer32,
        hh3cDot11WIPSAPClaOuiMac           Hh3cDot11WIPSOuiAddress,
        hh3cDot11WIPSAPClaOuiStatus        Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSAPClaOuiRuleID OBJECT-TYPE
    SYNTAX Integer32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the rule ID."
    ::= { hh3cDot11WIPSAPClaOuiEntry 1 }

hh3cDot11WIPSAPClaOuiMac OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSOuiAddress
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the AP classification oui."
    ::= { hh3cDot11WIPSAPClaOuiEntry 2 }

hh3cDot11WIPSAPClaOuiStatus OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of AP classification oui."
    ::= { hh3cDot11WIPSAPClaOuiEntry 3 }

hh3cDot11WIPSAPClaSryTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSAPClaSryEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the enable status of AP classification security."
    ::= { hh3cDot11WIPSConfigGroup 32 }

hh3cDot11WIPSAPClaSryEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSAPClaSryEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the enable status of AP classification security."
    INDEX { hh3cDot11WIPSAPClaSryRuleID }
    ::= { hh3cDot11WIPSAPClaSryTable 1 }

Hh3cDot11WIPSAPClaSryEntry ::= SEQUENCE {
        hh3cDot11WIPSAPClaSryRuleID         Integer32,
        hh3cDot11WIPSAPClaSryType           Hh3cDot11WIPSAPClaSecurityType,
        hh3cDot11WIPSAPClaSryCmpType        Hh3cDot11WIPSAPClassifyCmpType,
        hh3cDot11WIPSAPClaSrySta            Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSAPClaSryRuleID OBJECT-TYPE
    SYNTAX Integer32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the rule ID."
    ::= { hh3cDot11WIPSAPClaSryEntry 1 }

hh3cDot11WIPSAPClaSryType OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSAPClaSecurityType
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the AP classification security."
    ::= { hh3cDot11WIPSAPClaSryEntry 2 }

hh3cDot11WIPSAPClaSryCmpType OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSAPClassifyCmpType
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the AP classification security."
    ::= { hh3cDot11WIPSAPClaSryEntry 3 }

hh3cDot11WIPSAPClaSrySta OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of AP classification security."
    ::= { hh3cDot11WIPSAPClaSryEntry 4 }

hh3cDot11WIPSAPClaSsidTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSAPClaSsidEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the enable status of AP classification ssid."
    ::= { hh3cDot11WIPSConfigGroup 33 }

hh3cDot11WIPSAPClaSsidEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSAPClaSsidEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the enable status of AP classification ssid."
    INDEX { hh3cDot11WIPSAPClaSsidRuleID }
    ::= { hh3cDot11WIPSAPClaSsidTable 1 }

Hh3cDot11WIPSAPClaSsidEntry ::= SEQUENCE {
        hh3cDot11WIPSAPClaSsidRuleID         Integer32,
        hh3cDot11WIPSAPClaSsidName           OCTET STRING,
        hh3cDot11WIPSAPClaSsidcase           TruthValue,
        hh3cDot11WIPSAPClaSsidCmpType        Hh3cDot11WIPSAPClasSsidCmpType,
        hh3cDot11WIPSAPClaSsidStatus         Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSAPClaSsidRuleID OBJECT-TYPE
    SYNTAX Integer32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the rule ID."
    ::= { hh3cDot11WIPSAPClaSsidEntry 1 }

hh3cDot11WIPSAPClaSsidName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..32))
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the AP classification ssid name."
    ::= { hh3cDot11WIPSAPClaSsidEntry 2 }

hh3cDot11WIPSAPClaSsidcase OBJECT-TYPE
    SYNTAX TruthValue
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the AP classification case-sensitive."
    ::= { hh3cDot11WIPSAPClaSsidEntry 3 }

hh3cDot11WIPSAPClaSsidCmpType OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSAPClasSsidCmpType
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the AP classification ssid compare type."
    ::= { hh3cDot11WIPSAPClaSsidEntry 4 }

hh3cDot11WIPSAPClaSsidStatus OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of AP classification ssid."
    ::= { hh3cDot11WIPSAPClaSsidEntry 5 }

hh3cDot11WIPSDtcSigTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSDtcSigEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table provides information about detect signature."
    ::= { hh3cDot11WIPSConfigGroup 34 }

hh3cDot11WIPSDtcSigEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSDtcSigEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about signature detect."
    INDEX { hh3cDot11WIPSDtcSigPolicyName }
    ::= { hh3cDot11WIPSDtcSigTable 1 }

Hh3cDot11WIPSDtcSigEntry ::= SEQUENCE {
        hh3cDot11WIPSDtcSigPolicyName               OCTET STRING,
        hh3cDot11WIPSDtcSigInterval                 Integer32,
        hh3cDot11WIPSDtcSigQuiet                    Integer32,
        hh3cDot11WIPSDtcSigThreshold                Integer32,
        hh3cDot11WIPSDtcSigStatus                   Hh3cDot11WIPSEnabledStatus
      }

hh3cDot11WIPSDtcSigPolicyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the name of the policy."
    ::= { hh3cDot11WIPSDtcSigEntry 1 }

hh3cDot11WIPSDtcSigInterval OBJECT-TYPE
    SYNTAX Integer32 (1..3600)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the interval of signature detect."
    ::= { hh3cDot11WIPSDtcSigEntry 2 }

hh3cDot11WIPSDtcSigQuiet OBJECT-TYPE
    SYNTAX Integer32 (5..604800)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the quiet of signature detect."
    ::= { hh3cDot11WIPSDtcSigEntry 3 }

hh3cDot11WIPSDtcSigThreshold OBJECT-TYPE
    SYNTAX Integer32 (1..100000)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the threshold of signature detect."
    ::= { hh3cDot11WIPSDtcSigEntry 4 }

hh3cDot11WIPSDtcSigStatus OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The status of this table entry."
    ::= { hh3cDot11WIPSDtcSigEntry 5 }

hh3cDot11WIPSPolicyTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSPolicyEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table provides information about policy."
    ::= { hh3cDot11WIPSConfigGroup 35 }

hh3cDot11WIPSPolicyEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSPolicyEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the enable status of policy configuration."
    INDEX { hh3cDot11WIPSPolicyType ,hh3cDot11WIPSPolicyName}
    ::= { hh3cDot11WIPSPolicyTable 1 }

Hh3cDot11WIPSPolicyEntry ::= SEQUENCE {
        hh3cDot11WIPSPolicyType                 Hh3cDot11WIPSPolicyTypeValue,
        hh3cDot11WIPSPolicyName                 OCTET STRING,
        hh3cDot11WIPSPolicyRowStatus            RowStatus
     }

hh3cDot11WIPSPolicyType OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSPolicyTypeValue
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the type of policy."
    ::= { hh3cDot11WIPSPolicyEntry 1 }

hh3cDot11WIPSPolicyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the name of the policy."
    ::= { hh3cDot11WIPSPolicyEntry 2 }

hh3cDot11WIPSPolicyRowStatus OBJECT-TYPE
    SYNTAX RowStatus
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "The status of this table entry."
    ::= { hh3cDot11WIPSPolicyEntry 3 }

hh3cDot11WIPSSigFrameTypeTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSSigFrameTypeEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the enable status of signature frame type."
    ::= { hh3cDot11WIPSConfigGroup 36 }

hh3cDot11WIPSSigFrameTypeEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSSigFrameTypeEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the status of signature frame type."
    INDEX { hh3cDot11WIPSSigFrameTypeRuleId }
    ::= { hh3cDot11WIPSSigFrameTypeTable 1 }

Hh3cDot11WIPSSigFrameTypeEntry ::= SEQUENCE {
        hh3cDot11WIPSSigFrameTypeRuleId         Integer32,
        hh3cDot11WIPSSigFrameType               Hh3cDot11WIPSSigFrameTypes,
        hh3cDot11WIPSSigFrameSubType            Hh3cDot11WIPSSigFrameSubTypes,
        hh3cDot11WIPSSigFrameTypeStatus         Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSSigFrameTypeRuleId OBJECT-TYPE
    SYNTAX Integer32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the signature rule ID."
    ::= { hh3cDot11WIPSSigFrameTypeEntry 1 }

hh3cDot11WIPSSigFrameType OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSSigFrameTypes
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the signature frame type."
    ::= { hh3cDot11WIPSSigFrameTypeEntry 2 }

hh3cDot11WIPSSigFrameSubType OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSSigFrameSubTypes
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the signature frame subtype."
    ::= { hh3cDot11WIPSSigFrameTypeEntry 3 }

hh3cDot11WIPSSigFrameTypeStatus OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of signature frame type."
    ::= { hh3cDot11WIPSSigFrameTypeEntry 4 }

hh3cDot11WIPSCtmTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSCtmEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the countermeasure commands."
    ::= { hh3cDot11WIPSConfigGroup 37 }

hh3cDot11WIPSCtmEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSCtmEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the enable command of countermeasure."
    INDEX { hh3cDot11WIPSCtmPolicyName, hh3cDot11WIPSCtmClassifyType }
    ::= { hh3cDot11WIPSCtmTable 1 }

Hh3cDot11WIPSCtmEntry ::= SEQUENCE {
        hh3cDot11WIPSCtmPolicyName       OCTET STRING,
        hh3cDot11WIPSCtmClassifyType     Hh3cDot11WIPSCtmType,
        hh3cDot11WIPSCtmStatus           Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSCtmPolicyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the countermeasure policy name."
    ::= { hh3cDot11WIPSCtmEntry 1 }

hh3cDot11WIPSCtmClassifyType OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSCtmType
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents a countermeasure command identifier."
    ::= { hh3cDot11WIPSCtmEntry 2 }

hh3cDot11WIPSCtmStatus OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of one countermeasure command."
    ::= { hh3cDot11WIPSCtmEntry 3 }

hh3cDot11WIPSSigPatternTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSSigPatternEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table defines signature pattern."
    ::= { hh3cDot11WIPSConfigGroup 38 }

hh3cDot11WIPSSigPatternEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSSigPatternEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about signature pattern."
    INDEX { hh3cDot11WIPSSigPatternRuleId, hh3cDot11WIPSSigPatternNum }
    ::= { hh3cDot11WIPSSigPatternTable 1 }

Hh3cDot11WIPSSigPatternEntry ::= SEQUENCE {
        hh3cDot11WIPSSigPatternRuleId           Integer32,
        hh3cDot11WIPSSigPatternNum              Integer32,
        hh3cDot11WIPSSigPatternOffset           Integer32,
        hh3cDot11WIPSSigPatternMask             OCTET STRING,
        hh3cDot11WIPSSigPatternValue1           Integer32,
        hh3cDot11WIPSSigPatternValue2           Integer32,
        hh3cDot11WIPSSigPatternFromPld          TruthValue,
        hh3cDot11WIPSSigPatternRowStatus        RowStatus
     }

hh3cDot11WIPSSigPatternRuleId OBJECT-TYPE
    SYNTAX Integer32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the signature pattern rule id."
    ::= { hh3cDot11WIPSSigPatternEntry 1 }

hh3cDot11WIPSSigPatternNum OBJECT-TYPE
    SYNTAX Integer32 (0..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the signature pattern pattern number."
    ::= { hh3cDot11WIPSSigPatternEntry 2 }

hh3cDot11WIPSSigPatternOffset OBJECT-TYPE
    SYNTAX Integer32 (0..2346)
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "Represents the signature pattern offset."
    ::= { hh3cDot11WIPSSigPatternEntry 3 }

hh3cDot11WIPSSigPatternMask OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..4))
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "Represents the signature pattern mask."
    ::= { hh3cDot11WIPSSigPatternEntry 4 }

hh3cDot11WIPSSigPatternValue1 OBJECT-TYPE
    SYNTAX Integer32 (0..65535)
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "Represents the signature pattern value1."
    ::= { hh3cDot11WIPSSigPatternEntry 5 }

hh3cDot11WIPSSigPatternValue2 OBJECT-TYPE
    SYNTAX Integer32 (0..65535)
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "Represents the signature pattern value2."
    ::= { hh3cDot11WIPSSigPatternEntry 6 }

hh3cDot11WIPSSigPatternFromPld OBJECT-TYPE
    SYNTAX TruthValue
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "Represents the signature pattern frome payload."
    ::= { hh3cDot11WIPSSigPatternEntry 7 }

hh3cDot11WIPSSigPatternRowStatus OBJECT-TYPE
    SYNTAX RowStatus
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
        "The status of this table entry."
    ::= { hh3cDot11WIPSSigPatternEntry 8 }

hh3cDot11WIPSSigSeqNumTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSSigSeqNumEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the infomation about signature sequence number."
    ::= { hh3cDot11WIPSConfigGroup 39 }

hh3cDot11WIPSSigSeqNumEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSSigSeqNumEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the infomation about signature sequence number."
    INDEX { hh3cDot11WIPSSigSeqNumRuleId }
    ::= { hh3cDot11WIPSSigSeqNumTable 1 }

Hh3cDot11WIPSSigSeqNumEntry ::= SEQUENCE {
        hh3cDot11WIPSSigSeqNumRuleId          Integer32,
        hh3cDot11WIPSSigSeqNumValue1          Integer32,
        hh3cDot11WIPSSigSeqNumValue2          Integer32,
        hh3cDot11WIPSSigSeqNumStatus          Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSSigSeqNumRuleId OBJECT-TYPE
    SYNTAX Integer32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the signature rule ID."
    ::= { hh3cDot11WIPSSigSeqNumEntry 1 }

hh3cDot11WIPSSigSeqNumValue1 OBJECT-TYPE
    SYNTAX Integer32 (0..4095)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents sequence number value1."
    ::= { hh3cDot11WIPSSigSeqNumEntry 2 }

hh3cDot11WIPSSigSeqNumValue2 OBJECT-TYPE
    SYNTAX Integer32 (0..4095)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents sequence number value2 ."
    ::= { hh3cDot11WIPSSigSeqNumEntry 3 }

hh3cDot11WIPSSigSeqNumStatus OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of signature sequence number."
    ::= { hh3cDot11WIPSSigSeqNumEntry 4 }

hh3cDot11WIPSSigSsidTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSSigSsidEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the infomation about signature SSID."
    ::= { hh3cDot11WIPSConfigGroup 40 }

hh3cDot11WIPSSigSsidEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSSigSsidEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the infomation about signature SSID."
    INDEX { hh3cDot11WIPSSigSsidRuleId }
    ::= { hh3cDot11WIPSSigSsidTable 1 }

Hh3cDot11WIPSSigSsidEntry ::= SEQUENCE {
        hh3cDot11WIPSSigSsidRuleId            Integer32,
        hh3cDot11WIPSSigSsidSsid              OCTET STRING,
        hh3cDot11WIPSSigSsidCase              TruthValue,
        hh3cDot11WIPSSigSsidMatchType         Hh3cDot11WIPSSigSsidMatchTypes,
        hh3cDot11WIPSSigSsidStatus            Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSSigSsidRuleId OBJECT-TYPE
    SYNTAX Integer32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the signature rule ID."
    ::= { hh3cDot11WIPSSigSsidEntry 1 }

hh3cDot11WIPSSigSsidSsid OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..32))
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the name of signature SSID."
    ::= { hh3cDot11WIPSSigSsidEntry 2 }

hh3cDot11WIPSSigSsidCase OBJECT-TYPE
    SYNTAX TruthValue
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the case sensitive of signature SSID."
    ::= { hh3cDot11WIPSSigSsidEntry 3 }

hh3cDot11WIPSSigSsidMatchType OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSSigSsidMatchTypes
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the match type of signature SSID."
    ::= { hh3cDot11WIPSSigSsidEntry 4 }

hh3cDot11WIPSSigSsidStatus OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of signature SSID."
    ::= { hh3cDot11WIPSSigSsidEntry 5 }

hh3cDot11WIPSSigSsidLengthTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSSigSsidLengthEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the infomation about signature SSID length."
    ::= { hh3cDot11WIPSConfigGroup 41 }

hh3cDot11WIPSSigSsidLengthEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSSigSsidLengthEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the infomation about signature SSID length."
    INDEX { hh3cDot11WIPSSigSsidLengthRuleId }
    ::= { hh3cDot11WIPSSigSsidLengthTable 1 }

Hh3cDot11WIPSSigSsidLengthEntry ::= SEQUENCE {
        hh3cDot11WIPSSigSsidLengthRuleId          Integer32,
        hh3cDot11WIPSSigSsidLengthValue1          Integer32,
        hh3cDot11WIPSSigSsidLengthValue2          Integer32,
        hh3cDot11WIPSSigSsidLengthStatus          Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSSigSsidLengthRuleId OBJECT-TYPE
    SYNTAX Integer32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the signature rule ID."
    ::= { hh3cDot11WIPSSigSsidLengthEntry 1 }

hh3cDot11WIPSSigSsidLengthValue1 OBJECT-TYPE
    SYNTAX Integer32 (1..32)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents signature SSID length value1."
    ::= { hh3cDot11WIPSSigSsidLengthEntry 2 }

hh3cDot11WIPSSigSsidLengthValue2 OBJECT-TYPE
    SYNTAX Integer32 (1..32)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents signature SSID length value2 ."
    ::= { hh3cDot11WIPSSigSsidLengthEntry 3 }

hh3cDot11WIPSSigSsidLengthStatus OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of signature SSID length."
    ::= { hh3cDot11WIPSSigSsidLengthEntry 4 }

hh3cDot11WIPSFldDetectTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSFldDetectEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "This table contains the flood detect information."
    ::= { hh3cDot11WIPSConfigGroup 42 }

hh3cDot11WIPSFldDetectEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSFldDetectEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about one type of flood detect."
    INDEX { hh3cDot11WIPSFldDetectPlyName, hh3cDot11WIPSFldDetectType }
    ::= { hh3cDot11WIPSFldDetectTable 1 }

Hh3cDot11WIPSFldDetectEntry ::= SEQUENCE {
        hh3cDot11WIPSFldDetectPlyName       OCTET STRING,
        hh3cDot11WIPSFldDetectType          Hh3cDot11WIPSFldDctType,
        hh3cDot11WIPSFldDetectInter         Integer32,
        hh3cDot11WIPSFldDetectThresh        Integer32,
        hh3cDot11WIPSFldDetectQuiet         Integer32,
        hh3cDot11WIPSFldDetectStatus        Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSFldDetectPlyName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the policy name of detect."
    ::= { hh3cDot11WIPSFldDetectEntry 1 }

hh3cDot11WIPSFldDetectType OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSFldDctType
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the type of flood detect."
    ::= { hh3cDot11WIPSFldDetectEntry 2 }

hh3cDot11WIPSFldDetectInter OBJECT-TYPE
    SYNTAX Integer32 (1..3600)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the interval of flood detect."
    ::= { hh3cDot11WIPSFldDetectEntry 3 }

hh3cDot11WIPSFldDetectThresh OBJECT-TYPE
    SYNTAX Integer32 (1..100000)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the threshold of flood detect."
    ::= { hh3cDot11WIPSFldDetectEntry 4 }

hh3cDot11WIPSFldDetectQuiet OBJECT-TYPE
    SYNTAX Integer32 (5..604800)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the quiet time of flood detect."
    ::= { hh3cDot11WIPSFldDetectEntry 5 }

hh3cDot11WIPSFldDetectStatus OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
         "The enable status of flood detect."
    ::= { hh3cDot11WIPSFldDetectEntry 6 }

hh3cDot11WIPSSignatureMacTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSSignatureMacEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the infomation about signature MAC address."
    ::= { hh3cDot11WIPSConfigGroup 43 }

hh3cDot11WIPSSignatureMacEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSSignatureMacEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the infomation about signature MAC address."
    INDEX { hh3cDot11WIPSSignatureMacRuleId }
    ::= { hh3cDot11WIPSSignatureMacTable 1 }

Hh3cDot11WIPSSignatureMacEntry ::= SEQUENCE {
        hh3cDot11WIPSSignatureMacRuleId           Integer32,
        hh3cDot11WIPSSignatureMacMacTyp           Hh3cDot11WIPSSigMacMacType,
        hh3cDot11WIPSSignatureMacMacAdd           MacAddress,
        hh3cDot11WIPSSignatureMacStatus           Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSSignatureMacRuleId OBJECT-TYPE
    SYNTAX Integer32 (1..65535)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the signature rule ID."
    ::= { hh3cDot11WIPSSignatureMacEntry 1 }

hh3cDot11WIPSSignatureMacMacTyp OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSSigMacMacType
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the type of signature MAC address."
    ::= { hh3cDot11WIPSSignatureMacEntry 2 }

hh3cDot11WIPSSignatureMacMacAdd OBJECT-TYPE
    SYNTAX MacAddress
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "Represents the MAC address of signature MAC address."
    ::= { hh3cDot11WIPSSignatureMacEntry 3 }

hh3cDot11WIPSSignatureMacStatus OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of signature MAC address."
    ::= { hh3cDot11WIPSSignatureMacEntry 4 }

hh3cDot11WIPSNatDetectTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSNatDetectEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains the enable status of WIPS NAT detect."
    ::= { hh3cDot11WIPSConfigGroup 45 }

hh3cDot11WIPSNatDetectEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSNatDetectEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains the enable status of NAT detect."
    INDEX { hh3cDot11WIPSNatDetectApName }
    ::= { hh3cDot11WIPSNatDetectTable 1 }

Hh3cDot11WIPSNatDetectEntry ::= SEQUENCE {
        hh3cDot11WIPSNatDetectApName       OCTET STRING,
        hh3cDot11WIPSNatDetectStatus       Hh3cDot11WIPSEnabledStatus
     }

hh3cDot11WIPSNatDetectApName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..64))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the name of AP."
    ::= { hh3cDot11WIPSNatDetectEntry 1 }

hh3cDot11WIPSNatDetectStatus OBJECT-TYPE
    SYNTAX  Hh3cDot11WIPSEnabledStatus
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
        "The enable status of NAT detect on AP."
    ::= { hh3cDot11WIPSNatDetectEntry 2 }

hh3cDot11WIPSDctAPTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSDctAPEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains BSS information for APs
         detected by WIPS."
    ::= { hh3cDot11WIPSDataGroup 1 }

hh3cDot11WIPSDctAPEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSDctAPEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains BSS information for one AP."
    INDEX { hh3cDot11WIPSDctAPVSD, hh3cDot11WIPSDctAPMac }
    ::= { hh3cDot11WIPSDctAPTable 1 }

Hh3cDot11WIPSDctAPEntry ::= SEQUENCE {
        hh3cDot11WIPSDctAPVSD               OCTET STRING,
        hh3cDot11WIPSDctAPMac               MacAddress,
        hh3cDot11WIPSDctAPClassifyWay       Hh3cDot11WIPSDevClassifyWay,
        hh3cDot11WIPSDctAPClassifyType      Hh3cDot11WIPSAPClassifyType,
        hh3cDot11WIPSDctAPSeverityLevel     Unsigned32,
        hh3cDot11WIPSDctAPStatus            Hh3cDot11WIPSDevStatus,
        hh3cDot11WIPSDctAPStatusDut         TimeTicks,
        hh3cDot11WIPSDctAPVendor            OCTET STRING,
        hh3cDot11WIPSDctAPSSID              OCTET STRING,
        hh3cDot11WIPSDctAPSecurity          Hh3cDot11WIPSAPSecurityType,
        hh3cDot11WIPSDctAPEncryptMethod     Hh3cDot11WIPSEncryptMethod,
        hh3cDot11WIPSDctAPAuthMethod        Hh3cDot11WIPSAuthMethod,
        hh3cDot11WIPSDctAPRadioType         Hh3cDot11WIPSRadioType,
        hh3cDot11WIPSDctAPWorkChannel       Hh3cDot11WIPSChannel,
        hh3cDot11WIPSDctAPIsCountered       TruthValue,
        hh3cDot11WIPSDctAPAttachStaNum      Integer32,
        hh3cDot11WIPSDctAPRptSensorNum      Integer32,
        hh3cDot11WIPSDctAPIsBdcastSSID      TruthValue,
        hh3cDot11WIPSDctAPType              Hh3cDot11WIPSAPType,
        hh3cDot11WIPSDctAPIsQosSported      TruthValue,
        hh3cDot11WIPSDctAPBeaconItv         Integer32,
        hh3cDot11WIPSDctAPUpDuration        TimeTicks
     }

hh3cDot11WIPSDctAPVSD OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the virtual security domain in which the BSS was detected."
    ::= { hh3cDot11WIPSDctAPEntry 1 }

hh3cDot11WIPSDctAPMac OBJECT-TYPE
    SYNTAX MacAddress
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the Basic Service Set."
    ::= { hh3cDot11WIPSDctAPEntry 2 }

hh3cDot11WIPSDctAPClassifyWay OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSDevClassifyWay
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents by which way the AP is categorized."
    ::= { hh3cDot11WIPSDctAPEntry 3 }

hh3cDot11WIPSDctAPClassifyType OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSAPClassifyType
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the category of the AP."
    ::= { hh3cDot11WIPSDctAPEntry 4 }

hh3cDot11WIPSDctAPSeverityLevel OBJECT-TYPE
    SYNTAX Unsigned32 (0..100)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the security level of the detected AP."
    ::= { hh3cDot11WIPSDctAPEntry 5 }

hh3cDot11WIPSDctAPStatus OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSDevStatus
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the status of the AP detected by WIPS."
    ::= { hh3cDot11WIPSDctAPEntry 6 }

hh3cDot11WIPSDctAPStatusDut OBJECT-TYPE
    SYNTAX TimeTicks
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the duration of the AP status."
    ::= { hh3cDot11WIPSDctAPEntry 7 }

hh3cDot11WIPSDctAPVendor OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (0..127))
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the vendor of the AP detected by WIPS."
    ::= { hh3cDot11WIPSDctAPEntry 8 }

hh3cDot11WIPSDctAPSSID OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (0..32))
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the SSID that is broadcast by the AP."
    ::= { hh3cDot11WIPSDctAPEntry 9 }

hh3cDot11WIPSDctAPSecurity OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSAPSecurityType
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the security suites of the detected AP."
    ::= { hh3cDot11WIPSDctAPEntry 10 }

hh3cDot11WIPSDctAPEncryptMethod OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSEncryptMethod
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the encryption method used by the detected AP."
    ::= { hh3cDot11WIPSDctAPEntry 11 }

hh3cDot11WIPSDctAPAuthMethod OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSAuthMethod
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the authentication method used by the detected AP."
    ::= { hh3cDot11WIPSDctAPEntry 12 }

hh3cDot11WIPSDctAPRadioType OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSRadioType
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the radio type used by the detected AP."
    ::= { hh3cDot11WIPSDctAPEntry 13 }

hh3cDot11WIPSDctAPWorkChannel OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSChannel
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the radio channel on which the detected AP operates."
    ::= { hh3cDot11WIPSDctAPEntry 14 }

hh3cDot11WIPSDctAPIsCountered OBJECT-TYPE
    SYNTAX TruthValue
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents whether WIPS has taken countermeasures on the detected AP."
    ::= { hh3cDot11WIPSDctAPEntry 15 }

hh3cDot11WIPSDctAPAttachStaNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of clients associated with the detected AP."
    ::= { hh3cDot11WIPSDctAPEntry 16 }

hh3cDot11WIPSDctAPRptSensorNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of sensors that have detected the AP."
    ::= { hh3cDot11WIPSDctAPEntry 17 }

hh3cDot11WIPSDctAPIsBdcastSSID OBJECT-TYPE
    SYNTAX TruthValue
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents whether the detected AP is broadcasting the SSID."
    ::= { hh3cDot11WIPSDctAPEntry 18 }

hh3cDot11WIPSDctAPType OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSAPType
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the type of the detected AP."
    ::= { hh3cDot11WIPSDctAPEntry 19 }

hh3cDot11WIPSDctAPIsQosSported OBJECT-TYPE
    SYNTAX TruthValue
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the support of the detected AP for QoS."
    ::= { hh3cDot11WIPSDctAPEntry 20 }

hh3cDot11WIPSDctAPBeaconItv OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the beacon interval of the detected AP."
    ::= { hh3cDot11WIPSDctAPEntry 21 }

hh3cDot11WIPSDctAPUpDuration OBJECT-TYPE
    SYNTAX TimeTicks
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the amount of time that has elapsed since AP
        started to work, which is calculated by using beacon/probe
        response frame."
    ::= { hh3cDot11WIPSDctAPEntry 22 }

hh3cDot11WIPSDctStaTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSDctStaEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains information about stations detected by WIPS."
    ::= { hh3cDot11WIPSDataGroup 2 }

hh3cDot11WIPSDctStaEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSDctStaEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about a station
        detected by WIPS."
    INDEX { hh3cDot11WIPSDctStaVSD, hh3cDot11WIPSDctStaMac }
    ::= { hh3cDot11WIPSDctStaTable 1 }

Hh3cDot11WIPSDctStaEntry ::= SEQUENCE {
        hh3cDot11WIPSDctStaVSD               OCTET STRING,
        hh3cDot11WIPSDctStaMac               MacAddress,
        hh3cDot11WIPSDctStaAssocBSSID        MacAddress,
        hh3cDot11WIPSDctStaClassifyWay       Hh3cDot11WIPSDevClassifyWay,
        hh3cDot11WIPSDctStaClassifyType      Hh3cDot11WIPSStaClassifyType,
        hh3cDot11WIPSDctStaSeverityLevel     Unsigned32,
        hh3cDot11WIPSDctStaIsDissociate      TruthValue,
        hh3cDot11WIPSDctStaStatus            Hh3cDot11WIPSDevStatus,
        hh3cDot11WIPSDctStaStatusDurat       TimeTicks,
        hh3cDot11WIPSDctStaVendor            OCTET STRING,
        hh3cDot11WIPSDctStaRadioType         Hh3cDot11WIPSRadioType,
        hh3cDot11WIPSDctStaRptSensorNum      Integer32,
        hh3cDot11WIPSDctStaWorkChannel       Hh3cDot11WIPSChannel,
        hh3cDot11WIPSDctStaIsCountered       TruthValue
     }

hh3cDot11WIPSDctStaVSD OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the virtual security domain in
         which the station was detected."
    ::= { hh3cDot11WIPSDctStaEntry 1 }

hh3cDot11WIPSDctStaMac OBJECT-TYPE
    SYNTAX MacAddress
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the MAC address of the station."
    ::= { hh3cDot11WIPSDctStaEntry 2 }

hh3cDot11WIPSDctStaAssocBSSID OBJECT-TYPE
    SYNTAX MacAddress
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the BSSID with which the station is associated."
    ::= { hh3cDot11WIPSDctStaEntry 3 }

hh3cDot11WIPSDctStaClassifyWay OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSDevClassifyWay
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the method that the client is categorized."
    ::= { hh3cDot11WIPSDctStaEntry 4 }

hh3cDot11WIPSDctStaClassifyType OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSStaClassifyType
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the category of the client."
    ::= { hh3cDot11WIPSDctStaEntry 5 }

hh3cDot11WIPSDctStaSeverityLevel OBJECT-TYPE
    SYNTAX Unsigned32 (0..100)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the security level of the detected client."
    ::= { hh3cDot11WIPSDctStaEntry 6 }

hh3cDot11WIPSDctStaIsDissociate OBJECT-TYPE
    SYNTAX TruthValue
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents whether the detected client is dissociated."
    ::= { hh3cDot11WIPSDctStaEntry 7 }

hh3cDot11WIPSDctStaStatus OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSDevStatus
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the status of the station detected by WIPS."
    ::= { hh3cDot11WIPSDctStaEntry 8 }

hh3cDot11WIPSDctStaStatusDurat OBJECT-TYPE
    SYNTAX TimeTicks
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the duration of the client status."
    ::= { hh3cDot11WIPSDctStaEntry 9 }

hh3cDot11WIPSDctStaVendor OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (0..127))
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the vendor of the station detected by WIPS."
    ::= { hh3cDot11WIPSDctStaEntry 10 }

hh3cDot11WIPSDctStaRadioType OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSRadioType
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the radio type used by the detected station."
    ::= { hh3cDot11WIPSDctStaEntry 11 }

hh3cDot11WIPSDctStaRptSensorNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of sensors that have detected the station."
    ::= { hh3cDot11WIPSDctStaEntry 12 }

hh3cDot11WIPSDctStaWorkChannel OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSChannel
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents on which radio channel that the WIPS sensor detected
        the station."
    ::= { hh3cDot11WIPSDctStaEntry 13 }

hh3cDot11WIPSDctStaIsCountered OBJECT-TYPE
    SYNTAX TruthValue
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents whether WIPS has taken countermeasures
         on the detected client."
    ::= { hh3cDot11WIPSDctStaEntry 14 }

--
-- ApAssociatecltTable data3
--
hh3cDot11WIPSApAssoCltTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSApAssoCltEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains information about associated client by WIPS."
    ::= { hh3cDot11WIPSDataGroup 3 }

hh3cDot11WIPSApAssoCltEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSApAssoCltEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about a associated client by WIPS."
    INDEX { hh3cDot11WIPSApAssoCltVSDName,
            hh3cDot11WIPSApAssoCltApMacAddr,
            hh3cDot11WIPSApAssoCltClMacAddr }
    ::= { hh3cDot11WIPSApAssoCltTable 1 }

Hh3cDot11WIPSApAssoCltEntry ::= SEQUENCE {
        hh3cDot11WIPSApAssoCltVSDName                    OCTET STRING,
        hh3cDot11WIPSApAssoCltApMacAddr                  MacAddress,
        hh3cDot11WIPSApAssoCltClMacAddr                  MacAddress,
        hh3cDot11WIPSApAssoCltIsAsso                     TruthValue
     }

hh3cDot11WIPSApAssoCltVSDName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the virtual security domain in
         which the client had Associated."
    ::= { hh3cDot11WIPSApAssoCltEntry 1 }

hh3cDot11WIPSApAssoCltApMacAddr OBJECT-TYPE
    SYNTAX MacAddress
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the MAC address of the AP."
    ::= { hh3cDot11WIPSApAssoCltEntry 2 }

hh3cDot11WIPSApAssoCltClMacAddr OBJECT-TYPE
    SYNTAX MacAddress
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the MAC address of the Client."
    ::= { hh3cDot11WIPSApAssoCltEntry 3 }

hh3cDot11WIPSApAssoCltIsAsso OBJECT-TYPE
    SYNTAX TruthValue
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents whether WIPS had taken associated on the detected client."
    ::= { hh3cDot11WIPSApAssoCltEntry 4 }

hh3cDot11WIPSApRpSenTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSApRpSenEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "This table contains information about AP report sensors."
    ::= { hh3cDot11WIPSDataGroup 4 }

hh3cDot11WIPSApRpSenEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSApRpSenEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about one device in a VSD."
    INDEX { hh3cDot11WIPSApRpSenVsdName,
            hh3cDot11WIPSApRpSenMacAddr,
            hh3cDot11WIPSApRpSenName }
    ::= { hh3cDot11WIPSApRpSenTable 1 }

Hh3cDot11WIPSApRpSenEntry ::= SEQUENCE {
        hh3cDot11WIPSApRpSenVsdName             OCTET STRING,
        hh3cDot11WIPSApRpSenMacAddr             MacAddress,
        hh3cDot11WIPSApRpSenName                OCTET STRING,
        hh3cDot11WIPSApRpSenRadioID             Integer32,
        hh3cDot11WIPSApRpSenRssi                Integer32,
        hh3cDot11WIPSApRpSenChannel             Integer32,
        hh3cDot11WIPSApRpSenFirstRpTime         OCTET STRING,
        hh3cDot11WIPSApRpSenLastRpTime          OCTET STRING
     }

hh3cDot11WIPSApRpSenVsdName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the name of the VSD."
    ::= { hh3cDot11WIPSApRpSenEntry 1 }

hh3cDot11WIPSApRpSenMacAddr OBJECT-TYPE
    SYNTAX MacAddress
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the MAC address of the sensor."
    ::= { hh3cDot11WIPSApRpSenEntry 2 }

hh3cDot11WIPSApRpSenName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..64))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the name of the sensor."
    ::= { hh3cDot11WIPSApRpSenEntry 3 }

hh3cDot11WIPSApRpSenRadioID  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the radio ID."
    ::= { hh3cDot11WIPSApRpSenEntry 4 }

hh3cDot11WIPSApRpSenRssi  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the rssi of AP."
    ::= { hh3cDot11WIPSApRpSenEntry 5 }

hh3cDot11WIPSApRpSenChannel  OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the channel of AP."
    ::= { hh3cDot11WIPSApRpSenEntry 6 }

hh3cDot11WIPSApRpSenFirstRpTime  OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..256))
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the first report time of AP."
    ::= { hh3cDot11WIPSApRpSenEntry 7 }

hh3cDot11WIPSApRpSenLastRpTime  OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..256))
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the last report time of AP."
    ::= { hh3cDot11WIPSApRpSenEntry 8 }

hh3cDot11WIPSCtmRecTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSCtmRecEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table provides information about virtual security domains (VSDs)."
    ::= { hh3cDot11WIPSDataGroup 5 }

hh3cDot11WIPSCtmRecEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSCtmRecEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about one VSD."
    INDEX { hh3cDot11WIPSCtmRecVsdName,
            hh3cDot11WIPSCtmRecMacAddress,
            hh3cDot11WIPSCtmRecCount }
    ::= { hh3cDot11WIPSCtmRecTable 1 }

Hh3cDot11WIPSCtmRecEntry ::= SEQUENCE {
        hh3cDot11WIPSCtmRecVsdName                  OCTET STRING,
        hh3cDot11WIPSCtmRecMacAddress               MacAddress,
        hh3cDot11WIPSCtmRecCount                    Integer32,
        hh3cDot11WIPSCtmRecSensorName               OCTET STRING,
        hh3cDot11WIPSCtmRecDeviceType               Hh3cDot11WIPSDeviceType,
        hh3cDot11WIPSCtmRecClassifyType             Hh3cDot11WIPSClassifyType,
        hh3cDot11WIPSCtmRecRadioId                  Integer32,
        hh3cDot11WIPSCtmRecCounterTime              OCTET STRING
    }

hh3cDot11WIPSCtmRecVsdName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the name of the virtual security domain."
    ::= { hh3cDot11WIPSCtmRecEntry 1 }

hh3cDot11WIPSCtmRecMacAddress OBJECT-TYPE
    SYNTAX MacAddress
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the MAC address."
    ::= { hh3cDot11WIPSCtmRecEntry 2 }

hh3cDot11WIPSCtmRecCount OBJECT-TYPE
    SYNTAX Integer32 (1..1024)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the count of countermeasure record."
    ::= { hh3cDot11WIPSCtmRecEntry 3 }

hh3cDot11WIPSCtmRecSensorName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..64))
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the name of countermeasure sensor."
    ::= { hh3cDot11WIPSCtmRecEntry 4 }

hh3cDot11WIPSCtmRecDeviceType OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSDeviceType
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the type of device."
    ::= { hh3cDot11WIPSCtmRecEntry 5 }

hh3cDot11WIPSCtmRecClassifyType OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSClassifyType
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the type of device classification."
    ::= { hh3cDot11WIPSCtmRecEntry 6 }

hh3cDot11WIPSCtmRecRadioId OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the radio ID of countermeasure sensor."
    ::= { hh3cDot11WIPSCtmRecEntry 7 }

hh3cDot11WIPSCtmRecCounterTime OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..256))
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the time of countermeasure."
    ::= { hh3cDot11WIPSCtmRecEntry 8 }

hh3cDot11WIPSDevTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSDevEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains variedly devices type information."
    ::= { hh3cDot11WIPSDataGroup 7 }

hh3cDot11WIPSDevEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSDevEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains one type of devices information."
    INDEX { hh3cDot11WIPSDevVSDName }
    ::= { hh3cDot11WIPSDevTable 1 }

Hh3cDot11WIPSDevEntry ::= SEQUENCE {
        hh3cDot11WIPSDevVSDName                 OCTET STRING,
        hh3cDot11WIPSDevTotalApNum              Integer32,
        hh3cDot11WIPSDevTotalClinetNum          Integer32,
        hh3cDot11WIPSDevAuthApNum               Integer32,
        hh3cDot11WIPSDevMisConfigApNum          Integer32,
        hh3cDot11WIPSDevRogueApNum              Integer32,
        hh3cDot11WIPSDevExternalApNum           Integer32,
        hh3cDot11WIPSDevAdhocNum                Integer32,
        hh3cDot11WIPSDevMeshApNum               Integer32,
        hh3cDot11WIPSDevpotenAuthApNum          Integer32,
        hh3cDot11WIPSDevpotenRogueApNum         Integer32,
        hh3cDot11WIPSDevPotenExtApNum           Integer32,
        hh3cDot11WIPSDevUncateApNum             Integer32,
        hh3cDot11WIPSDevAuthClinetNum           Integer32,
        hh3cDot11WIPSDevUnauthClinetNum         Integer32,
        hh3cDot11WIPSDevMisAssocltNum           Integer32,
        hh3cDot11WIPSDevUncatecltNum            Integer32
     }

hh3cDot11WIPSDevVSDName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the virtual security domain in one type device."
    ::= { hh3cDot11WIPSDevEntry 1 }

hh3cDot11WIPSDevTotalApNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the total number of detected AP."
    ::= { hh3cDot11WIPSDevEntry 2 }

hh3cDot11WIPSDevTotalClinetNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the total number of detected client."
    ::= { hh3cDot11WIPSDevEntry 3 }

hh3cDot11WIPSDevAuthApNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of detected authenticated AP."
    ::= { hh3cDot11WIPSDevEntry 4 }

hh3cDot11WIPSDevMisConfigApNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of detected misconfiguration AP."
    ::= { hh3cDot11WIPSDevEntry 5 }

hh3cDot11WIPSDevRogueApNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of detected rouge AP."
    ::= { hh3cDot11WIPSDevEntry 6 }

hh3cDot11WIPSDevExternalApNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of detected external AP."
    ::= { hh3cDot11WIPSDevEntry 7 }

hh3cDot11WIPSDevAdhocNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of detected ad-hoc AP."
    ::= { hh3cDot11WIPSDevEntry 8 }

hh3cDot11WIPSDevMeshApNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of detected mesh-AP."
    ::= { hh3cDot11WIPSDevEntry 9 }

hh3cDot11WIPSDevpotenAuthApNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of detected potential authenticated AP."
    ::= { hh3cDot11WIPSDevEntry 10 }

hh3cDot11WIPSDevpotenRogueApNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of detected potential rogue AP."
    ::= { hh3cDot11WIPSDevEntry 11 }

hh3cDot11WIPSDevPotenExtApNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of detected potential external AP."
    ::= { hh3cDot11WIPSDevEntry 12 }

hh3cDot11WIPSDevUncateApNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of detected uncategorized AP."
    ::= { hh3cDot11WIPSDevEntry 13 }

hh3cDot11WIPSDevAuthClinetNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of detected authenticated clinet."
    ::= { hh3cDot11WIPSDevEntry 14 }

hh3cDot11WIPSDevUnauthClinetNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of detected unauthenticated client."
    ::= { hh3cDot11WIPSDevEntry 15 }

hh3cDot11WIPSDevMisAssocltNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of detected misassociated client."
    ::= { hh3cDot11WIPSDevEntry 16 }

hh3cDot11WIPSDevUncatecltNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of detected uncategorized client."
    ::= { hh3cDot11WIPSDevEntry 17 }


hh3cDot11WIPSCtmDevTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSCtmDevEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "This table contains information about countermeasure device in a VSD."
    ::= { hh3cDot11WIPSDataGroup 8 }

hh3cDot11WIPSCtmDevEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSCtmDevEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains countermeasure information about device in a VSD."
    INDEX { hh3cDot11WIPSCtmDevVsdName }
    ::= { hh3cDot11WIPSCtmDevTable 1 }

Hh3cDot11WIPSCtmDevEntry ::= SEQUENCE {
        hh3cDot11WIPSCtmDevVsdName                  OCTET STRING,
        hh3cDot11WIPSCtmDevTotalApNum               Integer32,
        hh3cDot11WIPSCtmDevTotalStaNum              Integer32,
        hh3cDot11WIPSCtmDevMisCfgApNum              Integer32,
        hh3cDot11WIPSCtmDevRogueApNum               Integer32,
        hh3cDot11WIPSCtmDevExternalApNum            Integer32,
        hh3cDot11WIPSCtmDevpotAuthApNum             Integer32,
        hh3cDot11WIPSCtmDevpotRguApNum              Integer32,
        hh3cDot11WIPSCtmDevpotenExtApNum            Integer32,
        hh3cDot11WIPSCtmDevUncateApNum              Integer32,
        hh3cDot11WIPSCtmDevUnauthStaNum             Integer32,
        hh3cDot11WIPSCtmDevMisAssCltNum             Integer32,
        hh3cDot11WIPSCtmDevUncatecltNum             Integer32,
        hh3cDot11WIPSCtmDevAttackerNum              Integer32,
        hh3cDot11WIPSCtmDevManuNum                  Integer32,
        hh3cDot11WIPSCtmDevStaCauseByAP             Integer32
     }

hh3cDot11WIPSCtmDevVsdName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the vsd name."
    ::= { hh3cDot11WIPSCtmDevEntry 1 }

hh3cDot11WIPSCtmDevTotalApNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the total number of coutermeasured AP."
    ::= { hh3cDot11WIPSCtmDevEntry 2 }

hh3cDot11WIPSCtmDevTotalStaNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the total number of coutermeasured client."
    ::= { hh3cDot11WIPSCtmDevEntry 3 }

hh3cDot11WIPSCtmDevMisCfgApNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of coutermeasured misconfiguration AP."
    ::= { hh3cDot11WIPSCtmDevEntry 4 }

hh3cDot11WIPSCtmDevRogueApNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of coutermeasured rouge AP."
    ::= { hh3cDot11WIPSCtmDevEntry 5 }

hh3cDot11WIPSCtmDevExternalApNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of coutermeasured external AP."
    ::= { hh3cDot11WIPSCtmDevEntry 6 }

hh3cDot11WIPSCtmDevpotAuthApNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of coutermeasured potential authenticated AP."
    ::= { hh3cDot11WIPSCtmDevEntry 7 }

hh3cDot11WIPSCtmDevpotRguApNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of coutermeasured potential rogue AP."
    ::= { hh3cDot11WIPSCtmDevEntry 8 }

hh3cDot11WIPSCtmDevpotenExtApNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of coutermeasured potential external AP."
    ::= { hh3cDot11WIPSCtmDevEntry 9 }

hh3cDot11WIPSCtmDevUncateApNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of coutermeasured uncategorized AP."
    ::= { hh3cDot11WIPSCtmDevEntry 10 }

hh3cDot11WIPSCtmDevUnauthStaNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of coutermeasured unauthenticated client."
    ::= { hh3cDot11WIPSCtmDevEntry 11 }

hh3cDot11WIPSCtmDevMisAssCltNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of coutermeasured misassociated client."
    ::= { hh3cDot11WIPSCtmDevEntry 12 }

hh3cDot11WIPSCtmDevUncatecltNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of coutermeasured uncategorized client."
    ::= { hh3cDot11WIPSCtmDevEntry 13 }

hh3cDot11WIPSCtmDevAttackerNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of coutermeasured attackers."
    ::= { hh3cDot11WIPSCtmDevEntry 14 }

hh3cDot11WIPSCtmDevManuNum OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of manual coutermeasure."
    ::= { hh3cDot11WIPSCtmDevEntry 15 }

hh3cDot11WIPSCtmDevStaCauseByAP OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the number of station caused by coutermeasured AP."
    ::= { hh3cDot11WIPSCtmDevEntry 16 }

hh3cDot11WIPSCltRptApTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSCltRptApEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains information about stations Report by Sensor."
    ::= { hh3cDot11WIPSDataGroup 11 }

hh3cDot11WIPSCltRptApEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSCltRptApEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about a probe station."
    INDEX { hh3cDot11WIPSCltRptApVSDName,
            hh3cDot11WIPSCltRptApDevMac,
            hh3cDot11WIPSCltRptApSensorName }
    ::= { hh3cDot11WIPSCltRptApTable 1 }

Hh3cDot11WIPSCltRptApEntry ::= SEQUENCE {
        hh3cDot11WIPSCltRptApVSDName        OCTET STRING,
        hh3cDot11WIPSCltRptApDevMac         MacAddress,
        hh3cDot11WIPSCltRptApSensorName     OCTET STRING,
        hh3cDot11WIPSCltReportApRadioId     Integer32,
        hh3cDot11WIPSCltRptApRSSI           Integer32,
        hh3cDot11WIPSCltRptApWorkChannel    Hh3cDot11WIPSChannel,
        hh3cDot11WIPSCltRptApFirstTime      OCTET STRING,
        hh3cDot11WIPSCltRptApLastTime       OCTET STRING,
        hh3cDot11WIPSCltRptApAssocMac       MacAddress
     }

hh3cDot11WIPSCltRptApVSDName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..63))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the virtual security domain in
         which the client was detected."
    ::= { hh3cDot11WIPSCltRptApEntry 1 }

hh3cDot11WIPSCltRptApDevMac OBJECT-TYPE
    SYNTAX MacAddress
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the device MAC address of the client."
    ::= { hh3cDot11WIPSCltRptApEntry 2 }

hh3cDot11WIPSCltRptApSensorName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..64))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the sensor name in which the client was detected."
    ::= { hh3cDot11WIPSCltRptApEntry 3 }

hh3cDot11WIPSCltReportApRadioId OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the radio id that have detected the client."
    ::= { hh3cDot11WIPSCltRptApEntry 4 }

hh3cDot11WIPSCltRptApRSSI OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the RSSI of the client."
    ::= { hh3cDot11WIPSCltRptApEntry 5 }

hh3cDot11WIPSCltRptApWorkChannel OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSChannel
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents on which radio channel that
         the WIPS sensor detected the client."
    ::= { hh3cDot11WIPSCltRptApEntry 6 }

hh3cDot11WIPSCltRptApFirstTime OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..256))
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the First Report Time of the client."
    ::= { hh3cDot11WIPSCltRptApEntry 7 }

hh3cDot11WIPSCltRptApLastTime OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..256))
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the Last Report Time of the client."
    ::= { hh3cDot11WIPSCltRptApEntry 8 }

hh3cDot11WIPSCltRptApAssocMac OBJECT-TYPE
    SYNTAX MacAddress
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the association MAC address of the client."
    ::= { hh3cDot11WIPSCltRptApEntry 9 }

hh3cDot11WIPSNatDtcCltTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSNatDtcCltEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The table contains information about NAT client detected by WIPS."
    ::= { hh3cDot11WIPSDataGroup 12 }

hh3cDot11WIPSNatDtcCltEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSNatDtcCltEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about a NAT detect client."
    INDEX { hh3cDot11WIPSNatDtcCltMac }
    ::= { hh3cDot11WIPSNatDtcCltTable 1 }

Hh3cDot11WIPSNatDtcCltEntry ::= SEQUENCE {
        hh3cDot11WIPSNatDtcCltMac           MacAddress,
        hh3cDot11WIPSNatDtcCltFirstTime     OCTET STRING,
        hh3cDot11WIPSNatDtcCltLastTime      OCTET STRING,
        hh3cDot11WIPSNatDtcCltDuraTime      Integer32
     }

hh3cDot11WIPSNatDtcCltMac OBJECT-TYPE
    SYNTAX MacAddress
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the MAC address of the NAT detect client."
    ::= { hh3cDot11WIPSNatDtcCltEntry 1 }

hh3cDot11WIPSNatDtcCltFirstTime OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..256))
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the first report time of the NAT detect client."
    ::= { hh3cDot11WIPSNatDtcCltEntry 2 }

hh3cDot11WIPSNatDtcCltLastTime OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..256))
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the last report time of the NAT detect client."
    ::= { hh3cDot11WIPSNatDtcCltEntry 3 }

hh3cDot11WIPSNatDtcCltDuraTime OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the duration of the NAT detect client."
    ::= { hh3cDot11WIPSNatDtcCltEntry 4 }

hh3cDot11WIPSAckStaTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cDot11WIPSAckStaEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "This table contains information about attack statistics."
    ::= { hh3cDot11WIPSDataGroup 13 }

hh3cDot11WIPSAckStaEntry OBJECT-TYPE
    SYNTAX Hh3cDot11WIPSAckStaEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each entry contains information about
         a attack statistics on the sensor."
    INDEX { hh3cDot11WIPSAckStaSensorName }
    ::= { hh3cDot11WIPSAckStaTable 1 }

Hh3cDot11WIPSAckStaEntry ::= SEQUENCE {
        hh3cDot11WIPSAckStaSensorName                   OCTET STRING,
        hh3cDot11WIPSAckStaAssReqFld                    Integer32,
        hh3cDot11WIPSAckStaAuthFld                      Integer32,
        hh3cDot11WIPSAckStaBeaconFld                    Integer32,
        hh3cDot11WIPSAckStaBlkAckFld                    Integer32,
        hh3cDot11WIPSAckStaCtsFld                       Integer32,
        hh3cDot11WIPSAckStaDeauthFld                    Integer32,
        hh3cDot11WIPSAckStaDisassFld                    Integer32,
        hh3cDot11WIPSAckStaEpolSatFld                   Integer32,
        hh3cDot11WIPSAckStaNullDataFld                  Integer32,
        hh3cDot11WIPSAckStaProReqFld                    Integer32,
        hh3cDot11WIPSAckStaReassFld                     Integer32,
        hh3cDot11WIPSAckStaRtsFld                       Integer32,
        hh3cDot11WIPSAckStaEapLgoffFld                  Integer32,
        hh3cDot11WIPSAckStaEapFailFld                   Integer32,
        hh3cDot11WIPSAckStaEapSucFld                    Integer32,
        hh3cDot11WIPSAckStaDupIeMalf                    Integer32,
        hh3cDot11WIPSAckStaFataJackMalf                 Integer32,
        hh3cDot11WIPSAckStaEssMalf                      Integer32,
        hh3cDot11WIPSAckStaInvComMalf                   Integer32,
        hh3cDot11WIPSAckStaInvAssReqMalf                Integer32,
        hh3cDot11WIPSAckStaInvAuthMalf                  Integer32,
        hh3cDot11WIPSAckStaInvDeauthMalf                Integer32,
        hh3cDot11WIPSAckStaInvDisMalf                   Integer32,
        hh3cDot11WIPSAckStaInvHtIeMalf                  Integer32,
        hh3cDot11WIPSAckStaInvIeLenMalf                 Integer32,
        hh3cDot11WIPSAckStaInvPktLthMalf                Integer32,
        hh3cDot11WIPSAckStaLgeDutMalf                   Integer32,
        hh3cDot11WIPSAckStaNProRespMalf                 Integer32,
        hh3cDot11WIPSAckStaOverflEapMalf                Integer32,
        hh3cDot11WIPSAckStaOverfSsidMalf                Integer32,
        hh3cDot11WIPSAckStaRedundIeMalf                 Integer32,
        hh3cDot11WIPSAckStaApSpoofAp                    Integer32,
        hh3cDot11WIPSAckStaApSpoofclt                   Integer32,
        hh3cDot11WIPSAckStaApSpoofAdhoc                 Integer32,
        hh3cDot11WIPSAckStaAdhocSpoofAp                 Integer32,
        hh3cDot11WIPSAckStacltSpoofAp                   Integer32,
        hh3cDot11WIPSAckStaWeakIv                       Integer32,
        hh3cDot11WIPSAckStaApRate                       Integer32,
        hh3cDot11WIPSAckStacltRate                      Integer32,
        hh3cDot11WIPSAckStaSignatureRule                Integer32,
        hh3cDot11WIPSAckSta40Mhz                        Integer32,
        hh3cDot11WIPSAckStaPowerSave                    Integer32,
        hh3cDot11WIPSAckStaWinBdg                       Integer32,
        hh3cDot11WIPSAckStaOmerta                       Integer32,
        hh3cDot11WIPSAckStaSoftAp                       Integer32,
        hh3cDot11WIPSAckStaBroadDis                     Integer32,
        hh3cDot11WIPSAckStaBroadDeauth                  Integer32,
        hh3cDot11WIPSAckStaApImp                        Integer32,
        hh3cDot11WIPSAckStaHtGreenField                 Integer32,
        hh3cDot11WIPSAckStaWireBdg                      Integer32,
        hh3cDot11WIPSAckStaApFld                        Integer32,
        hh3cDot11WIPSAckStaAssociaOverf                 Integer32
    }

hh3cDot11WIPSAckStaSensorName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE (1..64))
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Represents the sensor name."
    ::= { hh3cDot11WIPSAckStaEntry 1 }

hh3cDot11WIPSAckStaAssReqFld OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of association request packet flood."
    ::= { hh3cDot11WIPSAckStaEntry 2 }

hh3cDot11WIPSAckStaAuthFld OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of authentication packet flood."
    ::= { hh3cDot11WIPSAckStaEntry 3 }

hh3cDot11WIPSAckStaBeaconFld OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of beacon packet flood."
    ::= { hh3cDot11WIPSAckStaEntry 4 }

hh3cDot11WIPSAckStaBlkAckFld OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of block ack packet flood."
    ::= { hh3cDot11WIPSAckStaEntry 5 }

hh3cDot11WIPSAckStaCtsFld OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of cts packet flood."
    ::= { hh3cDot11WIPSAckStaEntry 6 }

hh3cDot11WIPSAckStaDeauthFld OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of deauthentication packet flood."
    ::= { hh3cDot11WIPSAckStaEntry 7 }

hh3cDot11WIPSAckStaDisassFld OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of disassociation packet flood."
    ::= { hh3cDot11WIPSAckStaEntry 8 }

hh3cDot11WIPSAckStaEpolSatFld OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of eapol-start packet flood."
    ::= { hh3cDot11WIPSAckStaEntry 9 }

hh3cDot11WIPSAckStaNullDataFld OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of null-data packet flood."
    ::= { hh3cDot11WIPSAckStaEntry 10 }
hh3cDot11WIPSAckStaProReqFld OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of probe request packet flood."
    ::= { hh3cDot11WIPSAckStaEntry 11 }

hh3cDot11WIPSAckStaReassFld OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of
         reassociation request packet flood."
    ::= { hh3cDot11WIPSAckStaEntry 12 }

hh3cDot11WIPSAckStaRtsFld OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of rts packet flood."
    ::= { hh3cDot11WIPSAckStaEntry 13 }

hh3cDot11WIPSAckStaEapLgoffFld OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of eapol-logoff packet flood."
    ::= { hh3cDot11WIPSAckStaEntry 14 }

hh3cDot11WIPSAckStaEapFailFld OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of eap-failure packet flood."
    ::= { hh3cDot11WIPSAckStaEntry 15 }

hh3cDot11WIPSAckStaEapSucFld OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of eap-success packet flood."
    ::= { hh3cDot11WIPSAckStaEntry 16 }

hh3cDot11WIPSAckStaDupIeMalf OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of duplicated IE malform."
    ::= { hh3cDot11WIPSAckStaEntry 17 }

hh3cDot11WIPSAckStaFataJackMalf OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of fata jack malform."
    ::= { hh3cDot11WIPSAckStaEntry 18 }

hh3cDot11WIPSAckStaEssMalf OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of illegal IBSS ESS malform."
    ::= { hh3cDot11WIPSAckStaEntry 19 }

hh3cDot11WIPSAckStaInvComMalf OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of
         invalid address combination malform."
    ::= { hh3cDot11WIPSAckStaEntry 20 }

hh3cDot11WIPSAckStaInvAssReqMalf OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of
         invalid authentication request malform."
    ::= { hh3cDot11WIPSAckStaEntry 21 }

hh3cDot11WIPSAckStaInvAuthMalf OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of invalid authentication malform."
    ::= { hh3cDot11WIPSAckStaEntry 22 }

hh3cDot11WIPSAckStaInvDeauthMalf OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of
         invalid deauthentication code malform."
    ::= { hh3cDot11WIPSAckStaEntry 23 }

hh3cDot11WIPSAckStaInvDisMalf OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of invalid disassocited code malform."
    ::= { hh3cDot11WIPSAckStaEntry 24 }

hh3cDot11WIPSAckStaInvHtIeMalf OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of invalid HT IE malform."
    ::= { hh3cDot11WIPSAckStaEntry 25 }

hh3cDot11WIPSAckStaInvIeLenMalf OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of invalid IE length malform."
    ::= { hh3cDot11WIPSAckStaEntry 26 }

hh3cDot11WIPSAckStaInvPktLthMalf OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of invalid packet length malform."
    ::= { hh3cDot11WIPSAckStaEntry 27 }

hh3cDot11WIPSAckStaLgeDutMalf OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of large duration malform."
    ::= { hh3cDot11WIPSAckStaEntry 28 }

hh3cDot11WIPSAckStaNProRespMalf OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of null probe response malform."
    ::= { hh3cDot11WIPSAckStaEntry 29 }

hh3cDot11WIPSAckStaOverflEapMalf OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of overflow eapol key malform."
    ::= { hh3cDot11WIPSAckStaEntry 30 }

hh3cDot11WIPSAckStaOverfSsidMalf OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of overflow SSID malform."
    ::= { hh3cDot11WIPSAckStaEntry 31 }

hh3cDot11WIPSAckStaRedundIeMalf OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of redundant IE malform."
    ::= { hh3cDot11WIPSAckStaEntry 32 }

hh3cDot11WIPSAckStaApSpoofAp OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of AP spoof AP."
    ::= { hh3cDot11WIPSAckStaEntry 33 }

hh3cDot11WIPSAckStaApSpoofclt OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of AP spoof client."
    ::= { hh3cDot11WIPSAckStaEntry 34 }

hh3cDot11WIPSAckStaApSpoofAdhoc OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of AP spoof adhoc."
    ::= { hh3cDot11WIPSAckStaEntry 35 }

hh3cDot11WIPSAckStaAdhocSpoofAp OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of adhoc spoof AP."
    ::= { hh3cDot11WIPSAckStaEntry 36 }

hh3cDot11WIPSAckStacltSpoofAp OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of client spoof AP."
    ::= { hh3cDot11WIPSAckStaEntry 37 }

hh3cDot11WIPSAckStaWeakIv OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of weak-iv."
    ::= { hh3cDot11WIPSAckStaEntry 38 }

hh3cDot11WIPSAckStaApRate OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of AP rate."
    ::= { hh3cDot11WIPSAckStaEntry 39 }

hh3cDot11WIPSAckStacltRate OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of client rate."
    ::= { hh3cDot11WIPSAckStaEntry 40 }

hh3cDot11WIPSAckStaSignatureRule OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of signature detect."
    ::= { hh3cDot11WIPSAckStaEntry 41 }

hh3cDot11WIPSAckSta40Mhz OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of 40MHZ detect."
    ::= { hh3cDot11WIPSAckStaEntry 42 }

hh3cDot11WIPSAckStaPowerSave OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of power save detect."
    ::= { hh3cDot11WIPSAckStaEntry 43 }

hh3cDot11WIPSAckStaWinBdg OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of window bridge detect."
    ::= { hh3cDot11WIPSAckStaEntry 44 }

hh3cDot11WIPSAckStaOmerta OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of omerta detect."
    ::= { hh3cDot11WIPSAckStaEntry 45 }

hh3cDot11WIPSAckStaSoftAp OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of soft AP detect."
    ::= { hh3cDot11WIPSAckStaEntry 46 }

hh3cDot11WIPSAckStaBroadDis OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of broadcast diassociated detect."
    ::= { hh3cDot11WIPSAckStaEntry 47 }

hh3cDot11WIPSAckStaBroadDeauth OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of broadcast deauthentication detect."
    ::= { hh3cDot11WIPSAckStaEntry 48 }

hh3cDot11WIPSAckStaApImp OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of AP impersonate."
    ::= { hh3cDot11WIPSAckStaEntry 49 }

hh3cDot11WIPSAckStaHtGreenField OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of HT green field."
    ::= { hh3cDot11WIPSAckStaEntry 50 }

hh3cDot11WIPSAckStaWireBdg OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of wireless bridge."
    ::= { hh3cDot11WIPSAckStaEntry 51 }

hh3cDot11WIPSAckStaApFld OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of AP flood."
    ::= { hh3cDot11WIPSAckStaEntry 52 }

hh3cDot11WIPSAckStaAssociaOverf OBJECT-TYPE
    SYNTAX Integer32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Represents the statistics number of associated overflow."
    ::= { hh3cDot11WIPSAckStaEntry 53 }

END