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
|
CISCOSB-IPv6 DEFINITIONS ::= BEGIN
-- Title: CISCOSB IPv6 Private Extension
-- Version: 7.60.00.00
-- Date: 25 Sep 2011
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Integer32, Counter32, IpAddress,
mib-2, Unsigned32, Counter64,
zeroDotZero, Gauge32 FROM SNMPv2-SMI
TimeInterval, TruthValue, DisplayString, RowStatus
FROM SNMPv2-TC
switch001 FROM CISCOSB-MIB
ipSpec FROM CISCOSB-IP
ipAddressEntry, ipv6InterfaceEntry FROM IP-MIB
ipNetToPhysicalEntry FROM IP-MIB
inetCidrRouteEntry FROM IP-FORWARD-MIB
InterfaceIndex, InterfaceIndexOrZero
FROM IF-MIB
InetAddressPrefixLength, InetAddressType, InetAddress,
InetAutonomousSystemNumber
FROM INET-ADDRESS-MIB
ipv6RouterAdvertEntry FROM IP-MIB
IANAipRouteProtocol FROM IANA-RTPROTO-MIB
IANAtunnelType FROM IANAifType-MIB;
rlIPv6 MODULE-IDENTITY
LAST-UPDATED "200809250001Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Postal: 170 West Tasman Drive
San Jose , CA 95134-1706
USA
Website: Cisco Small Business Support Community <http://www.cisco.com/go/smallbizsupport>"
DESCRIPTION
"The private MIB module definition for IPv6 MIB."
REVISION "200809250000Z"
DESCRIPTION
"Initial version of this MIB."
::= { switch001 129 }
--- IpAddressTable augmentation
rlIpAddressTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlIpAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is parallel to ipAddressTable, and is used to
add/delete IPv6 entries to/from that table. It contains
private objects."
::= { ipSpec 19 }
rlIpAddressEntry OBJECT-TYPE
SYNTAX RlIpAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An address mapping for a particular interface."
AUGMENTS { ipAddressEntry }
::= { rlIpAddressTable 1 }
RlIpAddressEntry ::= SEQUENCE {
rlIpAddressPrefixLength InetAddressPrefixLength,
rlIpAddressType INTEGER
}
rlIpAddressPrefixLength OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The prefix length of this address."
DEFVAL { 64 }
::= { rlIpAddressEntry 1 }
rlIpAddressType OBJECT-TYPE
SYNTAX INTEGER {
unicast(1),
anycast(2),
broadcast(3),
multicast(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Extend standard field ipAddressType to multicast"
DEFVAL { unicast }
::= { rlIpAddressEntry 2 }
--- ipv6InterfaceTable augmentation
rlipv6InterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF Rlipv6InterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is parallel to ipv6InterfaceTable, and is used to
configure additional interface parameters."
::= { ipSpec 20 }
rlipv6InterfaceEntry OBJECT-TYPE
SYNTAX Rlipv6InterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Additional configuration parameters for a particular interface."
AUGMENTS { ipv6InterfaceEntry }
::= { rlipv6InterfaceTable 1 }
Rlipv6InterfaceEntry ::= SEQUENCE {
rlipv6InterfaceNdDadAttemps INTEGER,
rlipv6InterfaceAutoconfigEnable INTEGER,
rlipv6InterfaceIcmpUnreachSendEnable INTEGER,
rlipv6InterfaceLinkMTU Unsigned32,
rlipv6InterfaceMLDVersion Unsigned32,
rlipv6InterfaceRetransmitTime Unsigned32,
rlipv6InterfaceIcmpRedirectSendEnable INTEGER
}
rlipv6InterfaceNdDadAttemps OBJECT-TYPE
SYNTAX INTEGER (0..600)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ND Duplicated address detection number of attempts."
DEFVAL { 0 }
::= { rlipv6InterfaceEntry 1 }
rlipv6InterfaceAutoconfigEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enables or disables Stateless Address Auto configuration
on specific interface."
DEFVAL { enable }
::= { rlipv6InterfaceEntry 2 }
rlipv6InterfaceIcmpUnreachSendEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enables or disables sending of ICMP Destination Unreachable
Error on specific interface."
DEFVAL { enable }
::= { rlipv6InterfaceEntry 3 }
rlipv6InterfaceLinkMTU OBJECT-TYPE
SYNTAX Unsigned32 (1280..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The maximum transmission unit (MTU) size of IPv6 packets
sent on an interface in bytes."
DEFVAL { 1500 }
::= { rlipv6InterfaceEntry 4 }
rlipv6InterfaceMLDVersion OBJECT-TYPE
SYNTAX Unsigned32 (1..2)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Set version of MLD protocol on specific interface."
DEFVAL { 2 }
::= { rlipv6InterfaceEntry 5 }
rlipv6InterfaceRetransmitTime OBJECT-TYPE
SYNTAX Unsigned32 (0 | 1000..3600000)
UNITS "milliseconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This value will be included in all IPv6 router advertisements sent
out this interface. Very short intervals are not recommended in
normal IPv6 operation. When a nondefault value is configured, the
configured time is both advertised and used by the router itself.
When value 0 is configured, 0 seconds (unspecified) advertised in
router advertisements and the value 1000 milliseconds is used for
the neighbor discovery activity of the router itself."
DEFVAL { 0 }
::= { rlipv6InterfaceEntry 6 }
rlipv6InterfaceIcmpRedirectSendEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enables or disables sending of ICMP IPv6 redirect messages to
re-send a packet through the same interface on which the packet was
received."
DEFVAL { enable }
::= { rlipv6InterfaceEntry 7 }
--- inetCidrRoutetable augmentation
rlinetCidrRouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlinetCidrRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is parallel to inetCidrRouteTable, and is used to
configure or display additional route parameters."
::= { ipSpec 21 }
rlinetCidrRouteEntry OBJECT-TYPE
SYNTAX RlinetCidrRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Additional parameters for a particular route."
AUGMENTS { inetCidrRouteEntry }
::= { rlinetCidrRouteTable 1 }
RlinetCidrRouteEntry ::= SEQUENCE {
rlinetCidrRouteLifetime Unsigned32,
rlinetCidrRouteInfo INTEGER
}
rlinetCidrRouteLifetime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remaining length of time, in seconds, that this route
will continue to be valid, i.e., time until deprecation.
A value of 4,294,967,295 represents infinity."
DEFVAL { 4294967295 }
::= { rlinetCidrRouteEntry 1 }
rlinetCidrRouteInfo OBJECT-TYPE
SYNTAX INTEGER {
none(0),
ospfIntraArea(1),
ospfInterArea(2),
ospfExternalType1(3),
ospfExternalType2(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to MIB definitions specific to the particular routing
protocol which is responsible for this route, as determined by the
value specified in the route's inetCidrRouteProto value."
DEFVAL { none }
::= { rlinetCidrRouteEntry 2 }
--- ipNetToPhysicalTable augmentation
rlipNetToPhysicalTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlipNetToPhysicalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is parallel to ipNetToPhysicalTable, and is used to
configure or display additional neighbor parameters."
::= { ipSpec 22 }
rlipNetToPhysicalEntry OBJECT-TYPE
SYNTAX RlipNetToPhysicalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Additional parameters for a neighbor"
AUGMENTS { ipNetToPhysicalEntry }
::= { rlipNetToPhysicalTable 1 }
RlipNetToPhysicalEntry ::= SEQUENCE {
rlipNetToPhysicalIsRouter TruthValue,
rlipNetToPhysicalReachableConfirmed Unsigned32
}
rlipNetToPhysicalIsRouter OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object has the value 'true(1)', if the neighbor
is router; otherwise, the value is 'false(2)'."
::= { rlipNetToPhysicalEntry 1 }
rlipNetToPhysicalReachableConfirmed OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time (in seconds) since the address was confirmed to be reachable.
Only, relevant for dynamic entries."
::= { rlipNetToPhysicalEntry 2 }
--- ICMPv6 Rate Limiting
rlipv6IcmpErrorRatelimitInterval OBJECT-TYPE
SYNTAX TimeInterval
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The time interval between tokens being placed in the bucket,
each token represents a single ICMP error message.
The interval measured in milliseconds."
DEFVAL { 100 }
::= { rlIPv6 1 }
rlipv6IcmpErrorRatelimitBucketSize OBJECT-TYPE
SYNTAX INTEGER(1..200)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum number of tokens stored in the bucket,
each token represents a single ICMP error message."
DEFVAL { 10 }
::= { rlIPv6 2 }
--- IPv6 Link Local Default Zone
rlipv6LLDefaultZone OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The interface which would be used as the egress interface
for packets sent without a specified IPv6Z interface identifier
or with the default '0' identifier. Zero value means no default
interface specified."
DEFVAL { 0 }
::= { rlIPv6 3 }
--- rlIpv6GeneralPrefixTable
rlIpv6GeneralPrefixTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlIpv6GeneralPrefixEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines general prefix description,
based on which a number of longer, more specific, prefixes can
be defined."
::= { rlIPv6 4 }
rlIpv6GeneralPrefixEntry OBJECT-TYPE
SYNTAX RlIpv6GeneralPrefixEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Single entry in general prefix table."
INDEX {rlIpv6GeneralPrefixName}
::= { rlIpv6GeneralPrefixTable 1 }
RlIpv6GeneralPrefixEntry ::= SEQUENCE {
rlIpv6GeneralPrefixName DisplayString,
rlIpv6GeneralPrefixInetAddrType InetAddressType,
rlIpv6GeneralPrefixInetAddr InetAddress,
rlIpv6GeneralPrefixInetAddrPrefixLength InetAddressPrefixLength,
rlIpv6GeneralPrefixInterfaceId Unsigned32,
rlIpv6GeneralPrefixRowStatus RowStatus
}
rlIpv6GeneralPrefixName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name assigned to the prefix."
::= { rlIpv6GeneralPrefixEntry 1 }
rlIpv6GeneralPrefixInetAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Prefix inet address type. Has to be IPv6."
::= { rlIpv6GeneralPrefixEntry 2 }
rlIpv6GeneralPrefixInetAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IPv6 network assigned to the general prefix.
This argument must be in the form documented in RFC4293
where the address is specified in hexadecimal using 16-bit values
between colons."
::= { rlIpv6GeneralPrefixEntry 3 }
rlIpv6GeneralPrefixInetAddrPrefixLength OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the number of leading one bits that form the
mask to be logical-ANDed with the inet address
before being compared to the value in the
rlIpv6GeneralPrefixInetAddr field."
::= { rlIpv6GeneralPrefixEntry 4 }
rlIpv6GeneralPrefixInterfaceId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Interface id to use when creating prefix based on point-to-point interface."
::= { rlIpv6GeneralPrefixEntry 5 }
rlIpv6GeneralPrefixRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Row status."
::= { rlIpv6GeneralPrefixEntry 6 }
--- IPv6 maximum number of hops
rlipv6MaximumHopsNumber OBJECT-TYPE
SYNTAX INTEGER (1..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum number of hops used in router advertisements and all IPv6 packets that
are originated by the router."
DEFVAL { 64 }
::= { rlIPv6 5 }
--- rlIpv6RouterAdvertPrefixTable
rlIpv6RouterAdvertPrefixTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlIpv6RouterAdvertPrefixEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines IPv6 prefixes which are included in IPv6 Neighbor
Discovery (ND) router advertisements."
::= { rlIPv6 6 }
rlIpv6RouterAdvertPrefixEntry OBJECT-TYPE
SYNTAX RlIpv6RouterAdvertPrefixEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Single entry in Neighbor Discovery Prefix table."
INDEX {rlIpv6RouterAdvertPrefixIfIndex,
rlIpv6RouterAdvertPrefixIsDefault,
rlIpv6RouterAdvertPrefixInetAddrType,
rlIpv6RouterAdvertPrefixInetAddr,
rlIpv6RouterAdvertPrefixInetAddrPrefixLength}
::= { rlIpv6RouterAdvertPrefixTable 1 }
RlIpv6RouterAdvertPrefixEntry ::= SEQUENCE {
rlIpv6RouterAdvertPrefixIfIndex InterfaceIndex,
rlIpv6RouterAdvertPrefixIsDefault TruthValue,
rlIpv6RouterAdvertPrefixInetAddrType InetAddressType,
rlIpv6RouterAdvertPrefixInetAddr InetAddress,
rlIpv6RouterAdvertPrefixInetAddrPrefixLength InetAddressPrefixLength,
rlIpv6RouterAdvertPrefixAdminStatus INTEGER,
rlIpv6RouterAdvertPrefixAdvertise TruthValue,
rlIpv6RouterAdvertPrefixOnLinkStatus INTEGER,
rlIpv6RouterAdvertPrefixAutonomousFlag TruthValue,
rlIpv6RouterAdvertPrefixAdvPreferredLifetime Unsigned32,
rlIpv6RouterAdvertPrefixAdvValidLifetime Unsigned32,
rlIpv6RouterAdvertPrefixRowStatus RowStatus
}
rlIpv6RouterAdvertPrefixIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value that uniquely identifies the interface on
which this prefix is configured. The interface identified
by a particular value of this index is the same interface as
identified by the same value of the IF-MIB's ifIndex."
::= { rlIpv6RouterAdvertPrefixEntry 1 }
rlIpv6RouterAdvertPrefixIsDefault OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates whether this object belongs to 'default' entry.
Default entry contains specifics about advertising prefixes which
were created from local ipv6 addresses."
::= { rlIpv6RouterAdvertPrefixEntry 2 }
rlIpv6RouterAdvertPrefixInetAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Prefix inet address type. Has to be IPv6."
::= { rlIpv6RouterAdvertPrefixEntry 3 }
rlIpv6RouterAdvertPrefixInetAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IPv6 network prefix to include in router advertisements.
This argument must be in the form documented in RFC4293 where
the address is specified in hexadecimal using 16-bit values between
colons."
::= { rlIpv6RouterAdvertPrefixEntry 4 }
rlIpv6RouterAdvertPrefixInetAddrPrefixLength OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The length of the IPv6 prefix. A decimal value that indicates
how many of the high-order contiguous bits of the address comprise
the prefix (the network portion of the address)."
::= { rlIpv6RouterAdvertPrefixEntry 5 }
rlIpv6RouterAdvertPrefixAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Admin status of the entry. Relevant only for default entry."
DEFVAL { enable }
::= { rlIpv6RouterAdvertPrefixEntry 6 }
rlIpv6RouterAdvertPrefixAdvertise OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Whether the prefix is included in router advertisements."
DEFVAL { true }
::= { rlIpv6RouterAdvertPrefixEntry 7 }
rlIpv6RouterAdvertPrefixOnLinkStatus OBJECT-TYPE
SYNTAX INTEGER {
onlink (1), -- connected prefix
not-onlink (2), -- connected state of the prefix is not specified
off-link (3) -- not connected prefix
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If object has the value 'onlink(1)', this prefix is confidered as on-link.
This prefix will be advertised with the L-bit set and will be present
in the Routing Table.
If object has the value 'not-onlink(2)', this prefix will be advertised
with the L-bit clear, but connected state of the prefix will not be changed.
If object has the value 'offlink(3)', this prefix is confidered as on-link.
This prefix will be advertised with the L-bit clear, and will be
not present in the Routing Table."
DEFVAL { onlink }
::= { rlIpv6RouterAdvertPrefixEntry 8 }
rlIpv6RouterAdvertPrefixAutonomousFlag OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If object has the value 'true(1)', this prefix indicates to hosts on
the local link that the specified prefix can be used for IPv6
autoconfiguration. The prefix will be advertised with the A-bit set."
DEFVAL { true }
::= { rlIpv6RouterAdvertPrefixEntry 9 }
rlIpv6RouterAdvertPrefixAdvPreferredLifetime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The amount of time (in seconds) that the specified IPv6 prefix is
advertised as being preferred."
DEFVAL { 604800 }
::= { rlIpv6RouterAdvertPrefixEntry 10 }
rlIpv6RouterAdvertPrefixAdvValidLifetime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The amount of time (in seconds) that the specified IPv6 prefix is
advertised as being valid."
DEFVAL { 2592000 }
::= { rlIpv6RouterAdvertPrefixEntry 11 }
rlIpv6RouterAdvertPrefixRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Row status."
::= { rlIpv6RouterAdvertPrefixEntry 12 }
--- ipv6RouterAdvertTable augmentation
rlIpv6RouterAdvertTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlIpv6RouterAdvertEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is parallel to inetCidrRouteTable, and is used to
configure or display additional route parameters."
::= { rlIPv6 7 }
rlIpv6RouterAdvertEntry OBJECT-TYPE
SYNTAX RlIpv6RouterAdvertEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Additional parameters for a particular route."
AUGMENTS { ipv6RouterAdvertEntry }
::= { rlIpv6RouterAdvertTable 1 }
RlIpv6RouterAdvertEntry ::= SEQUENCE {
rlIpv6RouterAdvertAdvIntervalOption TruthValue,
rlIpv6RouterAdvertRouterPreference INTEGER,
rlIpv6RouterAdvertIsCurHopLimitUserConfigured TruthValue
}
rlIpv6RouterAdvertAdvIntervalOption OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates to a visiting mobile node the interval at which that node
may expect to receive RAs. The node may use this information in its
movement detection algorithm."
DEFVAL { false }
::= { rlIpv6RouterAdvertEntry 1 }
rlIpv6RouterAdvertRouterPreference OBJECT-TYPE
SYNTAX INTEGER {
low(1),
medium(2),
high(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Configures a default router preference (DRP) for the router on a specific interface."
DEFVAL { medium }
::= { rlIpv6RouterAdvertEntry 2 }
rlIpv6RouterAdvertIsCurHopLimitUserConfigured OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates that hop limit value used in router advertisement is
an user configured value and not necessarily value that is used by
router itself."
DEFVAL { false }
::= { rlIpv6RouterAdvertEntry 3 }
--- Clear IPv6 routes
rlipv6InetCidrTableClear OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This scalar indicates to clear all ipv6 routes from inetCidrTable."
::= { rlIPv6 8 }
--- rlIpv6PathMtuTable
rlIpv6PathMtuTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlIpv6PathMtuEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table used to represent all Path MTU changes to specific destination
received from 'packet-too-big' messages."
::= { rlIPv6 9 }
rlIpv6PathMtuEntry OBJECT-TYPE
SYNTAX RlIpv6PathMtuEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Single entry in Path MTU table."
INDEX {rlIpv6PathMtuEntryInetDestAddrType,
rlIpv6PathMtuEntryInetDestAddr}
::= { rlIpv6PathMtuTable 1 }
RlIpv6PathMtuEntry ::= SEQUENCE {
rlIpv6PathMtuEntryInetDestAddrType InetAddressType,
rlIpv6PathMtuEntryInetDestAddr InetAddress,
rlIpv6PathMtuEntryMtu Unsigned32,
rlIpv6PathMtuEntryAge Unsigned32
}
rlIpv6PathMtuEntryInetDestAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Prefix inet address type. Has to be IPv6."
::= { rlIpv6PathMtuEntry 1 }
rlIpv6PathMtuEntryInetDestAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IPv6 destination address for which packet-too-big message
was received.
This argument must be in the form documented in RFC4293
where the address is specified in hexadecimal using 16-bit values
between colons."
::= { rlIpv6PathMtuEntry 2 }
rlIpv6PathMtuEntryMtu OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MTU value that was received in packet-too-bug message for
specific destination."
::= { rlIpv6PathMtuEntry 3 }
rlIpv6PathMtuEntryAge OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This entry's age (seconds)"
::= { rlIpv6PathMtuEntry 4 }
--- Inet IP Static Route Table
rlInetStaticRouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlInetStaticRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entity's static (user configured) Inet Routing table.
Entries are MAX-ACCESSible even if not used for forwarding "
::= { ipSpec 28 }
rlInetStaticRouteEntry OBJECT-TYPE
SYNTAX RlInetStaticRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A particular Static(user configured) route to a particular destination."
INDEX {
rlInetStaticRouteDestType,
rlInetStaticRouteDest,
rlInetStaticRoutePfxLen,
rlInetStaticRouteNextHopType,
rlInetStaticRouteNextHop,
rlInetStaticRouteIfIndex
}
::= { rlInetStaticRouteTable 1 }
RlInetStaticRouteEntry ::= SEQUENCE {
rlInetStaticRouteDestType InetAddressType,
rlInetStaticRouteDest InetAddress,
rlInetStaticRoutePfxLen InetAddressPrefixLength,
rlInetStaticRouteNextHopType InetAddressType,
rlInetStaticRouteNextHop InetAddress,
rlInetStaticRouteIfIndex InterfaceIndexOrZero,
rlInetStaticRoutePathCost Unsigned32,
rlInetStaticRouteType INTEGER,
rlInetStaticRouteOwner INTEGER,
rlInetStaticRouteRowStatus RowStatus,
rlInetStaticRouteForwardingStatus INTEGER,
rlInetStaticRouteTrackObject Unsigned32,
rlInetStaticRouteTrackStatus INTEGER
}
rlInetStaticRouteDestType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the address used as the destination
internetwork address or subnet address."
::= { rlInetStaticRouteEntry 1 }
rlInetStaticRouteDest OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Destination internetwork address or subnet address. The
destination prefix length is applied to this value, and to a
particular destination address, to determine whether the route
applies to the particular address.
If the prefix length is L, then applying the length to an address
means taking the first L bits of the address."
::= { rlInetStaticRouteEntry 2 }
rlInetStaticRoutePfxLen OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the number of leading one bits that form the
mask to be logical-ANDed with the destination address
before being compared to the value in the
rlInetStaticRouteDest field."
::= { rlInetStaticRouteEntry 3 }
rlInetStaticRouteNextHopType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The type of the address used as the next-hop address
for this route."
::= { rlInetStaticRouteEntry 4 }
rlInetStaticRouteNextHop OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The next-hop IP address, if any.
If rlInetStaticRouteAction is 'forward', there may or may not be
a next-hop IP address.
A next-hop IP address is not required if an output interface
index is specified (in other words, if rlInetStaticRouteIfIndex is
non-zero).
If rlInetStaticRouteAction is not 'forward', there is no next-hop
IP address.
If there is no next-hop IP address, the rlInetStaticRouteNextHop
object is set to all zeroes."
::= { rlInetStaticRouteEntry 5 }
rlInetStaticRouteIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex value that identifies the local interface
through which the next hop of this route should be
reached. A value of 0 is valid and represents the
scenario where no interface is specified."
DEFVAL { 0 }
::= { rlInetStaticRouteEntry 6 }
rlInetStaticRoutePathCost OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Path cost for this static route."
DEFVAL { 1 }
::= { rlInetStaticRouteEntry 7 }
rlInetStaticRouteType OBJECT-TYPE
SYNTAX INTEGER {
reject (2), -- route that discards traffic and
-- returns ICMP notification
local (3), -- local interface
remote (4), -- remote destination
blackhole(5), -- route that discards traffic
-- silently
nd (6) -- route that is configred through
-- neighbor discovery (relevant only for icmp owner)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Same as inetCidrRouteType MIB (excluded 'other' route type)"
DEFVAL { remote }
::= { rlInetStaticRouteEntry 8 }
rlInetStaticRouteOwner OBJECT-TYPE
SYNTAX INTEGER {
static (1),
dhcp (2),
default (3),
icmp (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Static - The route is configured over Static IP.
This route is written to configuration files.
Dhcp - The route is Configured by DHCP
(received as part of DHCP configuration)
This route IS NOT written to configuration files
Default - The route is Configured by default system config
exists till any other configuration is applied.
Icmp - The route is Configured by ICMP protocol either by
router advertisements or to be advertised in router
advertisements ."
::= { rlInetStaticRouteEntry 9 }
rlInetStaticRouteRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status variable, used according to row
installation and removal conventions.
A row entry cannot be modified when the status is
marked as active(1)."
::= { rlInetStaticRouteEntry 10 }
rlInetStaticRouteForwardingStatus OBJECT-TYPE
SYNTAX INTEGER {
active (1),
inactive (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"active - An indication that the route has implication on routing
inactive - the route is a backup route or it is down. It is not used
in forwarding decision.
Down means that the Ip interface on which it is configured is down.
(Note: ip interface down may be for two reason - its admin status or
the L2 interface , on which the ip interface is configured, status"
::= { rlInetStaticRouteEntry 11 }
rlInetStaticRouteTrackObject OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Track object number"
DEFVAL { 0 }
::= { rlInetStaticRouteEntry 12 }
rlInetStaticRouteTrackStatus OBJECT-TYPE
SYNTAX INTEGER {
up(0),
down(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Track status"
DEFVAL { 0 }
::= { rlInetStaticRouteEntry 13 }
--- Clear entries from ipNetToPhysicalTable
rlIpNetToPhysicalTableClearTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlIpNetToPhysicalTableClearEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entity is used to clear all or specific-type entries from ipNetToPhysicalTable."
::= { rlIPv6 10 }
rlIpNetToPhysicalTableClearEntry OBJECT-TYPE
SYNTAX RlIpNetToPhysicalTableClearEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A particular entry in this table."
INDEX {
rlIpNetToPhysicalTableClearIfIndex
}
::= { rlIpNetToPhysicalTableClearTable 1 }
RlIpNetToPhysicalTableClearEntry ::= SEQUENCE {
rlIpNetToPhysicalTableClearIfIndex InterfaceIndexOrZero,
rlIpNetToPhysicalTableClearScope INTEGER
}
rlIpNetToPhysicalTableClearIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Interface index of to clear or zero in case of whole table."
::= { rlIpNetToPhysicalTableClearEntry 1 }
rlIpNetToPhysicalTableClearScope OBJECT-TYPE
SYNTAX INTEGER {
all(1),
dynamicOnly(2),
staticOnly(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Scope of the action - type of entries to delete."
::= { rlIpNetToPhysicalTableClearEntry 2 }
--- Inet IP Distance Table
rlInetRoutingDistanceTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlInetRoutingDistanceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines administrative distances for
different protocol routes that are inserted into
the routing table."
::= { ipSpec 29 }
rlInetRoutingDistanceEntry OBJECT-TYPE
SYNTAX RlInetRoutingDistanceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A set of distances per inet address type."
INDEX {
rlInetRoutingDistanceType
}
::= { rlInetRoutingDistanceTable 1 }
RlInetRoutingDistanceEntry ::= SEQUENCE {
rlInetRoutingDistanceType INTEGER,
rlInetRoutingDistanceConnected INTEGER,
rlInetRoutingDistanceStatic INTEGER,
rlInetRoutingDistanceRip INTEGER,
rlInetRoutingDistanceOspfInternal INTEGER,
rlInetRoutingDistanceOspfExternal INTEGER
}
rlInetRoutingDistanceType OBJECT-TYPE
SYNTAX INTEGER {
ipv4(1),
ipv6(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The inet address type for distance definitions set,
either IPv4 or IPv6."
::= { rlInetRoutingDistanceEntry 1 }
rlInetRoutingDistanceConnected OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The administrative distance used for directly connected routes."
::= { rlInetRoutingDistanceEntry 2 }
rlInetRoutingDistanceStatic OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The administrative distance used for static routes."
::= { rlInetRoutingDistanceEntry 3 }
rlInetRoutingDistanceRip OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The administrative distance used for RIP routes."
::= { rlInetRoutingDistanceEntry 4 }
rlInetRoutingDistanceOspfInternal OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The administrative distance used for OSPF internal routes."
::= { rlInetRoutingDistanceEntry 5 }
rlInetRoutingDistanceOspfExternal OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The administrative distance used for OSPF Autonomous System external routes."
::= { rlInetRoutingDistanceEntry 6 }
--- Internal inetCidrRouteTable (including custom rlInetCidrRouteEntry objects)
rlInternInetCidrRouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlInternInetCidrRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Internal inetCidrRouteTable - this entity's IP Routing table."
REFERENCE
"RFC 1213 Section 6.6, The IP Group"
::= { ipSpec 30 }
rlInternInetCidrRouteEntry OBJECT-TYPE
SYNTAX RlInternInetCidrRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A particular route to a particular destination, under a
particular policy (as reflected in the
rlInternInetCidrRoutePolicy object).
Dynamically created rows will survive an agent reboot.
Implementers need to be aware that if the total number
of elements (octets or sub-identifiers) in
rlInternInetCidrRouteDest, rlInternInetCidrRoutePolicy, and
rlInternInetCidrRouteNextHop exceeds 111, then OIDs of column
instances in this table will have more than 128 sub-
identifiers and cannot be accessed using SNMPv1,
SNMPv2c, or SNMPv3."
INDEX {
rlInternInetCidrRouteDestType,
rlInternInetCidrRouteDest,
rlInternInetCidrRoutePfxLen,
rlInternInetCidrRoutePolicy,
rlInternInetCidrRouteNextHopType,
rlInternInetCidrRouteNextHop
}
::= { rlInternInetCidrRouteTable 1 }
RlInternInetCidrRouteEntry ::= SEQUENCE {
rlInternInetCidrRouteDestType InetAddressType,
rlInternInetCidrRouteDest InetAddress,
rlInternInetCidrRoutePfxLen InetAddressPrefixLength,
rlInternInetCidrRoutePolicy OBJECT IDENTIFIER,
rlInternInetCidrRouteNextHopType InetAddressType,
rlInternInetCidrRouteNextHop InetAddress,
rlInternInetCidrRouteIfIndex InterfaceIndexOrZero,
rlInternInetCidrRouteType INTEGER,
rlInternInetCidrRouteProto IANAipRouteProtocol,
rlInternInetCidrRouteAge Gauge32,
rlInternInetCidrRouteNextHopAS InetAutonomousSystemNumber,
rlInternInetCidrRouteMetric1 Integer32,
rlInternInetCidrRouteMetric2 Integer32,
rlInternInetCidrRouteMetric3 Integer32,
rlInternInetCidrRouteMetric4 Integer32,
rlInternInetCidrRouteMetric5 Integer32,
rlInternInetCidrRouteStatus RowStatus,
rlInternInetCidrRouteLifetime Unsigned32,
rlInternInetCidrRouteInfo INTEGER
}
rlInternInetCidrRouteDestType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The type of the rlInternInetCidrRouteDest address, as defined
in the InetAddress MIB.
Only those address types that may appear in an actual
routing table are allowed as values of this object."
REFERENCE "RFC 4001"
::= { rlInternInetCidrRouteEntry 1 }
rlInternInetCidrRouteDest OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The destination IP address of this route.
The type of this address is determined by the value of
the rlInternInetCidrRouteDestType object.
The values for the index objects rlInternInetCidrRouteDest and
rlInternInetCidrRoutePfxLen must be consistent. When the value
of rlInternInetCidrRouteDest (excluding the zone index, if one
is present) is x, then the bitwise logical-AND
of x with the value of the mask formed from the
corresponding index object rlInternInetCidrRoutePfxLen MUST be
equal to x. If not, then the index pair is not
consistent and an inconsistentName error must be
returned on SET or CREATE requests."
::= { rlInternInetCidrRouteEntry 2 }
rlInternInetCidrRoutePfxLen OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the number of leading one bits that form the
mask to be logical-ANDed with the destination address
before being compared to the value in the
rlInternInetCidrRouteDest field.
The values for the index objects rlInternInetCidrRouteDest and
rlInternInetCidrRoutePfxLen must be consistent. When the value
of rlInternInetCidrRouteDest (excluding the zone index, if one
is present) is x, then the bitwise logical-AND
of x with the value of the mask formed from the
corresponding index object rlInternInetCidrRoutePfxLen MUST be
equal to x. If not, then the index pair is not
consistent and an inconsistentName error must be
returned on SET or CREATE requests."
::= { rlInternInetCidrRouteEntry 3 }
rlInternInetCidrRoutePolicy OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object is an opaque object without any defined
semantics. Its purpose is to serve as an additional
index that may delineate between multiple entries to
the same destination. The value { 0 0 } shall be used
as the default value for this object."
::= { rlInternInetCidrRouteEntry 4 }
rlInternInetCidrRouteNextHopType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The type of the rlInternInetCidrRouteNextHop address, as
defined in the InetAddress MIB.
Value should be set to unknown(0) for non-remote
routes.
Only those address types that may appear in an actual
routing table are allowed as values of this object."
REFERENCE "RFC 4001"
::= { rlInternInetCidrRouteEntry 5 }
rlInternInetCidrRouteNextHop OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"On remote routes, the address of the next system en
route. For non-remote routes, a zero length string.
The type of this address is determined by the value of
the rlInternInetCidrRouteNextHopType object."
::= { rlInternInetCidrRouteEntry 6 }
rlInternInetCidrRouteIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex value that identifies the local interface
through which the next hop of this route should be
reached. A value of 0 is valid and represents the
scenario where no interface is specified."
::= { rlInternInetCidrRouteEntry 7 }
rlInternInetCidrRouteType OBJECT-TYPE
SYNTAX INTEGER {
other (1), -- not specified by this MIB
reject (2), -- route that discards traffic and
-- returns ICMP notification
local (3), -- local interface
remote (4), -- remote destination
blackhole(5) -- route that discards traffic
-- silently
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of route. Note that local(3) refers to a
route for which the next hop is the final destination;
remote(4) refers to a route for which the next hop is
not the final destination.
Routes that do not result in traffic forwarding or
rejection should not be displayed, even if the
implementation keeps them stored internally.
reject(2) refers to a route that, if matched, discards
the message as unreachable and returns a notification
(e.g., ICMP error) to the message sender. This is used
in some protocols as a means of correctly aggregating
routes.
blackhole(5) refers to a route that, if matched,
discards the message silently."
::= { rlInternInetCidrRouteEntry 8 }
rlInternInetCidrRouteProto OBJECT-TYPE
SYNTAX IANAipRouteProtocol
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The routing mechanism via which this route was learned.
Inclusion of values for gateway routing protocols is
not intended to imply that hosts should support those
protocols."
::= { rlInternInetCidrRouteEntry 9 }
rlInternInetCidrRouteAge OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of seconds since this route was last updated
or otherwise determined to be correct. Note that no
semantics of 'too old' can be implied, except through
knowledge of the routing protocol by which the route
was learned."
::= { rlInternInetCidrRouteEntry 10 }
rlInternInetCidrRouteNextHopAS OBJECT-TYPE
SYNTAX InetAutonomousSystemNumber
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Autonomous System Number of the Next Hop. The
semantics of this object are determined by the routing-
protocol specified in the route's rlInternInetCidrRouteProto
value. When this object is unknown or not relevant, its
value should be set to zero."
DEFVAL { 0 }
::= { rlInternInetCidrRouteEntry 11 }
rlInternInetCidrRouteMetric1 OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The primary routing metric for this route. The
semantics of this metric are determined by the routing-
protocol specified in the route's rlInternInetCidrRouteProto
value. If this metric is not used, its value should be
set to -1."
DEFVAL { -1 }
::= { rlInternInetCidrRouteEntry 12 }
rlInternInetCidrRouteMetric2 OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An alternate routing metric for this route. The
semantics of this metric are determined by the routing-
protocol specified in the route's rlInternInetCidrRouteProto
value. If this metric is not used, its value should be
set to -1."
DEFVAL { -1 }
::= { rlInternInetCidrRouteEntry 13 }
rlInternInetCidrRouteMetric3 OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An alternate routing metric for this route. The
semantics of this metric are determined by the routing-
protocol specified in the route's rlInternInetCidrRouteProto
value. If this metric is not used, its value should be
set to -1."
DEFVAL { -1 }
::= { rlInternInetCidrRouteEntry 14 }
rlInternInetCidrRouteMetric4 OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An alternate routing metric for this route. The
semantics of this metric are determined by the routing-
protocol specified in the route's rlInternInetCidrRouteProto
value. If this metric is not used, its value should be
set to -1."
DEFVAL { -1 }
::= { rlInternInetCidrRouteEntry 15 }
rlInternInetCidrRouteMetric5 OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An alternate routing metric for this route. The
semantics of this metric are determined by the routing-
protocol specified in the route's rlInternInetCidrRouteProto
value. If this metric is not used, its value should be
set to -1."
DEFVAL { -1 }
::= { rlInternInetCidrRouteEntry 16 }
rlInternInetCidrRouteStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The row status variable, used according to row
installation and removal conventions.
A row entry cannot be modified when the status is
marked as active(1)."
::= { rlInternInetCidrRouteEntry 17 }
rlInternInetCidrRouteLifetime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remaining length of time, in seconds, that this route
will continue to be valid, i.e., time until deprecation.
A value of 4,294,967,295 represents infinity."
DEFVAL { 4294967295 }
::= { rlInternInetCidrRouteEntry 18 }
rlInternInetCidrRouteInfo OBJECT-TYPE
SYNTAX INTEGER {
none(0),
ospfIntraArea(1),
ospfInterArea(2),
ospfExternalType1(3),
ospfExternalType2(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to MIB definitions specific to the particular routing
protocol which is responsible for this route, as determined by the
value specified in the route's inetCidrRouteProto value."
DEFVAL { none }
::= { rlInternInetCidrRouteEntry 19 }
--- Internal Inet IP Static Route Table
rlInternInetStaticRouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlInternInetStaticRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entity's static (user configured) Inet Routing table.
Entries are MAX-ACCESSible even if not used for forwarding "
::= { ipSpec 31 }
rlInternInetStaticRouteEntry OBJECT-TYPE
SYNTAX RlInternInetStaticRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A particular Static(user configured) route to a particular destination."
INDEX {
rlInternInetStaticRouteDestType,
rlInternInetStaticRouteDest,
rlInternInetStaticRoutePfxLen,
rlInternInetStaticRouteNextHopType,
rlInternInetStaticRouteNextHop,
rlInternInetStaticRouteIfIndex
}
::= { rlInternInetStaticRouteTable 1 }
RlInternInetStaticRouteEntry ::= SEQUENCE {
rlInternInetStaticRouteDestType InetAddressType,
rlInternInetStaticRouteDest InetAddress,
rlInternInetStaticRoutePfxLen InetAddressPrefixLength,
rlInternInetStaticRouteNextHopType InetAddressType,
rlInternInetStaticRouteNextHop InetAddress,
rlInternInetStaticRouteIfIndex InterfaceIndexOrZero,
rlInternInetStaticRoutePathCost Unsigned32,
rlInternInetStaticRouteType INTEGER,
rlInternInetStaticRouteOwner INTEGER,
rlInternInetStaticRouteRowStatus RowStatus,
rlInternInetStaticRouteForwardingStatus INTEGER
}
rlInternInetStaticRouteDestType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the address used as the destination
internetwork address or subnet address."
::= { rlInternInetStaticRouteEntry 1 }
rlInternInetStaticRouteDest OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Destination internetwork address or subnet address. The
destination prefix length is applied to this value, and to a
particular destination address, to determine whether the route
applies to the particular address.
If the prefix length is L, then applying the length to an address
means taking the first L bits of the address."
::= { rlInternInetStaticRouteEntry 2 }
rlInternInetStaticRoutePfxLen OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the number of leading one bits that form the
mask to be logical-ANDed with the destination address
before being compared to the value in the
rlInternInetStaticRouteDest field."
::= { rlInternInetStaticRouteEntry 3 }
rlInternInetStaticRouteNextHopType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The type of the address used as the next-hop address
for this route."
::= { rlInternInetStaticRouteEntry 4 }
rlInternInetStaticRouteNextHop OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The next-hop IP address, if any.
If rlInternInetStaticRouteAction is 'forward', there may or may not be
a next-hop IP address.
A next-hop IP address is not required if an output interface
index is specified (in other words, if rlInternInetStaticRouteIfIndex is
non-zero).
If rlInternInetStaticRouteAction is not 'forward', there is no next-hop
IP address.
If there is no next-hop IP address, the rlInternInetStaticRouteNextHop
object is set to all zeroes."
::= { rlInternInetStaticRouteEntry 5 }
rlInternInetStaticRouteIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex value that identifies the local interface
through which the next hop of this route should be
reached. A value of 0 is valid and represents the
scenario where no interface is specified."
DEFVAL { 0 }
::= { rlInternInetStaticRouteEntry 6 }
rlInternInetStaticRoutePathCost OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Path cost for this static route. Value of 0 signs default value metric"
::= { rlInternInetStaticRouteEntry 7 }
rlInternInetStaticRouteType OBJECT-TYPE
SYNTAX INTEGER {
reject (2), -- route that discards traffic and
-- returns ICMP notification
local (3), -- local interface
remote (4), -- remote destination
blackhole(5), -- route that discards traffic
-- silently
nd (6) -- route that is configred through
-- neighbor discovery (relevant only for icmp owner)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Same as inetCidrRouteType MIB (excluded 'other' route type)"
DEFVAL { remote }
::= { rlInternInetStaticRouteEntry 8 }
rlInternInetStaticRouteOwner OBJECT-TYPE
SYNTAX INTEGER {
static (1),
dhcp (2),
default (3),
icmp (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Static - The route is configured over Static IP.
This route is written to configuration files.
Dhcp - The route is Configured by DHCP
(received as part of DHCP configuration)
This route IS NOT written to configuration files
Default - The route is Configured by default system config
exists till any other configuration is applied.
Icmp - The route is Configured by ICMP protocol either by
router advertisements or to be advertised in router
advertisements ."
::= { rlInternInetStaticRouteEntry 9 }
rlInternInetStaticRouteRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status variable, used according to row
installation and removal conventions.
A row entry cannot be modified when the status is
marked as active(1)."
::= { rlInternInetStaticRouteEntry 10 }
rlInternInetStaticRouteForwardingStatus OBJECT-TYPE
SYNTAX INTEGER {
active (1),
inactive (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"active - An indication that the route has implication on routing
inactive - the route is a backup route or it is down. It is not used
in forwarding decision.
Down means that the Ip interface on which it is configured is down."
::= { rlInternInetStaticRouteEntry 11 }
--- IPv6 Host Forwarding Table
rlIpv6HostForwardingTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlIpv6HostForwardingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entity's IPv6 host forwarding table."
::= { rlIPv6 11 }
rlIpv6HostForwardingEntry OBJECT-TYPE
SYNTAX RlIpv6HostForwardingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A particular Static(user configured) route to a particular destination."
INDEX {
rlIpv6HostForwardingDestType,
rlIpv6HostForwardingDest,
rlIpv6HostForwardingPfxLen,
rlIpv6HostForwardingNextHopType,
rlIpv6HostForwardingNextHop,
rlIpv6HostForwardingIfIndex,
rlIpv6HostForwardingType
}
::= { rlIpv6HostForwardingTable 1 }
RlIpv6HostForwardingEntry ::= SEQUENCE {
rlIpv6HostForwardingDestType InetAddressType,
rlIpv6HostForwardingDest InetAddress,
rlIpv6HostForwardingPfxLen InetAddressPrefixLength,
rlIpv6HostForwardingNextHopType InetAddressType,
rlIpv6HostForwardingNextHop InetAddress,
rlIpv6HostForwardingIfIndex InterfaceIndexOrZero,
rlIpv6HostForwardingType INTEGER,
rlIpv6HostForwardingPathCost Unsigned32
}
rlIpv6HostForwardingDestType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the address used as the destination
internetwork address or subnet address."
::= { rlIpv6HostForwardingEntry 1 }
rlIpv6HostForwardingDest OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Destination internetwork address or subnet address."
::= { rlIpv6HostForwardingEntry 2 }
rlIpv6HostForwardingPfxLen OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the number of leading one bits that form the
mask to be logical-ANDed with the destination address
before being compared to the value in the
rlIpv6HostForwardingDest field."
::= { rlIpv6HostForwardingEntry 3 }
rlIpv6HostForwardingNextHopType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The type of the address used as the next-hop address
for this route."
::= { rlIpv6HostForwardingEntry 4 }
rlIpv6HostForwardingNextHop OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The next-hop IP address, if any.
A next-hop IP address is not required if an output interface
index is specified (in other words, if rlIpv6HostForwardingIfIndex is
non-zero).
If there is no next-hop IP address, the rlIpv6HostForwardingNextHop
object is set to all zeroes."
::= { rlIpv6HostForwardingEntry 5 }
rlIpv6HostForwardingIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex value that identifies the local interface
through which the next hop of this route should be
reached. A value of 0 is valid and represents the
scenario where no interface is specified."
DEFVAL { 0 }
::= { rlIpv6HostForwardingEntry 6 }
rlIpv6HostForwardingType OBJECT-TYPE
SYNTAX INTEGER {
redirect (1), -- ICMP redirect
local (2), -- local interface (subnet)
nd (3), -- route that is configred through router advertisment (on-link prefix)
remote-static (4), -- default static route
remote-dynamic (5) -- default dynamic route
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Forwarding type"
::= { rlIpv6HostForwardingEntry 7 }
rlIpv6HostForwardingPathCost OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Path cost for this route."
::= { rlIpv6HostForwardingEntry 8 }
rlipv6EnabledByDefaultRemovedIfindex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the MIB is relevant when mtsc parameter DHCPv6_client_enabled_by_default is TRUE.
If the MIB has non zero value the meaning is that ipv6 interface has removed from configuration by the user
on the interface and signs to application not to add ipv6 interface. Otherwise (zero value) - the meaning is
that Ipv6 interface must be added. "
DEFVAL{ 0 }
::= { rlIPv6 12 }
--- rlManagementIPv6
rlManagementIpv6 OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The system management IPv6 address which is kept between system mode changes"
::= { rlIPv6 13 }
rlManagementIpv6Action OBJECT-TYPE
SYNTAX INTEGER {
clear (1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The system management IPv6 action:
clear - delete all ipv6 interfaces from startup configuration database except rlManagementIpv6"
::= { rlIPv6 14 }
--- IPv6 Tunnel if/addr/prefix Table (internal mib)
rlIpv6TunnelToIPv6DbTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlIpv6TunnelToIPv6DbEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entity's IPv6 Tunnel if/addr/prefix table."
::= { rlIPv6 15 }
rlIpv6TunnelToIPv6DbEntry OBJECT-TYPE
SYNTAX RlIpv6TunnelToIPv6DbEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A particular tunnel configured data to IPv6 db."
INDEX {
rlIpv6TunnelToIPv6IfIndex
}
::= { rlIpv6TunnelToIPv6DbTable 1 }
RlIpv6TunnelToIPv6DbEntry ::= SEQUENCE {
rlIpv6TunnelToIPv6IfIndex InterfaceIndex,
rlIpv6TunnelToIPv6Action INTEGER,
rlIpv6TunnelToIPv6TunnelType IANAtunnelType,
rlIpv6TunnelToIPv6Address InetAddress,
rlIpv6TunnelToIPv6PrefixLength Unsigned32,
rlIpv6TunnelToIPv6Mtu Unsigned32,
rlIpv6TunnelToIPv6MinRtrSolicitationInterval Unsigned32,
rlIpv6TunnelToIPv6LinkLayerIPv4 IpAddress
}
rlIpv6TunnelToIPv6IfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IfIndex of tunnel interface"
::= { rlIpv6TunnelToIPv6DbEntry 1 }
rlIpv6TunnelToIPv6Action OBJECT-TYPE
SYNTAX INTEGER {
createTunnel (1), -- create Tunnel interface
destroyTunnel (2), -- destroy Tunnel interface
addAddress (3), -- add IPv6 Address
deleteAddress (4), -- delete IPv6 Address
updateAddresses (5), -- refresh IPv6 Address on tunnel interface (if link-layer address was changed)
six2fourCfgRestore(6), -- restore lost 6to4 configuration
six2fourCfgClear (7) -- clear stale 6to4 configuration
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Action of the entry. All other fields relevant for appropriate actions."
::= { rlIpv6TunnelToIPv6DbEntry 2 }
rlIpv6TunnelToIPv6TunnelType OBJECT-TYPE
SYNTAX IANAtunnelType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Tunnel type (manual/isatap/6to4/...)."
::= { rlIpv6TunnelToIPv6DbEntry 3 }
rlIpv6TunnelToIPv6Address OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The address used for this tunnel. Could be local IPv4 of the tunnel."
::= { rlIpv6TunnelToIPv6DbEntry 4 }
rlIpv6TunnelToIPv6PrefixLength OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The address/prefix length used for above address if applicable."
::= { rlIpv6TunnelToIPv6DbEntry 5 }
rlIpv6TunnelToIPv6Mtu OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Mtu of this interface. Used for host isatap tunnels"
::= { rlIpv6TunnelToIPv6DbEntry 6 }
rlIpv6TunnelToIPv6MinRtrSolicitationInterval OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Minimal router solicitation interval. Used for host isatap tunnels"
::= { rlIpv6TunnelToIPv6DbEntry 7 }
rlIpv6TunnelToIPv6LinkLayerIPv4 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IPv4 address used for link-layer of ipv6 over ipv4 tunnel"
::= { rlIpv6TunnelToIPv6DbEntry 8 }
rlIpv6DefaultTC OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The default value inserted into the TC
field of the IPv6 header of datagrams originated at
this entity, whenever a TC value is not supplied
by the application."
::= { rlIPv6 16 }
rlIpv6DefaultUP OBJECT-TYPE
SYNTAX INTEGER(0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The default value inserted into the User Priority
field in the 802.1q VLAN tag of IPv4 frames sent by the
CPU."
::= { rlIPv6 17 }
rlIpv6MtuSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Sets the maximum transmission unit (MTU) size in bytes of IPv6 packets (payload)."
::= { rlIPv6 18 }
--- IPv6 Auxulary Mapping Table
rlInetStaticRouteAuxMappingTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlInetStaticRouteAuxMappingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entity's IPv6 auxulary mapping table. Serves to map nexthop ipv6 address to on-link prefix ifindex"
::= { rlIPv6 19 }
rlInetStaticRouteAuxMappingEntry OBJECT-TYPE
SYNTAX RlInetStaticRouteAuxMappingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An Auxulary Mapping table to find onlink prefix ifindex for ipv6 static route."
INDEX {
rlInetStaticRouteAuxMappingNextHopType,
rlInetStaticRouteAuxMappingNextHop
}
::= { rlInetStaticRouteAuxMappingTable 1 }
RlInetStaticRouteAuxMappingEntry ::= SEQUENCE {
rlInetStaticRouteAuxMappingNextHopType InetAddressType,
rlInetStaticRouteAuxMappingNextHop InetAddress,
rlInetStaticRouteAuxMappingNextHopIfIndex InterfaceIndexOrZero
}
rlInetStaticRouteAuxMappingNextHopType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The type of the address used as the next-hop address
for this route."
::= { rlInetStaticRouteAuxMappingEntry 1 }
rlInetStaticRouteAuxMappingNextHop OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The next-hop IP address"
::= { rlInetStaticRouteAuxMappingEntry 2 }
rlInetStaticRouteAuxMappingNextHopIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ifIndex mapped to specified necthop address"
::= { rlInetStaticRouteAuxMappingEntry 3 }
END
|