]> git.proxmox.com Git - mirror_frr.git/blame - doc/ospf6d.texi
OSPFD: Update Segment Routing following reviews
[mirror_frr.git] / doc / ospf6d.texi
CommitLineData
76b89b4a 1@node OSPFv3
718e3744 2@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::
aa5943f7 13* OSPF6 Configuration Examples::
718e3744 14@end menu
15
76b89b4a 16@node OSPF6 router
718e3744 17@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
3810e06e
DD
31@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
fd500689
VB
69@deffn {OSPF6 Command} {auto-cost reference-bandwidth @var{cost}} {}
70@deffnx {OSPF6 Command} {no auto-cost reference-bandwidth} {}
71This sets the reference bandwidth for cost calculations, where this
72bandwidth is considered equivalent to an OSPF cost of 1, specified in
73Mbits/s. The default is 100Mbit/s (i.e. a link of bandwidth 100Mbit/s
74or higher will have a cost of 1. Cost of lower bandwidth links will be
75scaled with reference to this cost).
76
77This configuration setting MUST be consistent across all routers
78within the OSPF domain.
79@end deffn
80
76b89b4a 81@node OSPF6 area
718e3744 82@section OSPF6 area
83
84Area support for OSPFv3 is not yet implemented.
85
76b89b4a 86@node OSPF6 interface
718e3744 87@section OSPF6 interface
88
89@deffn {Interface Command} {ipv6 ospf6 cost COST} {}
fd500689
VB
90Sets interface's output cost. Default value depends on the interface
91bandwidth and on the auto-cost reference bandwidth.
718e3744 92@end deffn
93
94@deffn {Interface Command} {ipv6 ospf6 hello-interval HELLOINTERVAL} {}
95Sets interface's Hello Interval. Default 40
96@end deffn
97
98@deffn {Interface Command} {ipv6 ospf6 dead-interval DEADINTERVAL} {}
99Sets interface's Router Dead Interval. Default value is 40.
100@end deffn
101
102@deffn {Interface Command} {ipv6 ospf6 retransmit-interval RETRANSMITINTERVAL} {}
103Sets interface's Rxmt Interval. Default value is 5.
104@end deffn
105
106@deffn {Interface Command} {ipv6 ospf6 priority PRIORITY} {}
107Sets interface's Router Priority. Default value is 1.
108@end deffn
109
110@deffn {Interface Command} {ipv6 ospf6 transmit-delay TRANSMITDELAY} {}
111Sets interface's Inf-Trans-Delay. Default value is 1.
112@end deffn
113
c5926a92
DD
114@deffn {Interface Command} {ipv6 ospf6 network (broadcast|point-to-point)} {}
115Set explicitly network type for specifed interface.
116@end deffn
117
76b89b4a 118@node Redistribute routes to OSPF6
718e3744 119@section Redistribute routes to OSPF6
120
121@deffn {OSPF6 Command} {redistribute static} {}
122@deffnx {OSPF6 Command} {redistribute connected} {}
123@deffnx {OSPF6 Command} {redistribute ripng} {}
124@end deffn
125
76b89b4a 126@node Showing OSPF6 information
718e3744 127@section Showing OSPF6 information
128
129@deffn {Command} {show ipv6 ospf6 [INSTANCE_ID]} {}
130INSTANCE_ID is an optional OSPF instance ID. To see router ID and OSPF
131instance ID, simply type "show ipv6 ospf6 <cr>".
132@end deffn
133
134@deffn {Command} {show ipv6 ospf6 database} {}
135This command shows LSA database summary. You can specify the type of LSA.
136@end deffn
137
138@deffn {Command} {show ipv6 ospf6 interface} {}
139To see OSPF interface configuration like costs.
140@end deffn
141
142@deffn {Command} {show ipv6 ospf6 neighbor} {}
143Shows state and chosen (Backup) DR of neighbor.
144@end deffn
145
146@deffn {Command} {show ipv6 ospf6 request-list A.B.C.D} {}
147Shows requestlist of neighbor.
148@end deffn
149
150@deffn {Command} {show ipv6 route ospf6} {}
151This command shows internal routing table.
152@end deffn
aa5943f7 153
eefe02da
DS
154@deffn {Command} {show ipv6 ospf6 zebra} {}
155Shows state about what is being redistributed between zebra and OSPF6
156@end deffn
157
aa5943f7 158@node OSPF6 Configuration Examples
159@section OSPF6 Configuration Examples
160
161Example of ospf6d configured on one interface and area:
162
163@example
164interface eth0
165 ipv6 ospf6 instance-id 0
166!
167router ospf6
168 router-id 212.17.55.53
169 area 0.0.0.0 range 2001:770:105:2::/64
170 interface eth0 area 0.0.0.0
171!
172@end example