1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
|
CISCOSB-AAA DEFINITIONS ::= BEGIN
-- Title: CISCOSB AAA Private Extension
-- Version: 7.46
-- Date: 01-Mar-2007
-- 03-Jun-2003 Changed upper bound of rlRadiusGlobalDefaultDeadtime to 2000
-- 31-Jul-2003 A new field rlRadiusServerUsage was added to rlRadiusServerEntry
-- 31-Jul-2003 Group rlAAAEap was added
-- 22-Sep-2003 Group rlTacacs was added
-- 11-Nov-2004 Scalar rlAAAAuditingEnable
-- 13-Dec-2004 MIBs for TIC support
-- a. New fields were added:
-- rlAAALineLockedState
-- rlAAALineConsFailedLogins
-- rlAAALinePasswordValidTime
-- rlAAALinePasswordExpieryDate
-- rlAAALocalLockedState
-- rlAAALocalConsFailedLogins
-- rlAAALocalPasswordValidTime
-- rlAAALocalPasswordExpieryDate
-- b. New scalars
-- rlAAAMinPasswordLength
-- rlAAAPasswordHistSize
-- rlAAAPasswordHistHoldTime
-- rlAAASuccLoginWriteToFile
-- rlAAAUnlockUserName
-- rlAAAUnlockSystemPassword
-- c. New tables
-- rlAAALocalLoginHistTable
-- rlAAALinePassLoginHistTable
-- rlAAASystemLoginHistTable
-- rlAAASysPassStatTable
-- rlAAALockedLineTable
-- 07-Jul-2005 Added field rlAAALocalLoginMrid
-- 30-Oct-2005 Added new table rlAAASystemPasswordVerificationAndSettingTable
-- 14-Mar-2006 NimrodS Added fields rlAAAUserLoginDate And rlAAAUserLoginDurationMS
-- to rlAAAUserTable
-- 04-Jun-2006 Added new scalars
-- rlAAAAccountingMngMethod
-- rlAAAAccountingDot1xMethod
--
-- 11-Jan-2007 Added Inet support
-- rlAAAUserTable
-- rlAAALocalLoginHistTable
-- rlAAALinePassLoginHistTable
-- rlAAASystemLoginHistTable
-- 10-Apr-2007 AlexeyK Added IPv6 support
-- rlRadiusServerInetTable
-- rlRadiusGlobalIPv6DefaultSource
--
-- 09-Aug-2009 vkuk : password complexity and local user password global aging
-- Added:
-- rlAAAPasswordComplexityEnabled
-- rlAAAPasswordComplexityMinCharClasses
-- rlAAAPasswordComplexityNotOldPasswordEnabled
-- rlAAAPasswordComplexityCharRepeat
-- rlAAAPasswordComplexityNotUserNameEnabled
-- rlAAAPasswordComplexityNotManufacturerEnabled
-- rlAAAPasswordGlobalAgingTime
-- rlAAALocalUserPasswordVerificationAndSettingTable
-- Changed rlAAALocalUserTable - added field :
-- rlAAALocalPasswordCreationDate
-- 21-Jun-2010 vkuk : system password global aging
-- rlAAACreationDateSystemPasswordLevel15
IMPORTS
switch001, rlRadius,rlAAAEap FROM CISCOSB-MIB
Unsigned32, IpAddress,Counter32,
MODULE-IDENTITY, OBJECT-TYPE FROM SNMPv2-SMI
TruthValue, RowStatus, DisplayString,
DateAndTime, TimeStamp,
TEXTUAL-CONVENTION FROM SNMPv2-TC
InetAddressType,InetAddress,InetAddressIPv6 FROM INET-ADDRESS-MIB; -- RFC2851
rlAAA MODULE-IDENTITY
LAST-UPDATED "202105190000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Postal: 170 West Tasman Drive
San Jose , CA 95134-1706
USA
Website: Cisco Small Business Support Community <http://www.cisco.com/go/smallbizsupport>"
DESCRIPTION
"The private MIB module definition for Authentication, Authorization and Accounting
in CISCOSB devices."
REVISION "202105190000Z"
DESCRIPTION
"Added this MODULE-IDENTITY clause."
::= { switch001 79 }
RlAAAMethodtype ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Method list type."
SYNTAX INTEGER {
rlAAAMethodDeny(0),
rlAAAMethodLinePassword(1),
rlAAAMethodSystemPassword(2),
rlAAAMethodLocalUserTable(3),
rlAAAMethodRadius(4),
rlAAAMethodTacacs(5),
rlAAAMethodSucceed(6)
}
RlAAAServiceType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Line service type.rlAAAServiceTypeDontCare must be the maximum value in the enum."
SYNTAX INTEGER {
rlAAAServiceTypeDontCare(0),
rlAAAServiceTypeTelnet(1),
rlAAAServiceTypeHttp(2),
rlAAAServiceTypeSsh(3),
rlAAAServiceTypeHttps(4),
rlAAAServiceTypeSnmp(5),
rlAAAServiceTypeSshPubkey(6),
rlAAAServiceTypeDebug(7)
}
RlAAALinePortType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Line physical port type,the
rlAAAPortDontCare must be the maximum value in the enum."
SYNTAX INTEGER {
rlAAAPortDontCare(0),
rlAAAPortNetwork(1),
rlAAAPortConsole(2)
}
RlAAAHashType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Specifies which hash method type was used to create
the hashed password of the local user.
rlAAAHashTypeSuperHash signifies that the hashing type
is SHA1 nested within the default hash method (a composition function).
i.e default(sha1(password))."
SYNTAX INTEGER {
rlAAAHashTypeMD5(0),
rlAAAHashTypeSHA1(1),
rlAAAHashTypeSHA512(2),
rlAAAHashTypeSuperHash(3)
}
rlAAAMibVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MIB's version, the current version is 3. The difference in rlAAACreationDateSystemPasswordLevel15 and
rlAAALocalUserEntry."
::= { rlAAA 1 }
rlAAARetries OBJECT-TYPE
SYNTAX INTEGER (1..5)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Determines the number of retries for each method
(Radius, local passwords, local users table and
tacacs)."
::= { rlAAA 2 }
rlAAARadiusEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifies whether AAA will use Radius. When to use
Radius exactly depends on its position in the
methods list. "
::= { rlAAA 3 }
rlAAATacacsEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifies whether AAA will use Tacacs. When to use
Tacacs exactly depends on its position in the
methods list."
::= { rlAAA 4 }
rlAAALocalUserEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifies whether AAA will use the local users table.
When to use the table exactly depends on its
position in the methods list. "
::= { rlAAA 5 }
rlAAASystemPasswordEnabled
OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifies whether AAA will use the system password.
When to use the passwords exactly depends on its
position in the methods list. "
::= { rlAAA 6 }
rlAAALinePasswordEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifies whether AAA will use the line password.
When to use the passwords exactly depends on its
position in the methods list. "
::= { rlAAA 7 }
rlAAAAlwaysSuccessEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifies whether AAA will use the always success method.
When to use that method exactly depends on its
position in the methods list. "
::= { rlAAA 8 }
--
-- suppoted methods
--
rlAAARadiusSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This mib show whether Radius is supported in AAA. If the
value is false Radius will not be used as an
authentication and accounting method. If the value
is true Radius will be used by AAA for authentication and
accounting if the the AAA was configured to do so
(by setting the appropriate mibs)."
::= { rlAAA 9 }
rlAAATacacsSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This mib show whether Tacacs+ is supported in AAA. If the
value is false Tacacs+ will not be used as an
authentication and accounting method. If the value
is true Tacacs+ will be used by AAA for authentication and
accounting if the the AAA was configured to do so
(by setting the appropriate mibs)."
::= { rlAAA 10 }
rlAAALocalUserSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This mib show whether the local users db is supported in
AAA.If the value is false the local users db will not be
used as an authentication and accounting method. If the
value is true the local users db will be used by AAA for
authentication and accounting method if the the AAA was
configured to do so (by setting the appropriate mibs)."
::= { rlAAA 11 }
rlAAASystemPasswordSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This mib show whether system password is supported in AAA.
If the value is false system password will not be used as
an authentication and accounting method. If the value is
true the system password will be used by AAA for
authentication and accounting method if the the AAA was
configured to do so (by setting the appropriate mibs)."
::= { rlAAA 12 }
rlAAALinePasswordSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This mib show whether line password is supported in AAA.
If the value is false line password will not be used as an
authentication and accounting method. If the value is true
the line password will be used by AAA for authentication and
accounting method if the the AAA was configured
to do so (by setting the appropriate mibs)."
::= { rlAAA 13 }
rlAAALineAlwaysSuccessSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This mib show whether line always success method is
supported in AAA.If the value is false always success
method will not be used as an authentication and
accounting method. If the value is true the always
success method will be used by AAA for authentication and
accounting method if the the AAA was configured
to do so (by setting the appropriate mibs)."
::= { rlAAA 14 }
--
-- method list table
--
rlAAAMethodListTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlAAAMethodListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table specifies all methods list per method name."
::= { rlAAA 15 }
rlAAAMethodListEntry OBJECT-TYPE
SYNTAX RlAAAMethodListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The row definition for this table."
INDEX { rlAAAMethodListName}
::= { rlAAAMethodListTable 1 }
RlAAAMethodListEntry ::= SEQUENCE {
rlAAAMethodListName DisplayString,
rlAAAMethodType1 RlAAAMethodtype,
rlAAAMethodType2 RlAAAMethodtype,
rlAAAMethodType3 RlAAAMethodtype,
rlAAAMethodType4 RlAAAMethodtype,
rlAAAMethodType5 RlAAAMethodtype,
rlAAAMethodType6 RlAAAMethodtype,
rlAAAMethodType7 RlAAAMethodtype,
rlAAAMethodListStatus RowStatus,
rlAAAAuthorizeEnable INTEGER
}
rlAAAMethodListName OBJECT-TYPE
SYNTAX DisplayString (SIZE(3..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Line Method List Name"
::= { rlAAAMethodListEntry 1 }
rlAAAMethodType1 OBJECT-TYPE
SYNTAX RlAAAMethodtype
MAX-ACCESS read-write
STATUS current
DESCRIPTION " first method type that will be used in the method
linked list."
::= { rlAAAMethodListEntry 2 }
rlAAAMethodType2 OBJECT-TYPE
SYNTAX RlAAAMethodtype
MAX-ACCESS read-write
STATUS current
DESCRIPTION " second method type that will be used in the method
linked list."
::= { rlAAAMethodListEntry 3 }
rlAAAMethodType3 OBJECT-TYPE
SYNTAX RlAAAMethodtype
MAX-ACCESS read-write
STATUS current
DESCRIPTION "3th method type that will be used in the method
linked list."
::= { rlAAAMethodListEntry 4 }
rlAAAMethodType4 OBJECT-TYPE
SYNTAX RlAAAMethodtype
MAX-ACCESS read-write
STATUS current
DESCRIPTION " 4th method type that will be used in the method
linked list."
::= { rlAAAMethodListEntry 5 }
rlAAAMethodType5 OBJECT-TYPE
SYNTAX RlAAAMethodtype
MAX-ACCESS read-write
STATUS current
DESCRIPTION "5th method type that will be used in the method
linked list."
::= { rlAAAMethodListEntry 6 }
rlAAAMethodType6 OBJECT-TYPE
SYNTAX RlAAAMethodtype
MAX-ACCESS read-write
STATUS current
DESCRIPTION " 6th method type that will be used in the method
linked list."
::= { rlAAAMethodListEntry 7 }
rlAAAMethodType7 OBJECT-TYPE
SYNTAX RlAAAMethodtype
MAX-ACCESS read-write
STATUS current
DESCRIPTION " 7th method type that will be used in the method
linked list."
::= { rlAAAMethodListEntry 8 }
rlAAAMethodListStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION "method list status can be destroy or createAndGo"
::= { rlAAAMethodListEntry 9 }
rlAAAAuthorizeEnable OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "flag that indicates whether authorizatoin is enabled"
::= { rlAAAMethodListEntry 10 }
--
-- Line table
--
--- AAA MIBs for TIC support
--- Added read only fields to show if a user is locked,
--- password expiry date and number of consecutive failed logins.
--- New read write field to set the expiry time for a password.
--
-- Line table
--
rlAAALineTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlAAALineEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table specifies all lines, their passwords and their
authorizations level .the table ordered lexicography by
the line name. when a new line is being authenticate the
search in line table is from the first entry in table
till it find the first entry that fit application input
line parameters ."
::= { rlAAA 16 }
rlAAALineEntry OBJECT-TYPE
SYNTAX RlAAALineEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The row definition for this table."
INDEX { rlAAALinePortType,
rlAAAIfIndex,
rlAAAServiceType}
::= { rlAAALineTable 1 }
RlAAALineEntry ::= SEQUENCE {
rlAAALinePortType RlAAALinePortType,
rlAAAIfIndex Unsigned32,
rlAAAServiceType RlAAAServiceType,
rlAAALineMethodListNameLevel1 DisplayString,
rlAAALineMethodListNameLevel2 DisplayString,
rlAAALineMethodListNameLevel3 DisplayString,
rlAAALineMethodListNameLevel4 DisplayString,
rlAAALineMethodListNameLevel5 DisplayString,
rlAAALineMethodListNameLevel6 DisplayString,
rlAAALineMethodListNameLevel7 DisplayString,
rlAAALineMethodListNameLevel8 DisplayString,
rlAAALineMethodListNameLevel9 DisplayString,
rlAAALineMethodListNameLevel10 DisplayString,
rlAAALineMethodListNameLevel11 DisplayString,
rlAAALineMethodListNameLevel12 DisplayString,
rlAAALineMethodListNameLevel13 DisplayString,
rlAAALineMethodListNameLevel14 DisplayString,
rlAAALineMethodListNameLevel15 DisplayString,
rlAAALinePassword DisplayString,
rlAAALineStatus RowStatus,
rlAAALineLockedState INTEGER,
rlAAALineConsFailedLogins Counter32,
rlAAALinePasswordValidTime Unsigned32,
rlAAALinePasswordExpieryDate DisplayString,
rlAAALinePasswordSalt OCTET STRING,
rlAAALinePasswordHashMethod RlAAAHashType
}
rlAAALinePortType OBJECT-TYPE
SYNTAX RlAAALinePortType
MAX-ACCESS read-write
STATUS current
DESCRIPTION " the physical port type ."
::= { rlAAALineEntry 1 }
rlAAAIfIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Identifies the ifindex for which this entry can be used.
If index 0 means don't care (can be used for all if indices).
For port type console the value could be only 0."
::= { rlAAALineEntry 2}
rlAAAServiceType OBJECT-TYPE
SYNTAX RlAAAServiceType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the service type"
::= { rlAAALineEntry 3 }
rlAAALineMethodListNameLevel1 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Method list Name for level 1 .That name points to the method
list table .It is the key in method list table .in that way
we can reach the methods list to be used for that line"
::= { rlAAALineEntry 4 }
rlAAALineMethodListNameLevel2 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Method list Name for level 2 that name points to the method
list table it is the key in method list table .by that way
we can reach the methods list to be used for that line"
::= { rlAAALineEntry 5 }
rlAAALineMethodListNameLevel3 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Method list Name for level 3 that name points to the method
list table it is the key in method list table .by that way
we can reach the methods list to be used for this line"
::= { rlAAALineEntry 6}
rlAAALineMethodListNameLevel4 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Method list Name for level 4-that name points to the method
list table it is the key in method list table .by that way
we can reach the methods list to be used for this line"
::= { rlAAALineEntry 7}
rlAAALineMethodListNameLevel5 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Method list Name for level 5 that name points to the method
list table it is the key in method list table .in that way
we can reach the methods list to be used for that line"
::= { rlAAALineEntry 8}
rlAAALineMethodListNameLevel6 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Method list Name for level 6 that name points to the method
list table it is the key in method list table .in that way
we can reach the methods list to be used for that line"
::= { rlAAALineEntry 9}
rlAAALineMethodListNameLevel7 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Method list Name for level 7 that name points to the method
list table it is the key in method list table .in that way
we can reach the methods list to be used for that line"
::= { rlAAALineEntry 10}
rlAAALineMethodListNameLevel8 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Method list Name for level 8 that name points to the method
list table it is the key in method list table .in that way
we can reach the methods list to be used for that line"
::= { rlAAALineEntry 11}
rlAAALineMethodListNameLevel9 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Method list Name for level 9 that name points to the method
list table it is the key in method list table .in that way
we can reach the methods list to be used for that line"
::= { rlAAALineEntry 12}
rlAAALineMethodListNameLevel10 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Method list Name for level 10 that name points to the method
list table it is the key in method list table .in that way
we can reach the methods list to be used for that line"
::= { rlAAALineEntry 13}
rlAAALineMethodListNameLevel11 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Method list Name for level 11 that name points to the method
list table it is the key in method list table .in that way
we can reach the methods list to be used for that line"
::= { rlAAALineEntry 14}
rlAAALineMethodListNameLevel12 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Method list Name for level 12 that name points to the method
list table it is the key in method list table .in that way
we can reach the methods list to be used for that line"
::= { rlAAALineEntry 15}
rlAAALineMethodListNameLevel13 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Method list Name for level 13 that name points to the method
list table it is the key in method list table .in that way
we can reach the methods list to be used for that line"
::= { rlAAALineEntry 16}
rlAAALineMethodListNameLevel14 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Method list Name for level 14 that name points to the method
list table it is the key in method list table .in that way
we can reach the methods list to be used for that line"
::= { rlAAALineEntry 17}
rlAAALineMethodListNameLevel15 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Method list Name for level 15 that name points to the method
list table it is the key in method list table .in that way
we can reach the methods list to be used for that line"
::= { rlAAALineEntry 18}
rlAAALinePassword OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..160))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Line Password. Zero length password is considered as no
password. Password with zero length means that in case this
password is the method to be used a method fail is returned
and no other method is being used.
allowed formats:
a. Display string starting with '$' for clear text
b. Encrypted password: starts with # sign followed by 32
octets representing Hex Decimal value(in the 0-9 a-f A-F
range)
the $ and # as first octet are a directive to indicate what
is the type of password and are not not part of it"
::= { rlAAALineEntry 19 }
rlAAALineStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Line status can be destroy or createAndGo"
::= { rlAAALineEntry 20 }
rlAAALineLockedState OBJECT-TYPE
SYNTAX INTEGER {
locked(0),
usable(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Line locked status"
::= { rlAAALineEntry 21 }
rlAAALineConsFailedLogins OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of last consecutive failed logins"
::= { rlAAALineEntry 22 }
rlAAALinePasswordValidTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The period of time in days, during which the password,
is considered valid for login. Value of 0 means never expired.
The actual range is product specific.
After this time the system may allow limited number of logins
to change the password. "
DEFVAL { 0 }
::= { rlAAALineEntry 23}
rlAAALinePasswordExpieryDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "If Line password aging is active, the date on which
The current password will expire.
Otherwise zero size string"
::= { rlAAALineEntry 24 }
rlAAALinePasswordSalt OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The salt of the line password used to prevent
rainbow table attacks."
::= { rlAAALineEntry 25 }
rlAAALinePasswordHashMethod OBJECT-TYPE
SYNTAX RlAAAHashType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The method the line password uses to hash
the password."
::= { rlAAALineEntry 26 }
--
-- local user db table
--
---_for rlAAALocalUserTable addition is in BOLD.
--- Added read only fields to show if a user is locked,
--- password expiry date and number of consecutive failed logins.
--- New read write field to set the expiry time for a password.
rlAAALocalUserTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlAAALocalUserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table specifies all usernames, their passwords and
their authorizations."
::= { rlAAA 17 }
rlAAALocalUserEntry OBJECT-TYPE
SYNTAX RlAAALocalUserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The row definition for this table."
INDEX { rlAAALocalUserName}
::= { rlAAALocalUserTable 1 }
RlAAALocalUserEntry ::= SEQUENCE {
rlAAALocalUserName DisplayString,
rlAAALocalUserPassword DisplayString,
rlAAALocalUserPrivilage INTEGER,
rlAAALocalHostStatus RowStatus,
rlAAALocalLockedState INTEGER,
rlAAALocalConsFailedLogins Counter32,
rlAAALocalPasswordValidTime Unsigned32,
rlAAALocalPasswordExpieryDate DisplayString,
rlAAALocalPasswordCreationDate DisplayString,
rlAAALocalUserSalt OCTET STRING,
rlAAALocalUserHashMethod RlAAAHashType
}
rlAAALocalUserName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Local User Name"
::= { rlAAALocalUserEntry 1 }
rlAAALocalUserPassword OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..160))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Local User Password .The password can be null
allowed formats:
a. Display string starting with '$' for clear text
b. Encrypted password: starts with # sign followed by 32
octets representing Hex Decimal value(in the 0-9 a-f A-F
range)
the $ and # as first octet are a directive to indicate what
is the type of password and are not not part of it"
::= { rlAAALocalUserEntry 2 }
rlAAALocalUserPrivilage OBJECT-TYPE
SYNTAX INTEGER (1..15)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Local User Privilage"
::= { rlAAALocalUserEntry 3 }
rlAAALocalHostStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Local User status"
::= { rlAAALocalUserEntry 4 }
rlAAALocalLockedState OBJECT-TYPE
SYNTAX INTEGER {
locked(0),
usable(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Local User locked status"
::= { rlAAALocalUserEntry 5 }
rlAAALocalConsFailedLogins OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of last consecutive failed logins"
::= { rlAAALocalUserEntry 6 }
rlAAALocalPasswordValidTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The period of time in days, during which the password,
is considered valid for login. Value of 0 means never expired.
The actual range is product specific.
After this time the system may allow limited number of logins
to change the password. "
DEFVAL { 0 }
::= { rlAAALocalUserEntry 7 }
rlAAALocalPasswordExpieryDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "If User password aging is active, the date on which
The current password will expire.
Otherwise zero size string"
::= { rlAAALocalUserEntry 8 }
rlAAALocalPasswordCreationDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The date on which the current password was created.
Otherwise zero size string"
::= { rlAAALocalUserEntry 9 }
rlAAALocalUserSalt OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Salt stored and used to prevent lookup tables,
reverse lookup tables, and rainbow table attacks.
Not used in MD5 and SHA1 Hashing."
DEFVAL { "" }
::= { rlAAALocalUserEntry 10 }
rlAAALocalUserHashMethod OBJECT-TYPE
SYNTAX RlAAAHashType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The method used to hash the user's password"
::= { rlAAALocalUserEntry 11 }
--
-- system password
-- DEPRECATED, USE rlAAASysPassAttributeTable
--
rlAAASystemPasswordlevel1 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..160))
MAX-ACCESS read-write
STATUS deprecated -- DEPRECATED, moved to rlAAASysPassAttributeTable
DESCRIPTION "Deprecated, use rlAAASysPassAttributeTable instead
system Password for level 1.
allowed formats:
a. Display string starting with '$' for clear text
b. Encrypted password: starts with # sign followed by 32
octets representing Hex Decimal value(in the 0-9 a-f A-F
range)
the $ and # as first octet are a directive to indicate what
is the type of password and are not not part of it"
::= { rlAAA 18 }
rlAAASystemPasswordlevel2 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..160))
MAX-ACCESS read-write
STATUS deprecated -- DEPRECATED, moved to rlAAASysPassAttributeTable
DESCRIPTION "Deprecated, use rlAAASysPassAttributeTable instead
system Password for level 2.
allowed formats:
a. Display string starting with '$' for clear text
b. Encrypted password: starts with # sign followed by 32
octets representing Hex Decimal value(in the 0-9 a-f A-F
range)
the $ and # as first octet are a directive to indicate what
is the type of password and are not not part of it"
::= { rlAAA 19 }
rlAAASystemPasswordlevel3 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..160))
MAX-ACCESS read-write
STATUS deprecated -- DEPRECATED, moved to rlAAASysPassAttributeTable
DESCRIPTION "Deprecated, use rlAAASysPassAttributeTable instead
system Password for level 3.
allowed formats:
a. Display string starting with '$' for clear text
b. Encrypted password: starts with # sign followed by 32
octets representing Hex Decimal value(in the 0-9 a-f A-F
range)
the $ and # as first octet are a directive to indicate what
is the type of password and are not not part of it"
::= { rlAAA 20 }
rlAAASystemPasswordlevel4 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..160))
MAX-ACCESS read-write
STATUS deprecated -- DEPRECATED, moved to rlAAASysPassAttributeTable
DESCRIPTION "Deprecated, use rlAAASysPassAttributeTable instead
system Password for level 4.
allowed formats:
a. Display string starting with '$' for clear text
b. Encrypted password: starts with # sign followed by 32
octets representing Hex Decimal value(in the 0-9 a-f A-F
range)
the $ and # as first octet are a directive to indicate what
is the type of password and are not not part of it"
::= { rlAAA 21 }
rlAAASystemPasswordlevel5 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..160))
MAX-ACCESS read-write
STATUS deprecated -- DEPRECATED, moved to rlAAASysPassAttributeTable
DESCRIPTION "Deprecated, use rlAAASysPassAttributeTable instead
system Password for level 5.
allowed formats:
a. Display string starting with '$' for clear text
b. Encrypted password: starts with # sign followed by 32
octets representing Hex Decimal value(in the 0-9 a-f A-F
range)
the $ and # as first octet are a directive to indicate what
is the type of password and are not not part of it"
::= { rlAAA 22 }
rlAAASystemPasswordlevel6 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..160))
MAX-ACCESS read-write
STATUS deprecated -- DEPRECATED, moved to rlAAASysPassAttributeTable
DESCRIPTION "Deprecated, use rlAAASysPassAttributeTable instead
system Password for level 6.
allowed formats:
a. Display string starting with '$' for clear text
b. Encrypted password: starts with # sign followed by 32
octets representing Hex Decimal value(in the 0-9 a-f A-F
range)
the $ and # as first octet are a directive to indicate what
is the type of password and are not not part of it"
::= { rlAAA 23 }
rlAAASystemPasswordlevel7 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..160))
MAX-ACCESS read-write
STATUS deprecated -- DEPRECATED, moved to rlAAASysPassAttributeTable
DESCRIPTION "Deprecated, use rlAAASysPassAttributeTable instead
system Password for level 7.
allowed formats:
a. Display string starting with '$' for clear text
b. Encrypted password: starts with # sign followed by 32
octets representing Hex Decimal value(in the 0-9 a-f A-F
range)
the $ and # as first octet are a directive to indicate what
is the type of password and are not not part of it"
::= { rlAAA 24 }
rlAAASystemPasswordlevel8 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..160))
MAX-ACCESS read-write
STATUS deprecated -- DEPRECATED, moved to rlAAASysPassAttributeTable
DESCRIPTION "Deprecated, use rlAAASysPassAttributeTable instead
system Password for level 8.
allowed formats:
a. Display string starting with '$' for clear text
b. Encrypted password: starts with # sign followed by 32
octets representing Hex Decimal value(in the 0-9 a-f A-F
range)
the $ and # as first octet are a directive to indicate what
is the type of password and are not not part of it"
::= { rlAAA 25 }
rlAAASystemPasswordlevel9 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..160))
MAX-ACCESS read-write
STATUS deprecated -- DEPRECATED, moved to rlAAASysPassAttributeTable
DESCRIPTION "Deprecated, use rlAAASysPassAttributeTable instead
system Password for level 9.
allowed formats:
a. Display string starting with '$' for clear text
b. Encrypted password: starts with # sign followed by 32
octets representing Hex Decimal value(in the 0-9 a-f A-F
range)
the $ and # as first octet are a directive to indicate what
is the type of password and are not not part of it"
::= { rlAAA 26 }
rlAAASystemPasswordlevel10 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..160))
MAX-ACCESS read-write
STATUS deprecated -- DEPRECATED, moved to rlAAASysPassAttributeTable
DESCRIPTION "Deprecated, use rlAAASysPassAttributeTable instead
system Password for level 10.
allowed formats:
a. Display string starting with '$' for clear text
b. Encrypted password: starts with # sign followed by 32
octets representing Hex Decimal value(in the 0-9 a-f A-F
range)
the $ and # as first octet are a directive to indicate what
is the type of password and are not not part of it"
::= { rlAAA 27 }
rlAAASystemPasswordlevel11 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..160))
MAX-ACCESS read-write
STATUS deprecated -- DEPRECATED, moved to rlAAASysPassAttributeTable
DESCRIPTION " Deprecated, use rlAAASysPassAttributeTable instead
system Password for level 11.
allowed formats:
a. Display string starting with '$' for clear text
b. Encrypted password: starts with # sign followed by 32
octets representing Hex Decimal value(in the 0-9 a-f A-F
range)
the $ and # as first octet are a directive to indicate what
is the type of password and are not not part of it"
::= { rlAAA 28 }
rlAAASystemPasswordlevel12 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..160))
MAX-ACCESS read-write
STATUS deprecated -- DEPRECATED, moved to rlAAASysPassAttributeTable
DESCRIPTION "Deprecated, use rlAAASysPassAttributeTable instead
system Password for level 12.
allowed formats:
a. Display string starting with '$' for clear text
b. Encrypted password: starts with # sign followed by 32
octets representing Hex Decimal value(in the 0-9 a-f A-F
range)
the $ and # as first octet are a directive to indicate what
is the type of password and are not not part of it"
::= { rlAAA 29 }
rlAAASystemPasswordlevel13 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..160))
MAX-ACCESS read-write
STATUS deprecated -- DEPRECATED, moved to rlAAASysPassAttributeTable
DESCRIPTION "Deprecated, use rlAAASysPassAttributeTable instead
system Password for level 13.
allowed formats:
a. Display string starting with '$' for clear text
b. Encrypted password: starts with # sign followed by 32
octets representing Hex Decimal value(in the 0-9 a-f A-F
range)
the $ and # as first octet are a directive to indicate what
is the type of password and are not not part of it"
::= { rlAAA 30 }
rlAAASystemPasswordlevel14 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..160))
MAX-ACCESS read-write
STATUS deprecated -- DEPRECATED, moved to rlAAASysPassAttributeTable
DESCRIPTION "Deprecated, use rlAAASysPassAttributeTable instead
system Password for level 13.
allowed formats:
a. Display string starting with '$' for clear text
b. Encrypted password: starts with # sign followed by 32
octets representing Hex Decimal value(in the 0-9 a-f A-F
range)
the $ and # as first octet are a directive to indicate what
is the type of password and are not not part of it"
::= { rlAAA 31 }
rlAAASystemPasswordlevel15 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..160))
MAX-ACCESS read-write
STATUS deprecated -- DEPRECATED, moved to rlAAASysPassAttributeTable
DESCRIPTION "Deprecated, use rlAAASysPassAttributeTable instead
system Password for level 15.
allowed formats:
a. Display string starting with '$' for clear text
b. Encrypted password: starts with # sign followed by 32
octets representing Hex Decimal value(in the 0-9 a-f A-F
range)
the $ and # as first octet are a directive to indicate what
is the type of password and are not part of it"
::= { rlAAA 32 }
rlAAAUserTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlAAAUserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table holds all current users that have been authenticated."
::= { rlAAA 33 }
rlAAAUserEntry OBJECT-TYPE
SYNTAX RlAAAUserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The row definition for this table."
INDEX { rlAAAUserIndex}
::= { rlAAAUserTable 1 }
RlAAAUserEntry ::= SEQUENCE {
rlAAAUserIndex Unsigned32,
rlAAAUserServiceType RlAAAServiceType,
rlAAAUserRemoteIpAddress IpAddress,
rlAAAUserName DisplayString,
rlAAAUserLevel Unsigned32,
rlAAAUserIfIndex Unsigned32,
rlAAAUserLoginDate DateAndTime,
rlAAAUserLoginDurationMS Unsigned32
}
rlAAAUserIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "User Index"
::= { rlAAAUserEntry 1 }
rlAAAUserServiceType OBJECT-TYPE
SYNTAX RlAAAServiceType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The service that the user uses. Service dont care is console
terminal."
::= { rlAAAUserEntry 2 }
rlAAAUserRemoteIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "User remote IP address."
::= { rlAAAUserEntry 3 }
rlAAAUserName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "User Name"
::= { rlAAAUserEntry 4 }
rlAAAUserLevel OBJECT-TYPE
SYNTAX Unsigned32 (1..15)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "User level"
::= { rlAAAUserEntry 5 }
rlAAAUserIfIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "User if index."
::= { rlAAAUserEntry 6 }
rlAAAUserLoginDate OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Date of use creation."
::= { rlAAAUserEntry 7 }
rlAAAUserLoginDurationMS OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Time in MS since user login."
::= { rlAAAUserEntry 8 }
rlAAATest OBJECT IDENTIFIER ::= { rlAAA 34 }
rlAAATestPassword OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable enables the user supplying the correct code to use the
AAA test feature."
::= {rlAAATest 1}
rlAAATestUserTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlAAATestUserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table enables a user to perform a simulation of authentiction."
::= { rlAAATest 2 }
rlAAATestUserEntry OBJECT-TYPE
SYNTAX RlAAATestUserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The row definition for this table."
INDEX { rlAAATestUserIndex}
::= { rlAAATestUserTable 1 }
RlAAATestUserEntry ::= SEQUENCE {
rlAAATestUserIndex Unsigned32,
rlAAATestPortType RlAAALinePortType,
rlAAATestIfIndex INTEGER,
rlAAATestServiceType RlAAAServiceType,
rlAAATestUserAuthenticationStatus INTEGER,
rlAAATestUserAuthenticationAction INTEGER,
rlAAATestUserInput DisplayString,
rlAAATestUserStatus RowStatus
}
rlAAATestUserIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User entry index (the number is used just to identify the user)."
::= { rlAAATestUserEntry 1 }
rlAAATestPortType OBJECT-TYPE
SYNTAX RlAAALinePortType
MAX-ACCESS read-write
STATUS current
DESCRIPTION " the physical port type ."
::= { rlAAATestUserEntry 2 }
rlAAATestIfIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION " line ifIndex can configue to be zero witch means
Don't-care value"
::= { rlAAATestUserEntry 3}
rlAAATestServiceType OBJECT-TYPE
SYNTAX RlAAAServiceType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the service type"
::= { rlAAATestUserEntry 4 }
rlAAATestUserAuthenticationStatus OBJECT-TYPE
SYNTAX INTEGER {
needPassword(1),
needUsername(2),
success(3),
failure(4),
aborted(5),
deleted(6),
waiting(7),
usedNewMethod(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Shows the ststus of the operation and what is expected from the
'user'."
::= { rlAAATestUserEntry 5 }
rlAAATestUserAuthenticationAction OBJECT-TYPE
SYNTAX INTEGER {
begin(1),
receivePassword(2),
receiveUsername(3),
abort(4),
delete(5),
continue(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"By setting this field the process moves from one state to another. On
creation the value must be begin.
When the value of rlAAATestUserAuthenticationStatus is needPassword
the value can be set to receivePassword or abort.
When the value of rlAAATestUserAuthenticationStatus is needUsername
the value can be set to receiveUsername or abort.
When the value of rlAAATestUserAuthenticationStatus is success or failure
the value can be set to delete or abort.
When the value of rlAAATestUserAuthenticationStatus is aborted the value
can be set to delete.
When the value of rlAAATestUserAuthenticationStatus is deleted the value
can not be set to any value.
When the value of rlAAATestUserAuthenticationStatus is waiting the value
can be set or abort."
::= { rlAAATestUserEntry 6 }
rlAAATestUserInput OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..160))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If the acion was set to receivePassword than this field should hold
the value of the password.
If the action was set to receiveUsername than this field should hold
the value of the username. "
::= { rlAAATestUserEntry 7 }
rlAAATestUserStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Entry status. The entry can not be deleted. It will be deleted if
unchanged more than 2 minutes."
::= { rlAAATestUserEntry 8 }
---
--- rlRadius
---
rlRadiusMibVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MIB's version, the current version is 2.
1 - original version.
2 - field rlRadiusServerUsage was added to rlRadiusServerEntry"
::= { rlRadius 1 }
rlRadiusGlobalDefaultTimeout OBJECT-TYPE
SYNTAX INTEGER (1..30)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum time (in seconds) to wait for this RADIUS
server to reply. This MIB is used if the value of the
field rlRadiusServerUseGlobalDefaultTimeout is false."
::= { rlRadius 2 }
rlRadiusGlobalDefaultRetries OBJECT-TYPE
SYNTAX INTEGER (1..15)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of times to try contacting this RADIUS server. This MIB
is used if the value of the field
rlRadiusServerUseGlobalDefaultRetries is false."
::= { rlRadius 3 }
rlRadiusGlobalDefaultDeadtime OBJECT-TYPE
SYNTAX INTEGER (0..2000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Number of minutes that any RADIUS server is ignored after
it has failed. This MIB is used if the value of the field
rlRadiusServerUseGlobalDefaultDeadtime is false."
::= { rlRadius 4 }
rlRadiusGlobalDefaultKey OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Secret key to be shared with this RADIUS server. This MIB is
used if the value of the field rlRadiusServerUseGlobalDefaultKey
is false."
::= { rlRadius 5 }
rlRadiusGlobalDefaultSource OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IPv4 address of the interface to use with this server.
A value of 0.0.0.0 for this object disables source
address specification. This MIB is used if the value of the
field rlRadiusServerUseGlobalDefaultSource is false."
::= { rlRadius 6 }
rlRadiusServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlRadiusServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table listing the RADIUS
servers with which the cliient shares a secret."
::= { rlRadius 7 }
rlRadiusServerEntry OBJECT-TYPE
SYNTAX RlRadiusServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) representing a RADIUS
server with which the client shares
a secret."
INDEX { rlRadiusServerAddress,
rlRadiusServerAuthPortNumber,
rlRadiusServerAcctPortNumber}
::= { rlRadiusServerTable 1 }
RlRadiusServerEntry ::= SEQUENCE {
rlRadiusServerAddress IpAddress,
rlRadiusServerAuthPortNumber INTEGER,
rlRadiusServerAcctPortNumber INTEGER,
rlRadiusServerTimeout INTEGER,
rlRadiusServerRetries INTEGER,
rlRadiusServerDeadtime INTEGER,
rlRadiusServerUseGlobalDefaultKey TruthValue,
rlRadiusServerKey DisplayString,
rlRadiusServerSource IpAddress,
rlRadiusServerPriority INTEGER,
rlRadiusServerStatus RowStatus,
rlRadiusServerUsage INTEGER
}
rlRadiusServerAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address of the RADIUS server
referred to in this table entry."
::= { rlRadiusServerEntry 1 }
rlRadiusServerAuthPortNumber OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The UDP port the client is using to send authentication
requests to this server."
::= { rlRadiusServerEntry 2 }
rlRadiusServerAcctPortNumber OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The UDP port the client is using to send accounting
requests to this server."
::= { rlRadiusServerEntry 3 }
rlRadiusServerTimeout OBJECT-TYPE
SYNTAX INTEGER (0..30)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum time (in seconds) to wait for this RADIUS
server to reply. Value of 0 means that rlRadiusGlobalDefaultTimeout."
DEFVAL { 3 }
::= { rlRadiusServerEntry 4 }
rlRadiusServerRetries OBJECT-TYPE
SYNTAX INTEGER (0..15)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of times to try contacting this RADIUS server. Value of
0 means that rlRadiusGlobalDefaultRetries."
DEFVAL { 3 }
::= { rlRadiusServerEntry 5 }
rlRadiusServerDeadtime OBJECT-TYPE
SYNTAX INTEGER (0..2001)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Number of minutes that any RADIUS server is ignored after
it has failed. Value of 2001 means that rlRadiusGlobalDefaultDeadtime
will be used."
DEFVAL { 0 }
::= { rlRadiusServerEntry 6 }
rlRadiusServerUseGlobalDefaultKey OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If this field is set to true the value in field rlRadiusServerKey
is ignored and instead the value in the MIB
rlRadiusGlobalDefaultKey is used. Otherwise the value in
rlRadiusServerKey is used."
DEFVAL { false }
::= { rlRadiusServerEntry 7 }
rlRadiusServerKey OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Secret key to be shared with this RADIUS server."
DEFVAL { "" }
::= { rlRadiusServerEntry 8 }
rlRadiusServerSource OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP address of the interface to use with this server.
A value of 0.0.0.0 for this object disables source
address specification. Default value of 255.255.255.255
means that rlRadiusGlobalDefaultSource will be used."
::= { rlRadiusServerEntry 9 }
rlRadiusServerPriority OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Determines the order in which the servers will be used, when 0 is
the highest priority. If more than one server share the same
priority - they will be used in lexicgoraphic order
(the order of entries in this table)."
DEFVAL { 0 }
::= { rlRadiusServerEntry 10 }
rlRadiusServerStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::= { rlRadiusServerEntry 11 }
rlRadiusServerUsage OBJECT-TYPE
SYNTAX INTEGER {
userAuthentication(1),
portAuthentication(2),
all(3),
wirelessAuthentication (4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Determines actions for which the radius server will be used."
DEFVAL { 3 }
::= { rlRadiusServerEntry 12 }
--
-- IPv6 support
--
rlRadiusServerInetTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlRadiusServerInetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table listing the RADIUS
servers with which the cliient shares a secret."
::= { rlRadius 8 }
rlRadiusServerInetEntry OBJECT-TYPE
SYNTAX RlRadiusServerInetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) representing a RADIUS
server with which the client shares
a secret."
INDEX { rlRadiusServerInetAddressType,
rlRadiusServerInetAddress,
rlRadiusServerInetAuthPortNumber,
rlRadiusServerInetAcctPortNumber}
::= { rlRadiusServerInetTable 1 }
RlRadiusServerInetEntry ::= SEQUENCE {
rlRadiusServerInetAddressType InetAddressType,
rlRadiusServerInetAddress InetAddress,
rlRadiusServerInetAuthPortNumber INTEGER,
rlRadiusServerInetAcctPortNumber INTEGER,
rlRadiusServerInetTimeout INTEGER,
rlRadiusServerInetRetries INTEGER,
rlRadiusServerInetDeadtime INTEGER,
rlRadiusServerInetUseGlobalDefaultKey TruthValue,
rlRadiusServerInetKey DisplayString,
rlRadiusServerInetSourceType InetAddressType,
rlRadiusServerInetSource InetAddress,
rlRadiusServerInetPriority INTEGER,
rlRadiusServerInetStatus RowStatus,
rlRadiusServerInetUsage INTEGER,
rlRadiusServerInetLastResponseTime TimeStamp,
rlRadiusServerInetServerDead TruthValue,
rlRadiusServerInetCurrent TruthValue
}
rlRadiusServerInetAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Inet address type of RADIUS server reffered to
in this table entry .IPv6Z type is not supported."
::= { rlRadiusServerInetEntry 1}
rlRadiusServerInetAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Inet address of the RADIUS server
referred to in this table entry.Only one instance
of specified address can be added at the same time."
::= { rlRadiusServerInetEntry 2 }
rlRadiusServerInetAuthPortNumber OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The UDP port the client is using to send authentication
requests to this server.The zero value can be used only
if rlRadiusServerInetAcctPortNumber value is not zero."
::= { rlRadiusServerInetEntry 3 }
rlRadiusServerInetAcctPortNumber OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The UDP port the client is using to send accounting
requests to this server.The zero value can be used only
if rlRadiusServerInetAuthPortNumber value is not zero."
::= { rlRadiusServerInetEntry 4 }
rlRadiusServerInetTimeout OBJECT-TYPE
SYNTAX INTEGER (0..30)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum time (in seconds) to wait for this RADIUS
server to reply. Value of 0 means that rlRadiusGlobalDefaultTimeout."
DEFVAL { 3 }
::= { rlRadiusServerInetEntry 5 }
rlRadiusServerInetRetries OBJECT-TYPE
SYNTAX INTEGER (0..15)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of times to try contacting this RADIUS server. Value of
0 means that rlRadiusGlobalDefaultRetries."
DEFVAL { 3 }
::= { rlRadiusServerInetEntry 6 }
rlRadiusServerInetDeadtime OBJECT-TYPE
SYNTAX INTEGER (0..2001)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Number of minutes that any RADIUS server is ignored after
it has failed. Value of 2001 means that rlRadiusGlobalDefaultDeadtime
will be used."
DEFVAL { 0 }
::= { rlRadiusServerInetEntry 7 }
rlRadiusServerInetUseGlobalDefaultKey OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If this field is set to true the value in field rlRadiusServerKey
is ignored and instead the value in the MIB
rlRadiusGlobalDefaultKey is used. Otherwise the value in
rlRadiusServerKey is used."
DEFVAL { false }
::= { rlRadiusServerInetEntry 8 }
rlRadiusServerInetKey OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Secret key to be shared with this RADIUS server."
DEFVAL { "" }
::= { rlRadiusServerInetEntry 9 }
rlRadiusServerInetSourceType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The rlRadiusServerInetSource address type.
IPv6Z type not supported"
::= { rlRadiusServerInetEntry 10}
rlRadiusServerInetSource OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Inet address of the interface to use with this server.
To provide backward compatibility the
value of 0.0.0.0 for this object will be used to
disables source address specification.
Default value of 255.255.255.255 means that
rlRadiusGlobalDefaultSource will be used for Ipv4
servers and rlRadiusIPv6GlobalDefaultSource
will be used for Ipv6 servers.IPv6Z type not supported.
Only valid IP address will be used.
Application will set default value."
::= { rlRadiusServerInetEntry 11 }
rlRadiusServerInetPriority OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Determines the order in which the servers will be used, when 0 is
the highest priority. If more than one server share the same
priority - they will be used in lexicgoraphic order
(the order of entries in this table)."
DEFVAL { 0 }
::= { rlRadiusServerInetEntry 12 }
rlRadiusServerInetStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::= { rlRadiusServerInetEntry 13 }
rlRadiusServerInetUsage OBJECT-TYPE
SYNTAX INTEGER {
userAuthentication(1),
portAuthentication(2),
all(3),
wirelessAuthentication (4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Determines actions for which the radius server will be used.
WirelessAuthentication will be used if wireless is supported."
DEFVAL { 3 }
::= { rlRadiusServerInetEntry 14 }
rlRadiusServerInetLastResponseTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime at the time this server has response.
If there is no request to the server, this object contains a zero value."
::= { rlRadiusServerInetEntry 15 }
rlRadiusServerInetServerDead OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If true, this server is currently in deadtime."
::= { rlRadiusServerInetEntry 16 }
rlRadiusServerInetCurrent OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If this field is set to true the value in field rlRadiusServerInetServerDead
is false, and it is the highest priority radius server (lowest number). The next connection to
a radius server will be through this server."
::= { rlRadiusServerInetEntry 17 }
rlRadiusGlobalIPv6DefaultSource OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IPv6 address of the interface to use with this server.
A NULL value for this object disables source
address specification. "
::= { rlRadius 9 }
--
-- rlAAAEap
--
RlAAAEapMethodtype ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Method list type."
SYNTAX INTEGER {
rlAAAEapMethodDeny(0),
rlAAAEapMethodRadius(1),
rlAAAEapMethodSucceed(2)
}
rlAAAEapMethodListTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlAAAEapMethodListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table specifies all methods list per method name."
::= { rlAAAEap 1 }
rlAAAEapMethodListEntry OBJECT-TYPE
SYNTAX RlAAAEapMethodListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The row definition for this table."
INDEX { rlAAAEapMethodListName}
::= { rlAAAEapMethodListTable 1 }
RlAAAEapMethodListEntry ::= SEQUENCE {
rlAAAEapMethodListName DisplayString,
rlAAAEapMethodType1 RlAAAEapMethodtype,
rlAAAEapMethodType2 RlAAAEapMethodtype,
rlAAAEapMethodType3 RlAAAEapMethodtype,
rlAAAEapMethodType4 RlAAAEapMethodtype,
rlAAAEapMethodType5 RlAAAEapMethodtype,
rlAAAEapMethodListStatus RowStatus
}
rlAAAEapMethodListName OBJECT-TYPE
SYNTAX DisplayString (SIZE(3..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Line Method List Name"
::= { rlAAAEapMethodListEntry 1 }
rlAAAEapMethodType1 OBJECT-TYPE
SYNTAX RlAAAEapMethodtype
MAX-ACCESS read-write
STATUS current
DESCRIPTION " first method type that will be used in the method
linked list."
::= { rlAAAEapMethodListEntry 2 }
rlAAAEapMethodType2 OBJECT-TYPE
SYNTAX RlAAAEapMethodtype
MAX-ACCESS read-write
STATUS current
DESCRIPTION " second method type that will be used in the method
linked list."
::= { rlAAAEapMethodListEntry 3 }
rlAAAEapMethodType3 OBJECT-TYPE
SYNTAX RlAAAEapMethodtype
MAX-ACCESS read-write
STATUS current
DESCRIPTION "3th method type that will be used in the method
linked list."
::= { rlAAAEapMethodListEntry 4 }
rlAAAEapMethodType4 OBJECT-TYPE
SYNTAX RlAAAEapMethodtype
MAX-ACCESS read-write
STATUS current
DESCRIPTION " 4th method type that will be used in the method
linked list."
::= { rlAAAEapMethodListEntry 5 }
rlAAAEapMethodType5 OBJECT-TYPE
SYNTAX RlAAAEapMethodtype
MAX-ACCESS read-write
STATUS current
DESCRIPTION "5th method type that will be used in the method
linked list."
::= { rlAAAEapMethodListEntry 6 }
rlAAAEapMethodListStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION "method list status can be destroy or createAndGo"
::= { rlAAAEapMethodListEntry 7 }
rlAAAEapCurrentMethodList OBJECT-TYPE
SYNTAX DisplayString (SIZE(3..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifies the method list that will be used for authentication."
::= { rlAAAEap 2 }
--- rlTacacs
RlTacacsConnectionType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Specifies TCP connection type between device and TACACS+ server"
SYNTAX INTEGER {
rlTacacsSingleConnection(0),
rlTacacsPerSessionConnection(1)
}
RlTacacsConnectionStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Specifies the status of TCP connection
between device and TACACS+ server."
SYNTAX INTEGER {
rlTacacsConnected(0),
rlTacacsNotConnected(1)
}
rlTacacs OBJECT IDENTIFIER ::= { rlAAA 40 }
rlTacacsMibVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MIB's version, the current version is 1."
::= { rlTacacs 1 }
rlTacacsGlobalDefaultTimeout OBJECT-TYPE
SYNTAX INTEGER (1..30)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum time (in seconds) to wait for TACACS+
server to reply. This MIB is used if the value of the
field rlTacacsServerTimeout is 0."
DEFVAL { 5 }
::= { rlTacacs 2 }
rlTacacsGlobalDefaultKey OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Secret key to be shared with TACACS+ server. This MIB is
used if the value of the field rlTacacsServerUseGlobalDefaultKey
is false."
DEFVAL { "" }
::= { rlTacacs 3 }
rlTacacsGlobalDefaultSourceIpInterface OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP address of the interface to use with TACACS+ server.
A value of 0.0.0.0 for this object disables source
address specification. This MIB is used if the value of the
field rlTacacsServerSource is 255.255.255.255."
DEFVAL { '00000000'H }
::= { rlTacacs 6 }
rlTacacsServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlTacacsServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table listing the TACACS+
servers with which the cliient shares a secret."
::= { rlTacacs 7 }
rlTacacsServerEntry OBJECT-TYPE
SYNTAX RlTacacsServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) representing a TACACS+
server with which the client shares
a secret."
INDEX { rlTacacsServerAddress }
::= { rlTacacsServerTable 1 }
RlTacacsServerEntry ::= SEQUENCE {
rlTacacsServerAddress IpAddress,
rlTacacsServerPortNumber INTEGER,
rlTacacsServerConnectionType RlTacacsConnectionType,
rlTacacsServerConnectionStatus RlTacacsConnectionStatus,
rlTacacsServerTimeout INTEGER,
rlTacacsServerUseGlobalDefaultKey TruthValue,
rlTacacsServerKey DisplayString,
rlTacacsServerSourceIpInterface IpAddress,
rlTacacsServerPriority INTEGER,
rlTacacsServerRowStatus RowStatus
}
rlTacacsServerAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address of the TACACS+ server
referred to in this table entry."
::= { rlTacacsServerEntry 1 }
rlTacacsServerPortNumber OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The TCP port the client establishes connections with this server."
DEFVAL { 49 }
::= { rlTacacsServerEntry 2 }
rlTacacsServerConnectionType OBJECT-TYPE
SYNTAX RlTacacsConnectionType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies TCP connection type between device and TACACS+ server.
Either a single open connection between device and server
(rlTacacsSingleConnection), or open/close connection per
communication session (rlTacacsPerSessionConnection)."
DEFVAL { rlTacacsPerSessionConnection }
::= { rlTacacsServerEntry 3 }
rlTacacsServerConnectionStatus OBJECT-TYPE
SYNTAX RlTacacsConnectionStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies status TCP connection type between device and TACACS+ server."
DEFVAL { rlTacacsConnected }
::= { rlTacacsServerEntry 4 }
rlTacacsServerTimeout OBJECT-TYPE
SYNTAX INTEGER (0..30)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum time (in seconds) to wait for this TACACS+ server to reply.
Value of 0 means that rlTacacsGlobalDefaultTimeout value is used."
DEFVAL { 5 }
::= { rlTacacsServerEntry 5 }
rlTacacsServerUseGlobalDefaultKey OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If this field is set to true the value in field rlTacacsServerKey
is ignored and instead the value in the MIB
rlTacacsGlobalDefaultKey is used. Otherwise the value in
rlTacacsServerKey is used."
DEFVAL { false }
::= { rlTacacsServerEntry 6 }
rlTacacsServerKey OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Secret key to be shared with this TACACS+ server."
DEFVAL { "" }
::= { rlTacacsServerEntry 7 }
rlTacacsServerSourceIpInterface OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP address of the interface to use with this server.
A value of 0.0.0.0 for this object disables source
address specification. Value of 255.255.255.255 means that
rlTacacsGlobalDefaultSourceIpInterface will be used."
DEFVAL { '00000000'H }
::= { rlTacacsServerEntry 8 }
rlTacacsServerPriority OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Determines the order in which the TACACS+ servers will be used,
when 0 is the highest priority. If more than one server share the
same priority - they will be used in lexicgoraphic order
(the order of entries in this table)."
DEFVAL { 0 }
::= { rlTacacsServerEntry 9 }
rlTacacsServerRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::= { rlTacacsServerEntry 10 }
rlTacacsGlobalDefaultSourceIPv6Interface OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP address of the interface to use with TACACS+ server.
A NULL for this object disables source
address specification. This MIB is used if the value of the
field rlTacacsServerInetSourceInterface is 255.255.255.255."
DEFVAL { '0000000000000000'H }
::= { rlTacacs 8 }
rlTacacsServerInetTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlTacacsServerInetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table listing the TACACS+
servers with which the cliient shares a secret."
::= { rlTacacs 9 }
rlTacacsServerInetEntry OBJECT-TYPE
SYNTAX RlTacacsServerInetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) representing a TACACS+
server with which the client shares
a secret."
INDEX { rlTacacsServerInetAddressType, rlTacacsServerInetAddress }
::= { rlTacacsServerInetTable 1 }
RlTacacsServerInetEntry ::= SEQUENCE {
rlTacacsServerInetAddressType InetAddressType,
rlTacacsServerInetAddress InetAddress,
rlTacacsServerInetPortNumber INTEGER,
rlTacacsServerInetConnectionType RlTacacsConnectionType,
rlTacacsServerInetConnectionStatus RlTacacsConnectionStatus,
rlTacacsServerInetTimeout INTEGER,
rlTacacsServerInetUseGlobalDefaultKey TruthValue,
rlTacacsServerInetKey DisplayString,
rlTacacsServerInetSourceInterfaceType InetAddressType,
rlTacacsServerInetSourceInterface InetAddress,
rlTacacsServerInetPriority INTEGER,
rlTacacsServerInetRowStatus RowStatus
}
rlTacacsServerInetAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Inet address type of TACACS+ server reffered to
in this table entry .IPv6Z type is not supported."
::= { rlTacacsServerInetEntry 1 }
rlTacacsServerInetAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Inet Address address of the TACACS+ server
referred to in this table entry."
::= { rlTacacsServerInetEntry 2 }
rlTacacsServerInetPortNumber OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The TCP port the client establishes connections with this server."
DEFVAL { 49 }
::= { rlTacacsServerInetEntry 3 }
rlTacacsServerInetConnectionType OBJECT-TYPE
SYNTAX RlTacacsConnectionType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies TCP connection type between device and TACACS+ server.
Either a single open connection between device and server
(rlTacacsSingleConnection), or open/close connection per
communication session (rlTacacsPerSessionConnection)."
DEFVAL { rlTacacsPerSessionConnection }
::= { rlTacacsServerInetEntry 4 }
rlTacacsServerInetConnectionStatus OBJECT-TYPE
SYNTAX RlTacacsConnectionStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies status TCP connection type between device and TACACS+ server."
DEFVAL { rlTacacsConnected }
::= { rlTacacsServerInetEntry 5 }
rlTacacsServerInetTimeout OBJECT-TYPE
SYNTAX INTEGER (0..30)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum time (in seconds) to wait for this TACACS+ server to reply.
Value of 0 means that rlTacacsGlobalDefaultTimeout value is used."
DEFVAL { 5 }
::= { rlTacacsServerInetEntry 6 }
rlTacacsServerInetUseGlobalDefaultKey OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If this field is set to true the value in field rlTacacsServerKey
is ignored and instead the value in the MIB
rlTacacsGlobalDefaultKey is used. Otherwise the value in
rlTacacsServerKey is used."
DEFVAL { false }
::= { rlTacacsServerInetEntry 7 }
rlTacacsServerInetKey OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Secret key to be shared with this TACACS+ server."
DEFVAL { "" }
::= { rlTacacsServerInetEntry 8 }
rlTacacsServerInetSourceInterfaceType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Inet address type of the interface to use with this server."
::= { rlTacacsServerInetEntry 9 }
rlTacacsServerInetSourceInterface OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Inet address of the interface to use with this server.
A value of NULL for this object disables source
address specification for this server.
A value of 255.255.255.255 maens that the global default
rlTacacsGlobalDefaultSourceIpInterface or
rlTacacsGlobalDefaultSourceIPv6Interface values are used."
::= { rlTacacsServerInetEntry 10 }
rlTacacsServerInetPriority OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Determines the order in which the TACACS+ servers will be used,
when 0 is the highest priority. If more than one server share the
same priority - they will be used in lexicgoraphic order
(the order of entries in this table)."
DEFVAL { 0 }
::= { rlTacacsServerInetEntry 11 }
rlTacacsServerInetRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::= { rlTacacsServerInetEntry 12 }
--- AAA Login auditing control (SysLog)
rlAAAAuditingEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Controls whether SysLog messages
should be issued on login events"
DEFVAL { true }
::= { rlAAA 41 }
rlAAAMinPasswordLength OBJECT-TYPE
SYNTAX INTEGER (0..64)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The minimum length of password for local user authentication
defined in field rlAAALocalUserPassword in rlAAALocalUserTable.
The value applies only to new or updated user passwords.
In actual implementation the range may be reduced to (0 | N-64),
where N is a platform dependent (for TIC compatibility N=8) "
DEFVAL { 0 }
::= { rlAAA 42 }
--- Password history size
rlAAAPasswordHistSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of most recent password,
previously defined for Local User Table, Line Table,
System Password Table for specific entity.
This list used for password reusing prevention.
Value of 0 means none. Changing the value
does not cause the loss of history.
History Max size is product specific."
DEFVAL { 0 }
::= { rlAAA 43 }
--- Password history hold time
rlAAAPasswordHistHoldTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The time in day, which an old password
may be used in password history check.
Changing the value does not cause the
loss of history."
DEFVAL { 0 }
::= { rlAAA 44 }
--- controls wether successful logins are written to file
rlAAASuccLoginWriteToFile OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Controls whether successful logins are
written to login file"
DEFVAL { true }
::= { rlAAA 45 }
--- Read-only table for successful login history - Local Users
rlAAALocalLoginHistTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlAAALocalLoginHistEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table holds successful login history
for all users. This table is read-only."
::= { rlAAA 46 }
rlAAALocalLoginHistEntry OBJECT-TYPE
SYNTAX RlAAALocalLoginHistEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The row definition for this table."
INDEX { rlAAALocalLoginHistName,
rlAAALocalLoginHistIndex}
::= { rlAAALocalLoginHistTable 1 }
RlAAALocalLoginHistEntry ::= SEQUENCE {
rlAAALocalLoginHistName DisplayString,
rlAAALocalLoginHistIndex Unsigned32,
rlAAALocalLoginHistServiceType RlAAAServiceType,
rlAAALocalLoginHistRemoteIpAddress IpAddress,
rlAAALocalLoginHistLocalIpAddress IpAddress,
rlAAALocalLoginDateTime DisplayString,
rlAAALocalLoginMrid Unsigned32
}
rlAAALocalLoginHistName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "User Name"
::= { rlAAALocalLoginHistEntry 1 }
rlAAALocalLoginHistIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index in History for specific user.
Lower number means more recent login."
::= { rlAAALocalLoginHistEntry 2 }
rlAAALocalLoginHistServiceType OBJECT-TYPE
SYNTAX RlAAAServiceType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The service that the user uses.
Service don't care is console terminal."
::= { rlAAALocalLoginHistEntry 3 }
rlAAALocalLoginHistRemoteIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "User remote IP address."
::= { rlAAALocalLoginHistEntry 4 }
rlAAALocalLoginHistLocalIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "local Ip Address on login."
::= { rlAAALocalLoginHistEntry 5 }
rlAAALocalLoginDateTime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Date and time in the SysLog Format:
DD-MMM-YYYY HH:MM:SS"
::= { rlAAALocalLoginHistEntry 6 }
rlAAALocalLoginMrid OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Mrid - indicates to which instance the connection was established "
::= { rlAAALocalLoginHistEntry 7 }
--- Read-only table for successful login history - Line passwords
rlAAALinePassLoginHistTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlAAALinePassLoginHistEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table holds successful login history
for Line passwords. This table is read-only."
::= { rlAAA 47 }
rlAAALinePassLoginHistEntry OBJECT-TYPE
SYNTAX RlAAALinePassLoginHistEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The row definition for this table."
INDEX {rlAAALinePassLoginHistPortType,
rlAAALinePassLoginHistIfIndex,
rlAAALinePassLoginHistServiceType,
rlAAALinePassLoginHistIndex }
::= { rlAAALinePassLoginHistTable 1 }
RlAAALinePassLoginHistEntry ::= SEQUENCE {
rlAAALinePassLoginHistPortType RlAAALinePortType,
rlAAALinePassLoginHistIfIndex Unsigned32,
rlAAALinePassLoginHistServiceType RlAAAServiceType,
rlAAALinePassLoginHistIndex Unsigned32,
rlAAALinePassLoginHistActServiceType RlAAAServiceType,
rlAAALinePassLoginHistRemoteIpAddress IpAddress,
rlAAALinePassLoginHistLocalIpAddress IpAddress,
rlAAALinePassLoginDateTime DisplayString ,
rlAAALinePassLoginMrid Unsigned32
}
rlAAALinePassLoginHistPortType OBJECT-TYPE
SYNTAX RlAAALinePortType
MAX-ACCESS read-write
STATUS current
DESCRIPTION " the physical port type."
::= { rlAAALinePassLoginHistEntry 1 }
rlAAALinePassLoginHistIfIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Identifies the ifindex for which this entry can be used.
If index 0 means don't care
(can be used for all if indices).
For port type console the value could be only 0."
::= { rlAAALinePassLoginHistEntry 2}
rlAAALinePassLoginHistServiceType OBJECT-TYPE
SYNTAX RlAAAServiceType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the service type"
::= { rlAAALinePassLoginHistEntry 3 }
rlAAALinePassLoginHistIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index in History for specific user.
Lower number means more recent login."
::= { rlAAALinePassLoginHistEntry 4 }
rlAAALinePassLoginHistActServiceType OBJECT-TYPE
SYNTAX RlAAAServiceType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The service that the user uses.
Service don't care is console terminal."
::= { rlAAALinePassLoginHistEntry 5 }
rlAAALinePassLoginHistRemoteIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "User remote IP address."
::= { rlAAALinePassLoginHistEntry 6 }
rlAAALinePassLoginHistLocalIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "local Ip Address on login."
::= { rlAAALinePassLoginHistEntry 7 }
rlAAALinePassLoginDateTime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Date and time in the SysLog Format:
DD-MMM-YYYY HH:MM:SS"
::= { rlAAALinePassLoginHistEntry 8 }
rlAAALinePassLoginMrid OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Mrid - indicates to which instance the connection was established "
::= { rlAAALinePassLoginHistEntry 9 }
--- Read-only table for successful login history - System Passwords
rlAAASystemLoginHistTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlAAASystemLoginHistEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table holds successful login history
for system passwords. This table is read-only."
::= { rlAAA 48 }
rlAAASystemLoginHistEntry OBJECT-TYPE
SYNTAX RlAAASystemLoginHistEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The row definition for this table."
INDEX { rlAAASystemLoginHistLevel,
rlAAASystemLoginHistIndex}
::= { rlAAASystemLoginHistTable 1 }
RlAAASystemLoginHistEntry ::= SEQUENCE {
rlAAASystemLoginHistLevel INTEGER,
rlAAASystemLoginHistIndex Unsigned32,
rlAAASystemLoginHistServiceType RlAAAServiceType,
rlAAASystemLoginHistRemoteIpAddress IpAddress,
rlAAASystemLoginHistLocalIpAddress IpAddress,
rlAAASystemLoginDateTime DisplayString,
rlAAASystemLoginMrid Unsigned32
}
rlAAASystemLoginHistLevel OBJECT-TYPE
SYNTAX INTEGER (1..15)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "User Name"
::= { rlAAASystemLoginHistEntry 1 }
rlAAASystemLoginHistIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index in History for specific user.
Lower number means more recent login."
::= { rlAAASystemLoginHistEntry 2 }
rlAAASystemLoginHistServiceType OBJECT-TYPE
SYNTAX RlAAAServiceType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The service that the user uses.
Service don't care is console terminal."
::= { rlAAASystemLoginHistEntry 3 }
rlAAASystemLoginHistRemoteIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "User remote IP address."
::= { rlAAASystemLoginHistEntry 4 }
rlAAASystemLoginHistLocalIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "local Ip Address on login."
::= { rlAAASystemLoginHistEntry 5 }
rlAAASystemLoginDateTime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Date and time in the SysLog Format:
DD-MMM-YYYY HH:MM:SS"
::= { rlAAASystemLoginHistEntry 6 }
rlAAASystemLoginMrid OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Mrid - indicates to which instance the connection was established "
::= { rlAAASystemLoginHistEntry 7 }
--
-- System Passwords status table
--
rlAAASysPassStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlAAASysPassStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table specifies all system password and
their security properties: is password locked
due to wrong password, when and how it was locked
or last unsuccessful login information, expiry date
of the password."
::= { rlAAA 49 }
rlAAASysPassStatEntry OBJECT-TYPE
SYNTAX RlAAASysPassStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The row definition for this table."
INDEX { rlAAASysPassStatLevel}
::= { rlAAASysPassStatTable 1 }
RlAAASysPassStatEntry ::= SEQUENCE {
rlAAASysPassStatLevel INTEGER,
rlAAASysPassStatLockedState INTEGER,
rlAAASysPassStatConsFailedLogins Counter32,
rlAAASysPassStatPasswordValidTime Unsigned32,
rlAAASysPassStatPasswordExpieryDate DisplayString
}
rlAAASysPassStatLevel OBJECT-TYPE
SYNTAX INTEGER (1..15)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "System password level"
::= { rlAAASysPassStatEntry 1 }
rlAAASysPassStatLockedState OBJECT-TYPE
SYNTAX INTEGER {
locked(0),
usable(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "System password locked status"
::= { rlAAASysPassStatEntry 2 }
rlAAASysPassStatConsFailedLogins OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of last consecutive failed logins"
::= { rlAAASysPassStatEntry 3 }
rlAAASysPassStatPasswordValidTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The period of time in days, during which the password,
is considered valid for login. Value of 0 means never expired.
The actual range is product specific.
After this time the system may allow limited number of logins
to change the password. "
DEFVAL { 0 }
::= { rlAAASysPassStatEntry 4 }
rlAAASysPassStatPasswordExpieryDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "If System password aging is active, the date,
on which the current password will expire.
Otherwise zero size string"
::= { rlAAASysPassStatEntry 5 }
--- Number of failures before lock-out (1-5, 0 for disable)
rlAAAMaxNumLogAttmpts OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of consecutive unsuccessful login attempts
before user is locked. Value of 0 means no limit. The actual range is
product specific. TIC requirement is 3."
DEFVAL { 0 }
::= { rlAAA 50 }
--
-- Unlock user action scalar
--
rlAAAUnlockUserName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "An action MIB variable setting with value
of Local User Name will unlock this user.
The value of this variable is not saved to
non volatile storage. Read of this variable
always returns zero length display string."
::= { rlAAA 51 }
--
-- Unlock user system passwords
--
rlAAAUnlockSystemPassword OBJECT-TYPE
SYNTAX INTEGER (0..15)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "An action MIB variable setting with value
of Level will unlock the system password
for this level. The value of this variable
is not saved to non volatile storage.
Read of this variable always returns zero.
Zero (0) does no action."
::= { rlAAA 52 }
--
-- Locked lines table
--
rlAAALockedLineTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlAAALockedLineEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table specifies lines statuses.
Users cannot access the product from
remote based on a password of the locked line.
This table enables to unlock lines."
::= { rlAAA 53 }
rlAAALockedLineEntry OBJECT-TYPE
SYNTAX RlAAALockedLineEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The row definition for this table."
INDEX { rlAAALockedLinePortType,
rlAAALockedLineIfIndex,
rlAAALockedLineServiceType}
::= { rlAAALockedLineTable 1 }
RlAAALockedLineEntry ::= SEQUENCE {
rlAAALockedLinePortType RlAAALinePortType,
rlAAALockedLineIfIndex Unsigned32,
rlAAALockedLineServiceType RlAAAServiceType,
rlAAALockedLineStatus INTEGER
}
rlAAALockedLinePortType OBJECT-TYPE
SYNTAX RlAAALinePortType
MAX-ACCESS read-write
STATUS current
DESCRIPTION " the physical port type ."
::= { rlAAALockedLineEntry 1 }
rlAAALockedLineIfIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Identifies the ifindex for which this entry can be used.
If index 0 means don't care (can be used for all if indices).
For port type console the value could be only 0."
::= { rlAAALockedLineEntry 2}
rlAAALockedLineServiceType OBJECT-TYPE
SYNTAX RlAAAServiceType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the service type"
::= { rlAAALockedLineEntry 3 }
rlAAALockedLineStatus OBJECT-TYPE
SYNTAX INTEGER {
locked(0),
usable(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The entry exists only if a line exist.
Setting this field to value usable results in
resetting the password failure counter,
and unlock a locked user."
::= { rlAAALockedLineEntry 4 }
--
-- SystemPasswordVerificationAndSetting Table
--
rlAAASystemPasswordVerificationAndSettingTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlAAASystemPasswordVerificationAndSettingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table specifies per every system level, old and new passwords.
Serves for verification the old password and setting a new password."
::= { rlAAA 54 }
rlAAASystemPasswordVerificationAndSettingEntry OBJECT-TYPE
SYNTAX RlAAASystemPasswordVerificationAndSettingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The row of system password verification and setting table."
INDEX { rlAAASystemPasswordSettingPrivilegeLevel}
::= { rlAAASystemPasswordVerificationAndSettingTable 1 }
RlAAASystemPasswordVerificationAndSettingEntry ::= SEQUENCE {
rlAAASystemPasswordSettingPrivilegeLevel INTEGER,
rlAAASystemPasswordVerificationOldPassword DisplayString,
rlAAASystemPasswordSettingNewPassword DisplayString,
rlAAASystemPasswordConfirmNewPassword DisplayString
}
rlAAASystemPasswordSettingPrivilegeLevel OBJECT-TYPE
SYNTAX INTEGER (1..15)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "System password Privelege Level to be set."
::= { rlAAASystemPasswordVerificationAndSettingEntry 1 }
rlAAASystemPasswordVerificationOldPassword OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Old system password to be verified."
::= { rlAAASystemPasswordVerificationAndSettingEntry 2 }
rlAAASystemPasswordSettingNewPassword OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "New system password to be set."
::= { rlAAASystemPasswordVerificationAndSettingEntry 3 }
rlAAASystemPasswordConfirmNewPassword OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "New system password to be confirmed."
::= { rlAAASystemPasswordVerificationAndSettingEntry 4 }
--
-- Accounting
--
RlAAAAccountingMethod ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Protocols, used for accounting."
SYNTAX INTEGER {
none(1),
radius(2),
tacacs(3)
}
rlAAAAccountingMngMethod OBJECT-TYPE
SYNTAX RlAAAAccountingMethod
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Method, used for accounting of management sessions,
none denotes Accounting is disabled."
::= { rlAAA 55 }
rlAAAAccountingDot1xMethod OBJECT-TYPE
SYNTAX RlAAAAccountingMethod
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Method, used for accounting of 802.1x sessions,
none denotes Accounting is disabled."
::= { rlAAA 56 }
-- INET support MIBS
rlAAAUserInetTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlAAAUserInetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table holds all current users that have been authenticated.
it coexist with rlAAAUserTable to support IPv4 and IPv6"
::= { rlAAA 57 }
rlAAAUserInetEntry OBJECT-TYPE
SYNTAX RlAAAUserInetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The row definition for this table."
INDEX { rlAAAUserInetIndex}
::= { rlAAAUserInetTable 1 }
RlAAAUserInetEntry ::= SEQUENCE {
rlAAAUserInetIndex Unsigned32,
rlAAAUserInetServiceType RlAAAServiceType,
rlAAAUserInetRemoteIpAddressType InetAddressType,
rlAAAUserInetRemoteIpAddress InetAddress,
rlAAAUserInetName DisplayString,
rlAAAUserInetLevel Unsigned32,
rlAAAUserInetIfIndex Unsigned32,
rlAAAUserInetLoginDate DateAndTime,
rlAAAUserInetLoginDurationMS Unsigned32
}
rlAAAUserInetIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "User Index"
::= { rlAAAUserInetEntry 1 }
rlAAAUserInetServiceType OBJECT-TYPE
SYNTAX RlAAAServiceType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The service that the user uses. Service dont care is console
terminal."
::= { rlAAAUserInetEntry 2 }
rlAAAUserInetRemoteIpAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "User remote INET address Type."
::= { rlAAAUserInetEntry 3 }
rlAAAUserInetRemoteIpAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "User remote INET address."
::= { rlAAAUserInetEntry 4 }
rlAAAUserInetName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "User Name"
::= { rlAAAUserInetEntry 5 }
rlAAAUserInetLevel OBJECT-TYPE
SYNTAX Unsigned32 (1..15)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "User level"
::= { rlAAAUserInetEntry 6 }
rlAAAUserInetIfIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "User if index."
::= { rlAAAUserInetEntry 7 }
rlAAAUserInetLoginDate OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Date of use creation."
::= { rlAAAUserInetEntry 8 }
rlAAAUserInetLoginDurationMS OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Time in MS since user login."
::= { rlAAAUserInetEntry 9 }
--- Read-only table for successful login history - Local Users
rlAAALocalLoginHistInetTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlAAALocalLoginHistInetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table holds successful login history
for all users. This table is read-only.
it coexist with rlAAALocalLoginHistTable to support IPv4 and IPv6"
::= { rlAAA 58 }
rlAAALocalLoginHistInetEntry OBJECT-TYPE
SYNTAX RlAAALocalLoginHistInetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The row definition for this table."
INDEX { rlAAALocalLoginHistInetName,
rlAAALocalLoginHistInetIndex}
::= { rlAAALocalLoginHistInetTable 1 }
RlAAALocalLoginHistInetEntry ::= SEQUENCE {
rlAAALocalLoginHistInetName DisplayString,
rlAAALocalLoginHistInetIndex Unsigned32,
rlAAALocalLoginHistInetServiceType RlAAAServiceType,
rlAAALocalLoginHistInetRemoteIpAddressType InetAddressType,
rlAAALocalLoginHistInetRemoteIpAddress InetAddress,
rlAAALocalLoginHistInetLocalIpAddressType InetAddressType,
rlAAALocalLoginHistInetLocalIpAddress InetAddress,
rlAAALocalLoginHistInetDateTime DisplayString,
rlAAALocalLoginHistInetMrid Unsigned32
}
rlAAALocalLoginHistInetName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "User Name"
::= { rlAAALocalLoginHistInetEntry 1 }
rlAAALocalLoginHistInetIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index in History for specific user.
Lower number means more recent login."
::= { rlAAALocalLoginHistInetEntry 2 }
rlAAALocalLoginHistInetServiceType OBJECT-TYPE
SYNTAX RlAAAServiceType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The service that the user uses.
Service don't care is console terminal."
::= { rlAAALocalLoginHistInetEntry 3 }
rlAAALocalLoginHistInetRemoteIpAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "User remote IP address Type."
::= { rlAAALocalLoginHistInetEntry 4 }
rlAAALocalLoginHistInetRemoteIpAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "User remote IP address."
::= { rlAAALocalLoginHistInetEntry 5 }
rlAAALocalLoginHistInetLocalIpAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "local Ip Address Type on login."
::= { rlAAALocalLoginHistInetEntry 6 }
rlAAALocalLoginHistInetLocalIpAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "local Ip Address on login."
::= { rlAAALocalLoginHistInetEntry 7 }
rlAAALocalLoginHistInetDateTime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Date and time in the SysLog Format:
DD-MMM-YYYY HH:MM:SS"
::= { rlAAALocalLoginHistInetEntry 8 }
rlAAALocalLoginHistInetMrid OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Mrid - indicates to which instance the connection was established "
::= { rlAAALocalLoginHistInetEntry 9 }
--- Read-only table for successful login history - Line passwords
rlAAALinePassLoginHistInetTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlAAALinePassLoginHistInetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table holds successful login history
for Line passwords. This table is read-only.
it coexist with rlAAALinePassLoginHistTable to support IPv4 and IPv6"
::= { rlAAA 59 }
rlAAALinePassLoginHistInetEntry OBJECT-TYPE
SYNTAX RlAAALinePassLoginHistInetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The row definition for this table."
INDEX {rlAAALinePassLoginHistInetPortType,
rlAAALinePassLoginHistInetIfIndex,
rlAAALinePassLoginHistInetServiceType,
rlAAALinePassLoginHistInetIndex }
::= { rlAAALinePassLoginHistInetTable 1 }
RlAAALinePassLoginHistInetEntry ::= SEQUENCE {
rlAAALinePassLoginHistInetPortType RlAAALinePortType,
rlAAALinePassLoginHistInetIfIndex Unsigned32,
rlAAALinePassLoginHistInetServiceType RlAAAServiceType,
rlAAALinePassLoginHistInetIndex Unsigned32,
rlAAALinePassLoginHistInetActServiceType RlAAAServiceType,
rlAAALinePassLoginHistInetRemoteInetAddressType InetAddressType,
rlAAALinePassLoginHistInetRemoteInetAddress InetAddress,
rlAAALinePassLoginHistInetLocalInetAddressType InetAddressType,
rlAAALinePassLoginHistInetLocalInetAddress InetAddress,
rlAAALinePassLoginHistInetDateTime DisplayString ,
rlAAALinePassLoginHistInetMrid Unsigned32
}
rlAAALinePassLoginHistInetPortType OBJECT-TYPE
SYNTAX RlAAALinePortType
MAX-ACCESS read-write
STATUS current
DESCRIPTION " the physical port type."
::= { rlAAALinePassLoginHistInetEntry 1 }
rlAAALinePassLoginHistInetIfIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Identifies the ifindex for which this entry can be used.
If index 0 means don't care
(can be used for all if indices).
For port type console the value could be only 0."
::= { rlAAALinePassLoginHistInetEntry 2}
rlAAALinePassLoginHistInetServiceType OBJECT-TYPE
SYNTAX RlAAAServiceType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the service type"
::= { rlAAALinePassLoginHistInetEntry 3 }
rlAAALinePassLoginHistInetIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index in HistInetory for specific user.
Lower number means more recent login."
::= { rlAAALinePassLoginHistInetEntry 4 }
rlAAALinePassLoginHistInetActServiceType OBJECT-TYPE
SYNTAX RlAAAServiceType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The service that the user uses.
Service don't care is console terminal."
::= { rlAAALinePassLoginHistInetEntry 5 }
rlAAALinePassLoginHistInetRemoteInetAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "User remote IP address Type."
::= { rlAAALinePassLoginHistInetEntry 6 }
rlAAALinePassLoginHistInetRemoteInetAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "User remote IP address."
::= { rlAAALinePassLoginHistInetEntry 7 }
rlAAALinePassLoginHistInetLocalInetAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "local Ip Address Type on login."
::= { rlAAALinePassLoginHistInetEntry 8 }
rlAAALinePassLoginHistInetLocalInetAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "local Ip Address on login."
::= { rlAAALinePassLoginHistInetEntry 9 }
rlAAALinePassLoginHistInetDateTime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Date and time in the SysLog Format:
DD-MMM-YYYY HH:MM:SS"
::= { rlAAALinePassLoginHistInetEntry 10 }
rlAAALinePassLoginHistInetMrid OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Mrid - indicates to which instance the connection was established "
::= { rlAAALinePassLoginHistInetEntry 11 }
--- Read-only table for successful login history - System Passwords
rlAAASystemLoginHistInetTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlAAASystemLoginHistInetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table holds successful login history
for system passwords. This table is read-only.
it coexist with rlAAASystemLoginHistTable to support IPv4 and IPv6"
::= { rlAAA 60 }
rlAAASystemLoginHistInetEntry OBJECT-TYPE
SYNTAX RlAAASystemLoginHistInetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The row definition for this table."
INDEX { rlAAASystemLoginHistInetLevel,
rlAAASystemLoginHistInetIndex}
::= { rlAAASystemLoginHistInetTable 1 }
RlAAASystemLoginHistInetEntry ::= SEQUENCE {
rlAAASystemLoginHistInetLevel INTEGER,
rlAAASystemLoginHistInetIndex Unsigned32,
rlAAASystemLoginHistInetServiceType RlAAAServiceType,
rlAAASystemLoginHistInetRemoteInetAddressType InetAddressType,
rlAAASystemLoginHistInetRemoteInetAddress InetAddress,
rlAAASystemLoginHistInetLocalInetAddressType InetAddressType,
rlAAASystemLoginHistInetLocalInetAddress InetAddress,
rlAAASystemLoginHistInetDateTime DisplayString,
rlAAASystemLoginHistInetMrid Unsigned32
}
rlAAASystemLoginHistInetLevel OBJECT-TYPE
SYNTAX INTEGER (1..15)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "User Name"
::= { rlAAASystemLoginHistInetEntry 1 }
rlAAASystemLoginHistInetIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index in History for specific user.
Lower number means more recent login."
::= { rlAAASystemLoginHistInetEntry 2 }
rlAAASystemLoginHistInetServiceType OBJECT-TYPE
SYNTAX RlAAAServiceType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The service that the user uses.
Service don't care is console terminal."
::= { rlAAASystemLoginHistInetEntry 3 }
rlAAASystemLoginHistInetRemoteInetAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "User remote IP address Type."
::= { rlAAASystemLoginHistInetEntry 4 }
rlAAASystemLoginHistInetRemoteInetAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "User remote IP address."
::= { rlAAASystemLoginHistInetEntry 5 }
rlAAASystemLoginHistInetLocalInetAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "local Ip Address Type on login."
::= { rlAAASystemLoginHistInetEntry 6 }
rlAAASystemLoginHistInetLocalInetAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "local Ip Address on login."
::= { rlAAASystemLoginHistInetEntry 7 }
rlAAASystemLoginHistInetDateTime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Date and time in the SysLog Format:
DD-MMM-YYYY HH:MM:SS"
::= { rlAAASystemLoginHistInetEntry 8 }
rlAAASystemLoginHistInetMrid OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Mrid - indicates to which instance the connection was established "
::= { rlAAASystemLoginHistInetEntry 9 }
--
-- Password complexity
--
rlAAAPasswordComplexityEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifies whether password complexity rules
must be applied."
::= { rlAAA 61 }
rlAAAPasswordComplexityMinCharClasses OBJECT-TYPE
SYNTAX INTEGER (0..4)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Indicates minimal number of character classes
from which the password should contain characters
if password complexity enabled.
charater classes are : lower case, upper case,
digits, special characters."
::= { rlAAA 62 }
rlAAAPasswordComplexityNotOldPasswordEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifies whether new password can be as
same as old password if password complexity enabled."
::= { rlAAA 63 }
rlAAAPasswordComplexityCharRepeat OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Indicates that no character in new password can't be
repeated more than 3 times if password complexity enabled."
::= { rlAAA 64 }
rlAAAPasswordComplexityNotUserNameEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifies whether new password can be as
same as user name if password complexity enabled."
::= { rlAAA 65 }
rlAAAPasswordComplexityNotManufacturerEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifies whether new password can be as
same as manufacturer name if password complexity enabled."
::= { rlAAA 66 }
--
-- Password Global Aging
--
rlAAAPasswordGlobalAgingTime OBJECT-TYPE
SYNTAX INTEGER (0..365)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Determines whether password aging should be applied.
Tic doesn't have to be enabled.
If == 0 then aging is disabled.
Note: Actual aging will not be enabled if system
doesn't have real time clock until, clock is
set either by user or SNTP."
::= { rlAAA 67 }
--
-- rlAAALocalUserVerificationAndSettingTable Table
--
rlAAALocalUserPasswordVerificationAndSettingTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlAAALocalUserPasswordVerificationAndSettingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table specifies per every local user, old and new passwords.
Serves for verification the old password and setting a new password."
::= { rlAAA 68 }
rlAAALocalUserPasswordVerificationAndSettingEntry OBJECT-TYPE
SYNTAX RlAAALocalUserPasswordVerificationAndSettingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The row of local user password verification and setting table."
INDEX { rlAAALocalUserNameString }
::= { rlAAALocalUserPasswordVerificationAndSettingTable 1 }
RlAAALocalUserPasswordVerificationAndSettingEntry ::= SEQUENCE {
rlAAALocalUserNameString DisplayString,
rlAAALocalUserVerificationOldPassword DisplayString,
rlAAALocalUserSettingNewPassword DisplayString,
rlAAALocalUserConfirmNewPassword DisplayString
}
rlAAALocalUserNameString OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Local user name."
::= { rlAAALocalUserPasswordVerificationAndSettingEntry 1 }
rlAAALocalUserVerificationOldPassword OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Local user old password to be verified."
::= { rlAAALocalUserPasswordVerificationAndSettingEntry 2 }
rlAAALocalUserSettingNewPassword OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Local user new password to be set."
::= { rlAAALocalUserPasswordVerificationAndSettingEntry 3 }
rlAAALocalUserConfirmNewPassword OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Local user new password for confirmation."
::= { rlAAALocalUserPasswordVerificationAndSettingEntry 4 }
---
--- level 15 system password creation date
---
rlAAACreationDateSystemPasswordLevel15 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The date on which the system Password for level 15 was created.
Otherwise zero size string"
::= { rlAAA 69 }
---
--- level 15 system password creation date
---
rlAAAPasswordRecoveryDisable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "if this MIB is set to TRUE then when user will use 'password Recovery'
to the device , the configuration will automatically be erased."
DEFVAL { false }
::= { rlAAA 70 }
---
--- Password Complexity Excluded keyword Table
---
rlAAAPasswordComplexityExcludeKeywordTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlAAAPasswordComplexityExcludeKeywordEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table holds s list of keywords that a valid password must not contain.
Excluded keyword checking is case-insensitive."
::= { rlAAA 71 }
rlAAAPasswordComplexityExcludeKeywordEntry OBJECT-TYPE
SYNTAX RlAAAPasswordComplexityExcludeKeywordEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The row definition for this table."
INDEX { IMPLIED rlAAAPasswordComplexityExcludeKeywordName}
::= { rlAAAPasswordComplexityExcludeKeywordTable 1 }
RlAAAPasswordComplexityExcludeKeywordEntry ::= SEQUENCE {
rlAAAPasswordComplexityExcludeKeywordName DisplayString,
rlAAAPasswordComplexityExcludeKeywordRowStatus RowStatus
}
rlAAAPasswordComplexityExcludeKeywordName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Password Excluded keyword name"
::= { rlAAAPasswordComplexityExcludeKeywordEntry 1 }
rlAAAPasswordComplexityExcludeKeywordRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Status can be destroy or createAndGo"
::= { rlAAAPasswordComplexityExcludeKeywordEntry 2 }
--
-- System Passwords Attributes table
--
rlAAASysPassAttributeTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlAAASysPassAttributeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table specifies the system password's
attributes: the salt needed for hashing
the cleartext password, and the hashing
method used to digest."
::= { rlAAA 72 }
rlAAASysPassAttributeEntry OBJECT-TYPE
SYNTAX RlAAASysPassAttributeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The row definition for this table."
INDEX { rlAAASysPassAttributeLevel}
::= { rlAAASysPassAttributeTable 1 }
RlAAASysPassAttributeEntry ::= SEQUENCE {
rlAAASysPassAttributeLevel INTEGER,
rlAAASysPassAttributePassword DisplayString,
rlAAASysPassAttributeSalt OCTET STRING,
rlAAASysPassAttributeHashMethod RlAAAHashType
}
rlAAASysPassAttributeLevel OBJECT-TYPE
SYNTAX INTEGER (1..15)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "System password level"
::= { rlAAASysPassAttributeEntry 1 }
rlAAASysPassAttributePassword OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..160))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "System Password
allowed formats:
a. Display string starting with '$' for clear text
b. Encrypted password: starts with # sign followed by
octets representing Hex Decimal value or Base64 Encoding
the $ and # as first octet are a directive to indicate what
is the type of password and are not part of the password"
::= { rlAAASysPassAttributeEntry 2 }
rlAAASysPassAttributeSalt OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The salt of the system password used to prevent
rainbow table attacks."
::= { rlAAASysPassAttributeEntry 3 }
rlAAASysPassAttributeHashMethod OBJECT-TYPE
SYNTAX RlAAAHashType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The method the system password uses to hash
the password."
::= { rlAAASysPassAttributeEntry 4 }
END
|