]> git.proxmox.com Git - mirror_frr.git/blob - doc/user/bgp.rst
doc: update srv6 cli guide
[mirror_frr.git] / doc / user / bgp.rst
1 .. _bgp:
2
3 ***
4 BGP
5 ***
6
7 :abbr:`BGP` stands for Border Gateway Protocol. The latest BGP version is 4.
8 BGP-4 is one of the Exterior Gateway Protocols and the de facto standard
9 interdomain routing protocol. BGP-4 is described in :rfc:`1771` and updated by
10 :rfc:`4271`. :rfc:`2858` adds multiprotocol support to BGP-4.
11
12 .. _starting-bgp:
13
14 Starting BGP
15 ============
16
17 The default configuration file of *bgpd* is :file:`bgpd.conf`. *bgpd* searches
18 the current directory first, followed by |INSTALL_PREFIX_ETC|/bgpd.conf. All of
19 *bgpd*'s commands must be configured in :file:`bgpd.conf` when the integrated
20 config is not being used.
21
22 *bgpd* specific invocation options are described below. Common options may also
23 be specified (:ref:`common-invocation-options`).
24
25 .. program:: bgpd
26
27 .. option:: -p, --bgp_port <port>
28
29 Set the bgp protocol's port number. When port number is 0, that means do not
30 listen bgp port.
31
32 .. option:: -l, --listenon
33
34 Specify specific IP addresses for bgpd to listen on, rather than its default
35 of ``0.0.0.0`` / ``::``. This can be useful to constrain bgpd to an internal
36 address, or to run multiple bgpd processes on one host. Multiple addresses
37 can be specified.
38
39 In the following example, bgpd is started listening for connections on the
40 addresses 100.0.1.2 and fd00::2:2. The options -d (runs in daemon mode) and
41 -f (uses specific configuration file) are also used in this example as we
42 are likely to run multiple bgpd instances, each one with different
43 configurations, when using -l option.
44
45 Note that this option implies the --no_kernel option, and no learned routes will be installed into the linux kernel.
46
47 .. code-block:: shell
48
49 # /usr/lib/frr/bgpd -d -f /some-folder/bgpd.conf -l 100.0.1.2 -l fd00::2:2
50
51 .. option:: -n, --no_kernel
52
53 Do not install learned routes into the linux kernel. This option is useful
54 for a route-reflector environment or if you are running multiple bgp
55 processes in the same namespace. This option is different than the --no_zebra
56 option in that a ZAPI connection is made.
57
58 This option can also be toggled during runtime by using the
59 ``[no] bgp no-rib`` commands in VTY shell.
60
61 Note that this option will persist after saving the configuration during
62 runtime, unless unset by the ``no bgp no-rib`` command in VTY shell prior to
63 a configuration write operation.
64
65 .. option:: -S, --skip_runas
66
67 Skip the normal process of checking capabilities and changing user and group
68 information.
69
70 .. option:: -e, --ecmp
71
72 Run BGP with a limited ecmp capability, that is different than what BGP
73 was compiled with. The value specified must be greater than 0 and less
74 than or equal to the MULTIPATH_NUM specified on compilation.
75
76 .. option:: -Z, --no_zebra
77
78 Do not communicate with zebra at all. This is different than the --no_kernel
79 option in that we do not even open a ZAPI connection to the zebra process.
80
81 .. option:: -s, --socket_size
82
83 When opening tcp connections to our peers, set the socket send buffer
84 size that the kernel will use for the peers socket. This option
85 is only really useful at a very large scale. Experimentation should
86 be done to see if this is helping or not at the scale you are running
87 at.
88
89 LABEL MANAGER
90 -------------
91
92 .. option:: -I, --int_num
93
94 Set zclient id. This is required when using Zebra label manager in proxy mode.
95
96 .. _bgp-basic-concepts:
97
98 Basic Concepts
99 ==============
100
101 .. _bgp-autonomous-systems:
102
103 Autonomous Systems
104 ------------------
105
106 From :rfc:`1930`:
107
108 An AS is a connected group of one or more IP prefixes run by one or more
109 network operators which has a SINGLE and CLEARLY DEFINED routing policy.
110
111 Each AS has an identifying number associated with it called an :abbr:`ASN
112 (Autonomous System Number)`. This is a two octet value ranging in value from 1
113 to 65535. The AS numbers 64512 through 65535 are defined as private AS numbers.
114 Private AS numbers must not be advertised on the global Internet.
115
116 The :abbr:`ASN (Autonomous System Number)` is one of the essential elements of
117 BGP. BGP is a distance vector routing protocol, and the AS-Path framework
118 provides distance vector metric and loop detection to BGP.
119
120 .. seealso:: :rfc:`1930`
121
122 .. _bgp-address-families:
123
124 Address Families
125 ----------------
126
127 Multiprotocol extensions enable BGP to carry routing information for multiple
128 network layer protocols. BGP supports an Address Family Identifier (AFI) for
129 IPv4 and IPv6. Support is also provided for multiple sets of per-AFI
130 information via the BGP Subsequent Address Family Identifier (SAFI). FRR
131 supports SAFIs for unicast information, labeled information (:rfc:`3107` and
132 :rfc:`8277`), and Layer 3 VPN information (:rfc:`4364` and :rfc:`4659`).
133
134 .. _bgp-route-selection:
135
136 Route Selection
137 ---------------
138
139 The route selection process used by FRR's BGP implementation uses the following
140 decision criterion, starting at the top of the list and going towards the
141 bottom until one of the factors can be used.
142
143 1. **Weight check**
144
145 Prefer higher local weight routes to lower routes.
146
147 2. **Local preference check**
148
149 Prefer higher local preference routes to lower.
150
151 3. **Local route check**
152
153 Prefer local routes (statics, aggregates, redistributed) to received routes.
154
155 4. **AS path length check**
156
157 Prefer shortest hop-count AS_PATHs.
158
159 5. **Origin check**
160
161 Prefer the lowest origin type route. That is, prefer IGP origin routes to
162 EGP, to Incomplete routes.
163
164 6. **MED check**
165
166 Where routes with a MED were received from the same AS, prefer the route
167 with the lowest MED. :ref:`bgp-med`.
168
169 7. **External check**
170
171 Prefer the route received from an external, eBGP peer over routes received
172 from other types of peers.
173
174 8. **IGP cost check**
175
176 Prefer the route with the lower IGP cost.
177
178 9. **Multi-path check**
179
180 If multi-pathing is enabled, then check whether the routes not yet
181 distinguished in preference may be considered equal. If
182 :clicmd:`bgp bestpath as-path multipath-relax` is set, all such routes are
183 considered equal, otherwise routes received via iBGP with identical AS_PATHs
184 or routes received from eBGP neighbours in the same AS are considered equal.
185
186 10. **Already-selected external check**
187
188 Where both routes were received from eBGP peers, then prefer the route
189 which is already selected. Note that this check is not applied if
190 :clicmd:`bgp bestpath compare-routerid` is configured. This check can
191 prevent some cases of oscillation.
192
193 11. **Router-ID check**
194
195 Prefer the route with the lowest `router-ID`. If the route has an
196 `ORIGINATOR_ID` attribute, through iBGP reflection, then that router ID is
197 used, otherwise the `router-ID` of the peer the route was received from is
198 used.
199
200 12. **Cluster-List length check**
201
202 The route with the shortest cluster-list length is used. The cluster-list
203 reflects the iBGP reflection path the route has taken.
204
205 13. **Peer address**
206
207 Prefer the route received from the peer with the higher transport layer
208 address, as a last-resort tie-breaker.
209
210 .. _bgp-capability-negotiation:
211
212 Capability Negotiation
213 ----------------------
214
215 When adding IPv6 routing information exchange feature to BGP. There were some
216 proposals. :abbr:`IETF (Internet Engineering Task Force)`
217 :abbr:`IDR (Inter Domain Routing)` adopted a proposal called Multiprotocol
218 Extension for BGP. The specification is described in :rfc:`2283`. The protocol
219 does not define new protocols. It defines new attributes to existing BGP. When
220 it is used exchanging IPv6 routing information it is called BGP-4+. When it is
221 used for exchanging multicast routing information it is called MBGP.
222
223 *bgpd* supports Multiprotocol Extension for BGP. So if a remote peer supports
224 the protocol, *bgpd* can exchange IPv6 and/or multicast routing information.
225
226 Traditional BGP did not have the feature to detect a remote peer's
227 capabilities, e.g. whether it can handle prefix types other than IPv4 unicast
228 routes. This was a big problem using Multiprotocol Extension for BGP in an
229 operational network. :rfc:`2842` adopted a feature called Capability
230 Negotiation. *bgpd* use this Capability Negotiation to detect the remote peer's
231 capabilities. If a peer is only configured as an IPv4 unicast neighbor, *bgpd*
232 does not send these Capability Negotiation packets (at least not unless other
233 optional BGP features require capability negotiation).
234
235 By default, FRR will bring up peering with minimal common capability for the
236 both sides. For example, if the local router has unicast and multicast
237 capabilities and the remote router only has unicast capability the local router
238 will establish the connection with unicast only capability. When there are no
239 common capabilities, FRR sends Unsupported Capability error and then resets the
240 connection.
241
242 .. _bgp-router-configuration:
243
244 BGP Router Configuration
245 ========================
246
247 ASN and Router ID
248 -----------------
249
250 First of all you must configure BGP router with the :clicmd:`router bgp ASN`
251 command. The AS number is an identifier for the autonomous system. The BGP
252 protocol uses the AS number for detecting whether the BGP connection is
253 internal or external.
254
255 .. clicmd:: router bgp ASN
256
257 Enable a BGP protocol process with the specified ASN. After
258 this statement you can input any `BGP Commands`.
259
260 .. clicmd:: bgp router-id A.B.C.D
261
262 This command specifies the router-ID. If *bgpd* connects to *zebra* it gets
263 interface and address information. In that case default router ID value is
264 selected as the largest IP Address of the interfaces. When `router zebra` is
265 not enabled *bgpd* can't get interface information so `router-id` is set to
266 0.0.0.0. So please set router-id by hand.
267
268
269 .. _bgp-multiple-autonomous-systems:
270
271 Multiple Autonomous Systems
272 ---------------------------
273
274 FRR's BGP implementation is capable of running multiple autonomous systems at
275 once. Each configured AS corresponds to a :ref:`zebra-vrf`. In the past, to get
276 the same functionality the network administrator had to run a new *bgpd*
277 process; using VRFs allows multiple autonomous systems to be handled in a
278 single process.
279
280 When using multiple autonomous systems, all router config blocks after the
281 first one must specify a VRF to be the target of BGP's route selection. This
282 VRF must be unique within respect to all other VRFs being used for the same
283 purpose, i.e. two different autonomous systems cannot use the same VRF.
284 However, the same AS can be used with different VRFs.
285
286 .. note::
287
288 The separated nature of VRFs makes it possible to peer a single *bgpd*
289 process to itself, on one machine. Note that this can be done fully within
290 BGP without a corresponding VRF in the kernel or Zebra, which enables some
291 practical use cases such as :ref:`route reflectors <bgp-route-reflector>`
292 and route servers.
293
294 Configuration of additional autonomous systems, or of a router that targets a
295 specific VRF, is accomplished with the following command:
296
297 .. clicmd:: router bgp ASN vrf VRFNAME
298
299 ``VRFNAME`` is matched against VRFs configured in the kernel. When ``vrf
300 VRFNAME`` is not specified, the BGP protocol process belongs to the default
301 VRF.
302
303 An example configuration with multiple autonomous systems might look like this:
304
305 .. code-block:: frr
306
307 router bgp 1
308 neighbor 10.0.0.1 remote-as 20
309 neighbor 10.0.0.2 remote-as 30
310 !
311 router bgp 2 vrf blue
312 neighbor 10.0.0.3 remote-as 40
313 neighbor 10.0.0.4 remote-as 50
314 !
315 router bgp 3 vrf red
316 neighbor 10.0.0.5 remote-as 60
317 neighbor 10.0.0.6 remote-as 70
318 ...
319
320 .. seealso:: :ref:`bgp-vrf-route-leaking`
321 .. seealso:: :ref:`zebra-vrf`
322
323
324 .. _bgp-views:
325
326 Views
327 -----
328
329 In addition to supporting multiple autonomous systems, FRR's BGP implementation
330 also supports *views*.
331
332 BGP views are almost the same as normal BGP processes, except that routes
333 selected by BGP are not installed into the kernel routing table. Each BGP view
334 provides an independent set of routing information which is only distributed
335 via BGP. Multiple views can be supported, and BGP view information is always
336 independent from other routing protocols and Zebra/kernel routes. BGP views use
337 the core instance (i.e., default VRF) for communication with peers.
338
339 .. clicmd:: router bgp AS-NUMBER view NAME
340
341 Make a new BGP view. You can use an arbitrary word for the ``NAME``. Routes
342 selected by the view are not installed into the kernel routing table.
343
344 With this command, you can setup Route Server like below.
345
346 .. code-block:: frr
347
348 !
349 router bgp 1 view 1
350 neighbor 10.0.0.1 remote-as 2
351 neighbor 10.0.0.2 remote-as 3
352 !
353 router bgp 2 view 2
354 neighbor 10.0.0.3 remote-as 4
355 neighbor 10.0.0.4 remote-as 5
356
357 .. clicmd:: show [ip] bgp view NAME
358
359 Display the routing table of BGP view ``NAME``.
360
361
362 Route Selection
363 ---------------
364
365 .. clicmd:: bgp bestpath as-path confed
366
367 This command specifies that the length of confederation path sets and
368 sequences should should be taken into account during the BGP best path
369 decision process.
370
371 .. clicmd:: bgp bestpath as-path multipath-relax
372
373 This command specifies that BGP decision process should consider paths
374 of equal AS_PATH length candidates for multipath computation. Without
375 the knob, the entire AS_PATH must match for multipath computation.
376
377 .. clicmd:: bgp bestpath compare-routerid
378
379 Ensure that when comparing routes where both are equal on most metrics,
380 including local-pref, AS_PATH length, IGP cost, MED, that the tie is broken
381 based on router-ID.
382
383 If this option is enabled, then the already-selected check, where
384 already selected eBGP routes are preferred, is skipped.
385
386 If a route has an `ORIGINATOR_ID` attribute because it has been reflected,
387 that `ORIGINATOR_ID` will be used. Otherwise, the router-ID of the peer the
388 route was received from will be used.
389
390 The advantage of this is that the route-selection (at this point) will be
391 more deterministic. The disadvantage is that a few or even one lowest-ID
392 router may attract all traffic to otherwise-equal paths because of this
393 check. It may increase the possibility of MED or IGP oscillation, unless
394 other measures were taken to avoid these. The exact behaviour will be
395 sensitive to the iBGP and reflection topology.
396
397 .. clicmd:: bgp bestpath peer-type multipath-relax
398
399 This command specifies that BGP decision process should consider paths
400 from all peers for multipath computation. If this option is enabled,
401 paths learned from any of eBGP, iBGP, or confederation neighbors will
402 be multipath if they are otherwise considered equal cost.
403
404 .. _bgp-distance:
405
406 Administrative Distance Metrics
407 -------------------------------
408
409 .. clicmd:: distance bgp (1-255) (1-255) (1-255)
410
411 This command change distance value of BGP. The arguments are the distance
412 values for for external routes, internal routes and local routes
413 respectively.
414
415 .. clicmd:: distance (1-255) A.B.C.D/M
416
417 .. clicmd:: distance (1-255) A.B.C.D/M WORD
418
419 Sets the administrative distance for a particular route.
420
421 .. _bgp-requires-policy:
422
423 Require policy on EBGP
424 -------------------------------
425
426 .. clicmd:: bgp ebgp-requires-policy
427
428 This command requires incoming and outgoing filters to be applied
429 for eBGP sessions as part of RFC-8212 compliance. Without the incoming
430 filter, no routes will be accepted. Without the outgoing filter, no
431 routes will be announced.
432
433 This is enabled by default for the traditional configuration and
434 turned off by default for datacenter configuration.
435
436 When you enable/disable this option you MUST clear the session.
437
438 When the incoming or outgoing filter is missing you will see
439 "(Policy)" sign under ``show bgp summary``:
440
441 .. code-block:: frr
442
443 exit1# show bgp summary
444
445 IPv4 Unicast Summary:
446 BGP router identifier 10.10.10.1, local AS number 65001 vrf-id 0
447 BGP table version 4
448 RIB entries 7, using 1344 bytes of memory
449 Peers 2, using 43 KiB of memory
450
451 Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd PfxSnt
452 192.168.0.2 4 65002 8 10 0 0 0 00:03:09 5 (Policy)
453 fe80:1::2222 4 65002 9 11 0 0 0 00:03:09 (Policy) (Policy)
454
455 Additionally a `show bgp neighbor` command would indicate in the `For address family:`
456 block that:
457
458 .. code-block:: frr
459
460 exit1# show bgp neighbor
461 ...
462 For address family: IPv4 Unicast
463 Update group 1, subgroup 1
464 Packet Queue length 0
465 Inbound soft reconfiguration allowed
466 Community attribute sent to this neighbor(all)
467 Inbound updates discarded due to missing policy
468 Outbound updates discarded due to missing policy
469 0 accepted prefixes
470
471 Reject routes with AS_SET or AS_CONFED_SET types
472 ------------------------------------------------
473
474 .. clicmd:: bgp reject-as-sets
475
476 This command enables rejection of incoming and outgoing routes having AS_SET or AS_CONFED_SET type.
477
478 Suppress duplicate updates
479 --------------------------
480
481 .. clicmd:: bgp suppress-duplicates
482
483 For example, BGP routers can generate multiple identical announcements with
484 empty community attributes if stripped at egress. This is an undesired behavior.
485 Suppress duplicate updates if the route actually not changed.
486 Default: enabled.
487
488 Disable checking if nexthop is connected on EBGP sessions
489 ---------------------------------------------------------
490
491 .. clicmd:: bgp disable-ebgp-connected-route-check
492
493 This command is used to disable the connection verification process for EBGP peering sessions
494 that are reachable by a single hop but are configured on a loopback interface or otherwise
495 configured with a non-directly connected IP address.
496
497 .. _bgp-route-flap-dampening:
498
499 Route Flap Dampening
500 --------------------
501
502 .. clicmd:: bgp dampening [(1-45) [(1-20000) (1-20000) (1-255)]]
503
504 This command enables (with optionally specified dampening parameters) or
505 disables route-flap dampening for all routes of a BGP instance.
506
507 .. clicmd:: neighbor PEER dampening [(1-45) [(1-20000) (1-20000) (1-255)]]
508
509 This command enables (with optionally specified dampening parameters) or
510 disables route-flap dampening for all routes learned from a BGP peer.
511
512 .. clicmd:: neighbor GROUP dampening [(1-45) [(1-20000) (1-20000) (1-255)]]
513
514 This command enables (with optionally specified dampening parameters) or
515 disables route-flap dampening for all routes learned from peers of a peer
516 group.
517
518 half-life
519 Half-life time for the penalty in minutes (default value: 15).
520
521 reuse-threshold
522 Value to start reusing a route (default value: 750).
523
524 suppress-threshold
525 Value to start suppressing a route (default value: 2000).
526
527 max-suppress
528 Maximum duration to suppress a stable route in minutes (default value:
529 60).
530
531 The route-flap damping algorithm is compatible with :rfc:`2439`. The use of
532 these commands is not recommended nowadays.
533
534 At the moment, route-flap dampening is not working per VRF and is working only
535 for IPv4 unicast and multicast.
536
537 With different parameter sets configurable for BGP instances, peer groups and
538 peers, the active dampening profile for a route is chosen on the fly,
539 allowing for various changes in configuration (i.e. peer group memberships)
540 during runtime. The parameter sets are taking precedence in the following
541 order:
542
543 1. Peer
544 2. Peer group
545 3. BGP instance
546
547 The negating commands do not allow to exclude a peer/peer group from a peer
548 group/BGP instances configuration.
549
550 .. seealso::
551 https://www.ripe.net/publications/docs/ripe-378
552
553 .. _bgp-med:
554
555 Multi-Exit Discriminator
556 ------------------------
557
558 The BGP :abbr:`MED (Multi-Exit Discriminator)` attribute has properties which
559 can cause subtle convergence problems in BGP. These properties and problems
560 have proven to be hard to understand, at least historically, and may still not
561 be widely understood. The following attempts to collect together and present
562 what is known about MED, to help operators and FRR users in designing and
563 configuring their networks.
564
565 The BGP :abbr:`MED` attribute is intended to allow one AS to indicate its
566 preferences for its ingress points to another AS. The MED attribute will not be
567 propagated on to another AS by the receiving AS - it is 'non-transitive' in the
568 BGP sense.
569
570 E.g., if AS X and AS Y have 2 different BGP peering points, then AS X might set
571 a MED of 100 on routes advertised at one and a MED of 200 at the other. When AS
572 Y selects between otherwise equal routes to or via AS X, AS Y should prefer to
573 take the path via the lower MED peering of 100 with AS X. Setting the MED
574 allows an AS to influence the routing taken to it within another, neighbouring
575 AS.
576
577 In this use of MED it is not really meaningful to compare the MED value on
578 routes where the next AS on the paths differs. E.g., if AS Y also had a route
579 for some destination via AS Z in addition to the routes from AS X, and AS Z had
580 also set a MED, it wouldn't make sense for AS Y to compare AS Z's MED values to
581 those of AS X. The MED values have been set by different administrators, with
582 different frames of reference.
583
584 The default behaviour of BGP therefore is to not compare MED values across
585 routes received from different neighbouring ASes. In FRR this is done by
586 comparing the neighbouring, left-most AS in the received AS_PATHs of the routes
587 and only comparing MED if those are the same.
588
589 Unfortunately, this behaviour of MED, of sometimes being compared across routes
590 and sometimes not, depending on the properties of those other routes, means MED
591 can cause the order of preference over all the routes to be undefined. That is,
592 given routes A, B, and C, if A is preferred to B, and B is preferred to C, then
593 a well-defined order should mean the preference is transitive (in the sense of
594 orders [#med-transitivity-rant]_) and that A would be preferred to C.
595
596 However, when MED is involved this need not be the case. With MED it is
597 possible that C is actually preferred over A. So A is preferred to B, B is
598 preferred to C, but C is preferred to A. This can be true even where BGP
599 defines a deterministic 'most preferred' route out of the full set of A,B,C.
600 With MED, for any given set of routes there may be a deterministically
601 preferred route, but there need not be any way to arrange them into any order
602 of preference. With unmodified MED, the order of preference of routes literally
603 becomes undefined.
604
605 That MED can induce non-transitive preferences over routes can cause issues.
606 Firstly, it may be perceived to cause routing table churn locally at speakers;
607 secondly, and more seriously, it may cause routing instability in iBGP
608 topologies, where sets of speakers continually oscillate between different
609 paths.
610
611 The first issue arises from how speakers often implement routing decisions.
612 Though BGP defines a selection process that will deterministically select the
613 same route as best at any given speaker, even with MED, that process requires
614 evaluating all routes together. For performance and ease of implementation
615 reasons, many implementations evaluate route preferences in a pair-wise fashion
616 instead. Given there is no well-defined order when MED is involved, the best
617 route that will be chosen becomes subject to implementation details, such as
618 the order the routes are stored in. That may be (locally) non-deterministic,
619 e.g.: it may be the order the routes were received in.
620
621 This indeterminism may be considered undesirable, though it need not cause
622 problems. It may mean additional routing churn is perceived, as sometimes more
623 updates may be produced than at other times in reaction to some event .
624
625 This first issue can be fixed with a more deterministic route selection that
626 ensures routes are ordered by the neighbouring AS during selection.
627 :clicmd:`bgp deterministic-med`. This may reduce the number of updates as routes
628 are received, and may in some cases reduce routing churn. Though, it could
629 equally deterministically produce the largest possible set of updates in
630 response to the most common sequence of received updates.
631
632 A deterministic order of evaluation tends to imply an additional overhead of
633 sorting over any set of n routes to a destination. The implementation of
634 deterministic MED in FRR scales significantly worse than most sorting
635 algorithms at present, with the number of paths to a given destination. That
636 number is often low enough to not cause any issues, but where there are many
637 paths, the deterministic comparison may quickly become increasingly expensive
638 in terms of CPU.
639
640 Deterministic local evaluation can *not* fix the second, more major, issue of
641 MED however. Which is that the non-transitive preference of routes MED can
642 cause may lead to routing instability or oscillation across multiple speakers
643 in iBGP topologies. This can occur with full-mesh iBGP, but is particularly
644 problematic in non-full-mesh iBGP topologies that further reduce the routing
645 information known to each speaker. This has primarily been documented with iBGP
646 :ref:`route-reflection <bgp-route-reflector>` topologies. However, any
647 route-hiding technologies potentially could also exacerbate oscillation with MED.
648
649 This second issue occurs where speakers each have only a subset of routes, and
650 there are cycles in the preferences between different combinations of routes -
651 as the undefined order of preference of MED allows - and the routes are
652 distributed in a way that causes the BGP speakers to 'chase' those cycles. This
653 can occur even if all speakers use a deterministic order of evaluation in route
654 selection.
655
656 E.g., speaker 4 in AS A might receive a route from speaker 2 in AS X, and from
657 speaker 3 in AS Y; while speaker 5 in AS A might receive that route from
658 speaker 1 in AS Y. AS Y might set a MED of 200 at speaker 1, and 100 at speaker
659 3. I.e, using ASN:ID:MED to label the speakers:
660
661 ::
662
663 .
664 /---------------\\
665 X:2------|--A:4-------A:5--|-Y:1:200
666 Y:3:100--|-/ |
667 \\---------------/
668
669
670
671 Assuming all other metrics are equal (AS_PATH, ORIGIN, 0 IGP costs), then based
672 on the RFC4271 decision process speaker 4 will choose X:2 over Y:3:100, based
673 on the lower ID of 2. Speaker 4 advertises X:2 to speaker 5. Speaker 5 will
674 continue to prefer Y:1:200 based on the ID, and advertise this to speaker 4.
675 Speaker 4 will now have the full set of routes, and the Y:1:200 it receives
676 from 5 will beat X:2, but when speaker 4 compares Y:1:200 to Y:3:100 the MED
677 check now becomes active as the ASes match, and now Y:3:100 is preferred.
678 Speaker 4 therefore now advertises Y:3:100 to 5, which will also agrees that
679 Y:3:100 is preferred to Y:1:200, and so withdraws the latter route from 4.
680 Speaker 4 now has only X:2 and Y:3:100, and X:2 beats Y:3:100, and so speaker 4
681 implicitly updates its route to speaker 5 to X:2. Speaker 5 sees that Y:1:200
682 beats X:2 based on the ID, and advertises Y:1:200 to speaker 4, and the cycle
683 continues.
684
685 The root cause is the lack of a clear order of preference caused by how MED
686 sometimes is and sometimes is not compared, leading to this cycle in the
687 preferences between the routes:
688
689 ::
690
691 .
692 /---> X:2 ---beats---> Y:3:100 --\\
693 | |
694 | |
695 \\---beats--- Y:1:200 <---beats---/
696
697
698
699 This particular type of oscillation in full-mesh iBGP topologies can be
700 avoided by speakers preferring already selected, external routes rather than
701 choosing to update to new a route based on a post-MED metric (e.g. router-ID),
702 at the cost of a non-deterministic selection process. FRR implements this, as
703 do many other implementations, so long as it is not overridden by setting
704 :clicmd:`bgp bestpath compare-routerid`, and see also
705 :ref:`bgp-route-selection`.
706
707 However, more complex and insidious cycles of oscillation are possible with
708 iBGP route-reflection, which are not so easily avoided. These have been
709 documented in various places. See, e.g.:
710
711 - [bgp-route-osci-cond]_
712 - [stable-flexible-ibgp]_
713 - [ibgp-correctness]_
714
715 for concrete examples and further references.
716
717 There is as of this writing *no* known way to use MED for its original purpose;
718 *and* reduce routing information in iBGP topologies; *and* be sure to avoid the
719 instability problems of MED due the non-transitive routing preferences it can
720 induce; in general on arbitrary networks.
721
722 There may be iBGP topology specific ways to reduce the instability risks, even
723 while using MED, e.g.: by constraining the reflection topology and by tuning
724 IGP costs between route-reflector clusters, see :rfc:`3345` for details. In the
725 near future, the Add-Path extension to BGP may also solve MED oscillation while
726 still allowing MED to be used as intended, by distributing "best-paths per
727 neighbour AS". This would be at the cost of distributing at least as many
728 routes to all speakers as a full-mesh iBGP would, if not more, while also
729 imposing similar CPU overheads as the "Deterministic MED" feature at each
730 Add-Path reflector.
731
732 More generally, the instability problems that MED can introduce on more
733 complex, non-full-mesh, iBGP topologies may be avoided either by:
734
735 - Setting :clicmd:`bgp always-compare-med`, however this allows MED to be compared
736 across values set by different neighbour ASes, which may not produce
737 coherent desirable results, of itself.
738 - Effectively ignoring MED by setting MED to the same value (e.g.: 0) using
739 :clicmd:`set metric METRIC` on all received routes, in combination with
740 setting :clicmd:`bgp always-compare-med` on all speakers. This is the simplest
741 and most performant way to avoid MED oscillation issues, where an AS is happy
742 not to allow neighbours to inject this problematic metric.
743
744 As MED is evaluated after the AS_PATH length check, another possible use for
745 MED is for intra-AS steering of routes with equal AS_PATH length, as an
746 extension of the last case above. As MED is evaluated before IGP metric, this
747 can allow cold-potato routing to be implemented to send traffic to preferred
748 hand-offs with neighbours, rather than the closest hand-off according to the
749 IGP metric.
750
751 Note that even if action is taken to address the MED non-transitivity issues,
752 other oscillations may still be possible. E.g., on IGP cost if iBGP and IGP
753 topologies are at cross-purposes with each other - see the Flavel and Roughan
754 paper above for an example. Hence the guideline that the iBGP topology should
755 follow the IGP topology.
756
757 .. clicmd:: bgp deterministic-med
758
759 Carry out route-selection in way that produces deterministic answers
760 locally, even in the face of MED and the lack of a well-defined order of
761 preference it can induce on routes. Without this option the preferred route
762 with MED may be determined largely by the order that routes were received
763 in.
764
765 Setting this option will have a performance cost that may be noticeable when
766 there are many routes for each destination. Currently in FRR it is
767 implemented in a way that scales poorly as the number of routes per
768 destination increases.
769
770 The default is that this option is not set.
771
772 Note that there are other sources of indeterminism in the route selection
773 process, specifically, the preference for older and already selected routes
774 from eBGP peers, :ref:`bgp-route-selection`.
775
776 .. clicmd:: bgp always-compare-med
777
778 Always compare the MED on routes, even when they were received from
779 different neighbouring ASes. Setting this option makes the order of
780 preference of routes more defined, and should eliminate MED induced
781 oscillations.
782
783 If using this option, it may also be desirable to use
784 :clicmd:`set metric METRIC` to set MED to 0 on routes received from external
785 neighbours.
786
787 This option can be used, together with :clicmd:`set metric METRIC` to use
788 MED as an intra-AS metric to steer equal-length AS_PATH routes to, e.g.,
789 desired exit points.
790
791
792 .. _bgp-graceful-restart:
793
794 Graceful Restart
795 ----------------
796
797 BGP graceful restart functionality as defined in
798 `RFC-4724 <https://tools.ietf.org/html/rfc4724/>`_ defines the mechanisms that
799 allows BGP speaker to continue to forward data packets along known routes
800 while the routing protocol information is being restored.
801
802
803 Usually, when BGP on a router restarts, all the BGP peers detect that the
804 session went down and then came up. This "down/up" transition results in a
805 "routing flap" and causes BGP route re-computation, generation of BGP routing
806 updates, and unnecessary churn to the forwarding tables.
807
808 The following functionality is provided by graceful restart:
809
810 1. The feature allows the restarting router to indicate to the helping peer the
811 routes it can preserve in its forwarding plane during control plane restart
812 by sending graceful restart capability in the OPEN message sent during
813 session establishment.
814 2. The feature allows helping router to advertise to all other peers the routes
815 received from the restarting router which are preserved in the forwarding
816 plane of the restarting router during control plane restart.
817
818
819 ::
820
821
822
823 (R1)-----------------------------------------------------------------(R2)
824
825 1. BGP Graceful Restart Capability exchanged between R1 & R2.
826
827 <--------------------------------------------------------------------->
828
829 2. Kill BGP Process at R1.
830
831 ---------------------------------------------------------------------->
832
833 3. R2 Detects the above BGP Restart & verifies BGP Restarting
834 Capability of R1.
835
836 4. Start BGP Process at R1.
837
838 5. Re-establish the BGP session between R1 & R2.
839
840 <--------------------------------------------------------------------->
841
842 6. R2 Send initial route updates, followed by End-Of-Rib.
843
844 <----------------------------------------------------------------------
845
846 7. R1 was waiting for End-Of-Rib from R2 & which has been received
847 now.
848
849 8. R1 now runs BGP Best-Path algorithm. Send Initial BGP Update,
850 followed by End-Of Rib
851
852 <--------------------------------------------------------------------->
853
854
855 .. _bgp-GR-preserve-forwarding-state:
856
857 BGP-GR Preserve-Forwarding State
858 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
859
860 BGP OPEN message carrying optional capabilities for Graceful Restart has
861 8 bit “Flags for Address Family” for given AFI and SAFI. This field contains
862 bit flags relating to routes that were advertised with the given AFI and SAFI.
863
864 .. code-block:: frr
865
866 0 1 2 3 4 5 6 7
867 +-+-+-+-+-+-+-+-+
868 |F| Reserved |
869 +-+-+-+-+-+-+-+-+
870
871 The most significant bit is defined as the Forwarding State (F) bit, which
872 can be used to indicate whether the forwarding state for routes that were
873 advertised with the given AFI and SAFI has indeed been preserved during the
874 previous BGP restart. When set (value 1), the bit indicates that the
875 forwarding state has been preserved.
876 The remaining bits are reserved and MUST be set to zero by the sender and
877 ignored by the receiver.
878
879 .. clicmd:: bgp graceful-restart preserve-fw-state
880
881 FRR gives us the option to enable/disable the "F" flag using this specific
882 vty command. However, it doesn't have the option to enable/disable
883 this flag only for specific AFI/SAFI i.e. when this command is used, it
884 applied to all the supported AFI/SAFI combinations for this peer.
885
886 .. _bgp-end-of-rib-message:
887
888 End-of-RIB (EOR) message
889 ^^^^^^^^^^^^^^^^^^^^^^^^
890
891 An UPDATE message with no reachable Network Layer Reachability Information
892 (NLRI) and empty withdrawn NLRI is specified as the End-of-RIB marker that can
893 be used by a BGP speaker to indicate to its peer the completion of the initial
894 routing update after the session is established.
895
896 For the IPv4 unicast address family, the End-of-RIB marker is an UPDATE message
897 with the minimum length. For any other address family, it is an UPDATE message
898 that contains only the MP_UNREACH_NLRI attribute with no withdrawn routes for
899 that <AFI, SAFI>.
900
901 Although the End-of-RIB marker is specified for the purpose of BGP graceful
902 restart, it is noted that the generation of such a marker upon completion of
903 the initial update would be useful for routing convergence in general, and thus
904 the practice is recommended.
905
906 .. _bgp-route-selection-deferral-timer:
907
908 Route Selection Deferral Timer
909 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
910
911 Specifies the time the restarting router defers the route selection process
912 after restart.
913
914 Restarting Router : The usage of route election deferral timer is specified
915 in https://tools.ietf.org/html/rfc4724#section-4.1
916
917 Once the session between the Restarting Speaker and the Receiving Speaker is
918 re-established, the Restarting Speaker will receive and process BGP messages
919 from its peers.
920
921 However, it MUST defer route selection for an address family until it either.
922
923 1. Receives the End-of-RIB marker from all its peers (excluding the ones with
924 the "Restart State" bit set in the received capability and excluding the ones
925 that do not advertise the graceful restart capability).
926 2. The Selection_Deferral_Timer timeout.
927
928 .. clicmd:: bgp graceful-restart select-defer-time (0-3600)
929
930 This is command, will set deferral time to value specified.
931
932
933 .. clicmd:: bgp graceful-restart rib-stale-time (1-3600)
934
935 This is command, will set the time for which stale routes are kept in RIB.
936
937 .. clicmd:: bgp graceful-restart stalepath-time (1-4095)
938
939 This is command, will set the max time (in seconds) to hold onto
940 restarting peer's stale paths.
941
942 It also controls Enhanced Route-Refresh timer.
943
944 If this command is configured and the router does not receive a Route-Refresh EoRR
945 message, the router removes the stale routes from the BGP table after the timer
946 expires. The stale path timer is started when the router receives a Route-Refresh
947 BoRR message.
948
949 .. _bgp-per-peer-graceful-restart:
950
951 BGP Per Peer Graceful Restart
952 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
953
954 Ability to enable and disable graceful restart, helper and no GR at all mode
955 functionality at peer level.
956
957 So bgp graceful restart can be enabled at modes global BGP level or at per
958 peer level. There are two FSM, one for BGP GR global mode and other for peer
959 per GR.
960
961 Default global mode is helper and default peer per mode is inherit from global.
962 If per peer mode is configured, the GR mode of this particular peer will
963 override the global mode.
964
965 .. _bgp-GR-global-mode-cmd:
966
967 BGP GR Global Mode Commands
968 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
969
970 .. clicmd:: bgp graceful-restart
971
972 This command will enable BGP graceful restart ifunctionality at the global
973 level.
974
975 .. clicmd:: bgp graceful-restart disable
976
977 This command will disable both the functionality graceful restart and helper
978 mode.
979
980
981 .. _bgp-GR-peer-mode-cmd:
982
983 BGP GR Peer Mode Commands
984 ^^^^^^^^^^^^^^^^^^^^^^^^^
985
986 .. clicmd:: neighbor A.B.C.D graceful-restart
987
988 This command will enable BGP graceful restart ifunctionality at the peer
989 level.
990
991 .. clicmd:: neighbor A.B.C.D graceful-restart-helper
992
993 This command will enable BGP graceful restart helper only functionality
994 at the peer level.
995
996 .. clicmd:: neighbor A.B.C.D graceful-restart-disable
997
998 This command will disable the entire BGP graceful restart functionality
999 at the peer level.
1000
1001
1002 .. _bgp-shutdown:
1003
1004 Administrative Shutdown
1005 -----------------------
1006
1007 .. clicmd:: bgp shutdown [message MSG...]
1008
1009 Administrative shutdown of all peers of a bgp instance. Drop all BGP peers,
1010 but preserve their configurations. The peers are notified in accordance with
1011 `RFC 8203 <https://tools.ietf.org/html/rfc8203/>`_ by sending a
1012 ``NOTIFICATION`` message with error code ``Cease`` and subcode
1013 ``Administrative Shutdown`` prior to terminating connections. This global
1014 shutdown is independent of the neighbor shutdown, meaning that individually
1015 shut down peers will not be affected by lifting it.
1016
1017 An optional shutdown message `MSG` can be specified.
1018
1019
1020 .. _bgp-network:
1021
1022 Networks
1023 --------
1024
1025 .. clicmd:: network A.B.C.D/M
1026
1027 This command adds the announcement network.
1028
1029 .. code-block:: frr
1030
1031 router bgp 1
1032 address-family ipv4 unicast
1033 network 10.0.0.0/8
1034 exit-address-family
1035
1036 This configuration example says that network 10.0.0.0/8 will be
1037 announced to all neighbors. Some vendors' routers don't advertise
1038 routes if they aren't present in their IGP routing tables; `bgpd`
1039 doesn't care about IGP routes when announcing its routes.
1040
1041
1042 .. clicmd:: bgp network import-check
1043
1044 This configuration modifies the behavior of the network statement.
1045 If you have this configured the underlying network must exist in
1046 the rib. If you have the [no] form configured then BGP will not
1047 check for the networks existence in the rib. For versions 7.3 and
1048 before frr defaults for datacenter were the network must exist,
1049 traditional did not check for existence. For versions 7.4 and beyond
1050 both traditional and datacenter the network must exist.
1051
1052 .. _bgp-ipv6-support:
1053
1054 IPv6 Support
1055 ------------
1056
1057 .. clicmd:: neighbor A.B.C.D activate
1058
1059 This configuration modifies whether to enable an address family for a
1060 specific neighbor. By default only the IPv4 unicast address family is
1061 enabled.
1062
1063 .. code-block:: frr
1064
1065 router bgp 1
1066 address-family ipv6 unicast
1067 neighbor 2001:0DB8::1 activate
1068 network 2001:0DB8:5009::/64
1069 exit-address-family
1070
1071 This configuration example says that network 2001:0DB8:5009::/64 will be
1072 announced and enables the neighbor 2001:0DB8::1 to receive this announcement.
1073
1074 By default, only the IPv4 unicast address family is announced to all
1075 neighbors. Using the 'no bgp default ipv4-unicast' configuration overrides
1076 this default so that all address families need to be enabled explicitly.
1077
1078 .. code-block:: frr
1079
1080 router bgp 1
1081 no bgp default ipv4-unicast
1082 neighbor 10.10.10.1 remote-as 2
1083 neighbor 2001:0DB8::1 remote-as 3
1084 address-family ipv4 unicast
1085 neighbor 10.10.10.1 activate
1086 network 192.168.1.0/24
1087 exit-address-family
1088 address-family ipv6 unicast
1089 neighbor 2001:0DB8::1 activate
1090 network 2001:0DB8:5009::/64
1091 exit-address-family
1092
1093 This configuration demonstrates how the 'no bgp default ipv4-unicast' might
1094 be used in a setup with two upstreams where each of the upstreams should only
1095 receive either IPv4 or IPv6 annocuments.
1096
1097 Using the ``bgp default ipv6-unicast`` configuration, IPv6 unicast
1098 address family is enabled by default for all new neighbors.
1099
1100
1101 .. _bgp-route-aggregation:
1102
1103 Route Aggregation
1104 -----------------
1105
1106 .. _bgp-route-aggregation-ipv4:
1107
1108 Route Aggregation-IPv4 Address Family
1109 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1110
1111 .. clicmd:: aggregate-address A.B.C.D/M
1112
1113 This command specifies an aggregate address.
1114
1115 .. clicmd:: aggregate-address A.B.C.D/M route-map NAME
1116
1117 Apply a route-map for an aggregated prefix.
1118
1119 .. clicmd:: aggregate-address A.B.C.D/M origin <egp|igp|incomplete>
1120
1121 Override ORIGIN for an aggregated prefix.
1122
1123 .. clicmd:: aggregate-address A.B.C.D/M as-set
1124
1125 This command specifies an aggregate address. Resulting routes include
1126 AS set.
1127
1128 .. clicmd:: aggregate-address A.B.C.D/M summary-only
1129
1130 This command specifies an aggregate address. Aggregated routes will
1131 not be announced.
1132
1133 .. clicmd:: aggregate-address A.B.C.D/M matching-MED-only
1134
1135 Configure the aggregated address to only be created when the routes MED
1136 match, otherwise no aggregated route will be created.
1137
1138 .. clicmd:: aggregate-address A.B.C.D/M suppress-map NAME
1139
1140 Similar to `summary-only`, but will only suppress more specific routes that
1141 are matched by the selected route-map.
1142
1143
1144 This configuration example sets up an ``aggregate-address`` under the ipv4
1145 address-family.
1146
1147 .. code-block:: frr
1148
1149 router bgp 1
1150 address-family ipv4 unicast
1151 aggregate-address 10.0.0.0/8
1152 aggregate-address 20.0.0.0/8 as-set
1153 aggregate-address 40.0.0.0/8 summary-only
1154 aggregate-address 50.0.0.0/8 route-map aggr-rmap
1155 exit-address-family
1156
1157
1158 .. _bgp-route-aggregation-ipv6:
1159
1160 Route Aggregation-IPv6 Address Family
1161 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1162
1163 .. clicmd:: aggregate-address X:X::X:X/M
1164
1165 This command specifies an aggregate address.
1166
1167 .. clicmd:: aggregate-address X:X::X:X/M route-map NAME
1168
1169 Apply a route-map for an aggregated prefix.
1170
1171 .. clicmd:: aggregate-address X:X::X:X/M origin <egp|igp|incomplete>
1172
1173 Override ORIGIN for an aggregated prefix.
1174
1175 .. clicmd:: aggregate-address X:X::X:X/M as-set
1176
1177 This command specifies an aggregate address. Resulting routes include
1178 AS set.
1179
1180 .. clicmd:: aggregate-address X:X::X:X/M summary-only
1181
1182 This command specifies an aggregate address. Aggregated routes will
1183 not be announced.
1184
1185 .. clicmd:: aggregate-address X:X::X:X/M matching-MED-only
1186
1187 Configure the aggregated address to only be created when the routes MED
1188 match, otherwise no aggregated route will be created.
1189
1190 .. clicmd:: aggregate-address X:X::X:X/M suppress-map NAME
1191
1192 Similar to `summary-only`, but will only suppress more specific routes that
1193 are matched by the selected route-map.
1194
1195
1196 This configuration example sets up an ``aggregate-address`` under the ipv6
1197 address-family.
1198
1199 .. code-block:: frr
1200
1201 router bgp 1
1202 address-family ipv6 unicast
1203 aggregate-address 10::0/64
1204 aggregate-address 20::0/64 as-set
1205 aggregate-address 40::0/64 summary-only
1206 aggregate-address 50::0/64 route-map aggr-rmap
1207 exit-address-family
1208
1209
1210 .. _bgp-redistribute-to-bgp:
1211
1212 Redistribution
1213 --------------
1214
1215 Redistribution configuration should be placed under the ``address-family``
1216 section for the specific AF to redistribute into. Protocol availability for
1217 redistribution is determined by BGP AF; for example, you cannot redistribute
1218 OSPFv3 into ``address-family ipv4 unicast`` as OSPFv3 supports IPv6.
1219
1220 .. clicmd:: redistribute <babel|connected|eigrp|isis|kernel|openfabric|ospf|ospf6|rip|ripng|sharp|static|table> [metric (0-4294967295)] [route-map WORD]
1221
1222 Redistribute routes from other protocols into BGP.
1223
1224 .. clicmd:: redistribute vnc-direct
1225
1226 Redistribute VNC direct (not via zebra) routes to BGP process.
1227
1228 .. clicmd:: bgp update-delay MAX-DELAY
1229
1230 .. clicmd:: bgp update-delay MAX-DELAY ESTABLISH-WAIT
1231
1232 This feature is used to enable read-only mode on BGP process restart or when
1233 a BGP process is cleared using 'clear ip bgp \*'. Note that this command is
1234 configured at the global level and applies to all bgp instances/vrfs. It
1235 cannot be used at the same time as the "update-delay" command described below,
1236 which is entered in each bgp instance/vrf desired to delay update installation
1237 and advertisements. The global and per-vrf approaches to defining update-delay
1238 are mutually exclusive.
1239
1240 When applicable, read-only mode would begin as soon as the first peer reaches
1241 Established status and a timer for max-delay seconds is started. During this
1242 mode BGP doesn't run any best-path or generate any updates to its peers. This
1243 mode continues until:
1244
1245 1. All the configured peers, except the shutdown peers, have sent explicit EOR
1246 (End-Of-RIB) or an implicit-EOR. The first keep-alive after BGP has reached
1247 Established is considered an implicit-EOR.
1248 If the establish-wait optional value is given, then BGP will wait for
1249 peers to reach established from the beginning of the update-delay till the
1250 establish-wait period is over, i.e. the minimum set of established peers for
1251 which EOR is expected would be peers established during the establish-wait
1252 window, not necessarily all the configured neighbors.
1253 2. max-delay period is over.
1254
1255 On hitting any of the above two conditions, BGP resumes the decision process
1256 and generates updates to its peers.
1257
1258 Default max-delay is 0, i.e. the feature is off by default.
1259
1260
1261 .. clicmd:: update-delay MAX-DELAY
1262
1263 .. clicmd:: update-delay MAX-DELAY ESTABLISH-WAIT
1264
1265 This feature is used to enable read-only mode on BGP process restart or when
1266 a BGP process is cleared using 'clear ip bgp \*'. Note that this command is
1267 configured under the specific bgp instance/vrf that the feaure is enabled for.
1268 It cannot be used at the same time as the global "bgp update-delay" described
1269 above, which is entered at the global level and applies to all bgp instances.
1270 The global and per-vrf approaches to defining update-delay are mutually
1271 exclusive.
1272
1273 When applicable, read-only mode would begin as soon as the first peer reaches
1274 Established status and a timer for max-delay seconds is started. During this
1275 mode BGP doesn't run any best-path or generate any updates to its peers. This
1276 mode continues until:
1277
1278 1. All the configured peers, except the shutdown peers, have sent explicit EOR
1279 (End-Of-RIB) or an implicit-EOR. The first keep-alive after BGP has reached
1280 Established is considered an implicit-EOR.
1281 If the establish-wait optional value is given, then BGP will wait for
1282 peers to reach established from the beginning of the update-delay till the
1283 establish-wait period is over, i.e. the minimum set of established peers for
1284 which EOR is expected would be peers established during the establish-wait
1285 window, not necessarily all the configured neighbors.
1286 2. max-delay period is over.
1287
1288 On hitting any of the above two conditions, BGP resumes the decision process
1289 and generates updates to its peers.
1290
1291 Default max-delay is 0, i.e. the feature is off by default.
1292
1293 .. clicmd:: table-map ROUTE-MAP-NAME
1294
1295 This feature is used to apply a route-map on route updates from BGP to
1296 Zebra. All the applicable match operations are allowed, such as match on
1297 prefix, next-hop, communities, etc. Set operations for this attach-point are
1298 limited to metric and next-hop only. Any operation of this feature does not
1299 affect BGPs internal RIB.
1300
1301 Supported for ipv4 and ipv6 address families. It works on multi-paths as
1302 well, however, metric setting is based on the best-path only.
1303
1304 .. _bgp-peers:
1305
1306 Peers
1307 -----
1308
1309 .. _bgp-defining-peers:
1310
1311 Defining Peers
1312 ^^^^^^^^^^^^^^
1313
1314 .. clicmd:: neighbor PEER remote-as ASN
1315
1316 Creates a new neighbor whose remote-as is ASN. PEER can be an IPv4 address
1317 or an IPv6 address or an interface to use for the connection.
1318
1319 .. code-block:: frr
1320
1321 router bgp 1
1322 neighbor 10.0.0.1 remote-as 2
1323
1324 In this case my router, in AS-1, is trying to peer with AS-2 at 10.0.0.1.
1325
1326 This command must be the first command used when configuring a neighbor. If
1327 the remote-as is not specified, *bgpd* will complain like this: ::
1328
1329 can't find neighbor 10.0.0.1
1330
1331 .. clicmd:: neighbor PEER remote-as internal
1332
1333 Create a peer as you would when you specify an ASN, except that if the
1334 peers ASN is different than mine as specified under the :clicmd:`router bgp ASN`
1335 command the connection will be denied.
1336
1337 .. clicmd:: neighbor PEER remote-as external
1338
1339 Create a peer as you would when you specify an ASN, except that if the
1340 peers ASN is the same as mine as specified under the :clicmd:`router bgp ASN`
1341 command the connection will be denied.
1342
1343 .. clicmd:: bgp listen range <A.B.C.D/M|X:X::X:X/M> peer-group PGNAME
1344
1345 Accept connections from any peers in the specified prefix. Configuration
1346 from the specified peer-group is used to configure these peers.
1347
1348 .. note::
1349
1350 When using BGP listen ranges, if the associated peer group has TCP MD5
1351 authentication configured, your kernel must support this on prefixes. On
1352 Linux, this support was added in kernel version 4.14. If your kernel does
1353 not support this feature you will get a warning in the log file, and the
1354 listen range will only accept connections from peers without MD5 configured.
1355
1356 Additionally, we have observed that when using this option at scale (several
1357 hundred peers) the kernel may hit its option memory limit. In this situation
1358 you will see error messages like:
1359
1360 ``bgpd: sockopt_tcp_signature: setsockopt(23): Cannot allocate memory``
1361
1362 In this case you need to increase the value of the sysctl
1363 ``net.core.optmem_max`` to allow the kernel to allocate the necessary option
1364 memory.
1365
1366 .. clicmd:: bgp listen limit <1-65535>
1367
1368 Define the maximum number of peers accepted for one BGP instance. This
1369 limit is set to 100 by default. Increasing this value will really be
1370 possible if more file descriptors are available in the BGP process. This
1371 value is defined by the underlying system (ulimit value), and can be
1372 overriden by `--limit-fds`. More information is available in chapter
1373 (:ref:`common-invocation-options`).
1374
1375 .. clicmd:: coalesce-time (0-4294967295)
1376
1377 The time in milliseconds that BGP will delay before deciding what peers
1378 can be put into an update-group together in order to generate a single
1379 update for them. The default time is 1000.
1380
1381 .. _bgp-configuring-peers:
1382
1383 Configuring Peers
1384 ^^^^^^^^^^^^^^^^^
1385
1386 .. clicmd:: neighbor PEER shutdown [message MSG...] [rtt (1-65535) [count (1-255)]]
1387
1388 Shutdown the peer. We can delete the neighbor's configuration by
1389 ``no neighbor PEER remote-as ASN`` but all configuration of the neighbor
1390 will be deleted. When you want to preserve the configuration, but want to
1391 drop the BGP peer, use this syntax.
1392
1393 Optionally you can specify a shutdown message `MSG`.
1394
1395 Also, you can specify optionally ``rtt`` in milliseconds to automatically
1396 shutdown the peer if round-trip-time becomes higher than defined.
1397
1398 Additional ``count`` parameter is the number of keepalive messages to count
1399 before shutdown the peer if round-trip-time becomes higher than defined.
1400
1401 .. clicmd:: neighbor PEER disable-connected-check
1402
1403 Allow peerings between directly connected eBGP peers using loopback
1404 addresses.
1405
1406 .. clicmd:: neighbor PEER ebgp-multihop
1407
1408 Specifying ``ebgp-multihop`` allows sessions with eBGP neighbors to
1409 establish when they are multiple hops away. When the neighbor is not
1410 directly connected and this knob is not enabled, the session will not
1411 establish.
1412
1413 If the peer's IP address is not in the RIB and is reachable via the
1414 default route, then you have to enable ``ip nht resolve-via-default``.
1415
1416 .. clicmd:: neighbor PEER description ...
1417
1418 Set description of the peer.
1419
1420 .. clicmd:: neighbor PEER version VERSION
1421
1422 Set up the neighbor's BGP version. `version` can be `4`, `4+` or `4-`. BGP
1423 version `4` is the default value used for BGP peering. BGP version `4+`
1424 means that the neighbor supports Multiprotocol Extensions for BGP-4. BGP
1425 version `4-` is similar but the neighbor speaks the old Internet-Draft
1426 revision 00's Multiprotocol Extensions for BGP-4. Some routing software is
1427 still using this version.
1428
1429 .. clicmd:: neighbor PEER interface IFNAME
1430
1431 When you connect to a BGP peer over an IPv6 link-local address, you have to
1432 specify the IFNAME of the interface used for the connection. To specify
1433 IPv4 session addresses, see the ``neighbor PEER update-source`` command
1434 below.
1435
1436 This command is deprecated and may be removed in a future release. Its use
1437 should be avoided.
1438
1439 .. clicmd:: neighbor PEER interface remote-as <internal|external|ASN>
1440
1441 Configure an unnumbered BGP peer. ``PEER`` should be an interface name. The
1442 session will be established via IPv6 link locals. Use ``internal`` for iBGP
1443 and ``external`` for eBGP sessions, or specify an ASN if you wish.
1444
1445 .. clicmd:: neighbor PEER next-hop-self [all]
1446
1447 This command specifies an announced route's nexthop as being equivalent to
1448 the address of the bgp router if it is learned via eBGP. If the optional
1449 keyword `all` is specified the modification is done also for routes learned
1450 via iBGP.
1451
1452 .. clicmd:: neighbor PEER attribute-unchanged [{as-path|next-hop|med}]
1453
1454 This command specifies attributes to be left unchanged for advertisements
1455 sent to a peer. Use this to leave the next-hop unchanged in ipv6
1456 configurations, as the route-map directive to leave the next-hop unchanged
1457 is only available for ipv4.
1458
1459 .. clicmd:: neighbor PEER update-source <IFNAME|ADDRESS>
1460
1461 Specify the IPv4 source address to use for the :abbr:`BGP` session to this
1462 neighbour, may be specified as either an IPv4 address directly or as an
1463 interface name (in which case the *zebra* daemon MUST be running in order
1464 for *bgpd* to be able to retrieve interface state).
1465
1466 .. code-block:: frr
1467
1468 router bgp 64555
1469 neighbor foo update-source 192.168.0.1
1470 neighbor bar update-source lo0
1471
1472
1473 .. clicmd:: neighbor PEER default-originate
1474
1475 *bgpd*'s default is to not announce the default route (0.0.0.0/0) even if it
1476 is in routing table. When you want to announce default routes to the peer,
1477 use this command.
1478
1479 .. clicmd:: neighbor PEER port PORT
1480
1481 .. clicmd:: neighbor PEER password PASSWORD
1482
1483 Set a MD5 password to be used with the tcp socket that is being used
1484 to connect to the remote peer. Please note if you are using this
1485 command with a large number of peers on linux you should consider
1486 modifying the `net.core.optmem_max` sysctl to a larger value to
1487 avoid out of memory errors from the linux kernel.
1488
1489 .. clicmd:: neighbor PEER send-community
1490
1491 .. clicmd:: neighbor PEER weight WEIGHT
1492
1493 This command specifies a default `weight` value for the neighbor's routes.
1494
1495 .. clicmd:: neighbor PEER maximum-prefix NUMBER [force]
1496
1497 Sets a maximum number of prefixes we can receive from a given peer. If this
1498 number is exceeded, the BGP session will be destroyed.
1499
1500 In practice, it is generally preferable to use a prefix-list to limit what
1501 prefixes are received from the peer instead of using this knob. Tearing down
1502 the BGP session when a limit is exceeded is far more destructive than merely
1503 rejecting undesired prefixes. The prefix-list method is also much more
1504 granular and offers much smarter matching criterion than number of received
1505 prefixes, making it more suited to implementing policy.
1506
1507 If ``force`` is set, then ALL prefixes are counted for maximum instead of
1508 accepted only. This is useful for cases where an inbound filter is applied,
1509 but you want maximum-prefix to act on ALL (including filtered) prefixes. This
1510 option requires `soft-reconfiguration inbound` to be enabled for the peer.
1511
1512 .. clicmd:: neighbor PEER maximum-prefix-out NUMBER
1513
1514 Sets a maximum number of prefixes we can send to a given peer.
1515
1516 Since sent prefix count is managed by update-groups, this option
1517 creates a separate update-group for outgoing updates.
1518
1519 .. clicmd:: neighbor PEER local-as AS-NUMBER [no-prepend] [replace-as]
1520
1521 Specify an alternate AS for this BGP process when interacting with the
1522 specified peer. With no modifiers, the specified local-as is prepended to
1523 the received AS_PATH when receiving routing updates from the peer, and
1524 prepended to the outgoing AS_PATH (after the process local AS) when
1525 transmitting local routes to the peer.
1526
1527 If the no-prepend attribute is specified, then the supplied local-as is not
1528 prepended to the received AS_PATH.
1529
1530 If the replace-as attribute is specified, then only the supplied local-as is
1531 prepended to the AS_PATH when transmitting local-route updates to this peer.
1532
1533 Note that replace-as can only be specified if no-prepend is.
1534
1535 This command is only allowed for eBGP peers.
1536
1537 .. clicmd:: neighbor <A.B.C.D|X:X::X:X|WORD> as-override
1538
1539 Override AS number of the originating router with the local AS number.
1540
1541 Usually this configuration is used in PEs (Provider Edge) to replace
1542 the incoming customer AS number so the connected CE (Customer Edge)
1543 can use the same AS number as the other customer sites. This allows
1544 customers of the provider network to use the same AS number across
1545 their sites.
1546
1547 This command is only allowed for eBGP peers.
1548
1549 .. clicmd:: neighbor <A.B.C.D|X:X::X:X|WORD> allowas-in [<(1-10)|origin>]
1550
1551 Accept incoming routes with AS path containing AS number with the same value
1552 as the current system AS.
1553
1554 This is used when you want to use the same AS number in your sites, but you
1555 can't connect them directly. This is an alternative to
1556 `neighbor WORD as-override`.
1557
1558 The parameter `(1-10)` configures the amount of accepted occurences of the
1559 system AS number in AS path.
1560
1561 The parameter `origin` configures BGP to only accept routes originated with
1562 the same AS number as the system.
1563
1564 This command is only allowed for eBGP peers.
1565
1566 .. clicmd:: neighbor <A.B.C.D|X:X::X:X|WORD> addpath-tx-all-paths
1567
1568 Configure BGP to send all known paths to neighbor in order to preserve multi
1569 path capabilities inside a network.
1570
1571 .. clicmd:: neighbor <A.B.C.D|X:X::X:X|WORD> addpath-tx-bestpath-per-AS
1572
1573 Configure BGP to send best known paths to neighbor in order to preserve multi
1574 path capabilities inside a network.
1575
1576 .. clicmd:: neighbor PEER ttl-security hops NUMBER
1577
1578 This command enforces Generalized TTL Security Mechanism (GTSM), as
1579 specified in RFC 5082. With this command, only neighbors that are the
1580 specified number of hops away will be allowed to become neighbors. This
1581 command is mutually exclusive with *ebgp-multihop*.
1582
1583 .. clicmd:: neighbor PEER capability extended-nexthop
1584
1585 Allow bgp to negotiate the extended-nexthop capability with it's peer.
1586 If you are peering over a v6 LL address then this capability is turned
1587 on automatically. If you are peering over a v6 Global Address then
1588 turning on this command will allow BGP to install v4 routes with
1589 v6 nexthops if you do not have v4 configured on interfaces.
1590
1591 .. clicmd:: bgp fast-external-failover
1592
1593 This command causes bgp to not take down ebgp peers immediately
1594 when a link flaps. `bgp fast-external-failover` is the default
1595 and will not be displayed as part of a `show run`. The no form
1596 of the command turns off this ability.
1597
1598 .. clicmd:: bgp default ipv4-unicast
1599
1600 This command allows the user to specify that v4 peering is turned
1601 on by default or not. This command defaults to on and is not displayed.
1602 The `no bgp default ipv4-unicast` form of the command is displayed.
1603
1604 .. clicmd:: bgp default ipv6-unicast
1605
1606 This command allows the user to specify that v6 peering is turned
1607 on by default or not. This command defaults to off and is not displayed.
1608 The `bgp default ipv6-unicast` form of the command is displayed.
1609
1610 .. clicmd:: bgp default show-hostname
1611
1612 This command shows the hostname of the peer in certain BGP commands
1613 outputs. It's easier to troubleshoot if you have a number of BGP peers.
1614
1615 .. clicmd:: bgp default show-nexthop-hostname
1616
1617 This command shows the hostname of the next-hop in certain BGP commands
1618 outputs. It's easier to troubleshoot if you have a number of BGP peers
1619 and a number of routes to check.
1620
1621 .. clicmd:: neighbor PEER advertisement-interval (0-600)
1622
1623 Setup the minimum route advertisement interval(mrai) for the
1624 peer in question. This number is between 0 and 600 seconds,
1625 with the default advertisement interval being 0.
1626
1627 .. clicmd:: neighbor PEER timers (0-65535) (0-65535)
1628
1629 Set keepalive and hold timers for a neighbor. The first value is keepalive
1630 and the second is hold time.
1631
1632 .. clicmd:: neighbor PEER connect (1-65535)
1633
1634 Set connect timer for a neighbor. The connect timer controls how long BGP
1635 waits between connection attempts to a neighbor.
1636
1637 .. clicmd:: neighbor PEER timers delayopen (1-240)
1638
1639 This command allows the user enable the
1640 `RFC 4271 <https://tools.ietf.org/html/rfc4271/>` DelayOpenTimer with the
1641 specified interval or disable it with the negating command for the peer. By
1642 default, the DelayOpenTimer is disabled. The timer interval may be set to a
1643 duration of 1 to 240 seconds.
1644
1645 Displaying Information about Peers
1646 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1647
1648 .. clicmd:: show bgp <afi> <safi> neighbors WORD bestpath-routes [json] [wide]
1649
1650 For the given neighbor, WORD, that is specified list the routes selected
1651 by BGP as having the best path.
1652
1653 .. _bgp-peer-filtering:
1654
1655 Peer Filtering
1656 ^^^^^^^^^^^^^^
1657
1658 .. clicmd:: neighbor PEER distribute-list NAME [in|out]
1659
1660 This command specifies a distribute-list for the peer. `direct` is
1661 ``in`` or ``out``.
1662
1663 .. clicmd:: neighbor PEER prefix-list NAME [in|out]
1664
1665 .. clicmd:: neighbor PEER filter-list NAME [in|out]
1666
1667 .. clicmd:: neighbor PEER route-map NAME [in|out]
1668
1669 Apply a route-map on the neighbor. `direct` must be `in` or `out`.
1670
1671 .. clicmd:: bgp route-reflector allow-outbound-policy
1672
1673 By default, attribute modification via route-map policy out is not reflected
1674 on reflected routes. This option allows the modifications to be reflected as
1675 well. Once enabled, it affects all reflected routes.
1676
1677 .. clicmd:: neighbor PEER sender-as-path-loop-detection
1678
1679 Enable the detection of sender side AS path loops and filter the
1680 bad routes before they are sent.
1681
1682 This setting is disabled by default.
1683
1684 .. _bgp-peer-group:
1685
1686 Peer Groups
1687 ^^^^^^^^^^^
1688
1689 Peer groups are used to help improve scaling by generating the same
1690 update information to all members of a peer group. Note that this means
1691 that the routes generated by a member of a peer group will be sent back
1692 to that originating peer with the originator identifier attribute set to
1693 indicated the originating peer. All peers not associated with a
1694 specific peer group are treated as belonging to a default peer group,
1695 and will share updates.
1696
1697 .. clicmd:: neighbor WORD peer-group
1698
1699 This command defines a new peer group.
1700
1701 .. clicmd:: neighbor PEER peer-group PGNAME
1702
1703 This command bind specific peer to peer group WORD.
1704
1705 .. clicmd:: neighbor PEER solo
1706
1707 This command is used to indicate that routes advertised by the peer
1708 should not be reflected back to the peer. This command only is only
1709 meaningful when there is a single peer defined in the peer-group.
1710
1711 .. clicmd:: show [ip] bgp peer-group [json]
1712
1713 This command displays configured BGP peer-groups.
1714
1715 .. code-block:: frr
1716
1717 exit1-debian-9# show bgp peer-group
1718
1719 BGP peer-group test1, remote AS 65001
1720 Peer-group type is external
1721 Configured address-families: IPv4 Unicast; IPv6 Unicast;
1722 1 IPv4 listen range(s)
1723 192.168.100.0/24
1724 2 IPv6 listen range(s)
1725 2001:db8:1::/64
1726 2001:db8:2::/64
1727 Peer-group members:
1728 192.168.200.1 Active
1729 2001:db8::1 Active
1730
1731 BGP peer-group test2
1732 Peer-group type is external
1733 Configured address-families: IPv4 Unicast;
1734
1735 Optional ``json`` parameter is used to display JSON output.
1736
1737 .. code-block:: frr
1738
1739 {
1740 "test1":{
1741 "remoteAs":65001,
1742 "type":"external",
1743 "addressFamiliesConfigured":[
1744 "IPv4 Unicast",
1745 "IPv6 Unicast"
1746 ],
1747 "dynamicRanges":{
1748 "IPv4":{
1749 "count":1,
1750 "ranges":[
1751 "192.168.100.0\/24"
1752 ]
1753 },
1754 "IPv6":{
1755 "count":2,
1756 "ranges":[
1757 "2001:db8:1::\/64",
1758 "2001:db8:2::\/64"
1759 ]
1760 }
1761 },
1762 "members":{
1763 "192.168.200.1":{
1764 "status":"Active"
1765 },
1766 "2001:db8::1":{
1767 "status":"Active"
1768 }
1769 }
1770 },
1771 "test2":{
1772 "type":"external",
1773 "addressFamiliesConfigured":[
1774 "IPv4 Unicast"
1775 ]
1776 }
1777 }
1778
1779 Capability Negotiation
1780 ^^^^^^^^^^^^^^^^^^^^^^
1781
1782 .. clicmd:: neighbor PEER strict-capability-match
1783
1784
1785 Strictly compares remote capabilities and local capabilities. If
1786 capabilities are different, send Unsupported Capability error then reset
1787 connection.
1788
1789 You may want to disable sending Capability Negotiation OPEN message optional
1790 parameter to the peer when remote peer does not implement Capability
1791 Negotiation. Please use *dont-capability-negotiate* command to disable the
1792 feature.
1793
1794 .. clicmd:: neighbor PEER dont-capability-negotiate
1795
1796 Suppress sending Capability Negotiation as OPEN message optional parameter
1797 to the peer. This command only affects the peer is configured other than
1798 IPv4 unicast configuration.
1799
1800 When remote peer does not have capability negotiation feature, remote peer
1801 will not send any capabilities at all. In that case, bgp configures the peer
1802 with configured capabilities.
1803
1804 You may prefer locally configured capabilities more than the negotiated
1805 capabilities even though remote peer sends capabilities. If the peer is
1806 configured by *override-capability*, *bgpd* ignores received capabilities
1807 then override negotiated capabilities with configured values.
1808
1809 Additionally the operator should be reminded that this feature fundamentally
1810 disables the ability to use widely deployed BGP features. BGP unnumbered,
1811 hostname support, AS4, Addpath, Route Refresh, ORF, Dynamic Capabilities,
1812 and graceful restart.
1813
1814 .. clicmd:: neighbor PEER override-capability
1815
1816
1817 Override the result of Capability Negotiation with local configuration.
1818 Ignore remote peer's capability value.
1819
1820 .. _bgp-as-path-access-lists:
1821
1822 AS Path Access Lists
1823 --------------------
1824
1825 AS path access list is user defined AS path.
1826
1827 .. clicmd:: bgp as-path access-list WORD [seq (0-4294967295)] permit|deny LINE
1828
1829 This command defines a new AS path access list.
1830
1831
1832
1833 .. _bgp-bogon-filter-example:
1834
1835 Bogon ASN filter policy configuration example
1836 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1837
1838 .. code-block:: frr
1839
1840 bgp as-path access-list 99 permit _0_
1841 bgp as-path access-list 99 permit _23456_
1842 bgp as-path access-list 99 permit _1310[0-6][0-9]_|_13107[0-1]_
1843 bgp as-path access-list 99 seq 20 permit ^65
1844
1845 .. _bgp-using-as-path-in-route-map:
1846
1847 Using AS Path in Route Map
1848 --------------------------
1849
1850 .. clicmd:: match as-path WORD
1851
1852 For a given as-path, WORD, match it on the BGP as-path given for the prefix
1853 and if it matches do normal route-map actions. The no form of the command
1854 removes this match from the route-map.
1855
1856 .. clicmd:: set as-path prepend AS-PATH
1857
1858 Prepend the given string of AS numbers to the AS_PATH of the BGP path's NLRI.
1859 The no form of this command removes this set operation from the route-map.
1860
1861 .. clicmd:: set as-path prepend last-as NUM
1862
1863 Prepend the existing last AS number (the leftmost ASN) to the AS_PATH.
1864 The no form of this command removes this set operation from the route-map.
1865
1866 .. _bgp-communities-attribute:
1867
1868 Communities Attribute
1869 ---------------------
1870
1871 The BGP communities attribute is widely used for implementing policy routing.
1872 Network operators can manipulate BGP communities attribute based on their
1873 network policy. BGP communities attribute is defined in :rfc:`1997` and
1874 :rfc:`1998`. It is an optional transitive attribute, therefore local policy can
1875 travel through different autonomous system.
1876
1877 The communities attribute is a set of communities values. Each community value
1878 is 4 octet long. The following format is used to define the community value.
1879
1880 ``AS:VAL``
1881 This format represents 4 octet communities value. ``AS`` is high order 2
1882 octet in digit format. ``VAL`` is low order 2 octet in digit format. This
1883 format is useful to define AS oriented policy value. For example,
1884 ``7675:80`` can be used when AS 7675 wants to pass local policy value 80 to
1885 neighboring peer.
1886
1887 ``internet``
1888 ``internet`` represents well-known communities value 0.
1889
1890 ``graceful-shutdown``
1891 ``graceful-shutdown`` represents well-known communities value
1892 ``GRACEFUL_SHUTDOWN`` ``0xFFFF0000`` ``65535:0``. :rfc:`8326` implements
1893 the purpose Graceful BGP Session Shutdown to reduce the amount of
1894 lost traffic when taking BGP sessions down for maintenance. The use
1895 of the community needs to be supported from your peers side to
1896 actually have any effect.
1897
1898 ``accept-own``
1899 ``accept-own`` represents well-known communities value ``ACCEPT_OWN``
1900 ``0xFFFF0001`` ``65535:1``. :rfc:`7611` implements a way to signal
1901 to a router to accept routes with a local nexthop address. This
1902 can be the case when doing policing and having traffic having a
1903 nexthop located in another VRF but still local interface to the
1904 router. It is recommended to read the RFC for full details.
1905
1906 ``route-filter-translated-v4``
1907 ``route-filter-translated-v4`` represents well-known communities value
1908 ``ROUTE_FILTER_TRANSLATED_v4`` ``0xFFFF0002`` ``65535:2``.
1909
1910 ``route-filter-v4``
1911 ``route-filter-v4`` represents well-known communities value
1912 ``ROUTE_FILTER_v4`` ``0xFFFF0003`` ``65535:3``.
1913
1914 ``route-filter-translated-v6``
1915 ``route-filter-translated-v6`` represents well-known communities value
1916 ``ROUTE_FILTER_TRANSLATED_v6`` ``0xFFFF0004`` ``65535:4``.
1917
1918 ``route-filter-v6``
1919 ``route-filter-v6`` represents well-known communities value
1920 ``ROUTE_FILTER_v6`` ``0xFFFF0005`` ``65535:5``.
1921
1922 ``llgr-stale``
1923 ``llgr-stale`` represents well-known communities value ``LLGR_STALE``
1924 ``0xFFFF0006`` ``65535:6``.
1925 Assigned and intended only for use with routers supporting the
1926 Long-lived Graceful Restart Capability as described in
1927 [Draft-IETF-uttaro-idr-bgp-persistence]_.
1928 Routers receiving routes with this community may (depending on
1929 implementation) choose allow to reject or modify routes on the
1930 presence or absence of this community.
1931
1932 ``no-llgr``
1933 ``no-llgr`` represents well-known communities value ``NO_LLGR``
1934 ``0xFFFF0007`` ``65535:7``.
1935 Assigned and intended only for use with routers supporting the
1936 Long-lived Graceful Restart Capability as described in
1937 [Draft-IETF-uttaro-idr-bgp-persistence]_.
1938 Routers receiving routes with this community may (depending on
1939 implementation) choose allow to reject or modify routes on the
1940 presence or absence of this community.
1941
1942 ``accept-own-nexthop``
1943 ``accept-own-nexthop`` represents well-known communities value
1944 ``accept-own-nexthop`` ``0xFFFF0008`` ``65535:8``.
1945 [Draft-IETF-agrewal-idr-accept-own-nexthop]_ describes
1946 how to tag and label VPN routes to be able to send traffic between VRFs
1947 via an internal layer 2 domain on the same PE device. Refer to
1948 [Draft-IETF-agrewal-idr-accept-own-nexthop]_ for full details.
1949
1950 ``blackhole``
1951 ``blackhole`` represents well-known communities value ``BLACKHOLE``
1952 ``0xFFFF029A`` ``65535:666``. :rfc:`7999` documents sending prefixes to
1953 EBGP peers and upstream for the purpose of blackholing traffic.
1954 Prefixes tagged with the this community should normally not be
1955 re-advertised from neighbors of the originating network. Upon receiving
1956 ``BLACKHOLE`` community from a BGP speaker, ``NO_ADVERTISE`` community
1957 is added automatically.
1958
1959 ``no-export``
1960 ``no-export`` represents well-known communities value ``NO_EXPORT``
1961 ``0xFFFFFF01``. All routes carry this value must not be advertised to
1962 outside a BGP confederation boundary. If neighboring BGP peer is part of BGP
1963 confederation, the peer is considered as inside a BGP confederation
1964 boundary, so the route will be announced to the peer.
1965
1966 ``no-advertise``
1967 ``no-advertise`` represents well-known communities value ``NO_ADVERTISE``
1968 ``0xFFFFFF02``. All routes carry this value must not be advertise to other
1969 BGP peers.
1970
1971 ``local-AS``
1972 ``local-AS`` represents well-known communities value ``NO_EXPORT_SUBCONFED``
1973 ``0xFFFFFF03``. All routes carry this value must not be advertised to
1974 external BGP peers. Even if the neighboring router is part of confederation,
1975 it is considered as external BGP peer, so the route will not be announced to
1976 the peer.
1977
1978 ``no-peer``
1979 ``no-peer`` represents well-known communities value ``NOPEER``
1980 ``0xFFFFFF04`` ``65535:65284``. :rfc:`3765` is used to communicate to
1981 another network how the originating network want the prefix propagated.
1982
1983 When the communities attribute is received duplicate community values in the
1984 attribute are ignored and value is sorted in numerical order.
1985
1986 .. [Draft-IETF-uttaro-idr-bgp-persistence] <https://tools.ietf.org/id/draft-uttaro-idr-bgp-persistence-04.txt>
1987 .. [Draft-IETF-agrewal-idr-accept-own-nexthop] <https://tools.ietf.org/id/draft-agrewal-idr-accept-own-nexthop-00.txt>
1988
1989 .. _bgp-community-lists:
1990
1991 Community Lists
1992 ^^^^^^^^^^^^^^^
1993 Community lists are user defined lists of community attribute values. These
1994 lists can be used for matching or manipulating the communities attribute in
1995 UPDATE messages.
1996
1997 There are two types of community list:
1998
1999 standard
2000 This type accepts an explicit value for the attribute.
2001
2002 expanded
2003 This type accepts a regular expression. Because the regex must be
2004 interpreted on each use expanded community lists are slower than standard
2005 lists.
2006
2007 .. clicmd:: bgp community-list standard NAME permit|deny COMMUNITY
2008
2009 This command defines a new standard community list. ``COMMUNITY`` is
2010 communities value. The ``COMMUNITY`` is compiled into community structure.
2011 We can define multiple community list under same name. In that case match
2012 will happen user defined order. Once the community list matches to
2013 communities attribute in BGP updates it return permit or deny by the
2014 community list definition. When there is no matched entry, deny will be
2015 returned. When ``COMMUNITY`` is empty it matches to any routes.
2016
2017 .. clicmd:: bgp community-list expanded NAME permit|deny COMMUNITY
2018
2019 This command defines a new expanded community list. ``COMMUNITY`` is a
2020 string expression of communities attribute. ``COMMUNITY`` can be a regular
2021 expression (:ref:`bgp-regular-expressions`) to match the communities
2022 attribute in BGP updates. The expanded community is only used to filter,
2023 not `set` actions.
2024
2025 .. deprecated:: 5.0
2026 It is recommended to use the more explicit versions of this command.
2027
2028 .. clicmd:: bgp community-list NAME permit|deny COMMUNITY
2029
2030 When the community list type is not specified, the community list type is
2031 automatically detected. If ``COMMUNITY`` can be compiled into communities
2032 attribute, the community list is defined as a standard community list.
2033 Otherwise it is defined as an expanded community list. This feature is left
2034 for backward compatibility. Use of this feature is not recommended.
2035
2036 Note that all community lists share the same namespace, so it's not
2037 necessary to specify ``standard`` or ``expanded``; these modifiers are
2038 purely aesthetic.
2039
2040 .. clicmd:: show bgp community-list [NAME detail]
2041
2042 Displays community list information. When ``NAME`` is specified the
2043 specified community list's information is shown.
2044
2045 ::
2046
2047 # show bgp community-list
2048 Named Community standard list CLIST
2049 permit 7675:80 7675:100 no-export
2050 deny internet
2051 Named Community expanded list EXPAND
2052 permit :
2053
2054 # show bgp community-list CLIST detail
2055 Named Community standard list CLIST
2056 permit 7675:80 7675:100 no-export
2057 deny internet
2058
2059
2060 .. _bgp-numbered-community-lists:
2061
2062 Numbered Community Lists
2063 ^^^^^^^^^^^^^^^^^^^^^^^^
2064
2065 When number is used for BGP community list name, the number has
2066 special meanings. Community list number in the range from 1 and 99 is
2067 standard community list. Community list number in the range from 100
2068 to 199 is expanded community list. These community lists are called
2069 as numbered community lists. On the other hand normal community lists
2070 is called as named community lists.
2071
2072 .. clicmd:: bgp community-list (1-99) permit|deny COMMUNITY
2073
2074 This command defines a new community list. The argument to (1-99) defines
2075 the list identifier.
2076
2077 .. clicmd:: bgp community-list (100-199) permit|deny COMMUNITY
2078
2079 This command defines a new expanded community list. The argument to
2080 (100-199) defines the list identifier.
2081
2082 .. _bgp-community-alias:
2083
2084 Community alias
2085 ^^^^^^^^^^^^^^^
2086
2087 BGP community aliases are useful to quickly identify what communities are set
2088 for a specific prefix in a human-readable format. Especially handy for a huge
2089 amount of communities. Accurately defined aliases can help you faster spot
2090 things on the wire.
2091
2092 .. clicmd:: bgp community alias NAME ALIAS
2093
2094 This command creates an alias name for a community that will be used
2095 later in various CLI outputs in a human-readable format.
2096
2097 .. code-block:: frr
2098
2099 ~# vtysh -c 'show run' | grep 'bgp community alias'
2100 bgp community alias 65001:14 community-1
2101 bgp community alias 65001:123:1 lcommunity-1
2102
2103 ~# vtysh -c 'show ip bgp 172.16.16.1/32'
2104 BGP routing table entry for 172.16.16.1/32, version 21
2105 Paths: (2 available, best #2, table default)
2106 Advertised to non peer-group peers:
2107 65030
2108 192.168.0.2 from 192.168.0.2 (172.16.16.1)
2109 Origin incomplete, metric 0, valid, external, best (Neighbor IP)
2110 Community: 65001:12 65001:13 community-1 65001:65534
2111 Large Community: lcommunity-1 65001:123:2
2112 Last update: Fri Apr 16 12:51:27 2021
2113
2114 .. clicmd:: show bgp [afi] [safi] [all] alias WORD [wide|json]
2115
2116 Display prefixes with matching BGP community alias.
2117
2118 .. _bgp-using-communities-in-route-map:
2119
2120 Using Communities in Route Maps
2121 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2122
2123 In :ref:`route-map` we can match on or set the BGP communities attribute. Using
2124 this feature network operator can implement their network policy based on BGP
2125 communities attribute.
2126
2127 The following commands can be used in route maps:
2128
2129 .. clicmd:: match community WORD exact-match [exact-match]
2130
2131 This command perform match to BGP updates using community list WORD. When
2132 the one of BGP communities value match to the one of communities value in
2133 community list, it is match. When `exact-match` keyword is specified, match
2134 happen only when BGP updates have completely same communities value
2135 specified in the community list.
2136
2137 .. clicmd:: set community <none|COMMUNITY> additive
2138
2139 This command sets the community value in BGP updates. If the attribute is
2140 already configured, the newly provided value replaces the old one unless the
2141 ``additive`` keyword is specified, in which case the new value is appended
2142 to the existing value.
2143
2144 If ``none`` is specified as the community value, the communities attribute
2145 is not sent.
2146
2147 It is not possible to set an expanded community list.
2148
2149 .. clicmd:: set comm-list WORD delete
2150
2151 This command remove communities value from BGP communities attribute. The
2152 ``word`` is community list name. When BGP route's communities value matches
2153 to the community list ``word``, the communities value is removed. When all
2154 of communities value is removed eventually, the BGP update's communities
2155 attribute is completely removed.
2156
2157 .. _bgp-communities-example:
2158
2159 Example Configuration
2160 ^^^^^^^^^^^^^^^^^^^^^
2161
2162 The following configuration is exemplary of the most typical usage of BGP
2163 communities attribute. In the example, AS 7675 provides an upstream Internet
2164 connection to AS 100. When the following configuration exists in AS 7675, the
2165 network operator of AS 100 can set local preference in AS 7675 network by
2166 setting BGP communities attribute to the updates.
2167
2168 .. code-block:: frr
2169
2170 router bgp 7675
2171 neighbor 192.168.0.1 remote-as 100
2172 address-family ipv4 unicast
2173 neighbor 192.168.0.1 route-map RMAP in
2174 exit-address-family
2175 !
2176 bgp community-list 70 permit 7675:70
2177 bgp community-list 70 deny
2178 bgp community-list 80 permit 7675:80
2179 bgp community-list 80 deny
2180 bgp community-list 90 permit 7675:90
2181 bgp community-list 90 deny
2182 !
2183 route-map RMAP permit 10
2184 match community 70
2185 set local-preference 70
2186 !
2187 route-map RMAP permit 20
2188 match community 80
2189 set local-preference 80
2190 !
2191 route-map RMAP permit 30
2192 match community 90
2193 set local-preference 90
2194
2195
2196 The following configuration announces ``10.0.0.0/8`` from AS 100 to AS 7675.
2197 The route has communities value ``7675:80`` so when above configuration exists
2198 in AS 7675, the announced routes' local preference value will be set to 80.
2199
2200 .. code-block:: frr
2201
2202 router bgp 100
2203 network 10.0.0.0/8
2204 neighbor 192.168.0.2 remote-as 7675
2205 address-family ipv4 unicast
2206 neighbor 192.168.0.2 route-map RMAP out
2207 exit-address-family
2208 !
2209 ip prefix-list PLIST permit 10.0.0.0/8
2210 !
2211 route-map RMAP permit 10
2212 match ip address prefix-list PLIST
2213 set community 7675:80
2214
2215
2216 The following configuration is an example of BGP route filtering using
2217 communities attribute. This configuration only permit BGP routes which has BGP
2218 communities value ``0:80`` or ``0:90``. The network operator can set special
2219 internal communities value at BGP border router, then limit the BGP route
2220 announcements into the internal network.
2221
2222 .. code-block:: frr
2223
2224 router bgp 7675
2225 neighbor 192.168.0.1 remote-as 100
2226 address-family ipv4 unicast
2227 neighbor 192.168.0.1 route-map RMAP in
2228 exit-address-family
2229 !
2230 bgp community-list 1 permit 0:80 0:90
2231 !
2232 route-map RMAP permit in
2233 match community 1
2234
2235
2236 The following example filters BGP routes which have a community value of
2237 ``1:1``. When there is no match community-list returns ``deny``. To avoid
2238 filtering all routes, a ``permit`` line is set at the end of the
2239 community-list.
2240
2241 .. code-block:: frr
2242
2243 router bgp 7675
2244 neighbor 192.168.0.1 remote-as 100
2245 address-family ipv4 unicast
2246 neighbor 192.168.0.1 route-map RMAP in
2247 exit-address-family
2248 !
2249 bgp community-list standard FILTER deny 1:1
2250 bgp community-list standard FILTER permit
2251 !
2252 route-map RMAP permit 10
2253 match community FILTER
2254
2255
2256 The communities value keyword ``internet`` has special meanings in standard
2257 community lists. In the below example ``internet`` matches all BGP routes even
2258 if the route does not have communities attribute at all. So community list
2259 ``INTERNET`` is the same as ``FILTER`` in the previous example.
2260
2261 .. code-block:: frr
2262
2263 bgp community-list standard INTERNET deny 1:1
2264 bgp community-list standard INTERNET permit internet
2265
2266
2267 The following configuration is an example of communities value deletion. With
2268 this configuration the community values ``100:1`` and ``100:2`` are removed
2269 from BGP updates. For communities value deletion, only ``permit``
2270 community-list is used. ``deny`` community-list is ignored.
2271
2272 .. code-block:: frr
2273
2274 router bgp 7675
2275 neighbor 192.168.0.1 remote-as 100
2276 address-family ipv4 unicast
2277 neighbor 192.168.0.1 route-map RMAP in
2278 exit-address-family
2279 !
2280 bgp community-list standard DEL permit 100:1 100:2
2281 !
2282 route-map RMAP permit 10
2283 set comm-list DEL delete
2284
2285
2286 .. _bgp-extended-communities-attribute:
2287
2288 Extended Communities Attribute
2289 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2290
2291 BGP extended communities attribute is introduced with MPLS VPN/BGP technology.
2292 MPLS VPN/BGP expands capability of network infrastructure to provide VPN
2293 functionality. At the same time it requires a new framework for policy routing.
2294 With BGP Extended Communities Attribute we can use Route Target or Site of
2295 Origin for implementing network policy for MPLS VPN/BGP.
2296
2297 BGP Extended Communities Attribute is similar to BGP Communities Attribute. It
2298 is an optional transitive attribute. BGP Extended Communities Attribute can
2299 carry multiple Extended Community value. Each Extended Community value is
2300 eight octet length.
2301
2302 BGP Extended Communities Attribute provides an extended range compared with BGP
2303 Communities Attribute. Adding to that there is a type field in each value to
2304 provides community space structure.
2305
2306 There are two format to define Extended Community value. One is AS based format
2307 the other is IP address based format.
2308
2309 ``AS:VAL``
2310 This is a format to define AS based Extended Community value. ``AS`` part
2311 is 2 octets Global Administrator subfield in Extended Community value.
2312 ``VAL`` part is 4 octets Local Administrator subfield. ``7675:100``
2313 represents AS 7675 policy value 100.
2314
2315 ``IP-Address:VAL``
2316 This is a format to define IP address based Extended Community value.
2317 ``IP-Address`` part is 4 octets Global Administrator subfield. ``VAL`` part
2318 is 2 octets Local Administrator subfield.
2319
2320 .. _bgp-extended-community-lists:
2321
2322 Extended Community Lists
2323 ^^^^^^^^^^^^^^^^^^^^^^^^
2324
2325 .. clicmd:: bgp extcommunity-list standard NAME permit|deny EXTCOMMUNITY
2326
2327 This command defines a new standard extcommunity-list. `extcommunity` is
2328 extended communities value. The `extcommunity` is compiled into extended
2329 community structure. We can define multiple extcommunity-list under same
2330 name. In that case match will happen user defined order. Once the
2331 extcommunity-list matches to extended communities attribute in BGP updates
2332 it return permit or deny based upon the extcommunity-list definition. When
2333 there is no matched entry, deny will be returned. When `extcommunity` is
2334 empty it matches to any routes.
2335
2336 .. clicmd:: bgp extcommunity-list expanded NAME permit|deny LINE
2337
2338 This command defines a new expanded extcommunity-list. `line` is a string
2339 expression of extended communities attribute. `line` can be a regular
2340 expression (:ref:`bgp-regular-expressions`) to match an extended communities
2341 attribute in BGP updates.
2342
2343 Note that all extended community lists shares a single name space, so it's
2344 not necessary to specify their type when creating or destroying them.
2345
2346 .. clicmd:: show bgp extcommunity-list [NAME detail]
2347
2348 This command displays current extcommunity-list information. When `name` is
2349 specified the community list's information is shown.
2350
2351
2352 .. _bgp-extended-communities-in-route-map:
2353
2354 BGP Extended Communities in Route Map
2355 """""""""""""""""""""""""""""""""""""
2356
2357 .. clicmd:: match extcommunity WORD
2358
2359 .. clicmd:: set extcommunity rt EXTCOMMUNITY
2360
2361 This command set Route Target value.
2362
2363 .. clicmd:: set extcommunity soo EXTCOMMUNITY
2364
2365 This command set Site of Origin value.
2366
2367 .. clicmd:: set extcommunity bandwidth <(1-25600) | cumulative | num-multipaths> [non-transitive]
2368
2369 This command sets the BGP link-bandwidth extended community for the prefix
2370 (best path) for which it is applied. The link-bandwidth can be specified as
2371 an ``explicit value`` (specified in Mbps), or the router can be told to use
2372 the ``cumulative bandwidth`` of all multipaths for the prefix or to compute
2373 it based on the ``number of multipaths``. The link bandwidth extended
2374 community is encoded as ``transitive`` unless the set command explicitly
2375 configures it as ``non-transitive``.
2376
2377 .. seealso:: :ref:`wecmp_linkbw`
2378
2379 Note that the extended expanded community is only used for `match` rule, not for
2380 `set` actions.
2381
2382 .. _bgp-large-communities-attribute:
2383
2384 Large Communities Attribute
2385 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
2386
2387 The BGP Large Communities attribute was introduced in Feb 2017 with
2388 :rfc:`8092`.
2389
2390 The BGP Large Communities Attribute is similar to the BGP Communities Attribute
2391 except that it has 3 components instead of two and each of which are 4 octets
2392 in length. Large Communities bring additional functionality and convenience
2393 over traditional communities, specifically the fact that the ``GLOBAL`` part
2394 below is now 4 octets wide allowing seamless use in networks using 4-byte ASNs.
2395
2396 ``GLOBAL:LOCAL1:LOCAL2``
2397 This is the format to define Large Community values. Referencing :rfc:`8195`
2398 the values are commonly referred to as follows:
2399
2400 - The ``GLOBAL`` part is a 4 octet Global Administrator field, commonly used
2401 as the operators AS number.
2402 - The ``LOCAL1`` part is a 4 octet Local Data Part 1 subfield referred to as
2403 a function.
2404 - The ``LOCAL2`` part is a 4 octet Local Data Part 2 field and referred to
2405 as the parameter subfield.
2406
2407 As an example, ``65551:1:10`` represents AS 65551 function 1 and parameter
2408 10. The referenced RFC above gives some guidelines on recommended usage.
2409
2410 .. _bgp-large-community-lists:
2411
2412 Large Community Lists
2413 """""""""""""""""""""
2414
2415 Two types of large community lists are supported, namely `standard` and
2416 `expanded`.
2417
2418 .. clicmd:: bgp large-community-list standard NAME permit|deny LARGE-COMMUNITY
2419
2420 This command defines a new standard large-community-list. `large-community`
2421 is the Large Community value. We can add multiple large communities under
2422 same name. In that case the match will happen in the user defined order.
2423 Once the large-community-list matches the Large Communities attribute in BGP
2424 updates it will return permit or deny based upon the large-community-list
2425 definition. When there is no matched entry, a deny will be returned. When
2426 `large-community` is empty it matches any routes.
2427
2428 .. clicmd:: bgp large-community-list expanded NAME permit|deny LINE
2429
2430 This command defines a new expanded large-community-list. Where `line` is a
2431 string matching expression, it will be compared to the entire Large
2432 Communities attribute as a string, with each large-community in order from
2433 lowest to highest. `line` can also be a regular expression which matches
2434 this Large Community attribute.
2435
2436 Note that all community lists share the same namespace, so it's not
2437 necessary to specify ``standard`` or ``expanded``; these modifiers are
2438 purely aesthetic.
2439
2440 .. clicmd:: show bgp large-community-list
2441
2442 .. clicmd:: show bgp large-community-list NAME detail
2443
2444 This command display current large-community-list information. When
2445 `name` is specified the community list information is shown.
2446
2447 .. clicmd:: show ip bgp large-community-info
2448
2449 This command displays the current large communities in use.
2450
2451 .. _bgp-large-communities-in-route-map:
2452
2453 Large Communities in Route Map
2454 """"""""""""""""""""""""""""""
2455
2456 .. clicmd:: match large-community LINE [exact-match]
2457
2458 Where `line` can be a simple string to match, or a regular expression. It
2459 is very important to note that this match occurs on the entire
2460 large-community string as a whole, where each large-community is ordered
2461 from lowest to highest. When `exact-match` keyword is specified, match
2462 happen only when BGP updates have completely same large communities value
2463 specified in the large community list.
2464
2465 .. clicmd:: set large-community LARGE-COMMUNITY
2466
2467 .. clicmd:: set large-community LARGE-COMMUNITY LARGE-COMMUNITY
2468
2469 .. clicmd:: set large-community LARGE-COMMUNITY additive
2470
2471 These commands are used for setting large-community values. The first
2472 command will overwrite any large-communities currently present.
2473 The second specifies two large-communities, which overwrites the current
2474 large-community list. The third will add a large-community value without
2475 overwriting other values. Multiple large-community values can be specified.
2476
2477 Note that the large expanded community is only used for `match` rule, not for
2478 `set` actions.
2479
2480 .. _bgp-l3vpn-vrfs:
2481
2482 L3VPN VRFs
2483 ----------
2484
2485 *bgpd* supports :abbr:`L3VPN (Layer 3 Virtual Private Networks)` :abbr:`VRFs
2486 (Virtual Routing and Forwarding)` for IPv4 :rfc:`4364` and IPv6 :rfc:`4659`.
2487 L3VPN routes, and their associated VRF MPLS labels, can be distributed to VPN
2488 SAFI neighbors in the *default*, i.e., non VRF, BGP instance. VRF MPLS labels
2489 are reached using *core* MPLS labels which are distributed using LDP or BGP
2490 labeled unicast. *bgpd* also supports inter-VRF route leaking.
2491
2492
2493 .. _bgp-vrf-route-leaking:
2494
2495 VRF Route Leaking
2496 -----------------
2497
2498 BGP routes may be leaked (i.e. copied) between a unicast VRF RIB and the VPN
2499 SAFI RIB of the default VRF for use in MPLS-based L3VPNs. Unicast routes may
2500 also be leaked between any VRFs (including the unicast RIB of the default BGP
2501 instanced). A shortcut syntax is also available for specifying leaking from one
2502 VRF to another VRF using the default instance's VPN RIB as the intemediary. A
2503 common application of the VRF-VRF feature is to connect a customer's private
2504 routing domain to a provider's VPN service. Leaking is configured from the
2505 point of view of an individual VRF: ``import`` refers to routes leaked from VPN
2506 to a unicast VRF, whereas ``export`` refers to routes leaked from a unicast VRF
2507 to VPN.
2508
2509 Required parameters
2510 ^^^^^^^^^^^^^^^^^^^
2511
2512 Routes exported from a unicast VRF to the VPN RIB must be augmented by two
2513 parameters:
2514
2515 - an :abbr:`RD (Route Distinguisher)`
2516 - an :abbr:`RTLIST (Route-target List)`
2517
2518 Configuration for these exported routes must, at a minimum, specify these two
2519 parameters.
2520
2521 Routes imported from the VPN RIB to a unicast VRF are selected according to
2522 their RTLISTs. Routes whose RTLIST contains at least one route-target in
2523 common with the configured import RTLIST are leaked. Configuration for these
2524 imported routes must specify an RTLIST to be matched.
2525
2526 The RD, which carries no semantic value, is intended to make the route unique
2527 in the VPN RIB among all routes of its prefix that originate from all the
2528 customers and sites that are attached to the provider's VPN service.
2529 Accordingly, each site of each customer is typically assigned an RD that is
2530 unique across the entire provider network.
2531
2532 The RTLIST is a set of route-target extended community values whose purpose is
2533 to specify route-leaking policy. Typically, a customer is assigned a single
2534 route-target value for import and export to be used at all customer sites. This
2535 configuration specifies a simple topology wherein a customer has a single
2536 routing domain which is shared across all its sites. More complex routing
2537 topologies are possible through use of additional route-targets to augment the
2538 leaking of sets of routes in various ways.
2539
2540 When using the shortcut syntax for vrf-to-vrf leaking, the RD and RT are
2541 auto-derived.
2542
2543 General configuration
2544 ^^^^^^^^^^^^^^^^^^^^^
2545
2546 Configuration of route leaking between a unicast VRF RIB and the VPN SAFI RIB
2547 of the default VRF is accomplished via commands in the context of a VRF
2548 address-family:
2549
2550 .. clicmd:: rd vpn export AS:NN|IP:nn
2551
2552 Specifies the route distinguisher to be added to a route exported from the
2553 current unicast VRF to VPN.
2554
2555 .. clicmd:: rt vpn import|export|both RTLIST...
2556
2557 Specifies the route-target list to be attached to a route (export) or the
2558 route-target list to match against (import) when exporting/importing between
2559 the current unicast VRF and VPN.
2560
2561 The RTLIST is a space-separated list of route-targets, which are BGP
2562 extended community values as described in
2563 :ref:`bgp-extended-communities-attribute`.
2564
2565 .. clicmd:: label vpn export (0..1048575)|auto
2566
2567 Enables an MPLS label to be attached to a route exported from the current
2568 unicast VRF to VPN. If the value specified is ``auto``, the label value is
2569 automatically assigned from a pool maintained by the Zebra daemon. If Zebra
2570 is not running, or if this command is not configured, automatic label
2571 assignment will not complete, which will block corresponding route export.
2572
2573 .. clicmd:: nexthop vpn export A.B.C.D|X:X::X:X
2574
2575 Specifies an optional nexthop value to be assigned to a route exported from
2576 the current unicast VRF to VPN. If left unspecified, the nexthop will be set
2577 to 0.0.0.0 or 0:0::0:0 (self).
2578
2579 .. clicmd:: route-map vpn import|export MAP
2580
2581 Specifies an optional route-map to be applied to routes imported or exported
2582 between the current unicast VRF and VPN.
2583
2584 .. clicmd:: import|export vpn
2585
2586 Enables import or export of routes between the current unicast VRF and VPN.
2587
2588 .. clicmd:: import vrf VRFNAME
2589
2590 Shortcut syntax for specifying automatic leaking from vrf VRFNAME to
2591 the current VRF using the VPN RIB as intermediary. The RD and RT
2592 are auto derived and should not be specified explicitly for either the
2593 source or destination VRF's.
2594
2595 This shortcut syntax mode is not compatible with the explicit
2596 `import vpn` and `export vpn` statements for the two VRF's involved.
2597 The CLI will disallow attempts to configure incompatible leaking
2598 modes.
2599
2600 .. _bgp-l3vpn-srv6:
2601
2602 L3VPN SRv6
2603 ----------
2604
2605 .. clicmd:: segment-routing srv6
2606
2607 Use SRv6 backend with BGP L3VPN, and go to its configuration node.
2608
2609 .. clicmd:: locator NAME
2610
2611 Specify the SRv6 locator to be used for SRv6 L3VPN. The Locator name must
2612 be set in zebra, but user can set it in any order.
2613
2614 .. _bgp-evpn:
2615
2616 Ethernet Virtual Network - EVPN
2617 -------------------------------
2618
2619 Note: When using EVPN features and if you have a large number of hosts, make
2620 sure to adjust the size of the arp neighbor cache to avoid neighbor table
2621 overflow and/or excessive garbage collection. On Linux, the size of the table
2622 and garbage collection frequency can be controlled via the following
2623 sysctl configurations:
2624
2625 .. code-block:: shell
2626
2627 net.ipv4.neigh.default.gc_thresh1
2628 net.ipv4.neigh.default.gc_thresh2
2629 net.ipv4.neigh.default.gc_thresh3
2630
2631 net.ipv6.neigh.default.gc_thresh1
2632 net.ipv6.neigh.default.gc_thresh2
2633 net.ipv6.neigh.default.gc_thresh3
2634
2635 For more information, see ``man 7 arp``.
2636
2637 .. _bgp-evpn-advertise-pip:
2638
2639 EVPN advertise-PIP
2640 ^^^^^^^^^^^^^^^^^^
2641
2642 In a EVPN symmetric routing MLAG deployment, all EVPN routes advertised
2643 with anycast-IP as next-hop IP and anycast MAC as the Router MAC (RMAC - in
2644 BGP EVPN Extended-Community).
2645 EVPN picks up the next-hop IP from the VxLAN interface's local tunnel IP and
2646 the RMAC is obtained from the MAC of the L3VNI's SVI interface.
2647 Note: Next-hop IP is used for EVPN routes whether symmetric routing is
2648 deployed or not but the RMAC is only relevant for symmetric routing scenario.
2649
2650 Current behavior is not ideal for Prefix (type-5) and self (type-2)
2651 routes. This is because the traffic from remote VTEPs routed sub optimally
2652 if they land on the system where the route does not belong.
2653
2654 The advertise-pip feature advertises Prefix (type-5) and self (type-2)
2655 routes with system's individual (primary) IP as the next-hop and individual
2656 (system) MAC as Router-MAC (RMAC), while leaving the behavior unchanged for
2657 other EVPN routes.
2658
2659 To support this feature there needs to have ability to co-exist a
2660 (system-MAC, system-IP) pair with a (anycast-MAC, anycast-IP) pair with the
2661 ability to terminate VxLAN-encapsulated packets received for either pair on
2662 the same L3VNI (i.e associated VLAN). This capability is needed per tenant
2663 VRF instance.
2664
2665 To derive the system-MAC and the anycast MAC, there must be a
2666 separate/additional MAC-VLAN interface corresponding to L3VNI’s SVI.
2667 The SVI interface’s MAC address can be interpreted as system-MAC
2668 and MAC-VLAN interface's MAC as anycast MAC.
2669
2670 To derive system-IP and anycast-IP, the default BGP instance's router-id is used
2671 as system-IP and the VxLAN interface’s local tunnel IP as the anycast-IP.
2672
2673 User has an option to configure the system-IP and/or system-MAC value if the
2674 auto derived value is not preferred.
2675
2676 Note: By default, advertise-pip feature is enabled and user has an option to
2677 disable the feature via configuration CLI. Once the feature is disabled under
2678 bgp vrf instance or MAC-VLAN interface is not configured, all the routes follow
2679 the same behavior of using same next-hop and RMAC values.
2680
2681 .. clicmd:: advertise-pip [ip <addr> [mac <addr>]]
2682
2683 Enables or disables advertise-pip feature, specifiy system-IP and/or system-MAC
2684 parameters.
2685
2686 EVPN advertise-svi-ip
2687 ^^^^^^^^^^^^^^^^^^^^^
2688 Typically, the SVI IP address is reused on VTEPs across multiple racks. However,
2689 if you have unique SVI IP addresses that you want to be reachable you can use the
2690 advertise-svi-ip option. This option advertises the SVI IP/MAC address as a type-2
2691 route and eliminates the need for any flooding over VXLAN to reach the IP from a
2692 remote VTEP.
2693
2694 .. clicmd:: advertise-svi-ip
2695
2696 Note that you should not enable both the advertise-svi-ip and the advertise-default-gw
2697 at the same time.
2698
2699 EVPN Multihoming
2700 ^^^^^^^^^^^^^^^^
2701
2702 All-Active Multihoming is used for redundancy and load sharing. Servers
2703 are attached to two or more PEs and the links are bonded (link-aggregation).
2704 This group of server links is referred to as an Ethernet Segment.
2705
2706 Ethernet Segments
2707 """""""""""""""""
2708 An Ethernet Segment can be configured by specifying a system-MAC and a
2709 local discriminatior against the bond interface on the PE (via zebra) -
2710
2711 .. clicmd:: evpn mh es-id (1-16777215)
2712
2713 .. clicmd:: evpn mh es-sys-mac X:X:X:X:X:X
2714
2715 The sys-mac and local discriminator are used for generating a 10-byte,
2716 Type-3 Ethernet Segment ID.
2717
2718 Type-1 (EAS-per-ES and EAD-per-EVI) routes are used to advertise the locally
2719 attached ESs and to learn off remote ESs in the network. Local Type-2/MAC-IP
2720 routes are also advertised with a destination ESI allowing for MAC-IP syncing
2721 between Ethernet Segment peers.
2722 Reference: RFC 7432, RFC 8365
2723
2724 EVPN-MH is intended as a replacement for MLAG or Anycast VTEPs. In
2725 multihoming each PE has an unique VTEP address which requires the introduction
2726 of a new dataplane construct, MAC-ECMP. Here a MAC/FDB entry can point to a
2727 list of remote PEs/VTEPs.
2728
2729 BUM handling
2730 """"""""""""
2731 Type-4 (ESR) routes are used for Designated Forwarder (DF) election. DFs
2732 forward BUM traffic received via the overlay network. This implementation
2733 uses a preference based DF election specified by draft-ietf-bess-evpn-pref-df.
2734 The DF preference is configurable per-ES (via zebra) -
2735
2736 .. clicmd:: evpn mh es-df-pref (1-16777215)
2737
2738 BUM traffic is rxed via the overlay by all PEs attached to a server but
2739 only the DF can forward the de-capsulated traffic to the access port. To
2740 accomodate that non-DF filters are installed in the dataplane to drop
2741 the traffic.
2742
2743 Similarly traffic received from ES peers via the overlay cannot be forwarded
2744 to the server. This is split-horizon-filtering with local bias.
2745
2746 Knobs for interop
2747 """""""""""""""""
2748 Some vendors do not send EAD-per-EVI routes. To interop with them we
2749 need to relax the dependency on EAD-per-EVI routes and activate a remote
2750 ES-PE based on just the EAD-per-ES route.
2751
2752 Note that by default we advertise and expect EAD-per-EVI routes.
2753
2754 .. clicmd:: disable-ead-evi-rx
2755
2756 .. clicmd:: disable-ead-evi-tx
2757
2758 Fast failover
2759 """""""""""""
2760 As the primary purpose of EVPN-MH is redundancy keeping the failover efficient
2761 is a recurring theme in the implementation. Following sub-features have
2762 been introduced for the express purpose of efficient ES failovers.
2763
2764 - Layer-2 Nexthop Groups and MAC-ECMP via L2NHG.
2765
2766 - Host routes (for symmetric IRB) via L3NHG.
2767 On dataplanes that support layer3 nexthop groups the feature can be turned
2768 on via the following BGP config -
2769
2770 .. clicmd:: use-es-l3nhg
2771
2772 - Local ES (MAC/Neigh) failover via ES-redirect.
2773 On dataplanes that do not have support for ES-redirect the feature can be
2774 turned off via the following zebra config -
2775
2776 .. clicmd:: evpn mh redirect-off
2777
2778 Uplink/Core tracking
2779 """"""""""""""""""""
2780 When all the underlay links go down the PE no longer has access to the VxLAN
2781 +overlay. To prevent blackholing of traffic the server/ES links are
2782 protodowned on the PE. A link can be setup for uplink tracking via the
2783 following zebra configuration -
2784
2785 .. clicmd:: evpn mh uplink
2786
2787 Proxy advertisements
2788 """"""""""""""""""""
2789 To handle hitless upgrades support for proxy advertisement has been added
2790 as specified by draft-rbickhart-evpn-ip-mac-proxy-adv. This allows a PE
2791 (say PE1) to proxy advertise a MAC-IP rxed from an ES peer (say PE2). When
2792 the ES peer (PE2) goes down PE1 continues to advertise hosts learnt from PE2
2793 for a holdtime during which it attempts to establish local reachability of
2794 the host. This holdtime is configurable via the following zebra commands -
2795
2796 .. clicmd:: evpn mh neigh-holdtime (0-86400)
2797
2798 .. clicmd:: evpn mh mac-holdtime (0-86400)
2799
2800 Startup delay
2801 """""""""""""
2802 When a switch is rebooted we wait for a brief period to allow the underlay
2803 and EVPN network to converge before enabling the ESs. For this duration the
2804 ES bonds are held protodown. The startup delay is configurable via the
2805 following zebra command -
2806
2807 .. clicmd:: evpn mh startup-delay (0-3600)
2808
2809 +Support with VRF network namespace backend
2810 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2811 It is possible to separate overlay networks contained in VXLAN interfaces from
2812 underlay networks by using VRFs. VRF-lite and VRF-netns backends can be used for
2813 that. In the latter case, it is necessary to set both bridge and vxlan interface
2814 in the same network namespace, as below example illustrates:
2815
2816 .. code-block:: shell
2817
2818 # linux shell
2819 ip netns add vrf1
2820 ip link add name vxlan101 type vxlan id 101 dstport 4789 dev eth0 local 10.1.1.1
2821 ip link set dev vxlan101 netns vrf1
2822 ip netns exec vrf1 ip link set dev lo up
2823 ip netns exec vrf1 brctl addbr bridge101
2824 ip netns exec vrf1 brctl addif bridge101 vxlan101
2825
2826 This makes it possible to separate not only layer 3 networks like VRF-lite networks.
2827 Also, VRF netns based make possible to separate layer 2 networks on separate VRF
2828 instances.
2829
2830 .. _bgp-conditional-advertisement:
2831
2832 BGP Conditional Advertisement
2833 -----------------------------
2834 The BGP conditional advertisement feature uses the ``non-exist-map`` or the
2835 ``exist-map`` and the ``advertise-map`` keywords of the neighbor advertise-map
2836 command in order to track routes by the route prefix.
2837
2838 ``non-exist-map``
2839 1. If a route prefix is not present in the output of non-exist-map command,
2840 then advertise the route specified by the advertise-map command.
2841
2842 2. If a route prefix is present in the output of non-exist-map command,
2843 then do not advertise the route specified by the addvertise-map command.
2844
2845 ``exist-map``
2846 1. If a route prefix is present in the output of exist-map command,
2847 then advertise the route specified by the advertise-map command.
2848
2849 2. If a route prefix is not present in the output of exist-map command,
2850 then do not advertise the route specified by the advertise-map command.
2851
2852 This feature is useful when some prefixes are advertised to one of its peers
2853 only if the information from the other peer is not present (due to failure in
2854 peering session or partial reachability etc).
2855
2856 The conditional BGP announcements are sent in addition to the normal
2857 announcements that a BGP router sends to its peer.
2858
2859 The conditional advertisement process is triggered by the BGP scanner process,
2860 which runs every 60 seconds. This means that the maximum time for the conditional
2861 advertisement to take effect is 60 seconds. The conditional advertisement can take
2862 effect depending on when the tracked route is removed from the BGP table and
2863 when the next instance of the BGP scanner occurs.
2864
2865 .. clicmd:: neighbor A.B.C.D advertise-map NAME [exist-map|non-exist-map] NAME
2866
2867 This command enables BGP scanner process to monitor routes specified by
2868 exist-map or non-exist-map command in BGP table and conditionally advertises
2869 the routes specified by advertise-map command.
2870
2871 Sample Configuration
2872 ^^^^^^^^^^^^^^^^^^^^^
2873 .. code-block:: frr
2874
2875 interface enp0s9
2876 ip address 10.10.10.2/24
2877 !
2878 interface enp0s10
2879 ip address 10.10.20.2/24
2880 !
2881 interface lo
2882 ip address 203.0.113.1/32
2883 !
2884 router bgp 2
2885 bgp log-neighbor-changes
2886 no bgp ebgp-requires-policy
2887 neighbor 10.10.10.1 remote-as 1
2888 neighbor 10.10.20.3 remote-as 3
2889 !
2890 address-family ipv4 unicast
2891 neighbor 10.10.10.1 soft-reconfiguration inbound
2892 neighbor 10.10.20.3 soft-reconfiguration inbound
2893 neighbor 10.10.20.3 advertise-map ADV-MAP non-exist-map EXIST-MAP
2894 exit-address-family
2895 !
2896 ip prefix-list DEFAULT seq 5 permit 192.0.2.5/32
2897 ip prefix-list DEFAULT seq 10 permit 192.0.2.1/32
2898 ip prefix-list EXIST seq 5 permit 10.10.10.10/32
2899 ip prefix-list DEFAULT-ROUTE seq 5 permit 0.0.0.0/0
2900 ip prefix-list IP1 seq 5 permit 10.139.224.0/20
2901 !
2902 bgp community-list standard DC-ROUTES seq 5 permit 64952:3008
2903 bgp community-list standard DC-ROUTES seq 10 permit 64671:501
2904 bgp community-list standard DC-ROUTES seq 15 permit 64950:3009
2905 bgp community-list standard DEFAULT-ROUTE seq 5 permit 65013:200
2906 !
2907 route-map ADV-MAP permit 10
2908 match ip address prefix-list IP1
2909 !
2910 route-map ADV-MAP permit 20
2911 match community DC-ROUTES
2912 !
2913 route-map EXIST-MAP permit 10
2914 match community DEFAULT-ROUTE
2915 match ip address prefix-list DEFAULT-ROUTE
2916 !
2917
2918 Sample Output
2919 ^^^^^^^^^^^^^
2920
2921 When default route is present in R2'2 BGP table, 10.139.224.0/20 and 192.0.2.1/32 are not advertised to R3.
2922
2923 .. code-block:: frr
2924
2925 Router2# show ip bgp
2926 BGP table version is 20, local router ID is 203.0.113.1, vrf id 0
2927 Default local pref 100, local AS 2
2928 Status codes: s suppressed, d damped, h history, * valid, > best, = multipath,
2929 i internal, r RIB-failure, S Stale, R Removed
2930 Nexthop codes: @NNN nexthop's vrf id, < announce-nh-self
2931 Origin codes: i - IGP, e - EGP, ? - incomplete
2932 RPKI validation codes: V valid, I invalid, N Not found
2933
2934 Network Next Hop Metric LocPrf Weight Path
2935 *> 0.0.0.0/0 10.10.10.1 0 0 1 i
2936 *> 10.139.224.0/20 10.10.10.1 0 0 1 ?
2937 *> 192.0.2.1/32 10.10.10.1 0 0 1 i
2938 *> 192.0.2.5/32 10.10.10.1 0 0 1 i
2939
2940 Displayed 4 routes and 4 total paths
2941 Router2# show ip bgp neighbors 10.10.20.3
2942
2943 !--- Output suppressed.
2944
2945 For address family: IPv4 Unicast
2946 Update group 7, subgroup 7
2947 Packet Queue length 0
2948 Inbound soft reconfiguration allowed
2949 Community attribute sent to this neighbor(all)
2950 Condition NON_EXIST, Condition-map *EXIST-MAP, Advertise-map *ADV-MAP, status: Withdraw
2951 0 accepted prefixes
2952
2953 !--- Output suppressed.
2954
2955 Router2# show ip bgp neighbors 10.10.20.3 advertised-routes
2956 BGP table version is 20, local router ID is 203.0.113.1, vrf id 0
2957 Default local pref 100, local AS 2
2958 Status codes: s suppressed, d damped, h history, * valid, > best, = multipath,
2959 i internal, r RIB-failure, S Stale, R Removed
2960 Nexthop codes: @NNN nexthop's vrf id, < announce-nh-self
2961 Origin codes: i - IGP, e - EGP, ? - incomplete
2962 RPKI validation codes: V valid, I invalid, N Not found
2963
2964 Network Next Hop Metric LocPrf Weight Path
2965 *> 0.0.0.0/0 0.0.0.0 0 1 i
2966 *> 192.0.2.5/32 0.0.0.0 0 1 i
2967
2968 Total number of prefixes 2
2969
2970 When default route is not present in R2'2 BGP table, 10.139.224.0/20 and 192.0.2.1/32 are advertised to R3.
2971
2972 .. code-block:: frr
2973
2974 Router2# show ip bgp
2975 BGP table version is 21, local router ID is 203.0.113.1, vrf id 0
2976 Default local pref 100, local AS 2
2977 Status codes: s suppressed, d damped, h history, * valid, > best, = multipath,
2978 i internal, r RIB-failure, S Stale, R Removed
2979 Nexthop codes: @NNN nexthop's vrf id, < announce-nh-self
2980 Origin codes: i - IGP, e - EGP, ? - incomplete
2981 RPKI validation codes: V valid, I invalid, N Not found
2982
2983 Network Next Hop Metric LocPrf Weight Path
2984 *> 10.139.224.0/20 10.10.10.1 0 0 1 ?
2985 *> 192.0.2.1/32 10.10.10.1 0 0 1 i
2986 *> 192.0.2.5/32 10.10.10.1 0 0 1 i
2987
2988 Displayed 3 routes and 3 total paths
2989
2990 Router2# show ip bgp neighbors 10.10.20.3
2991
2992 !--- Output suppressed.
2993
2994 For address family: IPv4 Unicast
2995 Update group 7, subgroup 7
2996 Packet Queue length 0
2997 Inbound soft reconfiguration allowed
2998 Community attribute sent to this neighbor(all)
2999 Condition NON_EXIST, Condition-map *EXIST-MAP, Advertise-map *ADV-MAP, status: Advertise
3000 0 accepted prefixes
3001
3002 !--- Output suppressed.
3003
3004 Router2# show ip bgp neighbors 10.10.20.3 advertised-routes
3005 BGP table version is 21, local router ID is 203.0.113.1, vrf id 0
3006 Default local pref 100, local AS 2
3007 Status codes: s suppressed, d damped, h history, * valid, > best, = multipath,
3008 i internal, r RIB-failure, S Stale, R Removed
3009 Nexthop codes: @NNN nexthop's vrf id, < announce-nh-self
3010 Origin codes: i - IGP, e - EGP, ? - incomplete
3011 RPKI validation codes: V valid, I invalid, N Not found
3012
3013 Network Next Hop Metric LocPrf Weight Path
3014 *> 10.139.224.0/20 0.0.0.0 0 1 ?
3015 *> 192.0.2.1/32 0.0.0.0 0 1 i
3016 *> 192.0.2.5/32 0.0.0.0 0 1 i
3017
3018 Total number of prefixes 3
3019 Router2#
3020
3021 .. _bgp-debugging:
3022
3023 Debugging
3024 ---------
3025
3026 .. clicmd:: show debug
3027
3028 Show all enabled debugs.
3029
3030 .. clicmd:: show bgp listeners
3031
3032 Display Listen sockets and the vrf that created them. Useful for debugging of when
3033 listen is not working and this is considered a developer debug statement.
3034
3035 .. clicmd:: debug bgp bfd
3036
3037 Enable or disable debugging for BFD events. This will show BFD integration
3038 library messages and BGP BFD integration messages that are mostly state
3039 transitions and validation problems.
3040
3041 .. clicmd:: debug bgp neighbor-events
3042
3043 Enable or disable debugging for neighbor events. This provides general
3044 information on BGP events such as peer connection / disconnection, session
3045 establishment / teardown, and capability negotiation.
3046
3047 .. clicmd:: debug bgp updates
3048
3049 Enable or disable debugging for BGP updates. This provides information on
3050 BGP UPDATE messages transmitted and received between local and remote
3051 instances.
3052
3053 .. clicmd:: debug bgp keepalives
3054
3055 Enable or disable debugging for BGP keepalives. This provides information on
3056 BGP KEEPALIVE messages transmitted and received between local and remote
3057 instances.
3058
3059 .. clicmd:: debug bgp bestpath <A.B.C.D/M|X:X::X:X/M>
3060
3061 Enable or disable debugging for bestpath selection on the specified prefix.
3062
3063 .. clicmd:: debug bgp nht
3064
3065 Enable or disable debugging of BGP nexthop tracking.
3066
3067 .. clicmd:: debug bgp update-groups
3068
3069 Enable or disable debugging of dynamic update groups. This provides general
3070 information on group creation, deletion, join and prune events.
3071
3072 .. clicmd:: debug bgp zebra
3073
3074 Enable or disable debugging of communications between *bgpd* and *zebra*.
3075
3076 Dumping Messages and Routing Tables
3077 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3078
3079 .. clicmd:: dump bgp all PATH [INTERVAL]
3080
3081 .. clicmd:: dump bgp all-et PATH [INTERVAL]
3082
3083
3084 Dump all BGP packet and events to `path` file.
3085 If `interval` is set, a new file will be created for echo `interval` of
3086 seconds. The path `path` can be set with date and time formatting
3087 (strftime). The type ‘all-et’ enables support for Extended Timestamp Header
3088 (:ref:`packet-binary-dump-format`).
3089
3090 .. clicmd:: dump bgp updates PATH [INTERVAL]
3091
3092 .. clicmd:: dump bgp updates-et PATH [INTERVAL]
3093
3094
3095 Dump only BGP updates messages to `path` file.
3096 If `interval` is set, a new file will be created for echo `interval` of
3097 seconds. The path `path` can be set with date and time formatting
3098 (strftime). The type ‘updates-et’ enables support for Extended Timestamp
3099 Header (:ref:`packet-binary-dump-format`).
3100
3101 .. clicmd:: dump bgp routes-mrt PATH
3102
3103 .. clicmd:: dump bgp routes-mrt PATH INTERVAL
3104
3105
3106 Dump whole BGP routing table to `path`. This is heavy process. The path
3107 `path` can be set with date and time formatting (strftime). If `interval` is
3108 set, a new file will be created for echo `interval` of seconds.
3109
3110 Note: the interval variable can also be set using hours and minutes: 04h20m00.
3111
3112
3113 .. _bgp-other-commands:
3114
3115 Other BGP Commands
3116 ------------------
3117
3118 The following are available in the top level *enable* mode:
3119
3120 .. clicmd:: clear bgp \*
3121
3122 Clear all peers.
3123
3124 .. clicmd:: clear bgp ipv4|ipv6 \*
3125
3126 Clear all peers with this address-family activated.
3127
3128 .. clicmd:: clear bgp ipv4|ipv6 unicast \*
3129
3130 Clear all peers with this address-family and sub-address-family activated.
3131
3132 .. clicmd:: clear bgp ipv4|ipv6 PEER
3133
3134 Clear peers with address of X.X.X.X and this address-family activated.
3135
3136 .. clicmd:: clear bgp ipv4|ipv6 unicast PEER
3137
3138 Clear peer with address of X.X.X.X and this address-family and sub-address-family activated.
3139
3140 .. clicmd:: clear bgp ipv4|ipv6 PEER soft|in|out
3141
3142 Clear peer using soft reconfiguration in this address-family.
3143
3144 .. clicmd:: clear bgp ipv4|ipv6 unicast PEER soft|in|out
3145
3146 Clear peer using soft reconfiguration in this address-family and sub-address-family.
3147
3148 The following are available in the ``router bgp`` mode:
3149
3150 .. clicmd:: write-quanta (1-64)
3151
3152 BGP message Tx I/O is vectored. This means that multiple packets are written
3153 to the peer socket at the same time each I/O cycle, in order to minimize
3154 system call overhead. This value controls how many are written at a time.
3155 Under certain load conditions, reducing this value could make peer traffic
3156 less 'bursty'. In practice, leave this settings on the default (64) unless
3157 you truly know what you are doing.
3158
3159 .. clicmd:: read-quanta (1-10)
3160
3161 Unlike Tx, BGP Rx traffic is not vectored. Packets are read off the wire one
3162 at a time in a loop. This setting controls how many iterations the loop runs
3163 for. As with write-quanta, it is best to leave this setting on the default.
3164
3165 The following command is available in ``config`` mode as well as in the
3166 ``router bgp`` mode:
3167
3168 .. clicmd:: bgp graceful-shutdown
3169
3170 The purpose of this command is to initiate BGP Graceful Shutdown which
3171 is described in :rfc:`8326`. The use case for this is to minimize or
3172 eliminate the amount of traffic loss in a network when a planned
3173 maintenance activity such as software upgrade or hardware replacement
3174 is to be performed on a router. The feature works by re-announcing
3175 routes to eBGP peers with the GRACEFUL_SHUTDOWN community included.
3176 Peers are then expected to treat such paths with the lowest preference.
3177 This happens automatically on a receiver running FRR; with other
3178 routing protocol stacks, an inbound policy may have to be configured.
3179 In FRR, triggering graceful shutdown also results in announcing a
3180 LOCAL_PREF of 0 to iBGP peers.
3181
3182 Graceful shutdown can be configured per BGP instance or globally for
3183 all of BGP. These two options are mutually exclusive. The no form of
3184 the command causes graceful shutdown to be stopped, and routes will
3185 be re-announced without the GRACEFUL_SHUTDOWN community and/or with
3186 the usual LOCAL_PREF value. Note that if this option is saved to
3187 the startup configuration, graceful shutdown will remain in effect
3188 across restarts of *bgpd* and will need to be explicitly disabled.
3189
3190 .. _bgp-displaying-bgp-information:
3191
3192 Displaying BGP Information
3193 ==========================
3194
3195 The following four commands display the IPv6 and IPv4 routing tables, depending
3196 on whether or not the ``ip`` keyword is used.
3197 Actually, :clicmd:`show ip bgp` command was used on older `Quagga` routing
3198 daemon project, while :clicmd:`show bgp` command is the new format. The choice
3199 has been done to keep old format with IPv4 routing table, while new format
3200 displays IPv6 routing table.
3201
3202 .. clicmd:: show ip bgp [all] [wide|json [detail]]
3203
3204 .. clicmd:: show ip bgp A.B.C.D [json]
3205
3206 .. clicmd:: show bgp [all] [wide|json [detail]]
3207
3208 .. clicmd:: show bgp X:X::X:X [json]
3209
3210 These commands display BGP routes. When no route is specified, the default
3211 is to display all BGP routes.
3212
3213 ::
3214
3215 BGP table version is 0, local router ID is 10.1.1.1
3216 Status codes: s suppressed, d damped, h history, * valid, > best, i - internal
3217 Origin codes: i - IGP, e - EGP, ? - incomplete
3218
3219 Network Next Hop Metric LocPrf Weight Path
3220 \*> 1.1.1.1/32 0.0.0.0 0 32768 i
3221
3222 Total number of prefixes 1
3223
3224 If ``wide`` option is specified, then the prefix table's width is increased
3225 to fully display the prefix and the nexthop.
3226
3227 This is especially handy dealing with IPv6 prefixes and
3228 if :clicmd:`[no] bgp default show-nexthop-hostname` is enabled.
3229
3230 If ``all`` option is specified, ``ip`` keyword is ignored, show bgp all and
3231 show ip bgp all commands display routes for all AFIs and SAFIs.
3232
3233 If ``json`` option is specified, output is displayed in JSON format.
3234
3235 If ``detail`` option is specified after ``json``, more verbose JSON output
3236 will be displayed.
3237
3238 Some other commands provide additional options for filtering the output.
3239
3240 .. clicmd:: show [ip] bgp regexp LINE
3241
3242 This command displays BGP routes using AS path regular expression
3243 (:ref:`bgp-regular-expressions`).
3244
3245 .. clicmd:: show [ip] bgp [all] summary [wide] [json]
3246
3247 Show a bgp peer summary for the specified address family.
3248
3249 The old command structure :clicmd:`show ip bgp` may be removed in the future
3250 and should no longer be used. In order to reach the other BGP routing tables
3251 other than the IPv6 routing table given by :clicmd:`show bgp`, the new command
3252 structure is extended with :clicmd:`show bgp [afi] [safi]`.
3253
3254 ``wide`` option gives more output like ``LocalAS`` and extended ``Desc`` to
3255 64 characters.
3256
3257 .. code-block:: frr
3258
3259 exit1# show ip bgp summary wide
3260
3261 IPv4 Unicast Summary:
3262 BGP router identifier 192.168.100.1, local AS number 65534 vrf-id 0
3263 BGP table version 3
3264 RIB entries 5, using 920 bytes of memory
3265 Peers 1, using 27 KiB of memory
3266
3267 Neighbor V AS LocalAS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd PfxSnt Desc
3268 192.168.0.2 4 65030 123 15 22 0 0 0 00:07:00 0 1 us-east1-rs1.frrouting.org
3269
3270 Total number of neighbors 1
3271 exit1#
3272
3273 .. clicmd:: show bgp [afi] [safi] [all] [wide|json]
3274
3275 .. clicmd:: show bgp [<ipv4|ipv6> <unicast|multicast|vpn|labeled-unicast|flowspec> | l2vpn evpn]
3276
3277 These commands display BGP routes for the specific routing table indicated by
3278 the selected afi and the selected safi. If no afi and no safi value is given,
3279 the command falls back to the default IPv6 routing table.
3280
3281 .. clicmd:: show bgp l2vpn evpn route [type <macip|2|multicast|3|es|4|prefix|5>]
3282
3283 EVPN prefixes can also be filtered by EVPN route type.
3284
3285 .. clicmd:: show bgp [afi] [safi] [all] summary [json]
3286
3287 Show a bgp peer summary for the specified address family, and subsequent
3288 address-family.
3289
3290 .. clicmd:: show bgp [afi] [safi] [all] summary failed [json]
3291
3292 Show a bgp peer summary for peers that are not succesfully exchanging routes
3293 for the specified address family, and subsequent address-family.
3294
3295 .. clicmd:: show bgp [afi] [safi] [all] summary established [json]
3296
3297 Show a bgp peer summary for peers that are succesfully exchanging routes
3298 for the specified address family, and subsequent address-family.
3299
3300 .. clicmd:: show bgp [afi] [safi] [all] summary neighbor [PEER] [json]
3301
3302 Show a bgp summary for the specified peer, address family, and
3303 subsequent address-family. The neighbor filter can be used in combination
3304 with the failed, established filters.
3305
3306 .. clicmd:: show bgp [afi] [safi] [all] summary remote-as <internal|external|ASN> [json]
3307
3308 Show a bgp peer summary for the specified remote-as ASN or type (``internal``
3309 for iBGP and ``external`` for eBGP sessions), address family, and subsequent
3310 address-family. The remote-as filter can be used in combination with the
3311 failed, established filters.
3312
3313 .. clicmd:: show bgp [afi] [safi] [neighbor [PEER] [routes|advertised-routes|received-routes] [json]
3314
3315 This command shows information on a specific BGP peer of the relevant
3316 afi and safi selected.
3317
3318 The ``routes`` keyword displays only routes in this address-family's BGP
3319 table that were received by this peer and accepted by inbound policy.
3320
3321 The ``advertised-routes`` keyword displays only the routes in this
3322 address-family's BGP table that were permitted by outbound policy and
3323 advertised to to this peer.
3324
3325 The ``received-routes`` keyword displays all routes belonging to this
3326 address-family (prior to inbound policy) that were received by this peer.
3327
3328 .. clicmd:: show bgp [afi] [safi] [all] dampening dampened-paths [wide|json]
3329
3330 Display paths suppressed due to dampening of the selected afi and safi
3331 selected.
3332
3333 .. clicmd:: show bgp [afi] [safi] [all] dampening flap-statistics [wide|json]
3334
3335 Display flap statistics of routes of the selected afi and safi selected.
3336
3337 .. clicmd:: show bgp [afi] [safi] [all] version (1-4294967295) [wide|json]
3338
3339 Display prefixes with matching version numbers. The version number and
3340 above having prefixes will be listed here.
3341
3342 It helps to identify which prefixes were installed at some point.
3343
3344 Here is an example of how to check what prefixes were installed starting
3345 with an arbitrary version::
3346
3347 .. code-block:: frr
3348
3349 ~# vtysh -c 'show bgp ipv4 unicast json' | jq '.tableVersion'
3350 9
3351 ~# vtysh -c 'show ip bgp version 9 json' | jq -r '.routes | keys[]'
3352 192.168.3.0/24
3353 ~# vtysh -c 'show ip bgp version 8 json' | jq -r '.routes | keys[]'
3354 192.168.2.0/24
3355 192.168.3.0/24
3356
3357 .. clicmd:: show bgp [afi] [safi] statistics
3358
3359 Display statistics of routes of the selected afi and safi.
3360
3361 .. clicmd:: show bgp statistics-all
3362
3363 Display statistics of routes of all the afi and safi.
3364
3365 .. clicmd:: show [ip] bgp [afi] [safi] [all] cidr-only [wide|json]
3366
3367 Display routes with non-natural netmasks.
3368
3369 .. clicmd:: show [ip] bgp [afi] [safi] [all] neighbors A.B.C.D [advertised-routes|received-routes|filtered-routes] [json|wide]
3370
3371 Display the routes advertised to a BGP neighbor or received routes
3372 from neighbor or filtered routes received from neighbor based on the
3373 option specified.
3374
3375 If ``wide`` option is specified, then the prefix table's width is increased
3376 to fully display the prefix and the nexthop.
3377
3378 This is especially handy dealing with IPv6 prefixes and
3379 if :clicmd:`[no] bgp default show-nexthop-hostname` is enabled.
3380
3381 If ``all`` option is specified, ``ip`` keyword is ignored and,
3382 routes displayed for all AFIs and SAFIs.
3383 if afi is specified, with ``all`` option, routes will be displayed for
3384 each SAFI in the selcted AFI
3385
3386 If ``json`` option is specified, output is displayed in JSON format.
3387
3388 .. _bgp-display-routes-by-community:
3389
3390 Displaying Routes by Community Attribute
3391 ----------------------------------------
3392
3393 The following commands allow displaying routes based on their community
3394 attribute.
3395
3396 .. clicmd:: show [ip] bgp <ipv4|ipv6> [all] community [wide|json]
3397
3398 .. clicmd:: show [ip] bgp <ipv4|ipv6> [all] community COMMUNITY [wide|json]
3399
3400 .. clicmd:: show [ip] bgp <ipv4|ipv6> [all] community COMMUNITY exact-match [wide|json]
3401
3402 These commands display BGP routes which have the community attribute.
3403 attribute. When ``COMMUNITY`` is specified, BGP routes that match that
3404 community are displayed. When `exact-match` is specified, it display only
3405 routes that have an exact match.
3406
3407 .. clicmd:: show [ip] bgp <ipv4|ipv6> community-list WORD
3408
3409 .. clicmd:: show [ip] bgp <ipv4|ipv6> community-list WORD exact-match
3410
3411 These commands display BGP routes for the address family specified that
3412 match the specified community list. When `exact-match` is specified, it
3413 displays only routes that have an exact match.
3414
3415 If ``wide`` option is specified, then the prefix table's width is increased
3416 to fully display the prefix and the nexthop.
3417
3418 This is especially handy dealing with IPv6 prefixes and
3419 if :clicmd:`[no] bgp default show-nexthop-hostname` is enabled.
3420
3421 If ``all`` option is specified, ``ip`` keyword is ignored and,
3422 routes displayed for all AFIs and SAFIs.
3423 if afi is specified, with ``all`` option, routes will be displayed for
3424 each SAFI in the selcted AFI
3425
3426 If ``json`` option is specified, output is displayed in JSON format.
3427
3428 .. clicmd:: show bgp labelpool <chunks|inuse|ledger|requests|summary> [json]
3429
3430 These commands display information about the BGP labelpool used for
3431 the association of MPLS labels with routes for L3VPN and Labeled Unicast
3432
3433 If ``chunks`` option is specified, output shows the current list of label
3434 chunks granted to BGP by Zebra, indicating the start and end label in
3435 each chunk
3436
3437 If ``inuse`` option is specified, output shows the current inuse list of
3438 label to prefix mappings
3439
3440 If ``ledger`` option is specified, output shows ledger list of all
3441 label requests made per prefix
3442
3443 If ``requests`` option is specified, output shows current list of label
3444 requests which have not yet been fulfilled by the labelpool
3445
3446 If ``summary`` option is specified, output is a summary of the counts for
3447 the chunks, inuse, ledger and requests list along with the count of
3448 outstanding chunk requests to Zebra and the nummber of zebra reconnects
3449 that have happened
3450
3451 If ``json`` option is specified, output is displayed in JSON format.
3452
3453 .. _bgp-display-routes-by-lcommunity:
3454
3455 Displaying Routes by Large Community Attribute
3456 ----------------------------------------------
3457
3458 The following commands allow displaying routes based on their
3459 large community attribute.
3460
3461 .. clicmd:: show [ip] bgp <ipv4|ipv6> large-community
3462
3463 .. clicmd:: show [ip] bgp <ipv4|ipv6> large-community LARGE-COMMUNITY
3464
3465 .. clicmd:: show [ip] bgp <ipv4|ipv6> large-community LARGE-COMMUNITY exact-match
3466
3467 .. clicmd:: show [ip] bgp <ipv4|ipv6> large-community LARGE-COMMUNITY json
3468
3469 These commands display BGP routes which have the large community attribute.
3470 attribute. When ``LARGE-COMMUNITY`` is specified, BGP routes that match that
3471 large community are displayed. When `exact-match` is specified, it display
3472 only routes that have an exact match. When `json` is specified, it display
3473 routes in json format.
3474
3475 .. clicmd:: show [ip] bgp <ipv4|ipv6> large-community-list WORD
3476
3477 .. clicmd:: show [ip] bgp <ipv4|ipv6> large-community-list WORD exact-match
3478
3479 .. clicmd:: show [ip] bgp <ipv4|ipv6> large-community-list WORD json
3480
3481 These commands display BGP routes for the address family specified that
3482 match the specified large community list. When `exact-match` is specified,
3483 it displays only routes that have an exact match. When `json` is specified,
3484 it display routes in json format.
3485
3486 .. _bgp-display-routes-by-as-path:
3487
3488
3489 Displaying Routes by AS Path
3490 ----------------------------
3491
3492 .. clicmd:: show bgp ipv4|ipv6 regexp LINE
3493
3494 This commands displays BGP routes that matches a regular
3495 expression `line` (:ref:`bgp-regular-expressions`).
3496
3497 .. clicmd:: show [ip] bgp ipv4 vpn
3498
3499 .. clicmd:: show [ip] bgp ipv6 vpn
3500
3501 Print active IPV4 or IPV6 routes advertised via the VPN SAFI.
3502
3503 .. clicmd:: show bgp ipv4 vpn summary
3504
3505 .. clicmd:: show bgp ipv6 vpn summary
3506
3507 Print a summary of neighbor connections for the specified AFI/SAFI combination.
3508
3509 Displaying Routes by Route Distinguisher
3510 ----------------------------------------
3511
3512 .. clicmd:: show bgp [<ipv4|ipv6> vpn | l2vpn evpn [route]] rd <all|RD>
3513
3514 For L3VPN and EVPN address-families, routes can be displayed on a per-RD
3515 (Route Distinguisher) basis or for all RD's.
3516
3517 .. clicmd:: show bgp l2vpn evpn rd <all|RD> [overlay | tags]
3518
3519 Use the ``overlay`` or ``tags`` keywords to display the overlay/tag
3520 information about the EVPN prefixes in the selected Route Distinguisher.
3521
3522 .. clicmd:: show bgp l2vpn evpn route rd <all|RD> mac <MAC> [ip <MAC>] [json]
3523
3524 For EVPN Type 2 (macip) routes, a MAC address (and optionally an IP address)
3525 can be supplied to the command to only display matching prefixes in the
3526 specified RD.
3527
3528 Displaying Update Group Information
3529 -----------------------------------
3530
3531 .. clicmd:: show bgp update-groups [advertise-queue|advertised-routes|packet-queue]
3532
3533 Display Information about each individual update-group being used.
3534 If SUBGROUP-ID is specified only display about that particular group. If
3535 advertise-queue is specified the list of routes that need to be sent
3536 to the peers in the update-group is displayed, advertised-routes means
3537 the list of routes we have sent to the peers in the update-group and
3538 packet-queue specifies the list of packets in the queue to be sent.
3539
3540 .. clicmd:: show bgp update-groups statistics
3541
3542 Display Information about update-group events in FRR.
3543
3544 Segment-Routing IPv6
3545 --------------------
3546
3547 .. clicmd:: show bgp segment-routing srv6
3548
3549 This command displays information about SRv6 L3VPN in bgpd. Specifically,
3550 what kind of Locator is being used, and its Locator chunk information.
3551 And the SID of the SRv6 Function that is actually managed on bgpd.
3552 In the following example, bgpd is using a Locator named loc1, and two SRv6
3553 Functions are managed to perform VPNv6 VRF redirect for vrf10 and vrf20.
3554
3555 ::
3556
3557 router# show bgp segment-routing srv6
3558 locator_name: loc1
3559 locator_chunks:
3560 - 2001:db8:1:1::/64
3561 functions:
3562 - sid: 2001:db8:1:1::100
3563 locator: loc1
3564 - sid: 2001:db8:1:1::200
3565 locator: loc1
3566 bgps:
3567 - name: default
3568 vpn_policy[AFI_IP].tovpn_sid: none
3569 vpn_policy[AFI_IP6].tovpn_sid: none
3570 - name: vrf10
3571 vpn_policy[AFI_IP].tovpn_sid: none
3572 vpn_policy[AFI_IP6].tovpn_sid: 2001:db8:1:1::100
3573 - name: vrf20
3574 vpn_policy[AFI_IP].tovpn_sid: none
3575 vpn_policy[AFI_IP6].tovpn_sid: 2001:db8:1:1::200
3576
3577
3578 .. _bgp-route-reflector:
3579
3580 Route Reflector
3581 ===============
3582
3583 BGP routers connected inside the same AS through BGP belong to an internal
3584 BGP session, or IBGP. In order to prevent routing table loops, IBGP does not
3585 advertise IBGP-learned routes to other routers in the same session. As such,
3586 IBGP requires a full mesh of all peers. For large networks, this quickly becomes
3587 unscalable. Introducing route reflectors removes the need for the full-mesh.
3588
3589 When route reflectors are configured, these will reflect the routes announced
3590 by the peers configured as clients. A route reflector client is configured
3591 with:
3592
3593 .. clicmd:: neighbor PEER route-reflector-client
3594
3595
3596 To avoid single points of failure, multiple route reflectors can be configured.
3597
3598 A cluster is a collection of route reflectors and their clients, and is used
3599 by route reflectors to avoid looping.
3600
3601 .. clicmd:: bgp cluster-id A.B.C.D
3602
3603 .. clicmd:: bgp no-rib
3604
3605 To set and unset the BGP daemon ``-n`` / ``--no_kernel`` options during runtime
3606 to disable BGP route installation to the RIB (Zebra), the ``[no] bgp no-rib``
3607 commands can be used;
3608
3609 Please note that setting the option during runtime will withdraw all routes in
3610 the daemons RIB from Zebra and unsetting it will announce all routes in the
3611 daemons RIB to Zebra. If the option is passed as a command line argument when
3612 starting the daemon and the configuration gets saved, the option will persist
3613 unless removed from the configuration with the negating command prior to the
3614 configuration write operation.
3615
3616 .. clicmd:: bgp send-extra-data zebra
3617
3618 This Command turns off the ability of BGP to send extra data to zebra.
3619 In this case it's the AS-Path being used for the path. The default behavior
3620 in BGP is to send this data and to turn it off enter the no form of the command.
3621 If extra data was sent to zebra, and this command is turned on there is no
3622 effort to clean up this data in the rib.
3623
3624 .. _bgp-suppress-fib:
3625
3626 Suppressing routes not installed in FIB
3627 =======================================
3628
3629 The FRR implementation of BGP advertises prefixes learnt from a peer to other
3630 peers even if the routes do not get installed in the FIB. There can be
3631 scenarios where the hardware tables in some of the routers (along the path from
3632 the source to destination) is full which will result in all routes not getting
3633 installed in the FIB. If these routes are advertised to the downstream routers
3634 then traffic will start flowing and will be dropped at the intermediate router.
3635
3636 The solution is to provide a configurable option to check for the FIB install
3637 status of the prefixes and advertise to peers if the prefixes are successfully
3638 installed in the FIB. The advertisement of the prefixes are suppressed if it is
3639 not installed in FIB.
3640
3641 The following conditions apply will apply when checking for route installation
3642 status in FIB:
3643
3644 1. The advertisement or suppression of routes based on FIB install status
3645 applies only for newly learnt routes from peer (routes which are not in
3646 BGP local RIB).
3647 2. If the route received from peer already exists in BGP local RIB and route
3648 attributes have changed (best path changed), the old path is deleted and
3649 new path is installed in FIB. The FIB install status will not have any
3650 effect. Therefore only when the route is received first time the checks
3651 apply.
3652 3. The feature will not apply for routes learnt through other means like
3653 redistribution to bgp from other protocols. This is applicable only to
3654 peer learnt routes.
3655 4. If a route is installed in FIB and then gets deleted from the dataplane,
3656 then routes will not be withdrawn from peers. This will be considered as
3657 dataplane issue.
3658 5. The feature will slightly increase the time required to advertise the routes
3659 to peers since the route install status needs to be received from the FIB
3660 6. If routes are received by the peer before the configuration is applied, then
3661 the bgp sessions need to be reset for the configuration to take effect.
3662 7. If the route which is already installed in dataplane is removed for some
3663 reason, sending withdraw message to peers is not currently supported.
3664
3665 .. clicmd:: bgp suppress-fib-pending
3666
3667 This command is applicable at the global level and at an individual
3668 bgp level. If applied at the global level all bgp instances will
3669 wait for fib installation before announcing routes and there is no
3670 way to turn it off for a particular bgp vrf.
3671
3672 .. _routing-policy:
3673
3674 Routing Policy
3675 ==============
3676
3677 You can set different routing policy for a peer. For example, you can set
3678 different filter for a peer.
3679
3680 .. code-block:: frr
3681
3682 !
3683 router bgp 1 view 1
3684 neighbor 10.0.0.1 remote-as 2
3685 address-family ipv4 unicast
3686 neighbor 10.0.0.1 distribute-list 1 in
3687 exit-address-family
3688 !
3689 router bgp 1 view 2
3690 neighbor 10.0.0.1 remote-as 2
3691 address-family ipv4 unicast
3692 neighbor 10.0.0.1 distribute-list 2 in
3693 exit-address-family
3694
3695 This means BGP update from a peer 10.0.0.1 goes to both BGP view 1 and view 2.
3696 When the update is inserted into view 1, distribute-list 1 is applied. On the
3697 other hand, when the update is inserted into view 2, distribute-list 2 is
3698 applied.
3699
3700
3701 .. _bgp-regular-expressions:
3702
3703 BGP Regular Expressions
3704 =======================
3705
3706 BGP regular expressions are based on :t:`POSIX 1003.2` regular expressions. The
3707 following description is just a quick subset of the POSIX regular expressions.
3708
3709
3710 .\*
3711 Matches any single character.
3712
3713 \*
3714 Matches 0 or more occurrences of pattern.
3715
3716 \+
3717 Matches 1 or more occurrences of pattern.
3718
3719 ?
3720 Match 0 or 1 occurrences of pattern.
3721
3722 ^
3723 Matches the beginning of the line.
3724
3725 $
3726 Matches the end of the line.
3727
3728 _
3729 The ``_`` character has special meanings in BGP regular expressions. It
3730 matches to space and comma , and AS set delimiter ``{`` and ``}`` and AS
3731 confederation delimiter ``(`` and ``)``. And it also matches to the
3732 beginning of the line and the end of the line. So ``_`` can be used for AS
3733 value boundaries match. This character technically evaluates to
3734 ``(^|[,{}()]|$)``.
3735
3736
3737 .. _bgp-configuration-examples:
3738
3739 Miscellaneous Configuration Examples
3740 ====================================
3741
3742 Example of a session to an upstream, advertising only one prefix to it.
3743
3744 .. code-block:: frr
3745
3746 router bgp 64512
3747 bgp router-id 10.236.87.1
3748 neighbor upstream peer-group
3749 neighbor upstream remote-as 64515
3750 neighbor upstream capability dynamic
3751 neighbor 10.1.1.1 peer-group upstream
3752 neighbor 10.1.1.1 description ACME ISP
3753
3754 address-family ipv4 unicast
3755 network 10.236.87.0/24
3756 neighbor upstream prefix-list pl-allowed-adv out
3757 exit-address-family
3758 !
3759 ip prefix-list pl-allowed-adv seq 5 permit 82.195.133.0/25
3760 ip prefix-list pl-allowed-adv seq 10 deny any
3761
3762 A more complex example including upstream, peer and customer sessions
3763 advertising global prefixes and NO_EXPORT prefixes and providing actions for
3764 customer routes based on community values. Extensive use is made of route-maps
3765 and the 'call' feature to support selective advertising of prefixes. This
3766 example is intended as guidance only, it has NOT been tested and almost
3767 certainly contains silly mistakes, if not serious flaws.
3768
3769 .. code-block:: frr
3770
3771 router bgp 64512
3772 bgp router-id 10.236.87.1
3773 neighbor upstream capability dynamic
3774 neighbor cust capability dynamic
3775 neighbor peer capability dynamic
3776 neighbor 10.1.1.1 remote-as 64515
3777 neighbor 10.1.1.1 peer-group upstream
3778 neighbor 10.2.1.1 remote-as 64516
3779 neighbor 10.2.1.1 peer-group upstream
3780 neighbor 10.3.1.1 remote-as 64517
3781 neighbor 10.3.1.1 peer-group cust-default
3782 neighbor 10.3.1.1 description customer1
3783 neighbor 10.4.1.1 remote-as 64518
3784 neighbor 10.4.1.1 peer-group cust
3785 neighbor 10.4.1.1 description customer2
3786 neighbor 10.5.1.1 remote-as 64519
3787 neighbor 10.5.1.1 peer-group peer
3788 neighbor 10.5.1.1 description peer AS 1
3789 neighbor 10.6.1.1 remote-as 64520
3790 neighbor 10.6.1.1 peer-group peer
3791 neighbor 10.6.1.1 description peer AS 2
3792
3793 address-family ipv4 unicast
3794 network 10.123.456.0/24
3795 network 10.123.456.128/25 route-map rm-no-export
3796 neighbor upstream route-map rm-upstream-out out
3797 neighbor cust route-map rm-cust-in in
3798 neighbor cust route-map rm-cust-out out
3799 neighbor cust send-community both
3800 neighbor peer route-map rm-peer-in in
3801 neighbor peer route-map rm-peer-out out
3802 neighbor peer send-community both
3803 neighbor 10.3.1.1 prefix-list pl-cust1-network in
3804 neighbor 10.4.1.1 prefix-list pl-cust2-network in
3805 neighbor 10.5.1.1 prefix-list pl-peer1-network in
3806 neighbor 10.6.1.1 prefix-list pl-peer2-network in
3807 exit-address-family
3808 !
3809 ip prefix-list pl-default permit 0.0.0.0/0
3810 !
3811 ip prefix-list pl-upstream-peers permit 10.1.1.1/32
3812 ip prefix-list pl-upstream-peers permit 10.2.1.1/32
3813 !
3814 ip prefix-list pl-cust1-network permit 10.3.1.0/24
3815 ip prefix-list pl-cust1-network permit 10.3.2.0/24
3816 !
3817 ip prefix-list pl-cust2-network permit 10.4.1.0/24
3818 !
3819 ip prefix-list pl-peer1-network permit 10.5.1.0/24
3820 ip prefix-list pl-peer1-network permit 10.5.2.0/24
3821 ip prefix-list pl-peer1-network permit 192.168.0.0/24
3822 !
3823 ip prefix-list pl-peer2-network permit 10.6.1.0/24
3824 ip prefix-list pl-peer2-network permit 10.6.2.0/24
3825 ip prefix-list pl-peer2-network permit 192.168.1.0/24
3826 ip prefix-list pl-peer2-network permit 192.168.2.0/24
3827 ip prefix-list pl-peer2-network permit 172.16.1/24
3828 !
3829 bgp as-path access-list seq 5 asp-own-as permit ^$
3830 bgp as-path access-list seq 10 asp-own-as permit _64512_
3831 !
3832 ! #################################################################
3833 ! Match communities we provide actions for, on routes receives from
3834 ! customers. Communities values of <our-ASN>:X, with X, have actions:
3835 !
3836 ! 100 - blackhole the prefix
3837 ! 200 - set no_export
3838 ! 300 - advertise only to other customers
3839 ! 400 - advertise only to upstreams
3840 ! 500 - set no_export when advertising to upstreams
3841 ! 2X00 - set local_preference to X00
3842 !
3843 ! blackhole the prefix of the route
3844 bgp community-list standard cm-blackhole permit 64512:100
3845 !
3846 ! set no-export community before advertising
3847 bgp community-list standard cm-set-no-export permit 64512:200
3848 !
3849 ! advertise only to other customers
3850 bgp community-list standard cm-cust-only permit 64512:300
3851 !
3852 ! advertise only to upstreams
3853 bgp community-list standard cm-upstream-only permit 64512:400
3854 !
3855 ! advertise to upstreams with no-export
3856 bgp community-list standard cm-upstream-noexport permit 64512:500
3857 !
3858 ! set local-pref to least significant 3 digits of the community
3859 bgp community-list standard cm-prefmod-100 permit 64512:2100
3860 bgp community-list standard cm-prefmod-200 permit 64512:2200
3861 bgp community-list standard cm-prefmod-300 permit 64512:2300
3862 bgp community-list standard cm-prefmod-400 permit 64512:2400
3863 bgp community-list expanded cme-prefmod-range permit 64512:2...
3864 !
3865 ! Informational communities
3866 !
3867 ! 3000 - learned from upstream
3868 ! 3100 - learned from customer
3869 ! 3200 - learned from peer
3870 !
3871 bgp community-list standard cm-learnt-upstream permit 64512:3000
3872 bgp community-list standard cm-learnt-cust permit 64512:3100
3873 bgp community-list standard cm-learnt-peer permit 64512:3200
3874 !
3875 ! ###################################################################
3876 ! Utility route-maps
3877 !
3878 ! These utility route-maps generally should not used to permit/deny
3879 ! routes, i.e. they do not have meaning as filters, and hence probably
3880 ! should be used with 'on-match next'. These all finish with an empty
3881 ! permit entry so as not interfere with processing in the caller.
3882 !
3883 route-map rm-no-export permit 10
3884 set community additive no-export
3885 route-map rm-no-export permit 20
3886 !
3887 route-map rm-blackhole permit 10
3888 description blackhole, up-pref and ensure it cannot escape this AS
3889 set ip next-hop 127.0.0.1
3890 set local-preference 10
3891 set community additive no-export
3892 route-map rm-blackhole permit 20
3893 !
3894 ! Set local-pref as requested
3895 route-map rm-prefmod permit 10
3896 match community cm-prefmod-100
3897 set local-preference 100
3898 route-map rm-prefmod permit 20
3899 match community cm-prefmod-200
3900 set local-preference 200
3901 route-map rm-prefmod permit 30
3902 match community cm-prefmod-300
3903 set local-preference 300
3904 route-map rm-prefmod permit 40
3905 match community cm-prefmod-400
3906 set local-preference 400
3907 route-map rm-prefmod permit 50
3908 !
3909 ! Community actions to take on receipt of route.
3910 route-map rm-community-in permit 10
3911 description check for blackholing, no point continuing if it matches.
3912 match community cm-blackhole
3913 call rm-blackhole
3914 route-map rm-community-in permit 20
3915 match community cm-set-no-export
3916 call rm-no-export
3917 on-match next
3918 route-map rm-community-in permit 30
3919 match community cme-prefmod-range
3920 call rm-prefmod
3921 route-map rm-community-in permit 40
3922 !
3923 ! #####################################################################
3924 ! Community actions to take when advertising a route.
3925 ! These are filtering route-maps,
3926 !
3927 ! Deny customer routes to upstream with cust-only set.
3928 route-map rm-community-filt-to-upstream deny 10
3929 match community cm-learnt-cust
3930 match community cm-cust-only
3931 route-map rm-community-filt-to-upstream permit 20
3932 !
3933 ! Deny customer routes to other customers with upstream-only set.
3934 route-map rm-community-filt-to-cust deny 10
3935 match community cm-learnt-cust
3936 match community cm-upstream-only
3937 route-map rm-community-filt-to-cust permit 20
3938 !
3939 ! ###################################################################
3940 ! The top-level route-maps applied to sessions. Further entries could
3941 ! be added obviously..
3942 !
3943 ! Customers
3944 route-map rm-cust-in permit 10
3945 call rm-community-in
3946 on-match next
3947 route-map rm-cust-in permit 20
3948 set community additive 64512:3100
3949 route-map rm-cust-in permit 30
3950 !
3951 route-map rm-cust-out permit 10
3952 call rm-community-filt-to-cust
3953 on-match next
3954 route-map rm-cust-out permit 20
3955 !
3956 ! Upstream transit ASes
3957 route-map rm-upstream-out permit 10
3958 description filter customer prefixes which are marked cust-only
3959 call rm-community-filt-to-upstream
3960 on-match next
3961 route-map rm-upstream-out permit 20
3962 description only customer routes are provided to upstreams/peers
3963 match community cm-learnt-cust
3964 !
3965 ! Peer ASes
3966 ! outbound policy is same as for upstream
3967 route-map rm-peer-out permit 10
3968 call rm-upstream-out
3969 !
3970 route-map rm-peer-in permit 10
3971 set community additive 64512:3200
3972
3973
3974 Example of how to set up a 6-Bone connection.
3975
3976 .. code-block:: frr
3977
3978 ! bgpd configuration
3979 ! ==================
3980 !
3981 ! MP-BGP configuration
3982 !
3983 router bgp 7675
3984 bgp router-id 10.0.0.1
3985 neighbor 3ffe:1cfa:0:2:2a0:c9ff:fe9e:f56 remote-as `as-number`
3986 !
3987 address-family ipv6
3988 network 3ffe:506::/32
3989 neighbor 3ffe:1cfa:0:2:2a0:c9ff:fe9e:f56 activate
3990 neighbor 3ffe:1cfa:0:2:2a0:c9ff:fe9e:f56 route-map set-nexthop out
3991 neighbor 3ffe:1cfa:0:2:2c0:4fff:fe68:a231 remote-as `as-number`
3992 neighbor 3ffe:1cfa:0:2:2c0:4fff:fe68:a231 route-map set-nexthop out
3993 exit-address-family
3994 !
3995 ipv6 access-list all permit any
3996 !
3997 ! Set output nexthop address.
3998 !
3999 route-map set-nexthop permit 10
4000 match ipv6 address all
4001 set ipv6 nexthop global 3ffe:1cfa:0:2:2c0:4fff:fe68:a225
4002 set ipv6 nexthop local fe80::2c0:4fff:fe68:a225
4003 !
4004 log file bgpd.log
4005 !
4006
4007 .. _bgp-tcp-mss:
4008
4009 BGP tcp-mss support
4010 ===================
4011 TCP provides a mechanism for the user to specify the max segment size.
4012 setsockopt API is used to set the max segment size for TCP session. We
4013 can configure this as part of BGP neighbor configuration.
4014
4015 This document explains how to avoid ICMP vulnerability issues by limiting
4016 TCP max segment size when you are using MTU discovery. Using MTU discovery
4017 on TCP paths is one method of avoiding BGP packet fragmentation.
4018
4019 TCP negotiates a maximum segment size (MSS) value during session connection
4020 establishment between two peers. The MSS value negotiated is primarily based
4021 on the maximum transmission unit (MTU) of the interfaces to which the
4022 communicating peers are directly connected. However, due to variations in
4023 link MTU on the path taken by the TCP packets, some packets in the network
4024 that are well within the MSS value might be fragmented when the packet size
4025 exceeds the link's MTU.
4026
4027 This feature is supported with TCP over IPv4 and TCP over IPv6.
4028
4029 CLI Configuration:
4030 ------------------
4031 Below configuration can be done in router bgp mode and allows the user to
4032 configure the tcp-mss value per neighbor. The configuration gets applied
4033 only after hard reset is performed on that neighbor. If we configure tcp-mss
4034 on both the neighbors then both neighbors need to be reset.
4035
4036 The configuration takes effect based on below rules, so there is a configured
4037 tcp-mss and a synced tcp-mss value per TCP session.
4038
4039 By default if the configuration is not done then the TCP max segment size is
4040 set to the Maximum Transmission unit (MTU) – (IP/IP6 header size + TCP header
4041 size + ethernet header). For IPv4 its MTU – (20 bytes IP header + 20 bytes TCP
4042 header + 12 bytes ethernet header) and for IPv6 its MTU – (40 bytes IPv6 header
4043 + 20 bytes TCP header + 12 bytes ethernet header).
4044
4045 If the config is done then it reduces 12-14 bytes for the ether header and
4046 uses it after synchronizing in TCP handshake.
4047
4048 .. clicmd:: neighbor <A.B.C.D|X:X::X:X|WORD> tcp-mss (1-65535)
4049
4050 When tcp-mss is configured kernel reduces 12-14 bytes for ethernet header.
4051 E.g. if tcp-mss is configured as 150 the synced value will be 138.
4052
4053 Note: configured and synced value is different since TCP module will reduce
4054 12 bytes for ethernet header.
4055
4056 Running config:
4057 ---------------
4058
4059 .. code-block:: frr
4060
4061 frr# show running-config
4062 Building configuration...
4063
4064 Current configuration:
4065 !
4066 router bgp 100
4067 bgp router-id 192.0.2.1
4068 neighbor 198.51.100.2 remote-as 100
4069 neighbor 198.51.100.2 tcp-mss 150 => new entry
4070 neighbor 2001:DB8::2 remote-as 100
4071 neighbor 2001:DB8::2 tcp-mss 400 => new entry
4072
4073 Show command:
4074 -------------
4075
4076 .. code-block:: frr
4077
4078 frr# show bgp neighbors 198.51.100.2
4079 BGP neighbor is 198.51.100.2, remote AS 100, local AS 100, internal link
4080 Hostname: frr
4081 BGP version 4, remote router ID 192.0.2.2, local router ID 192.0.2.1
4082 BGP state = Established, up for 02:15:28
4083 Last read 00:00:28, Last write 00:00:28
4084 Hold time is 180, keepalive interval is 60 seconds
4085 Configured tcp-mss is 150, synced tcp-mss is 138 => new display
4086
4087 .. code-block:: frr
4088
4089 frr# show bgp neighbors 2001:DB8::2
4090 BGP neighbor is 2001:DB8::2, remote AS 100, local AS 100, internal link
4091 Hostname: frr
4092 BGP version 4, remote router ID 192.0.2.2, local router ID 192.0.2.1
4093 BGP state = Established, up for 02:16:34
4094 Last read 00:00:34, Last write 00:00:34
4095 Hold time is 180, keepalive interval is 60 seconds
4096 Configured tcp-mss is 400, synced tcp-mss is 388 => new display
4097
4098 Show command json output:
4099 -------------------------
4100
4101 .. code-block:: frr
4102
4103 frr# show bgp neighbors 2001:DB8::2 json
4104 {
4105 "2001:DB8::2":{
4106 "remoteAs":100,
4107 "localAs":100,
4108 "nbrInternalLink":true,
4109 "hostname":"frr",
4110 "bgpVersion":4,
4111 "remoteRouterId":"192.0.2.2",
4112 "localRouterId":"192.0.2.1",
4113 "bgpState":"Established",
4114 "bgpTimerUpMsec":8349000,
4115 "bgpTimerUpString":"02:19:09",
4116 "bgpTimerUpEstablishedEpoch":1613054251,
4117 "bgpTimerLastRead":9000,
4118 "bgpTimerLastWrite":9000,
4119 "bgpInUpdateElapsedTimeMsecs":8347000,
4120 "bgpTimerHoldTimeMsecs":180000,
4121 "bgpTimerKeepAliveIntervalMsecs":60000,
4122 "bgpTcpMssConfigured":400, => new entry
4123 "bgpTcpMssSynced":388, => new entry
4124
4125 .. code-block:: frr
4126
4127 frr# show bgp neighbors 198.51.100.2 json
4128 {
4129 "198.51.100.2":{
4130 "remoteAs":100,
4131 "localAs":100,
4132 "nbrInternalLink":true,
4133 "hostname":"frr",
4134 "bgpVersion":4,
4135 "remoteRouterId":"192.0.2.2",
4136 "localRouterId":"192.0.2.1",
4137 "bgpState":"Established",
4138 "bgpTimerUpMsec":8370000,
4139 "bgpTimerUpString":"02:19:30",
4140 "bgpTimerUpEstablishedEpoch":1613054251,
4141 "bgpTimerLastRead":30000,
4142 "bgpTimerLastWrite":30000,
4143 "bgpInUpdateElapsedTimeMsecs":8368000,
4144 "bgpTimerHoldTimeMsecs":180000,
4145 "bgpTimerKeepAliveIntervalMsecs":60000,
4146 "bgpTcpMssConfigured":150, => new entry
4147 "bgpTcpMssSynced":138, => new entry
4148
4149 .. include:: routeserver.rst
4150
4151 .. include:: rpki.rst
4152
4153 .. include:: wecmp_linkbw.rst
4154
4155 .. include:: flowspec.rst
4156
4157 .. [#med-transitivity-rant] For some set of objects to have an order, there *must* be some binary ordering relation that is defined for *every* combination of those objects, and that relation *must* be transitive. I.e.:, if the relation operator is <, and if a < b and b < c then that relation must carry over and it *must* be that a < c for the objects to have an order. The ordering relation may allow for equality, i.e. a < b and b < a may both be true and imply that a and b are equal in the order and not distinguished by it, in which case the set has a partial order. Otherwise, if there is an order, all the objects have a distinct place in the order and the set has a total order)
4158 .. [bgp-route-osci-cond] McPherson, D. and Gill, V. and Walton, D., "Border Gateway Protocol (BGP) Persistent Route Oscillation Condition", IETF RFC3345
4159 .. [stable-flexible-ibgp] Flavel, A. and M. Roughan, "Stable and flexible iBGP", ACM SIGCOMM 2009
4160 .. [ibgp-correctness] Griffin, T. and G. Wilfong, "On the correctness of IBGP configuration", ACM SIGCOMM 2002