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
|
-- *******************************************************************
-- CISCO-LWAPP-MOBILITY-EXT-MIB.my
-- January 2011, Srinath Candadai
--
-- Copyright (c) 2011-2017 by Cisco Systems Inc.
-- All rights reserved.
-- *******************************************************************
CISCO-LWAPP-MOBILITY-EXT-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
Unsigned32,
Counter32,
Counter64
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
TEXTUAL-CONVENTION,
MacAddress,
DateAndTime,
TruthValue,
RowStatus,
StorageType
FROM SNMPv2-TC
InetAddressType,
InetAddress
FROM INET-ADDRESS-MIB
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
VlanIndex
FROM Q-BRIDGE-MIB
cLWlanIndex
FROM CISCO-LWAPP-WLAN-MIB
Dscp
FROM CISCO-QOS-PIB-MIB
ciscoMgmt
FROM CISCO-SMI;
-- ********************************************************************
-- * MODULE IDENTITY
-- ********************************************************************
ciscoLwappMobilityExtMIB MODULE-IDENTITY
LAST-UPDATED "201705020000Z"
ORGANIZATION "Cisco Systems Inc."
CONTACT-INFO
"Cisco Systems,
Customer Service
Postal: 170 West Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
Email: cs-snmp@cisco.com"
DESCRIPTION
"This MIB is intended to be implemented on all those
devices operating as Central Controllers (CC) that
terminate the Light Weight Access Point Protocol
tunnel from Light-weight LWAPP Access Points.
This MIB provides configuration and status information
about the 802.11 WLAN mobility.
The relationship between CC and the LWAPP APs
can be depicted as follows:
+......+ +......+ +......+ +......+
+ + + + + + + +
+ CC + + CC + + CC + + CC +
+ + + + + + + +
+......+ +......+ +......+ +......+
.. . . .
.. . . .
. . . . .
. . . . .
. . . . .
. . . . .
+......+ +......+ +......+ +......+
+......+
+ + + + + + + + +
+
+ AP + + AP + + AP + + AP + + AP
+
+ + + + + + + + +
+
+......+ +......+ +......+ +......+
+......+
. . . .
. . . . .
. . . . .
. . . . .
. . . . .
+......+ +......+ +......+ +......+
+......+
+ + + + + + + + +
+
+ MN + + MN + + MN + + MN + + MN
+
+ + + + + + + + +
+
+......+ +......+ +......+ +......+
+......+
The LWAPP tunnel exists between the controller and
the APs. The MNs communicate with the APs through
the protocol defined by the 802.11 standard.
LWAPP APs, upon bootup, discover and join one of the
controllers and the controller pushes the configuration,
that includes the WLAN parameters, to the LWAPP APs.
The APs then encapsulate all the 802.11 frames from
wireless clients inside LWAPP frames and forward
the LWAPP frames to the controller.
GLOSSARY
Access Point ( AP )
An entity that contains an 802.11 medium access
control ( MAC ) and physical layer ( PHY ) interface
and provides access to the distribution services via
the wireless medium for associated clients.
LWAPP APs encapsulate all the 802.11 frames in
LWAPP frames and sends it to the controller to which
it is logically connected.
Basic Service Set Identifier (BSSID)
The identifier for the service set comprising of
all the 802.11 stations under the control of
one coordinating Access Point. This identifier
happens to be the MAC address of the dot11 radio
interface of the Access Point. The wireless
clients that associate with the Access Point
get the wired uplink through this particular
dot11 interface.
Central Controller ( CC )
The central entity that terminates the LWAPP protocol
tunnel from the LWAPP APs. Throughout this MIB,
this entity also referred to as 'controller'.
Light Weight Access Point Protocol ( LWAPP )
This is a generic protocol that defines the
communication between the Access Points and the
Central Controller.
Mobility Oracle (MO)
When a Central Controller in the Mobility Group is
designated as Mobility Oracle, then all the Mobility
Controller's (MC) traffic is tunnelled to it by other
Mobility Controllers. Currently, MO resides along with MC
but MC can reside in a box without MO.
Mobility Controller (MC)
When a Central Controller in the Mobility Group is
designated as Mobility Controller, then all the Mobile
Anchor's traffic is tunnelled to it by other Anchors.
Each MC has its own/self mobility agent (MA), but MA can
reside in a box without MC.
Mobility Agent (MA)
The Mobility Agent is an entity residing on the access
switch that manages mobility events on the switch, and
communicates with the Mobility Controller. Access Points
can associate directly with MA.
Wireless LAN Controller (WLC)
Wireless LAN Controller are legacy mobility device which
can participate in the new mobility architecture.
Mobility Manager
The Mobility Manager is the management entity in a mobility
controller or mobility agent.
Mobile Node ( MN )
A roaming 802.11 wireless device in a wireless
network associated with an access point.
Anchor MC, Anchor MA
Anchor MC or Anchor MA is the mobility entity where a mobile
client was first anchored or associated. This is equivalent
to home agent (HA).
Associated MC, Associated MA
Associated MC or Associated MA is the mobility entity where
a mobile client roamed and get associated. This is equivalent
to foreign agent (FA). It can be local or remote.
Mobility
Concept by which a Mobile Node can roam from one
Access Point to another Access Point, across multiple
Central Controllers, without need for repeated
authentication.
Mobility Group
A set of Central Controllers which exchange Mobile
Node's authentication information, so that the Mobile
Node upon roaming need not re-authenticate.
Switch Peer Group (SPG)
A set of mobility agents (MAs) form a Switch Peer Group.
One or more SPGs are associated with one mobility
controller (MC). Traffic between mobility agents within
a SPG group goes directly between them - not through their
associated MC
Mobility Anchor
When a Central Controller in the Mobility Group is
designated as Mobility Anchor, then all the Mobile
Node's traffic is tunnelled to it by other
Controllers in the Mobility Group.
Guest Tunneling (GT)
The concept of designating a Central Controller in
the Mobility Group as Mobility Anchor, so that all
the Mobile Node's traffic is tunnelled to it by other
Controllers in the Mobility Group.
Station Management (SMT)
This term refers to the internal management of the
802.11 protocol operations by the AP to work
cooperatively with the other APs and 802.11
devices in the network.
Ethernet over Internet Protocol (EoIP)
Ethernet over IP (EoIP) is a protocol that creates
an Ethernet tunnel between two routers on top of an
IP connection. The EoIP interface appears as an
Ethernet interface.
Reverse path filtering (RPF)
Reverse path filtering (RPF) is a feature provided
by most modern Internet Protocol routers, which may
be used to reduce the risk of customers attacking
other internet hosts. One of the problems network
service providers face today is hackers generating
packets with fake source IP addresses, a technique
known as spoofing. This is often done in order to
initiate a denial-of-service attack against another
internet host or network.
Since the source IP addresses of the incoming packets
change, often randomly, and for every packet, the
target of such an attack can't easily filter out the
attacking packets. However, the source of the attack,
i.e. the network service provider of the attacking
host, has a simple way to stop such packets from ever
leaving its network. A router always knows which
networks are reachable via any of its interfaces.
By checking the source IP address of all packets
coming in via an interface against the networks known
to be behind that interface, the router can simply
drop packets that aren't supposed to come from there.
Hence, reverse path filtering filters packets
according to the 'reverse path' to their source
IP address. If the path back to the source IP address
does not match the path the packet is coming from,
it is dropped.
REFERENCE
[1] Part 11 Wireless LAN Medium Access Control ( MAC )
and Physical Layer ( PHY ) Specifications.
[2] Draft-obara-capwap-lwapp-00.txt, IETF Light
Weight Access Point Protocol."
REVISION "201705020000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 846 }
ciscoLwappMobilityExtMIBNotifs OBJECT IDENTIFIER
::= { ciscoLwappMobilityExtMIB 0 }
ciscoLwappMobilityExtMIBObjects OBJECT IDENTIFIER
::= { ciscoLwappMobilityExtMIB 1 }
ciscoLwappMobilityExtMIBConform OBJECT IDENTIFIER
::= { ciscoLwappMobilityExtMIB 2 }
ciscoLwappMobilityExtGlobalObjects OBJECT IDENTIFIER
::= { ciscoLwappMobilityExtMIBObjects 1 }
ciscoLwappMobilityExtTableObjects OBJECT IDENTIFIER
::= { ciscoLwappMobilityExtMIBObjects 2 }
ciscoLwappMobilityExtNotifObjects OBJECT IDENTIFIER
::= { ciscoLwappMobilityExtMIBObjects 3 }
ciscoLwappMobilityExtMCGlobalObjects OBJECT IDENTIFIER
::= { ciscoLwappMobilityExtGlobalObjects 1 }
ciscoLwappMobilityExtMCMAGlobalObjects OBJECT IDENTIFIER
::= { ciscoLwappMobilityExtGlobalObjects 2 }
ciscoLwappMobilityExtMAGlobalObjects OBJECT IDENTIFIER
::= { ciscoLwappMobilityExtGlobalObjects 3 }
ciscoLwappMobilityExtMCStats OBJECT IDENTIFIER
::= { ciscoLwappMobilityExtGlobalObjects 4 }
ciscoLwappMobilityExtMAStats OBJECT IDENTIFIER
::= { ciscoLwappMobilityExtGlobalObjects 5 }
ciscoLwappMobilityExtGlobalStats OBJECT IDENTIFIER
::= { ciscoLwappMobilityExtGlobalObjects 6 }
CiscoAbsZeroBasedCounter64 ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This TC describes an object which counts events with the
following semantics: objects of this type will be set to
zero(0) on creation and will thereafter count appropriate
events, it locks at the maximum value of 18,446,744,073,709,551
,615 if the counter overflows.
This TC may be used only in situations where wrapping is
not possible or extremely unlikely situation."
SYNTAX Counter64
-- *******************************************************************
-- Mobility Controller (MC) global parameters
-- *******************************************************************
cLMobilityExtMCMOEnableStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the current status of the
Mobility Oracle (MO).
A value of 'true' indicates Mobility Oracle is enabled.
A value of 'false' indicates Mobility Oracle (MO)
is disabled."
DEFVAL { false }
::= { ciscoLwappMobilityExtMCGlobalObjects 1 }
cLMobilityExtMCMOAdminEnableStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the user to enable or disable
MO mode.
A value of 'true' indicates both Mobility
Oracle (MO) is enabled.
A value of 'false' indicates Mobility Oracle (MO)
is disabled.
Please note that cLMobilityExtMOEnableStatus (operational
value)can be false even if cLMobilityExtMOAdminEnableStatus is
true."
DEFVAL { false }
::= { ciscoLwappMobilityExtMCGlobalObjects 2 }
cLMobilityExtMCEnableStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the current status of
Mobility Controller (MC). The controller can
operate either in MC/MA or MA only mode.
A value of 'true' indicates Mobility
Controller (MC) is enabled.
A value of 'false' indicates Mobility Controller (MC)
is disabled."
DEFVAL { false }
::= { ciscoLwappMobilityExtMCGlobalObjects 3 }
cLMobilityExtMCAdminEnableStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the user to enable or disable
MC mode. The controller can operate
either in MC/MA or MA only mode.
A value of 'true' indicates both Mobility
Controller (MC) is enabled.
A value of 'false' indicates Mobility Controller (MC)
is disabled.
Please note that cLMobilityExtMCEnableStatus (operational
value)can be false even if cLMobilityExtMCAdminEnableStatus is
true."
DEFVAL { false }
::= { ciscoLwappMobilityExtMCGlobalObjects 4 }
cLMobilityExtMCMulticastMode OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the user to enable or disable
multicast mode.
A value of 'true' indicates multicast mode
is enabled.
A value of 'false' indicates multicast mode
is disabled."
DEFVAL { false }
::= { ciscoLwappMobilityExtMCGlobalObjects 5 }
cLMobilityExtMCKeepAliveCount OBJECT-TYPE
SYNTAX Unsigned32 (3..20)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the keep alive count.
If keep alive response is not received consecutively
for N (keep alive count) times, the mobility link is
declared as down."
DEFVAL { 3 }
::= { ciscoLwappMobilityExtMCGlobalObjects 6 }
cLMobilityExtMCKeepAliveInterval OBJECT-TYPE
SYNTAX Unsigned32 (1..30)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the keep alive interval. This object is
valid for MC, not MA."
::= { ciscoLwappMobilityExtMCGlobalObjects 7 }
cLMobilityExtMCDscpValue OBJECT-TYPE
SYNTAX Dscp
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the Differentiated Services Code Point
(DSCP) value. Here it is used for classifying and managing
mobility control packets and providing quality of service (QoS)
on IP networks. Valid value ranges from 0 to 63."
DEFVAL { 0 }
::= { ciscoLwappMobilityExtMCGlobalObjects 8 }
cLMobilityExtMCMOPublicAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the MO's public IP address type."
::= { ciscoLwappMobilityExtMCGlobalObjects 9 }
cLMobilityExtMCMOPublicAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the MO's public IP address.The
type of this address is determined by the value of
cLMobilityExtMCMOPublicAddressType object."
::= { ciscoLwappMobilityExtMCGlobalObjects 10 }
cLMobilityExtMCApCountLicensesInUse OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the total APs directly associated
with this MC and its MAs. Each Access point that joins
the Controller acquires a licence from the controller."
::= { ciscoLwappMobilityExtMCGlobalObjects 11 }
cLMobilityExtMCOwnGroupMulticastAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the multicast IP address type of its own
mobility group."
::= { ciscoLwappMobilityExtMCGlobalObjects 12 }
cLMobilityExtMCOwnGroupMulticastAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the multicast IP address of its own
mobility group. The type of this address is determined by the
value of cLMobilityExtMCOwnGroupMulticastAddressType object."
::= { ciscoLwappMobilityExtMCGlobalObjects 13 }
cLMobilityExtMCMobilityGroupName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the name for this mobility group."
::= { ciscoLwappMobilityExtMCGlobalObjects 14 }
cLMobilityExtMCMONumberOfClients OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of clients reported
by MO."
::= { ciscoLwappMobilityExtMCGlobalObjects 15 }
cLMobilityExtMCNumberOfMCs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of MCs within a mobility
domain."
::= { ciscoLwappMobilityExtMCGlobalObjects 16 }
cLMobilityExtMCTotalNumberOfReportedAPs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of APs reported
by this MC, its peer MCs and its MAs."
::= { ciscoLwappMobilityExtMCGlobalObjects 17 }
cLMobilityExtMCNumberOfReportedAPsInSubDomain OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of APs reported
by this MC and its MAs."
::= { ciscoLwappMobilityExtMCGlobalObjects 18 }
-- *******************************************************************
-- Mobility Manager global parameters (applicable to both MC and MA)
-- *******************************************************************
cLMobilityExtMgrAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the mobility manager's IP address type.
The mobility manager is the management entity of MC or MA."
::= { ciscoLwappMobilityExtMCMAGlobalObjects 1 }
cLMobilityExtMgrAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the mobility manager's IP address. The
type of this address is determined by the value of
cLMobilityExtMgrAddressType."
::= { ciscoLwappMobilityExtMCMAGlobalObjects 2 }
cLMobilityExtMgrNetmaskType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the mobility manager's netmask type."
::= { ciscoLwappMobilityExtMCMAGlobalObjects 3 }
cLMobilityExtMgrNetmask OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the mobility manager's netmask. The
type of this address is determined by the value of
cLMobilityExtMgrNetmaskType."
::= { ciscoLwappMobilityExtMCMAGlobalObjects 4 }
cLMobilityExtMgrMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the mac address for this mobility
manager."
::= { ciscoLwappMobilityExtMCMAGlobalObjects 5 }
cLMobilityExtMgrVlanId OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the VLAN ID for this mobility manager."
::= { ciscoLwappMobilityExtMCMAGlobalObjects 6 }
cLMobilityExtMgrName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the name for this mobility manager."
::= { ciscoLwappMobilityExtMCMAGlobalObjects 7 }
cLMobilityExtMgrInterfaceType OBJECT-TYPE
SYNTAX INTEGER {
management(1),
ap(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the mobility manager interface type.
It can be of two types:
management(1) - For in-band management of the controller.
ap(2) - For L3 communications between the controller
and LWAPP APs."
::= { ciscoLwappMobilityExtMCMAGlobalObjects 8 }
cLMobilityExtNewArchitectureEnableStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the current status of the
new mobility feature.
A value of 'true' indicates new mobility is enabled.
A value of 'false' indicates new mobility is disabled."
::= { ciscoLwappMobilityExtMCMAGlobalObjects 9 }
cLMobilityExtNewArchitectureAdminEnableStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies users to enable or disable
new mobility feature.
A value of 'true' indicates new mobility is enabled.
A value of 'false' indicates new mobility is disabled."
::= { ciscoLwappMobilityExtMCMAGlobalObjects 10 }
cLMobilityExtSecureCipher OBJECT-TYPE
SYNTAX INTEGER {
disable(1),
aes256sha1(2),
aes256sha2(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies to configure secure ciphers, AES256+SHA
or AES256+SHA2 for mobility tunnel.
disable(1) - Implies that controllers will continue
to use default ciphers for mobility tunnel.
aes256sha1(2) - Implies that controllers will use
AES256_SHA cipher for mobility tunnel.
aes256sha2(3) - Implies that controllers will use
AES256_SHA256 cipher for mobility tunnel."
::= { ciscoLwappMobilityExtMCMAGlobalObjects 11 }
cLMobilityExtEncryptionStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the current status of the
encryption in the mobility tunnel.
A value of 'true' indicates encryption is enabled.
A value of 'false' indicates encryption is disabled."
::= { ciscoLwappMobilityExtMCMAGlobalObjects 12 }
-- *******************************************************************
-- Switch Peer Group Table (applicable to MC only)
-- *******************************************************************
cLMobilityExtSpgTable OBJECT-TYPE
SYNTAX SEQUENCE OF CLMobilityExtSpgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the information about the
802.11 LWAPP mobility Switch Peer Group (SPG)."
::= { ciscoLwappMobilityExtTableObjects 1 }
cLMobilityExtSpgEntry OBJECT-TYPE
SYNTAX CLMobilityExtSpgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents information about
one 802.11 LWAPP mobility SPG configured on this controller."
INDEX { cLMobilityExtSpgGroupName }
::= { cLMobilityExtSpgTable 1 }
CLMobilityExtSpgEntry ::= SEQUENCE {
cLMobilityExtSpgGroupName SnmpAdminString,
cLMobilityExtSpgGroupId Unsigned32,
cLMobilityExtSpgBridgeDomainId Unsigned32,
cLMobilityExtSpgMemberCount Unsigned32,
cLMobilityExtSpgMulticastAddressType InetAddressType,
cLMobilityExtSpgMulticastAddress InetAddress,
cLMobilityExtSpgMulticastMode TruthValue,
cLMobilityExtSpgStorageType StorageType,
cLMobilityExtSpgRowStatus RowStatus
}
cLMobilityExtSpgGroupName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the group name for this SPG."
::= { cLMobilityExtSpgEntry 1 }
cLMobilityExtSpgGroupId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the group ID for this SPG.
This object is used in the control data packet for SPG."
::= { cLMobilityExtSpgEntry 2 }
cLMobilityExtSpgBridgeDomainId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the bridge domain ID for this SPG."
::= { cLMobilityExtSpgEntry 3 }
cLMobilityExtSpgMemberCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of members on this SPG."
::= { cLMobilityExtSpgEntry 4 }
cLMobilityExtSpgMulticastAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the member's multicast IP address
type."
::= { cLMobilityExtSpgEntry 5 }
cLMobilityExtSpgMulticastAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the member's multicast IP address.
The type of this address is determined by the value of
cLMobilityExtSpgMulticastAddressType."
::= { cLMobilityExtSpgEntry 6 }
cLMobilityExtSpgMulticastMode OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the user to enable or disable
multicast mode.
A value of 'true' indicates multicast mode
is enabled.
A value of 'false' indicates multicast mode
is disabled."
::= { cLMobilityExtSpgEntry 7 }
cLMobilityExtSpgStorageType OBJECT-TYPE
SYNTAX StorageType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the storage type for this
conceptual row."
::= { cLMobilityExtSpgEntry 8 }
cLMobilityExtSpgRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the status column for this row and used
to create and delete specific instances of rows
in this table."
::= { cLMobilityExtSpgEntry 9 }
-- *******************************************************************
-- Switch Peer Group Member table (applicable to MC only)
-- *******************************************************************
cLMobilityExtSpgMemberTable OBJECT-TYPE
SYNTAX SEQUENCE OF CLMobilityExtSpgMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the information about the
802.11 LWAPP mobility Switch Peer Group (SPG) members."
::= { ciscoLwappMobilityExtTableObjects 2 }
cLMobilityExtSpgMemberEntry OBJECT-TYPE
SYNTAX CLMobilityExtSpgMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents information about
one 802.11 LWAPP mobility SPG member configured
on this controller."
INDEX {
cLMobilityExtSpgGroupName,
cLMobilityExtSpgMemberPrivateAddressType,
cLMobilityExtSpgMemberPrivateAddress
}
::= { cLMobilityExtSpgMemberTable 1 }
CLMobilityExtSpgMemberEntry ::= SEQUENCE {
cLMobilityExtSpgMemberPrivateAddressType InetAddressType,
cLMobilityExtSpgMemberPrivateAddress InetAddress,
cLMobilityExtSpgMemberStatus INTEGER,
cLMobilityExtSpgMemberPublicAddressType InetAddressType,
cLMobilityExtSpgMemberPublicAddress InetAddress,
cLMobilityExtSpgMemberRowStatus RowStatus
}
cLMobilityExtSpgMemberPrivateAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the member's private IP address type."
::= { cLMobilityExtSpgMemberEntry 1 }
cLMobilityExtSpgMemberPrivateAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the member's private IP address.
The type of this address is determined by the value of
cLMobilityExtSpgMemberPrivateAddressType."
::= { cLMobilityExtSpgMemberEntry 2 }
cLMobilityExtSpgMemberStatus OBJECT-TYPE
SYNTAX INTEGER {
notconfigured(0),
datapathdown(1),
controlpathdown(2),
bothdown(3),
up(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the operational and connectivity
status of the member.
notconfigured(0) - This means group member is not configured
for ICMP or EoIP pings.
datapathdown(1) - This means group member is not responding
to EoIP pings.
controlpathdown(2) - This means successive ICMP pings
to the group member have failed.
bothdown(3) - This means group member is not responding
to ICMP or EOIP pings.
up(4) - This means group member is responding to
both EOIP and ICMP pings."
::= { cLMobilityExtSpgMemberEntry 3 }
cLMobilityExtSpgMemberPublicAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the member's public IP address type."
::= { cLMobilityExtSpgMemberEntry 4 }
cLMobilityExtSpgMemberPublicAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the member's public IP address. The
type of this address is determined by the value of
cLMobilityExtSpgMemberPublicAddressType."
::= { cLMobilityExtSpgMemberEntry 5 }
cLMobilityExtSpgMemberRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the status column for this row and used
to create and delete specific instances of rows
in this table."
::= { cLMobilityExtSpgMemberEntry 6 }
-- *******************************************************************
-- Mobility Group Member table (applicable to MC only)
-- *******************************************************************
cLMobilityExtGroupMemberTable OBJECT-TYPE
SYNTAX SEQUENCE OF CLMobilityExtGroupMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the information about the
802.11 LWAPP mobility group members."
::= { ciscoLwappMobilityExtTableObjects 3 }
cLMobilityExtGroupMemberEntry OBJECT-TYPE
SYNTAX CLMobilityExtGroupMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents information about
one 802.11 LWAPP mobility member configured
on this controller."
INDEX {
cLMobilityExtGroupMemberPrivateAddressType,
cLMobilityExtGroupMemberPrivateAddress
}
::= { cLMobilityExtGroupMemberTable 1 }
CLMobilityExtGroupMemberEntry ::= SEQUENCE {
cLMobilityExtGroupMemberPrivateAddressType InetAddressType,
cLMobilityExtGroupMemberPrivateAddress InetAddress,
cLMobilityExtGroupMemberGroupName SnmpAdminString,
cLMobilityExtGroupMemberPublicAddressType InetAddressType,
cLMobilityExtGroupMemberPublicAddress InetAddress,
cLMobilityExtGroupMemberStatus INTEGER,
cLMobilityExtGroupMemberMacAddress MacAddress,
cLMobilityExtGroupMemberMulticastAddressType InetAddressType,
cLMobilityExtGroupMemberMulticastAddress InetAddress,
cLMobilityExtGroupMemberHashKey OCTET STRING,
cLMobilityExtGroupMemberRowStatus RowStatus
}
cLMobilityExtGroupMemberPrivateAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the member's private IP address type."
::= { cLMobilityExtGroupMemberEntry 1 }
cLMobilityExtGroupMemberPrivateAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the member's private IP address. The
type of this address is determined by the value of
cLMobilityExtGroupMemberPrivateAddressType."
::= { cLMobilityExtGroupMemberEntry 2 }
cLMobilityExtGroupMemberGroupName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the member's mobility group name."
::= { cLMobilityExtGroupMemberEntry 3 }
cLMobilityExtGroupMemberPublicAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the member's public IP address type."
::= { cLMobilityExtGroupMemberEntry 4 }
cLMobilityExtGroupMemberPublicAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the member's public IP address. The
type of this address is determined by the value of
cLMobilityExtGroupMemberPublicAddressType."
::= { cLMobilityExtGroupMemberEntry 5 }
cLMobilityExtGroupMemberStatus OBJECT-TYPE
SYNTAX INTEGER {
notconfigured(0),
datapathdown(1),
controlpathdown(2),
bothdown(3),
up(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the operational and connectivity
status of the member.
notconfigured(0) - This means group member is not configured
for ICMP or EoIP pings.
datapathdown(1) - This means group member is not responding
to EoIP pings.
controlpathdown(2) - This means successive ICMP pings
to the group member have failed.
bothdown(3) - This means group member is not responding
to ICMP or EOIP pings.
up(4) - This means group member is responding to
both EOIP and ICMP pings."
::= { cLMobilityExtGroupMemberEntry 6 }
cLMobilityExtGroupMemberMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the member's MAC address."
::= { cLMobilityExtGroupMemberEntry 7 }
cLMobilityExtGroupMemberMulticastAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This used indicates the member's multicast IP address type."
::= { cLMobilityExtGroupMemberEntry 8 }
cLMobilityExtGroupMemberMulticastAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the member's multicast IP address.
The type of this address is determined by the value of
cLMobilityExtGroupMemberMulticastAddressType."
::= { cLMobilityExtGroupMemberEntry 9 }
cLMobilityExtGroupMemberHashKey OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (4..40))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the hash key of the peer mobility
member. It is a 40 digit hex value or 'none'. Value 'none' is
used to clear the previously configured hash key."
::= { cLMobilityExtGroupMemberEntry 10 }
cLMobilityExtGroupMemberRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the status column for this row and used
to create and delete specific instances of rows
in this table."
::= { cLMobilityExtGroupMemberEntry 11 }
-- *******************************************************************
-- Per WLAN, anchors table (applicable to MC and MA only)
-- *******************************************************************
cLMobilityExtAnchorTable OBJECT-TYPE
SYNTAX SEQUENCE OF CLMobilityExtAnchorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the information about the
802.11 LWAPP Mobility Anchors on individual WLANs.
+...............+
+ +
+ ROUTER +
+ 10.16.1.1 +
+...............+
..
. .
. .
. .
. .
. .
10.16.109.112 10.16.105.39
+......+ <<-------->> +......+
+ + [3]CC2 tunnels + +
+ CC1 + MN1's traffic + CC2 +
+ + to Anchor CC1 + +
+......+ using EoIP +......+
. .
. Anchor Foreign .
. .
+......+ +......+
+ + + +
+ AP1 + + AP2 +
+ + + +
+......+ +......+
WLAN '1' . ^ WLAN '1'
. |
. [2] associates |
. with AP2/CC2 |
. |
+......+ [1] +......+
+ + moves to region + +
+ MN1 + ---------->>> + MN1 +
+ + serviced by AP2 + +
+......+ +......+
10.16.109.199 10.16.109.199
In the above diagram, Central Controllers CC1 and CC2 have
been configured in a Mobility Group.
Currently the Mobile Node 'MN1' obtains its IP from the
Central Controller 'CC1' with which it first associates
via WLAN '1' through Access Point 'AP1'. 'CC1'
obtains DHCP address, say 10.16.109.199 for client 'MN1'.
Now the client 'MN1' is identified by 10.16.109.199 for
further communication with the network and the
communication happens via 'CC1'.
Since, 'CC1' and 'CC2' are in same mobility group, 'CC1'
sends the authentication block of 'MN1' to 'CC2'.
Central Controller 'CC2' has an associated Access Point
'AP2' which beams WLAN '1' and uses 10.16.105.0 /
255.255.255.0 subnet instead.
Next, the Mobile Node 'MN1' moves out of range of 'AP1'
and gets in to proximity with 'AP2' and continues to use
WLAN '1'. 'CC2' locally authenticates 'MN1' against
authentication block shared from 'CC1'. 'CC2' forwards all
traffic from 'MN1' to router. This is called WLAN mobility.
But hold on, 'CC2' uses 10.16.105.0 / 255.255.255.0 subnet
for WLAN '1'. So we have two problems here :
a> Traffic of 10.16.109.0 / 255.255.255.0 subnet has to be
accessible from 10.16.105.0 / 255.255.255.0 subnet.
b> Unneccessary overloading of 10.16.105.0 / 255.255.255.0
subnet by traffic from 10.16.109.0 / 255.255.255.0 subnet.
How do we address these issues ??
If an EoIP tunnel can be established between 'CC1' and 'CC2'
and 'CC1' sends all traffic bound to 'MN1', 10.16.109.199,
on this tunnel to 'CC2', which in turn forwards it to 'MN1',
then, above two subnet-problems are resolved. This is called
Mobility Anchoring. 'CC1' is the Mobility Anchor and 'CC2' is
the 'Foreign' for WLAN '1'.
As per the configuration, user creates a Mobility Anchor entry
in 'CC2' for WLAN '1' with IP address as 'CC1', i.e.
10.16.109.112. So, when 'MN1' connects to WLAN '1' via
'AP2', then 'CC2' establishes EoIP tunnel with 10.16.109.112
and forwards the packets to 'MN1'.
Given the above example, the cLMobilityAnchorEntry on 'CC2'
looks like :
------------------------------------------------------------------
| MIB - ATTRIBUTES | ROW#1 | ROW#2 |
------------------------------------------------------------------
| cLWlanIndex | 1 | |
------------------------------------------------------------------
| cLMobilityExtAnchorAssociatedMCAddressType | ipv4 | |
------------------------------------------------------------------
| cLMobilityExtAnchorAssociatedMCAddress | 10.16.109.112 | |
------------------------------------------------------------------
| cLMobilityExtAnchorStatus | up(4) | |
------------------------------------------------------------------
| cLMobilityExtAnchorRowStatus | active(1) | |
------------------------------------------------------------------
This feature has advantages for both security and load
balancing. It can be used to restrict a WLAN to a single
subnet, regardless of the MN's entry point into the network.
A 'public' or guest WLAN can thus be accessed throughout an
enterprise, but still is restricted to a specific subnet.
It can also be used to provide some geographic load balancing,
since the WLANs can represent a particular section of a
building (ie., engineering, marketing). Those groups can be
'anchored' on a particular subnet/switch rather than on the
CC of first occurrence (ie., the switch controlling the APs
by the front door)."
::= { ciscoLwappMobilityExtTableObjects 4 }
cLMobilityExtAnchorEntry OBJECT-TYPE
SYNTAX CLMobilityExtAnchorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents information about
one 802.11 LWAPP Mobility Anchor(MA) configured on a WLAN
on this controller."
INDEX {
cLWlanIndex,
cLMobilityExtAnchorAssociatedMCAddressType,
cLMobilityExtAnchorAssociatedMCAddress
}
::= { cLMobilityExtAnchorTable 1 }
CLMobilityExtAnchorEntry ::= SEQUENCE {
cLMobilityExtAnchorAssociatedMCAddressType InetAddressType,
cLMobilityExtAnchorAssociatedMCAddress InetAddress,
cLMobilityExtAnchorStatus INTEGER,
cLMobilityExtAnchorRowStatus RowStatus,
cLMobilityExtAnchorPriority INTEGER
}
cLMobilityExtAnchorAssociatedMCAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the anchor's IP address type."
::= { cLMobilityExtAnchorEntry 1 }
cLMobilityExtAnchorAssociatedMCAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the anchor's IP address. The type
of this address is determined by the value of
cLMobilityExtAnchorAssociatedMCAddressType."
::= { cLMobilityExtAnchorEntry 2 }
cLMobilityExtAnchorStatus OBJECT-TYPE
SYNTAX INTEGER {
notconfigured(0),
datapathdown(1),
controlpathdown(2),
bothdown(3),
up(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the operational and connectivity
status of the Mobility Anchor(MA).
notconfigured(0) - This means anchor is not configured
for ICMP or EoIP pings.
datapathdown(1) - This means anchor is not responding
to EoIP pings.
controlpathdown(2) - This means successive ICMP pings
to the anchor have failed.
bothdown(3) - This means anchor is not responding
to ICMP or EOIP pings.
up(4) - This means anchor is responding to
both EOIP and ICMP pings."
::= { cLMobilityExtAnchorEntry 3 }
cLMobilityExtAnchorRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the status column for this row and used
to create and delete specific instances of rows
in this table."
::= { cLMobilityExtAnchorEntry 4 }
cLMobilityExtAnchorPriority OBJECT-TYPE
SYNTAX INTEGER {
local(1),
primary(2),
secondary(3),
tertiary(4)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the priority configured for
an anchor WLC mapped on a WLAN.
local(1) - Local priority can't be configured. This indicates
that anchor WLC is configured with its own IP.
primary(2) - This indicates that anchor WLC configured with
this priority will have highest priority.
secondary(3) - This indicates that anchor WLC configured with
this priority will have medium priority.
tertiary(4) - This indicates that anchor WLC configured with
this priority will have lowest priority."
::= { cLMobilityExtAnchorEntry 5 }
-- *******************************************************************
-- Mobility Controllers table reported by Mobility Oracle (MO)
-- *******************************************************************
cLMobilityExtMOMCTable OBJECT-TYPE
SYNTAX SEQUENCE OF CLMobilityExtMOMCEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the information about the
802.11 LWAPP Mobility Controllers on this MO."
::= { ciscoLwappMobilityExtTableObjects 5 }
cLMobilityExtMOMCEntry OBJECT-TYPE
SYNTAX CLMobilityExtMOMCEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents information about
one 802.11 LWAPP Mobility Controller on this MO."
INDEX {
cLMobilityExtMOMCAddressType,
cLMobilityExtMOMCAddress
}
::= { cLMobilityExtMOMCTable 1 }
CLMobilityExtMOMCEntry ::= SEQUENCE {
cLMobilityExtMOMCAddressType InetAddressType,
cLMobilityExtMOMCAddress InetAddress,
cLMobilityExtMOMCMacAddress MacAddress,
cLMobilityExtMOMCLinkStatus INTEGER,
cLMobilityExtMOMCClientCount Unsigned32
}
cLMobilityExtMOMCAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the MC's IP address type."
::= { cLMobilityExtMOMCEntry 1 }
cLMobilityExtMOMCAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the MC's IP address. The
type of this address is determined by the value of
cLMobilityExtMOMCAddressType."
::= { cLMobilityExtMOMCEntry 2 }
cLMobilityExtMOMCMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the MC's MAC address."
::= { cLMobilityExtMOMCEntry 3 }
cLMobilityExtMOMCLinkStatus OBJECT-TYPE
SYNTAX INTEGER {
notconfigured(0),
datapathdown(1),
controlpathdown(2),
bothdown(3),
up(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the operational and connectivity
status of the MC.
notconfigured(0) - This means MC is not configured
for ICMP or EoIP pings.
datapathdown(1) - This means MC is not responding
to EoIP pings.
controlpathdown(2) - This means successive ICMP pings
to the MC have failed.
bothdown(3) - This means MC is not responding
to ICMP or EOIP pings.
up(4) - This means MC is responding to
both EOIP and ICMP pings."
::= { cLMobilityExtMOMCEntry 4 }
cLMobilityExtMOMCClientCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of clients associated to the
MC."
::= { cLMobilityExtMOMCEntry 5 }
-- *******************************************************************
-- Mobility Clients table reported by Mobility Controller (MC)
-- *******************************************************************
cLMobilityExtMCClientTable OBJECT-TYPE
SYNTAX SEQUENCE OF CLMobilityExtMCClientEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the information about the
802.11 LWAPP Mobility Clients on this MC."
::= { ciscoLwappMobilityExtTableObjects 6 }
cLMobilityExtMCClientEntry OBJECT-TYPE
SYNTAX CLMobilityExtMCClientEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents information about
one 802.11 LWAPP Mobility Clients on this MC."
INDEX { cLMobilityExtMCClientMacAddress }
::= { cLMobilityExtMCClientTable 1 }
CLMobilityExtMCClientEntry ::= SEQUENCE {
cLMobilityExtMCClientMacAddress MacAddress,
cLMobilityExtMCClientAnchorMCPrivateAddressType InetAddressType,
cLMobilityExtMCClientAnchorMCPrivateAddress InetAddress,
cLMobilityExtMCClientAssociatedMCAddressType InetAddressType,
cLMobilityExtMCClientAssociatedMCAddress InetAddress,
cLMobilityExtMCClientAddressType InetAddressType,
cLMobilityExtMCClientAddress InetAddress,
cLMobilityExtMCClientState INTEGER,
cLMobilityExtMCClientAssociationTime DateAndTime,
cLMobilityExtMCClientLocalClient TruthValue,
cLMobilityExtMCClientAnchorMCGroupId Unsigned32,
cLMobilityExtMCClientAssociatedMCGroupId Unsigned32,
cLMobilityExtMCClientAssociatedMAAddressType InetAddressType,
cLMobilityExtMCClientAssociatedMAAddress InetAddress,
cLMobilityExtMCClientAnchorMAAddressType InetAddressType,
cLMobilityExtMCClientAnchorMAAddress InetAddress,
cLMobilityExtMCClientUpTime CiscoAbsZeroBasedCounter64
}
cLMobilityExtMCClientMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the client's MAC address."
::= { cLMobilityExtMCClientEntry 1 }
cLMobilityExtMCClientAnchorMCPrivateAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the client's anchor MC private
IP address type."
::= { cLMobilityExtMCClientEntry 2 }
cLMobilityExtMCClientAnchorMCPrivateAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the client's anchor MC private
IP address. The type of this address is determined by
the value of cLMobilityExtMCClientAnchorMCPrivateAddressType."
::= { cLMobilityExtMCClientEntry 3 }
cLMobilityExtMCClientAssociatedMCAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the client's associated MC
(local or foreign) IP address type."
::= { cLMobilityExtMCClientEntry 4 }
cLMobilityExtMCClientAssociatedMCAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the client's associated MC
(local or foreign) IP address. The type of this
address is determined by the value of
cLMobilityExtMCClientAssociatedMCAddressType."
::= { cLMobilityExtMCClientEntry 5 }
cLMobilityExtMCClientAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the client IP address type."
::= { cLMobilityExtMCClientEntry 6 }
cLMobilityExtMCClientAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the client IP address. The type
of this address is determined by the value of
cLMobilityExtMCClientAddressType."
::= { cLMobilityExtMCClientEntry 7 }
cLMobilityExtMCClientState OBJECT-TYPE
SYNTAX INTEGER {
init(0),
local(1),
foreign(2),
anchor(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the client state.
init(0) - Client is not associated.
local(1) - Client is local to Mobility Controller.
foreign(2) - Client is foreign to Mobility Controller.
anchor(3) - Client is anchor to Mobility Controller."
::= { cLMobilityExtMCClientEntry 8 }
cLMobilityExtMCClientAssociationTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"This object indicates the client's association time.
The object cLMobilityExtMCClientUpTime represents the MC
client up time since its association.
cLMobilityExtMCClientAssociationTime object is superseded by
cLMobilityExtMCClientUpTime."
::= { cLMobilityExtMCClientEntry 9 }
cLMobilityExtMCClientLocalClient OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether the client is local.
A value of 'true' indicates the client is local.
A value of 'false' indicates the client is not local to this
MC."
::= { cLMobilityExtMCClientEntry 10 }
cLMobilityExtMCClientAnchorMCGroupId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the client's anchor MC mobility
group ID."
::= { cLMobilityExtMCClientEntry 11 }
cLMobilityExtMCClientAssociatedMCGroupId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the client's associated MC
(local or foreign) mobility group ID."
::= { cLMobilityExtMCClientEntry 12 }
cLMobilityExtMCClientAssociatedMAAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the MA local or foreign IP
address type."
::= { cLMobilityExtMCClientEntry 13 }
cLMobilityExtMCClientAssociatedMAAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the MA local or foreign IP address.
The type of this address is determined by the value of
cLMobilityExtMCClientAssociatedMAAddressType."
::= { cLMobilityExtMCClientEntry 14 }
cLMobilityExtMCClientAnchorMAAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the MA anchor's IP address type."
::= { cLMobilityExtMCClientEntry 15 }
cLMobilityExtMCClientAnchorMAAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the MA anchor's IP address. The
type of this address is determined by the value of
cLMobilityExtMCClientAnchorMAAddressType."
::= { cLMobilityExtMCClientEntry 16 }
cLMobilityExtMCClientUpTime OBJECT-TYPE
SYNTAX CiscoAbsZeroBasedCounter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The object indicates the MC client up time since its
association."
::= { cLMobilityExtMCClientEntry 17 }
-- *******************************************************************
-- Mobility Clients table reported by Mobility Oracle (MO)
-- *******************************************************************
cLMobilityExtMOClientTable OBJECT-TYPE
SYNTAX SEQUENCE OF CLMobilityExtMOClientEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the information about the
802.11 LWAPP Mobility Clients on this MO."
::= { ciscoLwappMobilityExtTableObjects 7 }
cLMobilityExtMOClientEntry OBJECT-TYPE
SYNTAX CLMobilityExtMOClientEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents information about
one 802.11 LWAPP mobility Clients on this MO."
INDEX { cLMobilityExtMOClientMacAddress }
::= { cLMobilityExtMOClientTable 1 }
CLMobilityExtMOClientEntry ::= SEQUENCE {
cLMobilityExtMOClientMacAddress MacAddress,
cLMobilityExtMOClientAnchorMCPublicAddressType InetAddressType,
cLMobilityExtMOClientAnchorMCPublicAddress InetAddress,
cLMobilityExtMOClientAnchorMCPrivateAddressType InetAddressType,
cLMobilityExtMOClientAnchorMCPrivateAddress InetAddress,
cLMobilityExtMOClientAssociatedMCPublicAddressType InetAddressType,
cLMobilityExtMOClientAssociatedMCPublicAddress InetAddress,
cLMobilityExtMOClientAssociatedMCPrivateAddressType InetAddressType,
cLMobilityExtMOClientAssociatedMCPrivateAddress InetAddress,
cLMobilityExtMOClientAddressType InetAddressType,
cLMobilityExtMOClientAddress InetAddress,
cLMobilityExtMOClientLocalTime DateAndTime,
cLMobilityExtMOClientAssociationTime Counter64,
cLMobilityExtMOClientUpTime CiscoAbsZeroBasedCounter64
}
cLMobilityExtMOClientMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the client MAC address."
::= { cLMobilityExtMOClientEntry 1 }
cLMobilityExtMOClientAnchorMCPublicAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the client's anchor MC public
IP address type."
::= { cLMobilityExtMOClientEntry 2 }
cLMobilityExtMOClientAnchorMCPublicAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the client's anchor MC public
IP address. The type of this address is determined by the
value of cLMobilityExtMOClientAnchorMCPublicAddressType."
::= { cLMobilityExtMOClientEntry 3 }
cLMobilityExtMOClientAnchorMCPrivateAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the client's anchor MC private
IP address type."
::= { cLMobilityExtMOClientEntry 4 }
cLMobilityExtMOClientAnchorMCPrivateAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the client's anchor MC private
IP address. The type of this address is determined by
the value of cLMobilityExtMOClientAnchorMCPrivateAddressType."
::= { cLMobilityExtMOClientEntry 5 }
cLMobilityExtMOClientAssociatedMCPublicAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the client's associated MC
(local or foreign) public IP address type."
::= { cLMobilityExtMOClientEntry 6 }
cLMobilityExtMOClientAssociatedMCPublicAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the client's associated MC
(local or foreign) public IP address. The type of
this address is determined by the value of
cLMobilityExtMOClientAssociatedMCPublicAddressType."
::= { cLMobilityExtMOClientEntry 7 }
cLMobilityExtMOClientAssociatedMCPrivateAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the client's associated MC
(local or foreign) private IP address type."
::= { cLMobilityExtMOClientEntry 8 }
cLMobilityExtMOClientAssociatedMCPrivateAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the client's associated MC
(local or foreign) private IP address. The
type of this address is determined by the value of
cLMobilityExtMOClientAssociatedMCPrivateAddressType."
::= { cLMobilityExtMOClientEntry 9 }
cLMobilityExtMOClientAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the client IP address type."
::= { cLMobilityExtMOClientEntry 10 }
cLMobilityExtMOClientAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the client IP address. The
type of this address is determined by the value of
cLMobilityExtMOClientAddressType."
::= { cLMobilityExtMOClientEntry 11 }
cLMobilityExtMOClientLocalTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the client's local time."
::= { cLMobilityExtMOClientEntry 12 }
cLMobilityExtMOClientAssociationTime OBJECT-TYPE
SYNTAX Counter64
UNITS "seconds"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"This object represents the client's association time.
The object cLMobilityExtMOClientUpTime represents the
up time of the MO client since its association
cLMobilityExtMOClientAssociationTime object is superseded
by cLMobilityExtMOClientUpTime."
::= { cLMobilityExtMOClientEntry 13 }
cLMobilityExtMOClientUpTime OBJECT-TYPE
SYNTAX CiscoAbsZeroBasedCounter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the client's up time since its
association."
::= { cLMobilityExtMOClientEntry 14 }
-- *******************************************************************
-- Mobility AP Manager table (applicable to Mobility Controller
-- with AP-manager interface )
-- *******************************************************************
cLMobilityExtApMgrTable OBJECT-TYPE
SYNTAX SEQUENCE OF CLMobilityExtApMgrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the information about the
802.11 LWAPP mobility AP Manager."
::= { ciscoLwappMobilityExtTableObjects 8 }
cLMobilityExtApMgrEntry OBJECT-TYPE
SYNTAX CLMobilityExtApMgrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents information about
one 802.11 LWAPP mobility AP Manager configured
on this controller."
INDEX { cLMobilityExtApMgrName }
::= { cLMobilityExtApMgrTable 1 }
CLMobilityExtApMgrEntry ::= SEQUENCE {
cLMobilityExtApMgrName SnmpAdminString,
cLMobilityExtApMgrAddressType InetAddressType,
cLMobilityExtApMgrAddress InetAddress,
cLMobilityExtApMgrNetmaskType InetAddressType,
cLMobilityExtApMgrNetmask InetAddress,
cLMobilityExtApMgrMacAddress MacAddress,
cLMobilityExtApMgrVlanId Unsigned32,
cLMobilityExtApMgrInterfaceType INTEGER,
cLMobilityExtApMgrRowStatus RowStatus
}
cLMobilityExtApMgrName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the name for this AP manager."
::= { cLMobilityExtApMgrEntry 1 }
cLMobilityExtApMgrAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP manager's IP address type."
::= { cLMobilityExtApMgrEntry 2 }
cLMobilityExtApMgrAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP manager's IP address. The
type of this address is determined by the value of
cLMobilityExtApMgrAddressType."
::= { cLMobilityExtApMgrEntry 3 }
cLMobilityExtApMgrNetmaskType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP manager's netmask type."
::= { cLMobilityExtApMgrEntry 4 }
cLMobilityExtApMgrNetmask OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP manager's netmask. The
type of this address is determined by the value of
cLMobilityExtApMgrNetmaskType."
::= { cLMobilityExtApMgrEntry 5 }
cLMobilityExtApMgrMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the mac address for this AP manager."
::= { cLMobilityExtApMgrEntry 6 }
cLMobilityExtApMgrVlanId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the VLAN Id for this AP manager."
::= { cLMobilityExtApMgrEntry 7 }
cLMobilityExtApMgrInterfaceType OBJECT-TYPE
SYNTAX INTEGER {
management(1),
ap(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP manager interface type.
It can be of two types:
management(1) - For in-band management of the controller.
ap(2) - For L3 communications between the controller and LWAPP
APs."
::= { cLMobilityExtApMgrEntry 8 }
cLMobilityExtApMgrRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the status column for this row and used
to create and delete specific instances of rows
in this table."
::= { cLMobilityExtApMgrEntry 9 }
-- *******************************************************************
-- Mobility Foreign WLC Map table (applicable to WLC)
-- *******************************************************************
cLMobilityExtForeignWlcMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF CLMobilityExtForeignWlcMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains mappings of the foreign controller
with the interface/interface group to be used, when clients
directly connected to the foreign controller send the DHCP
request to the anchor controller."
::= { ciscoLwappMobilityExtTableObjects 9 }
cLMobilityExtForeignWlcMapEntry OBJECT-TYPE
SYNTAX CLMobilityExtForeignWlcMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry represents a row in the
cLMobilityExtForeignWlcIfMappingTable. The entries are added
and deleted by explicit user driven action."
INDEX {
cLWlanIndex,
cLMobilityExtForeignWlcAddressType,
cLMobilityExtForeignWlcAddress
}
::= { cLMobilityExtForeignWlcMapTable 1 }
CLMobilityExtForeignWlcMapEntry ::= SEQUENCE {
cLMobilityExtForeignWlcAddressType InetAddressType,
cLMobilityExtForeignWlcAddress InetAddress,
cLMobilityExtForeignWlcMapIf SnmpAdminString,
cLMobilityExtForeignWlcMapRowStatus RowStatus
}
cLMobilityExtForeignWlcAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the IP address type of
the foreign controller,to which the interface
mapping is to be configured."
::= { cLMobilityExtForeignWlcMapEntry 1 }
cLMobilityExtForeignWlcAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the IP address of
the foreign controller,to which the interface
mapping is to be configured. The type of this address
is determined by the value of
cLMobilityExtForeignWlcAddressType."
::= { cLMobilityExtForeignWlcMapEntry 2 }
cLMobilityExtForeignWlcMapIf OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies name of the
interface/interface group which would be
used for the communication with the clients
connected to the foreign controller ."
::= { cLMobilityExtForeignWlcMapEntry 3 }
cLMobilityExtForeignWlcMapRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the status column for this row and used
to create and delete specific instances of rows
in this table."
::= { cLMobilityExtForeignWlcMapEntry 4 }
-- *******************************************************************
-- Mobility group info table (applicable to Mobility Controller)
-- *******************************************************************
cLMobilityExtGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF CLMobilityExtGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the information about the
mobility groups where clients from this MC can roam."
::= { ciscoLwappMobilityExtTableObjects 10 }
cLMobilityExtGroupEntry OBJECT-TYPE
SYNTAX CLMobilityExtGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents information about
one mobility group."
INDEX { cLMobilityExtGroupName }
::= { cLMobilityExtGroupTable 1 }
CLMobilityExtGroupEntry ::= SEQUENCE {
cLMobilityExtGroupName SnmpAdminString,
cLMobilityExtGroupMulticastAddressType InetAddressType,
cLMobilityExtGroupMulticastAddress InetAddress,
cLMobilityExtGroupRowStatus RowStatus
}
cLMobilityExtGroupName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the name for the mobility group."
::= { cLMobilityExtGroupEntry 1 }
cLMobilityExtGroupMulticastAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the multicast IP address type
for the mobility group."
::= { cLMobilityExtGroupEntry 2 }
cLMobilityExtGroupMulticastAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the multicast IP address for the
mobility group. The type of this address is determined
by the value of cLMobilityExtGroupMulticastAddressType."
::= { cLMobilityExtGroupEntry 3 }
cLMobilityExtGroupRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the status column for this row and used
to create and delete specific instances of rows
in this table."
::= { cLMobilityExtGroupEntry 4 }
-- *******************************************************************
-- Mobility Agent (MA) peer member table
-- *******************************************************************
cLMobilityExtMAPeerTable OBJECT-TYPE
SYNTAX SEQUENCE OF CLMobilityExtMAPeerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the information about the
802.11 LWAPP SPG peer members of this MA."
::= { ciscoLwappMobilityExtTableObjects 11 }
cLMobilityExtMAPeerEntry OBJECT-TYPE
SYNTAX CLMobilityExtMAPeerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents information about
one 802.11 LWAPP mobility SPG peer member of this MA."
INDEX {
cLMobilityExtMAPeerPrivateAddressType,
cLMobilityExtMAPeerPrivateAddress
}
::= { cLMobilityExtMAPeerTable 1 }
CLMobilityExtMAPeerEntry ::= SEQUENCE {
cLMobilityExtMAPeerPrivateAddressType InetAddressType,
cLMobilityExtMAPeerPrivateAddress InetAddress,
cLMobilityExtMAPeerPublicAddressType InetAddressType,
cLMobilityExtMAPeerPublicAddress InetAddress,
cLMobilityExtMAPeerLinkStatus INTEGER
}
cLMobilityExtMAPeerPrivateAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents this MA peer's private IP address type."
::= { cLMobilityExtMAPeerEntry 1 }
cLMobilityExtMAPeerPrivateAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents this MA peer's private IP address. The
type of this address is determined by the value of
cLMobilityExtMAPeerPrivateAddressType."
::= { cLMobilityExtMAPeerEntry 2 }
cLMobilityExtMAPeerPublicAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates this MA peer's public IP address type."
::= { cLMobilityExtMAPeerEntry 3 }
cLMobilityExtMAPeerPublicAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates this MA peer's public address. The
type of this address is determined by the value of
cLMobilityExtMAPeerPublicAddressType."
::= { cLMobilityExtMAPeerEntry 4 }
cLMobilityExtMAPeerLinkStatus OBJECT-TYPE
SYNTAX INTEGER {
notconfigured(0),
datapathdown(1),
controlpathdown(2),
bothdown(3),
up(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the control path and data path status
of the link between this MA and its peer MA in the same SPG.
notconfigured(0) - This means group member is not configured
for ICMP or EoIP pings.
datapathdown(1) - This means group member is not responding
to EoIP pings.
controlpathdown(2) - This means successive ICMP pings
to the group member have failed.
bothdown(3) - This means group member is not responding
to ICMP or EOIP pings.
up(4) - This means group member is responding to
both EOIP and ICMP pings."
::= { cLMobilityExtMAPeerEntry 5 }
-- *******************************************************************
-- Mobility Agent (MA) statistics reported by Mobility Controller
-- *******************************************************************
cLMobilityExtMCMAStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CLMobilityExtMCMAStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the information about the
MA statistics as reported by this MC."
::= { ciscoLwappMobilityExtTableObjects 12 }
cLMobilityExtMCMAStatisticsEntry OBJECT-TYPE
SYNTAX CLMobilityExtMCMAStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents information about
statistics of one MA that is associated with this MC."
INDEX {
cLMobilityExtMCMAPrivateAddressType,
cLMobilityExtMCMAPrivateAddress
}
::= { cLMobilityExtMCMAStatisticsTable 1 }
CLMobilityExtMCMAStatisticsEntry ::= SEQUENCE {
cLMobilityExtMCMAPrivateAddressType InetAddressType,
cLMobilityExtMCMAPrivateAddress InetAddress,
cLMobilityExtMCMAClientCount Unsigned32
}
cLMobilityExtMCMAPrivateAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the MA's private IP address type."
::= { cLMobilityExtMCMAStatisticsEntry 1 }
cLMobilityExtMCMAPrivateAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the MA's private IP address. The
type of this address is determined by the value of
cLMobilityExtMCMAPrivateAddressType."
::= { cLMobilityExtMCMAStatisticsEntry 2 }
cLMobilityExtMCMAClientCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the MA's client count."
::= { cLMobilityExtMCMAStatisticsEntry 3 }
-- *******************************************************************
-- Associated APs reported to Mobility Controller
-- *******************************************************************
cLMobilityExtMCAPTable OBJECT-TYPE
SYNTAX SEQUENCE OF CLMobilityExtMCAPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the information about the
APs that are reported by this MC, its peer MCs and its MAs."
::= { ciscoLwappMobilityExtTableObjects 13 }
cLMobilityExtMCAPEntry OBJECT-TYPE
SYNTAX CLMobilityExtMCAPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents information about AP that
is reported by this MC or its peer MC or its MA."
INDEX { cLMobilityExtMCAPMacAddress }
::= { cLMobilityExtMCAPTable 1 }
CLMobilityExtMCAPEntry ::= SEQUENCE {
cLMobilityExtMCAPMacAddress MacAddress,
cLMobilityExtMCAPName SnmpAdminString,
cLMobilityExtMCAPReportingDeviceAddressType InetAddressType,
cLMobilityExtMCAPReportingDeviceAddress InetAddress,
cLMobilityExtMCAPReportingDeviceType INTEGER
}
cLMobilityExtMCAPMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the reported AP's mac address."
::= { cLMobilityExtMCAPEntry 1 }
cLMobilityExtMCAPName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the reported AP's name."
::= { cLMobilityExtMCAPEntry 2 }
cLMobilityExtMCAPReportingDeviceAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object insdicates the reporting device's IP address type."
::= { cLMobilityExtMCAPEntry 3 }
cLMobilityExtMCAPReportingDeviceAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the reporting device's IP address. The
type of this address is determined by the value of
cLMobilityExtMCAPReportingDeviceAddressType."
::= { cLMobilityExtMCAPEntry 4 }
cLMobilityExtMCAPReportingDeviceType OBJECT-TYPE
SYNTAX INTEGER {
peerMC(0),
associatedMA(1),
localMC(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the reporting device's type:
this MC, or its peer MC or its MA.
peerMC(0) - The reporting device is peer Mobility Controller.
associatedMA(1) - The reporting device is Mobility Agent.
localMC(2) - The reporting device is local Mobility Controller."
::= { cLMobilityExtMCAPEntry 5 }
-- *******************************************************************
-- Associated APs count reported to Mobility Controller
-- *******************************************************************
cLMobilityExtMCAPCountTable OBJECT-TYPE
SYNTAX SEQUENCE OF CLMobilityExtMCAPCountEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the information about the total number
of APs that are reported by this MC, its peer MCs and its MAs."
::= { ciscoLwappMobilityExtTableObjects 14 }
cLMobilityExtMCAPCountEntry OBJECT-TYPE
SYNTAX CLMobilityExtMCAPCountEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents information on total number
of APs that is reported by this MC or its peer MC or its MA."
INDEX {
cLMobilityExtMCAPCountReportingDeviceAddressType,
cLMobilityExtMCAPCountReportingDeviceAddress
}
::= { cLMobilityExtMCAPCountTable 1 }
CLMobilityExtMCAPCountEntry ::= SEQUENCE {
cLMobilityExtMCAPCountReportingDeviceAddressType InetAddressType,
cLMobilityExtMCAPCountReportingDeviceAddress InetAddress,
cLMobilityExtMCAPCount Unsigned32
}
cLMobilityExtMCAPCountReportingDeviceAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the reporting device's IP address type."
::= { cLMobilityExtMCAPCountEntry 1 }
cLMobilityExtMCAPCountReportingDeviceAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the reporting device's IP address. The
type of this address is determined by the value of
cLMobilityExtMCAPCountReportingDeviceAddressType."
::= { cLMobilityExtMCAPCountEntry 2 }
cLMobilityExtMCAPCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of APs reported by
this device: this MC, or its peer MC or its MA."
::= { cLMobilityExtMCAPCountEntry 3 }
-- *******************************************************************
-- Mobility Agent (MA) global parameters
-- *******************************************************************
cLMobilityExtMAMCPublicAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the MC's public IP address type
for this MA."
::= { ciscoLwappMobilityExtMAGlobalObjects 1 }
cLMobilityExtMAMCPublicAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the MC's public IP address
for this MA. The type of this address is determined by
the value of cLMobilityExtMAMCPublicAddressType."
::= { ciscoLwappMobilityExtMAGlobalObjects 2 }
cLMobilityExtMAMCPrivateAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the MC's private IP address type
for this MA."
::= { ciscoLwappMobilityExtMAGlobalObjects 3 }
cLMobilityExtMAMCPrivateAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the MC's private IP address for
this MA. The type of this address is determined by the
value of cLMobilityExtMAMCPrivateAddressType."
::= { ciscoLwappMobilityExtMAGlobalObjects 4 }
cLMobilityExtMAToMCLinkStatus OBJECT-TYPE
SYNTAX INTEGER {
notconfigured(0),
datapathdown(1),
controlpathdown(2),
bothdown(3),
up(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the control path and data path status
of the link between this Mobility Agent(MA) and its mobility
controller.
notconfigured(0) - This indicates that link between MA and MC
is not configured for ICMP or EoIP pings.
datapathdown(1) - This indicates that link between MA and MC is
not responding to EoIP pings.
controlpathdown(2) - This indicates that link between MA and MC
successive ICMP pings to the group have
failed.
bothdown(3) - This indicates that link between MA and MC is not
responding to ICMP or EOIP pings.
up(4) - This indicates that link between MA and MC is
responding to both EOIP and ICMP pings."
::= { ciscoLwappMobilityExtMAGlobalObjects 5 }
cLMobilityExtMASpgPeerCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of peer members of this
mobility agent (MA)."
::= { ciscoLwappMobilityExtMAGlobalObjects 6 }
cLMobilityExtMASpgName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the Switch Peer Group (SPG) name where
this MA belongs."
::= { ciscoLwappMobilityExtMAGlobalObjects 7 }
cLMobilityExtMAOwnMulticastAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the multicast address type for
the own SPG group. SPG represents the switch peer group which
indicates the proximity group inside which the WiFi
client has most likelihood of roaming. Each device belongs
to a SPG which is identified by a SPG name and optionally
it could have a multicast ip address as well."
::= { ciscoLwappMobilityExtMAGlobalObjects 8 }
cLMobilityExtMAOwnMulticastAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the multicast address for the own
SPG group. The type of this address is determined by the
value of cLMobilityExtMAOwnMulticastAddressType."
::= { ciscoLwappMobilityExtMAGlobalObjects 9 }
cLMobilityExtMAKeepAliveCount OBJECT-TYPE
SYNTAX Unsigned32 (3..20)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the keep alive count.
If keep alive response is not received consecutively
for N (keep alive count) times, the mobility link is
declared as down."
DEFVAL { 3 }
::= { ciscoLwappMobilityExtMAGlobalObjects 10 }
cLMobilityExtMAKeepAliveInterval OBJECT-TYPE
SYNTAX Unsigned32 (1..30)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the keep alive interval.
Each MA sends periodically keep alive packet to other
mobility devices (MA or MC)."
DEFVAL { 10 }
::= { ciscoLwappMobilityExtMAGlobalObjects 11 }
cLMobilityExtMADscpValue OBJECT-TYPE
SYNTAX Dscp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the Differentiated Services Code Point
(DSCP) value. Here it is used for classifying and managing
mobility control packets and providing quality of service (QoS)
on IP networks."
DEFVAL { 0 }
::= { ciscoLwappMobilityExtMAGlobalObjects 12 }
-- *******************************************************************
-- Mobility Controller (MC) statistics
-- *******************************************************************
cLMobilityExtMCReceivedTotal OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number
of mobility control messages received by
the Mobility Controller."
::= { ciscoLwappMobilityExtMCStats 1 }
cLMobilityExtMCReceivedDrops OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number
of mobility control messages dropped by
Mobility Controller."
::= { ciscoLwappMobilityExtMCStats 2 }
cLMobilityExtMCProtocolReceiveErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of mobility control
error messages received by the Mobility Controller.The
counter represents the received packet errors as seen by the
controller deviating from the proprietary mobility protocol
which is instrumental in achieving the seamless WiFi client
roaming."
::= { ciscoLwappMobilityExtMCStats 3 }
cLMobilityExtMCProtocolTransmitErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of
mobility control error messages on transmit
side of Mobility Controller.The counter represents the
transmit packet errors as seen by the controller deviating
from the proprietary mobility protocol,which is instrumental
in achieving the seamless WiFi client roaming."
::= { ciscoLwappMobilityExtMCStats 4 }
cLMobilityExtMCStateErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the state transition
errors on Mobility Controller."
::= { ciscoLwappMobilityExtMCStats 5 }
cLMobilityExtMCProtocolRetransmitted OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of control
messages retransmitted by Mobility Controller."
::= { ciscoLwappMobilityExtMCStats 6 }
cLMobilityExtMCHandoffRequestsReceived OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the handoff requests
received by Mobility Controller."
::= { ciscoLwappMobilityExtMCStats 7 }
cLMobilityExtMCHandoffCompleteReceived OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the handoff completion
received by Mobility Controller."
::= { ciscoLwappMobilityExtMCStats 8 }
cLMobilityExtMCHandoffClientDeleteReceived OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of client
deletes received by Mobility Controller."
::= { ciscoLwappMobilityExtMCStats 9 }
cLMobilityExtMCHandoffRequestsTransmitted OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the handoff requests
transmitted by Mobility Controller."
::= { ciscoLwappMobilityExtMCStats 10 }
cLMobilityExtMCHandoffCompleteTransmitted OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the handoff completion
transmitted by Mobility Controller."
::= { ciscoLwappMobilityExtMCStats 11 }
cLMobilityExtMCHandoffClientDeleteTransmitted OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the nubmer of client deletes
transmitted by Mobility Controller."
::= { ciscoLwappMobilityExtMCStats 12 }
cLMobilityExtMCTotalClientCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total client count
on Mobility Controller."
::= { ciscoLwappMobilityExtMCStats 13 }
cLMobilityExtMCWgbCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the WGB(Work Group Bridge)
count on Mobility Controller."
::= { ciscoLwappMobilityExtMCStats 14 }
-- *************************************************************
-- extra trap variables definining here
-- *************************************************************
cLMobilityExtNotifyObjectSourceIPAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object represents the source address type."
::= { ciscoLwappMobilityExtNotifObjects 1 }
cLMobilityExtNotifyObjectSourceIPAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object represents the sourc address. The type
of this address is determined by the value of
cLMobilityExtNotifyObjectSourceIPAddressType."
::= { ciscoLwappMobilityExtNotifObjects 2 }
cLMobilityExtNotifyObjectSourceType OBJECT-TYPE
SYNTAX INTEGER {
unknown(0),
mobilityAgent(1),
mobilityController(2),
mobilityOracle(3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object represents mobility source type.
unknown(0) - The source of the messages is unknown.
mobilityAgent(1) - The source of the messages is Mobility
Agent.
mobilityController(2) - The source of the messages is Mobility
Controller.
mobilityOracle(3) - The source of the messages is Mobility
Oracle."
::= { ciscoLwappMobilityExtNotifObjects 3 }
cLMobilityExtNotifyObjectDestinationType OBJECT-TYPE
SYNTAX INTEGER {
unknown(0),
mobilityAgent(1),
mobilityController(2),
mobilityOracle(3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object represents the mobility destination type.
unknown(0) - The destination of the messages is unknown.
mobilityAgent(1) - The destination of the messages is Mobility
Agent.
mobilityController(2) - The destination of the messages is
Mobility Controller.
mobilityOracle(3) - The destination of the messages is Mobility
Oracle."
::= { ciscoLwappMobilityExtNotifObjects 4 }
-- *******************************************************************
-- Mobility Agent (MA) statistics
-- *******************************************************************
cLMobilityExtMAReceivedTotal OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number
of mobility control messages received by
the Mobility Agent."
::= { ciscoLwappMobilityExtMAStats 1 }
cLMobilityExtMAReceivedDrops OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number
of mobility control messages dropped by
Mobility Agent."
::= { ciscoLwappMobilityExtMAStats 2 }
cLMobilityExtMAProtocolReceiveErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number
of mobility control error messages received
by the Mobility Agent."
::= { ciscoLwappMobilityExtMAStats 3 }
cLMobilityExtMAProtocolTransmitErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number
of mobility control error messages on
transmit side of Mobility Agent."
::= { ciscoLwappMobilityExtMAStats 4 }
cLMobilityExtMAStateErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the state transition
errors on Mobility Agent."
::= { ciscoLwappMobilityExtMAStats 5 }
cLMobilityExtMAProtocolRetransmitted OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number
of control messages retransmitted by
Mobility Agent."
::= { ciscoLwappMobilityExtMAStats 6 }
cLMobilityExtMATotalClients OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total clients
connected to Mobility Agent."
::= { ciscoLwappMobilityExtMAStats 7 }
cLMobilityExtMALocalClients OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates local clients connected
to Mobility Agent."
::= { ciscoLwappMobilityExtMAStats 8 }
cLMobilityExtMAAnchoredClients OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the anchored clients
connected to Mobility Agent."
::= { ciscoLwappMobilityExtMAStats 9 }
cLMobilityExtMAForeignedClients OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the foreign clients
connected to Mobility Agent."
::= { ciscoLwappMobilityExtMAStats 10 }
cLMobilityExtMATotalInterGroupHandoffReceived OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total inter group
handoff received by Mobility Agent."
::= { ciscoLwappMobilityExtMAStats 11 }
cLMobilityExtMATotalIntraGroupHandoffReceived OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total intra group
handoffs received by Mobility Agent."
::= { ciscoLwappMobilityExtMAStats 12 }
cLMobilityExtMATotalHandoffEndRequestReceived OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total handoff end
requests received by Mobility Agent."
::= { ciscoLwappMobilityExtMAStats 13 }
cLMobilityExtMATotalInterGroupHandoffSent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total inter group
handoffs sent by Mobility Agent."
::= { ciscoLwappMobilityExtMAStats 14 }
cLMobilityExtMATotalIntraGroupHandoffSent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total intra group
handoffs sent by Mobility Agent."
::= { ciscoLwappMobilityExtMAStats 15 }
cLMobilityExtReceivedTotal OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total received ."
::= { ciscoLwappMobilityExtGlobalStats 1 }
cLMobilityExtTransmitTotal OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total transmitted."
::= { ciscoLwappMobilityExtGlobalStats 2 }
cLMobilityExtTotalResourceAllocation OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total resources allocated ."
::= { ciscoLwappMobilityExtGlobalStats 3 }
cLMobilityExtTotalResourceFree OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total resources free ."
::= { ciscoLwappMobilityExtGlobalStats 4 }
-- *******************************************************************
-- * NOTIFICATIONS
-- *******************************************************************
ciscoLwappMobilityControlPathDown NOTIFICATION-TYPE
OBJECTS {
cLMobilityExtNotifyObjectSourceIPAddressType,
cLMobilityExtNotifyObjectSourceIPAddress,
cLMobilityExtNotifyObjectSourceType,
cLMobilityExtNotifyObjectDestinationType
}
STATUS current
DESCRIPTION
"This notification is sent by the agent when
a mobility control path goes down."
::= { ciscoLwappMobilityExtMIBNotifs 1 }
ciscoLwappMobilityControlPathUp NOTIFICATION-TYPE
OBJECTS {
cLMobilityExtNotifyObjectSourceIPAddressType,
cLMobilityExtNotifyObjectSourceIPAddress,
cLMobilityExtNotifyObjectSourceType,
cLMobilityExtNotifyObjectDestinationType
}
STATUS current
DESCRIPTION
"This notification is sent by the agent when
a mobility control path goes up."
::= { ciscoLwappMobilityExtMIBNotifs 2 }
ciscoLwappMobilityDataPathDown NOTIFICATION-TYPE
OBJECTS {
cLMobilityExtNotifyObjectSourceIPAddressType,
cLMobilityExtNotifyObjectSourceIPAddress,
cLMobilityExtNotifyObjectSourceType,
cLMobilityExtNotifyObjectDestinationType
}
STATUS current
DESCRIPTION
"This notification is sent by the agent when
a mobility data path goes down."
::= { ciscoLwappMobilityExtMIBNotifs 3 }
ciscoLwappMobilityDataPathUp NOTIFICATION-TYPE
OBJECTS {
cLMobilityExtNotifyObjectSourceIPAddressType,
cLMobilityExtNotifyObjectSourceIPAddress,
cLMobilityExtNotifyObjectSourceType,
cLMobilityExtNotifyObjectDestinationType
}
STATUS current
DESCRIPTION
"This notification is sent by the agent when
a mobility data path goes up."
::= { ciscoLwappMobilityExtMIBNotifs 4 }
-- *******************************************************************
-- * Compliance statements
-- *******************************************************************
ciscoLwappMobilityExtMIBCompliances OBJECT IDENTIFIER
::= { ciscoLwappMobilityExtMIBConform 1 }
ciscoLwappMobilityExtMIBGroups OBJECT IDENTIFIER
::= { ciscoLwappMobilityExtMIBConform 2 }
ciscoLwappMobilityExtMIBCompliance MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for the SNMP entities that
implement the ciscoLwappMobilityExtMIB module."
MODULE -- this module
MANDATORY-GROUPS {
cLMobilityExtConfigGroup,
ciscoLwappMobilityExtNotifyObjectsGroup,
ciscoLwappMobilityExtNotifsGroup
}
::= { ciscoLwappMobilityExtMIBCompliances 1 }
ciscoLwappMobilityExtMIBComplianceRev1 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for the SNMP entities that
implement the ciscoLwappMobilityExtMIB module."
MODULE -- this module
MANDATORY-GROUPS {
cLMobilityExtConfigGroupRev1,
ciscoLwappMobilityExtNotifyObjectsGroup,
ciscoLwappMobilityExtNotifsGroup
}
::= { ciscoLwappMobilityExtMIBCompliances 2 }
ciscoLwappMobilityExtMIBComplianceRev2 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for the SNMP entities that
implement the ciscoLwappMobilityExtMIB module."
MODULE -- this module
MANDATORY-GROUPS {
cLMobilityExtConfigGroupRev1,
cLMobilityExtMAStatsConfigGroup,
ciscoLwappMobilityExtNotifyObjectsGroup,
ciscoLwappMobilityExtNotifsGroup
}
::= { ciscoLwappMobilityExtMIBCompliances 3 }
ciscoLwappMobilityExtMIBComplianceRev3 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the SNMP entities that
implement the ciscoLwappMobilityExtMIB module."
MODULE -- this module
MANDATORY-GROUPS {
cLMobilityExtConfigGroupRev1,
cLMobilityExtMAStatsConfigGroup,
ciscoLwappMobilityExtNotifyObjectsGroup,
ciscoLwappMobilityExtNotifsGroup,
ciscoLwappMobilityExtMCMAStatsGroup,
cLMobilityExtAnchorConfigGroup
}
::= { ciscoLwappMobilityExtMIBCompliances 4 }
-- *******************************************************************
-- * Units of conformance
-- *******************************************************************
cLMobilityExtConfigGroup OBJECT-GROUP
OBJECTS {
cLMobilityExtMCMOEnableStatus,
cLMobilityExtMCMOAdminEnableStatus,
cLMobilityExtMCEnableStatus,
cLMobilityExtMCAdminEnableStatus,
cLMobilityExtMCMulticastMode,
cLMobilityExtMCKeepAliveCount,
cLMobilityExtMCKeepAliveInterval,
cLMobilityExtMCDscpValue,
cLMobilityExtMCMOPublicAddressType,
cLMobilityExtMCMOPublicAddress,
cLMobilityExtMCApCountLicensesInUse,
cLMobilityExtMCOwnGroupMulticastAddressType,
cLMobilityExtMCOwnGroupMulticastAddress,
cLMobilityExtMCMobilityGroupName,
cLMobilityExtMCMONumberOfClients,
cLMobilityExtMCNumberOfMCs,
cLMobilityExtMCTotalNumberOfReportedAPs,
cLMobilityExtMCNumberOfReportedAPsInSubDomain,
cLMobilityExtMgrAddressType,
cLMobilityExtMgrAddress,
cLMobilityExtMgrNetmaskType,
cLMobilityExtMgrNetmask,
cLMobilityExtMgrMacAddress,
cLMobilityExtMgrVlanId,
cLMobilityExtMgrName,
cLMobilityExtMgrInterfaceType,
cLMobilityExtNewArchitectureEnableStatus,
cLMobilityExtNewArchitectureAdminEnableStatus,
cLMobilityExtMCClientAnchorMCPrivateAddressType,
cLMobilityExtMCClientAnchorMCPrivateAddress,
cLMobilityExtMCClientAnchorMCGroupId,
cLMobilityExtMCClientAssociatedMCGroupId,
cLMobilityExtMCClientAssociatedMAAddressType,
cLMobilityExtMCClientAssociatedMAAddress,
cLMobilityExtMCClientAnchorMAAddressType,
cLMobilityExtMCClientAnchorMAAddress,
cLMobilityExtSpgGroupId,
cLMobilityExtSpgBridgeDomainId,
cLMobilityExtSpgMemberCount,
cLMobilityExtSpgMulticastAddressType,
cLMobilityExtSpgMulticastAddress,
cLMobilityExtSpgMulticastMode,
cLMobilityExtSpgRowStatus,
cLMobilityExtSpgMemberStatus,
cLMobilityExtSpgMemberPublicAddressType,
cLMobilityExtSpgMemberPublicAddress,
cLMobilityExtSpgMemberRowStatus,
cLMobilityExtGroupMemberGroupName,
cLMobilityExtGroupMemberPublicAddressType,
cLMobilityExtGroupMemberPublicAddress,
cLMobilityExtGroupMemberStatus,
cLMobilityExtGroupMemberMacAddress,
cLMobilityExtGroupMemberMulticastAddressType,
cLMobilityExtGroupMemberMulticastAddress,
cLMobilityExtGroupMemberHashKey,
cLMobilityExtGroupMemberRowStatus,
cLMobilityExtAnchorStatus,
cLMobilityExtAnchorRowStatus,
cLMobilityExtMOMCMacAddress,
cLMobilityExtMOMCLinkStatus,
cLMobilityExtMOMCClientCount,
cLMobilityExtMCClientAssociatedMCAddressType,
cLMobilityExtMCClientAssociatedMCAddress,
cLMobilityExtMCClientAddressType,
cLMobilityExtMCClientAddress,
cLMobilityExtMCClientState,
cLMobilityExtMCClientAssociationTime,
cLMobilityExtMCClientLocalClient,
cLMobilityExtMOClientAnchorMCPublicAddressType,
cLMobilityExtMOClientAnchorMCPublicAddress,
cLMobilityExtMOClientAnchorMCPrivateAddressType,
cLMobilityExtMOClientAnchorMCPrivateAddress,
cLMobilityExtMOClientAssociatedMCPublicAddressType,
cLMobilityExtMOClientAssociatedMCPublicAddress,
cLMobilityExtMOClientAssociatedMCPrivateAddressType,
cLMobilityExtMOClientAssociatedMCPrivateAddress,
cLMobilityExtMOClientAddressType,
cLMobilityExtMOClientAddress,
cLMobilityExtMOClientLocalTime,
cLMobilityExtMOClientAssociationTime,
cLMobilityExtApMgrAddressType,
cLMobilityExtApMgrAddress,
cLMobilityExtApMgrNetmaskType,
cLMobilityExtApMgrNetmask,
cLMobilityExtApMgrMacAddress,
cLMobilityExtApMgrVlanId,
cLMobilityExtApMgrInterfaceType,
cLMobilityExtApMgrRowStatus,
cLMobilityExtForeignWlcMapIf,
cLMobilityExtForeignWlcMapRowStatus,
cLMobilityExtGroupMulticastAddressType,
cLMobilityExtGroupMulticastAddress,
cLMobilityExtGroupRowStatus,
cLMobilityExtMAPeerPublicAddressType,
cLMobilityExtMAPeerPublicAddress,
cLMobilityExtMAPeerLinkStatus,
cLMobilityExtMCMAClientCount,
cLMobilityExtMCAPName,
cLMobilityExtMCAPReportingDeviceAddressType,
cLMobilityExtMCAPReportingDeviceAddress,
cLMobilityExtMCAPReportingDeviceType,
cLMobilityExtMCAPCount,
cLMobilityExtMAMCPublicAddressType,
cLMobilityExtMAMCPublicAddress,
cLMobilityExtMAMCPrivateAddressType,
cLMobilityExtMAMCPrivateAddress,
cLMobilityExtMAToMCLinkStatus,
cLMobilityExtMASpgPeerCount,
cLMobilityExtMASpgName,
cLMobilityExtMAOwnMulticastAddressType,
cLMobilityExtMAOwnMulticastAddress,
cLMobilityExtMAKeepAliveCount,
cLMobilityExtMAKeepAliveInterval,
cLMobilityExtMADscpValue,
cLMobilityExtMCReceivedTotal,
cLMobilityExtMCReceivedDrops,
cLMobilityExtMCProtocolReceiveErrors,
cLMobilityExtMCProtocolTransmitErrors,
cLMobilityExtMCStateErrors,
cLMobilityExtMCProtocolRetransmitted,
cLMobilityExtMCHandoffRequestsReceived,
cLMobilityExtMCHandoffCompleteReceived,
cLMobilityExtMCHandoffClientDeleteReceived,
cLMobilityExtMCHandoffRequestsTransmitted,
cLMobilityExtMCHandoffCompleteTransmitted,
cLMobilityExtMCHandoffClientDeleteTransmitted,
cLMobilityExtMCTotalClientCount,
cLMobilityExtMCWgbCount
}
STATUS deprecated
DESCRIPTION
"This is a collection of objects which can
be configured to control Mobility parameters.
cLMobilityExtConfigGroup object is superseded by
cLMobilityExtConfigGroupRev1."
::= { ciscoLwappMobilityExtMIBGroups 1 }
ciscoLwappMobilityExtNotifyObjectsGroup OBJECT-GROUP
OBJECTS {
cLMobilityExtNotifyObjectSourceIPAddressType,
cLMobilityExtNotifyObjectSourceIPAddress,
cLMobilityExtNotifyObjectSourceType,
cLMobilityExtNotifyObjectDestinationType
}
STATUS current
DESCRIPTION
"This collection of objects provide the information
about mobility trap configuration and trap definition.
These objects are defined under
cwciscoLwappMobilityExtNotifObjects."
::= { ciscoLwappMobilityExtMIBGroups 2 }
ciscoLwappMobilityExtNotifsGroup NOTIFICATION-GROUP
NOTIFICATIONS {
ciscoLwappMobilityControlPathDown,
ciscoLwappMobilityControlPathUp,
ciscoLwappMobilityDataPathDown,
ciscoLwappMobilityDataPathUp
}
STATUS current
DESCRIPTION
"This collection of objects provides the information
about the notifications sent by the agent related
to mobility."
::= { ciscoLwappMobilityExtMIBGroups 3 }
cLMobilityExtConfigGroupRev1 OBJECT-GROUP
OBJECTS {
cLMobilityExtMCMOEnableStatus,
cLMobilityExtMCMOAdminEnableStatus,
cLMobilityExtMCEnableStatus,
cLMobilityExtMCAdminEnableStatus,
cLMobilityExtMCMulticastMode,
cLMobilityExtMCKeepAliveCount,
cLMobilityExtMCKeepAliveInterval,
cLMobilityExtMCDscpValue,
cLMobilityExtMCMOPublicAddressType,
cLMobilityExtMCMOPublicAddress,
cLMobilityExtMCApCountLicensesInUse,
cLMobilityExtMCOwnGroupMulticastAddressType,
cLMobilityExtMCOwnGroupMulticastAddress,
cLMobilityExtMCMobilityGroupName,
cLMobilityExtMCMONumberOfClients,
cLMobilityExtMCNumberOfMCs,
cLMobilityExtMCTotalNumberOfReportedAPs,
cLMobilityExtMCNumberOfReportedAPsInSubDomain,
cLMobilityExtMgrAddressType,
cLMobilityExtMgrAddress,
cLMobilityExtMgrNetmaskType,
cLMobilityExtMgrNetmask,
cLMobilityExtMgrMacAddress,
cLMobilityExtMgrVlanId,
cLMobilityExtMgrName,
cLMobilityExtMgrInterfaceType,
cLMobilityExtNewArchitectureEnableStatus,
cLMobilityExtNewArchitectureAdminEnableStatus,
cLMobilityExtMCClientAnchorMCPrivateAddressType,
cLMobilityExtMCClientAnchorMCPrivateAddress,
cLMobilityExtMCClientAnchorMCGroupId,
cLMobilityExtMCClientAssociatedMCGroupId,
cLMobilityExtMCClientAssociatedMAAddressType,
cLMobilityExtMCClientAssociatedMAAddress,
cLMobilityExtMCClientAnchorMAAddressType,
cLMobilityExtMCClientAnchorMAAddress,
cLMobilityExtSpgGroupId,
cLMobilityExtSpgBridgeDomainId,
cLMobilityExtSpgMemberCount,
cLMobilityExtSpgMulticastAddressType,
cLMobilityExtSpgMulticastAddress,
cLMobilityExtSpgMulticastMode,
cLMobilityExtSpgRowStatus,
cLMobilityExtSpgMemberStatus,
cLMobilityExtSpgMemberPublicAddressType,
cLMobilityExtSpgMemberPublicAddress,
cLMobilityExtSpgMemberRowStatus,
cLMobilityExtGroupMemberGroupName,
cLMobilityExtGroupMemberPublicAddressType,
cLMobilityExtGroupMemberPublicAddress,
cLMobilityExtGroupMemberStatus,
cLMobilityExtGroupMemberMacAddress,
cLMobilityExtGroupMemberMulticastAddressType,
cLMobilityExtGroupMemberMulticastAddress,
cLMobilityExtGroupMemberHashKey,
cLMobilityExtGroupMemberRowStatus,
cLMobilityExtAnchorStatus,
cLMobilityExtAnchorRowStatus,
cLMobilityExtMOMCMacAddress,
cLMobilityExtMOMCLinkStatus,
cLMobilityExtMOMCClientCount,
cLMobilityExtMCClientAssociatedMCAddressType,
cLMobilityExtMCClientAssociatedMCAddress,
cLMobilityExtMCClientAddressType,
cLMobilityExtMCClientAddress,
cLMobilityExtMCClientState,
cLMobilityExtMCClientLocalClient,
cLMobilityExtMOClientAnchorMCPublicAddressType,
cLMobilityExtMOClientAnchorMCPublicAddress,
cLMobilityExtMOClientAnchorMCPrivateAddressType,
cLMobilityExtMOClientAnchorMCPrivateAddress,
cLMobilityExtMOClientAssociatedMCPublicAddressType,
cLMobilityExtMOClientAssociatedMCPublicAddress,
cLMobilityExtMOClientAssociatedMCPrivateAddressType,
cLMobilityExtMOClientAssociatedMCPrivateAddress,
cLMobilityExtMOClientAddressType,
cLMobilityExtMOClientAddress,
cLMobilityExtMOClientLocalTime,
cLMobilityExtApMgrAddressType,
cLMobilityExtApMgrAddress,
cLMobilityExtApMgrNetmaskType,
cLMobilityExtApMgrNetmask,
cLMobilityExtApMgrMacAddress,
cLMobilityExtApMgrVlanId,
cLMobilityExtApMgrInterfaceType,
cLMobilityExtApMgrRowStatus,
cLMobilityExtForeignWlcMapIf,
cLMobilityExtForeignWlcMapRowStatus,
cLMobilityExtGroupMulticastAddressType,
cLMobilityExtGroupMulticastAddress,
cLMobilityExtGroupRowStatus,
cLMobilityExtMAPeerPublicAddressType,
cLMobilityExtMAPeerPublicAddress,
cLMobilityExtMAPeerLinkStatus,
cLMobilityExtMCMAClientCount,
cLMobilityExtMCAPName,
cLMobilityExtMCAPReportingDeviceAddressType,
cLMobilityExtMCAPReportingDeviceAddress,
cLMobilityExtMCAPReportingDeviceType,
cLMobilityExtMCAPCount,
cLMobilityExtMAMCPublicAddressType,
cLMobilityExtMAMCPublicAddress,
cLMobilityExtMAMCPrivateAddressType,
cLMobilityExtMAMCPrivateAddress,
cLMobilityExtMAToMCLinkStatus,
cLMobilityExtMASpgPeerCount,
cLMobilityExtMASpgName,
cLMobilityExtMAOwnMulticastAddressType,
cLMobilityExtMAOwnMulticastAddress,
cLMobilityExtMAKeepAliveCount,
cLMobilityExtMAKeepAliveInterval,
cLMobilityExtMADscpValue,
cLMobilityExtMCReceivedTotal,
cLMobilityExtMCReceivedDrops,
cLMobilityExtMCProtocolReceiveErrors,
cLMobilityExtMCProtocolTransmitErrors,
cLMobilityExtMCStateErrors,
cLMobilityExtMCProtocolRetransmitted,
cLMobilityExtMCHandoffRequestsReceived,
cLMobilityExtMCHandoffCompleteReceived,
cLMobilityExtMCHandoffClientDeleteReceived,
cLMobilityExtMCHandoffRequestsTransmitted,
cLMobilityExtMCHandoffCompleteTransmitted,
cLMobilityExtMCHandoffClientDeleteTransmitted,
cLMobilityExtMCTotalClientCount,
cLMobilityExtMCWgbCount,
cLMobilityExtMOClientUpTime,
cLMobilityExtMCClientUpTime
}
STATUS current
DESCRIPTION
"This is a collection of objects which can
be configured to control mobility parameters."
::= { ciscoLwappMobilityExtMIBGroups 4 }
cLMobilityExtMAStatsConfigGroup OBJECT-GROUP
OBJECTS {
cLMobilityExtMAReceivedTotal,
cLMobilityExtMAReceivedDrops,
cLMobilityExtMAProtocolReceiveErrors,
cLMobilityExtMAProtocolTransmitErrors,
cLMobilityExtMAStateErrors,
cLMobilityExtMAProtocolRetransmitted,
cLMobilityExtMATotalClients,
cLMobilityExtMALocalClients,
cLMobilityExtMAAnchoredClients,
cLMobilityExtMAForeignedClients,
cLMobilityExtMATotalInterGroupHandoffReceived,
cLMobilityExtMATotalIntraGroupHandoffReceived,
cLMobilityExtMATotalHandoffEndRequestReceived,
cLMobilityExtMATotalInterGroupHandoffSent,
cLMobilityExtMATotalIntraGroupHandoffSent,
cLMobilityExtReceivedTotal,
cLMobilityExtTransmitTotal,
cLMobilityExtTotalResourceAllocation,
cLMobilityExtTotalResourceFree
}
STATUS current
DESCRIPTION
"This is collection of MA stat objects which
can be configure to control mobility parameters."
::= { ciscoLwappMobilityExtMIBGroups 5 }
ciscoLwappMobilityExtMCMAStatsGroup OBJECT-GROUP
OBJECTS { cLMobilityExtEncryptionStatus }
STATUS current
DESCRIPTION
"This object represents the current status of the
encryption in the mobilty tunnel."
::= { ciscoLwappMobilityExtMIBGroups 6 }
cLMobilityExtAnchorConfigGroup OBJECT-GROUP
OBJECTS { cLMobilityExtAnchorPriority }
STATUS current
DESCRIPTION
"This object specifies the priority configured for
an Anchor WLC mapped on a WLAN."
::= { ciscoLwappMobilityExtMIBGroups 7 }
END
|