This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathCISCOSB-IPv6
1949 lines (1674 loc) · 63.9 KB
/
CISCOSB-IPv6
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
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 "200809250000Z"
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
}
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 }
--- 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)
}