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
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
|
-- ============================================================================
-- Copyright (C) 2020 by HUAWEI TECHNOLOGIES. All rights reserved.
-- Description: The mib is used to manage AP on AC, include AP device notify, AP type, AP objects etc.
-- Reference:
-- Version: V1.73
-- ============================================================================
-- Module definition
HUAWEI-WLAN-AP-MIB DEFINITIONS ::= BEGIN
IMPORTS
hwWlan
FROM HUAWEI-WLAN-MIB
OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP
FROM SNMPv2-CONF
IpAddress, Integer32, Unsigned32, Counter64, OBJECT-TYPE,
MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
MacAddress, RowStatus, DateAndTime
FROM SNMPv2-TC;
--1.3.6.1.4.1.2011.6.139.13
hwWlanAp MODULE-IDENTITY
LAST-UPDATED"202008101934Z" -- August 10, 2020 at 19:34 GMT
ORGANIZATION
"Huawei Technologies Co.,Ltd."
CONTACT-INFO
"Huawei Industrial Base
Bantian, Longgang
Shenzhen 518129
People's Republic of China
Website: http://www.huawei.com
Email: support@huawei.com"
DESCRIPTION
"V1.73, update the value of hwApPowerInsufficientTrap, hwApPowerInsufficientResumeTrap, hwWlanAPPoeWorkmode, hwWlanAPPoeWorkmode, hwWlanIDIndexedAPPoeWorkmode, hwWlanIDIndexedAPPoeExpectedWorkmode"
REVISION "202008101934Z" -- August 10, 2020 at 19:34 GMT
DESCRIPTION
"V1.72, add hwApLoopbackDetectTrap, hwApLoopbackDetectRestoreTrap, update the value of hwWlanApWiredPortState "
REVISION "202008061934Z" -- July 27, 2020 at 10:32 GMT
DESCRIPTION
"V1.71, add hwApOpticalVoltageTooHighTrap hwApOpticalVoltageTooHighRestoreTrap hwApOpticalVoltageTooLowTrap hwApOpticalVoltageTooLowRestoreTrap hwApOpticalCurrentTooHighTrap hwApOpticalCurrentTooHighRestoreTrap hwApOpticalCurrentTooLowTrap hwApOpticalCurrentTooLowRestoreTrap"
REVISION "202007271032Z" -- July 27, 2020 at 10:32 GMT
DESCRIPTION
"V1.70, update the type of hwWlanIDIndexedApRtuStatus "
REVISION "202007031444Z" -- July 3, 2020 at 14:44 GMT
DESCRIPTION
"V1.69, update the type of hwWlanIDIndexedApRtuStatus "
REVISION "202006281109Z" -- Jun 28, 2020 at 11:09 GMT
DESCRIPTION
"V1.68, add hwApExistNeedReconnectTrap, hwApExistNeedReconnectResumeTrap, hwWlanIDIndexedApRadioMode, hwWlanIDIndexedApRtuStatus"
REVISION "202005182006Z" -- May 18, 2020 at 20:06 GMT
DESCRIPTION
"V1.67, update the type of hwWlanApTypeRadioType"
REVISION "202003301856Z" -- Mar 30, 2020 at 18:56 GMT
DESCRIPTION
"V1.66, update the type of hwWlanApTypeRadioType"
REVISION "202003191730Z" -- Mar 19, 2020 at 17:30 GMT
DESCRIPTION
"V1.65, update the type of hwWlanApTypeAutoCreateMethod"
REVISION "202001211440Z" -- Jay 21, 2020 at 14:40 GMT
DESCRIPTION
"V1.64, add hwWlanIDIndexedApZoneName,hwWlanIDIndexedApDataLinkState"
REVISION "202001152221Z" -- Jay 15, 2020 at 22:21 GMT
DESCRIPTION
"V1.63, rename hwWlanApTypeRowStatus and hwWlanApTypeUndefinedRowStatus"
REVISION "201910281355Z" -- Oct 26, 2019 at 14:54 GMT
DESCRIPTION
"V1.62, add hwAPFanRemoveTrap,hwAPFanInsertTrap,hwAPPowerRemoveTrap,hwAPPowerInsertTrap,hwAPPowerFailTrap,hwAPPowerFailResumeTrap,hwAPPowerInvalidTrap,hwAPPowerInvalidResumeTrap"
REVISION "201910261454Z" -- Oct 26, 2019 at 14:54 GMT
DESCRIPTION
"V1.61, add hwWlanApEnvironmentTemperature,hwWlanApCpuTemperature,hwWlanApNpTemperature"
REVISION "201910260954Z" -- Oct 26, 2019 at 09:54 GMT
DESCRIPTION
"V1.60, add hwWlanApDataLinkState"
REVISION "201908162000Z" -- August 16, 2019 at 20:00 GMT
DESCRIPTION
"V1.59, add hwWlanUnauthedAPIPv6Address,hwWlanApIotCardType,hwAPIotCardConnectServerTrap,hwAPIotCardDisconnectServerTrap,hwAPIotCardTypeMatchTrap,hwAPIotCardTypeMismatchTrap"
REVISION "201907191851Z" -- July 19, 2019 at 18:51 GMT
DESCRIPTION
"V1.58, add hwWlanApTypeUndefined,hwWlanApTypeAttributesAbnormalCheck"
REVISION "201907091500Z" -- July 09, 2019 at 15:00 GMT
DESCRIPTION
"V1.57, del hwWlanApWiredPortMacSecurityState"
REVISION "201906051100Z" -- June 05, 2019 at 11:00 GMT
DESCRIPTION
"V1.56, add hwWlanApWiredPortDot1xAuthState, hwWlanApWiredPortMacSecurityState"
REVISION "201906041100Z" -- June 04, 2019 at 11:00 GMT
DESCRIPTION
"V1.55, add hwAPIPConflictTrap,hwApNumReachMaxTrap,hwApNumReachMaxResumeTrap,hwApNumReachWarningTrap,hwApNumReachWarningResumeTrap"
REVISION "201905061100Z" -- May 06, 2019 at 11:00 GMT
DESCRIPTION
"V1.54, modify the description of hwWlanIDIndexedApReferenceRSSI."
REVISION "201904161100Z" -- April 16, 2019 at 11:00 GMT
DESCRIPTION
"V1.53, add hwWlanIDIndexedApMajorString, hwWlanIDIndexedApMajorHex, hwWlanIDIndexedApMajorDecimal, hwWlanIDIndexedApMinorString, hwWlanIDIndexedApMinorHex, hwWlanIDIndexedApMinorDecimal and hwWlanIDIndexedApReferenceRSSI."
REVISION "201903180900Z" -- Mar 18, 2019 at 09:00 GMT
DESCRIPTION
"V1.52, add the trap of hwApPowerLimitedTrap and hwApPowerLimitedResumeTrap, add hwWlanAPPowerSupplyState and hwWlanIDIndexedAPPowerSupplyState."
REVISION "201903141200Z" -- Mar 14, 2019 at 12:00 GMT
DESCRIPTION
"V1.51, modify the type of hwWlanApWiredPortLldpRemLocalApId."
REVISION "201901242034Z" -- Jan 24, 2019 at 20:34 GMT
DESCRIPTION
"V1.50, modify the description of hwApDiskOverloadTrap and hwApDiskOverloadRestoreTrap."
REVISION "201812272200Z" -- Dec 27, 2018 at 22:00 GMT
DESCRIPTION
"V1.49, modify the range of hwApDiskOverloadTrap and hwApDiskOverloadRestoreTrap."
REVISION "201812201430Z" -- Dec 20, 2018 at 14:30 GMT
DESCRIPTION
"V1.48, modify hwApSoftGreDownTrap and hwApSoftGreDownTrapRestore."
REVISION "201811061625Z" -- Nov 09, 2018 at 16:25 GMT
DESCRIPTION
"V1.46, add AP version not recommended trap node."
REVISION "201810241625Z" -- Oct 24, 2018 at 16:25 GMT
DESCRIPTION
"V1.45, modify the range of hwWlanApElectronicLabel and hwWlanIDIndexedApElectronicLabel."
REVISION "201810221720Z" -- Oct 22, 2018 at 17:20 GMT
DESCRIPTION
"V1.45, modify the range of hwWlanApElectronicLabel and hwWlanIDIndexedApElectronicLabel."
REVISION "201810091927Z" -- Oct 09, 2018 at 19:27 GMT
DESCRIPTION
"V1.44, add hwWlanApWiredPortTrunkID and hwWlanApWiredPortTrunkActiveFlag."
REVISION "201809251700Z" -- Sep 25, 2018 at 17:00 GMT
DESCRIPTION
"V1.43, add hwApSoftGreDownTrap and hwApSoftGreDownTrapRestore."
REVISION "201809121700Z" -- Sep 12, 2018 at 17:00 GMT
DESCRIPTION
"V1.42, modify the value of hwWlanRadioType."
REVISION "201807101243Z" -- July 10, 2018 at 12:00 GM
DESCRIPTION
"V1.41, modify the value of hwApTypeMismatchTrap."
REVISION "201805172200Z" -- May 17, 2018 at 22:00 GMT
DESCRIPTION
"V1.40, modify the value of hwWlanIDIndexedApEntry and hwWlanApEntry."
REVISION "201805082321Z" -- May 8, 2018 at 23:21 GMT
DESCRIPTION
"V1.39, modify the value of hwWlanApRunState and hwWlanIDIndexedApRunState."
REVISION "201803051552Z" -- Mar 5, 2018 at 15:52 GMT
DESCRIPTION
"V1.38, add hwWlanIDIndexedApDomainName."
REVISION "201802012052Z" -- Feb 01, 2018 at 20:52 GMT
DESCRIPTION
"V1.37, add hwApPowerInsufficientResumeTrap,hwApPowerInsufficientTrap,hwApPowerWorkMode,hwApExpectPowerWorkMode ."
REVISION "201712262052Z" -- Dec 26, 2017 at 20:52 GMT
DESCRIPTION
"V1.36, add hwWlanIDIndexedApSiteCode."
REVISION "201712181100Z" -- Dec 18, 2017 at 11:00 GMT
DESCRIPTION
"V1.35, add hwWlanCableSnrNormalTrap, hwWlanCableSnrAbnormalTrap, hwWlanCableSnrDetectNotSupportTrap and hwWlanApTypeExternalAntenna node."
REVISION "201712071230Z" -- Dec 07, 2017 at 12:30 GMT
DESCRIPTION
"V1.34, add hwWlanApTotalOnlineTime, hwWlanApDiscoverTime,hwWlanAPPoeWorkmode,hwWlanAPPoeExpectedWorkmode,hwWlanIDIndexedApChannelLoadMode, hwWlanIDIndexedAPPoeWorkmode,hwWlanIDIndexedAPPoeExpectedWorkmode,hwWlanIDIndexedApTotalOnlineTime,hwWlanIDIndexedApDiscoverTime node."
REVISION "201710092130Z" -- Nov 09, 2017 at 21:30 GMT
DESCRIPTION
"V1.33, add xge."
REVISION "201708172130Z" -- Aug 17, 2017 at 21:30 GMT
DESCRIPTION
"V1.32, add UUID, AP offline and online fail nodes and BLE trap node."
REVISION "201703271452Z" -- Mar 27, 2017 at 14:52 GMT
DESCRIPTION
"V1.31, add hwApConfigInconsistWithActualTrap trap node."
REVISION "201611220909Z" -- Nov 22, 2016 at 09:09 GMT
DESCRIPTION
"V1.30, delete hwApSpecificChangeRadioID node."
REVISION "201609271628Z" -- Sep 27, 2016 at 16:28 GMT
DESCRIPTION
"V1.29, Add hwApSpecificConfigChangedTrap, hwApSpecificChangeConfig, hwApSpecificChangeReason and hwApSpecificChangeRadioID node."
REVISION "201609180919Z" -- Sep 18, 2016 at 09:19 GMT
DESCRIPTION
"V1.28, Add hwWlanAPLongitude,hwWlanAPLatitude,hwWlanIDIndexedAPLongitude and hwWlanIDIndexedAPLatitude node."
REVISION "201608121550Z" -- Aug 12, 2016 at 15:50 GMT
DESCRIPTION
"V1.27, Modify the Trap Parameters."
REVISION "201607141542Z" -- Jul 14, 2016 at 15:42 GMT
DESCRIPTION
"V1.26, Add hwApVapStaFullTrap hwVapStaFullRecoverTrap and hwWlanApWlanID node."
REVISION "201606021014Z" -- June 2, 2016 at 10:14 GMT
DESCRIPTION
"V1.25, Add hwAPIoTCardInsertTrap hwAPIoTCardRemoveTrap hwAPIoTServerStartFailTrap hwAPIoTServerStartFailResumeTrap hwWlanApSubFirmwareMismatchTrap node."
REVISION "201606011449Z" -- June 1, 2016 at 14:49 GMT
DESCRIPTION
"V1.24, Add hwWlanApSDCardSize and hwWlanIDIndexedApSDCardSize node."
REVISION "201605231042Z" -- May 23, 2016 at 10:42 GMT
DESCRIPTION
"V1.23, Modify hwWlanApWiredPortType node."
REVISION "201605031155Z" -- May 3, 2016 at 11:55 GMT
DESCRIPTION
"V1.22, Modify hwWlanApTypeWiredPortType node."
REVISION "201604181407Z" -- Apr 18, 2016 at 14:07 GMT
DESCRIPTION
"V1.21, Modify the Trap Parameters."
REVISION "201602241537Z" -- Feb 24, 2016 at 15:37 GMT
DESCRIPTION
"V1.20, Add the hwWlanIDIndexedApTable."
REVISION "201602161635Z" -- Feb 16, 2016 at 16:35 GMT
DESCRIPTION
"V1.19, Add the hwWlanApTrap node."
REVISION "201602161517Z" -- Feb 16, 2016 at 15:17 GMT
DESCRIPTION
"V1.18, Add the hwWlanApTrap node."
REVISION "201601121517Z" -- Jan 12, 2016 at 15:17 GMT
DESCRIPTION
"V1.17, Add the hwWlanApTrap node."
REVISION "201512231153Z" -- Dec 23, 2015 at 11:53 GMT
DESCRIPTION
"V1.16, Add the hwWlanApTrap node."
REVISION "201512180932Z" -- Dec 18, 2015 at 09:32 GMT
DESCRIPTION
"V1.15, Modify the hwWlanApMultiWiredPortMode node."
REVISION "201512172038Z" -- Dec 17, 2015 at 20:17 GMT
DESCRIPTION
"V1.14, Add the hwWlanApTrap node."
REVISION "201512081856Z" -- Dec 8, 2015 at 18:56 GMT
DESCRIPTION
"V1.13, Add the hwWlanApWiredPortApId and hwWlanApWiredPortApName node."
REVISION "201511121503Z" -- Nov 12, 2015 at 15:03 GMT
DESCRIPTION
"Modify the description of hwWlanCentralApId."
REVISION "201510191123Z"
DESCRIPTION
"Modify the description of hwWlanCrcErrActual."
REVISION "201510121123Z"
DESCRIPTION
"V1.11, Add the hwApOnLineNumExceedCardSpecTrap node."
REVISION "201509161352Z" -- Sep 16, 2015 at 13:52 GMT
DESCRIPTION
"Huawei AP device management mib."
REVISION "201508261030Z" -- Aug 26, 2015 at 10:30 GMT
DESCRIPTION
"V1.09, Add the AP ID in the trap node."
REVISION "201508051030Z" -- Aug 5, 2015 at 10:30 GMT
DESCRIPTION
"V1.08, Modify the value of hwWlanApRunState."
REVISION "201507221504Z" -- July 22, 2015 at 15:04 GMT
DESCRIPTION
"V1.07, Modify node of hwMPJoinedOnEthernetTrap,hwMPJoinedOnEthernetRestoreTrap,hwMPPJoinedOnAirTrap,hwMPPJoinedOnAirRestoreTrap."
REVISION "201506021120Z" -- June 2, 2015 at 11:20 GMT
DESCRIPTION
"V1.06, Add node of AP optical module Tx power."
REVISION "201505141030Z" -- May 14, 2015 at 10:30 GMT
DESCRIPTION
"Huawei AP device management mib."
REVISION "201505111030Z" -- May 11, 2015 at 10:30 GMT
DESCRIPTION
"V1.04, Add the description of mib nodes."
REVISION "201504111030Z" -- April 11, 2015 at 10:30 GMT
DESCRIPTION
"V1.03, Modify the sequence of table's index and the value of hwWlanApTypeRadioType."
REVISION "201503161030Z" -- March 16, 2015 at 10:30 GMT
DESCRIPTION
"V1.02, Modify the value of hwWlanApRunState."
REVISION "201503102030Z" -- March 10, 2015 at 20:30 GMT
DESCRIPTION
"V1.01, Modify the value of hwWlanApRunState."
REVISION "201502020950Z" -- February 02, 2015 at 09:50 GMT
DESCRIPTION
"V1.00, Initial version."
::= { hwWlan 13 }
--
--Node definitions
--
--1.3.6.1.4.1.2011.6.139.13.1
hwWlanApTrapInfo OBJECT IDENTIFIER ::= { hwWlanAp 1 }
--1.3.6.1.4.1.2011.6.139.13.1.1
hwWlanApTrap OBJECT IDENTIFIER ::= { hwWlanApTrapInfo 1 }
--1.3.6.1.4.1.2011.6.139.13.1.1.1
hwApFaultTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApActualType, hwWlanApName, hwWlanApFaultTimes, hwWlanApId
}
STATUS current
DESCRIPTION
"The object indicates an AP communication fault alarm."
::= { hwWlanApTrap 1 }
--1.3.6.1.4.1.2011.6.139.13.1.1.2
hwApNormalTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApActualType, hwWlanApName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates an AP communication fault clear alarm."
::= { hwWlanApTrap 2 }
--1.3.6.1.4.1.2011.6.139.13.1.1.3
hwApPingResultTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApActualType, hwWlanApName, hwWlanApPingResultSuccessCount, hwWlanApPingResultFailureCount, hwWlanApPingResultAveResponseTime,
hwWlanApPingResultMinResponseTime, hwWlanApPingResultMaxResponseTime, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates an AP ping result alarm."
::= { hwWlanApTrap 3 }
--1.3.6.1.4.1.2011.6.139.13.1.1.4
hwApConfigCommitTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the configuration of an AP is successfully committed."
::= { hwWlanApTrap 4 }
--1.3.6.1.4.1.2011.6.139.13.1.1.5
hwUnAuthorizedApRecordExistTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApUnAuthorizedApRecordNumber }
STATUS current
DESCRIPTION
"This object indicates that unauthorized AP alarms exist."
::= { hwWlanApTrap 5 }
--1.3.6.1.4.1.2011.6.139.13.1.1.6
hwUnAuthorizedApRecordClearTrap NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"This object indicates that unauthorized AP alarms are cleared."
::= { hwWlanApTrap 6 }
--1.3.6.1.4.1.2011.6.139.13.1.1.7
hwApCpuOverloadTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac,hwWlanApName, hwWlanApCpuOccupancyRate, hwWlanApCpuOverloadDescInfo, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the CPU usage of an AP exceeds the upper threshold."
::= { hwWlanApTrap 7 }
--1.3.6.1.4.1.2011.6.139.13.1.1.8
hwApCpuOverloadRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApCpuOccupancyRate, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that an AP's CPU usage restores to the allowed range."
::= { hwWlanApTrap 8 }
--1.3.6.1.4.1.2011.6.139.13.1.1.9
hwApMemoryOverloadTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApMemoryOccupancyRate, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the memory usage of an AP exceeds the upper threshold."
::= { hwWlanApTrap 9 }
--1.3.6.1.4.1.2011.6.139.13.1.1.10
hwApMemoryOverloadRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApMemoryOccupancyRate, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the memory usage of an AP restores to the allowed range."
::= { hwWlanApTrap 10 }
--1.3.6.1.4.1.2011.6.139.13.1.1.11
hwApStaFullTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanStaAuthFailCause, hwWlanApPermitStaNum, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that new STAs cannot associate with an AP."
::= { hwWlanApTrap 11 }
--1.3.6.1.4.1.2011.6.139.13.1.1.12
hwApStaFullRecoverTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanStaAuthFailCause, hwWlanApPermitStaNum, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that new STAs can associate with an AP."
::= { hwWlanApTrap 12 }
--1.3.6.1.4.1.2011.6.139.13.1.1.13
hwAcDevicesSwitchTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApSn, hwWlanAcSystemSwitchType, hwWlanApId }
STATUS current
DESCRIPTION
"This object that an active/standby AC switchover occurs."
::= { hwWlanApTrap 13 }
--1.3.6.1.4.1.2011.6.139.13.1.1.14
hwDyingGaspTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates a dying gasp alarm."
::= { hwWlanApTrap 14 }
--1.3.6.1.4.1.2011.6.139.13.1.1.15
hwApFaultTrapFat NOTIFICATION-TYPE
OBJECTS { hwWlanApActualType, hwWlanApName, hwWlanApId }
STATUS current
DESCRIPTION
"Description."
::= { hwWlanApTrap 15 }
--1.3.6.1.4.1.2011.6.139.13.1.1.16
hwApNormalTrapFat NOTIFICATION-TYPE
OBJECTS { hwWlanApActualType, hwWlanApName, hwWlanApId }
STATUS current
DESCRIPTION
"Description."
::= { hwWlanApTrap 16 }
--1.3.6.1.4.1.2011.6.139.13.1.1.17
hwApTemperatureTooLowTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApNotifyOrRestoreTemperature, hwWlanApId, hwWlanApTemperatureType }
STATUS current
DESCRIPTION
"This object indicates that the temperature is too low."
::= { hwWlanApTrap 17 }
--1.3.6.1.4.1.2011.6.139.13.1.1.18
hwApTemperatureTooLowRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApNotifyOrRestoreTemperature, hwWlanApId, hwWlanApTemperatureType }
STATUS current
DESCRIPTION
"This object indicates that the temperature restores to the normal range."
::= { hwWlanApTrap 18 }
--1.3.6.1.4.1.2011.6.139.13.1.1.19
hwApTemperatureTooHighTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApNotifyOrRestoreTemperature, hwWlanApId, hwWlanApTemperatureType }
STATUS current
DESCRIPTION
"This object indicates that the temperature is too high."
::= { hwWlanApTrap 19 }
--1.3.6.1.4.1.2011.6.139.13.1.1.20
hwApTemperatureTooHighRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApNotifyOrRestoreTemperature, hwWlanApId, hwWlanApTemperatureType }
STATUS current
DESCRIPTION
"This object indicates that the temperature restores to the normal range."
::= { hwWlanApTrap 20 }
--1.3.6.1.4.1.2011.6.139.13.1.1.21
hwApOpticalRxPowerTooHighTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalRxPower, hwApEntityPhysicalName,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the receive power of an AP's optical module is too high."
::= { hwWlanApTrap 21 }
--1.3.6.1.4.1.2011.6.139.13.1.1.22
hwApOpticalRxPowerTooHighRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalRxPower, hwApEntityPhysicalName,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the receive power of an AP's optical module restores to the normal range."
::= { hwWlanApTrap 22 }
--1.3.6.1.4.1.2011.6.139.13.1.1.23
hwApOpticalRxPowerTooLowTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalRxPower, hwApEntityPhysicalName,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the receive power of an AP's optical module is too low."
::= { hwWlanApTrap 23 }
--1.3.6.1.4.1.2011.6.139.13.1.1.24
hwApOpticalRxPowerTooLowRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalRxPower, hwApEntityPhysicalName,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the receive power of an AP's optical module restores to the normal range."
::= { hwWlanApTrap 24 }
--1.3.6.1.4.1.2011.6.139.13.1.1.25
hwApOpticalTemperatureTooHighTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalTemperature, hwApEntityPhysicalName,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the temperature of an AP's optical module is too high."
::= { hwWlanApTrap 25 }
--1.3.6.1.4.1.2011.6.139.13.1.1.26
hwApOpticalTemperatureTooHighRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalTemperature, hwApEntityPhysicalName,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the temperature of an AP's optical module restores to the normal range."
::= { hwWlanApTrap 26 }
--1.3.6.1.4.1.2011.6.139.13.1.1.27
hwApOpticalTemperatureTooLowTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalTemperature, hwApEntityPhysicalName,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the temperature of an AP's optical module is too low."
::= { hwWlanApTrap 27 }
--1.3.6.1.4.1.2011.6.139.13.1.1.28
hwApOpticalTemperatureTooLowRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalTemperature, hwApEntityPhysicalName,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the temperature of an AP's optical module restores to the normal range."
::= { hwWlanApTrap 28 }
--1.3.6.1.4.1.2011.6.139.13.1.1.29
hwApNotSupportCountryCodeTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApCfgCountryCode, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the country code is not supported."
::= { hwWlanApTrap 29 }
--1.3.6.1.4.1.2011.6.139.13.1.1.30
hwApColdBootTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApActualType, hwWlanApName, hwWlanOccurTime, hwWlanApBootNotifyName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates a cold restart alarm."
::= { hwWlanApTrap 30 }
--1.3.6.1.4.1.2011.6.139.13.1.1.31
hwApColdBootRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApActualType, hwWlanApName, hwWlanOccurTime, hwWlanApBootNotifyName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates a cold restart clear alarm."
::= { hwWlanApTrap 31 }
--1.3.6.1.4.1.2011.6.139.13.1.1.32
hwApHotBootTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApActualType, hwWlanApName, hwWlanOccurTime, hwWlanApBootNotifyName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates a hot restart alarm."
::= { hwWlanApTrap 32 }
--1.3.6.1.4.1.2011.6.139.13.1.1.33
hwApHotBootRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApActualType, hwWlanApName, hwWlanOccurTime, hwWlanApBootNotifyName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates a hot restart clear alarm."
::= { hwWlanApTrap 33 }
--1.3.6.1.4.1.2011.6.139.13.1.1.34
hwApCRCTooHighTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanCrcErrActual, hwWlanCrcPortType, hwWlanCrcPortID, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates a CRC error alarm."
::= { hwWlanApTrap 34 }
--1.3.6.1.4.1.2011.6.139.13.1.1.35
hwApCRCTooHighRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanCrcErrActual, hwWlanCrcPortType, hwWlanCrcPortID, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that CRC error alarms are cleared."
::= { hwWlanApTrap 35 }
--1.3.6.1.4.1.2011.6.139.13.1.1.36
hwApConflictApNameTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanOccurTime, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates an alarm of AP name conflict."
::= { hwWlanApTrap 36 }
--1.3.6.1.4.1.2011.6.139.13.1.1.37
hwApLicenseTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApLicenseInfo }
STATUS current
DESCRIPTION
"This object indicates an AP license resource exhaustion alarm."
::= { hwWlanApTrap 37 }
--1.3.6.1.4.1.2011.6.139.13.1.1.38
hwApFmeaIICFaultTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates an FMEA IIC fault alarm."
::= { hwWlanApTrap 38 }
--1.3.6.1.4.1.2011.6.139.13.1.1.39
hwApFmeaIICFaultRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the FMEA IIC fault alarm is cleared."
::= { hwWlanApTrap 39 }
--1.3.6.1.4.1.2011.6.139.13.1.1.40
hwApFmeaPHYFaultTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates an FMEA PHY fault alarm."
::= { hwWlanApTrap 40 }
--1.3.6.1.4.1.2011.6.139.13.1.1.41
hwApFmeaPHYFaultRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the FMEA PHY fault alarm is cleared."
::= { hwWlanApTrap 41 }
--1.3.6.1.4.1.2011.6.139.13.1.1.42
hwApFmeaFaultTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApFaultID, hwWlanApIfIndex, hwWlanApFaultInfo, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates an FMEA fault alarm."
::= { hwWlanApTrap 42 }
--1.3.6.1.4.1.2011.6.139.13.1.1.43
hwApFmeaFaultRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApFaultID, hwWlanApIfIndex, hwWlanApFaultInfo, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the FMEA fault alarm is cleared."
::= { hwWlanApTrap 43 }
--1.3.6.1.4.1.2011.6.139.13.1.1.44
hwApOpticalInsertTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates an alarm that is generated when an optical module is installed."
::= { hwWlanApTrap 44 }
--1.3.6.1.4.1.2011.6.139.13.1.1.45
hwApOpticalRemoveTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates an alarm generated due to installation of an optical module is cleared."
::= { hwWlanApTrap 45 }
--1.3.6.1.4.1.2011.6.139.13.1.1.46
hwApReceivedInvalidArpNewTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApNotifyRadioId, hwWlanApNotifyWlanId, hwWlanApArpAttackDropNum, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that invalid ARP packets are received."
::= { hwWlanApTrap 46 }
--1.3.6.1.4.1.2011.6.139.13.1.1.47
hwApVersionMismatchTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApActualType, hwWlanApSoftwareVersion, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the AP version and the AC version do not match."
::= { hwWlanApTrap 47 }
--1.3.6.1.4.1.2011.6.139.13.1.1.48
hwRadioUploadRemoteCaptureFileTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApRadioID, hwRadioUploadRemoteCaptureResult, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates the alarm on the remote capture result upload result."
::= { hwWlanApTrap 48 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.49
hwMPJoinedOnEthernetTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac,hwWlanApName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates the alarm when an MP goes online through an Ethernet interface."
::= { hwWlanApTrap 49 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.50
hwMPJoinedOnEthernetRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac,hwWlanApName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates the alarm when an MP that went online through an Ethernet interface goes online through an air interface."
::= { hwWlanApTrap 50 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.51
hwMPPJoinedOnAirTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac,hwWlanApName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates the alarm when an MPP changes to an MP and goes online through an air interface."
::= { hwWlanApTrap 51 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.52
hwMPPJoinedOnAirRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac,hwWlanApName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates the alarm when an MPP that went online through an air interface goes online through an Ethernet interface."
::= { hwWlanApTrap 52 }
--1.3.6.1.4.1.2011.6.139.13.1.1.53
hwApOpticalTxPowerTooHighTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalTxPower, hwApEntityPhysicalName,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates an alarm for high transmit power of the AP's optical module."
::= { hwWlanApTrap 53 }
--1.3.6.1.4.1.2011.6.139.13.1.1.54
hwApOpticalTxPowerTooHighRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalTxPower, hwApEntityPhysicalName,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates a clear alarm for transmit power recovery of the AP's optical module."
::= { hwWlanApTrap 54 }
--1.3.6.1.4.1.2011.6.139.13.1.1.55
hwApOpticalTxPowerTooLowTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalTxPower, hwApEntityPhysicalName,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates an alarm for low transmit power of the AP's optical module."
::= { hwWlanApTrap 55 }
--1.3.6.1.4.1.2011.6.139.13.1.1.56
hwApOpticalTxPowerTooLowRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalTxPower, hwApEntityPhysicalName,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates a clear alarm for transmit power recovery of the AP's optical module."
::= { hwWlanApTrap 56 }
--1.3.6.1.4.1.2011.6.139.13.1.1.57
hwApOnLineNumExceedCardSpecTrap NOTIFICATION-TYPE
OBJECTS { hwWlanSlotNum }
STATUS current
DESCRIPTION
"This object indicates the number of online APs on the card has exceeded the maximum value."
::= { hwWlanApTrap 57 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.58
hwApFanInvalidTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwApFanIndex, hwApEntityPhysicalName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates a complete failure of a fan."
::= { hwWlanApTrap 58 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.59
hwApFanInvalidRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwApFanIndex, hwApEntityPhysicalName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the complete failure of a fan has been rectified."
::= { hwWlanApTrap 59 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.60
hwApStorageDevRemoveTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwApStorageIndex, hwApStorageName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the storage card is removed."
::= { hwWlanApTrap 60 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.61
hwApStorageDevInsertTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwApStorageIndex, hwApStorageName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the storage card is installed."
::= { hwWlanApTrap 61 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.62
hwApPoePowerOffTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApId, hwPowerOffReason }
STATUS current
DESCRIPTION
"This object indicates that a port is powered off."
::= { hwWlanApTrap 62 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.63
hwApPoePowerOnTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that a port is powered on."
::= { hwWlanApTrap 63 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.64
hwApPoePdConnectedTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that a port detects a PD connected to it."
::= { hwWlanApTrap 64 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.65
hwApPoePdDisconnectedTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that a port detects disconnection of the attached PD."
::= { hwWlanApTrap 65 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.66
hwApPoePdClassOvercurrentTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that a port detects a PD whose current exceeds the threshold of the corresponding class."
::= { hwWlanApTrap 66 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.67
hwApPoePdPriorityDifferentTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwApPoePdPriority,
hwApPoePortPriority, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the priority configured on a port is different from the PD priority."
::= { hwWlanApTrap 67 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.68
hwApPoePowerOverUtilizationThresholdTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwApPoeCurConsumPower,
hwApPoeConsumPowerThreshold, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the load power of a PoE slot exceeds the upper limit."
::= { hwWlanApTrap 68 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.69
hwApPoePowerOverUtilizationThresholdRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwApPoeCurConsumPower,
hwApPoeConsumPowerThreshold, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the load power of a PoE slot has fallen below the upper limit."
::= { hwWlanApTrap 69 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.70
hwApSTPAutoShutdownTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApId
}
STATUS current
DESCRIPTION
" This object indicates that STP detected a loop and shut down the port based on configuration."
::= { hwWlanApTrap 70 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.71
hwApSTPAutoShutdownRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApId
}
STATUS current
DESCRIPTION
"This object indicates that the shutdown port has recovered."
::= { hwWlanApTrap 71 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.72
hwApOpticalInvalidTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApOpticalFaultID,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the optical transceiver does not work normally."
::= { hwWlanApTrap 72 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.73
hwApOpticalInvalidRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApOpticalFaultID,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the optical transceiver has restored."
::= { hwWlanApTrap 73 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.74
hwApVapStaFullTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApRadioID, hwWlanApWlanID, hwWlanStaAuthFailCause,
hwWlanApPermitStaNum, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that new STAs cannot associate with an VAP."
::= { hwWlanApTrap 74 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.75
hwVapStaFullRecoverTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApRadioID, hwWlanApWlanID, hwWlanStaAuthFailCause,
hwWlanApPermitStaNum, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that new STAs can associate with an VAP."
::= { hwWlanApTrap 75 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.76
hwWlanBLELowPowerTrap NOTIFICATION-TYPE
OBJECTS { hwWlanBLEMacAddr }
STATUS current
DESCRIPTION
"This object indicates that the battery power of a BLE device is lower than the specified low power alarm threshold."
::= { hwWlanApTrap 76 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.77
hwWlanBLELowPowerRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanBLEMacAddr }
STATUS current
DESCRIPTION
"This object indicates that the low power alarm of a BLE device has been cleared."
::= { hwWlanApTrap 77 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.78
hwWlanBLEOfflineTrap NOTIFICATION-TYPE
OBJECTS { hwWlanBLEMacAddr }
STATUS current
DESCRIPTION
"This object indicates that a BLE device gets offline."
::= { hwWlanApTrap 78 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.79
hwWlanBLEOfflineRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanBLEMacAddr }
STATUS current
DESCRIPTION
"This object indicates that an offline alarm of a BLE device has been cleared."
::= { hwWlanApTrap 79 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.80
hwWlanBLEFaultyTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac,hwWlanApName,hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that an AP's built-in Bluetooth module is faulty."
::= { hwWlanApTrap 80 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.81
hwWlanBLEFaultyRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac,hwWlanApName,hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the fault on an AP's built-in Bluetooth module fault alarm is cleared."
::= { hwWlanApTrap 81 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.82
hwAPIoTCardInsertTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIotCardId, hwWlanApId, hwWlanApIotCardType }
STATUS current
DESCRIPTION
"This object indicates that an IoT card is inserted."
::= { hwWlanApTrap 82 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.83
hwAPIoTCardRemoveTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIotCardId, hwWlanApId, hwWlanApIotCardType }
STATUS current
DESCRIPTION
"This object indicates that an IoT card is removed."
::= { hwWlanApTrap 83 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.84
hwAPIoTServerStartFailTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIotCardId, hwWlanApUdp, hwWlanApId
}
STATUS current
DESCRIPTION
"This object indicates that the server module on an AP for receiving data from the IoT card fails to start."
::= { hwWlanApTrap 84 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.85
hwAPIoTServerStartFailResumeTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIotCardId, hwWlanApUdp, hwWlanApId
}
STATUS current
DESCRIPTION
"This object indicates that the server used by the IoT card is successfully recovered."
::= { hwWlanApTrap 85 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.86
hwWlanApSubFirmwareMismatchTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwSubFirmwareName, hwSubFirmware, hwRealVersion,
hwExpectVersion, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates the mismatch alarm for the sub-firmware version on the AP."
::= { hwWlanApTrap 86 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.87
hwApSpecificConfigChangedTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId, hwApSpecificChangeConfig,
hwApSpecificChangeReason}
STATUS current
DESCRIPTION
"Description."
::= { hwWlanApTrap 87 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.88
hwApConfigInconsistWithActualTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId, hwApInconsisitConfig,
hwApConfigInconsisitReason}
STATUS current
DESCRIPTION
"This alarm is generated when a the AP config is inconsistent with the actual attribute."
::= { hwWlanApTrap 88 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.89
hwWlanBLEDetachedTrap NOTIFICATION-TYPE
OBJECTS { hwWlanBLEMacAddr }
STATUS current
DESCRIPTION
"This object indicates an alarm showing that a Bluetooth tag is detached."
::= { hwWlanApTrap 89 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.90
hwWlanBLEDetachedRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanBLEMacAddr }
STATUS current
DESCRIPTION
"This object indicates an alarm showing that a Bluetooth tag is re-attached."
::= { hwWlanApTrap 90 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.91
hwWlanCableSnrNormalTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApId }
STATUS current
DESCRIPTION
"This alarm is generated when the AP's current network cable quality is good."
::= { hwWlanApTrap 91 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.92
hwWlanCableSnrAbnormalTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApId }
STATUS current
DESCRIPTION
"This alarm is generated when the AP's current network cable quality is poor, causing packet loss risks."
::= { hwWlanApTrap 92 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.93
hwWlanCableSnrDetectNotSupportTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApId }
STATUS current
DESCRIPTION
"This alarm is generated when the AP's port is Down, resulting in a failure to detect the network cable quality."
::= { hwWlanApTrap 93 }
hwApPowerInsufficientTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwApPowerWorkMode, hwApExpectPowerWorkMode, hwWlanApId, hwWlanApPowerInsufficientImpact }
STATUS current
DESCRIPTION
"This alarm is generated when the AP power supply is insufficient."
::= { hwWlanApTrap 94 }
hwApPowerInsufficientResumeTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwApPowerWorkMode, hwApExpectPowerWorkMode, hwWlanApId, hwWlanApPowerInsufficientImpact }
STATUS current
DESCRIPTION
"This alarm is generated when the AP power supply insufficient resume."
::= { hwWlanApTrap 95 }
hwPortVlanSecureMacTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanIllegalMac, hwApVlanId, hwWlanApIfName, hwWlanApId }
STATUS current
DESCRIPTION
"This alarm is generated when the AP's port receive illegal MAC."
::= { hwWlanApTrap 96 }
hwApMcBcPktNumExceedTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId }
STATUS current
DESCRIPTION
"This alarm is generated when the AP broadcast and multicast packets over threshold."
::= { hwWlanApTrap 97 }
hwApMcBcPktNumExceedRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId }
STATUS current
DESCRIPTION
"This alarm is generated when the AP broadcast and multicast packets over threshold restore."
::= { hwWlanApTrap 98 }
--1.3.6.1.4.1.2011.6.139.13.1.1.99
hwApTypeMismatchTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApActualType, hwWlanApConfigType, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the AP version and the AC version do not match."
::= { hwWlanApTrap 99 }
--1.3.6.1.4.1.2011.6.139.13.1.1.100
hwApSoftGreDownTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApIpv6Address, hwWlanApName, hwWlanApId }
STATUS current
DESCRIPTION
"This alarm is generated when the softgre tunnel down."
::= { hwWlanApTrap 100 }
hwApSoftGreDownTrapRestore NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApIpv6Address, hwWlanApName, hwWlanApId }
STATUS current
DESCRIPTION
"This alarm is generated when the softgre tunnel up."
::= { hwWlanApTrap 101 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.102
hwApVersionNotRecommendedTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApActualType }
STATUS current
DESCRIPTION
"The AP version is not recommended for the current AC."
::= { hwWlanApTrap 102 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.103
hwApVersionNotRecommendedTrapRestore NOTIFICATION-TYPE
OBJECTS { hwWlanApActualType }
STATUS current
DESCRIPTION
"AP-version-not-recommended alarm restore"
::= { hwWlanApTrap 103 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.104
hwApDiskOverloadTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwAPDiskThresholdWarning, hwAPDiskThresholdCurrent, hwWlanApId
}
STATUS current
DESCRIPTION
"The Disk usage of an AP exceeds the upper threshold."
::= { hwWlanApTrap 104 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.105
hwApDiskOverloadRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwAPDiskThresholdWarning, hwAPDiskThresholdCurrent, hwWlanApId
}
STATUS current
DESCRIPTION
"The Disk usage of an AP restores to the allowed range."
::= { hwWlanApTrap 105 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.106
hwApPowerLimitedTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwApPowerWorkMode, hwApExpectPowerWorkMode, hwWlanApId }
STATUS current
DESCRIPTION
"This alarm is generated when the AP works in Limited mode due to insufficient power supply."
::= { hwWlanApTrap 106 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.107
hwApPowerLimitedResumeTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwApPowerWorkMode, hwApExpectPowerWorkMode, hwWlanApId }
STATUS current
DESCRIPTION
"This alarm is generated when the AP resumes from the Limited mode."
::= { hwWlanApTrap 107 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.108
hwAPIPConflictTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId, hwAPConflictIPAddress }
STATUS current
DESCRIPTION
"The IP address of the AP conflicts with that of the gateway or another AP."
::= { hwWlanApTrap 108 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.109
hwApNumReachMaxTrap NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"This alarm is generated when the number of online APs reaches the maximum specifications."
::= { hwWlanApTrap 109 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.110
hwApNumReachMaxResumeTrap NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"This alarm is generated when the number of online APs is less than the maximum specifications."
::= { hwWlanApTrap 110 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.111
hwApNumReachWarningTrap NOTIFICATION-TYPE
OBJECTS { hwAPMaxNum }
STATUS current
DESCRIPTION
"The number of online APs reaches 80% of the maximum specifications."
::= { hwWlanApTrap 111 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.112
hwApNumReachWarningResumeTrap NOTIFICATION-TYPE
OBJECTS { hwAPMaxNum }
STATUS current
DESCRIPTION
"The number of online APs is less than 80% of the maximum specifications."
::= { hwWlanApTrap 112 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.113
hwAPIotCardConnectServerTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId, hwWlanApIotCardId, hwWlanApIotCardType }
STATUS current
DESCRIPTION
"This alarm is generated when an IOT card of the AP is connected to the server."
::= { hwWlanApTrap 113 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.114
hwAPIotCardDisconnectServerTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId, hwWlanApIotCardId, hwWlanApIotCardType }
STATUS current
DESCRIPTION
"This alarm is generated when an IOT card of the AP is disconnected from the server."
::= { hwWlanApTrap 114 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.115
hwAPIotCardTypeMatchTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId, hwWlanApIotCardId, hwWlanApIotCardType }
STATUS current
DESCRIPTION
"This alarm is generated when an IOT card of the AP is match with configuration."
::= { hwWlanApTrap 115 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.116
hwAPIotCardTypeMismatchTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId, hwWlanApIotCardId, hwWlanApIotCardType }
STATUS current
DESCRIPTION
"This alarm is generated when an IOT card of the AP is mismatch with configuration."
::= { hwWlanApTrap 116 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.117
hwAPFanRemoveTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId, hwApFanIndex }
STATUS current
DESCRIPTION
"This alarm is generated when the fan of the AP is removed."
::= { hwWlanApTrap 117 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.118
hwAPFanInsertTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId, hwApFanIndex }
STATUS current
DESCRIPTION
"This alarm is generated when the fan of the AP is inserted."
::= { hwWlanApTrap 118 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.119
hwAPPowerRemoveTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId, hwApPowerId }
STATUS current
DESCRIPTION
"This alarm is generated when the power of the AP is removed."
::= { hwWlanApTrap 119 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.120
hwAPPowerInsertTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId, hwApPowerId }
STATUS current
DESCRIPTION
"This alarm is generated when the power of the AP is inserted."
::= { hwWlanApTrap 120 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.121
hwAPPowerFailTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId, hwApPowerId, hwApPowerFaultId, hwApPowerFaultReason }
STATUS current
DESCRIPTION
"This alarm is generated when the power of the AP is faulty."
::= { hwWlanApTrap 121 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.122
hwAPPowerFailResumeTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId, hwApPowerId, hwApPowerFaultId, hwApPowerFaultReason }
STATUS current
DESCRIPTION
"This alarm is generated when the power of the AP resume from failure."
::= { hwWlanApTrap 122 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.123
hwAPPowerInvalidTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId, hwApPowerId }
STATUS current
DESCRIPTION
"This alarm is generated when the AP power is invalid for some reason."
::= { hwWlanApTrap 123 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.124
hwAPPowerInvalidResumeTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId, hwApPowerId }
STATUS current
DESCRIPTION
"This alarm is generated when the AP power resume from invalid situation."
::= { hwWlanApTrap 124 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.125
hwApExistNeedReconnectTrap NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"This alarm is generated when some APs need to be reconnected."
::= { hwWlanApTrap 125 }
-- 1.3.6.1.4.1.2011.6.139.13.1.1.126
hwApExistNeedReconnectResumeTrap NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"This alarm is generated when no AP needs to be reconnected."
::= { hwWlanApTrap 126 }
--1.3.6.1.4.1.2011.6.139.13.1.1.127
hwApOpticalVoltageTooHighTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalVoltage, hwApEntityPhysicalName,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the Voltage of an AP's optical module is too High."
::= { hwWlanApTrap 127 }
--1.3.6.1.4.1.2011.6.139.13.1.1.128
hwApOpticalVoltageTooHighRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalVoltage, hwApEntityPhysicalName,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the Voltage of an AP's optical module restores to the normal range."
::= { hwWlanApTrap 128 }
--1.3.6.1.4.1.2011.6.139.13.1.1.129
hwApOpticalVoltageTooLowTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalVoltage, hwApEntityPhysicalName,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the Voltage of an AP's optical module is too low."
::= { hwWlanApTrap 129 }
--1.3.6.1.4.1.2011.6.139.13.1.1.130
hwApOpticalVoltageTooLowRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalVoltage, hwApEntityPhysicalName,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the Voltage of an AP's optical module restores to the normal range."
::= { hwWlanApTrap 130 }
--1.3.6.1.4.1.2011.6.139.13.1.1.131
hwApOpticalCurrentTooHighTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalCurrent, hwApEntityPhysicalName,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the Current of an AP's optical module is too high."
::= { hwWlanApTrap 131 }
--1.3.6.1.4.1.2011.6.139.13.1.1.132
hwApOpticalCurrentTooHighRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalCurrent, hwApEntityPhysicalName,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the Current of an AP's optical module restores to the normal range."
::= { hwWlanApTrap 132 }
--1.3.6.1.4.1.2011.6.139.13.1.1.133
hwApOpticalCurrentTooLowTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalCurrent, hwApEntityPhysicalName,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that Current of an AP's optical module is too low."
::= { hwWlanApTrap 133 }
--1.3.6.1.4.1.2011.6.139.13.1.1.134
hwApOpticalCurrentTooLowRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalCurrent, hwApEntityPhysicalName,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the Current of an AP's optical module restores to the normal range."
::= { hwWlanApTrap 134 }
--1.3.6.1.4.1.2011.6.139.13.1.1.135
hwApLoopbackDetectTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the wired port detected a loop and blocked itself."
::= { hwWlanApTrap 135 }
--1.3.6.1.4.1.2011.6.139.13.1.1.136
hwApLoopbackDetectRestoreTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName,
hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the blocked port has recovered."
::= { hwWlanApTrap 136 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2
hwWlanApTrapObjects OBJECT IDENTIFIER ::= { hwWlanApTrapInfo 2 }
--1.3.6.1.4.1.2011.6.139.13.1.2.1
hwWlanApActualType OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AP type."
::= { hwWlanApTrapObjects 1 }
--1.3.6.1.4.1.2011.6.139.13.1.2.2
hwWlanApCpuOccupancyRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AP CPU usage."
::= { hwWlanApTrapObjects 2 }
--1.3.6.1.4.1.2011.6.139.13.1.2.3
hwWlanApMemoryOccupancyRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AP memory usage."
::= { hwWlanApTrapObjects 3 }
--1.3.6.1.4.1.2011.6.139.13.1.2.4
hwWlanApPermitStaNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of STAs allowed to associate with an AP."
::= { hwWlanApTrapObjects 4 }
--1.3.6.1.4.1.2011.6.139.13.1.2.5
hwWlanStaAuthFailCause OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cause of the STA authentication failure."
::= { hwWlanApTrapObjects 5 }
--1.3.6.1.4.1.2011.6.139.13.1.2.6
hwWlanAcSystemSwitchType OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The active/standby switchover type."
::= { hwWlanApTrapObjects 6 }
--1.3.6.1.4.1.2011.6.139.13.1.2.7
hwWlanApOpticalRxPower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Receive power of an AP's optical module."
::= { hwWlanApTrapObjects 7 }
--1.3.6.1.4.1.2011.6.139.13.1.2.8
hwWlanApOpticalTemperature OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature of an AP's optical module."
::= { hwWlanApTrapObjects 8 }
--1.3.6.1.4.1.2011.6.139.13.1.2.9
hwWlanApCfgCountryCode OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Country code."
::= { hwWlanApTrapObjects 9 }
--1.3.6.1.4.1.2011.6.139.13.1.2.10
hwWlanApArpAttackSrcMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { hwWlanApTrapObjects 10 }
--1.3.6.1.4.1.2011.6.139.13.1.2.11
hwWlanApArpAttackDstMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { hwWlanApTrapObjects 11 }
--1.3.6.1.4.1.2011.6.139.13.1.2.12
hwWlanApArpAttackSrcIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { hwWlanApTrapObjects 12 }
--1.3.6.1.4.1.2011.6.139.13.1.2.13
hwWlanApArpCfgRateThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { hwWlanApTrapObjects 13 }
--1.3.6.1.4.1.2011.6.139.13.1.2.14
hwWlanApArpActualRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { hwWlanApTrapObjects 14 }
--1.3.6.1.4.1.2011.6.139.13.1.2.15
hwWlanApNotifyRadioId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radio ID used to report alarms."
::= { hwWlanApTrapObjects 15 }
--1.3.6.1.4.1.2011.6.139.13.1.2.16
hwWlanApNotifyOrRestoreTemperature OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AP temperature."
::= { hwWlanApTrapObjects 16 }
--1.3.6.1.4.1.2011.6.139.13.1.2.17
hwWlanOccurTime OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Occurrence time."
::= { hwWlanApTrapObjects 17 }
--1.3.6.1.4.1.2011.6.139.13.1.2.18
hwWlanApBootNotifyName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AP restart alarm name."
::= { hwWlanApTrapObjects 18 }
--1.3.6.1.4.1.2011.6.139.13.1.2.19
hwWlanApFaultTimes OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of AP failures."
::= { hwWlanApTrapObjects 19 }
--1.3.6.1.4.1.2011.6.139.13.1.2.20
hwWlanApUnAuthorizedApRecordNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates that unauthorized AP alarms exist."
::= { hwWlanApTrapObjects 20 }
--1.3.6.1.4.1.2011.6.139.13.1.2.21
hwWlanCrcErrActual OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CRC error alarm threshold value.The unit is 1/10000."
::= { hwWlanApTrapObjects 21 }
--1.3.6.1.4.1.2011.6.139.13.1.2.22
hwWlanCrcThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { hwWlanApTrapObjects 22 }
--1.3.6.1.4.1.2011.6.139.13.1.2.23
hwWlanApNotifyWlanId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"WLAN ID used to report alarms."
::= { hwWlanApTrapObjects 23 }
--1.3.6.1.4.1.2011.6.139.13.1.2.24
hwWlanApLicenseInfo OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"License information of APs."
::= { hwWlanApTrapObjects 24 }
--1.3.6.1.4.1.2011.6.139.13.1.2.25
hwWlanCrcPortType OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CRC port type."
::= { hwWlanApTrapObjects 25 }
--1.3.6.1.4.1.2011.6.139.13.1.2.26
hwWlanCrcPortID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CRC port number."
::= { hwWlanApTrapObjects 26 }
--1.3.6.1.4.1.2011.6.139.13.1.2.27
hwWlanApArpAttackDropNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets discarded due to ARP attacks."
::= { hwWlanApTrapObjects 27 }
--1.3.6.1.4.1.2011.6.139.13.1.2.28
hwWlanApFaultID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates an FMEA fault alarm."
::= { hwWlanApTrapObjects 28 }
--1.3.6.1.4.1.2011.6.139.13.1.2.29
hwWlanApIfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AP interface index."
::= { hwWlanApTrapObjects 29 }
--1.3.6.1.4.1.2011.6.139.13.1.2.30
hwWlanApFaultInfo OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AP fault description."
::= { hwWlanApTrapObjects 30 }
--1.3.6.1.4.1.2011.6.139.13.1.2.31
hwWlanApSoftWareVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AP software version."
::= { hwWlanApTrapObjects 31 }
--1.3.6.1.4.1.2011.6.139.13.1.2.32
hwRadioUploadRemoteCaptureResult OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Remote capture result."
::= { hwWlanApTrapObjects 32 }
--1.3.6.1.4.1.2011.6.139.13.1.2.33
hwWlanApRadioID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radio ID."
::= { hwWlanApTrapObjects 33 }
--1.3.6.1.4.1.2011.6.139.13.1.2.34
hwWlanApCpuOverloadDescInfo OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The high AP CPU usage."
::= { hwWlanApTrapObjects 34 }
--1.3.6.1.4.1.2011.6.139.13.1.2.35
hwWlanApOpticalTxPower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Transmit power of the AP's optical module."
::= { hwWlanApTrapObjects 35 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.36
hwWlanSlotNum OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { hwWlanApTrapObjects 36 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.37
hwApPoePdPriority OBJECT-TYPE
SYNTAX INTEGER
{
critical(1),
high(2),
low(3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object identifies the PD priority.The default value is low."
::= { hwWlanApTrapObjects 37 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.38
hwApPoePortPriority OBJECT-TYPE
SYNTAX INTEGER
{
critical(1),
high(2),
low(3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object identifies the priority of an interface.The default value is low."
::= { hwWlanApTrapObjects 38 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.39
hwApPoeCurConsumPower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object identifies the current consuming power."
::= { hwWlanApTrapObjects 39 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.40
hwApPoeConsumPowerThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object identifies the threshold of consuming power."
::= { hwWlanApTrapObjects 40 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.41
hwApFanIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object identifies the id of fan."
::= { hwWlanApTrapObjects 41 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.42
hwApEntityPhysicalName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object identifies the phisical name of entity name."
::= { hwWlanApTrapObjects 42 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.43
hwApStorageIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object identifies the id of Storage."
::= { hwWlanApTrapObjects 43 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.44
hwApStorageName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object identifies the name of Storage."
::= { hwWlanApTrapObjects 44 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.45
hwWlanApOpticalFaultID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object identifies the error corde of the optical transceiver fault."
::= { hwWlanApTrapObjects 45 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.46
hwWlanApWlanID OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the Wlan Id of the Vap that has the max number of stations."
::= { hwWlanApTrapObjects 46 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.47
hwWlanBLEMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MAC address of a BLE device."
::= { hwWlanApTrapObjects 47 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.48
hwWlanApUdp OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"UDP port number."
::= { hwWlanApTrapObjects 48 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.49
hwSubFirmwareName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"AP's sub-firmware name."
::= { hwWlanApTrapObjects 49 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.50
hwSubFirmware OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"AP's sub-firmware number."
::= { hwWlanApTrapObjects 50 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.51
hwRealVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Actual version of the AP's sub-firmware."
::= { hwWlanApTrapObjects 51 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.52
hwExpectVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Expected version of the AP's sub-firmware."
::= { hwWlanApTrapObjects 52 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.53
hwWlanApIotCardId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Number of the slot on an AP where an IoT card is installed."
::= { hwWlanApTrapObjects 53 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.54
hwPowerOffReason OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object identifies the reason of power off."
::= { hwWlanApTrapObjects 54 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.55
hwApSpecificChangeConfig OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object identifies the config of change."
::= { hwWlanApTrapObjects 55 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.56
hwApSpecificChangeReason OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object identifies the reason of change config."
::= { hwWlanApTrapObjects 56 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.57
hwApInconsisitConfig OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object identifies the inconsistent config."
::= { hwWlanApTrapObjects 57 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.58
hwApConfigInconsisitReason OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object identifies the reason of inconsistent config."
::= { hwWlanApTrapObjects 58 }
hwApPowerWorkMode OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..10))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object identifies the current power work mode of AP."
::= { hwWlanApTrapObjects 59 }
hwApExpectPowerWorkMode OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..10))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object identifies the expect power work mode of AP."
::= { hwWlanApTrapObjects 60 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.61
hwWlanIllegalMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object identifies the illegal mac."
::= { hwWlanApTrapObjects 61 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.62
hwApVlanId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object identifies the vlan id."
::= { hwWlanApTrapObjects 62 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.63
hwWlanApIfName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object identifies the IfName."
::= { hwWlanApTrapObjects 63 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.64
hwWlanApConfigType OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object identifies the type of ap config."
::= { hwWlanApTrapObjects 64 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.65
hwAPDiskThresholdWarning OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Disk usage threshold of an AP."
::= { hwWlanApTrapObjects 65 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.66
hwAPDiskThresholdCurrent OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current Disk usage of an AP."
::= { hwWlanApTrapObjects 66 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.67
hwAPConflictIPAddress OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the ap conflicts with that of the gateway or another AP."
::= { hwWlanApTrapObjects 67 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.68
hwAPMaxNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum specifications of APs."
::= { hwWlanApTrapObjects 68 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.69
hwWlanApIotCardType OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..16))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the IOT card type."
::= { hwWlanApTrapObjects 69 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.70
hwApPowerId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the power ID of the AP."
::= { hwWlanApTrapObjects 70 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.71
hwApPowerFaultId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP power fault ID."
::= { hwWlanApTrapObjects 71 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.72
hwApPowerFaultReason OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..256))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the AP power fault reason."
::= { hwWlanApTrapObjects 72 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.73
hwWlanApTemperatureType OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..16))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the AP temperature type."
::= { hwWlanApTrapObjects 73 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.74
hwWlanApOpticalVoltage OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Voltage of an AP's optical module."
::= { hwWlanApTrapObjects 74 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.75
hwWlanApOpticalCurrent OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current of an AP's optical module."
::= { hwWlanApTrapObjects 75 }
-- 1.3.6.1.4.1.2011.6.139.13.1.2.76
hwWlanApPowerInsufficientImpact OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..64))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the impact of AP power insufficient."
::= { hwWlanApTrapObjects 76 }
--1.3.6.1.4.1.2011.6.139.13.2
hwWlanApTypeObjects OBJECT IDENTIFIER ::= { hwWlanAp 2 }
--1.3.6.1.4.1.2011.6.139.13.2.1
hwWlanApTypeTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwWlanApTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to query attributes based on AP types and restart APs based on AP types."
::= { hwWlanApTypeObjects 1 }
--1.3.6.1.4.1.2011.6.139.13.2.1.1
hwWlanApTypeEntry OBJECT-TYPE
SYNTAX HwWlanApTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of this table is hwWlanApType."
INDEX { hwWlanApType }
::= { hwWlanApTypeTable 1 }
HwWlanApTypeEntry ::=
SEQUENCE {
hwWlanApType
OCTET STRING,
hwWlanApTypeDesc
OCTET STRING,
hwWlanApTypeWiredPortNum
Integer32,
hwWlanApTypeRadioNum
Integer32,
hwWlanApTypeMaxStaNum
Integer32,
hwWlanApTypeReset
Integer32,
hwWlanApTypeExternalAntenna
INTEGER,
hwWlanApTypeID
Integer32,
hwWlanApTypeOperate
INTEGER,
hwWlanApTypeConfigurationMethod
OCTET STRING,
hwWlanApTypeAutoCreateMethod
INTEGER
}
--1.3.6.1.4.1.2011.6.139.13.2.1.1.1
hwWlanApType OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the AP type name. It is the index of the table."
::= { hwWlanApTypeEntry 1 }
--1.3.6.1.4.1.2011.6.139.13.2.1.1.2
hwWlanApTypeDesc OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates description of an AP type."
::= { hwWlanApTypeEntry 2 }
--1.3.6.1.4.1.2011.6.139.13.2.1.1.3
hwWlanApTypeWiredPortNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of wired ports on APs of a certain type."
::= { hwWlanApTypeEntry 3 }
--1.3.6.1.4.1.2011.6.139.13.2.1.1.4
hwWlanApTypeRadioNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of radios on APs of a certain type."
::= { hwWlanApTypeEntry 4 }
--1.3.6.1.4.1.2011.6.139.13.2.1.1.5
hwWlanApTypeMaxStaNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the maximum number of access STAs on an AP of a certain type."
::= { hwWlanApTypeEntry 5 }
--1.3.6.1.4.1.2011.6.139.13.2.1.1.6
hwWlanApTypeReset OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates that APs are restarted based on the AP type."
::= { hwWlanApTypeEntry 6 }
-- 1.3.6.1.4.1.2011.6.139.13.2.1.1.7
hwWlanApTypeExternalAntenna OBJECT-TYPE
SYNTAX INTEGER
{
notSupport(1),
support(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the attribute of support external antenna on an AP of a certain type."
::= { hwWlanApTypeEntry 7 }
-- 1.3.6.1.4.1.2011.6.139.13.2.1.1.8
hwWlanApTypeID OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"AP type ID."
::= { hwWlanApTypeEntry 8 }
-- 1.3.6.1.4.1.2011.6.139.13.2.1.1.9
hwWlanApTypeOperate OBJECT-TYPE
SYNTAX INTEGER
{
add(1),
delete(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the row status."
::= { hwWlanApTypeEntry 9 }
-- 1.3.6.1.4.1.2011.6.139.13.2.1.1.10
hwWlanApTypeConfigurationMethod OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AP type configuration method."
::= { hwWlanApTypeEntry 10 }
-- 1.3.6.1.4.1.2011.6.139.13.2.1.1.11
hwWlanApTypeAutoCreateMethod OBJECT-TYPE
SYNTAX INTEGER
{
createbyid(1),
createbytype(2),
createall(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Automatic AP type generation method."
::= { hwWlanApTypeEntry 11 }
-- 1.3.6.1.4.1.2011.6.139.13.2.2
hwWlanApTypeRadioTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwWlanApTypeRadioEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to query radio-related attributes of APs of a certain type."
::= { hwWlanApTypeObjects 2 }
--1.3.6.1.4.1.2011.6.139.13.2.2.1
hwWlanApTypeRadioEntry OBJECT-TYPE
SYNTAX HwWlanApTypeRadioEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The indexes of this table are hwWlanApType and hwWlanApTypeRadioIndex."
INDEX { hwWlanApType, hwWlanApTypeRadioIndex }
::= { hwWlanApTypeRadioTable 1 }
HwWlanApTypeRadioEntry ::=
SEQUENCE {
hwWlanApTypeRadioIndex
Integer32,
hwWlanApTypeRadioType
INTEGER,
hwWlanRadioMaxSpatialStreamsNum
Unsigned32,
hwWlanApTypeRadioAntennaGain
Integer32,
hwWlanApTypeRadioMaxVAPNum
Unsigned32
}
--1.3.6.1.4.1.2011.6.139.13.2.2.1.1
hwWlanApTypeRadioIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the radio index of APs of a certain type."
::= { hwWlanApTypeRadioEntry 1 }
--1.3.6.1.4.1.2011.6.139.13.2.2.1.2
hwWlanApTypeRadioType OBJECT-TYPE
SYNTAX INTEGER
{
wlan80211a(1) ,
wlan80211b(2) ,
wlan80211g(3) ,
wlan80211bg(4) ,
wlan80211an(5) ,
wlan80211bgn(6),
wlan80211abgn(7),
wlan80211ac(8),
wlan80211anac(9),
wlan80211bgnax(10),
wlan80211anacax(11),
wlan80211ax(12)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the radio type of APs of a certain type."
::= { hwWlanApTypeRadioEntry 2 }
--1.3.6.1.4.1.2011.6.139.13.2.2.1.3
hwWlanRadioMaxSpatialStreamsNum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the maximum number of spatial streams of an AP radio."
::= { hwWlanApTypeRadioEntry 3 }
-- 1.3.6.1.4.1.2011.6.139.13.2.2.1.4
hwWlanApTypeRadioAntennaGain OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates that the antenna gain is configured according to the radio ID."
::= { hwWlanApTypeRadioEntry 4 }
-- 1.3.6.1.4.1.2011.6.139.13.2.2.1.5
hwWlanApTypeRadioMaxVAPNum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the maximum number of VAPs that a radio supports."
::= { hwWlanApTypeRadioEntry 5 }
--1.3.6.1.4.1.2011.6.139.13.2.3
hwWlanApTypeWiredPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwWlanApTypeWiredPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to query wired interface attributes of APs of a certain type."
::= { hwWlanApTypeObjects 3 }
--1.3.6.1.4.1.2011.6.139.13.2.3.1
hwWlanApTypeWiredPortEntry OBJECT-TYPE
SYNTAX HwWlanApTypeWiredPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The indexes of this table are hwWlanApType and hwWlanApTypeWiredPortIndex."
INDEX { hwWlanApType,hwWlanApTypeWiredPortIndex}
::= { hwWlanApTypeWiredPortTable 1 }
HwWlanApTypeWiredPortEntry ::=
SEQUENCE {
hwWlanApTypeWiredPortIndex
Integer32,
hwWlanApTypeWiredPortType
INTEGER,
hwWlanApTypeWiredPortName
OCTET STRING
}
--1.3.6.1.4.1.2011.6.139.13.2.3.1.1
hwWlanApTypeWiredPortIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the index of an AP's wired interface.
Numbering rule: port-index = port-type * 100 + port-number. For example, the indexes of a wall plate AP's GE0, eth0,
and eth1 are 200 (2 * 100 + 0 = 200), 100 (1 * 100 + 0 = 100), and 101 (1 * 100 + 1 = 101) respectively."
::= { hwWlanApTypeWiredPortEntry 1 }
--1.3.6.1.4.1.2011.6.139.13.2.3.1.2
hwWlanApTypeWiredPortType OBJECT-TYPE
SYNTAX INTEGER
{
fe(1),
ge(2),
gpon(3),
epon(4),
adsl2plus(5),
ethTrunk(6),
multige(7),
xge(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the type of an AP's wired interface."
::= { hwWlanApTypeWiredPortEntry 2 }
--1.3.6.1.4.1.2011.6.139.13.2.3.1.3
hwWlanApTypeWiredPortName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the name of a wired interface on APs of a certain type, for example, ethernet 0, ethernet 1, gigabit-ethernet 0, and eth-trunk 0."
::= { hwWlanApTypeWiredPortEntry 3 }
-- 1.3.6.1.4.1.2011.6.139.13.2.4
hwWlanApTypeUndefinedTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwWlanApTypeUndefinedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to operate the undefined AP type record reported by an AP."
::= { hwWlanApTypeObjects 4 }
-- 1.3.6.1.4.1.2011.6.139.13.2.4.1
hwWlanApTypeUndefinedEntry OBJECT-TYPE
SYNTAX HwWlanApTypeUndefinedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The indexes of this table is hwWlanApTypeUndefined."
INDEX { hwWlanApTypeUndefined }
::= { hwWlanApTypeUndefinedTable 1 }
HwWlanApTypeUndefinedEntry ::=
SEQUENCE {
hwWlanApTypeUndefined
OCTET STRING,
hwWlanApTypeIDUndefined
Integer32,
hwWlanApTypeUndefinedReportApMac
MacAddress,
hwWlanApTypeUndefinedReportTime
OCTET STRING,
hwWlanApTypeUndefinedOperate
INTEGER
}
-- 1.3.6.1.4.1.2011.6.139.13.2.4.1.1
hwWlanApTypeUndefined OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of an undefined AP type."
::= { hwWlanApTypeUndefinedEntry 1 }
-- 1.3.6.1.4.1.2011.6.139.13.2.4.1.2
hwWlanApTypeIDUndefined OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ID of an undefined AP type."
::= { hwWlanApTypeUndefinedEntry 2 }
-- 1.3.6.1.4.1.2011.6.139.13.2.4.1.3
hwWlanApTypeUndefinedReportApMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MAC address of the AP that reports an undefined AP type."
::= { hwWlanApTypeUndefinedEntry 3 }
-- 1.3.6.1.4.1.2011.6.139.13.2.4.1.4
hwWlanApTypeUndefinedReportTime OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time when an undefined AP type is reported."
::= { hwWlanApTypeUndefinedEntry 4 }
-- 1.3.6.1.4.1.2011.6.139.13.2.4.1.5
hwWlanApTypeUndefinedOperate OBJECT-TYPE
SYNTAX INTEGER { delete(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the row status.."
::= { hwWlanApTypeUndefinedEntry 5 }
-- 1.3.6.1.4.1.2011.6.139.13.2.5
hwWlanApTypeAttributesAbnormalCheckTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwWlanApTypeAttributesAbnormalCheckEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to query exceptions in verifying type attributes reported by an AP."
::= { hwWlanApTypeObjects 5 }
-- 1.3.6.1.4.1.2011.6.139.13.2.5.1
hwWlanApTypeAttributesAbnormalCheckEntry OBJECT-TYPE
SYNTAX HwWlanApTypeAttributesAbnormalCheckEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The indexes of this table is hwWlanApTypeAttributesAbnormalCheck."
INDEX { hwWlanApTypeAttributesAbnormalCheck }
::= { hwWlanApTypeAttributesAbnormalCheckTable 1 }
HwWlanApTypeAttributesAbnormalCheckEntry ::=
SEQUENCE {
hwWlanApTypeAttributesAbnormalCheck
OCTET STRING,
hwWlanApTypeIDAttributesAbnormalCheck
Integer32,
hwWlanApTypeAttributesAbnormalCheckResult
INTEGER,
hwWlanApTypeAttributesAbnormalCheckReason
INTEGER
}
-- 1.3.6.1.4.1.2011.6.139.13.2.5.1.1
hwWlanApTypeAttributesAbnormalCheck OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the name of an AP type whose attributes fail to be verified."
::= { hwWlanApTypeAttributesAbnormalCheckEntry 1 }
-- 1.3.6.1.4.1.2011.6.139.13.2.5.1.2
hwWlanApTypeIDAttributesAbnormalCheck OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the ID of an AP type whose attributes fail to be verified."
::= { hwWlanApTypeAttributesAbnormalCheckEntry 2 }
-- 1.3.6.1.4.1.2011.6.139.13.2.5.1.3
hwWlanApTypeAttributesAbnormalCheckResult OBJECT-TYPE
SYNTAX INTEGER
{
risk(1),
fail(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Abnormal check result of reporting AP type attributes."
::= { hwWlanApTypeAttributesAbnormalCheckEntry 3 }
-- 1.3.6.1.4.1.2011.6.139.13.2.5.1.4
hwWlanApTypeAttributesAbnormalCheckReason OBJECT-TYPE
SYNTAX INTEGER
{
rangeconflict(1),
lostattributes(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reason for the abnormal check result of reporting AP type attributes."
::= { hwWlanApTypeAttributesAbnormalCheckEntry 4 }
--1.3.6.1.4.1.2011.6.139.13.3
hwWlanApObjects OBJECT IDENTIFIER ::= { hwWlanAp 3 }
--1.3.6.1.4.1.2011.6.139.13.3.1
hwWlanApPing OBJECT IDENTIFIER ::= { hwWlanApObjects 1 }
--1.3.6.1.4.1.2011.6.139.13.3.1.1
hwWlanApPingApMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the MAC address in an AP ping operation. If the AP ID and MAC address are specified concurrently, the AP is pinged based on the MAC address."
::= { hwWlanApPing 1 }
--1.3.6.1.4.1.2011.6.139.13.3.1.2
hwWlanApPingAddress OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the domain name or IP address of the destination host."
::= { hwWlanApPing 2 }
--1.3.6.1.4.1.2011.6.139.13.3.1.3
hwWlanApPingCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the number of times ICMP ECHO-REQUEST packets are sent.Default value: 4."
::= { hwWlanApPing 3 }
--1.3.6.1.4.1.2011.6.139.13.3.1.4
hwWlanApPingPacketSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the length of an ECHO-REQUE."
::= { hwWlanApPing 4 }
--1.3.6.1.4.1.2011.6.139.13.3.1.5
hwWlanApPingWaitTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the time to wait before sending the next ICMP Request packet.Unit: ms Default value: 2000."
::= { hwWlanApPing 5 }
--1.3.6.1.4.1.2011.6.139.13.3.1.6
hwWlanApPingTimeOut OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the timeout period for an ECHO-RESPONSE after an ECHO-REQUEST is sent.Unit: ms Default value: 2000."
::= { hwWlanApPing 6 }
--1.3.6.1.4.1.2011.6.139.13.3.1.7
hwWlanApPingResultSuccessCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of successful AP ping operations. Only the result of the latest AP ping operation is kept."
::= { hwWlanApPing 7 }
--1.3.6.1.4.1.2011.6.139.13.3.1.8
hwWlanApPingResultFailureCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of AP ping operation failures. Only the result of the latest AP ping operation is kept."
::= { hwWlanApPing 8 }
--1.3.6.1.4.1.2011.6.139.13.3.1.9
hwWlanApPingResultAveResponseTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the average response time for an AP ping operation. Only the result of the latest AP ping operation is kept.Unit: ms."
::= { hwWlanApPing 9 }
--1.3.6.1.4.1.2011.6.139.13.3.1.10
hwWlanApPingResultMinResponseTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the minimum response time for an AP ping operation. Only the result of the latest AP ping operation is kept.Unit: ms."
::= { hwWlanApPing 10 }
--1.3.6.1.4.1.2011.6.139.13.3.1.11
hwWlanApPingResultMaxResponseTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the maximum response time for an AP ping operation. Only the result of the latest AP ping operation is kept.Unit: ms."
::= { hwWlanApPing 11 }
-- 1.3.6.1.4.1.2011.6.139.13.3.1.12
hwWlanApPingResultFlag OBJECT-TYPE
SYNTAX INTEGER
{
false(1),
true(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the result of the AP ping operation."
::= { hwWlanApPing 12 }
-- 1.3.6.1.4.1.2011.6.139.13.3.2
-- 1.3.6.1.4.1.2011.6.139.13.3.2
hwWlanUnauthedApRecordTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwWlanUnauthedApRecordEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table describes rogue AP records. Rogue APs are those whose MAC addresses and SNs are not in the whitelist and not confirmed after being discovered by the AC."
::= { hwWlanApObjects 2 }
--1.3.6.1.4.1.2011.6.139.13.3.2.1
hwWlanUnauthedApRecordEntry OBJECT-TYPE
SYNTAX HwWlanUnauthedApRecordEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of this table is hwWlanUnauthedApRecordIndex."
INDEX { hwWlanUnauthedApRecordIndex }
::= { hwWlanUnauthedApRecordTable 1 }
HwWlanUnauthedApRecordEntry ::=
SEQUENCE {
hwWlanUnauthedApRecordIndex
Integer32,
hwWlanUnauthedApType
OCTET STRING,
hwWlanUnauthedApMacAddress
MacAddress,
hwWlanUnauthedApSn
OCTET STRING,
hwWlanUnauthedApIpAddress
IpAddress,
hwWlanUnauthedApRecordTime
DateAndTime,
hwWlanUnauthedAPIPv6Address
OCTET STRING
}
--1.3.6.1.4.1.2011.6.139.13.3.2.1.1
hwWlanUnauthedApRecordIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the index of a rogue AP record."
::= { hwWlanUnauthedApRecordEntry 1 }
--1.3.6.1.4.1.2011.6.139.13.3.2.1.2
hwWlanUnauthedApType OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the type of a rogue AP."
::= { hwWlanUnauthedApRecordEntry 2 }
--1.3.6.1.4.1.2011.6.139.13.3.2.1.3
hwWlanUnauthedApMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the type of a rogue AP."
::= { hwWlanUnauthedApRecordEntry 3 }
--1.3.6.1.4.1.2011.6.139.13.3.2.1.4
hwWlanUnauthedApSn OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the SN of a rogue AP."
::= { hwWlanUnauthedApRecordEntry 4 }
--1.3.6.1.4.1.2011.6.139.13.3.2.1.5
hwWlanUnauthedApIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IP address of a rogue AP."
::= { hwWlanUnauthedApRecordEntry 5 }
--1.3.6.1.4.1.2011.6.139.13.3.2.1.6
hwWlanUnauthedApRecordTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the time when a rogue AP is recorded."
::= { hwWlanUnauthedApRecordEntry 6 }
--1.3.6.1.4.1.2011.6.139.13.3.2.1.7
hwWlanUnauthedAPIPv6Address OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IPv6 address of a rogue AP."
::= { hwWlanUnauthedApRecordEntry 7 }
--1.3.6.1.4.1.2011.6.139.13.3.3
hwWlanApTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwWlanApEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to add, delete, modify, reset, or confirm APs. You can also use the table to query the configuration and restore factory settings of APs."
::= { hwWlanApObjects 3 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1
hwWlanApEntry OBJECT-TYPE
SYNTAX HwWlanApEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of this table is hwWlanApMac."
INDEX { hwWlanApMac }
::= { hwWlanApTable 1 }
HwWlanApEntry ::=
SEQUENCE {
hwWlanApMac
MacAddress,
hwWlanApSn
OCTET STRING,
hwWlanApTypeInfo
OCTET STRING,
hwWlanApName
OCTET STRING,
hwWlanApGroup
OCTET STRING,
hwWlanApRunState
INTEGER,
hwWlanApSoftwareVersion
OCTET STRING,
hwWlanApHardwareVersion
OCTET STRING,
hwWlanApCpuType
OCTET STRING,
hwWlanApCpufrequency
Integer32,
hwWlanApMemoryType
OCTET STRING,
hwWlanApDomain
OCTET STRING,
hwWlanApIpAddress
IpAddress,
hwWlanApIpNetMask
IpAddress,
hwWlanApGatewayIp
IpAddress,
hwWlanApMemorySize
Integer32,
hwWlanApFlashSize
Integer32,
hwWlanApRunTime
Unsigned32,
hwWlanApAdminOper
INTEGER,
hwWlanApDNS
IpAddress,
hwWlanApOnlineTime
Unsigned32,
hwWlanApSysSoftwareDesc
OCTET STRING,
hwWlanApSysHardtwareDesc
OCTET STRING,
hwWlanApSysManufacture
OCTET STRING,
hwWlanApSysSoftwareName
OCTET STRING,
hwWlanApSysSoftwareVendor
OCTET STRING,
hwWlanApBomCode
OCTET STRING,
hwWlanApIpv6Address
OCTET STRING,
hwWlanApIpv6NetMask
OCTET STRING,
hwWlanApGatewayIpv6
OCTET STRING,
hwWlanApIpv6DNS
OCTET STRING,
hwWlanApProtectAcIPv6Addr
OCTET STRING,
hwWlanApBootCountTotal
Integer32,
hwWlanApBootCountPowerOff
Integer32,
hwWlanApBootCountClear
RowStatus,
hwWlanApElectronicLabel
OCTET STRING,
hwWlanApWiredPortNum
Integer32,
hwWlanApWiredPortMtu
Integer32,
hwWlanApWiredPortMac
MacAddress,
hwWlanApMemoryUseRate
Integer32,
hwWlanApCpuUseRate
Integer32,
hwWlanApFlashFreeSize
Integer32,
hwWlanApTemperature
Integer32,
hwWlanApOnlineUserNum
Integer32,
hwWlanApDualBandAssoc5gStaNum
Unsigned32,
hwWlanApDualBandStaNum
Unsigned32,
hwWlanApStaOnlineFailRatio
Unsigned32,
hwWlanApStaOfflineRatio
Unsigned32,
hwWlanApStickyClientRatio
Unsigned32,
hwWlanApUpEthPortSpeed
INTEGER,
hwWlanApUpEthPortSpeedMode
INTEGER,
hwWlanApUpEthPortDuplex
INTEGER,
hwWlanApUpEthPortDuplexMode
INTEGER,
hwWlanApUpPortSpeed
Integer32,
hwWlanAPUpPortPER
Integer32,
hwWlanEthportUpRate
Integer32,
hwWlanEthportDownRate
Integer32,
hwWlanApAirportUpTraffic
OCTET STRING,
hwWlanApAirportDwTraffic
OCTET STRING,
hwWlanApEthportDwTraffic
OCTET STRING,
hwWlanApEthportUpTraffic
OCTET STRING,
hwWlanApUpPortRecvPackets
Counter64,
hwWlanApUpPortSendPackets
Counter64,
hwWlanApRowstatus
RowStatus,
hwWlanApUpPortRecvBytes
Counter64,
hwWlanApUpPortSendBytes
Counter64,
hwWlanApId
Unsigned32,
hwWlanCentralApId
Unsigned32,
hwWlanCentralApMac
MacAddress,
hwWlanCentralApName
OCTET STRING,
hwWlanApSDCardSize
Integer32,
hwWlanAPLongitude
OCTET STRING,
hwWlanAPLatitude
OCTET STRING,
hwWlanApTotalOnlineTime
Unsigned32,
hwWlanApDiscoverTime
Unsigned32,
hwWlanAPPoeWorkmode
INTEGER,
hwWlanAPPoeExpectedWorkmode
INTEGER,
hwWlanAPStaOnlineFailStatistics
OCTET STRING,
hwWlanAPStaOfflineStatistics
OCTET STRING,
hwWlanAPPowerSupplyState
INTEGER,
hwWlanApDataLinkState
INTEGER,
hwWlanApEnvironmentTemperature
Integer32,
hwWlanApCpuTemperature
Integer32,
hwWlanApNpTemperature
Integer32
}
--1.3.6.1.4.1.2011.6.139.13.3.3.1.1
hwWlanApMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the MAC address of an AP."
::= { hwWlanApEntry 1 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.2
hwWlanApSn OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the sequence number (SN) of an AP."
::= { hwWlanApEntry 2 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.3
hwWlanApTypeInfo OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP type."
::= { hwWlanApEntry 3 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.4
hwWlanApName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the AP name."
::= { hwWlanApEntry 4 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.5
hwWlanApGroup OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the group to which an AP belongs."
::= { hwWlanApEntry 5 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.6
hwWlanApRunState OBJECT-TYPE
SYNTAX INTEGER
{
idle(1) ,
autofind(2) ,
typeNotMatch(3) ,
fault(4) ,
config(5) ,
configFailed(6) ,
download(7) ,
normal(8) ,
committing(9) ,
commitFailed(10) ,
standby(11) ,
verMismatch(12),
nameConflicted(13),
invalid(14),
countryCodeMismatch(15)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP state."
::= { hwWlanApEntry 6 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.7
hwWlanApSoftwareVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP software version."
::= { hwWlanApEntry 7 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.8
hwWlanApHardwareVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP hardware version."
::= { hwWlanApEntry 8 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.9
hwWlanApCpuType OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the CPU type of an AP."
::= { hwWlanApEntry 9 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.10
hwWlanApCpufrequency OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the CPU frequency of an AP.Unit: MHz."
::= { hwWlanApEntry 10 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.11
hwWlanApMemoryType OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the memory type of an AP."
::= { hwWlanApEntry 11 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.12
hwWlanApDomain OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP domain."
::= { hwWlanApEntry 12 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.13
hwWlanApIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IP address of an AP."
::= { hwWlanApEntry 13 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.14
hwWlanApIpNetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IP address mask of an AP."
::= { hwWlanApEntry 14 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.15
hwWlanApGatewayIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the gateway IP address of an AP."
::= { hwWlanApEntry 15 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.16
hwWlanApMemorySize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the memory size of an AP.Unit: MB."
::= { hwWlanApEntry 16 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.17
hwWlanApFlashSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the flash memory size of an AP.Unit: MB."
::= { hwWlanApEntry 17 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.18
hwWlanApRunTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the running time of an AP.Unit: tick."
::= { hwWlanApEntry 18 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.19
hwWlanApAdminOper OBJECT-TYPE
SYNTAX INTEGER
{
reset(1) ,
manufacturerConfig(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates administrative status of an AP."
::= { hwWlanApEntry 19 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.20
hwWlanApDNS OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP DNS."
::= { hwWlanApEntry 20 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.21
hwWlanApOnlineTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates online duration of an AP."
::= { hwWlanApEntry 21 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.22
hwWlanApSysSoftwareDesc OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates system software description of an AP."
::= { hwWlanApEntry 22 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.23
hwWlanApSysHardtwareDesc OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates system hardware description of an AP."
::= { hwWlanApEntry 23 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.24
hwWlanApSysManufacture OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the manufacturer of an AP."
::= { hwWlanApEntry 24 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.25
hwWlanApSysSoftwareName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates software name of an AP."
::= { hwWlanApEntry 25 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.26
hwWlanApSysSoftwareVendor OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the manufacturer of the AP software."
::= { hwWlanApEntry 26 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.27
hwWlanApBomCode OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the BOM code."
::= { hwWlanApEntry 27 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.28
hwWlanApIpv6Address OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IPv6 address."
::= { hwWlanApEntry 28 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.29
hwWlanApIpv6NetMask OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IPv6 address mask."
::= { hwWlanApEntry 29 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.30
hwWlanApGatewayIpv6 OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IPv6 gateway."
::= { hwWlanApEntry 30 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.31
hwWlanApIpv6DNS OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IPv6 DNS."
::= { hwWlanApEntry 31 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.32
hwWlanApProtectAcIPv6Addr OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IPv6 address of the standby AC."
::= { hwWlanApEntry 32 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.33
hwWlanApBootCountTotal OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of times an AP is restarted."
::= { hwWlanApEntry 33 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.34
hwWlanApBootCountPowerOff OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of times an AP is restarted due to a power failure."
::= { hwWlanApEntry 34 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.35
hwWlanApBootCountClear OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object clears the AP restart count."
::= { hwWlanApEntry 35 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.36
hwWlanApElectronicLabel OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..3073))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the electronic label of an AP."
::= { hwWlanApEntry 36 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.37
hwWlanApWiredPortNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of wired interfaces."
::= { hwWlanApEntry 37 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.38
hwWlanApWiredPortMtu OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the maximum transmit unit (MTU) of a wired interface."
::= { hwWlanApEntry 38 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.39
hwWlanApWiredPortMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the MAC address of a wired interface."
::= { hwWlanApEntry 39 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.40
hwWlanApMemoryUseRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the memory usage.Unit: %."
::= { hwWlanApEntry 40 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.41
hwWlanApCpuUseRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the CPU usage.Unit: %."
::= { hwWlanApEntry 41 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.42
hwWlanApFlashFreeSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates available space in the flash memory.Unit: KB."
::= { hwWlanApEntry 42 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.43
hwWlanApTemperature OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the operating temperature."
::= { hwWlanApEntry 43 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.44
hwWlanApOnlineUserNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of online users."
::= { hwWlanApEntry 44 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.45
hwWlanApDualBandAssoc5gStaNum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of dual-band terminals that access the 5 GHz radio."
::= { hwWlanApEntry 45 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.46
hwWlanApDualBandStaNum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of STAs that support dual frequency bands."
::= { hwWlanApEntry 46 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.47
hwWlanApStaOnlineFailRatio OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates STA online failure ratio on an AP."
::= { hwWlanApEntry 47 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.48
hwWlanApStaOfflineRatio OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates STA offline ratio of an AP."
::= { hwWlanApEntry 48 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.49
hwWlanApStickyClientRatio OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the proportion of sticky STAs to all STAs."
::= { hwWlanApEntry 49 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.50
hwWlanApUpEthPortSpeed OBJECT-TYPE
SYNTAX INTEGER
{
speed10(1) ,
speed100(2) ,
speed1000(3) ,
speed10000(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the rate of an upstream Ethernet interface."
::= { hwWlanApEntry 50 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.51
hwWlanApUpEthPortSpeedMode OBJECT-TYPE
SYNTAX INTEGER
{
auto(1) ,
forced(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the rate mode of an upstream Ethernet interface."
::= { hwWlanApEntry 51 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.52
hwWlanApUpEthPortDuplex OBJECT-TYPE
SYNTAX INTEGER
{
half(1) ,
full(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the duplex state of an upstream Ethernet interface."
::= { hwWlanApEntry 52 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.53
hwWlanApUpEthPortDuplexMode OBJECT-TYPE
SYNTAX INTEGER
{
auto(1) ,
forced(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the duplex mode of an upstream Ethernet interface."
::= { hwWlanApEntry 53 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.54
hwWlanApUpPortSpeed OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the real-time rate of an upstream interface.Unit: Kbps."
::= { hwWlanApEntry 54 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.55
hwWlanAPUpPortPER OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the packet error rate of an upstream interface."
::= { hwWlanApEntry 55 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.56
hwWlanEthportUpRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the upstream rate of an Ethernet interface."
::= { hwWlanApEntry 56 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.57
hwWlanEthportDownRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the downstream rate of an Ethernet interface."
::= { hwWlanApEntry 57 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.58
hwWlanApAirportUpTraffic OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the traffic volume on an upstream wireless interface.Unit: bytes. The value is reported in 64 bits."
::= { hwWlanApEntry 58 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.59
hwWlanApAirportDwTraffic OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the traffic volume on a downstream wireless interface.Unit: bytes. The value is reported in 64 bits."
::= { hwWlanApEntry 59 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.60
hwWlanApEthportDwTraffic OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the traffic volume on a downstream wired interface.Unit: bytes. The value is reported in 64 bits."
::= { hwWlanApEntry 60 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.61
hwWlanApEthportUpTraffic OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the traffic volume on an upstream wired interface.Unit: bytes. The value is reported in 64 bits."
::= { hwWlanApEntry 61 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.62
hwWlanApUpPortRecvPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of frames received on an upstream interface, which is extended to 64 bits."
::= { hwWlanApEntry 62 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.63
hwWlanApUpPortSendPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of frames sent on an upstream interface, which is extended to 64 bits."
::= { hwWlanApEntry 63 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.64
hwWlanApRowstatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the row status."
::= { hwWlanApEntry 64 }
-- 1.3.6.1.4.1.2011.6.139.13.3.3.1.65
hwWlanApUpPortRecvBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of bytes received on an upstream interface."
::= { hwWlanApEntry 65 }
-- 1.3.6.1.4.1.2011.6.139.13.3.3.1.66
hwWlanApUpPortSendBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of bytes sent on an upstream interface."
::= { hwWlanApEntry 66 }
-- 1.3.6.1.4.1.2011.6.139.13.3.3.1.67
hwWlanApId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Ap ID."
::= { hwWlanApEntry 67 }
-- 1.3.6.1.4.1.2011.6.139.13.3.3.1.68
hwWlanCentralApId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the central AP ID."
::= { hwWlanApEntry 68 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.69
hwWlanCentralApMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the MAC address of an central AP."
::= { hwWlanApEntry 69 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.70
hwWlanCentralApName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the central AP name."
::= { hwWlanApEntry 70 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.71
hwWlanApSDCardSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the SD card size of an AP.Unit: MB."
::= { hwWlanApEntry 71 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.72
hwWlanAPLongitude OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the longitude of an AP."
::= { hwWlanApEntry 72 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.73
hwWlanAPLatitude OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the latitude of an AP."
::= { hwWlanApEntry 73 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.74
hwWlanApTotalOnlineTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates total online duration of an AP."
::= { hwWlanApEntry 74 }
--1.3.6.1.4.1.2011.6.139.13.3.3.1.75
hwWlanApDiscoverTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates discover duration of an AP."
::= { hwWlanApEntry 75 }
-- 1.3.6.1.4.1.2011.6.139.13.3.3.1.76
hwWlanAPPoeWorkmode OBJECT-TYPE
SYNTAX INTEGER
{
af(1),
at(2),
bt(3),
invalid(4),
bt60(5),
bt90(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the work mode of POE."
::= { hwWlanApEntry 76 }
-- 1.3.6.1.4.1.2011.6.139.13.3.3.1.77
hwWlanAPPoeExpectedWorkmode OBJECT-TYPE
SYNTAX INTEGER
{
af(1),
at(2),
bt(3),
invalid(4),
bt60(5),
bt90(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the expected work mode of POE."
::= { hwWlanApEntry 77 }
hwWlanAPStaOnlineFailStatistics OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..1500))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the Statistics of station online fail."
::= { hwWlanApEntry 78 }
-- 1.3.6.1.4.1.2011.6.139.13.3.3.1.79
hwWlanAPStaOfflineStatistics OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..1500))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the Statistics of station offline fail."
::= { hwWlanApEntry 79 }
-- 1.3.6.1.4.1.2011.6.139.13.3.3.1.80
hwWlanAPPowerSupplyState OBJECT-TYPE
SYNTAX INTEGER
{
full(1),
disabled(2),
limited(3),
invalid(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP power supply state. In Limited state, some functions are limited. In Disabled state, all radios are off, and some WLAN functions are unavailable."
::= { hwWlanApEntry 80 }
-- 1.3.6.1.4.1.2011.6.139.13.3.3.1.81
hwWlanApDataLinkState OBJECT-TYPE
SYNTAX INTEGER
{
down(1),
run(2),
noneed(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the state of an AP data link."
::= { hwWlanApEntry 81 }
-- 1.3.6.1.4.1.2011.6.139.13.3.3.1.82
hwWlanApEnvironmentTemperature OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the ambient temperature."
::= { hwWlanApEntry 82 }
-- 1.3.6.1.4.1.2011.6.139.13.3.3.1.83
hwWlanApCpuTemperature OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the CPU temperature."
::= { hwWlanApEntry 83 }
-- 1.3.6.1.4.1.2011.6.139.13.3.3.1.84
hwWlanApNpTemperature OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the NP chip temperature."
::= { hwWlanApEntry 84 }
-- 1.3.6.1.4.1.2011.6.139.13.3.4
hwWlanApWiredPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwWlanApWiredPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table describes AP wired interfaces and is used to query attributes of the wired interfaces."
::= { hwWlanApObjects 4 }
--1.3.6.1.4.1.2011.6.139.13.3.4.1
hwWlanApWiredPortEntry OBJECT-TYPE
SYNTAX HwWlanApWiredPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of this table is hwWlanApMac and hwWlanApWiredPortIndex."
INDEX { hwWlanApMac, hwWlanApWiredPortIndex}
::= { hwWlanApWiredPortTable 1 }
HwWlanApWiredPortEntry ::=
SEQUENCE {
hwWlanApWiredPortIndex
Integer32,
hwWlanApWiredPortType
INTEGER,
hwWlanApWiredPortDesc
OCTET STRING,
hwWlanApWiredPortState
INTEGER,
hwWlanApWiredPortSpeed
Integer32,
hwWlanApMultiWiredPortDuplex
INTEGER,
hwWlanApMultiWiredPortNegotiation
INTEGER,
hwWlanApMultiWiredPortMode
INTEGER,
hwWlanApWiredPortApId
Unsigned32,
hwWlanApWiredPortApName
OCTET STRING,
hwWlanApWiredPortTrunkID
Unsigned32,
hwWlanApWiredPortTrunkActiveFlag
INTEGER,
hwWlanApWiredPortDot1xAuthState
INTEGER
}
--1.3.6.1.4.1.2011.6.139.13.3.4.1.1
hwWlanApWiredPortIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the index of an AP's wired interface."
::= { hwWlanApWiredPortEntry 1 }
--1.3.6.1.4.1.2011.6.139.13.3.4.1.2
hwWlanApWiredPortType OBJECT-TYPE
SYNTAX INTEGER
{
fe(1) ,
ge(2) ,
gpon(3) ,
epon(4) ,
adsl2plus(5) ,
trunk(6),
multige(7),
xge(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the type of an AP's wired interface."
::= { hwWlanApWiredPortEntry 2 }
--1.3.6.1.4.1.2011.6.139.13.3.4.1.3
hwWlanApWiredPortDesc OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates description of an AP's wired interface."
::= { hwWlanApWiredPortEntry 3 }
--1.3.6.1.4.1.2011.6.139.13.3.4.1.4
hwWlanApWiredPortState OBJECT-TYPE
SYNTAX INTEGER
{
down(1) ,
up(2) ,
adminshutdown(3) ,
stpshutdown(4) ,
block(5) ,
unknown(-1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates status of an AP's wired interface."
::= { hwWlanApWiredPortEntry 4 }
--1.3.6.1.4.1.2011.6.139.13.3.4.1.5
hwWlanApWiredPortSpeed OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the rate of an AP's wired interface."
::= { hwWlanApWiredPortEntry 5 }
--1.3.6.1.4.1.2011.6.139.13.3.4.1.6
hwWlanApMultiWiredPortDuplex OBJECT-TYPE
SYNTAX INTEGER
{
half(1) ,
full(2) ,
unknown(-1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the duplex state of an AP's wired interface."
::= { hwWlanApWiredPortEntry 6 }
--1.3.6.1.4.1.2011.6.139.13.3.4.1.7
hwWlanApMultiWiredPortNegotiation OBJECT-TYPE
SYNTAX INTEGER
{
auto(1) ,
forced(2) ,
unknown(-1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the auto-negotiation mode of an AP's wired interface."
::= { hwWlanApWiredPortEntry 7 }
--1.3.6.1.4.1.2011.6.139.13.3.4.1.8
hwWlanApMultiWiredPortMode OBJECT-TYPE
SYNTAX INTEGER
{
root(1) ,
endpoint(2),
middle(3),
null(256)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the working mode of an AP's wired interface.Default value: null."
::= { hwWlanApWiredPortEntry 8 }
-- 1.3.6.1.4.1.2011.6.139.13.3.4.1.9
hwWlanApWiredPortApId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP ID."
::= { hwWlanApWiredPortEntry 9 }
-- 1.3.6.1.4.1.2011.6.139.13.3.4.1.10
hwWlanApWiredPortApName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP name."
::= { hwWlanApWiredPortEntry 10 }
-- 1.3.6.1.4.1.2011.6.139.13.3.4.1.11
hwWlanApWiredPortTrunkID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the port trunk ID."
::= { hwWlanApWiredPortEntry 11 }
-- 1.3.6.1.4.1.2011.6.139.13.3.4.1.12
hwWlanApWiredPortTrunkActiveFlag OBJECT-TYPE
SYNTAX INTEGER
{
disable(1),
enable(2),
invalid(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the port trunk active flag."
::= { hwWlanApWiredPortEntry 12 }
-- 1.3.6.1.4.1.2011.6.139.13.3.4.1.13
hwWlanApWiredPortDot1xAuthState OBJECT-TYPE
SYNTAX INTEGER
{
init(1),
authenticating(2),
success(3),
fail(4),
invalid(255)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the dot1x auth state."
::= { hwWlanApWiredPortEntry 13 }
-- 1.3.6.1.4.1.2011.6.139.13.3.5
hwWlanApWiredPortStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwWlanApWiredPortStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to query or clear statistics on AP wired interfaces."
::= { hwWlanApObjects 5 }
--1.3.6.1.4.1.2011.6.139.13.3.5.1
hwWlanApWiredPortStatEntry OBJECT-TYPE
SYNTAX HwWlanApWiredPortStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The indexes of this table are hwWlanApMac and hwWlanApWiredPortIndex."
INDEX { hwWlanApMac, hwWlanApWiredPortIndex }
::= { hwWlanApWiredPortStatTable 1 }
HwWlanApWiredPortStatEntry ::=
SEQUENCE {
hwWlanApWiredPortStatClear
Integer32,
hwWlanApWiredPortUpDwnTimes
Unsigned32,
hwWlanApWiredPortInPkts
Counter64,
hwWlanApWiredPortInUnicastPkts
Counter64,
hwWlanApWiredPortInNonUnicastPkts
Counter64,
hwWlanApWiredPortInBytes
Counter64,
hwWlanApWiredPortInErrorPkts
Counter64,
hwWlanApWiredPortInDiscardPkts
Counter64,
hwWlanApWiredPortOutPkts
Counter64,
hwWlanApWiredPortOutUnicastPkts
Counter64,
hwWlanApWiredPortOutNonUnicastPkts
Counter64,
hwWlanApWiredPortOutBytes
Counter64,
hwWlanApWiredPortOutErrorsPkts
Counter64,
hwWlanApWiredPortOutDiscardPkts
Counter64
}
--1.3.6.1.4.1.2011.6.139.13.3.5.1.1
hwWlanApWiredPortStatClear OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object clears interface statistics."
::= { hwWlanApWiredPortStatEntry 1 }
--1.3.6.1.4.1.2011.6.139.13.3.5.1.2
hwWlanApWiredPortUpDwnTimes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of times an AP's wired interface alternates between Up and Down."
::= { hwWlanApWiredPortStatEntry 2 }
--1.3.6.1.4.1.2011.6.139.13.3.5.1.3
hwWlanApWiredPortInPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of frames received on an AP's wired interface."
::= { hwWlanApWiredPortStatEntry 3 }
--1.3.6.1.4.1.2011.6.139.13.3.5.1.4
hwWlanApWiredPortInUnicastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of unicast frames received on an AP's wired interface."
::= { hwWlanApWiredPortStatEntry 4 }
--1.3.6.1.4.1.2011.6.139.13.3.5.1.5
hwWlanApWiredPortInNonUnicastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of non-unicast frames received on an AP's wired interface."
::= { hwWlanApWiredPortStatEntry 5 }
--1.3.6.1.4.1.2011.6.139.13.3.5.1.6
hwWlanApWiredPortInBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of bytes received on an AP's wired interface."
::= { hwWlanApWiredPortStatEntry 6 }
--1.3.6.1.4.1.2011.6.139.13.3.5.1.7
hwWlanApWiredPortInErrorPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of error frames received on an AP's wired interface."
::= { hwWlanApWiredPortStatEntry 7 }
--1.3.6.1.4.1.2011.6.139.13.3.5.1.8
hwWlanApWiredPortInDiscardPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of dropped frames received on an AP's wired interface."
::= { hwWlanApWiredPortStatEntry 8 }
--1.3.6.1.4.1.2011.6.139.13.3.5.1.9
hwWlanApWiredPortOutPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of frames sent on an AP's wired interface."
::= { hwWlanApWiredPortStatEntry 9 }
--1.3.6.1.4.1.2011.6.139.13.3.5.1.10
hwWlanApWiredPortOutUnicastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of unicast frames sent on an AP's wired interface."
::= { hwWlanApWiredPortStatEntry 10 }
--1.3.6.1.4.1.2011.6.139.13.3.5.1.11
hwWlanApWiredPortOutNonUnicastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of non-unicast frames sent on an AP's wired interface."
::= { hwWlanApWiredPortStatEntry 11 }
--1.3.6.1.4.1.2011.6.139.13.3.5.1.12
hwWlanApWiredPortOutBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of bytes sent on an AP's wired interface."
::= { hwWlanApWiredPortStatEntry 12 }
--1.3.6.1.4.1.2011.6.139.13.3.5.1.13
hwWlanApWiredPortOutErrorsPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of error packets sent on an AP's wired interface."
::= { hwWlanApWiredPortStatEntry 13 }
--1.3.6.1.4.1.2011.6.139.13.3.5.1.14
hwWlanApWiredPortOutDiscardPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of dropped packets sent on an AP's wired interface."
::= { hwWlanApWiredPortStatEntry 14 }
--1.3.6.1.4.1.2011.6.139.13.3.6
hwWlanApWiredPortLldpTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwWlanApWiredPortLldpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to query LLDP neighbor information of a specified AP. No entry can be created, modified, or deleted in this table."
::= { hwWlanApObjects 6 }
--1.3.6.1.4.1.2011.6.139.13.3.6.1
hwWlanApWiredPortLldpEntry OBJECT-TYPE
SYNTAX HwWlanApWiredPortLldpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The indexes of this table are hwWlanApMac, hwWlanApWiredPortLldpRemLocalPortNum, and hwWlanApWiredPortLldpRemIndex."
INDEX { hwWlanApWiredPortLldpRemLocalPortNum, hwWlanApWiredPortLldpRemIndex, hwWlanApMac }
::= { hwWlanApWiredPortLldpTable 1 }
HwWlanApWiredPortLldpEntry ::=
SEQUENCE {
hwWlanApWiredPortLldpRemLocalPortNum
Integer32,
hwWlanApWiredPortLldpRemIndex
Integer32,
hwWlanApWiredPortLldpRemChassisIdSubtype
Integer32,
hwWlanApWiredPortLldpRemChassisId
OCTET STRING,
hwWlanApWiredPortLldpRemPortIdSubtype
Integer32,
hwWlanApWiredPortLldpRemPortId
OCTET STRING,
hwWlanApWiredPortLldpRemPortDesc
OCTET STRING,
hwWlanApWiredPortLldpRemSysName
OCTET STRING,
hwWlanApWiredPortLldpRemSysDesc
OCTET STRING,
hwWlanApWiredPortLldpRemSysCapSupported
Integer32,
hwWlanApWiredPortLldpRemSysCapEnabled
Integer32,
hwWlanApWiredPortLldpRemLocalApId
Integer32
}
--1.3.6.1.4.1.2011.6.139.13.3.6.1.1
hwWlanApWiredPortLldpRemLocalPortNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the local port number of the remote neighbor of the AP's wired interface."
::= { hwWlanApWiredPortLldpEntry 1 }
--1.3.6.1.4.1.2011.6.139.13.3.6.1.2
hwWlanApWiredPortLldpRemIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the index of the remote neighbor interface of the AP's wired interface."
::= { hwWlanApWiredPortLldpEntry 2 }
--1.3.6.1.4.1.2011.6.139.13.3.6.1.3
hwWlanApWiredPortLldpRemChassisIdSubtype OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the subtype of the remote neighbor of the AP's wired interface."
::= { hwWlanApWiredPortLldpEntry 3 }
--1.3.6.1.4.1.2011.6.139.13.3.6.1.4
hwWlanApWiredPortLldpRemChassisId OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the subtype ID of the remote neighbor of the AP's wired interface."
::= { hwWlanApWiredPortLldpEntry 4 }
--1.3.6.1.4.1.2011.6.139.13.3.6.1.5
hwWlanApWiredPortLldpRemPortIdSubtype OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the subtype of the remote neighbor interface of the AP's wired interface."
::= { hwWlanApWiredPortLldpEntry 5 }
--1.3.6.1.4.1.2011.6.139.13.3.6.1.6
hwWlanApWiredPortLldpRemPortId OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the ID of the remote neighbor interface of the AP's wired interface."
::= { hwWlanApWiredPortLldpEntry 6 }
--1.3.6.1.4.1.2011.6.139.13.3.6.1.7
hwWlanApWiredPortLldpRemPortDesc OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates descriptions about the remote neighbor interface of the AP's wired interface."
::= { hwWlanApWiredPortLldpEntry 7 }
--1.3.6.1.4.1.2011.6.139.13.3.6.1.8
hwWlanApWiredPortLldpRemSysName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the system name of the remote neighbor of the AP's wired interface."
::= { hwWlanApWiredPortLldpEntry 8 }
--1.3.6.1.4.1.2011.6.139.13.3.6.1.9
hwWlanApWiredPortLldpRemSysDesc OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates system descriptions about the remote neighbor of the AP's wired interface."
::= { hwWlanApWiredPortLldpEntry 9 }
--1.3.6.1.4.1.2011.6.139.13.3.6.1.10
hwWlanApWiredPortLldpRemSysCapSupported OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether the remote neighbor of the AP's wired interface supports the system capability."
::= { hwWlanApWiredPortLldpEntry 10 }
--1.3.6.1.4.1.2011.6.139.13.3.6.1.11
hwWlanApWiredPortLldpRemSysCapEnabled OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object enables the system capability of the remote neighbor of the AP's wired interface."
::= { hwWlanApWiredPortLldpEntry 11 }
-- 1.3.6.1.4.1.2011.6.139.13.3.6.1.12
hwWlanApWiredPortLldpRemLocalApId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP ID."
::= { hwWlanApWiredPortLldpEntry 12 }
--1.3.6.1.4.1.2011.6.139.13.3.7
hwWlanApWiredPortLldpRemManAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwWlanApWiredPortLldpRemManAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to query management addresses of LLDP neighbors of a specified AP. No entry can be created, modified, or deleted in this table."
::= { hwWlanApObjects 7 }
--1.3.6.1.4.1.2011.6.139.13.3.7.1
hwWlanApWiredPortLldpRemManAddrEntry OBJECT-TYPE
SYNTAX HwWlanApWiredPortLldpRemManAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The indexes of this table are hwWlanApMac, hwWlanApWiredPortLldpRemLocalPortNum, hwWlanApWiredPortLldpRemIndex, hwWlanApWiredPortLldpRemManAddrSubtype, and hwWlanApWiredPortLldpRemManAddr."
INDEX { hwWlanApWiredPortLldpRemManAddrSubtype,hwWlanApMac, hwWlanApWiredPortLldpRemLocalPortNum, hwWlanApWiredPortLldpRemIndex, hwWlanApWiredPortLldpRemManAddr }
::= { hwWlanApWiredPortLldpRemManAddrTable 1 }
HwWlanApWiredPortLldpRemManAddrEntry ::=
SEQUENCE {
hwWlanApWiredPortLldpRemManAddrSubtype
Integer32,
hwWlanApWiredPortLldpRemManAddr
OCTET STRING,
hwWlanApWiredPortLldpRemManAddrIfSubtype
Integer32,
hwWlanApWiredPortLldpRemManAddrIfId
Integer32,
hwWlanApWiredPortLldpRemManAddrOID
OCTET STRING
}
--1.3.6.1.4.1.2011.6.139.13.3.7.1.1
hwWlanApWiredPortLldpRemManAddrSubtype OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the This object indicates the remote management address subtype of the wired interface."
::= { hwWlanApWiredPortLldpRemManAddrEntry 1 }
--1.3.6.1.4.1.2011.6.139.13.3.7.1.2
hwWlanApWiredPortLldpRemManAddr OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the remote management address of the wired interface."
::= { hwWlanApWiredPortLldpRemManAddrEntry 2 }
--1.3.6.1.4.1.2011.6.139.13.3.7.1.3
hwWlanApWiredPortLldpRemManAddrIfSubtype OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the interface subtype of the remote management address of the wired interface."
::= { hwWlanApWiredPortLldpRemManAddrEntry 3 }
--1.3.6.1.4.1.2011.6.139.13.3.7.1.4
hwWlanApWiredPortLldpRemManAddrIfId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the interface ID of the remote management address of the wired interface."
::= { hwWlanApWiredPortLldpRemManAddrEntry 4 }
--1.3.6.1.4.1.2011.6.139.13.3.7.1.5
hwWlanApWiredPortLldpRemManAddrOID OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the remote management address OID of the wired interface."
::= { hwWlanApWiredPortLldpRemManAddrEntry 5 }
--1.3.6.1.4.1.2011.6.139.13.3.8
hwWlanApOnlineFailTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwWlanApOnlineFailEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to query or clear AP online failure records, including failure time and reason."
::= { hwWlanApObjects 8 }
--1.3.6.1.4.1.2011.6.139.13.3.8.1
hwWlanApOnlineFailEntry OBJECT-TYPE
SYNTAX HwWlanApOnlineFailEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of this table is hwWlanApOnlineFailMac."
INDEX { hwWlanApOnlineFailMac }
::= { hwWlanApOnlineFailTable 1 }
HwWlanApOnlineFailEntry ::=
SEQUENCE {
hwWlanApOnlineFailMac
MacAddress,
hwWlanApOnlineFailTime
OCTET STRING,
hwWlanApOnlineFailReason
OCTET STRING,
hwWlanApOnlineFailRowStatus
RowStatus,
hwWlanApOnlineFailInfo
OCTET STRING
}
--1.3.6.1.4.1.2011.6.139.13.3.8.1.1
hwWlanApOnlineFailMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the MAC address of the STA who fails to go online."
::= { hwWlanApOnlineFailEntry 1 }
--1.3.6.1.4.1.2011.6.139.13.3.8.1.2
hwWlanApOnlineFailTime OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the latest time when the STA fails to go online."
::= { hwWlanApOnlineFailEntry 2 }
--1.3.6.1.4.1.2011.6.139.13.3.8.1.3
hwWlanApOnlineFailReason OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the reason for the latest STA online failure."
::= { hwWlanApOnlineFailEntry 3 }
--1.3.6.1.4.1.2011.6.139.13.3.8.1.4
hwWlanApOnlineFailRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates that online failure records of STAs are deleted based on MAC addresses."
::= { hwWlanApOnlineFailEntry 4 }
-- 1.3.6.1.4.1.2011.6.139.13.3.8.1.5
hwWlanApOnlineFailInfo OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates information about the last three online failures of an AP, including the failure time and reasons."
::= { hwWlanApOnlineFailEntry 5 }
-- 1.3.6.1.4.1.2011.6.139.13.3.9
hwWlanApOfflineTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwWlanApOfflineEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to query or clear AP offline records, including offline time and reason."
::= { hwWlanApObjects 9 }
--1.3.6.1.4.1.2011.6.139.13.3.9.1
hwWlanApOfflineEntry OBJECT-TYPE
SYNTAX HwWlanApOfflineEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of this table is hwWlanApOfflineMac."
INDEX { hwWlanApOfflineMac }
::= { hwWlanApOfflineTable 1 }
HwWlanApOfflineEntry ::=
SEQUENCE {
hwWlanApOfflineMac
MacAddress,
hwWlanApOfflineTime
OCTET STRING,
hwWlanApOfflineReason
OCTET STRING,
hwWlanApOfflineRowStatus
RowStatus,
hwWlanApOfflineInfo
OCTET STRING
}
--1.3.6.1.4.1.2011.6.139.13.3.9.1.1
hwWlanApOfflineMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the MAC address of an AP."
::= { hwWlanApOfflineEntry 1 }
--1.3.6.1.4.1.2011.6.139.13.3.9.1.2
hwWlanApOfflineTime OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP offline time."
::= { hwWlanApOfflineEntry 2 }
--1.3.6.1.4.1.2011.6.139.13.3.9.1.3
hwWlanApOfflineReason OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP offline reason."
::= { hwWlanApOfflineEntry 3 }
--1.3.6.1.4.1.2011.6.139.13.3.9.1.4
hwWlanApOfflineRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object clears AP offline records."
::= { hwWlanApOfflineEntry 4 }
-- 1.3.6.1.4.1.2011.6.139.13.3.9.1.5
hwWlanApOfflineInfo OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { hwWlanApOfflineEntry 5 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10
hwWlanIDIndexedApTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwWlanIDIndexedApEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to add, delete, modify, reset, or confirm APs. You can also use the table to query the configuration and restore factory settings of APs."
::= { hwWlanApObjects 10 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1
hwWlanIDIndexedApEntry OBJECT-TYPE
SYNTAX HwWlanIDIndexedApEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of this table is hwWlanIDIndexedApId."
INDEX { hwWlanIDIndexedApId }
::= { hwWlanIDIndexedApTable 1 }
HwWlanIDIndexedApEntry ::=
SEQUENCE {
hwWlanIDIndexedApId
Unsigned32,
hwWlanIDIndexedApMac
MacAddress,
hwWlanIDIndexedApSn
OCTET STRING,
hwWlanIDIndexedApTypeInfo
OCTET STRING,
hwWlanIDIndexedApName
OCTET STRING,
hwWlanIDIndexedApGroup
OCTET STRING,
hwWlanIDIndexedApRunState
INTEGER,
hwWlanIDIndexedApSoftwareVersion
OCTET STRING,
hwWlanIDIndexedApHardwareVersion
OCTET STRING,
hwWlanIDIndexedApCpuType
OCTET STRING,
hwWlanIDIndexedApCpufrequency
Integer32,
hwWlanIDIndexedApMemoryType
OCTET STRING,
hwWlanIDIndexedApDomain
OCTET STRING,
hwWlanIDIndexedApIpAddress
IpAddress,
hwWlanIDIndexedApIpNetMask
IpAddress,
hwWlanIDIndexedApGatewayIp
IpAddress,
hwWlanIDIndexedApMemorySize
Integer32,
hwWlanIDIndexedApFlashSize
Integer32,
hwWlanIDIndexedApRunTime
Unsigned32,
hwWlanIDIndexedApAdminOper
INTEGER,
hwWlanIDIndexedApDNS
IpAddress,
hwWlanIDIndexedApOnlineTime
Unsigned32,
hwWlanIDIndexedApSysSoftwareDesc
OCTET STRING,
hwWlanIDIndexedApSysHardtwareDesc
OCTET STRING,
hwWlanIDIndexedApSysManufacture
OCTET STRING,
hwWlanIDIndexedApSysSoftwareName
OCTET STRING,
hwWlanIDIndexedApSysSoftwareVendor
OCTET STRING,
hwWlanIDIndexedApBomCode
OCTET STRING,
hwWlanIDIndexedApIpv6Address
OCTET STRING,
hwWlanIDIndexedApIpv6NetMask
OCTET STRING,
hwWlanIDIndexedApGatewayIpv6
OCTET STRING,
hwWlanIDIndexedApIpv6DNS
OCTET STRING,
hwWlanIDIndexedApProtectAcIPv6Addr
OCTET STRING,
hwWlanIDIndexedApBootCountTotal
Integer32,
hwWlanIDIndexedApBootCountPowerOff
Integer32,
hwWlanIDIndexedApBootCountClear
RowStatus,
hwWlanIDIndexedApElectronicLabel
OCTET STRING,
hwWlanIDIndexedApWiredPortNum
Integer32,
hwWlanIDIndexedApWiredPortMtu
Integer32,
hwWlanIDIndexedApWiredPortMac
MacAddress,
hwWlanIDIndexedApMemoryUseRate
Integer32,
hwWlanIDIndexedApCpuUseRate
Integer32,
hwWlanIDIndexedApFlashFreeSize
Integer32,
hwWlanIDIndexedApTemperature
Integer32,
hwWlanIDIndexedApOnlineUserNum
Integer32,
hwWlanIDIndexedApDualBandAssoc5gStaNum
Unsigned32,
hwWlanIDIndexedApDualBandStaNum
Unsigned32,
hwWlanIDIndexedApStaOnlineFailRatio
Unsigned32,
hwWlanIDIndexedApStaOfflineRatio
Unsigned32,
hwWlanIDIndexedApStickyClientRatio
Unsigned32,
hwWlanIDIndexedApUpEthPortSpeed
INTEGER,
hwWlanIDIndexedApUpEthPortSpeedMode
INTEGER,
hwWlanIDIndexedApUpEthPortDuplex
INTEGER,
hwWlanIDIndexedApUpEthPortDuplexMode
INTEGER,
hwWlanIDIndexedApUpPortSpeed
Integer32,
hwWlanIDIndexedAPUpPortPER
Integer32,
hwWlanIDIndexedEthportUpRate
Integer32,
hwWlanIDIndexedEthportDownRate
Integer32,
hwWlanIDIndexedApAirportUpTraffic
OCTET STRING,
hwWlanIDIndexedApAirportDwTraffic
OCTET STRING,
hwWlanIDIndexedApEthportDwTraffic
OCTET STRING,
hwWlanIDIndexedApEthportUpTraffic
OCTET STRING,
hwWlanIDIndexedApUpPortRecvPackets
Counter64,
hwWlanIDIndexedApUpPortSendPackets
Counter64,
hwWlanIDIndexedApUpPortRecvBytes
Counter64,
hwWlanIDIndexedApUpPortSendBytes
Counter64,
hwWlanIDIndexedCentralApId
Unsigned32,
hwWlanIDIndexedCentralApMac
MacAddress,
hwWlanIDIndexedCentralApName
OCTET STRING,
hwWlanIDIndexedApRowstatus
RowStatus,
hwWlanIDIndexedApSDCardSize
Integer32,
hwWlanIDIndexedAPLongitude
OCTET STRING,
hwWlanIDIndexedAPLatitude
OCTET STRING,
hwWlanIDIndexedAPUUIDString
OCTET STRING,
hwWlanIDIndexedAPUUIDHex
OCTET STRING,
hwWlanIDIndexedApChannelLoadMode
INTEGER,
hwWlanIDIndexedAPPoeWorkmode
INTEGER,
hwWlanIDIndexedAPPoeExpectedWorkmode
INTEGER,
hwWlanIDIndexedApTotalOnlineTime
Unsigned32,
hwWlanIDIndexedApDiscoverTime
Unsigned32,
hwWlanIDIndexedApSiteCode
OCTET STRING,
hwWlanIDIndexedApDomainName
OCTET STRING,
hwWlanIDIndexedApBranchGroup
OCTET STRING,
hwWlanIDIndexedApNatIpAddress
IpAddress,
hwWlanIDIndexedApStaOnlineFailStatistics
OCTET STRING,
hwWlanIDIndexedApStaOfflineStatistics
OCTET STRING,
hwWlanIDIndexedAPPowerSupplyState
INTEGER,
hwWlanIDIndexedApMajorString
OCTET STRING,
hwWlanIDIndexedApMajorHex
OCTET STRING,
hwWlanIDIndexedApMajorDecimal
Integer32,
hwWlanIDIndexedApMinorString
OCTET STRING,
hwWlanIDIndexedApMinorHex
OCTET STRING,
hwWlanIDIndexedApMinorDecimal
Integer32,
hwWlanIDIndexedApReferenceRSSI
Integer32,
hwWlanIDIndexedApEnvironmentTemperature
Integer32,
hwWlanIDIndexedApCpuTemperature
Integer32,
hwWlanIDIndexedApNpTemperature
Integer32,
hwWlanIDIndexedApZoneName
OCTET STRING,
hwWlanIDIndexedApDataLinkState
INTEGER,
hwWlanIDIndexedApRtuStatus
INTEGER,
hwWlanIDIndexedApRadioMode
INTEGER
}
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.1
hwWlanIDIndexedApId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Ap ID."
::= { hwWlanIDIndexedApEntry 1 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.2
hwWlanIDIndexedApMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the MAC address of an AP."
::= { hwWlanIDIndexedApEntry 2 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.3
hwWlanIDIndexedApSn OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the sequence number (SN) of an AP."
::= { hwWlanIDIndexedApEntry 3 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.4
hwWlanIDIndexedApTypeInfo OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the AP type."
::= { hwWlanIDIndexedApEntry 4 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.5
hwWlanIDIndexedApName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the AP name."
::= { hwWlanIDIndexedApEntry 5 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.6
hwWlanIDIndexedApGroup OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the group to which an AP belongs."
::= { hwWlanIDIndexedApEntry 6 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.7
hwWlanIDIndexedApRunState OBJECT-TYPE
SYNTAX INTEGER
{
idle(1) ,
autofind(2) ,
typeNotMatch(3) ,
fault(4) ,
config(5) ,
configFailed(6) ,
download(7) ,
normal(8) ,
committing(9) ,
commitFailed(10) ,
standby(11) ,
verMismatch(12),
nameConflicted(13),
invalid(14),
countryCodeMismatch(15)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP state."
::= { hwWlanIDIndexedApEntry 7 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.8
hwWlanIDIndexedApSoftwareVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP software version."
::= { hwWlanIDIndexedApEntry 8 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.9
hwWlanIDIndexedApHardwareVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP hardware version."
::= { hwWlanIDIndexedApEntry 9 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.10
hwWlanIDIndexedApCpuType OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the CPU type of an AP."
::= { hwWlanIDIndexedApEntry 10 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.11
hwWlanIDIndexedApCpufrequency OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the CPU frequency of an AP.Unit: MHz."
::= { hwWlanIDIndexedApEntry 11 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.12
hwWlanIDIndexedApMemoryType OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the memory type of an AP."
::= { hwWlanIDIndexedApEntry 12 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.13
hwWlanIDIndexedApDomain OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP domain."
::= { hwWlanIDIndexedApEntry 13 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.14
hwWlanIDIndexedApIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IP address of an AP."
::= { hwWlanIDIndexedApEntry 14 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.15
hwWlanIDIndexedApIpNetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IP address mask of an AP."
::= { hwWlanIDIndexedApEntry 15 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.16
hwWlanIDIndexedApGatewayIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the gateway IP address of an AP."
::= { hwWlanIDIndexedApEntry 16 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.17
hwWlanIDIndexedApMemorySize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the memory size of an AP.Unit: MB."
::= { hwWlanIDIndexedApEntry 17 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.18
hwWlanIDIndexedApFlashSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the flash memory size of an AP.Unit: MB."
::= { hwWlanIDIndexedApEntry 18 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.19
hwWlanIDIndexedApRunTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the running time of an AP.Unit: tick."
::= { hwWlanIDIndexedApEntry 19 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.20
hwWlanIDIndexedApAdminOper OBJECT-TYPE
SYNTAX INTEGER
{
reset(1) ,
manufacturerConfig(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates administrative status of an AP."
::= { hwWlanIDIndexedApEntry 20 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.21
hwWlanIDIndexedApDNS OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP DNS."
::= { hwWlanIDIndexedApEntry 21 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.22
hwWlanIDIndexedApOnlineTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates online duration of an AP."
::= { hwWlanIDIndexedApEntry 22 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.23
hwWlanIDIndexedApSysSoftwareDesc OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates system software description of an AP."
::= { hwWlanIDIndexedApEntry 23 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.24
hwWlanIDIndexedApSysHardtwareDesc OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates system hardware description of an AP."
::= { hwWlanIDIndexedApEntry 24 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.25
hwWlanIDIndexedApSysManufacture OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the manufacturer of an AP."
::= { hwWlanIDIndexedApEntry 25 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.26
hwWlanIDIndexedApSysSoftwareName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates software name of an AP."
::= { hwWlanIDIndexedApEntry 26 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.27
hwWlanIDIndexedApSysSoftwareVendor OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the manufacturer of the AP software."
::= { hwWlanIDIndexedApEntry 27 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.28
hwWlanIDIndexedApBomCode OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the BOM code."
::= { hwWlanIDIndexedApEntry 28 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.29
hwWlanIDIndexedApIpv6Address OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IPv6 address."
::= { hwWlanIDIndexedApEntry 29 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.30
hwWlanIDIndexedApIpv6NetMask OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IPv6 address mask."
::= { hwWlanIDIndexedApEntry 30 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.31
hwWlanIDIndexedApGatewayIpv6 OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IPv6 gateway."
::= { hwWlanIDIndexedApEntry 31 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.32
hwWlanIDIndexedApIpv6DNS OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IPv6 DNS."
::= { hwWlanIDIndexedApEntry 32 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.33
hwWlanIDIndexedApProtectAcIPv6Addr OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IPv6 address of the standby AC."
::= { hwWlanIDIndexedApEntry 33 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.34
hwWlanIDIndexedApBootCountTotal OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of times an AP is restarted."
::= { hwWlanIDIndexedApEntry 34 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.35
hwWlanIDIndexedApBootCountPowerOff OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of times an AP is restarted due to a power failure."
::= { hwWlanIDIndexedApEntry 35 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.36
hwWlanIDIndexedApBootCountClear OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object clears the AP restart count."
::= { hwWlanIDIndexedApEntry 36 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.37
hwWlanIDIndexedApElectronicLabel OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..3073))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the electronic label of an AP."
::= { hwWlanIDIndexedApEntry 37 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.38
hwWlanIDIndexedApWiredPortNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of wired interfaces."
::= { hwWlanIDIndexedApEntry 38 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.39
hwWlanIDIndexedApWiredPortMtu OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the maximum transmit unit (MTU) of a wired interface."
::= { hwWlanIDIndexedApEntry 39 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.40
hwWlanIDIndexedApWiredPortMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the MAC address of a wired interface."
::= { hwWlanIDIndexedApEntry 40 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.41
hwWlanIDIndexedApMemoryUseRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the memory usage.Unit: %."
::= { hwWlanIDIndexedApEntry 41 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.42
hwWlanIDIndexedApCpuUseRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the CPU usage.Unit: %."
::= { hwWlanIDIndexedApEntry 42 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.43
hwWlanIDIndexedApFlashFreeSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates available space in the flash memory.Unit: KB."
::= { hwWlanIDIndexedApEntry 43 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.44
hwWlanIDIndexedApTemperature OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the operating temperature."
::= { hwWlanIDIndexedApEntry 44 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.45
hwWlanIDIndexedApOnlineUserNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of online users."
::= { hwWlanIDIndexedApEntry 45 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.46
hwWlanIDIndexedApDualBandAssoc5gStaNum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of dual-band terminals that access the 5 GHz radio."
::= { hwWlanIDIndexedApEntry 46 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.47
hwWlanIDIndexedApDualBandStaNum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of STAs that support dual frequency bands."
::= { hwWlanIDIndexedApEntry 47 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.48
hwWlanIDIndexedApStaOnlineFailRatio OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates STA online failure ratio on an AP."
::= { hwWlanIDIndexedApEntry 48 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.49
hwWlanIDIndexedApStaOfflineRatio OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates STA offline ratio of an AP."
::= { hwWlanIDIndexedApEntry 49 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.50
hwWlanIDIndexedApStickyClientRatio OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the proportion of sticky STAs to all STAs."
::= { hwWlanIDIndexedApEntry 50 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.51
hwWlanIDIndexedApUpEthPortSpeed OBJECT-TYPE
SYNTAX INTEGER
{
speed10(1) ,
speed100(2) ,
speed1000(3) ,
speed10000(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the rate of an upstream Ethernet interface."
::= { hwWlanIDIndexedApEntry 51 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.52
hwWlanIDIndexedApUpEthPortSpeedMode OBJECT-TYPE
SYNTAX INTEGER
{
auto(1) ,
forced(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the rate mode of an upstream Ethernet interface."
::= { hwWlanIDIndexedApEntry 52 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.53
hwWlanIDIndexedApUpEthPortDuplex OBJECT-TYPE
SYNTAX INTEGER
{
half(1) ,
full(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the duplex state of an upstream Ethernet interface."
::= { hwWlanIDIndexedApEntry 53 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.54
hwWlanIDIndexedApUpEthPortDuplexMode OBJECT-TYPE
SYNTAX INTEGER
{
auto(1) ,
forced(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the duplex mode of an upstream Ethernet interface."
::= { hwWlanIDIndexedApEntry 54 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.55
hwWlanIDIndexedApUpPortSpeed OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the real-time rate of an upstream interface.Unit: Kbps."
::= { hwWlanIDIndexedApEntry 55 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.56
hwWlanIDIndexedAPUpPortPER OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the packet error rate of an upstream interface."
::= { hwWlanIDIndexedApEntry 56 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.57
hwWlanIDIndexedEthportUpRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the upstream rate of an Ethernet interface."
::= { hwWlanIDIndexedApEntry 57 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.58
hwWlanIDIndexedEthportDownRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the downstream rate of an Ethernet interface."
::= { hwWlanIDIndexedApEntry 58 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.59
hwWlanIDIndexedApAirportUpTraffic OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the traffic volume on an upstream wireless interface.Unit: bytes. The value is reported in 64 bits."
::= { hwWlanIDIndexedApEntry 59 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.60
hwWlanIDIndexedApAirportDwTraffic OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the traffic volume on a downstream wireless interface.Unit: bytes. The value is reported in 64 bits."
::= { hwWlanIDIndexedApEntry 60 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.61
hwWlanIDIndexedApEthportDwTraffic OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the traffic volume on a downstream wired interface.Unit: bytes. The value is reported in 64 bits."
::= { hwWlanIDIndexedApEntry 61 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.62
hwWlanIDIndexedApEthportUpTraffic OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the traffic volume on an upstream wired interface.Unit: bytes. The value is reported in 64 bits."
::= { hwWlanIDIndexedApEntry 62 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.63
hwWlanIDIndexedApUpPortRecvPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of frames received on an upstream interface, which is extended to 64 bits."
::= { hwWlanIDIndexedApEntry 63 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.64
hwWlanIDIndexedApUpPortSendPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of frames sent on an upstream interface, which is extended to 64 bits."
::= { hwWlanIDIndexedApEntry 64 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.65
hwWlanIDIndexedApUpPortRecvBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of bytes received on an upstream interface."
::= { hwWlanIDIndexedApEntry 65 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.66
hwWlanIDIndexedApUpPortSendBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of bytes sent on an upstream interface."
::= { hwWlanIDIndexedApEntry 66 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.67
hwWlanIDIndexedCentralApId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the central AP ID."
::= { hwWlanIDIndexedApEntry 67 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.68
hwWlanIDIndexedCentralApMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the MAC address of an central AP."
::= { hwWlanIDIndexedApEntry 68 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.69
hwWlanIDIndexedCentralApName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the central AP name."
::= { hwWlanIDIndexedApEntry 69 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.70
hwWlanIDIndexedApRowstatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the row status."
::= { hwWlanIDIndexedApEntry 70 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.71
hwWlanIDIndexedApSDCardSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the SD card size of an AP.Unit: MB."
::= { hwWlanIDIndexedApEntry 71 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.72
hwWlanIDIndexedAPLongitude OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the longitude of an AP."
::= { hwWlanIDIndexedApEntry 72 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.73
hwWlanIDIndexedAPLatitude OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the latitude of an AP."
::= { hwWlanIDIndexedApEntry 73 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.74
hwWlanIDIndexedAPUUIDString OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the UUID string value of an AP."
::= { hwWlanIDIndexedApEntry 74 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.75
hwWlanIDIndexedAPUUIDHex OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the UUID Hex value of an AP."
::= { hwWlanIDIndexedApEntry 75 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.76
hwWlanIDIndexedApChannelLoadMode OBJECT-TYPE
SYNTAX INTEGER
{
indoor(1),
outdoor(2),
outToindoor(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates channel lode mode. The default value is outdoor."
::= { hwWlanIDIndexedApEntry 76 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.77
hwWlanIDIndexedAPPoeWorkmode OBJECT-TYPE
SYNTAX INTEGER
{
af(1),
at(2),
bt(3),
invalid(4),
bt60(5),
bt90(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the work mode of POE."
::= { hwWlanIDIndexedApEntry 77 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.78
hwWlanIDIndexedAPPoeExpectedWorkmode OBJECT-TYPE
SYNTAX INTEGER
{
af(1),
at(2),
bt(3),
invalid(4),
bt60(5),
bt90(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the expected work mode of POE."
::= { hwWlanIDIndexedApEntry 78 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.79
hwWlanIDIndexedApTotalOnlineTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates total online duration of an AP."
::= { hwWlanIDIndexedApEntry 79 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.80
hwWlanIDIndexedApDiscoverTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates discover duration of an AP."
::= { hwWlanIDIndexedApEntry 80 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.81
hwWlanIDIndexedApSiteCode OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..14))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the Site code of an AP."
::= { hwWlanIDIndexedApEntry 81 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.82
hwWlanIDIndexedApDomainName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the Domain name of an AP."
::= { hwWlanIDIndexedApEntry 82 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.83
hwWlanIDIndexedApBranchGroup OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the branch group name of an AP."
::= { hwWlanIDIndexedApEntry 83 }
--1.3.6.1.4.1.2011.6.139.13.3.10.1.84
hwWlanIDIndexedApNatIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the Nat IP address of an AP."
::= { hwWlanIDIndexedApEntry 84 }
hwWlanIDIndexedApStaOnlineFailStatistics OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..1500))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the Statistics of station online fail."
::= { hwWlanIDIndexedApEntry 85 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.86
hwWlanIDIndexedApStaOfflineStatistics OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..1500))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the Statistics of station offline fail."
::= { hwWlanIDIndexedApEntry 86 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.87
hwWlanIDIndexedAPPowerSupplyState OBJECT-TYPE
SYNTAX INTEGER
{
full(1),
disabled(2),
limited(3),
invalid(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP power supply state. In Limited state, some functions are limited. In Disabled state, all radios are off, and some WLAN functions are unavailable."
::= { hwWlanIDIndexedApEntry 87 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.88
hwWlanIDIndexedApMajorString OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..2))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the string type value of Major field in the BLE broadcast frame of an AP."
::= { hwWlanIDIndexedApEntry 88 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.89
hwWlanIDIndexedApMajorHex OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..4))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the hex type value of Major field in the BLE broadcast frame of an AP."
::= { hwWlanIDIndexedApEntry 89 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.90
hwWlanIDIndexedApMajorDecimal OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the decimal type value of Major field in the BLE broadcast frame of an AP. The default value is -1."
::= { hwWlanIDIndexedApEntry 90 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.91
hwWlanIDIndexedApMinorString OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..2))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the string type value of Minor field in the BLE broadcast frame of an AP."
::= { hwWlanIDIndexedApEntry 91 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.92
hwWlanIDIndexedApMinorHex OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..4))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the hex type value of Minor field in the BLE broadcast frame of an AP."
::= { hwWlanIDIndexedApEntry 92 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.93
hwWlanIDIndexedApMinorDecimal OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the decimal type value of Minor field in the BLE broadcast frame of an AP. The default value is -1."
::= { hwWlanIDIndexedApEntry 93 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.94
hwWlanIDIndexedApReferenceRSSI OBJECT-TYPE
SYNTAX Integer32 (-97..-50 | 0)
UNITS "dbm"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the RSSI value of an AP. The default value is 0."
::= { hwWlanIDIndexedApEntry 94 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.95
hwWlanIDIndexedApEnvironmentTemperature OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the ambient temperature."
::= { hwWlanIDIndexedApEntry 95 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.96
hwWlanIDIndexedApCpuTemperature OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the CPU temperature."
::= { hwWlanIDIndexedApEntry 96 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.97
hwWlanIDIndexedApNpTemperature OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the NP chip temperature."
::= { hwWlanIDIndexedApEntry 97 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.98
hwWlanIDIndexedApZoneName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..35))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the AP zone name."
::= { hwWlanIDIndexedApEntry 98 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.99
hwWlanIDIndexedApDataLinkState OBJECT-TYPE
SYNTAX INTEGER
{
down(1),
run(2),
noneed(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the state of an AP data link."
::= { hwWlanIDIndexedApEntry 99 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.100
hwWlanIDIndexedApRtuStatus OBJECT-TYPE
SYNTAX INTEGER
{
downloading(1),
active(2),
notActive(3),
invalidLicense(4),
flashMemoryNotEnough(5),
notSupport(6),
noLicenseOnAP(7),
noLicenseOnAC(8),
invalidStatus(255)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP RTU status."
::= { hwWlanIDIndexedApEntry 100 }
-- 1.3.6.1.4.1.2011.6.139.13.3.10.1.101
hwWlanIDIndexedApRadioMode OBJECT-TYPE
SYNTAX INTEGER
{
twoRadioStandard(1),
twoRadio5gEnhanced(2),
twoRadio2gEnhanced(3),
threeRadio(4),
twoRadioIndependentScan(5),
notSupport(255)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the actual radio switch-mode of AP."
::= { hwWlanIDIndexedApEntry 101 }
-- 1.3.6.1.4.1.2011.6.139.13.3.11
hwWlanApOnlineFailReasonTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwWlanApOnlineFailReasonEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to get AP online fail reason counts."
::= { hwWlanApObjects 11 }
-- 1.3.6.1.4.1.2011.6.139.13.3.11.1
hwWlanApOnlineFailReasonEntry OBJECT-TYPE
SYNTAX HwWlanApOnlineFailReasonEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to get AP online fail reason counts."
INDEX { hwWlanApOnlineFailReasonIndex }
::= { hwWlanApOnlineFailReasonTable 1 }
HwWlanApOnlineFailReasonEntry ::=
SEQUENCE {
hwWlanApOnlineFailReasonIndex
Integer32,
hwWlanApOnlineFailReasonDesc
OCTET STRING,
hwWlanApOnlineFailReasonCount
Integer32
}
-- 1.3.6.1.4.1.2011.6.139.13.3.11.1.1
hwWlanApOnlineFailReasonIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the AP online fail reason index."
::= { hwWlanApOnlineFailReasonEntry 1 }
-- 1.3.6.1.4.1.2011.6.139.13.3.11.1.2
hwWlanApOnlineFailReasonDesc OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP online fail reason description."
::= { hwWlanApOnlineFailReasonEntry 2 }
-- 1.3.6.1.4.1.2011.6.139.13.3.11.1.3
hwWlanApOnlineFailReasonCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the the AP online fail reason counts."
::= { hwWlanApOnlineFailReasonEntry 3 }
-- 1.3.6.1.4.1.2011.6.139.13.3.12
hwWlanApOfflineReasonTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwWlanApOfflineReasonEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to get AP offline reason counts."
::= { hwWlanApObjects 12 }
-- 1.3.6.1.4.1.2011.6.139.13.3.12.1
hwWlanApOfflineReasonEntry OBJECT-TYPE
SYNTAX HwWlanApOfflineReasonEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to get AP offline reason counts."
INDEX { hwWlanApOfflineReasonIndex }
::= { hwWlanApOfflineReasonTable 1 }
HwWlanApOfflineReasonEntry ::=
SEQUENCE {
hwWlanApOfflineReasonIndex
Integer32,
hwWlanApOfflineReasonDesc
OCTET STRING,
hwWlanApOfflineReasonCount
Integer32
}
-- 1.3.6.1.4.1.2011.6.139.13.3.12.1.1
hwWlanApOfflineReasonIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the AP offline reason index."
::= { hwWlanApOfflineReasonEntry 1 }
-- 1.3.6.1.4.1.2011.6.139.13.3.12.1.2
hwWlanApOfflineReasonDesc OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP offline reason description."
::= { hwWlanApOfflineReasonEntry 2 }
-- 1.3.6.1.4.1.2011.6.139.13.3.12.1.3
hwWlanApOfflineReasonCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP offline reason counts."
::= { hwWlanApOfflineReasonEntry 3 }
-- 1.3.6.1.4.1.2011.6.139.13.4
hwWlanAPConformance OBJECT IDENTIFIER ::= { hwWlanAp 4 }
-- 1.3.6.1.4.1.2011.6.139.13.4.1
hwWlanAPCompliances OBJECT IDENTIFIER ::= { hwWlanAPConformance 1 }
--1.3.6.1.4.1.2011.6.139.13.4.1.1
hwWlanAPCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Description."
MODULE
MANDATORY-GROUPS { hwWlanApTrapObjectsGroup, hwWlanApTypeGroup, hwWlanApInfoGroup }
::= { hwWlanAPCompliances 1 }
--1.3.6.1.4.1.2011.6.139.13.4.2
hwWlanAPObjectGroups OBJECT IDENTIFIER ::= { hwWlanAPConformance 2 }
--1.3.6.1.4.1.2011.6.139.13.4.2.1
hwWlanApTrapGroup NOTIFICATION-GROUP
NOTIFICATIONS { hwApFaultTrap, hwApNormalTrap, hwApPingResultTrap, hwApConfigCommitTrap, hwUnAuthorizedApRecordExistTrap,
hwUnAuthorizedApRecordClearTrap, hwApCpuOverloadTrap, hwApCpuOverloadRestoreTrap, hwApMemoryOverloadTrap, hwApMemoryOverloadRestoreTrap,
hwApStaFullTrap, hwApStaFullRecoverTrap, hwAcDevicesSwitchTrap, hwDyingGaspTrap, hwApFaultTrapFat,
hwApNormalTrapFat, hwApTemperatureTooLowTrap, hwApTemperatureTooLowRestoreTrap, hwApTemperatureTooHighTrap, hwApTemperatureTooHighRestoreTrap,
hwApOpticalRxPowerTooHighTrap, hwApOpticalRxPowerTooHighRestoreTrap, hwApOpticalRxPowerTooLowTrap, hwApOpticalRxPowerTooLowRestoreTrap, hwApOpticalTemperatureTooHighTrap,
hwApOpticalTemperatureTooHighRestoreTrap, hwApOpticalTemperatureTooLowTrap, hwApOpticalTemperatureTooLowRestoreTrap, hwApNotSupportCountryCodeTrap, hwApColdBootTrap,
hwApColdBootRestoreTrap, hwApHotBootTrap, hwApHotBootRestoreTrap, hwApCRCTooHighTrap, hwApCRCTooHighRestoreTrap,
hwApConflictApNameTrap, hwApLicenseTrap, hwApFmeaIICFaultTrap, hwApFmeaIICFaultRestoreTrap, hwApFmeaPHYFaultTrap,
hwApFmeaPHYFaultRestoreTrap, hwApFmeaFaultTrap, hwApFmeaFaultRestoreTrap, hwApOpticalInsertTrap, hwApOpticalRemoveTrap,
hwApReceivedInvalidArpNewTrap, hwApVersionMismatchTrap, hwRadioUploadRemoteCaptureFileTrap, hwMPJoinedOnEthernetTrap, hwMPJoinedOnEthernetRestoreTrap, hwMPPJoinedOnAirTrap, hwMPPJoinedOnAirRestoreTrap,
hwApOpticalTxPowerTooHighTrap, hwApOpticalTxPowerTooHighRestoreTrap, hwApOpticalTxPowerTooLowTrap, hwApOpticalTxPowerTooLowRestoreTrap, hwApOnLineNumExceedCardSpecTrap, hwApFanInvalidTrap, hwApFanInvalidRestoreTrap,
hwApStorageDevRemoveTrap, hwApStorageDevInsertTrap, hwApPoePowerOffTrap, hwApPoePowerOnTrap, hwApPoePdConnectedTrap, hwApPoePdDisconnectedTrap, hwApPoePdClassOvercurrentTrap,
hwApPoePdPriorityDifferentTrap, hwApPoePowerOverUtilizationThresholdTrap, hwApPoePowerOverUtilizationThresholdRestoreTrap, hwApSTPAutoShutdownTrap, hwApSTPAutoShutdownRestoreTrap, hwApOpticalInvalidTrap, hwApOpticalInvalidRestoreTrap,
hwWlanBLELowPowerTrap, hwWlanBLELowPowerRestoreTrap, hwWlanBLEOfflineTrap, hwWlanBLEOfflineRestoreTrap, hwWlanBLEFaultyTrap, hwWlanBLEFaultyRestoreTrap,hwWlanBLEDetachedTrap,hwWlanBLEDetachedRestoreTrap,hwApTypeMismatchTrap}
STATUS current
DESCRIPTION
"Description."
::= { hwWlanAPObjectGroups 1 }
--1.3.6.1.4.1.2011.6.139.13.4.2.2
hwWlanApTrapObjectsGroup OBJECT-GROUP
OBJECTS { hwWlanApActualType, hwWlanApCpuOccupancyRate, hwWlanApMemoryOccupancyRate, hwWlanApPermitStaNum, hwWlanStaAuthFailCause,
hwWlanAcSystemSwitchType, hwWlanApOpticalRxPower, hwWlanApOpticalTemperature, hwWlanApCfgCountryCode, hwWlanApArpAttackSrcMac,
hwWlanApArpAttackDstMac, hwWlanApArpAttackSrcIP, hwWlanApArpCfgRateThreshold, hwWlanApArpActualRate, hwWlanApNotifyRadioId,
hwWlanApNotifyOrRestoreTemperature, hwWlanOccurTime, hwWlanApBootNotifyName, hwWlanApFaultTimes, hwWlanApUnAuthorizedApRecordNumber,
hwWlanCrcErrActual, hwWlanCrcThreshold, hwWlanApNotifyWlanId, hwWlanApLicenseInfo, hwWlanCrcPortType,
hwWlanCrcPortID, hwWlanApArpAttackDropNum, hwWlanApFaultID, hwWlanApIfIndex, hwWlanApFaultInfo,
hwWlanApSoftWareVersion, hwRadioUploadRemoteCaptureResult, hwWlanApRadioID, hwWlanApCpuOverloadDescInfo, hwWlanApOpticalTxPower, hwWlanSlotNum,
hwApPoePdPriority, hwApPoePortPriority, hwApPoeCurConsumPower, hwApPoeConsumPowerThreshold, hwApFanIndex, hwApEntityPhysicalName, hwApStorageIndex, hwApStorageName,
hwWlanApOpticalFaultID, hwWlanBLEMacAddr, hwPowerOffReason }
STATUS current
DESCRIPTION
"Description."
::= { hwWlanAPObjectGroups 2 }
--1.3.6.1.4.1.2011.6.139.13.4.2.3
hwWlanApTypeGroup OBJECT-GROUP
OBJECTS { hwWlanApType, hwWlanApTypeDesc, hwWlanApTypeWiredPortNum, hwWlanApTypeRadioNum, hwWlanApTypeMaxStaNum,
hwWlanApTypeReset,hwWlanApTypeRadioType,
hwWlanRadioMaxSpatialStreamsNum, hwWlanApTypeRadioAntennaGain,
hwWlanApTypeWiredPortType, hwWlanApTypeWiredPortName }
STATUS current
DESCRIPTION
"Description."
::= { hwWlanAPObjectGroups 3 }
--1.3.6.1.4.1.2011.6.139.13.4.2.4
hwWlanApInfoGroup OBJECT-GROUP
OBJECTS { hwWlanApPingApMac, hwWlanApPingAddress, hwWlanApPingCount, hwWlanApPingPacketSize, hwWlanApPingWaitTime,
hwWlanApPingTimeOut, hwWlanApPingResultSuccessCount, hwWlanApPingResultFailureCount, hwWlanApPingResultAveResponseTime, hwWlanApPingResultMinResponseTime,
hwWlanApPingResultMaxResponseTime, hwWlanApPingResultFlag, hwWlanUnauthedApType, hwWlanUnauthedApMacAddress, hwWlanUnauthedApSn,
hwWlanUnauthedApIpAddress, hwWlanUnauthedApRecordTime, hwWlanUnauthedAPIPv6Address, hwWlanApMac, hwWlanApSn, hwWlanApTypeInfo,
hwWlanApName, hwWlanApGroup, hwWlanApRunState, hwWlanApSoftwareVersion, hwWlanApHardwareVersion,
hwWlanApCpuType, hwWlanApCpufrequency, hwWlanApMemoryType, hwWlanApDomain, hwWlanApIpAddress,
hwWlanApIpNetMask, hwWlanApGatewayIp, hwWlanApMemorySize, hwWlanApFlashSize, hwWlanApRunTime,
hwWlanApAdminOper, hwWlanApDNS, hwWlanApOnlineTime, hwWlanApSysSoftwareDesc, hwWlanApSysHardtwareDesc,
hwWlanApSysManufacture, hwWlanApSysSoftwareName, hwWlanApSysSoftwareVendor, hwWlanApBomCode, hwWlanApIpv6Address,
hwWlanApIpv6NetMask, hwWlanApGatewayIpv6, hwWlanApIpv6DNS, hwWlanApProtectAcIPv6Addr, hwWlanApBootCountTotal,
hwWlanApBootCountPowerOff, hwWlanApBootCountClear, hwWlanApElectronicLabel, hwWlanApWiredPortNum, hwWlanApWiredPortMtu,
hwWlanApWiredPortMac, hwWlanApMemoryUseRate, hwWlanApCpuUseRate, hwWlanApFlashFreeSize, hwWlanApTemperature,
hwWlanApOnlineUserNum, hwWlanApDualBandAssoc5gStaNum, hwWlanApDualBandStaNum, hwWlanApStaOnlineFailRatio, hwWlanApStaOfflineRatio,
hwWlanApStickyClientRatio, hwWlanApUpEthPortSpeed, hwWlanApUpEthPortSpeedMode, hwWlanApUpEthPortDuplex, hwWlanApUpEthPortDuplexMode,
hwWlanApUpPortSpeed, hwWlanAPUpPortPER, hwWlanEthportUpRate, hwWlanEthportDownRate, hwWlanApAirportUpTraffic,
hwWlanApAirportDwTraffic, hwWlanApEthportDwTraffic, hwWlanApEthportUpTraffic, hwWlanApUpPortRecvPackets, hwWlanApUpPortSendPackets,
hwWlanApRowstatus, hwWlanApUpPortRecvBytes, hwWlanApUpPortSendBytes, hwWlanApId, hwWlanApWiredPortType, hwWlanApWiredPortDesc,
hwWlanApWiredPortState, hwWlanApWiredPortSpeed, hwWlanApMultiWiredPortDuplex, hwWlanApMultiWiredPortNegotiation, hwWlanApMultiWiredPortMode, hwWlanApWiredPortApId, hwWlanApWiredPortApName,
hwWlanApWiredPortStatClear, hwWlanApWiredPortUpDwnTimes, hwWlanApWiredPortInPkts, hwWlanApWiredPortInUnicastPkts, hwWlanApWiredPortInNonUnicastPkts,
hwWlanApWiredPortInBytes, hwWlanApWiredPortInErrorPkts, hwWlanApWiredPortInDiscardPkts, hwWlanApWiredPortOutPkts, hwWlanApWiredPortOutUnicastPkts,
hwWlanApWiredPortOutNonUnicastPkts, hwWlanApWiredPortOutBytes, hwWlanApWiredPortOutErrorsPkts, hwWlanApWiredPortOutDiscardPkts, hwWlanApWiredPortLldpRemChassisIdSubtype,
hwWlanApWiredPortLldpRemChassisId, hwWlanApWiredPortLldpRemPortIdSubtype, hwWlanApWiredPortLldpRemPortId, hwWlanApWiredPortLldpRemPortDesc, hwWlanApWiredPortLldpRemSysName,
hwWlanApWiredPortLldpRemSysDesc, hwWlanApWiredPortLldpRemSysCapSupported, hwWlanApWiredPortLldpRemSysCapEnabled, hwWlanApWiredPortLldpRemManAddrIfSubtype, hwWlanApWiredPortLldpRemManAddrIfId,
hwWlanApWiredPortLldpRemManAddrOID, hwWlanApOnlineFailTime, hwWlanApOnlineFailReason, hwWlanApOnlineFailRowStatus, hwWlanApOfflineTime,
hwWlanApOfflineReason, hwWlanApOfflineRowStatus,hwWlanApOnlineFailInfo,hwWlanApOfflineInfo,hwWlanIDIndexedAPUUIDString,hwWlanIDIndexedAPUUIDHex,hwWlanApOnlineFailReasonDesc,
hwWlanApOnlineFailReasonCount ,hwWlanApOfflineReasonDesc,hwWlanApOfflineReasonCount}
STATUS current
DESCRIPTION
"Description."
::= { hwWlanAPObjectGroups 4 }
END
--
-- HUAWEI-WLAN-AP-MIB.mib
--
|