]> git.proxmox.com Git - mirror_frr.git/blame - doc/user/ospfd.rst
doc: add doc for ospf per-interface write socket
[mirror_frr.git] / doc / user / ospfd.rst
CommitLineData
11ab5329 1.. _ospfv2:
42fc5d26
QY
2
3******
4OSPFv2
5******
6
c1a54c05
QY
7:abbr:`OSPF (Open Shortest Path First)` version 2 is a routing protocol which
8is described in :rfc:`2328`. OSPF is an :abbr:`IGP (Interior Gateway
9Protocol)`. Compared with :abbr:`RIP`, :abbr:`OSPF` can provide scalable
10network support and faster convergence times. OSPF is widely used in large
11networks such as :abbr:`ISP (Internet Service Provider)` backbone and
12enterprise networks.
42fc5d26 13
c1a54c05 14.. include:: ospf_fundamentals.rst
42fc5d26 15
c1a54c05 16.. _configuring-ospfd:
42fc5d26 17
e6f1b831
QY
18Configuring OSPF
19================
42fc5d26 20
e6f1b831
QY
21*ospfd* accepts all :ref:`common-invocation-options`.
22
23.. option:: -n, --instance
24
25 Specify the instance number for this invocation of *ospfd*.
26
27.. option:: -a, --apiserver
28
37f92f22 29 Enable the OSPF API server. This is required to use ``ospfclient``.
e6f1b831
QY
30
31*ospfd* must acquire interface information from *zebra* in order to function.
32Therefore *zebra* must be running before invoking *ospfd*. Also, if *zebra* is
33restarted then *ospfd* must be too.
42fc5d26 34
c1a54c05 35Like other daemons, *ospfd* configuration is done in :abbr:`OSPF` specific
e6f1b831
QY
36configuration file :file:`ospfd.conf` when the integrated config is not used.
37
38.. _ospf-multi-instance:
39
40Multi-instance Support
41----------------------
42
43OSPF supports multiple instances. Each instance is identified by a positive
44nonzero integer that must be provided when adding configuration items specific
45to that instance. Enabling instances is done with :file:`/etc/frr/daemons` in
46the following manner:
47
48::
49
50 ...
51 ospfd=yes
52 ospfd_instances=1,5,6
53 ...
54
55The ``ospfd_instances`` variable controls which instances are started and what
56their IDs are. In this example, after starting FRR you should see the following
57processes:
58
59.. code-block:: shell
60
61 # ps -ef | grep "ospfd"
62 frr 11816 1 0 17:30 ? 00:00:00 /usr/lib/frr/ospfd --daemon -A 127.0.0.1 -n 1
63 frr 11822 1 0 17:30 ? 00:00:00 /usr/lib/frr/ospfd --daemon -A 127.0.0.1 -n 2
64 frr 11828 1 0 17:30 ? 00:00:00 /usr/lib/frr/ospfd --daemon -A 127.0.0.1 -n 3
65
66
67The instance number should be specified in the config when addressing a particular instance:
68
69.. code-block:: frr
70
71 router ospf 5
349ee664 72 ospf router-id 1.2.3.4
e6f1b831
QY
73 area 0.0.0.0 authentication message-digest
74 ...
42fc5d26 75
0efdf0fe 76.. _ospf-router:
42fc5d26 77
e6f1b831
QY
78Routers
79-------
42fc5d26 80
e6f1b831 81To start OSPF process you have to specify the OSPF router.
42fc5d26 82
5ebb2239 83.. clicmd:: router ospf [{(1-65535)|vrf NAME}]
42fc5d26 84
42fc5d26 85
e6f1b831 86 Enable or disable the OSPF process.
42fc5d26 87
5ebb2239 88 Multiple instances don't support `vrf NAME`.
89
c1a54c05 90.. clicmd:: ospf router-id A.B.C.D
42fc5d26 91
42fc5d26 92
e6f1b831
QY
93 This sets the router-ID of the OSPF process. The router-ID may be an IP
94 address of the router, but need not be - it can be any arbitrary 32bit
95 number. However it MUST be unique within the entire OSPF domain to the OSPF
96 speaker - bad things will happen if multiple OSPF speakers are configured
97 with the same router-ID! If one is not specified then *ospfd* will obtain a
98 router-ID automatically from *zebra*.
42fc5d26 99
c1a54c05
QY
100.. clicmd:: ospf abr-type TYPE
101
c1a54c05 102
6ee602cd
QY
103 `type` can be cisco|ibm|shortcut|standard. The "Cisco" and "IBM" types
104 are equivalent.
105
106 The OSPF standard for ABR behaviour does not allow an ABR to consider
107 routes through non-backbone areas when its links to the backbone are
108 down, even when there are other ABRs in attached non-backbone areas
109 which still can reach the backbone - this restriction exists primarily
110 to ensure routing-loops are avoided.
111
d1e7591e
QY
112 With the "Cisco" or "IBM" ABR type, the default in this release of FRR, this
113 restriction is lifted, allowing an ABR to consider summaries learned from
114 other ABRs through non-backbone areas, and hence route via non-backbone
115 areas as a last resort when, and only when, backbone links are down.
6ee602cd
QY
116
117 Note that areas with fully-adjacent virtual-links are considered to be
118 "transit capable" and can always be used to route backbone traffic, and
119 hence are unaffected by this setting (:clicmd:`area A.B.C.D virtual-link A.B.C.D`).
120
121 More information regarding the behaviour controlled by this command can
122 be found in :rfc:`3509`, and :t:`draft-ietf-ospf-shortcut-abr-02.txt`.
123
124 Quote: "Though the definition of the :abbr:`ABR (Area Border Router)`
125 in the OSPF specification does not require a router with multiple
126 attached areas to have a backbone connection, it is actually
127 necessary to provide successful routing to the inter-area and
128 external destinations. If this requirement is not met, all traffic
129 destined for the areas not connected to such an ABR or out of the
130 OSPF domain, is dropped. This document describes alternative ABR
131 behaviors implemented in Cisco and IBM routers."
42fc5d26 132
c1a54c05 133.. clicmd:: ospf rfc1583compatibility
a8c90e15 134
42fc5d26 135
d1e7591e 136 :rfc:`2328`, the successor to :rfc:`1583`, suggests according
c1a54c05
QY
137 to section G.2 (changes) in section 16.4 a change to the path
138 preference algorithm that prevents possible routing loops that were
139 possible in the old version of OSPFv2. More specifically it demands
140 that inter-area paths and intra-area backbone path are now of equal preference
141 but still both preferred to external paths.
142
143 This command should NOT be set normally.
144
c1a54c05
QY
145.. clicmd:: log-adjacency-changes [detail]
146
c1a54c05
QY
147
148 Configures ospfd to log changes in adjacency. With the optional
149 detail argument, all changes in adjacency status are shown. Without detail,
150 only changes to full or regressions are shown.
151
29ec6244 152.. clicmd:: passive-interface default
c1a54c05 153
29ec6244
IR
154 Make all interfaces that belong to this router passive by default. For the
155 description of passive interface look at :clicmd:`ip ospf passive [A.B.C.D]`.
156 Per-interface configuration takes precedence over the default value.
c1a54c05 157
fc0a7cad 158.. clicmd:: timers throttle spf (0-600000) (0-600000) (0-600000)
c1a54c05 159
c1a54c05
QY
160 This command sets the initial `delay`, the `initial-holdtime`
161 and the `maximum-holdtime` between when SPF is calculated and the
162 event which triggered the calculation. The times are specified in
163 milliseconds and must be in the range of 0 to 600000 milliseconds.
164
165 The `delay` specifies the minimum amount of time to delay SPF
166 calculation (hence it affects how long SPF calculation is delayed after
167 an event which occurs outside of the holdtime of any previous SPF
168 calculation, and also serves as a minimum holdtime).
169
d1e7591e 170 Consecutive SPF calculations will always be separated by at least
c1a54c05
QY
171 'hold-time' milliseconds. The hold-time is adaptive and initially is
172 set to the `initial-holdtime` configured with the above command.
173 Events which occur within the holdtime of the previous SPF calculation
174 will cause the holdtime to be increased by `initial-holdtime`, bounded
175 by the `maximum-holdtime` configured with this command. If the adaptive
d1e7591e 176 hold-time elapses without any SPF-triggering event occurring then
c1a54c05 177 the current holdtime is reset to the `initial-holdtime`. The current
6ee602cd 178 holdtime can be viewed with :clicmd:`show ip ospf`, where it is expressed as
c1a54c05 179 a multiplier of the `initial-holdtime`.
42fc5d26 180
9eb95b3b 181 .. code-block:: frr
c1a54c05
QY
182
183 router ospf
184 timers throttle spf 200 400 10000
185
186
187 In this example, the `delay` is set to 200ms, the initial holdtime is set to
188 400ms and the `maximum holdtime` to 10s. Hence there will always be at least
189 200ms between an event which requires SPF calculation and the actual SPF
d1e7591e 190 calculation. Further consecutive SPF calculations will always be separated
c1a54c05
QY
191 by between 400ms to 10s, the hold-time increasing by 400ms each time an
192 SPF-triggering event occurs within the hold-time of the previous SPF
193 calculation.
42fc5d26 194
56f0bea7 195 This command supersedes the *timers spf* command in previous FRR
c1a54c05 196 releases.
42fc5d26 197
5027538a 198.. clicmd:: max-metric router-lsa [on-startup (5-86400)|on-shutdown (5-100)]
42fc5d26 199
c1a54c05
QY
200.. clicmd:: max-metric router-lsa administrative
201
42fc5d26 202
c1a54c05
QY
203 This enables :rfc:`3137` support, where the OSPF process describes its
204 transit links in its router-LSA as having infinite distance so that other
205 routers will avoid calculating transit paths through the router while still
206 being able to reach networks through the router.
42fc5d26 207
c1a54c05
QY
208 This support may be enabled administratively (and indefinitely) or
209 conditionally. Conditional enabling of max-metric router-lsas can be for a
210 period of seconds after startup and/or for a period of seconds prior to
211 shutdown.
42fc5d26 212
c1a54c05
QY
213 Enabling this for a period after startup allows OSPF to converge fully first
214 without affecting any existing routes used by other routers, while still
215 allowing any connected stub links and/or redistributed routes to be
216 reachable. Enabling this for a period of time in advance of shutdown allows
217 the router to gracefully excuse itself from the OSPF domain.
42fc5d26 218
c1a54c05
QY
219 Enabling this feature administratively allows for administrative
220 intervention for whatever reason, for an indefinite period of time. Note
221 that if the configuration is written to file, this administrative form of
222 the stub-router command will also be written to file. If *ospfd* is
223 restarted later, the command will then take effect until manually
224 deconfigured.
42fc5d26 225
c1a54c05
QY
226 Configured state of this feature as well as current status, such as the
227 number of second remaining till on-startup or on-shutdown ends, can be
6ee602cd 228 viewed with the :clicmd:`show ip ospf` command.
42fc5d26 229
c1a54c05 230.. clicmd:: auto-cost reference-bandwidth (1-4294967)
42fc5d26 231
42fc5d26 232
c1a54c05
QY
233 This sets the reference
234 bandwidth for cost calculations, where this bandwidth is considered
235 equivalent to an OSPF cost of 1, specified in Mbits/s. The default is
236 100Mbit/s (i.e. a link of bandwidth 100Mbit/s or higher will have a
237 cost of 1. Cost of lower bandwidth links will be scaled with reference
238 to this cost).
42fc5d26 239
c1a54c05
QY
240 This configuration setting MUST be consistent across all routers within the
241 OSPF domain.
42fc5d26 242
c1a54c05 243.. clicmd:: network A.B.C.D/M area A.B.C.D
42fc5d26 244
c1a54c05 245.. clicmd:: network A.B.C.D/M area (0-4294967295)
42fc5d26 246
42fc5d26 247
42fc5d26 248
c1a54c05
QY
249 This command specifies the OSPF enabled interface(s). If the interface has
250 an address from range 192.168.1.0/24 then the command below enables ospf
251 on this interface so router can provide network information to the other
252 ospf routers via this interface.
42fc5d26 253
9eb95b3b 254 .. code-block:: frr
a8c90e15 255
9eb95b3b
QY
256 router ospf
257 network 192.168.1.0/24 area 0.0.0.0
42fc5d26 258
d1e7591e 259 Prefix length in interface must be equal or bigger (i.e. smaller network) than
c1a54c05
QY
260 prefix length in network statement. For example statement above doesn't enable
261 ospf on interface with address 192.168.1.1/23, but it does on interface with
262 address 192.168.1.129/25.
42fc5d26 263
c1a54c05
QY
264 Note that the behavior when there is a peer address
265 defined on an interface changed after release 0.99.7.
266 Currently, if a peer prefix has been configured,
267 then we test whether the prefix in the network command contains
268 the destination prefix. Otherwise, we test whether the network command prefix
269 contains the local address prefix of the interface.
42fc5d26 270
3c07b475
JAG
271 It is also possible to enable OSPF on a per interface/subnet basis
272 using the interface command (:clicmd:`ip ospf area AREA [ADDR]`).
273 However, mixing both network commands (:clicmd:`network`) and interface
274 commands (:clicmd:`ip ospf`) on the same router is not supported.
42fc5d26 275
dfb2ee85
JU
276.. clicmd:: proactive-arp
277
dfb2ee85
JU
278
279 This command enables or disables sending ARP requests to update neighbor
280 table entries. It speeds up convergence for /32 networks on a P2P
b832909b 281 connection.
dfb2ee85
JU
282
283 This feature is enabled by default.
42fc5d26 284
f91ce319
MR
285.. clicmd:: clear ip ospf [(1-65535)] process
286
287 This command can be used to clear the ospf process data structures. This
288 will clear the ospf neighborship as well and it will get re-established.
289 This will clear the LSDB too. This will be helpful when there is a change
290 in router-id and if user wants the router-id change to take effect, user can
291 use this cli instead of restarting the ospfd daemon.
292
f91ce319
MR
293.. clicmd:: clear ip ospf [(1-65535)] neighbor
294
295 This command can be used to clear the ospf neighbor data structures. This
296 will clear the ospf neighborship and it will get re-established. This
297 command can be used when the neighbor state get stuck at some state and
298 this can be used to recover it from that state.
299
25d6c967 300.. clicmd:: maximum-paths (1-64)
3d5b9855 301
25d6c967
IR
302 Use this command to control the maximum number of equal cost paths to reach
303 a specific destination. The upper limit may differ if you change the value
304 of MULTIPATH_NUM during compilation. The default is MULTIPATH_NUM (64).
3d5b9855 305
44db98df
PR
306.. clicmd:: write-multiplier (1-100)
307
308 Use this command to tune the amount of work done in the packet read and
309 write threads before relinquishing control. The parameter is the number
310 of packets to process before returning. The defult value of this parameter
311 is 20.
312
6e6e1020
MS
313.. clicmd:: socket buffer <send | recv | all> (1-4000000000)
314
315 This command controls the ospf instance's socket buffer sizes. The
316 'no' form resets one or both values to the default.
317
86a36bad
MS
318.. clicmd:: no socket-per-interface
319
320 Ordinarily, ospfd uses a socket per interface for sending
321 packets. This command disables those per-interface sockets, and
322 causes ospfd to use a single socket per ospf instance for sending
323 and receiving packets.
324
0efdf0fe 325.. _ospf-area:
42fc5d26 326
e6f1b831
QY
327Areas
328-----
42fc5d26 329
dea89532 330.. clicmd:: area A.B.C.D range A.B.C.D/M [advertise [cost (0-16777215)]]
42fc5d26 331
dea89532 332.. clicmd:: area (0-4294967295) range A.B.C.D/M [advertise [cost (0-16777215)]]
42fc5d26 333
42fc5d26 334
42fc5d26 335
9eb95b3b
QY
336 Summarize intra area paths from specified area into one Type-3 summary-LSA
337 announced to other areas. This command can be used only in ABR and ONLY
d1e7591e 338 router-LSAs (Type-1) and network-LSAs (Type-2) (i.e. LSAs with scope area) can
9eb95b3b 339 be summarized. Type-5 AS-external-LSAs can't be summarized - their scope is AS.
42fc5d26 340
9eb95b3b 341 .. code-block:: frr
42fc5d26 342
9eb95b3b
QY
343 router ospf
344 network 192.168.1.0/24 area 0.0.0.0
345 network 10.0.0.0/8 area 0.0.0.10
346 area 0.0.0.10 range 10.0.0.0/8
a8c90e15 347
42fc5d26 348
9eb95b3b
QY
349 With configuration above one Type-3 Summary-LSA with routing info 10.0.0.0/8 is
350 announced into backbone area if area 0.0.0.10 contains at least one intra-area
d1e7591e 351 network (i.e. described with router or network LSA) from this range.
42fc5d26 352
8bb8273f 353.. clicmd:: area A.B.C.D range A.B.C.D/M not-advertise
354
355.. clicmd:: area (0-4294967295) range A.B.C.D/M not-advertise
42fc5d26 356
42fc5d26 357
d1e7591e 358 Instead of summarizing intra area paths filter them - i.e. intra area paths from this
c1a54c05
QY
359 range are not advertised into other areas.
360 This command makes sense in ABR only.
42fc5d26 361
dea89532 362.. clicmd:: area A.B.C.D range A.B.C.D/M {substitute A.B.C.D/M|cost (0-16777215)}
8bb8273f 363
dea89532 364.. clicmd:: area (0-4294967295) range A.B.C.D/M {substitute A.B.C.D/M|cost (0-16777215)}
42fc5d26 365
42fc5d26 366
c1a54c05 367 Substitute summarized prefix with another prefix.
42fc5d26 368
9eb95b3b 369 .. code-block:: frr
42fc5d26 370
9eb95b3b
QY
371 router ospf
372 network 192.168.1.0/24 area 0.0.0.0
373 network 10.0.0.0/8 area 0.0.0.10
374 area 0.0.0.10 range 10.0.0.0/8 substitute 11.0.0.0/8
a8c90e15 375
42fc5d26 376
c1a54c05 377 One Type-3 summary-LSA with routing info 11.0.0.0/8 is announced into backbone area if
d1e7591e 378 area 0.0.0.10 contains at least one intra-area network (i.e. described with router-LSA or
c1a54c05 379 network-LSA) from range 10.0.0.0/8.
dea89532 380
381 By default, the metric of the summary route is calculated as the highest
382 metric among the summarized routes. The `cost` option, however, can be used
383 to set an explicit metric.
384
c1a54c05 385 This command makes sense in ABR only.
42fc5d26 386
c1a54c05 387.. clicmd:: area A.B.C.D virtual-link A.B.C.D
42fc5d26 388
c1a54c05 389.. clicmd:: area (0-4294967295) virtual-link A.B.C.D
42fc5d26 390
42fc5d26 391
42fc5d26 392
c1a54c05 393.. clicmd:: area A.B.C.D shortcut
42fc5d26 394
c1a54c05 395.. clicmd:: area (0-4294967295) shortcut
42fc5d26 396
42fc5d26 397
42fc5d26 398
c1a54c05
QY
399 Configure the area as Shortcut capable. See :rfc:`3509`. This requires
400 that the 'abr-type' be set to 'shortcut'.
42fc5d26 401
c1a54c05 402.. clicmd:: area A.B.C.D stub
42fc5d26 403
c1a54c05 404.. clicmd:: area (0-4294967295) stub
42fc5d26 405
42fc5d26 406
42fc5d26 407
c1a54c05
QY
408 Configure the area to be a stub area. That is, an area where no router
409 originates routes external to OSPF and hence an area where all external
410 routes are via the ABR(s). Hence, ABRs for such an area do not need
411 to pass AS-External LSAs (type-5s) or ASBR-Summary LSAs (type-4) into the
412 area. They need only pass Network-Summary (type-3) LSAs into such an area,
413 along with a default-route summary.
42fc5d26 414
c1a54c05 415.. clicmd:: area A.B.C.D stub no-summary
42fc5d26 416
c1a54c05 417.. clicmd:: area (0-4294967295) stub no-summary
42fc5d26 418
42fc5d26 419
42fc5d26 420
c1a54c05
QY
421 Prevents an *ospfd* ABR from injecting inter-area
422 summaries into the specified stub area.
42fc5d26 423
8807d9f7 424.. clicmd:: area A.B.C.D nssa
425
426.. clicmd:: area (0-4294967295) nssa
427
428 Configure the area to be a NSSA (Not-So-Stubby Area). This is an area that
429 allows OSPF to import external routes into a stub area via a new LSA type
430 (type 7). An NSSA autonomous system boundary router (ASBR) will generate this
431 type of LSA. The area border router (ABR) translates the LSA type 7 into LSA
432 type 5, which is propagated into the OSPF domain. NSSA areas are defined in
433 RFC 3101.
434
d71494e6 435.. clicmd:: area A.B.C.D nssa suppress-fa
436
437.. clicmd:: area (0-4294967295) nssa suppress-fa
438
439 Configure the router to set the forwarding address to 0.0.0.0 in all LSA type 5
440 translated from LSA type 7. The router needs to be elected the translator of the
441 area for this command to take effect. This feature causes routers that are
442 configured not to advertise forwarding addresses into the backbone to direct
443 forwarded traffic to the NSSA ABR translator.
444
017714e3
RW
445.. clicmd:: area A.B.C.D nssa default-information-originate [metric-type (1-2)] [metric (0-16777214)]
446
447.. clicmd:: area (0-4294967295) nssa default-information-originate [metric-type (1-2)] [metric (0-16777214)]
448
449 NSSA ABRs and ASBRs can be configured with the `default-information-originate`
450 option to originate a Type-7 default route into the NSSA area. In the case
451 of NSSA ASBRs, the origination of the default route is conditioned to the
452 existence of a default route in the RIB that wasn't learned via the OSPF
453 protocol.
454
f07ff222
RW
455.. clicmd:: area A.B.C.D nssa range A.B.C.D/M [<not-advertise|cost (0-16777215)>]
456
457.. clicmd:: area (0-4294967295) nssa range A.B.C.D/M [<not-advertise|cost (0-16777215)>]
458
459 Summarize a group of external subnets into a single Type-7 LSA, which is
460 then translated to a Type-5 LSA and avertised to the backbone.
461 This command can only be used at the area boundary (NSSA ABR router).
462
463 By default, the metric of the summary route is calculated as the highest
464 metric among the summarized routes. The `cost` option, however, can be used
465 to set an explicit metric.
466
467 The `not-advertise` option, when present, prevents the summary route from
468 being advertised, effectively filtering the summarized routes.
469
c1a54c05 470.. clicmd:: area A.B.C.D default-cost (0-16777215)
42fc5d26 471
42fc5d26 472
c1a54c05 473 Set the cost of default-summary LSAs announced to stubby areas.
42fc5d26 474
c1a54c05 475.. clicmd:: area A.B.C.D export-list NAME
42fc5d26 476
c1a54c05 477.. clicmd:: area (0-4294967295) export-list NAME
42fc5d26 478
42fc5d26 479
42fc5d26 480
c1a54c05
QY
481 Filter Type-3 summary-LSAs announced to other areas originated from intra-
482 area paths from specified area.
42fc5d26 483
9eb95b3b 484 .. code-block:: frr
a8c90e15 485
9eb95b3b
QY
486 router ospf
487 network 192.168.1.0/24 area 0.0.0.0
488 network 10.0.0.0/8 area 0.0.0.10
489 area 0.0.0.10 export-list foo
490 !
491 access-list foo permit 10.10.0.0/16
492 access-list foo deny any
42fc5d26 493
c1a54c05
QY
494 With example above any intra-area paths from area 0.0.0.10 and from range
495 10.10.0.0/16 (for example 10.10.1.0/24 and 10.10.2.128/30) are announced into
496 other areas as Type-3 summary-LSA's, but any others (for example 10.11.0.0/16
497 or 10.128.30.16/30) aren't.
42fc5d26 498
c1a54c05
QY
499 This command is only relevant if the router is an ABR for the specified
500 area.
42fc5d26 501
c1a54c05 502.. clicmd:: area A.B.C.D import-list NAME
42fc5d26 503
c1a54c05 504.. clicmd:: area (0-4294967295) import-list NAME
42fc5d26 505
42fc5d26 506
42fc5d26 507
9eb95b3b
QY
508 Same as export-list, but it applies to paths announced into specified area
509 as Type-3 summary-LSAs.
42fc5d26 510
c1a54c05 511.. clicmd:: area A.B.C.D filter-list prefix NAME in
42fc5d26 512
c1a54c05 513.. clicmd:: area A.B.C.D filter-list prefix NAME out
42fc5d26 514
c1a54c05 515.. clicmd:: area (0-4294967295) filter-list prefix NAME in
42fc5d26 516
c1a54c05 517.. clicmd:: area (0-4294967295) filter-list prefix NAME out
42fc5d26 518
42fc5d26 519
42fc5d26 520
42fc5d26 521
42fc5d26 522
9eb95b3b
QY
523 Filtering Type-3 summary-LSAs to/from area using prefix lists. This command
524 makes sense in ABR only.
42fc5d26 525
c1a54c05 526.. clicmd:: area A.B.C.D authentication
42fc5d26 527
c1a54c05 528.. clicmd:: area (0-4294967295) authentication
42fc5d26 529
42fc5d26 530
42fc5d26 531
9eb95b3b
QY
532 Specify that simple password authentication should be used for the given
533 area.
42fc5d26 534
c1a54c05 535.. clicmd:: area A.B.C.D authentication message-digest
42fc5d26 536
c1a54c05 537.. clicmd:: area (0-4294967295) authentication message-digest
42fc5d26 538
6ee602cd
QY
539 Specify that OSPF packets must be authenticated with MD5 HMACs within the
540 given area. Keying material must also be configured on a per-interface basis
541 (:clicmd:`ip ospf message-digest-key`).
42fc5d26 542
6ee602cd
QY
543 MD5 authentication may also be configured on a per-interface basis
544 (:clicmd:`ip ospf authentication message-digest`). Such per-interface
545 settings will override any per-area authentication setting.
42fc5d26 546
0efdf0fe 547.. _ospf-interface:
42fc5d26 548
e6f1b831
QY
549Interfaces
550----------
42fc5d26 551
c1a54c05 552.. clicmd:: ip ospf area AREA [ADDR]
42fc5d26 553
42fc5d26 554
c1a54c05 555 Enable OSPF on the interface, optionally restricted to just the IP address
3c07b475
JAG
556 given by `ADDR`, putting it in the `AREA` area. If you have a lot of
557 interfaces, and/or a lot of subnets, then enabling OSPF via this command
558 instead of (:clicmd:`network A.B.C.D/M area A.B.C.D`) may result in a
559 slight performance improvement.
560
561 Notice that, mixing both network commands (:clicmd:`network`) and interface
562 commands (:clicmd:`ip ospf`) on the same router is not supported.
563 If (:clicmd:`ip ospf`) is present, (:clicmd:`network`) commands will fail.
42fc5d26 564
c1a54c05 565.. clicmd:: ip ospf authentication-key AUTH_KEY
42fc5d26 566
42fc5d26 567
c1a54c05
QY
568 Set OSPF authentication key to a simple password. After setting `AUTH_KEY`,
569 all OSPF packets are authenticated. `AUTH_KEY` has length up to 8 chars.
42fc5d26 570
c1a54c05 571 Simple text password authentication is insecure and deprecated in favour of
6ee602cd 572 MD5 HMAC authentication.
42fc5d26 573
c1a54c05 574.. clicmd:: ip ospf authentication message-digest
42fc5d26 575
6ee602cd
QY
576 Specify that MD5 HMAC authentication must be used on this interface. MD5
577 keying material must also be configured. Overrides any authentication
578 enabled on a per-area basis
579 (:clicmd:`area A.B.C.D authentication message-digest`)
42fc5d26 580
c1a54c05
QY
581 Note that OSPF MD5 authentication requires that time never go backwards
582 (correct time is NOT important, only that it never goes backwards), even
d1e7591e 583 across resets, if ospfd is to be able to promptly reestablish adjacencies
6ee602cd 584 with its neighbours after restarts/reboots. The host should have system time
d1e7591e 585 be set at boot from an external or non-volatile source (e.g. battery backed
6ee602cd 586 clock, NTP, etc.) or else the system clock should be periodically saved to
d1e7591e 587 non-volatile storage and restored at boot if MD5 authentication is to be
6ee602cd 588 expected to work reliably.
42fc5d26 589
c1a54c05 590.. clicmd:: ip ospf message-digest-key KEYID md5 KEY
42fc5d26 591
42fc5d26 592
6ee602cd
QY
593 Set OSPF authentication key to a cryptographic password. The cryptographic
594 algorithm is MD5.
42fc5d26 595
9eb95b3b
QY
596 KEYID identifies secret key used to create the message digest. This ID is
597 part of the protocol and must be consistent across routers on a link.
42fc5d26 598
9eb95b3b
QY
599 KEY is the actual message digest key, of up to 16 chars (larger strings will
600 be truncated), and is associated with the given KEYID.
42fc5d26 601
c1a54c05 602.. clicmd:: ip ospf cost (1-65535)
42fc5d26 603
42fc5d26 604
9eb95b3b
QY
605 Set link cost for the specified interface. The cost value is set to
606 router-LSA's metric field and used for SPF calculation.
42fc5d26 607
c1a54c05 608.. clicmd:: ip ospf dead-interval (1-65535)
42fc5d26 609
c1a54c05 610.. clicmd:: ip ospf dead-interval minimal hello-multiplier (2-20)
42fc5d26 611
42fc5d26 612
6ee602cd
QY
613 Set number of seconds for RouterDeadInterval timer value used for Wait Timer
614 and Inactivity Timer. This value must be the same for all routers attached
615 to a common network. The default value is 40 seconds.
42fc5d26 616
6ee602cd
QY
617 If 'minimal' is specified instead, then the dead-interval is set to 1 second
618 and one must specify a hello-multiplier. The hello-multiplier specifies how
619 many Hellos to send per second, from 2 (every 500ms) to 20 (every 50ms).
620 Thus one can have 1s convergence time for OSPF. If this form is specified,
621 then the hello-interval advertised in Hello packets is set to 0 and the
622 hello-interval on received Hello packets is not checked, thus the
623 hello-multiplier need NOT be the same across multiple routers on a common
624 link.
42fc5d26 625
c1a54c05 626.. clicmd:: ip ospf hello-interval (1-65535)
42fc5d26 627
42fc5d26 628
c1a54c05
QY
629 Set number of seconds for HelloInterval timer value. Setting this value,
630 Hello packet will be sent every timer value seconds on the specified interface.
631 This value must be the same for all routers attached to a common network.
632 The default value is 10 seconds.
42fc5d26 633
6ee602cd
QY
634 This command has no effect if
635 :clicmd:`ip ospf dead-interval minimal hello-multiplier (2-20)` is also
c1a54c05 636 specified for the interface.
42fc5d26 637
78980c28 638.. clicmd:: ip ospf network (broadcast|non-broadcast|point-to-multipoint|point-to-point [dmvpn])
42fc5d26 639
56f9b9bf
DS
640 When configuring a point-to-point network on an interface and the interface
641 has a /32 address associated with then OSPF will treat the interface
642 as being `unnumbered`. If you are doing this you *must* set the
643 net.ipv4.conf.<interface name>.rp_filter value to 0. In order for
644 the ospf multicast packets to be delivered by the kernel.
645
78980c28
RD
646 When used in a DMVPN network at a spoke, this OSPF will be configured in
647 point-to-point, but the HUB will be a point-to-multipoint. To make this
648 topology work, specify the optional 'dmvpn' parameter at the spoke.
42fc5d26 649
d1e7591e 650 Set explicitly network type for specified interface.
42fc5d26 651
c1a54c05 652.. clicmd:: ip ospf priority (0-255)
42fc5d26 653
42fc5d26 654
9eb95b3b
QY
655 Set RouterPriority integer value. The router with the highest priority will
656 be more eligible to become Designated Router. Setting the value to 0, makes
657 the router ineligible to become Designated Router. The default value is 1.
42fc5d26 658
c1a54c05 659.. clicmd:: ip ospf retransmit-interval (1-65535)
42fc5d26 660
42fc5d26 661
9eb95b3b
QY
662 Set number of seconds for RxmtInterval timer value. This value is used when
663 retransmitting Database Description and Link State Request packets. The
664 default value is 5 seconds.
42fc5d26 665
7db1c0f0 666.. clicmd:: ip ospf transmit-delay (1-65535) [A.B.C.D]
42fc5d26 667
42fc5d26 668
c1a54c05 669 Set number of seconds for InfTransDelay value. LSAs' age should be
9eb95b3b 670 incremented by this value when transmitting. The default value is 1 second.
42fc5d26 671
29ec6244
IR
672.. clicmd:: ip ospf passive [A.B.C.D]
673
674 Do not speak OSPF on the interface, but do advertise the interface as a stub
675 link in the router-:abbr:`LSA (Link State Advertisement)` for this router.
676 This allows one to advertise addresses on such connected interfaces without
677 having to originate AS-External/Type-5 LSAs (which have global flooding
678 scope) - as would occur if connected addresses were redistributed into
679 OSPF (:ref:`redistribute-routes-to-ospf`). This is the only way to
680 advertise non-OSPF links into stub areas.
681
c1a54c05 682.. clicmd:: ip ospf area (A.B.C.D|(0-4294967295))
42fc5d26 683
42fc5d26 684
9eb95b3b 685 Enable ospf on an interface and set associated area.
42fc5d26 686
243892e0
DA
687OSPF route-map
688==============
689
690Usage of *ospfd*'s route-map support.
691
243892e0
DA
692.. clicmd:: set metric [+|-](0-4294967295)
693
694 Set a metric for matched route when sending announcement. Use plus (+) sign
695 to add a metric value to an existing metric. Use minus (-) sign to
696 substract a metric value from an existing metric.
697
0efdf0fe 698.. _redistribute-routes-to-ospf:
42fc5d26 699
e6f1b831
QY
700Redistribution
701--------------
42fc5d26 702
0efdf0fe 703.. _ospf-redistribute:
42fc5d26 704
1e31580f
QY
705.. clicmd:: redistribute <babel|bgp|connected|eigrp|isis|kernel|openfabric|ospf|rip|sharp|static|table> [metric-type (1-2)] [metric (0-16777214)] [route-map WORD]
706
9eb95b3b
QY
707 Redistribute routes of the specified protocol or kind into OSPF, with the
708 metric type and metric set if specified, filtering the routes using the
709 given route-map if specified. Redistributed routes may also be filtered
710 with distribute-lists, see
11ab5329 711 :ref:`ospf distribute-list configuration <ospf-distribute-list>`.
42fc5d26 712
9eb95b3b
QY
713 Redistributed routes are distributed as into OSPF as Type-5 External LSAs
714 into links to areas that accept external routes, Type-7 External LSAs for
715 NSSA areas and are not redistributed at all into Stub areas, where external
716 routes are not permitted.
42fc5d26 717
29ec6244
IR
718 Note that for connected routes, one may instead use the
719 :clicmd:`ip ospf passive [A.B.C.D]` configuration.
42fc5d26 720
c1a54c05 721.. clicmd:: default-information originate
42fc5d26 722
c1a54c05 723.. clicmd:: default-information originate metric (0-16777214)
42fc5d26 724
c1a54c05 725.. clicmd:: default-information originate metric (0-16777214) metric-type (1|2)
42fc5d26 726
c1a54c05 727.. clicmd:: default-information originate metric (0-16777214) metric-type (1|2) route-map WORD
42fc5d26 728
c1a54c05 729.. clicmd:: default-information originate always
42fc5d26 730
c1a54c05 731.. clicmd:: default-information originate always metric (0-16777214)
42fc5d26 732
c1a54c05 733.. clicmd:: default-information originate always metric (0-16777214) metric-type (1|2)
42fc5d26 734
c1a54c05 735.. clicmd:: default-information originate always metric (0-16777214) metric-type (1|2) route-map WORD
42fc5d26 736
42fc5d26 737
9eb95b3b
QY
738 Originate an AS-External (type-5) LSA describing a default route into all
739 external-routing capable areas, of the specified metric and metric type. If
740 the 'always' keyword is given then the default is always advertised, even
741 when there is no default present in the routing table.
42fc5d26 742
0efdf0fe 743.. _ospf-distribute-list:
42fc5d26 744
e3cb363a
IR
745.. clicmd:: distribute-list NAME out <kernel|connected|static|rip|isis|bgp|eigrp|nhrp|table|vnc|babel|openfabric>
746
9eb95b3b 747 Apply the access-list filter, NAME, to redistributed routes of the given
e3cb363a 748 type before allowing the routes to be redistributed into OSPF
9eb95b3b 749 (:ref:`ospf redistribution <ospf-redistribute>`).
42fc5d26 750
c1a54c05 751.. clicmd:: default-metric (0-16777214)
42fc5d26 752
42fc5d26 753
c1a54c05 754.. clicmd:: distance (1-255)
42fc5d26 755
42fc5d26 756
c1a54c05 757.. clicmd:: distance ospf (intra-area|inter-area|external) (1-255)
42fc5d26 758
42fc5d26 759
42fc5d26 760
10514170
RW
761Graceful Restart
762================
763
764.. clicmd:: graceful-restart [grace-period (1-1800)]
765
766
767 Configure Graceful Restart (RFC 3623) restarting support.
768 When enabled, the default grace period is 120 seconds.
769
770 To perform a graceful shutdown, the "graceful-restart prepare ip ospf"
771 EXEC-level command needs to be issued before restarting the ospfd daemon.
cc1a92d8 772
859bce81 773.. clicmd:: graceful-restart helper enable [A.B.C.D]
cc1a92d8 774
cc1a92d8 775
776 Configure Graceful Restart (RFC 3623) helper support.
777 By default, helper support is disabled for all neighbours.
778 This config enables/disables helper support on this router
779 for all neighbours.
780 To enable/disable helper support for a specific
781 neighbour, the router-id (A.B.C.D) has to be specified.
782
cc1a92d8 783.. clicmd:: graceful-restart helper strict-lsa-checking
784
cc1a92d8 785
786 If 'strict-lsa-checking' is configured then the helper will
787 abort the Graceful Restart when a LSA change occurs which
788 affects the restarting router.
789 By default 'strict-lsa-checking' is enabled"
790
cc1a92d8 791.. clicmd:: graceful-restart helper supported-grace-time
792
cc1a92d8 793
794 Supports as HELPER for configured grace period.
795
cc1a92d8 796.. clicmd:: graceful-restart helper planned-only
797
cc1a92d8 798
799 It helps to support as HELPER only for planned
800 restarts. By default, it supports both planned and
801 unplanned outages.
42fc5d26 802
10514170
RW
803
804.. clicmd:: graceful-restart prepare ip ospf
805
806
807 Initiate a graceful restart for all OSPF instances configured with the
808 "graceful-restart" command. The ospfd daemon should be restarted during
809 the instance-specific grace period, otherwise the graceful restart will fail.
810
811 This is an EXEC-level command.
812
813
0efdf0fe 814.. _showing-ospf-information:
42fc5d26 815
e6f1b831
QY
816Showing Information
817===================
42fc5d26 818
0efdf0fe 819.. _show-ip-ospf:
42fc5d26 820
118e4e8c 821.. clicmd:: show ip ospf [vrf <NAME|all>] [json]
42fc5d26 822
c1a54c05
QY
823 Show information on a variety of general OSPF and area state and
824 configuration information.
42fc5d26 825
f328dc60 826.. clicmd:: show ip ospf interface [INTERFACE] [json]
42fc5d26 827
c1a54c05
QY
828 Show state and configuration of OSPF the specified interface, or all
829 interfaces if no interface is given.
42fc5d26 830
f328dc60 831.. clicmd:: show ip ospf neighbor [json]
42fc5d26 832
2e861983 833.. clicmd:: show ip ospf [vrf <NAME|all>] neighbor INTERFACE [json]
42fc5d26 834
f328dc60 835.. clicmd:: show ip ospf neighbor detail [json]
42fc5d26 836
2e861983 837.. clicmd:: show ip ospf [vrf <NAME|all>] neighbor A.B.C.D [detail] [json]
e8a8b116 838
2e861983 839.. clicmd:: show ip ospf [vrf <NAME|all>] neighbor INTERFACE detail [json]
42fc5d26 840
f328dc60 841 Display lsa information of LSDB.
842 Json o/p of this command covers base route information
843 i.e all LSAs except opaque lsa info.
42fc5d26 844
b131b1ed 845.. clicmd:: show ip ospf [vrf <NAME|all>] database [self-originate] [json]
42fc5d26 846
b131b1ed 847 Show the OSPF database summary.
42fc5d26 848
b131b1ed 849.. clicmd:: show ip ospf [vrf <NAME|all>] database max-age [json]
42fc5d26 850
b131b1ed 851 Show all MaxAge LSAs present in the OSPF link-state database.
42fc5d26 852
a08f41b9
RW
853.. clicmd:: show ip ospf [vrf <NAME|all>] database detail [LINK-STATE-ID] [adv-router A.B.C.D] [json]
854
855.. clicmd:: show ip ospf [vrf <NAME|all>] database detail [LINK-STATE-ID] [self-originate] [json]
856
b131b1ed 857.. clicmd:: show ip ospf [vrf <NAME|all>] database (asbr-summary|external|network|router|summary|nssa-external|opaque-link|opaque-area|opaque-as) [LINK-STATE-ID] [adv-router A.B.C.D] [json]
42fc5d26 858
b131b1ed 859.. clicmd:: show ip ospf [vrf <NAME|all>] database (asbr-summary|external|network|router|summary|nssa-external|opaque-link|opaque-area|opaque-as) [LINK-STATE-ID] [self-originate] [json]
a605d719 860
b131b1ed 861 Show detailed information about the OSPF link-state database.
f328dc60 862
f328dc60 863.. clicmd:: show ip ospf route [json]
42fc5d26 864
9eb95b3b
QY
865 Show the OSPF routing table, as determined by the most recent SPF
866 calculation.
42fc5d26 867
33d7e50d
CS
868.. clicmd:: show ip ospf [vrf <NAME|all>] border-routers [json]
869
870 Show the list of ABR and ASBR border routers summary learnt via
871 OSPFv2 Type-3 (Summary LSA) and Type-4 (Summary ASBR LSA).
872 User can get that information as JSON format when ``json`` keyword
873 at the end of cli is presented.
874
cc1a92d8 875.. clicmd:: show ip ospf graceful-restart helper [detail] [json]
876
877 Displays the Grcaeful Restart Helper details including helper
878 config changes.
879
0efdf0fe 880.. _opaque-lsa:
42fc5d26
QY
881
882Opaque LSA
883==========
884
c1a54c05 885.. clicmd:: ospf opaque-lsa
42fc5d26 886
c1a54c05 887.. clicmd:: capability opaque
42fc5d26 888
42fc5d26 889
42fc5d26 890
85400b29
MS
891 *ospfd* supports Opaque LSA (:rfc:`2370`) as partial support for
892 MPLS Traffic Engineering LSAs. The opaque-lsa capability must be
893 enabled in the configuration. An alternate command could be
894 "mpls-te on" (:ref:`ospf-traffic-engineering`). Note that FRR
895 offers only partial support for some of the routing protocol
896 extensions that are used with MPLS-TE; it does not support a
897 complete RSVP-TE solution.
42fc5d26 898
a605d719 899.. clicmd:: show ip ospf [vrf <NAME|all>] database (opaque-link|opaque-area|opaque-external)
42fc5d26 900
a605d719 901.. clicmd:: show ip ospf [vrf <NAME|all>] database (opaque-link|opaque-area|opaque-external) LINK-STATE-ID
42fc5d26 902
a605d719 903.. clicmd:: show ip ospf [vrf <NAME|all>] database (opaque-link|opaque-area|opaque-external) LINK-STATE-ID adv-router ADV-ROUTER
42fc5d26 904
a605d719 905.. clicmd:: show ip ospf [vrf <NAME|all>] database (opaque-link|opaque-area|opaque-external) adv-router ADV-ROUTER
42fc5d26 906
a605d719 907.. clicmd:: show ip ospf [vrf <NAME|all>] database (opaque-link|opaque-area|opaque-external) LINK-STATE-ID self-originate
42fc5d26 908
a605d719 909.. clicmd:: show ip ospf [vrf <NAME|all>] database (opaque-link|opaque-area|opaque-external) self-originate
42fc5d26 910
c1a54c05 911 Show Opaque LSA from the database.
42fc5d26 912
d86760ac
CH
913.. clicmd:: show ip ospf (1-65535) reachable-routers
914
915.. clicmd:: show ip ospf [vrf <NAME|all>] reachable-routers
916
917 Show routing table of reachable routers.
918
c1a54c05 919.. _ospf-traffic-engineering:
42fc5d26
QY
920
921Traffic Engineering
922===================
923
85400b29
MS
924.. note::
925
926 At this time, FRR offers partial support for some of the routing
927 protocol extensions that can be used with MPLS-TE. FRR does not
928 support a complete RSVP-TE solution currently.
929
c1a54c05 930.. clicmd:: mpls-te on
42fc5d26 931
42fc5d26 932
c1a54c05 933 Enable Traffic Engineering LSA flooding.
42fc5d26 934
c1a54c05 935.. clicmd:: mpls-te router-address <A.B.C.D>
42fc5d26 936
c1a54c05
QY
937 Configure stable IP address for MPLS-TE. This IP address is then advertise
938 in Opaque LSA Type-10 TLV=1 (TE) option 1 (Router-Address).
42fc5d26 939
c1a54c05 940.. clicmd:: mpls-te inter-as area <area-id>|as
42fc5d26 941
42fc5d26 942
c1a54c05
QY
943 Enable :rfc:`5392` support - Inter-AS TE v2 - to flood Traffic Engineering
944 parameters of Inter-AS link. 2 modes are supported: AREA and AS; LSA are
945 flood in AREA <area-id> with Opaque Type-10, respectively in AS with Opaque
946 Type-11. In all case, Opaque-LSA TLV=6.
42fc5d26 947
9977e56c 948.. clicmd:: mpls-te export
f173deb3
OD
949
950 Export Traffic Engineering Data Base to other daemons through the ZAPI
951 Opaque Link State messages.
952
c1a54c05 953.. clicmd:: show ip ospf mpls-te interface
42fc5d26 954
c1a54c05 955.. clicmd:: show ip ospf mpls-te interface INTERFACE
42fc5d26 956
c1a54c05 957 Show MPLS Traffic Engineering parameters for all or specified interface.
42fc5d26 958
c1a54c05 959.. clicmd:: show ip ospf mpls-te router
42fc5d26 960
c1a54c05 961 Show Traffic Engineering router parameters.
42fc5d26 962
f173deb3
OD
963.. clicmd:: show ip ospf mpls-te database [verbose|json]
964
f173deb3
OD
965.. clicmd:: show ip ospf mpls-te database vertex [self-originate|adv-router ADV-ROUTER] [verbose|json]
966
f173deb3
OD
967.. clicmd:: show ip ospf mpls-te database edge [A.B.C.D] [verbose|json]
968
f173deb3
OD
969.. clicmd:: show ip ospf mpls-te database subnet [A.B.C.D/M] [verbose|json]
970
971 Show Traffic Engineering Database
972
0efdf0fe 973.. _router-information:
42fc5d26
QY
974
975Router Information
976==================
977
ddd73a96 978.. clicmd:: router-info [as | area]
42fc5d26 979
42fc5d26 980
c1a54c05 981 Enable Router Information (:rfc:`4970`) LSA advertisement with AS scope
ddd73a96
OD
982 (default) or Area scope flooding when area is specified. Old syntax
983 `router-info area <A.B.C.D>` is always supported but mark as deprecated
984 as the area ID is no more necessary. Indeed, router information support
985 multi-area and detect automatically the areas.
42fc5d26 986
c1a54c05 987.. clicmd:: pce address <A.B.C.D>
42fc5d26 988
42fc5d26 989
c1a54c05 990.. clicmd:: pce domain as (0-65535)
42fc5d26 991
42fc5d26 992
c1a54c05 993.. clicmd:: pce neighbor as (0-65535)
42fc5d26 994
42fc5d26 995
c1a54c05 996.. clicmd:: pce flag BITPATTERN
42fc5d26 997
42fc5d26 998
c1a54c05 999.. clicmd:: pce scope BITPATTERN
42fc5d26 1000
42fc5d26 1001
9eb95b3b 1002 The commands are conform to :rfc:`5088` and allow OSPF router announce Path
d1e7591e
QY
1003 Computation Element (PCE) capabilities through the Router Information (RI)
1004 LSA. Router Information must be enable prior to this. The command set/unset
1005 respectively the PCE IP address, Autonomous System (AS) numbers of
9eb95b3b
QY
1006 controlled domains, neighbor ASs, flag and scope. For flag and scope, please
1007 refer to :rfc`5088` for the BITPATTERN recognition. Multiple 'pce neighbor'
1008 command could be specified in order to specify all PCE neighbours.
42fc5d26 1009
c1a54c05 1010.. clicmd:: show ip ospf router-info
42fc5d26 1011
c1a54c05 1012 Show Router Capabilities flag.
9eb95b3b 1013
c1a54c05 1014.. clicmd:: show ip ospf router-info pce
42fc5d26 1015
c1a54c05 1016 Show Router Capabilities PCE parameters.
42fc5d26 1017
50cc7127
QY
1018Segment Routing
1019===============
1020
6f751f14
OD
1021This is an EXPERIMENTAL support of Segment Routing as per `RFC 8665` for MPLS
1022dataplane.
50cc7127 1023
03750f1e 1024.. clicmd:: segment-routing on
50cc7127
QY
1025
1026 Enable Segment Routing. Even if this also activate routing information
1027 support, it is preferable to also activate routing information, and set
1028 accordingly the Area or AS flooding.
1029
6443a4be 1030.. clicmd:: segment-routing global-block (16-1048575) (16-1048575) [local-block (16-1048575) (16-1048575)]
50cc7127 1031
6443a4be
EDP
1032 Set the Segment Routing Global Block i.e. the label range used by MPLS to
1033 store label in the MPLS FIB for Prefix SID. Optionally also set the Local
1034 Block, i.e. the label range used for Adjacency SID. The negative version
1035 of the command always unsets both ranges.
6f751f14 1036
03750f1e 1037.. clicmd:: segment-routing node-msd (1-16)
50cc7127
QY
1038
1039 Fix the Maximum Stack Depth supported by the router. The value depend of the
1040 MPLS dataplane. E.g. for Linux kernel, since version 4.13 it is 32.
1041
03750f1e 1042.. clicmd:: segment-routing prefix A.B.C.D/M [index (0-65535)|no-php-flag|explicit-null]
50cc7127 1043
9eb95b3b
QY
1044 prefix with /32 corresponding to a loopback interface are currently
1045 supported. The 'no-php-flag' means NO Penultimate Hop Popping that allows SR
f786c4d7
OD
1046 node to request to its neighbor to not pop the label. The 'explicit-null' means that
1047 neighbor nodes must swap the incoming label by the MPLS Explicit Null label
1048 before delivering the packet.
50cc7127 1049
e3e3afff 1050.. clicmd:: show ip ospf database segment-routing <adv-router ADVROUTER|self-originate> [json]
50cc7127 1051
d1e7591e 1052 Show Segment Routing Data Base, all SR nodes, specific advertised router or
e3e3afff
QY
1053 self router. Optional JSON output can be obtained by appending 'json' to the
1054 end of the command.
50cc7127 1055
077abf3b 1056External Route Summarisation
1057============================
1058This feature summarises originated external LSAs(Type-5 and Type-7).
1059Summary Route will be originated on-behalf of all matched external LSAs.
1060
03750f1e 1061.. clicmd:: summary-address A.B.C.D/M [tag (1-4294967295)]
077abf3b 1062
1063 This command enable/disables summarisation for the configured address
1064 range. Tag is the optional parameter. If tag configured Summary route
1065 will be originated with the configured tag.
1066
03750f1e 1067.. clicmd:: summary-address A.B.C.D/M no-advertise
077abf3b 1068
1069 This command to ensure not advertise the summary lsa for the matched
1070 external LSAs.
1071
077abf3b 1072.. clicmd:: aggregation timer (5-1800)
1073
1074 Configure aggregation delay timer interval. Summarisation starts only after
94184417 1075 this delay timer expiry. By default, delay interval is 5 seconds.
077abf3b 1076
077abf3b 1077
94184417 1078 The no form of the command resets the aggregation delay interval to default
1079 value.
077abf3b 1080
077abf3b 1081.. clicmd:: show ip ospf [vrf <NAME|all>] summary-address [detail] [json]
1082
1083 Show configuration for display all configured summary routes with
1084 matching external LSA information.
1085
7fd0729f
G
1086TI-LFA
1087======
1088
1089Experimental support for Topology Independent LFA (Loop-Free Alternate), see
1090for example 'draft-bashandy-rtgwg-segment-routing-ti-lfa-05'. Note that
1091TI-LFA requires a proper Segment Routing configuration.
1092
385a1e07 1093.. clicmd:: fast-reroute ti-lfa [node-protection]
7fd0729f
G
1094
1095 Configured on the router level. Activates TI-LFA for all interfaces.
7fd0729f 1096
3e94c9a4
G
1097 Note that so far only P2P interfaces are supported.
1098
cb00030f
IR
1099.. _debugging-ospf:
1100
42fc5d26
QY
1101Debugging OSPF
1102==============
1103
e9212498 1104.. clicmd:: debug ospf [(1-65535)] bfd
e5c2d3a8
RZ
1105
1106 Enable or disable debugging for BFD events. This will show BFD integration
1107 library messages and OSPF BFD integration messages that are mostly state
1108 transitions and validation problems.
1109
e9212498 1110.. clicmd:: debug ospf [(1-65535)] client-api
a6c39c3d
CH
1111
1112 Show debug information for the OSPF opaque data client API.
1113
e9212498 1114.. clicmd:: debug ospf [(1-65535)] default-information
42fc5d26 1115
e9212498 1116 Show debug information of default information
42fc5d26 1117
e9212498 1118.. clicmd:: debug ospf [(1-65535)] packet (hello|dd|ls-request|ls-update|ls-ack|all) (send|recv) [detail]
42fc5d26 1119
42fc5d26 1120
e9212498 1121 Dump Packet for debugging
42fc5d26 1122
e9212498 1123.. clicmd:: debug ospf [(1-65535)] ism [status|events|timers]
42fc5d26 1124
42fc5d26 1125
42fc5d26 1126
e9212498 1127 Show debug information of Interface State Machine
42fc5d26 1128
e9212498 1129.. clicmd:: debug ospf [(1-65535)] nsm [status|events|timers]
42fc5d26 1130
42fc5d26 1131
42fc5d26 1132
c1a54c05 1133 Show debug information of Network State Machine
42fc5d26 1134
e9212498 1135.. clicmd:: debug ospf [(1-65535)] event
42fc5d26 1136
42fc5d26 1137
c1a54c05 1138 Show debug information of OSPF event
42fc5d26 1139
e9212498 1140.. clicmd:: debug ospf [(1-65535)] nssa
42fc5d26 1141
42fc5d26 1142
c1a54c05 1143 Show debug information about Not So Stub Area
42fc5d26 1144
e9212498
MK
1145.. clicmd:: debug ospf [(1-65535)] ldp-sync
1146
1147 Show debug information about LDP-Sync
42fc5d26 1148
e9212498 1149.. clicmd:: debug ospf [(1-65535)] lsa [aggregate|flooding|generate|install|refresh]
42fc5d26 1150
42fc5d26 1151
42fc5d26 1152
c1a54c05 1153 Show debug detail of Link State messages
42fc5d26 1154
e9212498
MK
1155.. clicmd:: debug ospf [(1-65535)] sr
1156
1157 Show debug information about Segment Routing
1158
1159.. clicmd:: debug ospf [(1-65535)] te
42fc5d26 1160
42fc5d26 1161
c1a54c05 1162 Show debug information about Traffic Engineering LSA
42fc5d26 1163
e9212498 1164.. clicmd:: debug ospf [(1-65535)] ti-lfa
42fc5d26 1165
e9212498
MK
1166 Show debug information about SR TI-LFA
1167
1168.. clicmd:: debug ospf [(1-65535)] zebra [interface|redistribute]
42fc5d26 1169
42fc5d26 1170
42fc5d26 1171
c1a54c05 1172 Show debug information of ZEBRA API
42fc5d26 1173
e9212498 1174.. clicmd:: debug ospf [(1-65535)] graceful-restart
cc1a92d8 1175
cc1a92d8 1176
1177 Enable/disable debug information for OSPF Graceful Restart Helper
1178
c1a54c05 1179.. clicmd:: show debugging ospf
42fc5d26 1180
077abf3b 1181
b832909b
QY
1182
1183Sample Configuration
1184====================
42fc5d26
QY
1185
1186A simple example, with MD5 authentication enabled:
1187
9eb95b3b 1188.. code-block:: frr
42fc5d26 1189
c1a54c05
QY
1190 !
1191 interface bge0
1192 ip ospf authentication message-digest
1193 ip ospf message-digest-key 1 md5 ABCDEFGHIJK
1194 !
1195 router ospf
1196 network 192.168.0.0/16 area 0.0.0.1
1197 area 0.0.0.1 authentication message-digest
a8c90e15 1198
42fc5d26 1199
d50b2aa0 1200An :abbr:`ABR` router, with MD5 authentication and performing summarisation
42fc5d26
QY
1201of networks between the areas:
1202
9eb95b3b 1203.. code-block:: frr
42fc5d26 1204
c1a54c05
QY
1205 !
1206 password ABCDEF
1207 log file /var/log/frr/ospfd.log
1208 service advanced-vty
1209 !
1210 interface eth0
1211 ip ospf authentication message-digest
1212 ip ospf message-digest-key 1 md5 ABCDEFGHIJK
1213 !
1214 interface ppp0
29ec6244 1215 ip ospf passive
c1a54c05
QY
1216 !
1217 interface br0
1218 ip ospf authentication message-digest
1219 ip ospf message-digest-key 2 md5 XYZ12345
1220 !
1221 router ospf
1222 ospf router-id 192.168.0.1
1223 redistribute connected
c1a54c05
QY
1224 network 192.168.0.0/24 area 0.0.0.0
1225 network 10.0.0.0/16 area 0.0.0.0
1226 network 192.168.1.0/24 area 0.0.0.1
1227 area 0.0.0.0 authentication message-digest
1228 area 0.0.0.0 range 10.0.0.0/16
1229 area 0.0.0.0 range 192.168.0.0/24
1230 area 0.0.0.1 authentication message-digest
1231 area 0.0.0.1 range 10.2.0.0/16
1232 !
a8c90e15 1233
42fc5d26
QY
1234
1235A Traffic Engineering configuration, with Inter-ASv2 support.
1236
9eb95b3b
QY
1237First, the :file:`zebra.conf` part:
1238
1239.. code-block:: frr
c1a54c05 1240
c1a54c05
QY
1241 interface eth0
1242 ip address 198.168.1.1/24
612b3314
QY
1243 link-params
1244 enable
1245 admin-grp 0xa1
1246 metric 100
1247 max-bw 1.25e+07
1248 max-rsv-bw 1.25e+06
1249 unrsv-bw 0 1.25e+06
1250 unrsv-bw 1 1.25e+06
1251 unrsv-bw 2 1.25e+06
1252 unrsv-bw 3 1.25e+06
1253 unrsv-bw 4 1.25e+06
1254 unrsv-bw 5 1.25e+06
1255 unrsv-bw 6 1.25e+06
1256 unrsv-bw 7 1.25e+06
c1a54c05
QY
1257 !
1258 interface eth1
1259 ip address 192.168.2.1/24
612b3314
QY
1260 link-params
1261 enable
1262 metric 10
1263 max-bw 1.25e+07
1264 max-rsv-bw 1.25e+06
1265 unrsv-bw 0 1.25e+06
1266 unrsv-bw 1 1.25e+06
1267 unrsv-bw 2 1.25e+06
1268 unrsv-bw 3 1.25e+06
1269 unrsv-bw 4 1.25e+06
1270 unrsv-bw 5 1.25e+06
1271 unrsv-bw 6 1.25e+06
1272 unrsv-bw 7 1.25e+06
1273 neighbor 192.168.2.2 as 65000
1274 hostname HOSTNAME
1275 password PASSWORD
1276 log file /var/log/zebra.log
1277 !
1278 interface eth0
1279 ip address 198.168.1.1/24
50cc7127
QY
1280 link-params
1281 enable
1282 admin-grp 0xa1
1283 metric 100
1284 max-bw 1.25e+07
1285 max-rsv-bw 1.25e+06
1286 unrsv-bw 0 1.25e+06
1287 unrsv-bw 1 1.25e+06
1288 unrsv-bw 2 1.25e+06
1289 unrsv-bw 3 1.25e+06
1290 unrsv-bw 4 1.25e+06
1291 unrsv-bw 5 1.25e+06
1292 unrsv-bw 6 1.25e+06
1293 unrsv-bw 7 1.25e+06
612b3314
QY
1294 !
1295 interface eth1
1296 ip address 192.168.2.1/24
50cc7127
QY
1297 link-params
1298 enable
1299 metric 10
1300 max-bw 1.25e+07
1301 max-rsv-bw 1.25e+06
1302 unrsv-bw 0 1.25e+06
1303 unrsv-bw 1 1.25e+06
1304 unrsv-bw 2 1.25e+06
1305 unrsv-bw 3 1.25e+06
1306 unrsv-bw 4 1.25e+06
1307 unrsv-bw 5 1.25e+06
1308 unrsv-bw 6 1.25e+06
1309 unrsv-bw 7 1.25e+06
1310 neighbor 192.168.2.2 as 65000
c1a54c05 1311
9eb95b3b
QY
1312Then the :file:`ospfd.conf` itself:
1313
1314.. code-block:: frr
c1a54c05
QY
1315
1316 hostname HOSTNAME
1317 password PASSWORD
1318 log file /var/log/ospfd.log
1319 !
1320 !
1321 interface eth0
1322 ip ospf hello-interval 60
1323 ip ospf dead-interval 240
1324 !
1325 interface eth1
1326 ip ospf hello-interval 60
1327 ip ospf dead-interval 240
1328 !
1329 !
1330 router ospf
1331 ospf router-id 192.168.1.1
1332 network 192.168.0.0/16 area 1
1333 ospf opaque-lsa
42fc5d26
QY
1334 mpls-te
1335 mpls-te router-address 192.168.1.1
1336 mpls-te inter-as area 1
c1a54c05
QY
1337 !
1338 line vty
a8c90e15 1339
d1e7591e 1340A router information example with PCE advertisement:
42fc5d26 1341
9eb95b3b 1342.. code-block:: frr
42fc5d26 1343
c1a54c05
QY
1344 !
1345 router ospf
1346 ospf router-id 192.168.1.1
1347 network 192.168.0.0/16 area 1
1348 capability opaque
42fc5d26
QY
1349 mpls-te
1350 mpls-te router-address 192.168.1.1
c1a54c05 1351 router-info area 0.0.0.1
42fc5d26
QY
1352 pce address 192.168.1.1
1353 pce flag 0x80
1354 pce domain as 65400
1355 pce neighbor as 65500
1356 pce neighbor as 65200
1357 pce scope 0x80
c1a54c05 1358 !