blob: c01c0510d209c77b658f3f6e05557ed2088bd129 [file] [log] [blame]
paul76b89b42004-11-06 17:13:09 +00001@node OSPFv3
paul718e3742002-12-13 20:15:29 +00002@chapter OSPFv3
3
4@command{ospf6d} is a daemon support OSPF version 3 for IPv6 network.
5OSPF for IPv6 is described in RFC2740.
6
7@menu
8* OSPF6 router::
9* OSPF6 area::
10* OSPF6 interface::
11* Redistribute routes to OSPF6::
12* Showing OSPF6 information::
paulaa5943f2005-11-04 21:53:59 +000013* OSPF6 Configuration Examples::
paul718e3742002-12-13 20:15:29 +000014@end menu
15
paul76b89b42004-11-06 17:13:09 +000016@node OSPF6 router
paul718e3742002-12-13 20:15:29 +000017@section OSPF6 router
18
19@deffn {Command} {router ospf6} {}
20@end deffn
21
22@deffn {OSPF6 Command} {router-id @var{a.b.c.d}} {}
23Set router's Router-ID.
24@end deffn
25
26@deffn {OSPF6 Command} {interface @var{ifname} area @var{area}} {}
27Bind interface to specified area, and start sending OSPF packets. @var{area} can
28be specified as 0.
29@end deffn
30
Dinesh Dutt3810e062013-08-24 07:54:09 +000031@deffn {OSPF6 Command} {timers throttle spf @var{delay} @var{initial-holdtime} @var{max-holdtime}} {}
32@deffnx {OSPF6 Command} {no timers throttle spf} {}
33This command sets the initial @var{delay}, the @var{initial-holdtime}
34and the @var{maximum-holdtime} between when SPF is calculated and the
35event which triggered the calculation. The times are specified in
36milliseconds and must be in the range of 0 to 600000 milliseconds.
37
38The @var{delay} specifies the minimum amount of time to delay SPF
39calculation (hence it affects how long SPF calculation is delayed after
40an event which occurs outside of the holdtime of any previous SPF
41calculation, and also serves as a minimum holdtime).
42
43Consecutive SPF calculations will always be seperated by at least
44'hold-time' milliseconds. The hold-time is adaptive and initially is
45set to the @var{initial-holdtime} configured with the above command.
46Events which occur within the holdtime of the previous SPF calculation
47will cause the holdtime to be increased by @var{initial-holdtime}, bounded
48by the @var{maximum-holdtime} configured with this command. If the adaptive
49hold-time elapses without any SPF-triggering event occuring then
50the current holdtime is reset to the @var{initial-holdtime}.
51
52@example
53@group
54router ospf6
55 timers throttle spf 200 400 10000
56@end group
57@end example
58
59In this example, the @var{delay} is set to 200ms, the @var{initial
60holdtime} is set to 400ms and the @var{maximum holdtime} to 10s. Hence
61there will always be at least 200ms between an event which requires SPF
62calculation and the actual SPF calculation. Further consecutive SPF
63calculations will always be seperated by between 400ms to 10s, the
64hold-time increasing by 400ms each time an SPF-triggering event occurs
65within the hold-time of the previous SPF calculation.
66
67@end deffn
68
paul76b89b42004-11-06 17:13:09 +000069@node OSPF6 area
paul718e3742002-12-13 20:15:29 +000070@section OSPF6 area
71
72Area support for OSPFv3 is not yet implemented.
73
paul76b89b42004-11-06 17:13:09 +000074@node OSPF6 interface
paul718e3742002-12-13 20:15:29 +000075@section OSPF6 interface
76
77@deffn {Interface Command} {ipv6 ospf6 cost COST} {}
78Sets interface's output cost. Default value is 1.
79@end deffn
80
81@deffn {Interface Command} {ipv6 ospf6 hello-interval HELLOINTERVAL} {}
82Sets interface's Hello Interval. Default 40
83@end deffn
84
85@deffn {Interface Command} {ipv6 ospf6 dead-interval DEADINTERVAL} {}
86Sets interface's Router Dead Interval. Default value is 40.
87@end deffn
88
89@deffn {Interface Command} {ipv6 ospf6 retransmit-interval RETRANSMITINTERVAL} {}
90Sets interface's Rxmt Interval. Default value is 5.
91@end deffn
92
93@deffn {Interface Command} {ipv6 ospf6 priority PRIORITY} {}
94Sets interface's Router Priority. Default value is 1.
95@end deffn
96
97@deffn {Interface Command} {ipv6 ospf6 transmit-delay TRANSMITDELAY} {}
98Sets interface's Inf-Trans-Delay. Default value is 1.
99@end deffn
100
paul76b89b42004-11-06 17:13:09 +0000101@node Redistribute routes to OSPF6
paul718e3742002-12-13 20:15:29 +0000102@section Redistribute routes to OSPF6
103
104@deffn {OSPF6 Command} {redistribute static} {}
105@deffnx {OSPF6 Command} {redistribute connected} {}
106@deffnx {OSPF6 Command} {redistribute ripng} {}
107@end deffn
108
paul76b89b42004-11-06 17:13:09 +0000109@node Showing OSPF6 information
paul718e3742002-12-13 20:15:29 +0000110@section Showing OSPF6 information
111
112@deffn {Command} {show ipv6 ospf6 [INSTANCE_ID]} {}
113INSTANCE_ID is an optional OSPF instance ID. To see router ID and OSPF
114instance ID, simply type "show ipv6 ospf6 <cr>".
115@end deffn
116
117@deffn {Command} {show ipv6 ospf6 database} {}
118This command shows LSA database summary. You can specify the type of LSA.
119@end deffn
120
121@deffn {Command} {show ipv6 ospf6 interface} {}
122To see OSPF interface configuration like costs.
123@end deffn
124
125@deffn {Command} {show ipv6 ospf6 neighbor} {}
126Shows state and chosen (Backup) DR of neighbor.
127@end deffn
128
129@deffn {Command} {show ipv6 ospf6 request-list A.B.C.D} {}
130Shows requestlist of neighbor.
131@end deffn
132
133@deffn {Command} {show ipv6 route ospf6} {}
134This command shows internal routing table.
135@end deffn
paulaa5943f2005-11-04 21:53:59 +0000136
137@node OSPF6 Configuration Examples
138@section OSPF6 Configuration Examples
139
140Example of ospf6d configured on one interface and area:
141
142@example
143interface eth0
144 ipv6 ospf6 instance-id 0
145!
146router ospf6
147 router-id 212.17.55.53
148 area 0.0.0.0 range 2001:770:105:2::/64
149 interface eth0 area 0.0.0.0
150!
151@end example