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
|
--**************************************************************************
--**************************************************************************
--
-- Copyright 2011 Cisco Systems, Inc.
-- All Rights Reserved
-- No portions of this material may be reproduced in any
-- form without the written permission of:
-- Cisco Systems, Inc.
-- 170 West Tasman Dr.
-- San Jose, CA 95134
-- USA
--
--**************************************************************************
SA-RG-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
enterprises,
Integer32,
Unsigned32,
IpAddress
FROM SNMPv2-SMI
ifIndex
FROM IF-MIB
TEXTUAL-CONVENTION,
RowStatus,
DisplayString,
MacAddress,
PhysAddress,
TruthValue,
DateAndTime
FROM SNMPv2-TC
InetAddressType,
InetAddress,
InetAddressIPv6,
InetPortNumber
FROM INET-ADDRESS-MIB
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB ;
sa OBJECT IDENTIFIER ::= { enterprises 1429 }
saModules OBJECT IDENTIFIER ::= { sa 79 }
saRg MODULE-IDENTITY
LAST-UPDATED "201505260000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO "support.cisco.com"
DESCRIPTION
"Controls the behavior of router/wireless functions.
Can be part of CM configuration file."
-- history
REVISION "201505260000Z"
DESCRIPTION "Initial release of reduced-set module for releases based on BFC 5.7.x."
::= { saModules 2 }
SaRgTimeZone ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Time zones."
SYNTAX INTEGER {
gmtMinusTwelveEniwetokKwajalein(1),
gmtMinusElevenMidwayIslandSamoa(2),
gmtMinusTenHawaii(3),
gmtMinusNineAlaska(4),
gmtMinusEightPacificTimeCanadaTijuana(5),
gmtMinusSevenArizona(6),
gmtMinusSevenMountainTimeCanada(7),
gmtMinusSixCentralAmerica(8),
gmtMinusSixCentralTimeCanada(9),
gmtMinusSixMexicoCity(10),
gmtMinusSixSaskatchewan(11),
gmtMinusFiveBogotaLimaQuito(12),
gmtMinusFiveEasternTimeCanada(13),
gmtMinusFiveIndianaEast(14),
gmtMinusFourAtlanticTimeCanada(15),
gmtMinusFourCaracasLaPaz(16),
gmtMinusFourSantiago(17),
gmtMinusThreeThirtyNewfoundland(18),
gmtMinusThreeBrasilia(19),
gmtMinusThreeBuenosAiresGeorgetown(20),
gmtMinusThreeGreenland(21),
gmtMinusTwoMid-Atlantic(22),
gmtMinusOneAzores(23),
gmtMinusOneCapeVerdeIs(24),
gmtZeroCasablancaMonrovia(25),
gmtZeroDublinEdinburghLisbonLondon(26),
gmtPlusOneAmsterdamBerlinRomeStockholmVienna(27),
gmtPlusOneBelgradeBratislavaBudapestLjubljanaPrague(28),
gmtPlusOneBrusselsCopenhagenMadridParis(29),
gmtPlusOneSarajevoSkopjeSofijaVilniusWarsawZagreb(30),
gmtPlusOneWestCentralAfrica(31),
gmtPlusTwoAthensIstanbilMinsk(32),
gmtPlusTwoBucharest(33),
gmtPlusTwoHelsinkiRigaTallinn(34),
gmtPlusTwoJerusalem(35),
gmtPlusThreeBaghdad(36),
gmtPlusThreeMoscowStPetersburgVolgograd(37),
gmtPlusThreeNairobi(38),
gmtPlusThreeThirtyTehran(39),
gmtPlusFourAbuDhabiMuscat(40),
gmtPlusFourThirtyKabul(41),
gmtPlusFiveEkaterinburg(42),
gmtPlusFiveThirtyCalcuttaChennaiMumbaiNewDelhi(43),
gmtPlusFiveFourtyFiveKathmandu(44),
gmtPlusSixAlmatyNovosibirsk(45),
gmtPlusSixAstanaDhaka(46),
gmtPlusSixThirtyRangoon(47),
gmtPlusSevenBangkokHanoiJakarta(48),
gmtPlusSevenKrasnoyarsk(49),
gmtPlusEightBeijingChongqingHongKongUrumqi(50),
gmtPlusEightIrkustkUlaanBataar(51),
gmtPlusEightKualaLumpurSingapore(52),
gmtPlusEightTaipei(53),
gmtPlusNineOsakaSapporoTokyo(54),
gmtPlusNineSeoul(55),
gmtPlusNineThirtyAdelaide(56),
gmtPlusTenBrisbane(57),
gmtPlusTenVladivostok(58),
gmtPlusElevenMagadanSolomonIsNewCaledonia(59),
gmtPlusTwelveAucklandWellington(60),
gmtPlusTwelveFiji(61),
gmtPlusThirteenNukuAlofa(62)
}
-- RG Device
saRgDevice OBJECT IDENTIFIER ::= { saRg 1 }
saRgDeviceBase OBJECT IDENTIFIER ::= { saRgDevice 1 }
saRgDeviceMode OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
multiSsid(1),
ipv4(3),
ipv6(4),
dualstack(5) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines the mode of operation for the device.
This parameter is stored in non-vol and is multiSsid(1) by default.
Setting this object via SNMP will cause
the unit to reboot.
This MIB will be superseded in the config file by TLV202.
This MIB will read the proper value if set from TLV202.
This MIB will be superseded by saRgIpMgmtLanMode inbridge(1) or mixed(4).
disable(0): Value will reflect when TLV202 is set to 0. Not all platforms have this value implemented.
multiSsid(1): Default Value. Value supports IPv4RG with multiple SSID
configuration and bridge mode via saRgIpMgmtLanMode MIB.
Bridge mode is the same as eRouter disabled mode.
IPV4RG is the non eRouter behavior that existed before
in our router products.
Ipv4(3): eRouter IPv4 only mode
Ipv6(4): eRouter IPv6 only mode
Dualstack(5): eRouter IPv4 and IPv6 dualstack
Note: cableHome11(2) support is not available."
DEFVAL { 1 }
::= { saRgDeviceBase 1 }
saRgDeviceResetDefaultEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object controls the reset to factory default functionality
of the gateway. This prevents the local user from using the reset
switch to gain access to the setup pages using the default user
name and password. The objective is to prevent theft of service
from a user who reconfigures the device to add users or change
wireless settings.
Enable (object set to true):
1. Momentary press of the Reset Switch (<5 seconds)
DOCSIS restart of the modem (reboot, no reset to factory
default values).
2. Pressing the reset switch for >5 seconds
Reboots and resets of all values (modem and router) to
factory default.
Disable (object set to false):
1. Momentary press of the Reset Switch (<5 seconds)
DOCSIS restart of the modem (reboot, no reset to factory
default values).
2. Pressing the reset switch for >5 seconds
Modem reboots and resets only the cable modem settings to
factory default values. The router settings should remain and
should not NOT reset to factory default."
DEFVAL { true }
::= { saRgDeviceBase 2 }
saRgDeviceRemoteWebAccessPort OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines what port to use for the WAN IP address of the gateway
to be able to access RG web pages.
This value is to be stored in non-vol and will persist across reboots.
Only a factory reset would clear it"
DEFVAL { 8080 }
::= { saRgDeviceBase 4 }
saRgDeviceLanLanIsolation OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This MIB is only available in D3.0 products.
This MIB does not take effect if the modem is in VLAN mode i.e if saRgIpMgmtLanMode.32=vlan(5).
Lan-Lan Isolation allows you block IP access between CPEs connected to the Ethernet ports.
Use this mib in conjunction with saRgDeviceLanWlanIsolation and saRgDot11BssApIsolation.x for
complete isolation between CPEs connected to the RG.
This MIB is written to non-vol and set to disable(0) after a factory reset.
disable(0)- No Isolation
enable(1)- Enable Isolation feature"
DEFVAL { 0 }
::= { saRgDeviceBase 6 }
saRgDeviceLanWlanIsolation OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This MIB is only available in D3.0 products.
This MIB does not take effect if the modem is in VLAN mode i.e if saRgIpMgmtLanMode.32=vlan(5).
Lan-Wlan Isolation allows you block IP access between CPEs connected to the Ethernet port and
Wireless SSIDs.
Use this mib in conjunction with saRgDeviceLanLanIsolation and saRgDot11BssApIsolation.x for
complete isolation between CPEs connected to the RG.
This MIB is written to non-vol and set to disable(0) after a factory reset.
disable(0)- No Isolation
enable(1)- Enable Isolation feature"
DEFVAL { 0 }
::= { saRgDeviceBase 7 }
saRgDeviceIpv6Trans OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
dslite(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This MIB will control which IPv6 transition technology is enabled on the device.
After setting this MIB to disable in the config file, IPv4 traffic will pass normally
through the device. When switched to dslite, the DSLite feature will be enabled.
If eRouter is in IPv6-only mode, DS Lite will tunnel IPv4 traffic over IPv6 to the AFTR
address specified either manually or in the DHCPv6 option-64. See saRgDslite MIB tree
for more details.
If this setting is changed by the config file, the CM will reboot.
This MIB is written to non-vol and set to disable(0) after a factory reset.
disable(0) - No technology is enabled
enable(1) - DS lite feature is enabled"
DEFVAL { 0 }
::= { saRgDeviceBase 8 }
saRgDeviceIpv6Passthrough OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This MIB controls IPv6 passthrough on the RG and is applicable in bridge and router modes.
When disabled the RG will function without any IPv6 passthrough
When IPv6 passthrough is enabled in Bridge Mode the RG will drop all IPv4 traffic
When IPv6 passthrough is enabled in router mode the RG will operate as normal for IPv4 traffic, but all IPv6 traffic will passthrough
This MIB requires CM reboot.
This MIB is written to non-vol and set to disable(0) after a factory reset."
DEFVAL { 0 }
::= { saRgDeviceBase 9 }
saRgDeviceFactoryReset OBJECT-TYPE
SYNTAX INTEGER {
false(0),
routerAndWifi(1),
routerOnly(2),
wifi(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set routerAndWifi(1) to restore default settings of both the router and wifi.
Set routerOnly(2) to restore default settings of the router.
Set wifi(3) to restore default settings of the wifi.
Return false(0) when read."
DEFVAL { 0 }
::= { saRgDeviceBase 1002 }
saRgDeviceTimeSetup OBJECT IDENTIFIER ::= { saRgDevice 5 }
saRgDeviceTimeSetupNtpEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Stored in non-vol, disabled after factory reset."
::= { saRgDeviceTimeSetup 1 }
saRgDeviceTimeSetupNtpServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgDeviceTimeSetupNtpServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Up to 3 NTP servers are supported. This table
is stored in non-vol. Default entries after factory
reset are:
1: time.nist.gov
2: nist.aol-ca.truetime.com
3: nist1-ny.glassey.com"
::= { saRgDeviceTimeSetup 2 }
saRgDeviceTimeSetupNtpServerEntry OBJECT-TYPE
SYNTAX SaRgDeviceTimeSetupNtpServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { saRgDeviceTimeSetupNtpServerIndex }
::= { saRgDeviceTimeSetupNtpServerTable 1 }
SaRgDeviceTimeSetupNtpServerEntry ::= SEQUENCE {
saRgDeviceTimeSetupNtpServerIndex INTEGER,
saRgDeviceTimeSetupNtpServerAddress SnmpAdminString
}
saRgDeviceTimeSetupNtpServerIndex OBJECT-TYPE
SYNTAX INTEGER (1..3)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index"
::= { saRgDeviceTimeSetupNtpServerEntry 1 }
saRgDeviceTimeSetupNtpServerAddress OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP address or FQDN of the NTP server."
::= { saRgDeviceTimeSetupNtpServerEntry 2 }
saRgDeviceTimeSetupZone OBJECT-TYPE
SYNTAX SaRgTimeZone
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Time zone for the gateway.
Stored in non-vol, gmtZeroDublinEdinburghLisbonLondon(26)
after factory reset."
::= { saRgDeviceTimeSetup 3 }
saRgDeviceTimeSetupDst OBJECT-TYPE
SYNTAX INTEGER (0..120)
UNITS "Minutes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Daylight saving time. If set to 0, DST is disabled
Stored in non-vol, 0 after factory reset."
::= { saRgDeviceTimeSetup 4 }
-- MIBs to poll IANA / PD info for eRouter interface
saRgDeviceIanaContent OBJECT IDENTIFIER ::= { saRgDevice 7 }
saRgDeviceIanaIAID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Returns the IAID value embedded in the IA_NA for the
eRouter's DHCPv6 lease."
::= { saRgDeviceIanaContent 1 }
saRgDeviceIanaT1 OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Returns the T1 value embedded in the IA_NA for the eRouter's
DHCPv6 lease."
::= { saRgDeviceIanaContent 2 }
saRgDeviceIanaT2 OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Returns the T2 value embedded in the IA_NA for the eRouter's
DHCPv6 lease."
::= { saRgDeviceIanaContent 3 }
saRgDeviceIanaTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgDeviceIanaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of IA Address entries associated with IA_NA for the
eRouter's DHCPv6 lease."
::= { saRgDeviceIanaContent 4 }
saRgDeviceIanaEntry OBJECT-TYPE
SYNTAX SaRgDeviceIanaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of IA Address entries associated with IA_NA for the
eRouter's DHCPv6 lease."
INDEX { saRgDeviceIanaIndex }
::= { saRgDeviceIanaTable 1 }
SaRgDeviceIanaEntry ::= SEQUENCE {
saRgDeviceIanaIndex INTEGER,
saRgDeviceIanaValue InetAddress,
saRgDeviceIanaPreferredLifetime Integer32,
saRgDeviceIanaValidLifetime Integer32
}
saRgDeviceIanaIndex OBJECT-TYPE
SYNTAX INTEGER (1..4)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index"
::= { saRgDeviceIanaEntry 1 }
saRgDeviceIanaValue OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IPv6 address provided to the eRouter WAN interface via DHCPv6."
::= { saRgDeviceIanaEntry 2 }
saRgDeviceIanaPreferredLifetime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Preferred Lifetime setting for an IPv6 address assigned to the
eRouter."
::= { saRgDeviceIanaEntry 3 }
saRgDeviceIanaValidLifetime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Valid Lifetime setting for an IPv6 address assigned to the
eRouter."
::= { saRgDeviceIanaEntry 4 }
saRgDeviceIapdContent OBJECT IDENTIFIER ::= { saRgDevice 8 }
saRgDeviceIapdIAID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Returns the IAID value embedded in the IA_PD for the
eRouter's DHCPv6 lease."
::= { saRgDeviceIapdContent 1 }
saRgDeviceIapdT1 OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Returns the T1 value embedded in the IA_PD for the eRouter's
DHCPv6 lease."
::= { saRgDeviceIapdContent 2 }
saRgDeviceIapdT2 OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Returns the T2 value embedded in the IA_PD for the eRouter's
DHCPv6 lease."
::= { saRgDeviceIapdContent 3 }
saRgDeviceIapdTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgDeviceIapdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of IA Prefix entries associated with IA_PD for the
eRouter's DHCPv6 lease."
::= { saRgDeviceIapdContent 4 }
saRgDeviceIapdEntry OBJECT-TYPE
SYNTAX SaRgDeviceIapdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of IA Address entries associated with IA_PD for the
eRouter's DHCPv6 lease."
INDEX { saRgDeviceIapdIndex }
::= { saRgDeviceIapdTable 1 }
SaRgDeviceIapdEntry ::= SEQUENCE {
saRgDeviceIapdIndex INTEGER,
saRgDeviceIapdPreferredLifetime Integer32,
saRgDeviceIapdValidLifetime Integer32,
saRgDeviceIapdPrefixLength INTEGER,
saRgDeviceIapdPrefixValue InetAddress
}
saRgDeviceIapdIndex OBJECT-TYPE
SYNTAX INTEGER (1..4)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index"
::= { saRgDeviceIapdEntry 1 }
saRgDeviceIapdPreferredLifetime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Preferred Lifetime setting for an IPv6 address assigned to the
eRouter."
::= { saRgDeviceIapdEntry 2 }
saRgDeviceIapdValidLifetime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Valid Lifetime setting for an IPv6 address assigned to the
eRouter."
::= { saRgDeviceIapdEntry 3 }
saRgDeviceIapdPrefixLength OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Length (in bits) for this prefix."
::= { saRgDeviceIapdEntry 4 }
saRgDeviceIapdPrefixValue OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Prefix address specified in the IA_PD."
::= { saRgDeviceIapdEntry 5 }
-- ******************
-- ***** 802.11 *****
-- ******************
saRgDot11 OBJECT IDENTIFIER ::= { saRg 2 }
-- *************************
-- GENERAL AND CHANNEL SETUP
-- *************************
saRgDot11MgmtBase OBJECT IDENTIFIER ::= { saRgDot11 1 }
saRgDot11OnOffPushButtonTime OBJECT-TYPE
SYNTAX INTEGER (0..11)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies how long to press WPS button to enable or disable
the WiFi interface (primary SSID). When set to 11, the feature
is disabled.
Stored in non-vol, 11 after factory reset."
::= { saRgDot11MgmtBase 20 }
-- =====================
-- PER BSS CONFIGURATION
-- =====================
-- The interface numbers are:
-- 32: SSID1 + LAN
-- 33: SSID2
-- 34: SSID3
-- 35: SSID4
-- 36: SSID5
-- 37: SSID6
-- 38: SSID7
-- 39: SSID8
saRgDot11Bss OBJECT IDENTIFIER ::= { saRgDot11 2 }
saRgDot11BssTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgDot11BssEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"BSS table"
::= { saRgDot11Bss 1 }
saRgDot11BssEntry OBJECT-TYPE
SYNTAX SaRgDot11BssEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the table which represents parameters for SSID."
INDEX { ifIndex }
::= { saRgDot11BssTable 1 }
SaRgDot11BssEntry ::=
SEQUENCE {
saRgDot11BssId PhysAddress,
saRgDot11BssEnable INTEGER,
saRgDot11BssSsid OCTET STRING,
saRgDot11BssSecurityMode INTEGER,
saRgDot11BssClosedNetwork TruthValue,
saRgDot11BssAccessMode INTEGER,
saRgDot11BssMaxNumSta INTEGER,
saRgDot11BssUserStatus INTEGER,
saRgDot11BssApIsolation INTEGER,
saRgDot11BssSecSsidTrafficPriority INTEGER,
saRgDot11BssRejectPriSsidSta TruthValue
}
saRgDot11BssId OBJECT-TYPE
SYNTAX PhysAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Returns the BSSID"
::= { saRgDot11BssEntry 1 }
saRgDot11BssEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2),
enableOnline(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Controls the BSS state.
When set to enableOnline(3), the SSID is enabled only
when the cable modem is online. When the modem changes
state to offline, the AP will send dissasociation messages
to the STAs connected to the SSID and then disable.
The value of primary BSS is stored in non-vol and is enabled(1)
after factory reset.
The other BSSs are disabled by default. If other
BSS's SSID name is not defined, the BSS will not
be enabled."
::= { saRgDot11BssEntry 2 }
saRgDot11BssSsid OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Controls and reflects the service set identifier.
The value of primary BSS is stored in non-vol and is
empty after factory reset.
If other BSS's SSID name is not defined, the BSS
will not be enabled."
::= { saRgDot11BssEntry 3 }
saRgDot11BssSecurityMode OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
wep(1),
wpaPsk(2),
wpa2Psk(3),
wpaEnterprise(4),
wpa2Enterprise(5),
--radiusWep(6)
wpaWpa2Psk(7),
wpaWpa2Enterprise(8)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Secrity for BSS.
Beacause WPA2 is backwords compatible with WPA, setting this
object to wpaWpa2Psk(7) is allowed and has the same effect as
setting to wpa2Psk(3). The same is true for wpaWpa2Enterprise(8)
and wpa2Enterprise(5).
The value for primary BSS is stored in non-vol and is wpaWpa2Psk(7)
after factory reset.
For each other BSS security has to be included in configuration
file or the BSS will be disabled."
::= { saRgDot11BssEntry 4 }
saRgDot11BssClosedNetwork OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Controls whether the device will operate in closed network mode. If
set to true(1), then the network mode is closed and the SSID will not
be broadcast in beacon packets. If set to false(2), then the network
mode is open and the SSID will be broadcast in beacon packets.
The value for primary BSS is stored in non-vol.
The default value for other BSSs is false."
::= { saRgDot11BssEntry 5 }
saRgDot11BssAccessMode OBJECT-TYPE
SYNTAX INTEGER {
allowAny(0),
allowList(1),
denyList(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Controls what stations will be given access to the device. If set to
allowAny(0), then any station will be allowed to connect. If set
to allowList(1), then only stations whose MAC address appears in
the saRgDot11AccessMacTable will be allowed to connect.
The value for primary BSS is stored in non-vol.
The default value for other BSSs is 0."
::= { saRgDot11BssEntry 6 }
saRgDot11BssMaxNumSta OBJECT-TYPE
SYNTAX INTEGER (1..128)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object defines the maximum number of STAs that can connect to
this SSID. Note that the maximum number of STA accross all SSIDs in
the AP is 128.
Default value is 128 for all SSIDs.
The value for primary BSS is stored in non-vol."
::= { saRgDot11BssEntry 11 }
saRgDot11BssUserStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Provides the BSS Id Web UI or Wireless ON/OFF (if exist) status that
is set by the user. If the user can press the Wireless ON/OFF (if
exist) button and its status can be seen in BSS ID Web UI. If user
changes access point status in Web UI, it will reflect the status of
Wireless ON/OFF LED."
::= { saRgDot11BssEntry 13 }
saRgDot11BssApIsolation OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This MIB is only available in D3.0 products.
AP Isolation (Access Point Isolation) allows you to isloate traffic between CPEs on
the same Wifi SSID. This allows a measure of security to prevent hackers from accessing other CPEs in
a public Wifi environment.
Ex. When this MIB is enabled you can not ping between CPEs connected to the same SSID.
AP Isolation is settable per SSID in either VLAN or non VLAN modes.
This MIB is written to non-vol and set to disable(0) after a factory reset.
disable(0)- No AP Isolation
enable(1)- Enable AP Isolation feature."
DEFVAL { 0 }
::= { saRgDot11BssEntry 15 }
saRgDot11BssSecSsidTrafficPriority OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
acBk(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This MIB is only available in D3.0 products and applicable for secondary SSID in hotspot
environment. When disabled, all the traffic to the secondary SSID in question would have same WMM QoS
parameters as the primary SSID. When set to ac_bk(1), the secondary SSID traffic would be classified as
AC_BK resulting in better DS prioritization for primary SSID traffic"
DEFVAL { 0 }
::= { saRgDot11BssEntry 16 }
saRgDot11BssRejectPriSsidSta OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This MIB is only available in D3.0 products and applicable for secondary SSID in hotspot
environment. By default, a private SSID STA can associate to hotspot SSID. This MIB can be used
to reject private SSID STAs to associate with hotspot SSID if and only if STA has associated with private
SSID once before."
DEFVAL { false }
::= { saRgDot11BssEntry 17 }
-- PRIMARY BSS SPECIFIC
saRgDot11BssPrimary OBJECT IDENTIFIER ::= { saRgDot11Bss 3 }
saRgDot11BssPrimarySsidType OBJECT-TYPE
SYNTAX INTEGER {
mac6char(1),
mac6char-prefix(2),
mac4char-prefix(3),
prefix-force(4)
-- Value 5 is reserved
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the type of SSID used.
mac6char(1): If saRgDot11BssSsid.32 is empty, the SSID is the last
3 bytes of DOCSIS MAC address, displayed as 6 lowercase
hex characters.
If saRgDot11BssSsid.32 is not empty, SSID is the value from
saRgDot11BssSsid.32 (set by SNMP or the user).
mac6char-prefix(2): the same as mac6char(2) with the prefix addition
defined in saRgDot11BssPrimarySsidPrefix.
If saRgDot11BssSsid.32 is not empty, this prefix
does not show.
mac4char-prefix(3): the same as mac6char-prefix(2) but 4 MAC characters
instead of 6.
prefix-force(4): The prefix is always included, even if saRgDot11BssSsid.32
is empty.
Note: stored in non-vol. mac6char(1) after factory reset"
::= { saRgDot11BssPrimary 1 }
saRgDot11BssPrimarySsidPrefix OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The prefix for primary SSID, if saRgDot11BssSsid.32 is empty
and saRgDot11BssPrimarySsidType is set to mac6char-prefix(2).
Stored in non-vol. Empty after factory reset."
::= { saRgDot11BssPrimary 2 }
-- ******************
-- PRIVACY PARAMETERS
-- ******************
-- saRgDot11MgmtPrivacy contains objects from the 'Privacy' web page
saRgDot11Privacy OBJECT IDENTIFIER ::= { saRgDot11 3 }
-- WPA
saRgDot11WpaTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgDot11WpaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"WPA table"
::= { saRgDot11Privacy 1 }
saRgDot11WpaEntry OBJECT-TYPE
SYNTAX SaRgDot11WpaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the table which represents WPA parameters for BSS."
INDEX { ifIndex }
::= { saRgDot11WpaTable 1 }
SaRgDot11WpaEntry ::=
SEQUENCE {
saRgDot11WpaAlgorithm INTEGER,
saRgDot11WpaPreSharedKey OCTET STRING,
saRgDot11WpaGroupRekeyInterval INTEGER
}
saRgDot11WpaAlgorithm OBJECT-TYPE
SYNTAX INTEGER {
tkip(0),
aes(1),
tkipPlusAes(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tkip(0) is not allowed when security is WPA2.
The value for primary BSS is stored in non-vol and tkipPlusAes(2)
after factory reset.
The default value for other BSSs is tkip."
::= { saRgDot11WpaEntry 1 }
saRgDot11WpaPreSharedKey OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(8..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Sets the WPA Pre-Shared Key (PSK). This value MUST be either a
64-digit hexadecimal number, OR a 8 to 63 character ASCII string.
The value for primary BSS is stored in non-vol and is the serial
number of the device after factory reset.
The default value for other BSSs is 8 0's.
This object return an empty string when read."
::= { saRgDot11WpaEntry 2 }
saRgDot11WpaGroupRekeyInterval OBJECT-TYPE
SYNTAX INTEGER
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Sets the WPA Group Rekey Interval in seconds. Set to zero to disable
periodic rekeying.
The value for primary BSS is stored in non-vol and is 3600 after
factory reset.
The default value for other BSSs is 3600."
::= { saRgDot11WpaEntry 3 }
-- RADIUS
saRgDot11RadiusTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgDot11RadiusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"WPA table"
::= { saRgDot11Privacy 2 }
saRgDot11RadiusEntry OBJECT-TYPE
SYNTAX SaRgDot11RadiusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the table which represents WPA parameters for BSS."
INDEX { ifIndex }
::= { saRgDot11RadiusTable 1 }
SaRgDot11RadiusEntry ::=
SEQUENCE {
saRgDot11RadiusAddressType InetAddressType,
saRgDot11RadiusAddress InetAddress,
saRgDot11RadiusPort InetPortNumber,
saRgDot11RadiusKey DisplayString,
saRgDot11RadiusReAuthInterval INTEGER
}
saRgDot11RadiusAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Type of RADIUS server IP address."
DEFVAL { ipv4 }
::= { saRgDot11RadiusEntry 1 }
saRgDot11RadiusAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Sets RADIUS server IP address.
The value for primary BSS is stored in non-vol and is 0.0.0.0
after factory reset.
The default value for other BSSs is 0.0.0.0."
::= { saRgDot11RadiusEntry 2 }
saRgDot11RadiusPort OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Sets the UDP port used to communicate with the RADIUS server.
The value for primary BSS is stored in non-vol and is 1645
after factory reset.
The default value for other BSSs is 1645."
::= { saRgDot11RadiusEntry 3 }
saRgDot11RadiusKey OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Sets or displays the RADIUS key.
The value for primary BSS is stored in non-vol and is null
after factory reset.
The default value for other BSSs is null.
This object return an empty string when read."
::= { saRgDot11RadiusEntry 4 }
saRgDot11RadiusReAuthInterval OBJECT-TYPE
SYNTAX INTEGER
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Sets the RADIUS Rekey Interval in seconds.
Set to zero to disable periodic rekeying.
The value for primary BSS is stored in non-vol and is 3600
after factory reset.
The default value for other BSSs is 3600."
::= { saRgDot11RadiusEntry 5 }
-- WEP
saRgDot11WepTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgDot11WepEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"WEP table"
::= { saRgDot11Privacy 3 }
saRgDot11WepEntry OBJECT-TYPE
SYNTAX SaRgDot11WepEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the table which represents WPA parameters for BSS."
INDEX { ifIndex }
::= { saRgDot11WepTable 1 }
SaRgDot11WepEntry ::=
SEQUENCE {
saRgDot11WepDefaultKey INTEGER,
saRgDot11WepEncryptionMode INTEGER,
saRgDot11WepPassPhrase DisplayString
}
saRgDot11WepDefaultKey OBJECT-TYPE
SYNTAX INTEGER (1..4)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Controls and reflects the default key which will be used when 64 or
128 bit encryption is enabled. Indicates the entry from the
saRgDot1164BitKeyTable if saRgDot11EncryptionMode is set to wep64(1), or
the entry from the saRgDot11128BitKeyTable if saRgDot11EncryptionMode is set
to wep128(2).
The value for primary BSS is stored in non-vol and is 1 after factory reset.
The default value for other BSSs is 1."
::= { saRgDot11WepEntry 1 }
saRgDot11WepEncryptionMode OBJECT-TYPE
SYNTAX INTEGER {
wep64(0),
wep128(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value for primary BSS is stored in non-vol and is wep128(1)
after factory reset.
The default value for other BSSs is wep128."
::= { saRgDot11WepEntry 2 }
saRgDot11WepPassPhrase OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Controls and reflects the WEP pass phrase.
The value for primary BSS is stored in non-vol and is null
after factory reset.
The default value for other BSSs is null.
This object return an empty string when read."
::= { saRgDot11WepEntry 3 }
-- WEP 64-bit keys:
saRgDot11Wep64BitKeyTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgDot11Wep64BitKeyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of 40 bit key values used when saRgDot11WepEncryptionMode
is set to wep64(0)."
::= { saRgDot11Privacy 4 }
saRgDot11Wep64BitKeyEntry OBJECT-TYPE
SYNTAX SaRgDot11Wep64BitKeyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the table which represents a single 64 bit key."
INDEX { ifIndex, saRgDot11Wep64BitKeyIndex }
::= { saRgDot11Wep64BitKeyTable 1 }
SaRgDot11Wep64BitKeyEntry ::=
SEQUENCE {
saRgDot11Wep64BitKeyIndex Integer32,
saRgDot11Wep64BitKeyValue OCTET STRING
}
saRgDot11Wep64BitKeyIndex OBJECT-TYPE
SYNTAX Integer32 (1..4)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Identifies the instance of this table row."
::= { saRgDot11Wep64BitKeyEntry 1 }
saRgDot11Wep64BitKeyValue OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(5))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A 40 bit key to be used when saRgDot11WepEncryptionMode is set to wep64(1).
The value for primary BSS is stored in non-vol and is all 1's after factory
reset.
The default value for other BSSs is all 0's.
This object return an empty string when read."
::= { saRgDot11Wep64BitKeyEntry 2 }
-- WEP 128-bit keys:
saRgDot11Wep128BitKeyTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgDot11Wep128BitKeyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of 104 bit key values used when saRgDot11WepEncryptionMode
is set to wep128(1)."
::= { saRgDot11Privacy 5 }
saRgDot11Wep128BitKeyEntry OBJECT-TYPE
SYNTAX SaRgDot11Wep128BitKeyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the table which represents a single 128 bit key."
INDEX { ifIndex, saRgDot11Wep128BitKeyIndex }
::= { saRgDot11Wep128BitKeyTable 1 }
SaRgDot11Wep128BitKeyEntry ::=
SEQUENCE {
saRgDot11Wep128BitKeyIndex Integer32,
saRgDot11Wep128BitKeyValue OCTET STRING
}
saRgDot11Wep128BitKeyIndex OBJECT-TYPE
SYNTAX Integer32 (1..4)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Identifies the instance of this table row."
::= { saRgDot11Wep128BitKeyEntry 1 }
saRgDot11Wep128BitKeyValue OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(13))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A 104 bit key to be used when saRgDot11WepEncryptionMode is set to wep128(2).
The value for primary BSS is stored in non-vol and is all 1's.
The default value for other BSSs is all 0's.
This object return an empty string when read."
::= { saRgDot11Wep128BitKeyEntry 2 }
saRgDot11PrivacyWps OBJECT IDENTIFIER ::= { saRgDot11Privacy 6 }
saRgDot11PrivacyWpsPushButtonTime OBJECT-TYPE
SYNTAX INTEGER (0..10)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies how long to press WPS button to start the WPS
procedure. 0 means disable WPS.
Stored in non-vol, 1 after factory reset."
::= { saRgDot11PrivacyWps 1 }
-- ASSOCIATED CLIENTS TREE
saRgDot11Client OBJECT IDENTIFIER ::= { saRgDot11 4 }
saRgDot11ClientTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgDot11ClientEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of wireless clients that are associated with the BSS."
::= { saRgDot11Client 2 }
saRgDot11ClientEntry OBJECT-TYPE
SYNTAX SaRgDot11ClientEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the table that specifies a single station MAC address."
INDEX { ifIndex, saRgDot11ClientIndex }
::= { saRgDot11ClientTable 1 }
SaRgDot11ClientEntry ::=
SEQUENCE {
saRgDot11ClientIndex Integer32,
saRgDot11ClientStation MacAddress
}
saRgDot11ClientIndex OBJECT-TYPE
SYNTAX Integer32 (1..128)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the instance of this table row."
::= { saRgDot11ClientEntry 1 }
saRgDot11ClientStation OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A MAC address of a client associated with the BSS."
::= { saRgDot11ClientEntry 2 }
----------------------------------------------------------------------
--- saRgDot11ExtMgmt
--- Table to support Multiple Radios
--- Note: Indexes may be set to support specific hardware interfaces.
--- Index 32 MUST match saRgDot11OperMode and vice versa
-----------------------------------------------------------------------
saRgDot11ExtMgmt OBJECT IDENTIFIER ::= { saRgDot11 6 }
saRgDot11ExtMgmtTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgDot11ExtMgmtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Multiple Radio Configuration Table"
::= { saRgDot11ExtMgmt 1 }
saRgDot11ExtMgmtEntry OBJECT-TYPE
SYNTAX SaRgDot11ExtMgmtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the table which represents parameters for a Radio.
Index 32 should be set for Radio 0 -- 2.4 GHz if populated.
Index 112 should be set for Radio 1"
INDEX { ifIndex }
::= { saRgDot11ExtMgmtTable 1 }
SaRgDot11ExtMgmtEntry ::=
SEQUENCE {
saRgDot11ExtOperMode INTEGER,
saRgDot11ExtCurrentChannel Unsigned32,
saRgDot11ExtBeaconInterval Unsigned32,
saRgDot11ExtDTIMInterval Unsigned32,
saRgDot11ExtFragThresh Unsigned32,
saRgDot11ExtRTSThresh Unsigned32,
saRgDot11ExtSRL Unsigned32,
saRgDot11ExtLRL Unsigned32,
saRgDot11ExtCtsProtectionEnable TruthValue,
saRgDot11ExtRate INTEGER,
saRgDot11ExtOutputPower INTEGER,
saRgDot11ExtCountry INTEGER,
saRgDot11ExtAntenna INTEGER,
saRgDot11ExtMbssUserControl INTEGER,
saRgDot11ExtMbssUseNonvol TruthValue,
saRgDot11ExtMbssAdminControl INTEGER,
saRgDot11ExtActualChannel INTEGER,
saRgDot11ExtOnOffPushButtonTime INTEGER,
saRgDot11ExtWmm INTEGER,
saRgDot11ExtWmmNoAck INTEGER,
saRgDot11ExtMulticastRate INTEGER,
saRgDot11ExtWirelessButtonOperation INTEGER,
saRgDot11ExtWpsEnable INTEGER,
saRgDot11ExtWpsPin Integer32,
saRgDot11ExtForceRescan INTEGER
}
saRgDot11ExtMbssUserControl OBJECT-TYPE
SYNTAX INTEGER (1..8|65536..16711680)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Sets the number of user controlled Wifi networks via web pages.
1: The user has control over the primary wireless network only.
No guest network page is displayed.
2: The user has control over the primary wireless network and
one guest network. No drop down menu (or only 1 item in the
menu) for additional guest network configuration.
3: Same as above with 2 guest networks.
4: Same as above with 3 guest networks.
5: Same as above with 4 guest networks.
6: Same as above with 5 guest networks.
7: Same as above with 6 guest networks.
8: Same as above with 7 guest networks.
Bit Mask Control:
Bit 16: -- User has control over Primary Wireless Network : 65536
Bit 17: -- User has control over Guest Network 1 (interface 33) : 131072
Bit 18: -- User has control over Guest Network 2 (interface 34) : 262144
Bit 19: -- User has control over Guest Network 3 (interface 35) : 524288
Bit 20: -- User has control over Guest Network 4 (interface 36) :1048576
Bit 21: -- User has control over Guest Network 5 (interface 37) :2097152
Bit 22: -- User has control over Guest Network 6 (interface 38) :4194304
Bit 23: -- User has control over Guest Network 7 (interface 39) :8388608
This object value is stored in non-vol and set to 1
after factory reset."
::= { saRgDot11ExtMgmtEntry 15 }
saRgDot11ExtMbssUseNonvol OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Allows to save additional BSS parameters to non-vol if set to true.
Primary BSS parameters are ALWAYS stored in non-vol.
This object value is stored in non-vol and set to false
after factory reset."
::= { saRgDot11ExtMgmtEntry 16 }
saRgDot11ExtMbssAdminControl OBJECT-TYPE
SYNTAX INTEGER (1..8|65536..16711680)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Sets the number of admin controlled Wifi networks via web pages.
1: The admin has control over the primary wireless network only.
No guest network page is displayed.
2: The admin has control over the primary wireless network and
one guest network. No drop down menu (or only 1 item in the
menu) for additional guest network configuration.
3: Same as above with 2 guest networks.
4: Same as above with 3 guest networks.
5: Same as above with 4 guest networks.
6: Same as above with 5 guest networks.
7: Same as above with 6 guest networks.
8: Same as above with 7 guest networks.
Bit 16: -- Admin Has control over Primary Wireless Network : 65536
Bit 17: -- Admin Has control over Guest Network 1 (interface 33) : 131072
Bit 18: -- Admin Has control over Guest Network 2 (interface 34) : 262144
Bit 19: -- Admin Has control over Guest Network 3 (interface 35) : 524288
Bit 20: -- Admin Has control over Guest Network 4 (interface 36) :1048576
Bit 21: -- Admin Has control over Guest Network 5 (interface 37) :2097152
Bit 22: -- Admin Has control over Guest Network 6 (interface 38) :4194304
Bit 23: -- Admin Has control over Guest Network 7 (interface 39) :8388608
This object value is stored in non-vol and set to 1
after factory reset."
::= { saRgDot11ExtMgmtEntry 17 }
saRgDot11ExtActualChannel OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reports the current channel number that wireless is on.
The value of 0 means wireless is disabled."
::= { saRgDot11ExtMgmtEntry 18 }
-- saRgDot11ApplySettings: do 'on the fly' config with settings from above.
-- This scalar object was placed by itself at ieee802saRgDot11Mgmt 100 because
-- it applies all settings from all current and possibly future 802.11
-- groups. Wanted to leave plenty of room to add new groups in the future.
saRgDot11ApplySettings OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If set to true(1), then all the settings (MIB values)
from this MIB tree will be applied to run time configuration,
modifying previous RG operation with the new settings.
Before setting the value to true, MIBs modified in the MIB
tree are stored in non-vol and will not modify RG operation
until saRgDot11ApplySettings is set to true or CM resets.
Note: this applies only to the MIB objects that are stored
in non-vol.
Always returns false(2) when read."
::= { saRgDot11 1001 }
-- =============
-- IP management
-- =============
saRgIpMgmt OBJECT IDENTIFIER ::= { saRg 3 }
-- { saRgIpMgmt 1 } reserved for WAN IP definition (currently only DHCP)
-- LAN NETWORK DEFINITIONS
saRgIpMgmtLanTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgIpMgmtLanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Networks on the LAN side.
Primary BSS stored in non-vol."
::= { saRgIpMgmt 2 }
saRgIpMgmtLanEntry OBJECT-TYPE
SYNTAX SaRgIpMgmtLanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of networks on the LAN side."
INDEX { ifIndex }
::= { saRgIpMgmtLanTable 1 }
SaRgIpMgmtLanEntry ::= SEQUENCE {
saRgIpMgmtLanMode INTEGER,
saRgIpMgmtLanNetwork IpAddress,
saRgIpMgmtLanNetworksAllow INTEGER,
saRgIpMgmtLanSubnetMask IpAddress,
saRgIpMgmtLanGateway IpAddress,
saRgIpMgmtLanDhcpServer INTEGER,
saRgIpMgmtLanNapt INTEGER,
saRgIpMgmtLanTypeOfService INTEGER,
saRgIpMgmtLanDhcp125Option INTEGER,
saRgIpMgmtLanUpnp INTEGER,
saRgIpMgmtLanDhcpOption43 SnmpAdminString
}
saRgIpMgmtLanMode OBJECT-TYPE
SYNTAX INTEGER {
bridge(1),
router(2),
l2tpv2-client(3),
mixed(4),
vlan(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines the mode of operation for the device.
Setting this object via SNMP for the primary BSS will cause
the unit to reboot.
Setting this object via SNMP for the secondary BSSs will not
cause the unit to reboot.
The value for primary BSS is stored in non-vol and is router
after factory reset.
The default value for other BSSs is router.
This MIB supersedes saRgDeviceMode for the .32 interface.
l2tpv2-client(3)is obsoleted and NOT supported.
bridge(1): Sets individual interface to bridging mode
(for IPv6 interfaces DHCPv6 is external)
router(2): Sets individual interface to routing mode
(for IPv6 interfaces DHCPv6 is internal)
l2tpv2-client(3): <obsolete>
mixed(4): For mixed mode. This setting is applicable only to
.32 interface. This value is used on conjunction with
saRgIpMgmtLanPortControlTable
*Note: mixed(4) mode NOT Supported by DOCSIS 2.0 products.
vlan (5): Enables the vlan control feature.
See saRgVlanTable MIBs for VLAN configuration information."
DEFVAL { 2 }
::= { saRgIpMgmtLanEntry 1 }
saRgIpMgmtLanNetwork OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The LAN-Trans network number.
Default for primary BSS is 192.168.0.0
Default for other BSSs is 192.168.ifIndex.0"
::= { saRgIpMgmtLanEntry 3 }
saRgIpMgmtLanNetworksAllow OBJECT-TYPE
SYNTAX INTEGER {
default(0),
anyPrivateClass(1),
anyClass(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Allows the user via the internal Web GUI (Lan Setup page
to input an IPv4 public or private Local IP address other than a
class C Private address (the default Network for the Primary BSS = 192.168.0.0/24, with
the default Local Ip address = 192.168.0.1.)
In all cases the mask must be 255.255.255.x since the RG is limited to supporting
a maximum of 253 IP addresses.
(See RFC1918 for a description of private IP addresses and specified ranges.)
Available Mib settings:
default(0): Only the third and fourth octets are editable in
the Web GUI for the Local IP address (Ex. 192.168.x.x/24).
anyPrivateClass(1): All 4 octets are editable in the Web GUI for Local IP address, but
the network specified must be a Private class A, B or C network address.
(Ex. A=10.x.x.x, B=172.16.x.x, C=192.168.x.x).
anyClass(2): All 4 octets are editable in the Web GUI for Local IP address, and
the network specified could be any public or private class A, B, or C address.
If the MSO specifically sets a Local IP address in saRgIpMgmtLanNetwork to a value other than
the default value (for example: 192.168.0.1) then these fields will be uneditable by the user (grayed out)."
DEFVAL { 0 }
::= { saRgIpMgmtLanEntry 4 }
saRgIpMgmtLanSubnetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The device MUST provide the value of this MIB
object in the Option 1 (Subnet Mask) of
DHCP OFFER and ACK messages sent to a LAN IP Device."
DEFVAL { 'ffffff00'h } -- 255.255.255.0
::= { saRgIpMgmtLanEntry 5 }
saRgIpMgmtLanGateway OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of this address is specified by
saRgIpMgmtLanNetwokRouterType. The PS MUST
provide the value of this MIB object in the
Option 3 (Router IP address) of the DHCP
OFFER and ACK messages sent to the LAN IP Device.
Default for primary BSS is 192.168.0.1
Default for other BSSs is 192.168.ifIndex.1"
::= { saRgIpMgmtLanEntry 7 }
saRgIpMgmtLanDhcpServer OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value for primary BSS is stored in non-vol.
The default value for other BSSs is:
Enabled by default if interface is in router mode.
Always disabled if interface is in bridge mode."
::= { saRgIpMgmtLanEntry 8 }
saRgIpMgmtLanNapt OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value for primary BSS is stored in non-vol.
The default value for other BSSs is:
Enabled by default if interface is in router mode.
Always disabled if interface is in bridge mode."
::= { saRgIpMgmtLanEntry 9 }
saRgIpMgmtLanTypeOfService OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Definition of the TOS bits for the Network.
This object does not apply to primary BSS."
DEFVAL { 0 }
::= { saRgIpMgmtLanEntry 10 }
saRgIpMgmtLanDhcp125Option OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
addSsidName(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This option controls if the RG adds a Cisco specific
suboption (number 17) to DHCP DISCOVER and REQUEST
from the clients that are bridged on the BSS:
0: do not add the option
1: add suboption 17 to Cisco specific enterprise-id
(9) within DHCP option 125. The content is the SSID name."
DEFVAL { 0 }
::= { saRgIpMgmtLanEntry 11 }
saRgIpMgmtLanUpnp OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/Disable the UPnP agent.
The value is stored in non-vol and is disabled after factory default for the primary SSID.
The UPnP agents for additional networks are enabled by default.
"
DEFVAL { 0 }
::= { saRgIpMgmtLanEntry 13 }
saRgIpMgmtLanDhcpOption43 OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If option 60 is set from the CPE then return this value in option 43 of the DHCP Reply.
If this value is null then do not reply with option 43 (default is null)
This MIB will apply to the Primary SSID (intface .32) only"
::= { saRgIpMgmtLanEntry 14 }
-- LAN DHCP SERVERS DEFINITIONS
saRgIpMgmtLanDhcpServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgIpMgmtLanDhcpServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Networks on the LAN side.
Stored in non-vol. .10-.128 for primary BSS
after factory reset."
::= { saRgIpMgmt 3 }
saRgIpMgmtLanDhcpServerEntry OBJECT-TYPE
SYNTAX SaRgIpMgmtLanDhcpServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of networks on the LAN side."
INDEX { ifIndex }
::= { saRgIpMgmtLanDhcpServerTable 1 }
SaRgIpMgmtLanDhcpServerEntry ::= SEQUENCE {
saRgIpMgmtLanDhcpServerPoolStart IpAddress,
saRgIpMgmtLanDhcpServerPoolEnd IpAddress,
saRgIpMgmtLanDhcpServerLeaseTime Unsigned32,
}
saRgIpMgmtLanDhcpServerPoolStart OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The start of range LAN Trans IP Addresses. The type of
this address is specified by saRgIpMgmtLanDhcpServerPoolStartType.
Default value depends on IP network and subnet."
::= { saRgIpMgmtLanDhcpServerEntry 2 }
saRgIpMgmtLanDhcpServerPoolEnd OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The end of range for LAN-Trans IP Addresses. The type of
this address is specified by saRgIpMgmtLanDhcpServerPoolEndType.
Default value depends on IP network and subnet."
::= { saRgIpMgmtLanDhcpServerEntry 4 }
saRgIpMgmtLanDhcpServerLeaseTime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The PS MUST provide the value of this MIB object in the
Option 51 (IP Address lease time) of the DHCP OFFER and
ACK messages sent to the LAN IP Device."
DEFVAL { 3600 }
::= { saRgIpMgmtLanDhcpServerEntry 5 }
--====================================================================
--
-- saRgIpMgmtLanAddrTable (CDP LAN Address Table)
--
-- The saRgIpMgmtLanAddrTable contains the DHCP parameters
-- for each IP address served to the LAN-Trans realm.
--
--=========================================================================
saRgIpMgmtLanAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgIpMgmtLanAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IP addresses of devices served by DHCP servers."
::= { saRgIpMgmt 4 }
saRgIpMgmtLanAddrEntry OBJECT-TYPE
SYNTAX SaRgIpMgmtLanAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of general parameters pertaining to LAN-Trans IP
address reservations and leases."
INDEX { ifIndex, saRgIpMgmtLanAddrIndex }
::= { saRgIpMgmtLanAddrTable 1 }
SaRgIpMgmtLanAddrEntry ::= SEQUENCE {
saRgIpMgmtLanAddrIndex INTEGER,
saRgIpMgmtLanAddrIp IpAddress,
saRgIpMgmtLanAddrPhysAddr PhysAddress,
saRgIpMgmtLanAddrLeaseCreateTime DateAndTime,
saRgIpMgmtLanAddrLeaseExpireTime DateAndTime,
saRgIpMgmtLanAddrHostName SnmpAdminString,
saRgIpMgmtLanAddrClientId SnmpAdminString,
saRgIpMgmtLanAddrInterface SnmpAdminString,
saRgIpMgmtLanAddrClientNotes SnmpAdminString,
saRgIpMgmtLanAddrCpeStatus INTEGER,
saRgIpMgmtLanAddrSignalStrength Integer32,
saRgIpMgmtLanAddrRequestedOptionsList OCTET STRING,
saRgIpMgmtLanAddrParameterRequestList OCTET STRING
}
saRgIpMgmtLanAddrIndex OBJECT-TYPE
SYNTAX INTEGER (1..128)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the the LAN IP Device in the LAN-Trans Realm."
::= { saRgIpMgmtLanAddrEntry 1 }
saRgIpMgmtLanAddrIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { saRgIpMgmtLanAddrEntry 3 }
saRgIpMgmtLanAddrPhysAddr OBJECT-TYPE
SYNTAX PhysAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The client's (i.e., LAN IP Device's) hardware address as
indicated in the chaddr field of its DHCP REQUEST message."
::= { saRgIpMgmtLanAddrEntry 4 }
saRgIpMgmtLanAddrLeaseCreateTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the date and time when the LAN IP lease was
created (if it has not yet been renewed) or last renewed."
::= { saRgIpMgmtLanAddrEntry 5 }
saRgIpMgmtLanAddrLeaseExpireTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the date and time when the LAN IP address lease
expired or will expire."
::= { saRgIpMgmtLanAddrEntry 6 }
saRgIpMgmtLanAddrHostName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the Host Name of the LAN IP address, based on DCHP
option 12."
::= { saRgIpMgmtLanAddrEntry 7 }
saRgIpMgmtLanAddrClientId OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the Client Class Identifier, based on DHCP option 60."
::= { saRgIpMgmtLanAddrEntry 8 }
saRgIpMgmtLanAddrInterface OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This will show the associated interface (LAN, WiFi or MoCA) of the connected CPE."
::= { saRgIpMgmtLanAddrEntry 9 }
--===================================================================
--
-- saRgIpMgmtDnsServerTable (CDP WAN DNS Server Table)
--
-- The saRgIpMgmtDnsServerTable is a table of 3 cable network
-- and Internet DNS Servers.
--
--===================================================================
saRgIpMgmtDnsServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgIpMgmtDnsServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the IP addresses of cable network and
Internet DNS servers, in the order of preference in which
the PS's CNP will query them, when it cannot resolve a DNS
query using local information. Entries in this table are
updated with the information contained in DHCP Option 6,
received during both the WAN-Man and WAN-Data IP
acquisition processes.
Stored in non-vol and 0.0.0.0 for all servers after
factory reset."
::= { saRgIpMgmt 5 }
saRgIpMgmtDnsServerEntry OBJECT-TYPE
SYNTAX SaRgIpMgmtDnsServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of cable network and Internet DNS servers."
INDEX { saRgIpMgmtDnsServerOrder }
::= { saRgIpMgmtDnsServerTable 1 }
SaRgIpMgmtDnsServerEntry ::= SEQUENCE {
saRgIpMgmtDnsServerOrder INTEGER,
saRgIpMgmtDnsServerIp IpAddress,
saRgIpMgmtDnsServerIpv6 InetAddress
}
saRgIpMgmtDnsServerIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This parameter indicates the IP address of a WAN DNS
server."
::= { saRgIpMgmtDnsServerEntry 3 }
--==============================
-- LAN DHCP fixed IP assignments
--==============================
saRgIpMgmtDhcpFixedIpTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgIpMgmtDhcpFixedIpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Fixed IP address assignments for DHCP server.
Table does not return any row if DHCP disabled.
The value for primary BSS is stored in non-vol."
::= { saRgIpMgmt 6 }
saRgIpMgmtDhcpFixedIpEntry OBJECT-TYPE
SYNTAX SaRgIpMgmtDhcpFixedIpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of general parameters pertaining to LAN-Trans IP
address reservations and leases."
INDEX { ifIndex, saRgIpMgmtDhcpFixedIpIndex }
::= { saRgIpMgmtDhcpFixedIpTable 1 }
SaRgIpMgmtDhcpFixedIpEntry ::= SEQUENCE {
saRgIpMgmtDhcpFixedIpIndex INTEGER,
saRgIpMgmtDhcpFixedIpRowStatus RowStatus,
saRgIpMgmtDhcpFixedIpAddress IpAddress,
saRgIpMgmtDhcpFixedIpPhysAddr PhysAddress,
saRgIpMgmtDhcpFixedIpHostName SnmpAdminString
}
saRgIpMgmtDhcpFixedIpIndex OBJECT-TYPE
SYNTAX INTEGER (1..16)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the the LAN IP Device in the LAN-Trans Realm."
::= { saRgIpMgmtDhcpFixedIpEntry 1 }
saRgIpMgmtDhcpFixedIpRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status. A row can be destroyed."
::= { saRgIpMgmtDhcpFixedIpEntry 2 }
saRgIpMgmtDhcpFixedIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
::= { saRgIpMgmtDhcpFixedIpEntry 4 }
saRgIpMgmtDhcpFixedIpPhysAddr OBJECT-TYPE
SYNTAX PhysAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The client's (i.e., LAN IP Device's) hardware address as
indicated in the chaddr field of its DHCP REQUEST message."
::= { saRgIpMgmtDhcpFixedIpEntry 5 }
saRgIpMgmtDhcpFixedIpHostName OBJECT-TYPE
SYNTAX SnmpAdminString(SIZE(0..80))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is the Host Name of the LAN IP address, based on DCHP
option 12."
::= { saRgIpMgmtDhcpFixedIpEntry 6 }
-- ==============
-- Static routing
saRgIpMgmtStaticRouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgIpMgmtStaticRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Static route entries in the routing table.
This table is saved in non-vol and is empty
after factory reset."
::= { saRgIpMgmt 8 }
saRgIpMgmtStaticRouteEntry OBJECT-TYPE
SYNTAX SaRgIpMgmtStaticRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of static route entries in the routing table."
INDEX { saRgIpMgmtStaticRouteIndex }
::= { saRgIpMgmtStaticRouteTable 1 }
SaRgIpMgmtStaticRouteEntry ::= SEQUENCE {
saRgIpMgmtStaticRouteIndex INTEGER,
saRgIpMgmtStaticRouteRowStatus RowStatus,
saRgIpMgmtStaticRouteNetwork IpAddress,
saRgIpMgmtStaticRouteSubnetMask IpAddress,
saRgIpMgmtStaticRouteGateway IpAddress,
saRgIpMgmtStaticRouteRipAdvertise TruthValue
}
saRgIpMgmtStaticRouteIndex OBJECT-TYPE
SYNTAX INTEGER (1..16)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the the table."
::= { saRgIpMgmtStaticRouteEntry 1 }
saRgIpMgmtStaticRouteRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status."
::= { saRgIpMgmtStaticRouteEntry 2 }
saRgIpMgmtStaticRouteNetwork OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Static route IP network definition"
::= { saRgIpMgmtStaticRouteEntry 3 }
saRgIpMgmtStaticRouteSubnetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Static route network mask definition"
::= { saRgIpMgmtStaticRouteEntry 4 }
saRgIpMgmtStaticRouteGateway OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Gateway to the network defined in
saRgIpMgmtStaticRouteNetwork and
saRgIpMgmtStaticRouteSubnetMask."
::= { saRgIpMgmtStaticRouteEntry 5 }
saRgIpMgmtStaticRouteRipAdvertise OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If set to true(1), then static route entry
will be advertised in RIP."
DEFVAL { false }
::= { saRgIpMgmtStaticRouteEntry 6 }
-- WAN interface
saRgIpMgmtWanAddr OBJECT IDENTIFIER ::= { saRgIpMgmt 9 }
saRgIpMgmtWanAddrBase OBJECT IDENTIFIER ::= { saRgIpMgmtWanAddr 1 }
saRgIpMgmtWanMode OBJECT-TYPE
SYNTAX INTEGER {
dhcp(1),
static(2),
dualIp(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When dualIp(3) is selected, the second IP stack is used for
user operations.
Stored in non-vol, dhcp(1) after factory reset."
::= { saRgIpMgmtWanAddrBase 1 }
saRgIpMgmtWanMtu OBJECT-TYPE
SYNTAX INTEGER (0..1500)
UNITS "bytes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MTU size for the IP layer. Valid range is 256 to 1500.
0 is the default which is 1500.
Stored in non-vol, 0 after factory reset."
::= { saRgIpMgmtWanAddrBase 2 }
saRgIpMgmtWanTtl OBJECT-TYPE
SYNTAX INTEGER (0..255)
UNITS "hops"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TTL for the IP packets forwarded to WAN.
0 means no change to the original TTL (after
being decreased by 1).
Stored in non-vol, 0 after factory reset."
::= { saRgIpMgmtWanAddrBase 3 }
saRgIpMgmtWanAddrStatic OBJECT IDENTIFIER ::= { saRgIpMgmtWanAddr 3 }
saRgIpMgmtWanStaticNetwork OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Stored in non-vol, 0.0.0.0 after factory reset."
::= { saRgIpMgmtWanAddrStatic 1 }
saRgIpMgmtWanStaticSubnetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Stored in non-vol, 0.0.0.0 after factory reset."
::= { saRgIpMgmtWanAddrStatic 2 }
saRgIpMgmtWanStaticGateway OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Stored in non-vol, 0.0.0.0 after factory reset."
::= { saRgIpMgmtWanAddrStatic 3 }
saRgIpMgmtWanAddrDualIp OBJECT IDENTIFIER ::= { saRgIpMgmtWanAddr 4 }
saRgIpMgmtWanDualIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IP address for the second IP stack.
If not specified and saRgIpMgmtWanMode is set to
dualIp(3), DHCP is used to acquire the IP address.
Note: this object can only be set from config file."
DEFVAL { '00000000'h }
::= { saRgIpMgmtWanAddrDualIp 1 }
saRgIpMgmtWanDualIpRipAdvertised OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies if the IP address is to be advertised in RIP,
if RIP is enabled.
Note: this object can only be set from config file."
DEFVAL { true }
::= { saRgIpMgmtWanAddrDualIp 2 }
saRgIpMgmtLanExtraSubnetTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgIpMgmtLanExtraSubnetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Additional IP addresses for primary LAN interface.
If RIP is enabled, all subnets are advertised.
All objects are stored in non-vol. The table
is empty after factory reset."
::= { saRgIpMgmt 11 }
saRgIpMgmtLanExtraSubnetEntry OBJECT-TYPE
SYNTAX SaRgIpMgmtLanExtraSubnetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of networks on the LAN side."
INDEX { ifIndex }
::= { saRgIpMgmtLanExtraSubnetTable 1 }
SaRgIpMgmtLanExtraSubnetEntry ::= SEQUENCE {
saRgIpMgmtLanExtraSubnetIndex INTEGER,
saRgIpMgmtLanExtraSubnetRowStatus RowStatus,
saRgIpMgmtLanExtraSubnetIpAddress IpAddress,
saRgIpMgmtLanExtraSubnetSubnetMask IpAddress,
saRgIpMgmtLanExtraSubnetGateway IpAddress
}
saRgIpMgmtLanExtraSubnetIndex OBJECT-TYPE
SYNTAX INTEGER
{
secondSubnet(1),
thirdSubnet(2),
fourthSubnet(3)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the instance of this table row."
::= { saRgIpMgmtLanExtraSubnetEntry 1 }
saRgIpMgmtLanExtraSubnetRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status."
::= { saRgIpMgmtLanExtraSubnetEntry 2 }
saRgIpMgmtLanExtraSubnetIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
::= { saRgIpMgmtLanExtraSubnetEntry 3 }
saRgIpMgmtLanExtraSubnetSubnetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
DEFVAL { 'ffffff00'h } -- 255.255.255.0
::= { saRgIpMgmtLanExtraSubnetEntry 4 }
saRgIpMgmtLanExtraSubnetGateway OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
::= { saRgIpMgmtLanExtraSubnetEntry 5 }
-- **********************
-- LAN PORT Control Table
-- **********************
saRgIpMgmtLanPortControl OBJECT IDENTIFIER ::= { saRgIpMgmt 13 }
saRgIpMgmtLanPortControlTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgIpMgmtLanPortControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table to control the mode for each LAN PORT.
LAN PORTs are numbered 1-4 and are mapped to physical
port location. Each port can either be in router or
in bridge mode."
::= { saRgIpMgmtLanPortControl 1 }
saRgIpMgmtLanPortControlEntry OBJECT-TYPE
SYNTAX SaRgIpMgmtLanPortControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { saRgIpMgmtLanPortControlIndex }
::= { saRgIpMgmtLanPortControlTable 1 }
SaRgIpMgmtLanPortControlEntry ::= SEQUENCE {
saRgIpMgmtLanPortControlIndex INTEGER,
saRgIpMgmtLanPortMode INTEGER
}
saRgIpMgmtLanPortControlIndex OBJECT-TYPE
SYNTAX INTEGER (1..4)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index for each LAN port"
::= { saRgIpMgmtLanPortControlEntry 1 }
saRgIpMgmtLanPortMode OBJECT-TYPE
SYNTAX INTEGER {
bridge (1),
router (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Each physical LAN port can either be controlled
as bridge or router. The saRgIpMgmtLanPortMode MIB only works
when SaRgIpMgmtLanMode.32=4(Mixed). Setting this MIB
through SNMP will take effect only after
saRgIpMgmtApplySettings.0 set to true and this setting will
reboot to take effect"
::= { saRgIpMgmtLanPortControlEntry 2 }
-- Apply setting to activate chagnes:
saRgIpMgmtApplySettings OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If set to true(1), then all the settings (MIB values)
from this MIB tree will be applied to run time configuration,
modifying previous RG operation with the new settings.
Before setting the value to true, MIBs modified in the MIB
tree are stored in non-vol and will not modify RG operation
until saRgIpMgmtApplySettings is set to true or CM resets.
Note: this applies only to the MIB objects that are stored
in non-vol.
Always returns false(2) when read."
::= { saRgIpMgmt 1001 }
-- =============================================
-- FIREWALL
--
-- Also includes port tiggering, forwarding, DMZ
-- =============================================
saRgFirewall OBJECT IDENTIFIER ::= { saRg 4 }
saRgFirewallReport OBJECT IDENTIFIER ::= { saRgFirewall 4 }
saRgFirewallReportEventTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgFirewallReportEventEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is stored in non-vol and is empty
after factory reset."
::= { saRgFirewallReport 1 }
saRgFirewallReportEventEntry OBJECT-TYPE
SYNTAX SaRgFirewallReportEventEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { saRgFirewallReportEventIndex }
::= { saRgFirewallReportEventTable 1 }
SaRgFirewallReportEventEntry ::= SEQUENCE {
saRgFirewallReportEventIndex INTEGER,
saRgFirewallReportEventDescription SnmpAdminString,
saRgFirewallReportEventCount INTEGER,
saRgFirewallReportEventLastOccurance SnmpAdminString,
saRgFirewallReportEventTarget SnmpAdminString,
saRgFirewallReportEventSource SnmpAdminString
}
saRgFirewallReportEventIndex OBJECT-TYPE
SYNTAX INTEGER (1..64)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index"
::= { saRgFirewallReportEventEntry 1 }
saRgFirewallReportEventDescription OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { saRgFirewallReportEventEntry 2 }
saRgFirewallReportEventCount OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { saRgFirewallReportEventEntry 3 }
saRgFirewallReportEventLastOccurance OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { saRgFirewallReportEventEntry 4 }
saRgFirewallReportEventTarget OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { saRgFirewallReportEventEntry 5 }
saRgFirewallReportEventSource OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { saRgFirewallReportEventEntry 6 }
saRgFirewallReportMgmt OBJECT IDENTIFIER ::= { saRgFirewallReport 2 }
saRgFirewallReportMgmtClearLog OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Note: this object does not need saRgFirewallApplySettings
to take effect."
DEFVAL { false }
::= { saRgFirewallReportMgmt 1 }
saRgFirewallReportEmailLogNow OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Triggers sending currect logs via email. Always returns false.
Note: this objects does not need saRgFirewallApplySettings to
send the logs."
DEFVAL { false }
::= { saRgFirewallReportMgmt 2 }
saRgFirewallReportEmail OBJECT IDENTIFIER ::= { saRgFirewallReport 3 }
saRgFirewallReportEmailEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables sending logs via email. Email is sent when an event happens."
::= { saRgFirewallReportEmail 1 }
saRgFirewallReportEmailAddress OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is stored in non-vol and is empty after factory reset."
::= { saRgFirewallReportEmail 2 }
saRgFirewallReportEmailSmtpServer OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP address or FQDN.
Stored in non-vol. Empty after factory reset."
::= { saRgFirewallReportEmail 3 }
saRgFirewallReportEmailUsername OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is stored in non-vol and is empty after factory reset."
::= { saRgFirewallReportEmail 4 }
saRgFirewallReportEmailPassword OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is stored in non-vol and is empty after factory reset."
::= { saRgFirewallReportEmail 5 }
-- Firewall IP filtering
saRgFirewallRules OBJECT IDENTIFIER ::= { saRgFirewall 5 }
saRgFirewallIpFilterTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgFirewallIpFilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is stored in non-vol and is empty
after factory reset."
::= { saRgFirewallRules 1 }
saRgFirewallIpFilterEntry OBJECT-TYPE
SYNTAX SaRgFirewallIpFilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { saRgFirewallIpFilterIndex }
::= { saRgFirewallIpFilterTable 1 }
SaRgFirewallIpFilterEntry ::= SEQUENCE {
saRgFirewallIpFilterIndex INTEGER,
saRgFirewallIpFilterRowStatus RowStatus,
saRgFirewallIpFilterAddressStart IpAddress,
saRgFirewallIpFilterAddressEnd IpAddress,
saRgFirewallIpFilterTrusted INTEGER,
saRgFirewallIpFilterPolicy INTEGER
}
saRgFirewallIpFilterIndex OBJECT-TYPE
SYNTAX INTEGER (1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index"
::= { saRgFirewallIpFilterEntry 1 }
saRgFirewallIpFilterRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status. A row can be destroyed.
If the row is not used, set to notInService."
::= { saRgFirewallIpFilterEntry 2 }
saRgFirewallIpFilterAddressStart OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
::= { saRgFirewallIpFilterEntry 3 }
saRgFirewallIpFilterAddressEnd OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
::= { saRgFirewallIpFilterEntry 4 }
saRgFirewallPortFilterTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgFirewallPortFilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is stored in non-vol and is empty
after factory reset."
::= { saRgFirewallRules 2 }
saRgFirewallPortFilterEntry OBJECT-TYPE
SYNTAX SaRgFirewallPortFilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { saRgFirewallPortFilterIndex }
::= { saRgFirewallPortFilterTable 1 }
SaRgFirewallPortFilterEntry ::= SEQUENCE {
saRgFirewallPortFilterIndex INTEGER,
saRgFirewallPortFilterRowStatus RowStatus,
saRgFirewallPortFilterPortStart InetPortNumber,
saRgFirewallPortFilterPortEnd InetPortNumber,
saRgFirewallPortFilterProto INTEGER,
saRgFirewallPortFilterAlwaysBlock TruthValue,
saRgFirewallPortFilterBlockStartTime OCTET STRING,
saRgFirewallPortFilterBlockEndTime OCTET STRING,
saRgFirewallPortFilterBlockDays BITS
}
saRgFirewallPortFilterIndex OBJECT-TYPE
SYNTAX INTEGER (1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index"
::= { saRgFirewallPortFilterEntry 1 }
saRgFirewallPortFilterRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status. A row can be destroyed.
If the row is not used, set to notInService."
::= { saRgFirewallPortFilterEntry 2 }
saRgFirewallPortFilterPortStart OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
::= { saRgFirewallPortFilterEntry 5 }
saRgFirewallPortFilterPortEnd OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
::= { saRgFirewallPortFilterEntry 6 }
saRgFirewallPortFilterProto OBJECT-TYPE
SYNTAX INTEGER {
udp(1),
tcp(2),
udpTcp(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP protocol to block."
DEFVAL { 3 }
::= { saRgFirewallPortFilterEntry 7 }
saRgFirewallMacFilterTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgFirewallMacFilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of clients MAC addresses that are denied from accessing Internet."
::= { saRgFirewallRules 3 }
saRgFirewallMacFilterEntry OBJECT-TYPE
SYNTAX SaRgFirewallMacFilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the table that specifies a single station MAC address."
INDEX { saRgFirewallMacFilterIndex }
::= { saRgFirewallMacFilterTable 1 }
SaRgFirewallMacFilterEntry ::=
SEQUENCE {
saRgFirewallMacFilterIndex INTEGER,
saRgFirewallMacFilterRowStatus RowStatus,
saRgFirewallMacFilterAddress MacAddress,
saRgFirewallMacFilterAlwaysBlock TruthValue,
saRgFirewallMacFilterBlockStartTime OCTET STRING,
saRgFirewallMacFilterBlockEndTime OCTET STRING,
saRgFirewallMacFilterBlockDays BITS
}
saRgFirewallMacFilterIndex OBJECT-TYPE
SYNTAX INTEGER (1..20)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index"
::= { saRgFirewallMacFilterEntry 1 }
saRgFirewallMacFilterRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status. A row can be destroyed.
If the row is not used, set to notInService."
::= { saRgFirewallMacFilterEntry 2 }
saRgFirewallMacFilterAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A MAC address of a station that cannot access Internet."
::= { saRgFirewallMacFilterEntry 3 }
saRgFirewallMacFilterEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"True = Enable the Mac address filtering feature. False = disable.
this Value is written to non-vol and set to false after a factory reset."
DEFVAL { false }
::= { saRgFirewallRules 4 }
saRgFirewallMacFilterMode OBJECT-TYPE
SYNTAX INTEGER {
block(0),
permit(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"block(0)- Macs listed in the saRgFirewallMacFilterEntryTable will be blocked.
permit(1)- Macs listed in the saRgFirewallMacFilterEntryTable will be permitted.
This value is written to non-vol and is set to block(0) after a factory reset."
DEFVAL { 0 }
::= { saRgFirewallRules 5 }
-- Port forwarding
saRgFirewallPortFwdTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgFirewallPortFwdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is stored in non-vol and is empty
after factory reset."
::= { saRgFirewall 6 }
saRgFirewallPortFwdEntry OBJECT-TYPE
SYNTAX SaRgFirewallPortFwdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { saRgFirewallPortFwdIndex }
::= { saRgFirewallPortFwdTable 1 }
SaRgFirewallPortFwdEntry ::= SEQUENCE {
saRgFirewallPortFwdIndex INTEGER,
saRgFirewallPortFwdRowStatus RowStatus,
saRgFirewallPortFwdToAddress IpAddress,
saRgFirewallPortFwdPortStart InetPortNumber,
saRgFirewallPortFwdPortEnd InetPortNumber,
saRgFirewallPortFwdProto INTEGER,
saRgFirewallPortFwdSrvcName SnmpAdminString,
saRgFirewallPortFwdExternalPortStart InetPortNumber,
saRgFirewallPortFwdExternalPortEnd InetPortNumber
}
saRgFirewallPortFwdIndex OBJECT-TYPE
SYNTAX INTEGER (1..30)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index"
::= { saRgFirewallPortFwdEntry 1 }
saRgFirewallPortFwdRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status. A row can be destroyed.
If the row is not used, set to notInService."
::= { saRgFirewallPortFwdEntry 2 }
saRgFirewallPortFwdToAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Valid address must be entered for a row to be created."
::= { saRgFirewallPortFwdEntry 3 }
saRgFirewallPortFwdPortStart OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Valid port must be entered for a row to be created."
::= { saRgFirewallPortFwdEntry 4 }
saRgFirewallPortFwdPortEnd OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Valid port must be entered for a row to be created."
::= { saRgFirewallPortFwdEntry 5 }
saRgFirewallPortFwdProto OBJECT-TYPE
SYNTAX INTEGER {
udp(1),
tcp(2),
udpTcp(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
DEFVAL { 2 }
::= { saRgFirewallPortFwdEntry 6 }
saRgFirewallPortFwdExternalPortStart OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Valid port must be entered for a row to be created. This is the outside-facing start port for the portforward."
::= { saRgFirewallPortFwdEntry 8 }
saRgFirewallPortFwdExternalPortEnd OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Valid port must be entered for a row to be created. This is the outside-facing end port for the portforward."
::= { saRgFirewallPortFwdEntry 9 }
-- Port triggering
saRgFirewallPortTrigTable OBJECT-TYPE
SYNTAX SEQUENCE OF SaRgFirewallPortTrigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is stored in non-vol and is empty
after factory reset."
::= { saRgFirewall 7 }
saRgFirewallPortTrigEntry OBJECT-TYPE
SYNTAX SaRgFirewallPortTrigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { saRgFirewallPortTrigIndex }
::= { saRgFirewallPortTrigTable 1 }
SaRgFirewallPortTrigEntry ::= SEQUENCE {
saRgFirewallPortTrigIndex INTEGER,
saRgFirewallPortTrigRowStatus RowStatus,
saRgFirewallPortTrigTriggerPortStart InetPortNumber,
saRgFirewallPortTrigTriggerPortEnd InetPortNumber,
saRgFirewallPortTrigTargetPortStart InetPortNumber,
saRgFirewallPortTrigTargetPortEnd InetPortNumber,
saRgFirewallPortTrigProto INTEGER,
saRgFirewallPortTrigSrvcName SnmpAdminString
}
saRgFirewallPortTrigIndex OBJECT-TYPE
SYNTAX INTEGER (1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index"
::= { saRgFirewallPortTrigEntry 1 }
saRgFirewallPortTrigRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status. A row can be destroyed.
If the row is not used, set to notInService."
::= { saRgFirewallPortTrigEntry 2 }
saRgFirewallPortTrigTriggerPortStart OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
::= { saRgFirewallPortTrigEntry 3 }
saRgFirewallPortTrigTriggerPortEnd OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
::= { saRgFirewallPortTrigEntry 4 }
saRgFirewallPortTrigTargetPortStart OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
::= { saRgFirewallPortTrigEntry 5 }
saRgFirewallPortTrigTargetPortEnd OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
::= { saRgFirewallPortTrigEntry 6 }
saRgFirewallPortTrigProto OBJECT-TYPE
SYNTAX INTEGER {
udp(1),
tcp(2),
udpTcp(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
DEFVAL { 2 }
::= { saRgFirewallPortTrigEntry 7 }
saRgFirewallApplySettings OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If set to true(1), then all the settings (MIB values)
from this MIB tree will be applied to run time configuration,
modifying previous RG operation with the new settings.
Before setting the value to true, MIBs modified in the MIB
tree are stored in non-vol and will not modify RG operation
until saRgFirewallApplySettings is set to true or CM resets.
Note: this applies only to the MIB objects that are stored
in non-vol.
Always returns false(2) when read."
::= { saRgFirewall 1001 }
-- ==================================
-- DS Lite specific information
-- ==================================
saRgDslite OBJECT IDENTIFIER ::= { saRg 12 }
saRgDsliteOption OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
option-64(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This MIB will toggle whether DHCPv6 option 64 is requested in the solicit.
The option should only be requested if DS Lite is enabled."
DEFVAL { 1 }
::= { saRgDslite 1 }
saRgDsliteAftrName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This MIB will read/write the remote IPv6 FQDN of the AFTR router in
the DS Lite tunnel configuration.
This should only have an effect if eRouter is in IPv6 only mode and DS Lite is enabled."
::= { saRgDslite 2 }
saRgDsliteAftrAddress OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This MIB will set the remote IPv6 address of the AFTR router manually in
the DS Lite tunnel configuration.
This should only have an effect if eRouter is in IPv6 only mode and DS Lite is enabled."
::= { saRgDslite 3 }
saRgDsliteTcpMssClamping OBJECT-TYPE
SYNTAX INTEGER (0..1420)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies whether TCP MSS clamping is enabled on the interface.
0 disables clamping, 1 clamps the MSS depending on the
interface MTU. A value > 1 will be used as clamping size.
This MIB takes effect immediately and does not require saRgDsliteApplySettings."
DEFVAL { 0 }
::= { saRgDslite 4 }
saRgDsliteApplySettings OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If set to true(1), then all the settings (MIB values)
from this MIB tree will be applied to the runtime configuration,
This will resolve the AFTR domain name to the AFTR IPv6 address,
and initialize the DSlite tunnel. This will initialize using the AFTR
address if both the address and FQDN are defined.
This should only activate the tunnel if eRouter is in IPv6 only mode
and DS Lite is enabled.
Always returns false(2) when read."
::= { saRgDslite 1001 }
END
|