]> git.proxmox.com Git - mirror_frr.git/blame - doc/user/bgp.rst
Merge pull request #11159 from maduri111/bgpd-orr
[mirror_frr.git] / doc / user / bgp.rst
CommitLineData
0efdf0fe 1.. _bgp:
42fc5d26
QY
2
3***
4BGP
5***
6
8fcedbd2 7:abbr:`BGP` stands for Border Gateway Protocol. The latest BGP version is 4.
d1e7591e 8BGP-4 is one of the Exterior Gateway Protocols and the de facto standard
8fcedbd2
QY
9interdomain routing protocol. BGP-4 is described in :rfc:`1771` and updated by
10:rfc:`4271`. :rfc:`2858` adds multiprotocol support to BGP-4.
42fc5d26 11
0efdf0fe 12.. _starting-bgp:
42fc5d26
QY
13
14Starting BGP
15============
16
8fcedbd2
QY
17The default configuration file of *bgpd* is :file:`bgpd.conf`. *bgpd* searches
18the 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
20config is not being used.
42fc5d26 21
c1a54c05 22*bgpd* specific invocation options are described below. Common options may also
0efdf0fe 23be specified (:ref:`common-invocation-options`).
42fc5d26 24
c1a54c05 25.. program:: bgpd
42fc5d26 26
c9365894 27.. option:: -p, --bgp_port <port>
42fc5d26 28
db759bb0 29 Set the bgp protocol's port number. When port number is 0, that means do not
30 listen bgp port.
42fc5d26 31
c9365894 32.. option:: -l, --listenon
42fc5d26 33
d1aed873 34 Specify specific IP addresses for bgpd to listen on, rather than its default
c0868e8b 35 of ``0.0.0.0`` / ``::``. This can be useful to constrain bgpd to an internal
d1aed873
AMR
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.
42fc5d26 44
c17537f9
MBG
45 Note that this option implies the --no_kernel option, and no learned routes will be installed into the linux kernel.
46
d1aed873
AMR
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
11a9a236
DS
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
8dad2243
DS
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
11a9a236
DS
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
89LABEL 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
8fcedbd2 96.. _bgp-basic-concepts:
42fc5d26 97
8fcedbd2
QY
98Basic Concepts
99==============
42fc5d26 100
8fcedbd2 101.. _bgp-autonomous-systems:
c3c5a71f 102
8fcedbd2
QY
103Autonomous Systems
104------------------
42fc5d26 105
c0868e8b
QY
106From :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
111Each 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
113to 65535. The AS numbers 64512 through 65535 are defined as private AS numbers.
114Private AS numbers must not be advertised on the global Internet.
115
116The :abbr:`ASN (Autonomous System Number)` is one of the essential elements of
8fcedbd2 117BGP. BGP is a distance vector routing protocol, and the AS-Path framework
c0868e8b 118provides distance vector metric and loop detection to BGP.
42fc5d26 119
c0868e8b 120.. seealso:: :rfc:`1930`
42fc5d26 121
8fcedbd2 122.. _bgp-address-families:
42fc5d26 123
8fcedbd2
QY
124Address Families
125----------------
42fc5d26 126
c0868e8b
QY
127Multiprotocol extensions enable BGP to carry routing information for multiple
128network layer protocols. BGP supports an Address Family Identifier (AFI) for
129IPv4 and IPv6. Support is also provided for multiple sets of per-AFI
130information via the BGP Subsequent Address Family Identifier (SAFI). FRR
131supports SAFIs for unicast information, labeled information (:rfc:`3107` and
132:rfc:`8277`), and Layer 3 VPN information (:rfc:`4364` and :rfc:`4659`).
c3c5a71f 133
8fcedbd2 134.. _bgp-route-selection:
42fc5d26 135
8fcedbd2
QY
136Route Selection
137---------------
42fc5d26 138
8fcedbd2
QY
139The route selection process used by FRR's BGP implementation uses the following
140decision criterion, starting at the top of the list and going towards the
141bottom until one of the factors can be used.
42fc5d26 142
8fcedbd2 1431. **Weight check**
42fc5d26 144
c1a54c05 145 Prefer higher local weight routes to lower routes.
42fc5d26 146
8fcedbd2
QY
1472. **Local preference check**
148
c1a54c05 149 Prefer higher local preference routes to lower.
42fc5d26 150
8fcedbd2
QY
1513. **Local route check**
152
c1a54c05 153 Prefer local routes (statics, aggregates, redistributed) to received routes.
42fc5d26 154
8fcedbd2
QY
1554. **AS path length check**
156
c1a54c05 157 Prefer shortest hop-count AS_PATHs.
42fc5d26 158
8fcedbd2
QY
1595. **Origin check**
160
c1a54c05
QY
161 Prefer the lowest origin type route. That is, prefer IGP origin routes to
162 EGP, to Incomplete routes.
42fc5d26 163
8fcedbd2
QY
1646. **MED check**
165
c1a54c05 166 Where routes with a MED were received from the same AS, prefer the route
0efdf0fe 167 with the lowest MED. :ref:`bgp-med`.
42fc5d26 168
8fcedbd2
QY
1697. **External check**
170
c1a54c05
QY
171 Prefer the route received from an external, eBGP peer over routes received
172 from other types of peers.
42fc5d26 173
8fcedbd2
QY
1748. **IGP cost check**
175
c1a54c05 176 Prefer the route with the lower IGP cost.
42fc5d26 177
8fcedbd2
QY
1789. **Multi-path check**
179
c1a54c05
QY
180 If multi-pathing is enabled, then check whether the routes not yet
181 distinguished in preference may be considered equal. If
9e146a81 182 :clicmd:`bgp bestpath as-path multipath-relax` is set, all such routes are
c1a54c05
QY
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.
42fc5d26 185
8fcedbd2
QY
18610. **Already-selected external check**
187
07738543
QY
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
8fcedbd2
QY
19311. **Router-ID check**
194
07738543
QY
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
8fcedbd2
QY
20012. **Cluster-List length check**
201
07738543
QY
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
8fcedbd2
QY
20513. **Peer address**
206
07738543
QY
207 Prefer the route received from the peer with the higher transport layer
208 address, as a last-resort tie-breaker.
42fc5d26 209
8fcedbd2
QY
210.. _bgp-capability-negotiation:
211
212Capability Negotiation
213----------------------
214
215When adding IPv6 routing information exchange feature to BGP. There were some
216proposals. :abbr:`IETF (Internet Engineering Task Force)`
217:abbr:`IDR (Inter Domain Routing)` adopted a proposal called Multiprotocol
218Extension for BGP. The specification is described in :rfc:`2283`. The protocol
219does not define new protocols. It defines new attributes to existing BGP. When
220it is used exchanging IPv6 routing information it is called BGP-4+. When it is
221used for exchanging multicast routing information it is called MBGP.
222
223*bgpd* supports Multiprotocol Extension for BGP. So if a remote peer supports
224the protocol, *bgpd* can exchange IPv6 and/or multicast routing information.
225
226Traditional BGP did not have the feature to detect a remote peer's
227capabilities, e.g. whether it can handle prefix types other than IPv4 unicast
228routes. This was a big problem using Multiprotocol Extension for BGP in an
229operational network. :rfc:`2842` adopted a feature called Capability
230Negotiation. *bgpd* use this Capability Negotiation to detect the remote peer's
231capabilities. If a peer is only configured as an IPv4 unicast neighbor, *bgpd*
232does not send these Capability Negotiation packets (at least not unless other
233optional BGP features require capability negotiation).
234
235By default, FRR will bring up peering with minimal common capability for the
236both sides. For example, if the local router has unicast and multicast
237capabilities and the remote router only has unicast capability the local router
238will establish the connection with unicast only capability. When there are no
239common capabilities, FRR sends Unsupported Capability error and then resets the
240connection.
241
8fcedbd2
QY
242.. _bgp-router-configuration:
243
244BGP Router Configuration
245========================
246
247ASN and Router ID
248-----------------
249
250First of all you must configure BGP router with the :clicmd:`router bgp ASN`
251command. The AS number is an identifier for the autonomous system. The BGP
252protocol uses the AS number for detecting whether the BGP connection is
253internal or external.
254
8fcedbd2
QY
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
8fcedbd2
QY
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
c8a5e5e1
QY
268
269.. _bgp-multiple-autonomous-systems:
270
271Multiple Autonomous Systems
272---------------------------
273
274FRR's BGP implementation is capable of running multiple autonomous systems at
275once. Each configured AS corresponds to a :ref:`zebra-vrf`. In the past, to get
276the same functionality the network administrator had to run a new *bgpd*
277process; using VRFs allows multiple autonomous systems to be handled in a
278single process.
279
280When using multiple autonomous systems, all router config blocks after the
281first one must specify a VRF to be the target of BGP's route selection. This
282VRF must be unique within respect to all other VRFs being used for the same
283purpose, i.e. two different autonomous systems cannot use the same VRF.
284However, 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*
edde3ce9
QY
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.
c8a5e5e1
QY
293
294Configuration of additional autonomous systems, or of a router that targets a
295specific VRF, is accomplished with the following command:
296
c8a5e5e1
QY
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
303An 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
c8a5e5e1
QY
320.. seealso:: :ref:`bgp-vrf-route-leaking`
321.. seealso:: :ref:`zebra-vrf`
322
323
324.. _bgp-views:
325
326Views
327-----
328
329In addition to supporting multiple autonomous systems, FRR's BGP implementation
330also supports *views*.
331
332BGP views are almost the same as normal BGP processes, except that routes
195c7461
QY
333selected by BGP are not installed into the kernel routing table. Each BGP view
334provides an independent set of routing information which is only distributed
335via BGP. Multiple views can be supported, and BGP view information is always
336independent from other routing protocols and Zebra/kernel routes. BGP views use
337the core instance (i.e., default VRF) for communication with peers.
edde3ce9 338
c8a5e5e1
QY
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
c8a5e5e1
QY
357.. clicmd:: show [ip] bgp view NAME
358
359 Display the routing table of BGP view ``NAME``.
360
361
8fcedbd2
QY
362Route Selection
363---------------
c3c5a71f 364
29adcd50 365.. clicmd:: bgp bestpath as-path confed
42fc5d26 366
c1a54c05
QY
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.
42fc5d26 370
29adcd50 371.. clicmd:: bgp bestpath as-path multipath-relax
42fc5d26 372
c1a54c05
QY
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.
c3c5a71f 376
29adcd50 377.. clicmd:: bgp bestpath compare-routerid
42fc5d26 378
c1a54c05
QY
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.
42fc5d26 382
c1a54c05
QY
383 If this option is enabled, then the already-selected check, where
384 already selected eBGP routes are preferred, is skipped.
42fc5d26 385
c1a54c05
QY
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.
42fc5d26 389
c1a54c05
QY
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
d1e7591e 392 router may attract all traffic to otherwise-equal paths because of this
c1a54c05
QY
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.
42fc5d26 396
ee88563a
JM
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
4a09f22f
DS
404.. clicmd:: maximum-paths (1-128)
405
406 Sets the maximum-paths value used for ecmp calculations for this
407 bgp instance in EBGP. The maximum value listed, 128, can be limited by
408 the ecmp cli for bgp or if the daemon was compiled with a lower
409 ecmp value. This value can also be set in ipv4/ipv6 unicast/labeled
410 unicast to only affect those particular afi/safi's.
411
412.. clicmd:: maximum-paths ibgp (1-128) [equal-cluster-length]
413
414 Sets the maximum-paths value used for ecmp calculations for this
415 bgp instance in IBGP. The maximum value listed, 128, can be limited by
416 the ecmp cli for bgp or if the daemon was compiled with a lower
417 ecmp value. This value can also be set in ipv4/ipv6 unicast/labeled
418 unicast to only affect those particular afi/safi's.
419
8fcedbd2
QY
420.. _bgp-distance:
421
422Administrative Distance Metrics
423-------------------------------
424
8fcedbd2
QY
425.. clicmd:: distance bgp (1-255) (1-255) (1-255)
426
f563acec
TS
427 This command changes distance value of BGP. The arguments are the distance
428 values for external routes, internal routes and local routes
8fcedbd2
QY
429 respectively.
430
8fcedbd2
QY
431.. clicmd:: distance (1-255) A.B.C.D/M
432
8fcedbd2
QY
433.. clicmd:: distance (1-255) A.B.C.D/M WORD
434
435 Sets the administrative distance for a particular route.
42fc5d26 436
713c64dd
DA
437.. _bgp-requires-policy:
438
439Require policy on EBGP
440-------------------------------
441
03750f1e 442.. clicmd:: bgp ebgp-requires-policy
713c64dd 443
8955d9e5 444 This command requires incoming and outgoing filters to be applied
b56f274a
DS
445 for eBGP sessions as part of RFC-8212 compliance. Without the incoming
446 filter, no routes will be accepted. Without the outgoing filter, no
447 routes will be announced.
8955d9e5 448
b56f274a
DS
449 This is enabled by default for the traditional configuration and
450 turned off by default for datacenter configuration.
713c64dd 451
b3cbe765
DA
452 When you enable/disable this option you MUST clear the session.
453
62c42b0e
DA
454 When the incoming or outgoing filter is missing you will see
455 "(Policy)" sign under ``show bgp summary``:
456
457 .. code-block:: frr
458
459 exit1# show bgp summary
460
6cac2fcc 461 IPv4 Unicast Summary (VRF default):
62c42b0e
DA
462 BGP router identifier 10.10.10.1, local AS number 65001 vrf-id 0
463 BGP table version 4
464 RIB entries 7, using 1344 bytes of memory
465 Peers 2, using 43 KiB of memory
466
b8f950d2 467 Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd PfxSnt Desc
468 192.168.0.2 4 65002 8 10 0 0 0 00:03:09 5 (Policy) N/A
469 fe80:1::2222 4 65002 9 11 0 0 0 00:03:09 (Policy) (Policy) N/A
62c42b0e 470
b56f274a
DS
471 Additionally a `show bgp neighbor` command would indicate in the `For address family:`
472 block that:
473
474 .. code-block:: frr
475
476 exit1# show bgp neighbor
477 ...
478 For address family: IPv4 Unicast
479 Update group 1, subgroup 1
480 Packet Queue length 0
481 Inbound soft reconfiguration allowed
482 Community attribute sent to this neighbor(all)
483 Inbound updates discarded due to missing policy
484 Outbound updates discarded due to missing policy
485 0 accepted prefixes
486
f0c81afe 487Reject routes with AS_SET or AS_CONFED_SET types
5031d886 488------------------------------------------------
f0c81afe 489
03750f1e 490.. clicmd:: bgp reject-as-sets
f0c81afe
DA
491
492 This command enables rejection of incoming and outgoing routes having AS_SET or AS_CONFED_SET type.
493
105227af
DA
494Suppress duplicate updates
495--------------------------
496
03750f1e 497.. clicmd:: bgp suppress-duplicates
105227af
DA
498
499 For example, BGP routers can generate multiple identical announcements with
500 empty community attributes if stripped at egress. This is an undesired behavior.
501 Suppress duplicate updates if the route actually not changed.
502 Default: enabled.
503
1ae314be
DA
504Send Hard Reset CEASE Notification for Administrative Reset
505-----------------------------------------------------------
506
507.. clicmd:: bgp hard-administrative-reset
508
509 Send Hard Reset CEASE Notification for 'Administrative Reset' events.
510
511 When disabled, and Graceful Restart Notification capability is exchanged
512 between the peers, Graceful Restart procedures apply, and routes will be
513 retained.
514
515 Enabled by default.
516
835e9c5d
DA
517Disable checking if nexthop is connected on EBGP sessions
518---------------------------------------------------------
519
03750f1e 520.. clicmd:: bgp disable-ebgp-connected-route-check
835e9c5d
DA
521
522 This command is used to disable the connection verification process for EBGP peering sessions
523 that are reachable by a single hop but are configured on a loopback interface or otherwise
524 configured with a non-directly connected IP address.
525
0efdf0fe 526.. _bgp-route-flap-dampening:
42fc5d26 527
8fcedbd2
QY
528Route Flap Dampening
529--------------------
42fc5d26 530
a30fec23 531.. clicmd:: bgp dampening (1-45) (1-20000) (1-50000) (1-255)
c1a54c05 532
a5c1e103 533 This command enables BGP route-flap dampening and specifies dampening parameters.
42fc5d26 534
c1a54c05 535 half-life
a5c1e103 536 Half-life time for the penalty
42fc5d26 537
c1a54c05 538 reuse-threshold
a5c1e103 539 Value to start reusing a route
42fc5d26 540
c1a54c05 541 suppress-threshold
a5c1e103 542 Value to start suppressing a route
42fc5d26 543
c1a54c05 544 max-suppress
a5c1e103 545 Maximum duration to suppress a stable route
42fc5d26 546
c1a54c05 547 The route-flap damping algorithm is compatible with :rfc:`2439`. The use of
a5c1e103 548 this command is not recommended nowadays.
42fc5d26 549
319a7d06
DA
550 At the moment, route-flap dampening is not working per VRF and is working only
551 for IPv4 unicast and multicast.
552
c1a54c05 553.. seealso::
8fcedbd2 554 https://www.ripe.net/publications/docs/ripe-378
42fc5d26 555
0efdf0fe 556.. _bgp-med:
42fc5d26 557
8fcedbd2
QY
558Multi-Exit Discriminator
559------------------------
42fc5d26 560
8fcedbd2 561The BGP :abbr:`MED (Multi-Exit Discriminator)` attribute has properties which
c1a54c05
QY
562can cause subtle convergence problems in BGP. These properties and problems
563have proven to be hard to understand, at least historically, and may still not
564be widely understood. The following attempts to collect together and present
565what is known about MED, to help operators and FRR users in designing and
566configuring their networks.
42fc5d26 567
07a17e6d
QY
568The BGP :abbr:`MED` attribute is intended to allow one AS to indicate its
569preferences for its ingress points to another AS. The MED attribute will not be
570propagated on to another AS by the receiving AS - it is 'non-transitive' in the
571BGP sense.
42fc5d26 572
c1a54c05
QY
573E.g., if AS X and AS Y have 2 different BGP peering points, then AS X might set
574a MED of 100 on routes advertised at one and a MED of 200 at the other. When AS
575Y selects between otherwise equal routes to or via AS X, AS Y should prefer to
576take the path via the lower MED peering of 100 with AS X. Setting the MED
577allows an AS to influence the routing taken to it within another, neighbouring
578AS.
42fc5d26
QY
579
580In this use of MED it is not really meaningful to compare the MED value on
c1a54c05
QY
581routes where the next AS on the paths differs. E.g., if AS Y also had a route
582for some destination via AS Z in addition to the routes from AS X, and AS Z had
583also set a MED, it wouldn't make sense for AS Y to compare AS Z's MED values to
584those of AS X. The MED values have been set by different administrators, with
585different frames of reference.
42fc5d26
QY
586
587The default behaviour of BGP therefore is to not compare MED values across
dc1046f7 588routes received from different neighbouring ASes. In FRR this is done by
c1a54c05
QY
589comparing the neighbouring, left-most AS in the received AS_PATHs of the routes
590and only comparing MED if those are the same.
591
592Unfortunately, this behaviour of MED, of sometimes being compared across routes
593and sometimes not, depending on the properties of those other routes, means MED
594can cause the order of preference over all the routes to be undefined. That is,
595given routes A, B, and C, if A is preferred to B, and B is preferred to C, then
596a well-defined order should mean the preference is transitive (in the sense of
013f9762 597orders [#med-transitivity-rant]_) and that A would be preferred to C.
42fc5d26 598
c3c5a71f
QY
599However, when MED is involved this need not be the case. With MED it is
600possible that C is actually preferred over A. So A is preferred to B, B is
601preferred to C, but C is preferred to A. This can be true even where BGP
c1a54c05
QY
602defines a deterministic 'most preferred' route out of the full set of A,B,C.
603With MED, for any given set of routes there may be a deterministically
604preferred route, but there need not be any way to arrange them into any order
605of preference. With unmodified MED, the order of preference of routes literally
606becomes undefined.
42fc5d26 607
c3c5a71f 608That MED can induce non-transitive preferences over routes can cause issues.
c1a54c05
QY
609Firstly, it may be perceived to cause routing table churn locally at speakers;
610secondly, and more seriously, it may cause routing instability in iBGP
611topologies, where sets of speakers continually oscillate between different
612paths.
42fc5d26 613
c3c5a71f 614The first issue arises from how speakers often implement routing decisions.
c1a54c05
QY
615Though BGP defines a selection process that will deterministically select the
616same route as best at any given speaker, even with MED, that process requires
617evaluating all routes together. For performance and ease of implementation
618reasons, many implementations evaluate route preferences in a pair-wise fashion
619instead. Given there is no well-defined order when MED is involved, the best
620route that will be chosen becomes subject to implementation details, such as
621the order the routes are stored in. That may be (locally) non-deterministic,
622e.g.: it may be the order the routes were received in.
42fc5d26
QY
623
624This indeterminism may be considered undesirable, though it need not cause
c1a54c05
QY
625problems. It may mean additional routing churn is perceived, as sometimes more
626updates may be produced than at other times in reaction to some event .
42fc5d26
QY
627
628This first issue can be fixed with a more deterministic route selection that
c3c5a71f 629ensures routes are ordered by the neighbouring AS during selection.
9e146a81 630:clicmd:`bgp deterministic-med`. This may reduce the number of updates as routes
c1a54c05
QY
631are received, and may in some cases reduce routing churn. Though, it could
632equally deterministically produce the largest possible set of updates in
633response to the most common sequence of received updates.
42fc5d26
QY
634
635A deterministic order of evaluation tends to imply an additional overhead of
c3c5a71f 636sorting over any set of n routes to a destination. The implementation of
dc1046f7 637deterministic MED in FRR scales significantly worse than most sorting
c1a54c05
QY
638algorithms at present, with the number of paths to a given destination. That
639number is often low enough to not cause any issues, but where there are many
640paths, the deterministic comparison may quickly become increasingly expensive
641in terms of CPU.
642
643Deterministic local evaluation can *not* fix the second, more major, issue of
644MED however. Which is that the non-transitive preference of routes MED can
645cause may lead to routing instability or oscillation across multiple speakers
646in iBGP topologies. This can occur with full-mesh iBGP, but is particularly
647problematic in non-full-mesh iBGP topologies that further reduce the routing
648information known to each speaker. This has primarily been documented with iBGP
749afd7d
RF
649:ref:`route-reflection <bgp-route-reflector>` topologies. However, any
650route-hiding technologies potentially could also exacerbate oscillation with MED.
c1a54c05
QY
651
652This second issue occurs where speakers each have only a subset of routes, and
653there are cycles in the preferences between different combinations of routes -
654as the undefined order of preference of MED allows - and the routes are
655distributed in a way that causes the BGP speakers to 'chase' those cycles. This
656can occur even if all speakers use a deterministic order of evaluation in route
657selection.
658
659E.g., speaker 4 in AS A might receive a route from speaker 2 in AS X, and from
660speaker 3 in AS Y; while speaker 5 in AS A might receive that route from
661speaker 1 in AS Y. AS Y might set a MED of 200 at speaker 1, and 100 at speaker
6623. I.e, using ASN:ID:MED to label the speakers:
42fc5d26
QY
663
664::
665
c1a54c05
QY
666 .
667 /---------------\\
42fc5d26 668 X:2------|--A:4-------A:5--|-Y:1:200
c1a54c05
QY
669 Y:3:100--|-/ |
670 \\---------------/
c3c5a71f 671
42fc5d26 672
42fc5d26 673
c1a54c05
QY
674Assuming all other metrics are equal (AS_PATH, ORIGIN, 0 IGP costs), then based
675on the RFC4271 decision process speaker 4 will choose X:2 over Y:3:100, based
676on the lower ID of 2. Speaker 4 advertises X:2 to speaker 5. Speaker 5 will
677continue to prefer Y:1:200 based on the ID, and advertise this to speaker 4.
678Speaker 4 will now have the full set of routes, and the Y:1:200 it receives
679from 5 will beat X:2, but when speaker 4 compares Y:1:200 to Y:3:100 the MED
680check now becomes active as the ASes match, and now Y:3:100 is preferred.
681Speaker 4 therefore now advertises Y:3:100 to 5, which will also agrees that
682Y:3:100 is preferred to Y:1:200, and so withdraws the latter route from 4.
683Speaker 4 now has only X:2 and Y:3:100, and X:2 beats Y:3:100, and so speaker 4
684implicitly updates its route to speaker 5 to X:2. Speaker 5 sees that Y:1:200
685beats X:2 based on the ID, and advertises Y:1:200 to speaker 4, and the cycle
686continues.
42fc5d26
QY
687
688The root cause is the lack of a clear order of preference caused by how MED
689sometimes is and sometimes is not compared, leading to this cycle in the
690preferences between the routes:
691
692::
693
c1a54c05
QY
694 .
695 /---> X:2 ---beats---> Y:3:100 --\\
696 | |
697 | |
698 \\---beats--- Y:1:200 <---beats---/
c3c5a71f 699
42fc5d26 700
42fc5d26
QY
701
702This particular type of oscillation in full-mesh iBGP topologies can be
703avoided by speakers preferring already selected, external routes rather than
c1a54c05
QY
704choosing to update to new a route based on a post-MED metric (e.g. router-ID),
705at the cost of a non-deterministic selection process. FRR implements this, as
706do many other implementations, so long as it is not overridden by setting
9e146a81 707:clicmd:`bgp bestpath compare-routerid`, and see also
8fcedbd2 708:ref:`bgp-route-selection`.
42fc5d26
QY
709
710However, more complex and insidious cycles of oscillation are possible with
c3c5a71f 711iBGP route-reflection, which are not so easily avoided. These have been
c1a54c05
QY
712documented in various places. See, e.g.:
713
714- [bgp-route-osci-cond]_
715- [stable-flexible-ibgp]_
716- [ibgp-correctness]_
717
718for concrete examples and further references.
719
720There is as of this writing *no* known way to use MED for its original purpose;
721*and* reduce routing information in iBGP topologies; *and* be sure to avoid the
722instability problems of MED due the non-transitive routing preferences it can
723induce; in general on arbitrary networks.
724
725There may be iBGP topology specific ways to reduce the instability risks, even
726while using MED, e.g.: by constraining the reflection topology and by tuning
013f9762 727IGP costs between route-reflector clusters, see :rfc:`3345` for details. In the
c1a54c05
QY
728near future, the Add-Path extension to BGP may also solve MED oscillation while
729still allowing MED to be used as intended, by distributing "best-paths per
730neighbour AS". This would be at the cost of distributing at least as many
731routes to all speakers as a full-mesh iBGP would, if not more, while also
732imposing similar CPU overheads as the "Deterministic MED" feature at each
733Add-Path reflector.
42fc5d26
QY
734
735More generally, the instability problems that MED can introduce on more
736complex, non-full-mesh, iBGP topologies may be avoided either by:
737
013f9762 738- Setting :clicmd:`bgp always-compare-med`, however this allows MED to be compared
42fc5d26
QY
739 across values set by different neighbour ASes, which may not produce
740 coherent desirable results, of itself.
4b44467c 741- Effectively ignoring MED by setting MED to the same value (e.g.: 0) using
013f9762
QY
742 :clicmd:`set metric METRIC` on all received routes, in combination with
743 setting :clicmd:`bgp always-compare-med` on all speakers. This is the simplest
42fc5d26
QY
744 and most performant way to avoid MED oscillation issues, where an AS is happy
745 not to allow neighbours to inject this problematic metric.
746
42fc5d26
QY
747As MED is evaluated after the AS_PATH length check, another possible use for
748MED is for intra-AS steering of routes with equal AS_PATH length, as an
c1a54c05
QY
749extension of the last case above. As MED is evaluated before IGP metric, this
750can allow cold-potato routing to be implemented to send traffic to preferred
751hand-offs with neighbours, rather than the closest hand-off according to the
752IGP metric.
753
754Note that even if action is taken to address the MED non-transitivity issues,
755other oscillations may still be possible. E.g., on IGP cost if iBGP and IGP
756topologies are at cross-purposes with each other - see the Flavel and Roughan
757paper above for an example. Hence the guideline that the iBGP topology should
758follow the IGP topology.
759
29adcd50 760.. clicmd:: bgp deterministic-med
42fc5d26 761
c1a54c05
QY
762 Carry out route-selection in way that produces deterministic answers
763 locally, even in the face of MED and the lack of a well-defined order of
764 preference it can induce on routes. Without this option the preferred route
765 with MED may be determined largely by the order that routes were received
766 in.
42fc5d26 767
c1a54c05
QY
768 Setting this option will have a performance cost that may be noticeable when
769 there are many routes for each destination. Currently in FRR it is
770 implemented in a way that scales poorly as the number of routes per
771 destination increases.
42fc5d26 772
c1a54c05 773 The default is that this option is not set.
42fc5d26
QY
774
775Note that there are other sources of indeterminism in the route selection
776process, specifically, the preference for older and already selected routes
8fcedbd2 777from eBGP peers, :ref:`bgp-route-selection`.
42fc5d26 778
29adcd50 779.. clicmd:: bgp always-compare-med
42fc5d26 780
c1a54c05
QY
781 Always compare the MED on routes, even when they were received from
782 different neighbouring ASes. Setting this option makes the order of
783 preference of routes more defined, and should eliminate MED induced
784 oscillations.
42fc5d26 785
c1a54c05 786 If using this option, it may also be desirable to use
9e146a81 787 :clicmd:`set metric METRIC` to set MED to 0 on routes received from external
c1a54c05 788 neighbours.
42fc5d26 789
9e146a81
QY
790 This option can be used, together with :clicmd:`set metric METRIC` to use
791 MED as an intra-AS metric to steer equal-length AS_PATH routes to, e.g.,
792 desired exit points.
42fc5d26 793
efcb2ebb 794
795.. _bgp-graceful-restart:
796
797Graceful Restart
798----------------
799
800BGP graceful restart functionality as defined in
801`RFC-4724 <https://tools.ietf.org/html/rfc4724/>`_ defines the mechanisms that
802allows BGP speaker to continue to forward data packets along known routes
803while the routing protocol information is being restored.
804
805
806Usually, when BGP on a router restarts, all the BGP peers detect that the
807session went down and then came up. This "down/up" transition results in a
808"routing flap" and causes BGP route re-computation, generation of BGP routing
809updates, and unnecessary churn to the forwarding tables.
810
811The following functionality is provided by graceful restart:
812
8131. The feature allows the restarting router to indicate to the helping peer the
814 routes it can preserve in its forwarding plane during control plane restart
815 by sending graceful restart capability in the OPEN message sent during
816 session establishment.
8172. The feature allows helping router to advertise to all other peers the routes
818 received from the restarting router which are preserved in the forwarding
819 plane of the restarting router during control plane restart.
820
821
822::
823
824
825
826 (R1)-----------------------------------------------------------------(R2)
827
828 1. BGP Graceful Restart Capability exchanged between R1 & R2.
829
830 <--------------------------------------------------------------------->
831
832 2. Kill BGP Process at R1.
833
834 ---------------------------------------------------------------------->
835
836 3. R2 Detects the above BGP Restart & verifies BGP Restarting
837 Capability of R1.
838
839 4. Start BGP Process at R1.
840
841 5. Re-establish the BGP session between R1 & R2.
842
843 <--------------------------------------------------------------------->
844
845 6. R2 Send initial route updates, followed by End-Of-Rib.
846
847 <----------------------------------------------------------------------
848
849 7. R1 was waiting for End-Of-Rib from R2 & which has been received
850 now.
851
852 8. R1 now runs BGP Best-Path algorithm. Send Initial BGP Update,
853 followed by End-Of Rib
854
855 <--------------------------------------------------------------------->
856
857
4907bcd8 858.. _bgp-GR-preserve-forwarding-state:
859
860BGP-GR Preserve-Forwarding State
861^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
862
863BGP OPEN message carrying optional capabilities for Graceful Restart has
8648 bit “Flags for Address Family” for given AFI and SAFI. This field contains
865bit flags relating to routes that were advertised with the given AFI and SAFI.
866
867.. code-block:: frr
868
869 0 1 2 3 4 5 6 7
870 +-+-+-+-+-+-+-+-+
871 |F| Reserved |
872 +-+-+-+-+-+-+-+-+
873
874The most significant bit is defined as the Forwarding State (F) bit, which
875can be used to indicate whether the forwarding state for routes that were
876advertised with the given AFI and SAFI has indeed been preserved during the
877previous BGP restart. When set (value 1), the bit indicates that the
878forwarding state has been preserved.
879The remaining bits are reserved and MUST be set to zero by the sender and
880ignored by the receiver.
881
4907bcd8 882.. clicmd:: bgp graceful-restart preserve-fw-state
883
884FRR gives us the option to enable/disable the "F" flag using this specific
885vty command. However, it doesn't have the option to enable/disable
886this flag only for specific AFI/SAFI i.e. when this command is used, it
887applied to all the supported AFI/SAFI combinations for this peer.
888
efcb2ebb 889.. _bgp-end-of-rib-message:
890
891End-of-RIB (EOR) message
892^^^^^^^^^^^^^^^^^^^^^^^^
893
894An UPDATE message with no reachable Network Layer Reachability Information
895(NLRI) and empty withdrawn NLRI is specified as the End-of-RIB marker that can
896be used by a BGP speaker to indicate to its peer the completion of the initial
897routing update after the session is established.
898
899For the IPv4 unicast address family, the End-of-RIB marker is an UPDATE message
900with the minimum length. For any other address family, it is an UPDATE message
901that contains only the MP_UNREACH_NLRI attribute with no withdrawn routes for
902that <AFI, SAFI>.
903
904Although the End-of-RIB marker is specified for the purpose of BGP graceful
905restart, it is noted that the generation of such a marker upon completion of
906the initial update would be useful for routing convergence in general, and thus
907the practice is recommended.
908
909.. _bgp-route-selection-deferral-timer:
910
911Route Selection Deferral Timer
912^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
913
914Specifies the time the restarting router defers the route selection process
915after restart.
916
917Restarting Router : The usage of route election deferral timer is specified
918in https://tools.ietf.org/html/rfc4724#section-4.1
919
920Once the session between the Restarting Speaker and the Receiving Speaker is
921re-established, the Restarting Speaker will receive and process BGP messages
922from its peers.
923
924However, it MUST defer route selection for an address family until it either.
925
9261. Receives the End-of-RIB marker from all its peers (excluding the ones with
927 the "Restart State" bit set in the received capability and excluding the ones
928 that do not advertise the graceful restart capability).
9292. The Selection_Deferral_Timer timeout.
930
efcb2ebb 931.. clicmd:: bgp graceful-restart select-defer-time (0-3600)
932
933 This is command, will set deferral time to value specified.
934
935
efcb2ebb 936.. clicmd:: bgp graceful-restart rib-stale-time (1-3600)
937
938 This is command, will set the time for which stale routes are kept in RIB.
939
dcbebfd3
DA
940.. clicmd:: bgp graceful-restart restart-time (0-4095)
941
942 Set the time to wait to delete stale routes before a BGP open message
943 is received.
944
945 Using with Long-lived Graceful Restart capability, this is recommended
946 setting this timer to 0 and control stale routes with
947 ``bgp long-lived-graceful-restart stale-time``.
948
949 Default value is 120.
950
2b3de9e5
DA
951.. clicmd:: bgp graceful-restart stalepath-time (1-4095)
952
953 This is command, will set the max time (in seconds) to hold onto
954 restarting peer's stale paths.
955
956 It also controls Enhanced Route-Refresh timer.
957
958 If this command is configured and the router does not receive a Route-Refresh EoRR
959 message, the router removes the stale routes from the BGP table after the timer
960 expires. The stale path timer is started when the router receives a Route-Refresh
961 BoRR message.
962
f2ca5c5b
DA
963.. clicmd:: bgp graceful-restart notification
964
965 Indicate Graceful Restart support for BGP NOTIFICATION messages.
966
967 After changing this parameter, you have to reset the peers in order to advertise
968 N-bit in Graceful Restart capability.
969
19f98055
DA
970 Without Graceful-Restart Notification capability (N-bit not set), GR is not
971 activated when receiving CEASE/HOLDTIME expire notifications.
972
973 When sending ``CEASE/Administrative Reset`` (``clear bgp``), the session is closed
974 and routes are not retained. When N-bit is set and ``bgp hard-administrative-reset``
975 is turned off Graceful-Restart is activated and routes are retained.
976
f2ca5c5b
DA
977 Enabled by default.
978
efcb2ebb 979.. _bgp-per-peer-graceful-restart:
980
981BGP Per Peer Graceful Restart
982^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
983
984Ability to enable and disable graceful restart, helper and no GR at all mode
985functionality at peer level.
986
987So bgp graceful restart can be enabled at modes global BGP level or at per
988peer level. There are two FSM, one for BGP GR global mode and other for peer
989per GR.
990
991Default global mode is helper and default peer per mode is inherit from global.
992If per peer mode is configured, the GR mode of this particular peer will
993override the global mode.
994
2ba1fe69 995.. _bgp-GR-global-mode-cmd:
efcb2ebb 996
997BGP GR Global Mode Commands
998^^^^^^^^^^^^^^^^^^^^^^^^^^^
999
efcb2ebb 1000.. clicmd:: bgp graceful-restart
1001
f563acec 1002 This command will enable BGP graceful restart functionality at the global
efcb2ebb 1003 level.
1004
efcb2ebb 1005.. clicmd:: bgp graceful-restart disable
1006
1007 This command will disable both the functionality graceful restart and helper
1008 mode.
1009
1010
1011.. _bgp-GR-peer-mode-cmd:
1012
1013BGP GR Peer Mode Commands
1014^^^^^^^^^^^^^^^^^^^^^^^^^
1015
efcb2ebb 1016.. clicmd:: neighbor A.B.C.D graceful-restart
1017
f563acec 1018 This command will enable BGP graceful restart functionality at the peer
efcb2ebb 1019 level.
1020
efcb2ebb 1021.. clicmd:: neighbor A.B.C.D graceful-restart-helper
1022
1023 This command will enable BGP graceful restart helper only functionality
1024 at the peer level.
1025
efcb2ebb 1026.. clicmd:: neighbor A.B.C.D graceful-restart-disable
1027
1028 This command will disable the entire BGP graceful restart functionality
1029 at the peer level.
1030
1031
8606be87
DA
1032Long-lived Graceful Restart
1033---------------------------
1034
1035Currently, only restarter mode is supported. This capability is advertised only
1036if graceful restart capability is negotiated.
1037
7f8a9a24 1038.. clicmd:: bgp long-lived-graceful-restart stale-time (1-4294967295)
8606be87
DA
1039
1040 Specifies the maximum time to wait before purging long-lived stale routes for
1041 helper routers.
1042
7f8a9a24
DA
1043 Default is 0, which means the feature is off by default. Only graceful
1044 restart takes into account.
8606be87 1045
df465afe
DS
1046.. _bgp-shutdown:
1047
1048Administrative Shutdown
1049-----------------------
1050
03750f1e 1051.. clicmd:: bgp shutdown [message MSG...]
df465afe
DS
1052
1053 Administrative shutdown of all peers of a bgp instance. Drop all BGP peers,
1054 but preserve their configurations. The peers are notified in accordance with
1055 `RFC 8203 <https://tools.ietf.org/html/rfc8203/>`_ by sending a
1056 ``NOTIFICATION`` message with error code ``Cease`` and subcode
1057 ``Administrative Shutdown`` prior to terminating connections. This global
1058 shutdown is independent of the neighbor shutdown, meaning that individually
1059 shut down peers will not be affected by lifting it.
1060
1061 An optional shutdown message `MSG` can be specified.
1062
1063
0efdf0fe 1064.. _bgp-network:
42fc5d26 1065
8fcedbd2
QY
1066Networks
1067--------
42fc5d26 1068
c1a54c05 1069.. clicmd:: network A.B.C.D/M
42fc5d26 1070
9eb95b3b 1071 This command adds the announcement network.
c3c5a71f 1072
9eb95b3b
QY
1073 .. code-block:: frr
1074
1075 router bgp 1
1076 address-family ipv4 unicast
1077 network 10.0.0.0/8
1078 exit-address-family
42fc5d26 1079
c1a54c05
QY
1080 This configuration example says that network 10.0.0.0/8 will be
1081 announced to all neighbors. Some vendors' routers don't advertise
1082 routes if they aren't present in their IGP routing tables; `bgpd`
1083 doesn't care about IGP routes when announcing its routes.
c3c5a71f 1084
42fc5d26 1085
03750f1e 1086.. clicmd:: bgp network import-check
f990a416
DS
1087
1088 This configuration modifies the behavior of the network statement.
1089 If you have this configured the underlying network must exist in
1090 the rib. If you have the [no] form configured then BGP will not
1091 check for the networks existence in the rib. For versions 7.3 and
1092 before frr defaults for datacenter were the network must exist,
1093 traditional did not check for existence. For versions 7.4 and beyond
1094 both traditional and datacenter the network must exist.
1095
ef1b6319 1096.. _bgp-ipv6-support:
547ba033
MH
1097
1098IPv6 Support
1099------------
1100
03750f1e 1101.. clicmd:: neighbor A.B.C.D activate
547ba033 1102
ef1b6319 1103 This configuration modifies whether to enable an address family for a
547ba033
MH
1104 specific neighbor. By default only the IPv4 unicast address family is
1105 enabled.
1106
1107 .. code-block:: frr
1108
1109 router bgp 1
1110 address-family ipv6 unicast
1111 neighbor 2001:0DB8::1 activate
1112 network 2001:0DB8:5009::/64
1113 exit-address-family
1114
1115 This configuration example says that network 2001:0DB8:5009::/64 will be
1116 announced and enables the neighbor 2001:0DB8::1 to receive this announcement.
1117
547ba033
MH
1118 By default, only the IPv4 unicast address family is announced to all
1119 neighbors. Using the 'no bgp default ipv4-unicast' configuration overrides
1120 this default so that all address families need to be enabled explicitly.
1121
1122 .. code-block:: frr
1123
1124 router bgp 1
1125 no bgp default ipv4-unicast
1126 neighbor 10.10.10.1 remote-as 2
1127 neighbor 2001:0DB8::1 remote-as 3
1128 address-family ipv4 unicast
1129 neighbor 10.10.10.1 activate
1130 network 192.168.1.0/24
1131 exit-address-family
1132 address-family ipv6 unicast
1133 neighbor 2001:0DB8::1 activate
1134 network 2001:0DB8:5009::/64
1135 exit-address-family
1136
1137 This configuration demonstrates how the 'no bgp default ipv4-unicast' might
1138 be used in a setup with two upstreams where each of the upstreams should only
f563acec 1139 receive either IPv4 or IPv6 announcements.
547ba033 1140
2c853e5e
DA
1141 Using the ``bgp default ipv6-unicast`` configuration, IPv6 unicast
1142 address family is enabled by default for all new neighbors.
1143
547ba033 1144
8fcedbd2 1145.. _bgp-route-aggregation:
42fc5d26
QY
1146
1147Route Aggregation
1148-----------------
1149
5101fece 1150.. _bgp-route-aggregation-ipv4:
1151
1152Route Aggregation-IPv4 Address Family
1153^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1154
c1a54c05 1155.. clicmd:: aggregate-address A.B.C.D/M
c3c5a71f 1156
c1a54c05 1157 This command specifies an aggregate address.
42fc5d26 1158
9a339b7f
DA
1159 In order to advertise an aggregated prefix, a more specific (longer) prefix
1160 MUST exist in the BGP table. For example, if you want to create an
1161 ``aggregate-address 10.0.0.0/24``, you should make sure you have something
1162 like ``10.0.0.5/32`` or ``10.0.0.0/26``, or any other smaller prefix in the
1163 BGP table. The routing information table (RIB) is not enough, you have to
1164 redistribute them into the BGP table.
1165
ac2201bb
DA
1166.. clicmd:: aggregate-address A.B.C.D/M route-map NAME
1167
1168 Apply a route-map for an aggregated prefix.
1169
a87d2ef7
DA
1170.. clicmd:: aggregate-address A.B.C.D/M origin <egp|igp|incomplete>
1171
1172 Override ORIGIN for an aggregated prefix.
1173
c1a54c05 1174.. clicmd:: aggregate-address A.B.C.D/M as-set
42fc5d26 1175
c1a54c05
QY
1176 This command specifies an aggregate address. Resulting routes include
1177 AS set.
42fc5d26 1178
c1a54c05 1179.. clicmd:: aggregate-address A.B.C.D/M summary-only
c3c5a71f 1180
9a339b7f
DA
1181 This command specifies an aggregate address.
1182
1183 Longer prefixes advertisements of more specific routes to all neighbors are suppressed.
42fc5d26 1184
01338ba1
RZ
1185.. clicmd:: aggregate-address A.B.C.D/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
8fbb9c95
RZ
1190.. clicmd:: aggregate-address A.B.C.D/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
ac2201bb 1195
03750f1e
QY
1196 This configuration example sets up an ``aggregate-address`` under the ipv4
1197 address-family.
5101fece 1198
1199 .. code-block:: frr
1200
1201 router bgp 1
1202 address-family ipv4 unicast
1203 aggregate-address 10.0.0.0/8
1204 aggregate-address 20.0.0.0/8 as-set
1205 aggregate-address 40.0.0.0/8 summary-only
ac2201bb 1206 aggregate-address 50.0.0.0/8 route-map aggr-rmap
5101fece 1207 exit-address-family
1208
1209
1210.. _bgp-route-aggregation-ipv6:
1211
1212Route Aggregation-IPv6 Address Family
1213^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1214
5101fece 1215.. clicmd:: aggregate-address X:X::X:X/M
1216
1217 This command specifies an aggregate address.
1218
ac2201bb
DA
1219.. clicmd:: aggregate-address X:X::X:X/M route-map NAME
1220
1221 Apply a route-map for an aggregated prefix.
1222
a87d2ef7
DA
1223.. clicmd:: aggregate-address X:X::X:X/M origin <egp|igp|incomplete>
1224
1225 Override ORIGIN for an aggregated prefix.
1226
5101fece 1227.. clicmd:: aggregate-address X:X::X:X/M as-set
1228
1229 This command specifies an aggregate address. Resulting routes include
1230 AS set.
1231
5101fece 1232.. clicmd:: aggregate-address X:X::X:X/M summary-only
1233
9a339b7f
DA
1234 This command specifies an aggregate address.
1235
1236 Longer prefixes advertisements of more specific routes to all neighbors are suppressed
5101fece 1237
01338ba1
RZ
1238.. clicmd:: aggregate-address X:X::X:X/M matching-MED-only
1239
1240 Configure the aggregated address to only be created when the routes MED
1241 match, otherwise no aggregated route will be created.
1242
8fbb9c95
RZ
1243.. clicmd:: aggregate-address X:X::X:X/M suppress-map NAME
1244
1245 Similar to `summary-only`, but will only suppress more specific routes that
1246 are matched by the selected route-map.
01338ba1 1247
5101fece 1248
03750f1e
QY
1249 This configuration example sets up an ``aggregate-address`` under the ipv6
1250 address-family.
5101fece 1251
1252 .. code-block:: frr
1253
1254 router bgp 1
1255 address-family ipv6 unicast
1256 aggregate-address 10::0/64
ac2201bb
DA
1257 aggregate-address 20::0/64 as-set
1258 aggregate-address 40::0/64 summary-only
1259 aggregate-address 50::0/64 route-map aggr-rmap
5101fece 1260 exit-address-family
c3c5a71f 1261
03750f1e 1262
8fcedbd2 1263.. _bgp-redistribute-to-bgp:
42fc5d26 1264
8fcedbd2
QY
1265Redistribution
1266--------------
42fc5d26 1267
a874b986
QY
1268Redistribution configuration should be placed under the ``address-family``
1269section for the specific AF to redistribute into. Protocol availability for
1270redistribution is determined by BGP AF; for example, you cannot redistribute
1271OSPFv3 into ``address-family ipv4 unicast`` as OSPFv3 supports IPv6.
1272
1273.. clicmd:: redistribute <babel|connected|eigrp|isis|kernel|openfabric|ospf|ospf6|rip|ripng|sharp|static|table> [metric (0-4294967295)] [route-map WORD]
1274
03750f1e 1275Redistribute routes from other protocols into BGP.
42fc5d26 1276
245d354f
DA
1277.. clicmd:: redistribute vnc-direct
1278
1279 Redistribute VNC direct (not via zebra) routes to BGP process.
1280
d70583f7
D
1281.. clicmd:: bgp update-delay MAX-DELAY
1282
d70583f7
D
1283.. clicmd:: bgp update-delay MAX-DELAY ESTABLISH-WAIT
1284
1285 This feature is used to enable read-only mode on BGP process restart or when
1286 a BGP process is cleared using 'clear ip bgp \*'. Note that this command is
1287 configured at the global level and applies to all bgp instances/vrfs. It
1288 cannot be used at the same time as the "update-delay" command described below,
1289 which is entered in each bgp instance/vrf desired to delay update installation
1290 and advertisements. The global and per-vrf approaches to defining update-delay
1291 are mutually exclusive.
1292
1293 When applicable, read-only mode would begin as soon as the first peer reaches
1294 Established status and a timer for max-delay seconds is started. During this
1295 mode BGP doesn't run any best-path or generate any updates to its peers. This
1296 mode continues until:
1297
1298 1. All the configured peers, except the shutdown peers, have sent explicit EOR
1299 (End-Of-RIB) or an implicit-EOR. The first keep-alive after BGP has reached
1300 Established is considered an implicit-EOR.
1301 If the establish-wait optional value is given, then BGP will wait for
1302 peers to reach established from the beginning of the update-delay till the
1303 establish-wait period is over, i.e. the minimum set of established peers for
1304 which EOR is expected would be peers established during the establish-wait
1305 window, not necessarily all the configured neighbors.
1306 2. max-delay period is over.
1307
1308 On hitting any of the above two conditions, BGP resumes the decision process
1309 and generates updates to its peers.
1310
1311 Default max-delay is 0, i.e. the feature is off by default.
1312
1313
c1a54c05 1314.. clicmd:: update-delay MAX-DELAY
c3c5a71f 1315
c1a54c05 1316.. clicmd:: update-delay MAX-DELAY ESTABLISH-WAIT
c3c5a71f 1317
c1a54c05 1318 This feature is used to enable read-only mode on BGP process restart or when
d70583f7 1319 a BGP process is cleared using 'clear ip bgp \*'. Note that this command is
f563acec 1320 configured under the specific bgp instance/vrf that the feature is enabled for.
d70583f7
D
1321 It cannot be used at the same time as the global "bgp update-delay" described
1322 above, which is entered at the global level and applies to all bgp instances.
1323 The global and per-vrf approaches to defining update-delay are mutually
1324 exclusive.
1325
1326 When applicable, read-only mode would begin as soon as the first peer reaches
1327 Established status and a timer for max-delay seconds is started. During this
1328 mode BGP doesn't run any best-path or generate any updates to its peers. This
1329 mode continues until:
42fc5d26 1330
c1a54c05
QY
1331 1. All the configured peers, except the shutdown peers, have sent explicit EOR
1332 (End-Of-RIB) or an implicit-EOR. The first keep-alive after BGP has reached
1333 Established is considered an implicit-EOR.
1334 If the establish-wait optional value is given, then BGP will wait for
d1e7591e 1335 peers to reach established from the beginning of the update-delay till the
c1a54c05
QY
1336 establish-wait period is over, i.e. the minimum set of established peers for
1337 which EOR is expected would be peers established during the establish-wait
1338 window, not necessarily all the configured neighbors.
1339 2. max-delay period is over.
42fc5d26 1340
c1a54c05
QY
1341 On hitting any of the above two conditions, BGP resumes the decision process
1342 and generates updates to its peers.
42fc5d26 1343
c1a54c05 1344 Default max-delay is 0, i.e. the feature is off by default.
c3c5a71f 1345
c1a54c05 1346.. clicmd:: table-map ROUTE-MAP-NAME
42fc5d26 1347
c1a54c05
QY
1348 This feature is used to apply a route-map on route updates from BGP to
1349 Zebra. All the applicable match operations are allowed, such as match on
1350 prefix, next-hop, communities, etc. Set operations for this attach-point are
1351 limited to metric and next-hop only. Any operation of this feature does not
1352 affect BGPs internal RIB.
42fc5d26 1353
c1a54c05
QY
1354 Supported for ipv4 and ipv6 address families. It works on multi-paths as
1355 well, however, metric setting is based on the best-path only.
42fc5d26 1356
8fcedbd2 1357.. _bgp-peers:
42fc5d26 1358
8fcedbd2
QY
1359Peers
1360-----
42fc5d26 1361
8fcedbd2 1362.. _bgp-defining-peers:
42fc5d26 1363
8fcedbd2
QY
1364Defining Peers
1365^^^^^^^^^^^^^^
42fc5d26 1366
c1a54c05 1367.. clicmd:: neighbor PEER remote-as ASN
42fc5d26 1368
c1a54c05 1369 Creates a new neighbor whose remote-as is ASN. PEER can be an IPv4 address
9eb95b3b 1370 or an IPv6 address or an interface to use for the connection.
76bd1499 1371
9eb95b3b
QY
1372 .. code-block:: frr
1373
1374 router bgp 1
1375 neighbor 10.0.0.1 remote-as 2
76bd1499 1376
c1a54c05 1377 In this case my router, in AS-1, is trying to peer with AS-2 at 10.0.0.1.
76bd1499 1378
c1a54c05 1379 This command must be the first command used when configuring a neighbor. If
9eb95b3b 1380 the remote-as is not specified, *bgpd* will complain like this: ::
76bd1499 1381
c1a54c05 1382 can't find neighbor 10.0.0.1
c3c5a71f 1383
5413757f
DS
1384.. clicmd:: neighbor PEER remote-as internal
1385
1386 Create a peer as you would when you specify an ASN, except that if the
1387 peers ASN is different than mine as specified under the :clicmd:`router bgp ASN`
1388 command the connection will be denied.
1389
5413757f
DS
1390.. clicmd:: neighbor PEER remote-as external
1391
1392 Create a peer as you would when you specify an ASN, except that if the
1393 peers ASN is the same as mine as specified under the :clicmd:`router bgp ASN`
1394 command the connection will be denied.
42fc5d26 1395
03750f1e 1396.. clicmd:: bgp listen range <A.B.C.D/M|X:X::X:X/M> peer-group PGNAME
d79e0e08
QY
1397
1398 Accept connections from any peers in the specified prefix. Configuration
1399 from the specified peer-group is used to configure these peers.
1400
1401.. note::
1402
1403 When using BGP listen ranges, if the associated peer group has TCP MD5
1404 authentication configured, your kernel must support this on prefixes. On
1405 Linux, this support was added in kernel version 4.14. If your kernel does
1406 not support this feature you will get a warning in the log file, and the
1407 listen range will only accept connections from peers without MD5 configured.
1408
1409 Additionally, we have observed that when using this option at scale (several
1410 hundred peers) the kernel may hit its option memory limit. In this situation
1411 you will see error messages like:
1412
1413 ``bgpd: sockopt_tcp_signature: setsockopt(23): Cannot allocate memory``
1414
1415 In this case you need to increase the value of the sysctl
1416 ``net.core.optmem_max`` to allow the kernel to allocate the necessary option
1417 memory.
1418
5b1b6b8b
PG
1419.. clicmd:: bgp listen limit <1-65535>
1420
1421 Define the maximum number of peers accepted for one BGP instance. This
1422 limit is set to 100 by default. Increasing this value will really be
1423 possible if more file descriptors are available in the BGP process. This
1424 value is defined by the underlying system (ulimit value), and can be
f563acec 1425 overridden by `--limit-fds`. More information is available in chapter
5b1b6b8b
PG
1426 (:ref:`common-invocation-options`).
1427
03750f1e 1428.. clicmd:: coalesce-time (0-4294967295)
ced26d3d
DS
1429
1430 The time in milliseconds that BGP will delay before deciding what peers
1431 can be put into an update-group together in order to generate a single
1432 update for them. The default time is 1000.
91052810 1433
8fcedbd2 1434.. _bgp-configuring-peers:
42fc5d26 1435
8fcedbd2
QY
1436Configuring Peers
1437^^^^^^^^^^^^^^^^^
42fc5d26 1438
03750f1e 1439.. clicmd:: neighbor PEER shutdown [message MSG...] [rtt (1-65535) [count (1-255)]]
c3c5a71f 1440
c1a54c05
QY
1441 Shutdown the peer. We can delete the neighbor's configuration by
1442 ``no neighbor PEER remote-as ASN`` but all configuration of the neighbor
1443 will be deleted. When you want to preserve the configuration, but want to
1444 drop the BGP peer, use this syntax.
c3c5a71f 1445
70335e0a
RZ
1446 Optionally you can specify a shutdown message `MSG`.
1447
56c07345 1448 Also, you can specify optionally ``rtt`` in milliseconds to automatically
91052810
DA
1449 shutdown the peer if round-trip-time becomes higher than defined.
1450
56c07345 1451 Additional ``count`` parameter is the number of keepalive messages to count
91052810
DA
1452 before shutdown the peer if round-trip-time becomes higher than defined.
1453
03750f1e 1454.. clicmd:: neighbor PEER disable-connected-check
c3c5a71f 1455
c0868e8b
QY
1456 Allow peerings between directly connected eBGP peers using loopback
1457 addresses.
c3c5a71f 1458
8dbe9214
DA
1459.. clicmd:: neighbor PEER disable-link-bw-encoding-ieee
1460
1461 By default bandwidth in extended communities is carried encoded as IEEE
1462 floating-point format, which is according to the draft.
1463
1464 Older versions have the implementation where extended community bandwidth
1465 value is carried encoded as uint32. To enable backward compatibility we
1466 need to disable IEEE floating-point encoding option per-peer.
1467
ad7d219d
DA
1468.. clicmd:: neighbor PEER extended-optional-parameters
1469
1470 Force Extended Optional Parameters Length format to be used for OPEN messages.
1471
1472 By default, it's disabled. If the standard optional parameters length is
1473 higher than one-octet (255), then extended format is enabled automatically.
1474
1475 For testing purposes, extended format can be enabled with this command.
1476
03750f1e 1477.. clicmd:: neighbor PEER ebgp-multihop
42fc5d26 1478
164786a9
QY
1479 Specifying ``ebgp-multihop`` allows sessions with eBGP neighbors to
1480 establish when they are multiple hops away. When the neighbor is not
1481 directly connected and this knob is not enabled, the session will not
1482 establish.
1483
15e6881e
DA
1484 If the peer's IP address is not in the RIB and is reachable via the
1485 default route, then you have to enable ``ip nht resolve-via-default``.
1486
03750f1e 1487.. clicmd:: neighbor PEER description ...
42fc5d26 1488
c1a54c05 1489 Set description of the peer.
42fc5d26 1490
03750f1e 1491.. clicmd:: neighbor PEER interface IFNAME
42fc5d26 1492
c1a54c05
QY
1493 When you connect to a BGP peer over an IPv6 link-local address, you have to
1494 specify the IFNAME of the interface used for the connection. To specify
1495 IPv4 session addresses, see the ``neighbor PEER update-source`` command
1496 below.
42fc5d26 1497
da4d6777
QY
1498.. clicmd:: neighbor PEER interface remote-as <internal|external|ASN>
1499
1500 Configure an unnumbered BGP peer. ``PEER`` should be an interface name. The
1501 session will be established via IPv6 link locals. Use ``internal`` for iBGP
1502 and ``external`` for eBGP sessions, or specify an ASN if you wish.
1503
42d623ac 1504.. clicmd:: neighbor PEER next-hop-self [force]
42fc5d26 1505
c1a54c05 1506 This command specifies an announced route's nexthop as being equivalent to
42d623ac
TA
1507 the address of the bgp router if it is learned via eBGP. This will also
1508 bypass third-party next-hops in favor of the local bgp address. If the
1509 optional keyword ``force`` is specified the modification is done also for
1510 routes learned via iBGP.
42fc5d26 1511
8b0d734b 1512.. clicmd:: neighbor PEER attribute-unchanged [{as-path|next-hop|med}]
1513
1514 This command specifies attributes to be left unchanged for advertisements
1515 sent to a peer. Use this to leave the next-hop unchanged in ipv6
1516 configurations, as the route-map directive to leave the next-hop unchanged
1517 is only available for ipv4.
1518
03750f1e 1519.. clicmd:: neighbor PEER update-source <IFNAME|ADDRESS>
42fc5d26 1520
c1a54c05
QY
1521 Specify the IPv4 source address to use for the :abbr:`BGP` session to this
1522 neighbour, may be specified as either an IPv4 address directly or as an
1523 interface name (in which case the *zebra* daemon MUST be running in order
9eb95b3b
QY
1524 for *bgpd* to be able to retrieve interface state).
1525
1526 .. code-block:: frr
42fc5d26 1527
c1a54c05
QY
1528 router bgp 64555
1529 neighbor foo update-source 192.168.0.1
1530 neighbor bar update-source lo0
42fc5d26 1531
42fc5d26 1532
91342239 1533.. clicmd:: neighbor PEER default-originate [route-map WORD]
42fc5d26 1534
4da7fda3
QY
1535 *bgpd*'s default is to not announce the default route (0.0.0.0/0) even if it
1536 is in routing table. When you want to announce default routes to the peer,
1537 use this command.
42fc5d26 1538
91342239
DA
1539 If ``route-map`` keyword is specified, then the default route will be
1540 originated only if route-map conditions are met. For example, announce
1541 the default route only if ``10.10.10.10/32`` route exists and set an
1542 arbitrary community for a default route.
1543
1544 .. code-block:: frr
1545
1546 router bgp 64555
1547 address-family ipv4 unicast
1548 neighbor 192.168.255.1 default-originate route-map default
1549 !
1550 ip prefix-list p1 seq 5 permit 10.10.10.10/32
1551 !
1552 route-map default permit 10
1553 match ip address prefix-list p1
1554 set community 123:123
1555 !
1556
c1a54c05 1557.. clicmd:: neighbor PEER port PORT
42fc5d26 1558
03750f1e 1559.. clicmd:: neighbor PEER password PASSWORD
e7c105a7
DS
1560
1561 Set a MD5 password to be used with the tcp socket that is being used
1562 to connect to the remote peer. Please note if you are using this
1563 command with a large number of peers on linux you should consider
1564 modifying the `net.core.optmem_max` sysctl to a larger value to
1565 avoid out of memory errors from the linux kernel.
1566
c1a54c05 1567.. clicmd:: neighbor PEER send-community
42fc5d26 1568
03750f1e 1569.. clicmd:: neighbor PEER weight WEIGHT
42fc5d26 1570
c1a54c05 1571 This command specifies a default `weight` value for the neighbor's routes.
42fc5d26 1572
03750f1e 1573.. clicmd:: neighbor PEER maximum-prefix NUMBER [force]
42fc5d26 1574
886026c8
QY
1575 Sets a maximum number of prefixes we can receive from a given peer. If this
1576 number is exceeded, the BGP session will be destroyed.
1577
1578 In practice, it is generally preferable to use a prefix-list to limit what
1579 prefixes are received from the peer instead of using this knob. Tearing down
1580 the BGP session when a limit is exceeded is far more destructive than merely
1581 rejecting undesired prefixes. The prefix-list method is also much more
1582 granular and offers much smarter matching criterion than number of received
1583 prefixes, making it more suited to implementing policy.
1584
56c07345 1585 If ``force`` is set, then ALL prefixes are counted for maximum instead of
c1bcac1d
DA
1586 accepted only. This is useful for cases where an inbound filter is applied,
1587 but you want maximum-prefix to act on ALL (including filtered) prefixes. This
1588 option requires `soft-reconfiguration inbound` to be enabled for the peer.
1589
03750f1e 1590.. clicmd:: neighbor PEER maximum-prefix-out NUMBER
edf98aa3
DA
1591
1592 Sets a maximum number of prefixes we can send to a given peer.
1593
f5399474
DA
1594 Since sent prefix count is managed by update-groups, this option
1595 creates a separate update-group for outgoing updates.
1596
03750f1e 1597.. clicmd:: neighbor PEER local-as AS-NUMBER [no-prepend] [replace-as]
42fc5d26 1598
c1a54c05
QY
1599 Specify an alternate AS for this BGP process when interacting with the
1600 specified peer. With no modifiers, the specified local-as is prepended to
1601 the received AS_PATH when receiving routing updates from the peer, and
1602 prepended to the outgoing AS_PATH (after the process local AS) when
1603 transmitting local routes to the peer.
42fc5d26 1604
c1a54c05
QY
1605 If the no-prepend attribute is specified, then the supplied local-as is not
1606 prepended to the received AS_PATH.
c3c5a71f 1607
c1a54c05
QY
1608 If the replace-as attribute is specified, then only the supplied local-as is
1609 prepended to the AS_PATH when transmitting local-route updates to this peer.
c3c5a71f 1610
c1a54c05 1611 Note that replace-as can only be specified if no-prepend is.
c3c5a71f 1612
c1a54c05 1613 This command is only allowed for eBGP peers.
c3c5a71f 1614
03750f1e 1615.. clicmd:: neighbor <A.B.C.D|X:X::X:X|WORD> as-override
252c5590
RZ
1616
1617 Override AS number of the originating router with the local AS number.
1618
1619 Usually this configuration is used in PEs (Provider Edge) to replace
1620 the incoming customer AS number so the connected CE (Customer Edge)
1621 can use the same AS number as the other customer sites. This allows
1622 customers of the provider network to use the same AS number across
1623 their sites.
1624
1625 This command is only allowed for eBGP peers.
1626
03750f1e 1627.. clicmd:: neighbor <A.B.C.D|X:X::X:X|WORD> allowas-in [<(1-10)|origin>]
ae1e0f32
RZ
1628
1629 Accept incoming routes with AS path containing AS number with the same value
1630 as the current system AS.
1631
1632 This is used when you want to use the same AS number in your sites, but you
1633 can't connect them directly. This is an alternative to
1634 `neighbor WORD as-override`.
1635
f563acec 1636 The parameter `(1-10)` configures the amount of accepted occurrences of the
ae1e0f32
RZ
1637 system AS number in AS path.
1638
1639 The parameter `origin` configures BGP to only accept routes originated with
1640 the same AS number as the system.
1641
1642 This command is only allowed for eBGP peers.
1643
03750f1e 1644.. clicmd:: neighbor <A.B.C.D|X:X::X:X|WORD> addpath-tx-all-paths
e03bf6fc
RZ
1645
1646 Configure BGP to send all known paths to neighbor in order to preserve multi
1647 path capabilities inside a network.
1648
03750f1e 1649.. clicmd:: neighbor <A.B.C.D|X:X::X:X|WORD> addpath-tx-bestpath-per-AS
e03bf6fc
RZ
1650
1651 Configure BGP to send best known paths to neighbor in order to preserve multi
1652 path capabilities inside a network.
1653
7cb0494d
DA
1654.. clicmd:: neighbor <A.B.C.D|X:X::X:X|WORD> disable-addpath-rx
1655
1656 Do not accept additional paths from this neighbor.
1657
03750f1e 1658.. clicmd:: neighbor PEER ttl-security hops NUMBER
c3c5a71f 1659
c1a54c05
QY
1660 This command enforces Generalized TTL Security Mechanism (GTSM), as
1661 specified in RFC 5082. With this command, only neighbors that are the
1662 specified number of hops away will be allowed to become neighbors. This
d1e7591e 1663 command is mutually exclusive with *ebgp-multihop*.
42fc5d26 1664
03750f1e 1665.. clicmd:: neighbor PEER capability extended-nexthop
19f2b5e8
DS
1666
1667 Allow bgp to negotiate the extended-nexthop capability with it's peer.
1668 If you are peering over a v6 LL address then this capability is turned
1669 on automatically. If you are peering over a v6 Global Address then
1670 turning on this command will allow BGP to install v4 routes with
1671 v6 nexthops if you do not have v4 configured on interfaces.
1672
03750f1e 1673.. clicmd:: bgp fast-external-failover
eb938189 1674
52fb7e96 1675 This command causes bgp to take down ebgp peers immediately
eb938189
DS
1676 when a link flaps. `bgp fast-external-failover` is the default
1677 and will not be displayed as part of a `show run`. The no form
1678 of the command turns off this ability.
1679
03750f1e 1680.. clicmd:: bgp default ipv4-unicast
bc132029 1681
5441ad10
TA
1682 This command allows the user to specify that the IPv4 Unicast address
1683 family is turned on by default or not. This command defaults to on
1684 and is not displayed.
bc132029
DS
1685 The `no bgp default ipv4-unicast` form of the command is displayed.
1686
5441ad10
TA
1687.. clicmd:: bgp default ipv4-multicast
1688
1689 This command allows the user to specify that the IPv4 Multicast address
1690 family is turned on by default or not. This command defaults to off
1691 and is not displayed.
1692 The `bgp default ipv4-multicast` form of the command is displayed.
1693
1694.. clicmd:: bgp default ipv4-vpn
1695
1696 This command allows the user to specify that the IPv4 MPLS VPN address
1697 family is turned on by default or not. This command defaults to off
1698 and is not displayed.
1699 The `bgp default ipv4-vpn` form of the command is displayed.
1700
1701.. clicmd:: bgp default ipv4-flowspec
1702
1703 This command allows the user to specify that the IPv4 Flowspec address
1704 family is turned on by default or not. This command defaults to off
1705 and is not displayed.
1706 The `bgp default ipv4-flowspec` form of the command is displayed.
1707
2c853e5e
DA
1708.. clicmd:: bgp default ipv6-unicast
1709
5441ad10
TA
1710 This command allows the user to specify that the IPv6 Unicast address
1711 family is turned on by default or not. This command defaults to off
1712 and is not displayed.
2c853e5e
DA
1713 The `bgp default ipv6-unicast` form of the command is displayed.
1714
5441ad10
TA
1715.. clicmd:: bgp default ipv6-multicast
1716
1717 This command allows the user to specify that the IPv6 Multicast address
1718 family is turned on by default or not. This command defaults to off
1719 and is not displayed.
1720 The `bgp default ipv6-multicast` form of the command is displayed.
1721
1722.. clicmd:: bgp default ipv6-vpn
1723
1724 This command allows the user to specify that the IPv6 MPLS VPN address
1725 family is turned on by default or not. This command defaults to off
1726 and is not displayed.
1727 The `bgp default ipv6-vpn` form of the command is displayed.
1728
1729.. clicmd:: bgp default ipv6-flowspec
1730
1731 This command allows the user to specify that the IPv6 Flowspec address
1732 family is turned on by default or not. This command defaults to off
1733 and is not displayed.
1734 The `bgp default ipv6-flowspec` form of the command is displayed.
1735
1736.. clicmd:: bgp default l2vpn-evpn
1737
1738 This command allows the user to specify that the L2VPN EVPN address
1739 family is turned on by default or not. This command defaults to off
1740 and is not displayed.
1741 The `bgp default l2vpn-evpn` form of the command is displayed.
1742
03750f1e 1743.. clicmd:: bgp default show-hostname
7d981695
DA
1744
1745 This command shows the hostname of the peer in certain BGP commands
1746 outputs. It's easier to troubleshoot if you have a number of BGP peers.
1747
03750f1e 1748.. clicmd:: bgp default show-nexthop-hostname
7d981695
DA
1749
1750 This command shows the hostname of the next-hop in certain BGP commands
1751 outputs. It's easier to troubleshoot if you have a number of BGP peers
1752 and a number of routes to check.
1753
03750f1e 1754.. clicmd:: neighbor PEER advertisement-interval (0-600)
e10dda57
DS
1755
1756 Setup the minimum route advertisement interval(mrai) for the
1757 peer in question. This number is between 0 and 600 seconds,
1758 with the default advertisement interval being 0.
1759
0c969c0f
QY
1760.. clicmd:: neighbor PEER timers (0-65535) (0-65535)
1761
1762 Set keepalive and hold timers for a neighbor. The first value is keepalive
1763 and the second is hold time.
1764
d7cd3d09 1765.. clicmd:: neighbor PEER timers connect (1-65535)
0c969c0f
QY
1766
1767 Set connect timer for a neighbor. The connect timer controls how long BGP
1768 waits between connection attempts to a neighbor.
1769
03750f1e 1770.. clicmd:: neighbor PEER timers delayopen (1-240)
94abf9b4
DS
1771
1772 This command allows the user enable the
1773 `RFC 4271 <https://tools.ietf.org/html/rfc4271/>` DelayOpenTimer with the
1774 specified interval or disable it with the negating command for the peer. By
1775 default, the DelayOpenTimer is disabled. The timer interval may be set to a
1776 duration of 1 to 240 seconds.
1777
13111667
DA
1778.. clicmd:: neighbor PEER extended-optional-parameters
1779
1780 Force the extended optional parameters format for OPEN messages. By default,
1781 optional parameters length is 255 octets. With more and more BGP capabilities
1782 implemented on top of BGP, this is needed to extend this value.
1783
1784 This is turned off by default, but it's automatically enabled when this limit
1785 is hit. You can force this new encoding to be enabled with this command.
1786
b042667a
TI
1787.. clicmd:: bgp minimum-holdtime (1-65535)
1788
1789 This command allows user to prevent session establishment with BGP peers
1790 with lower holdtime less than configured minimum holdtime.
1791 When this command is not set, minimum holdtime does not work.
1792
d1adb448
PG
1793.. clicmd:: bgp tcp-keepalive (1-65535) (1-65535) (1-30)
1794
1795 This command allows user to configure TCP keepalive with new BGP peers.
1796 Each parameter respectively stands for TCP keepalive idle timer (seconds),
1797 interval (seconds), and maximum probes. By default, TCP keepalive is
1798 disabled.
1799
4e853678
DS
1800Displaying Information about Peers
1801^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1802
4e853678
DS
1803.. clicmd:: show bgp <afi> <safi> neighbors WORD bestpath-routes [json] [wide]
1804
1805 For the given neighbor, WORD, that is specified list the routes selected
1806 by BGP as having the best path.
1807
8fcedbd2 1808.. _bgp-peer-filtering:
42fc5d26 1809
8fcedbd2
QY
1810Peer Filtering
1811^^^^^^^^^^^^^^
42fc5d26 1812
c1a54c05 1813.. clicmd:: neighbor PEER distribute-list NAME [in|out]
42fc5d26 1814
c1a54c05
QY
1815 This command specifies a distribute-list for the peer. `direct` is
1816 ``in`` or ``out``.
42fc5d26 1817
29adcd50 1818.. clicmd:: neighbor PEER prefix-list NAME [in|out]
42fc5d26 1819
29adcd50 1820.. clicmd:: neighbor PEER filter-list NAME [in|out]
42fc5d26 1821
c1a54c05 1822.. clicmd:: neighbor PEER route-map NAME [in|out]
42fc5d26 1823
c1a54c05 1824 Apply a route-map on the neighbor. `direct` must be `in` or `out`.
42fc5d26 1825
29adcd50 1826.. clicmd:: bgp route-reflector allow-outbound-policy
42fc5d26 1827
c1a54c05
QY
1828 By default, attribute modification via route-map policy out is not reflected
1829 on reflected routes. This option allows the modifications to be reflected as
1830 well. Once enabled, it affects all reflected routes.
42fc5d26 1831
03750f1e 1832.. clicmd:: neighbor PEER sender-as-path-loop-detection
583a9fd4
RZ
1833
1834 Enable the detection of sender side AS path loops and filter the
1835 bad routes before they are sent.
1836
1837 This setting is disabled by default.
1838
0efdf0fe 1839.. _bgp-peer-group:
42fc5d26 1840
8fcedbd2
QY
1841Peer Groups
1842^^^^^^^^^^^
42fc5d26 1843
199ad5c4
LB
1844Peer groups are used to help improve scaling by generating the same
1845update information to all members of a peer group. Note that this means
1846that the routes generated by a member of a peer group will be sent back
1847to that originating peer with the originator identifier attribute set to
1848indicated the originating peer. All peers not associated with a
1849specific peer group are treated as belonging to a default peer group,
1850and will share updates.
1851
c1a54c05 1852.. clicmd:: neighbor WORD peer-group
42fc5d26 1853
c1a54c05 1854 This command defines a new peer group.
42fc5d26 1855
d7b9898c 1856.. clicmd:: neighbor PEER peer-group PGNAME
c3c5a71f 1857
c1a54c05 1858 This command bind specific peer to peer group WORD.
42fc5d26 1859
199ad5c4
LB
1860.. clicmd:: neighbor PEER solo
1861
1862 This command is used to indicate that routes advertised by the peer
1863 should not be reflected back to the peer. This command only is only
1864 meaningful when there is a single peer defined in the peer-group.
1865
65c0fc12
DA
1866.. clicmd:: show [ip] bgp peer-group [json]
1867
1868 This command displays configured BGP peer-groups.
1869
1870 .. code-block:: frr
1871
1872 exit1-debian-9# show bgp peer-group
1873
1874 BGP peer-group test1, remote AS 65001
1875 Peer-group type is external
1876 Configured address-families: IPv4 Unicast; IPv6 Unicast;
1877 1 IPv4 listen range(s)
1878 192.168.100.0/24
1879 2 IPv6 listen range(s)
1880 2001:db8:1::/64
1881 2001:db8:2::/64
1882 Peer-group members:
1883 192.168.200.1 Active
1884 2001:db8::1 Active
1885
1886 BGP peer-group test2
1887 Peer-group type is external
1888 Configured address-families: IPv4 Unicast;
1889
1890 Optional ``json`` parameter is used to display JSON output.
1891
1892 .. code-block:: frr
1893
1894 {
1895 "test1":{
1896 "remoteAs":65001,
1897 "type":"external",
1898 "addressFamiliesConfigured":[
1899 "IPv4 Unicast",
1900 "IPv6 Unicast"
1901 ],
1902 "dynamicRanges":{
1903 "IPv4":{
1904 "count":1,
1905 "ranges":[
1906 "192.168.100.0\/24"
1907 ]
1908 },
1909 "IPv6":{
1910 "count":2,
1911 "ranges":[
1912 "2001:db8:1::\/64",
1913 "2001:db8:2::\/64"
1914 ]
1915 }
1916 },
1917 "members":{
1918 "192.168.200.1":{
1919 "status":"Active"
1920 },
1921 "2001:db8::1":{
1922 "status":"Active"
1923 }
1924 }
1925 },
1926 "test2":{
1927 "type":"external",
1928 "addressFamiliesConfigured":[
1929 "IPv4 Unicast"
1930 ]
1931 }
1932 }
1933
8fcedbd2
QY
1934Capability Negotiation
1935^^^^^^^^^^^^^^^^^^^^^^
42fc5d26 1936
8fcedbd2 1937.. clicmd:: neighbor PEER strict-capability-match
42fc5d26 1938
c1a54c05 1939
8fcedbd2
QY
1940 Strictly compares remote capabilities and local capabilities. If
1941 capabilities are different, send Unsupported Capability error then reset
1942 connection.
42fc5d26 1943
8fcedbd2
QY
1944 You may want to disable sending Capability Negotiation OPEN message optional
1945 parameter to the peer when remote peer does not implement Capability
1946 Negotiation. Please use *dont-capability-negotiate* command to disable the
1947 feature.
42fc5d26 1948
03750f1e 1949.. clicmd:: neighbor PEER dont-capability-negotiate
42fc5d26 1950
8fcedbd2
QY
1951 Suppress sending Capability Negotiation as OPEN message optional parameter
1952 to the peer. This command only affects the peer is configured other than
1953 IPv4 unicast configuration.
42fc5d26 1954
8fcedbd2
QY
1955 When remote peer does not have capability negotiation feature, remote peer
1956 will not send any capabilities at all. In that case, bgp configures the peer
1957 with configured capabilities.
42fc5d26 1958
8fcedbd2
QY
1959 You may prefer locally configured capabilities more than the negotiated
1960 capabilities even though remote peer sends capabilities. If the peer is
1961 configured by *override-capability*, *bgpd* ignores received capabilities
1962 then override negotiated capabilities with configured values.
42fc5d26 1963
7cdc9530
DS
1964 Additionally the operator should be reminded that this feature fundamentally
1965 disables the ability to use widely deployed BGP features. BGP unnumbered,
1966 hostname support, AS4, Addpath, Route Refresh, ORF, Dynamic Capabilities,
1967 and graceful restart.
1968
8fcedbd2 1969.. clicmd:: neighbor PEER override-capability
42fc5d26 1970
c1a54c05 1971
8fcedbd2
QY
1972 Override the result of Capability Negotiation with local configuration.
1973 Ignore remote peer's capability value.
42fc5d26 1974
8fcedbd2 1975.. _bgp-as-path-access-lists:
42fc5d26 1976
8fcedbd2
QY
1977AS Path Access Lists
1978--------------------
42fc5d26
QY
1979
1980AS path access list is user defined AS path.
1981
e6e62ee5 1982.. clicmd:: bgp as-path access-list WORD [seq (0-4294967295)] permit|deny LINE
42fc5d26 1983
c1a54c05 1984 This command defines a new AS path access list.
42fc5d26 1985
b15e8360 1986.. clicmd:: show bgp as-path-access-list [json]
42fc5d26 1987
b15e8360
RW
1988 Display all BGP AS Path access lists.
1989
1990 If the ``json`` option is specified, output is displayed in JSON format.
1991
1992.. clicmd:: show bgp as-path-access-list WORD [json]
1993
1994 Display the specified BGP AS Path access list.
1995
1996 If the ``json`` option is specified, output is displayed in JSON format.
42fc5d26 1997
125cec1a
DA
1998.. _bgp-bogon-filter-example:
1999
2000Bogon ASN filter policy configuration example
2001^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2002
2003.. code-block:: frr
2004
2005 bgp as-path access-list 99 permit _0_
2006 bgp as-path access-list 99 permit _23456_
2007 bgp as-path access-list 99 permit _1310[0-6][0-9]_|_13107[0-1]_
e6e62ee5 2008 bgp as-path access-list 99 seq 20 permit ^65
125cec1a 2009
8fcedbd2 2010.. _bgp-using-as-path-in-route-map:
42fc5d26
QY
2011
2012Using AS Path in Route Map
2013--------------------------
2014
03750f1e 2015.. clicmd:: match as-path WORD
42fc5d26 2016
eb1f303d
DS
2017 For a given as-path, WORD, match it on the BGP as-path given for the prefix
2018 and if it matches do normal route-map actions. The no form of the command
2019 removes this match from the route-map.
42fc5d26 2020
03750f1e 2021.. clicmd:: set as-path prepend AS-PATH
42fc5d26 2022
eb1f303d
DS
2023 Prepend the given string of AS numbers to the AS_PATH of the BGP path's NLRI.
2024 The no form of this command removes this set operation from the route-map.
42fc5d26 2025
03750f1e 2026.. clicmd:: set as-path prepend last-as NUM
c1a54c05
QY
2027
2028 Prepend the existing last AS number (the leftmost ASN) to the AS_PATH.
eb1f303d 2029 The no form of this command removes this set operation from the route-map.
42fc5d26 2030
77e3d821
DA
2031.. clicmd:: set as-path replace <any|ASN>
2032
2033 Replace a specific AS number to local AS number. ``any`` replaces each
2034 AS number in the AS-PATH with the local AS number.
2035
0efdf0fe 2036.. _bgp-communities-attribute:
42fc5d26 2037
8fcedbd2
QY
2038Communities Attribute
2039---------------------
42fc5d26 2040
8fcedbd2 2041The BGP communities attribute is widely used for implementing policy routing.
c1a54c05
QY
2042Network operators can manipulate BGP communities attribute based on their
2043network policy. BGP communities attribute is defined in :rfc:`1997` and
2044:rfc:`1998`. It is an optional transitive attribute, therefore local policy can
2045travel through different autonomous system.
2046
8fcedbd2
QY
2047The communities attribute is a set of communities values. Each community value
2048is 4 octet long. The following format is used to define the community value.
c1a54c05 2049
8fcedbd2 2050``AS:VAL``
c1a54c05
QY
2051 This format represents 4 octet communities value. ``AS`` is high order 2
2052 octet in digit format. ``VAL`` is low order 2 octet in digit format. This
2053 format is useful to define AS oriented policy value. For example,
2054 ``7675:80`` can be used when AS 7675 wants to pass local policy value 80 to
2055 neighboring peer.
2056
8fcedbd2
QY
2057``internet``
2058 ``internet`` represents well-known communities value 0.
c1a54c05 2059
cae770d3
C
2060``graceful-shutdown``
2061 ``graceful-shutdown`` represents well-known communities value
2062 ``GRACEFUL_SHUTDOWN`` ``0xFFFF0000`` ``65535:0``. :rfc:`8326` implements
2063 the purpose Graceful BGP Session Shutdown to reduce the amount of
56f0bea7 2064 lost traffic when taking BGP sessions down for maintenance. The use
cae770d3
C
2065 of the community needs to be supported from your peers side to
2066 actually have any effect.
2067
2068``accept-own``
2069 ``accept-own`` represents well-known communities value ``ACCEPT_OWN``
2070 ``0xFFFF0001`` ``65535:1``. :rfc:`7611` implements a way to signal
2071 to a router to accept routes with a local nexthop address. This
2072 can be the case when doing policing and having traffic having a
2073 nexthop located in another VRF but still local interface to the
2074 router. It is recommended to read the RFC for full details.
2075
2076``route-filter-translated-v4``
2077 ``route-filter-translated-v4`` represents well-known communities value
2078 ``ROUTE_FILTER_TRANSLATED_v4`` ``0xFFFF0002`` ``65535:2``.
2079
2080``route-filter-v4``
2081 ``route-filter-v4`` represents well-known communities value
2082 ``ROUTE_FILTER_v4`` ``0xFFFF0003`` ``65535:3``.
2083
2084``route-filter-translated-v6``
2085 ``route-filter-translated-v6`` represents well-known communities value
2086 ``ROUTE_FILTER_TRANSLATED_v6`` ``0xFFFF0004`` ``65535:4``.
2087
2088``route-filter-v6``
2089 ``route-filter-v6`` represents well-known communities value
2090 ``ROUTE_FILTER_v6`` ``0xFFFF0005`` ``65535:5``.
2091
2092``llgr-stale``
2093 ``llgr-stale`` represents well-known communities value ``LLGR_STALE``
2094 ``0xFFFF0006`` ``65535:6``.
56f0bea7 2095 Assigned and intended only for use with routers supporting the
cae770d3 2096 Long-lived Graceful Restart Capability as described in
49606d58 2097 [Draft-IETF-uttaro-idr-bgp-persistence]_.
56f0bea7 2098 Routers receiving routes with this community may (depending on
cae770d3
C
2099 implementation) choose allow to reject or modify routes on the
2100 presence or absence of this community.
2101
2102``no-llgr``
2103 ``no-llgr`` represents well-known communities value ``NO_LLGR``
2104 ``0xFFFF0007`` ``65535:7``.
56f0bea7 2105 Assigned and intended only for use with routers supporting the
cae770d3 2106 Long-lived Graceful Restart Capability as described in
49606d58 2107 [Draft-IETF-uttaro-idr-bgp-persistence]_.
56f0bea7 2108 Routers receiving routes with this community may (depending on
cae770d3
C
2109 implementation) choose allow to reject or modify routes on the
2110 presence or absence of this community.
2111
2112``accept-own-nexthop``
2113 ``accept-own-nexthop`` represents well-known communities value
2114 ``accept-own-nexthop`` ``0xFFFF0008`` ``65535:8``.
49606d58 2115 [Draft-IETF-agrewal-idr-accept-own-nexthop]_ describes
cae770d3
C
2116 how to tag and label VPN routes to be able to send traffic between VRFs
2117 via an internal layer 2 domain on the same PE device. Refer to
49606d58 2118 [Draft-IETF-agrewal-idr-accept-own-nexthop]_ for full details.
cae770d3
C
2119
2120``blackhole``
2121 ``blackhole`` represents well-known communities value ``BLACKHOLE``
2122 ``0xFFFF029A`` ``65535:666``. :rfc:`7999` documents sending prefixes to
2123 EBGP peers and upstream for the purpose of blackholing traffic.
2124 Prefixes tagged with the this community should normally not be
10ae708b
DA
2125 re-advertised from neighbors of the originating network. Upon receiving
2126 ``BLACKHOLE`` community from a BGP speaker, ``NO_ADVERTISE`` community
2127 is added automatically.
cae770d3 2128
8fcedbd2 2129``no-export``
c1a54c05
QY
2130 ``no-export`` represents well-known communities value ``NO_EXPORT``
2131 ``0xFFFFFF01``. All routes carry this value must not be advertised to
2132 outside a BGP confederation boundary. If neighboring BGP peer is part of BGP
2133 confederation, the peer is considered as inside a BGP confederation
2134 boundary, so the route will be announced to the peer.
2135
8fcedbd2 2136``no-advertise``
c1a54c05
QY
2137 ``no-advertise`` represents well-known communities value ``NO_ADVERTISE``
2138 ``0xFFFFFF02``. All routes carry this value must not be advertise to other
2139 BGP peers.
2140
8fcedbd2 2141``local-AS``
c1a54c05
QY
2142 ``local-AS`` represents well-known communities value ``NO_EXPORT_SUBCONFED``
2143 ``0xFFFFFF03``. All routes carry this value must not be advertised to
2144 external BGP peers. Even if the neighboring router is part of confederation,
2145 it is considered as external BGP peer, so the route will not be announced to
2146 the peer.
2147
cae770d3
C
2148``no-peer``
2149 ``no-peer`` represents well-known communities value ``NOPEER``
2150 ``0xFFFFFF04`` ``65535:65284``. :rfc:`3765` is used to communicate to
2151 another network how the originating network want the prefix propagated.
2152
aa9eafa4
QY
2153When the communities attribute is received duplicate community values in the
2154attribute are ignored and value is sorted in numerical order.
42fc5d26 2155
49606d58
PG
2156.. [Draft-IETF-uttaro-idr-bgp-persistence] <https://tools.ietf.org/id/draft-uttaro-idr-bgp-persistence-04.txt>
2157.. [Draft-IETF-agrewal-idr-accept-own-nexthop] <https://tools.ietf.org/id/draft-agrewal-idr-accept-own-nexthop-00.txt>
2158
0efdf0fe 2159.. _bgp-community-lists:
42fc5d26 2160
8fcedbd2
QY
2161Community Lists
2162^^^^^^^^^^^^^^^
aa9eafa4
QY
2163Community lists are user defined lists of community attribute values. These
2164lists can be used for matching or manipulating the communities attribute in
2165UPDATE messages.
42fc5d26 2166
aa9eafa4 2167There are two types of community list:
c1a54c05 2168
aa9eafa4 2169standard
56f0bea7 2170 This type accepts an explicit value for the attribute.
aa9eafa4
QY
2171
2172expanded
2173 This type accepts a regular expression. Because the regex must be
2174 interpreted on each use expanded community lists are slower than standard
2175 lists.
42fc5d26 2176
a64e0ee5 2177.. clicmd:: bgp community-list standard NAME permit|deny COMMUNITY
42fc5d26 2178
aa9eafa4
QY
2179 This command defines a new standard community list. ``COMMUNITY`` is
2180 communities value. The ``COMMUNITY`` is compiled into community structure.
2181 We can define multiple community list under same name. In that case match
2182 will happen user defined order. Once the community list matches to
2183 communities attribute in BGP updates it return permit or deny by the
2184 community list definition. When there is no matched entry, deny will be
2185 returned. When ``COMMUNITY`` is empty it matches to any routes.
42fc5d26 2186
a64e0ee5 2187.. clicmd:: bgp community-list expanded NAME permit|deny COMMUNITY
42fc5d26 2188
aa9eafa4
QY
2189 This command defines a new expanded community list. ``COMMUNITY`` is a
2190 string expression of communities attribute. ``COMMUNITY`` can be a regular
2191 expression (:ref:`bgp-regular-expressions`) to match the communities
47f47873
PG
2192 attribute in BGP updates. The expanded community is only used to filter,
2193 not `set` actions.
42fc5d26 2194
aa9eafa4
QY
2195.. deprecated:: 5.0
2196 It is recommended to use the more explicit versions of this command.
42fc5d26 2197
a64e0ee5 2198.. clicmd:: bgp community-list NAME permit|deny COMMUNITY
aa9eafa4
QY
2199
2200 When the community list type is not specified, the community list type is
2201 automatically detected. If ``COMMUNITY`` can be compiled into communities
2202 attribute, the community list is defined as a standard community list.
2203 Otherwise it is defined as an expanded community list. This feature is left
2204 for backward compatibility. Use of this feature is not recommended.
42fc5d26 2205
03750f1e
QY
2206 Note that all community lists share the same namespace, so it's not
2207 necessary to specify ``standard`` or ``expanded``; these modifiers are
2208 purely aesthetic.
42fc5d26 2209
36dc43aa 2210.. clicmd:: show bgp community-list [NAME detail]
42fc5d26 2211
aa9eafa4
QY
2212 Displays community list information. When ``NAME`` is specified the
2213 specified community list's information is shown.
c3c5a71f 2214
c1a54c05 2215 ::
76bd1499 2216
a64e0ee5 2217 # show bgp community-list
c1a54c05
QY
2218 Named Community standard list CLIST
2219 permit 7675:80 7675:100 no-export
2220 deny internet
2221 Named Community expanded list EXPAND
2222 permit :
76bd1499 2223
36dc43aa 2224 # show bgp community-list CLIST detail
c1a54c05
QY
2225 Named Community standard list CLIST
2226 permit 7675:80 7675:100 no-export
2227 deny internet
42fc5d26 2228
42fc5d26 2229
8fcedbd2 2230.. _bgp-numbered-community-lists:
42fc5d26 2231
8fcedbd2
QY
2232Numbered Community Lists
2233^^^^^^^^^^^^^^^^^^^^^^^^
42fc5d26
QY
2234
2235When number is used for BGP community list name, the number has
c3c5a71f
QY
2236special meanings. Community list number in the range from 1 and 99 is
2237standard community list. Community list number in the range from 100
0757efc0 2238to 500 is expanded community list. These community lists are called
c3c5a71f 2239as numbered community lists. On the other hand normal community lists
42fc5d26
QY
2240is called as named community lists.
2241
a64e0ee5 2242.. clicmd:: bgp community-list (1-99) permit|deny COMMUNITY
42fc5d26 2243
aa9eafa4
QY
2244 This command defines a new community list. The argument to (1-99) defines
2245 the list identifier.
42fc5d26 2246
0757efc0 2247.. clicmd:: bgp community-list (100-500) permit|deny COMMUNITY
42fc5d26 2248
aa9eafa4 2249 This command defines a new expanded community list. The argument to
0757efc0 2250 (100-500) defines the list identifier.
42fc5d26 2251
6a89dd1e
DA
2252.. _bgp-community-alias:
2253
2254Community alias
2255^^^^^^^^^^^^^^^
2256
2257BGP community aliases are useful to quickly identify what communities are set
2258for a specific prefix in a human-readable format. Especially handy for a huge
2259amount of communities. Accurately defined aliases can help you faster spot
2260things on the wire.
2261
2262.. clicmd:: bgp community alias NAME ALIAS
2263
2264 This command creates an alias name for a community that will be used
2265 later in various CLI outputs in a human-readable format.
2266
2267 .. code-block:: frr
2268
2269 ~# vtysh -c 'show run' | grep 'bgp community alias'
2270 bgp community alias 65001:14 community-1
2271 bgp community alias 65001:123:1 lcommunity-1
2272
2273 ~# vtysh -c 'show ip bgp 172.16.16.1/32'
2274 BGP routing table entry for 172.16.16.1/32, version 21
2275 Paths: (2 available, best #2, table default)
2276 Advertised to non peer-group peers:
2277 65030
2278 192.168.0.2 from 192.168.0.2 (172.16.16.1)
2279 Origin incomplete, metric 0, valid, external, best (Neighbor IP)
2280 Community: 65001:12 65001:13 community-1 65001:65534
2281 Large Community: lcommunity-1 65001:123:2
2282 Last update: Fri Apr 16 12:51:27 2021
2283
9f977b2d
DA
2284.. clicmd:: show bgp [afi] [safi] [all] alias WORD [wide|json]
2285
2286 Display prefixes with matching BGP community alias.
2287
8fcedbd2 2288.. _bgp-using-communities-in-route-map:
42fc5d26 2289
8fcedbd2
QY
2290Using Communities in Route Maps
2291^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
42fc5d26 2292
aa9eafa4
QY
2293In :ref:`route-map` we can match on or set the BGP communities attribute. Using
2294this feature network operator can implement their network policy based on BGP
2295communities attribute.
42fc5d26 2296
b91bf5bd 2297The following commands can be used in route maps:
42fc5d26 2298
80dd0954
DA
2299.. clicmd:: match alias WORD
2300
2301 This command performs match to BGP updates using community alias WORD. When
2302 the one of BGP communities value match to the one of community alias value in
2303 community alias, it is match.
2304
aa9eafa4 2305.. clicmd:: match community WORD exact-match [exact-match]
42fc5d26 2306
c1a54c05
QY
2307 This command perform match to BGP updates using community list WORD. When
2308 the one of BGP communities value match to the one of communities value in
d1e7591e 2309 community list, it is match. When `exact-match` keyword is specified, match
c1a54c05
QY
2310 happen only when BGP updates have completely same communities value
2311 specified in the community list.
42fc5d26 2312
aa9eafa4 2313.. clicmd:: set community <none|COMMUNITY> additive
42fc5d26 2314
aa9eafa4
QY
2315 This command sets the community value in BGP updates. If the attribute is
2316 already configured, the newly provided value replaces the old one unless the
2317 ``additive`` keyword is specified, in which case the new value is appended
2318 to the existing value.
42fc5d26 2319
aa9eafa4
QY
2320 If ``none`` is specified as the community value, the communities attribute
2321 is not sent.
42fc5d26 2322
47f47873
PG
2323 It is not possible to set an expanded community list.
2324
29adcd50 2325.. clicmd:: set comm-list WORD delete
c1a54c05 2326
aa9eafa4
QY
2327 This command remove communities value from BGP communities attribute. The
2328 ``word`` is community list name. When BGP route's communities value matches
2329 to the community list ``word``, the communities value is removed. When all
2330 of communities value is removed eventually, the BGP update's communities
2331 attribute is completely removed.
42fc5d26 2332
8fcedbd2 2333.. _bgp-communities-example:
c1a54c05 2334
8fcedbd2
QY
2335Example Configuration
2336^^^^^^^^^^^^^^^^^^^^^
9eb95b3b 2337
8fcedbd2
QY
2338The following configuration is exemplary of the most typical usage of BGP
2339communities attribute. In the example, AS 7675 provides an upstream Internet
2340connection to AS 100. When the following configuration exists in AS 7675, the
2341network operator of AS 100 can set local preference in AS 7675 network by
2342setting BGP communities attribute to the updates.
9eb95b3b
QY
2343
2344.. code-block:: frr
c1a54c05
QY
2345
2346 router bgp 7675
2347 neighbor 192.168.0.1 remote-as 100
2348 address-family ipv4 unicast
2349 neighbor 192.168.0.1 route-map RMAP in
2350 exit-address-family
2351 !
a64e0ee5 2352 bgp community-list 70 permit 7675:70
a64e0ee5 2353 bgp community-list 80 permit 7675:80
a64e0ee5 2354 bgp community-list 90 permit 7675:90
c1a54c05
QY
2355 !
2356 route-map RMAP permit 10
2357 match community 70
2358 set local-preference 70
2359 !
2360 route-map RMAP permit 20
2361 match community 80
2362 set local-preference 80
2363 !
2364 route-map RMAP permit 30
2365 match community 90
2366 set local-preference 90
c3c5a71f 2367
42fc5d26 2368
8fcedbd2
QY
2369The following configuration announces ``10.0.0.0/8`` from AS 100 to AS 7675.
2370The route has communities value ``7675:80`` so when above configuration exists
2371in AS 7675, the announced routes' local preference value will be set to 80.
9eb95b3b
QY
2372
2373.. code-block:: frr
c1a54c05
QY
2374
2375 router bgp 100
2376 network 10.0.0.0/8
2377 neighbor 192.168.0.2 remote-as 7675
2378 address-family ipv4 unicast
2379 neighbor 192.168.0.2 route-map RMAP out
2380 exit-address-family
2381 !
2382 ip prefix-list PLIST permit 10.0.0.0/8
2383 !
2384 route-map RMAP permit 10
2385 match ip address prefix-list PLIST
2386 set community 7675:80
c3c5a71f 2387
42fc5d26 2388
8fcedbd2
QY
2389The following configuration is an example of BGP route filtering using
2390communities attribute. This configuration only permit BGP routes which has BGP
2391communities value ``0:80`` or ``0:90``. The network operator can set special
2392internal communities value at BGP border router, then limit the BGP route
2393announcements into the internal network.
9eb95b3b
QY
2394
2395.. code-block:: frr
42fc5d26 2396
c1a54c05
QY
2397 router bgp 7675
2398 neighbor 192.168.0.1 remote-as 100
2399 address-family ipv4 unicast
2400 neighbor 192.168.0.1 route-map RMAP in
2401 exit-address-family
2402 !
a64e0ee5 2403 bgp community-list 1 permit 0:80 0:90
c1a54c05
QY
2404 !
2405 route-map RMAP permit in
2406 match community 1
c3c5a71f 2407
42fc5d26 2408
8fcedbd2
QY
2409The following example filters BGP routes which have a community value of
2410``1:1``. When there is no match community-list returns ``deny``. To avoid
2411filtering all routes, a ``permit`` line is set at the end of the
2412community-list.
9eb95b3b
QY
2413
2414.. code-block:: frr
42fc5d26 2415
c1a54c05
QY
2416 router bgp 7675
2417 neighbor 192.168.0.1 remote-as 100
2418 address-family ipv4 unicast
2419 neighbor 192.168.0.1 route-map RMAP in
2420 exit-address-family
2421 !
a64e0ee5
DA
2422 bgp community-list standard FILTER deny 1:1
2423 bgp community-list standard FILTER permit
c1a54c05
QY
2424 !
2425 route-map RMAP permit 10
2426 match community FILTER
c3c5a71f 2427
42fc5d26 2428
8fcedbd2
QY
2429The communities value keyword ``internet`` has special meanings in standard
2430community lists. In the below example ``internet`` matches all BGP routes even
2431if the route does not have communities attribute at all. So community list
2432``INTERNET`` is the same as ``FILTER`` in the previous example.
9eb95b3b
QY
2433
2434.. code-block:: frr
42fc5d26 2435
a64e0ee5
DA
2436 bgp community-list standard INTERNET deny 1:1
2437 bgp community-list standard INTERNET permit internet
c3c5a71f 2438
42fc5d26 2439
8fcedbd2
QY
2440The following configuration is an example of communities value deletion. With
2441this configuration the community values ``100:1`` and ``100:2`` are removed
2442from BGP updates. For communities value deletion, only ``permit``
2443community-list is used. ``deny`` community-list is ignored.
9eb95b3b
QY
2444
2445.. code-block:: frr
42fc5d26 2446
c1a54c05
QY
2447 router bgp 7675
2448 neighbor 192.168.0.1 remote-as 100
2449 address-family ipv4 unicast
2450 neighbor 192.168.0.1 route-map RMAP in
2451 exit-address-family
2452 !
a64e0ee5 2453 bgp community-list standard DEL permit 100:1 100:2
c1a54c05
QY
2454 !
2455 route-map RMAP permit 10
2456 set comm-list DEL delete
c3c5a71f 2457
42fc5d26 2458
0efdf0fe 2459.. _bgp-extended-communities-attribute:
42fc5d26 2460
8fcedbd2
QY
2461Extended Communities Attribute
2462^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
42fc5d26 2463
c1a54c05
QY
2464BGP extended communities attribute is introduced with MPLS VPN/BGP technology.
2465MPLS VPN/BGP expands capability of network infrastructure to provide VPN
2466functionality. At the same time it requires a new framework for policy routing.
2467With BGP Extended Communities Attribute we can use Route Target or Site of
2468Origin for implementing network policy for MPLS VPN/BGP.
42fc5d26 2469
c1a54c05
QY
2470BGP Extended Communities Attribute is similar to BGP Communities Attribute. It
2471is an optional transitive attribute. BGP Extended Communities Attribute can
2472carry multiple Extended Community value. Each Extended Community value is
2473eight octet length.
42fc5d26 2474
c1a54c05
QY
2475BGP Extended Communities Attribute provides an extended range compared with BGP
2476Communities Attribute. Adding to that there is a type field in each value to
2477provides community space structure.
42fc5d26 2478
c1a54c05
QY
2479There are two format to define Extended Community value. One is AS based format
2480the other is IP address based format.
42fc5d26 2481
8fcedbd2
QY
2482``AS:VAL``
2483 This is a format to define AS based Extended Community value. ``AS`` part
2484 is 2 octets Global Administrator subfield in Extended Community value.
2485 ``VAL`` part is 4 octets Local Administrator subfield. ``7675:100``
2486 represents AS 7675 policy value 100.
42fc5d26 2487
8fcedbd2 2488``IP-Address:VAL``
c1a54c05 2489 This is a format to define IP address based Extended Community value.
8fcedbd2
QY
2490 ``IP-Address`` part is 4 octets Global Administrator subfield. ``VAL`` part
2491 is 2 octets Local Administrator subfield.
42fc5d26 2492
0efdf0fe 2493.. _bgp-extended-community-lists:
42fc5d26 2494
8fcedbd2
QY
2495Extended Community Lists
2496^^^^^^^^^^^^^^^^^^^^^^^^
42fc5d26 2497
a64e0ee5 2498.. clicmd:: bgp extcommunity-list standard NAME permit|deny EXTCOMMUNITY
42fc5d26 2499
4da7fda3
QY
2500 This command defines a new standard extcommunity-list. `extcommunity` is
2501 extended communities value. The `extcommunity` is compiled into extended
2502 community structure. We can define multiple extcommunity-list under same
2503 name. In that case match will happen user defined order. Once the
2504 extcommunity-list matches to extended communities attribute in BGP updates
2505 it return permit or deny based upon the extcommunity-list definition. When
2506 there is no matched entry, deny will be returned. When `extcommunity` is
2507 empty it matches to any routes.
42fc5d26 2508
ff8f74b6
DA
2509 A special handling for ``internet`` community is applied. It matches
2510 any community.
2511
a64e0ee5 2512.. clicmd:: bgp extcommunity-list expanded NAME permit|deny LINE
42fc5d26 2513
4da7fda3
QY
2514 This command defines a new expanded extcommunity-list. `line` is a string
2515 expression of extended communities attribute. `line` can be a regular
2516 expression (:ref:`bgp-regular-expressions`) to match an extended communities
2517 attribute in BGP updates.
42fc5d26 2518
03750f1e
QY
2519 Note that all extended community lists shares a single name space, so it's
2520 not necessary to specify their type when creating or destroying them.
42fc5d26 2521
03750f1e 2522.. clicmd:: show bgp extcommunity-list [NAME detail]
c1a54c05 2523
4da7fda3 2524 This command displays current extcommunity-list information. When `name` is
03750f1e 2525 specified the community list's information is shown.
c3c5a71f 2526
42fc5d26 2527
0efdf0fe 2528.. _bgp-extended-communities-in-route-map:
42fc5d26
QY
2529
2530BGP Extended Communities in Route Map
8fcedbd2 2531"""""""""""""""""""""""""""""""""""""
42fc5d26 2532
29adcd50 2533.. clicmd:: match extcommunity WORD
42fc5d26 2534
48753f73
DA
2535.. clicmd:: set extcommunity none
2536
2537 This command resets the extended community value in BGP updates. If the attribute is
2538 already configured or received from the peer, the attribute is discarded and set to
2539 none. This is useful if you need to strip incoming extended communities.
2540
29adcd50 2541.. clicmd:: set extcommunity rt EXTCOMMUNITY
42fc5d26 2542
c1a54c05 2543 This command set Route Target value.
42fc5d26 2544
29adcd50 2545.. clicmd:: set extcommunity soo EXTCOMMUNITY
c1a54c05
QY
2546
2547 This command set Site of Origin value.
42fc5d26 2548
ed647ed2 2549.. clicmd:: set extcommunity bandwidth <(1-25600) | cumulative | num-multipaths> [non-transitive]
2550
2551 This command sets the BGP link-bandwidth extended community for the prefix
2552 (best path) for which it is applied. The link-bandwidth can be specified as
2553 an ``explicit value`` (specified in Mbps), or the router can be told to use
2554 the ``cumulative bandwidth`` of all multipaths for the prefix or to compute
2555 it based on the ``number of multipaths``. The link bandwidth extended
2556 community is encoded as ``transitive`` unless the set command explicitly
2557 configures it as ``non-transitive``.
2558
2559.. seealso:: :ref:`wecmp_linkbw`
47f47873
PG
2560
2561Note that the extended expanded community is only used for `match` rule, not for
2562`set` actions.
2563
0efdf0fe 2564.. _bgp-large-communities-attribute:
42fc5d26 2565
8fcedbd2
QY
2566Large Communities Attribute
2567^^^^^^^^^^^^^^^^^^^^^^^^^^^
42fc5d26
QY
2568
2569The BGP Large Communities attribute was introduced in Feb 2017 with
c1a54c05 2570:rfc:`8092`.
42fc5d26 2571
8fcedbd2
QY
2572The BGP Large Communities Attribute is similar to the BGP Communities Attribute
2573except that it has 3 components instead of two and each of which are 4 octets
2574in length. Large Communities bring additional functionality and convenience
2575over traditional communities, specifically the fact that the ``GLOBAL`` part
2576below is now 4 octets wide allowing seamless use in networks using 4-byte ASNs.
2577
2578``GLOBAL:LOCAL1:LOCAL2``
2579 This is the format to define Large Community values. Referencing :rfc:`8195`
2580 the values are commonly referred to as follows:
2581
2582 - The ``GLOBAL`` part is a 4 octet Global Administrator field, commonly used
2583 as the operators AS number.
2584 - The ``LOCAL1`` part is a 4 octet Local Data Part 1 subfield referred to as
2585 a function.
2586 - The ``LOCAL2`` part is a 4 octet Local Data Part 2 field and referred to
2587 as the parameter subfield.
2588
2589 As an example, ``65551:1:10`` represents AS 65551 function 1 and parameter
2590 10. The referenced RFC above gives some guidelines on recommended usage.
42fc5d26 2591
0efdf0fe 2592.. _bgp-large-community-lists:
42fc5d26 2593
8fcedbd2
QY
2594Large Community Lists
2595"""""""""""""""""""""
42fc5d26
QY
2596
2597Two types of large community lists are supported, namely `standard` and
2598`expanded`.
2599
a64e0ee5 2600.. clicmd:: bgp large-community-list standard NAME permit|deny LARGE-COMMUNITY
42fc5d26 2601
4da7fda3
QY
2602 This command defines a new standard large-community-list. `large-community`
2603 is the Large Community value. We can add multiple large communities under
2604 same name. In that case the match will happen in the user defined order.
2605 Once the large-community-list matches the Large Communities attribute in BGP
2606 updates it will return permit or deny based upon the large-community-list
2607 definition. When there is no matched entry, a deny will be returned. When
2608 `large-community` is empty it matches any routes.
42fc5d26 2609
a64e0ee5 2610.. clicmd:: bgp large-community-list expanded NAME permit|deny LINE
42fc5d26 2611
4da7fda3
QY
2612 This command defines a new expanded large-community-list. Where `line` is a
2613 string matching expression, it will be compared to the entire Large
2614 Communities attribute as a string, with each large-community in order from
2615 lowest to highest. `line` can also be a regular expression which matches
2616 this Large Community attribute.
42fc5d26 2617
03750f1e
QY
2618 Note that all community lists share the same namespace, so it's not
2619 necessary to specify ``standard`` or ``expanded``; these modifiers are
2620 purely aesthetic.
42fc5d26 2621
a64e0ee5 2622.. clicmd:: show bgp large-community-list
42fc5d26 2623
36dc43aa 2624.. clicmd:: show bgp large-community-list NAME detail
42fc5d26 2625
c1a54c05
QY
2626 This command display current large-community-list information. When
2627 `name` is specified the community list information is shown.
42fc5d26 2628
29adcd50 2629.. clicmd:: show ip bgp large-community-info
c1a54c05
QY
2630
2631 This command displays the current large communities in use.
42fc5d26 2632
0efdf0fe 2633.. _bgp-large-communities-in-route-map:
42fc5d26 2634
8fcedbd2
QY
2635Large Communities in Route Map
2636""""""""""""""""""""""""""""""
42fc5d26 2637
03ff9a14 2638.. clicmd:: match large-community LINE [exact-match]
42fc5d26 2639
4da7fda3
QY
2640 Where `line` can be a simple string to match, or a regular expression. It
2641 is very important to note that this match occurs on the entire
c1a54c05 2642 large-community string as a whole, where each large-community is ordered
03ff9a14 2643 from lowest to highest. When `exact-match` keyword is specified, match
2644 happen only when BGP updates have completely same large communities value
2645 specified in the large community list.
42fc5d26 2646
29adcd50 2647.. clicmd:: set large-community LARGE-COMMUNITY
42fc5d26 2648
29adcd50 2649.. clicmd:: set large-community LARGE-COMMUNITY LARGE-COMMUNITY
42fc5d26 2650
29adcd50 2651.. clicmd:: set large-community LARGE-COMMUNITY additive
c1a54c05
QY
2652
2653 These commands are used for setting large-community values. The first
2654 command will overwrite any large-communities currently present.
2655 The second specifies two large-communities, which overwrites the current
2656 large-community list. The third will add a large-community value without
2657 overwriting other values. Multiple large-community values can be specified.
42fc5d26 2658
47f47873
PG
2659Note that the large expanded community is only used for `match` rule, not for
2660`set` actions.
b572f826 2661
d864dd9e
EB
2662.. _bgp-roles-and-only-to-customers:
2663
2664BGP Roles and Only to Customers
2665-------------------------------
2666
2667BGP roles are defined in :rfc:`9234` and provide an easy way to route leaks
2668prevention, detection and mitigation.
2669
2670To enable its mechanics, you must set your local role to reflect your type of
2671peering relationship with your neighbor. Possible values of ``LOCAL-ROLE`` are:
8f2d6021
EB
2672
2673- provider
2674- rs-server
2675- rs-client
2676- customer
2677- peer
d864dd9e
EB
2678
2679The local Role value is negotiated with the new BGP Role capability with a
2680built-in check of the corresponding value. In case of mismatch the new OPEN
2681Roles Mismatch Notification <2, 11> would be sent.
2682
2683The correct Role pairs are:
2684
2685* Provider - Customer
2686* Peer - Peer
2687* RS-Server - RS-Client
2688
2689.. code-block:: shell
2690
2691 ~# vtysh -c 'show bgp neighbor' | grep 'Role'
2692 Local Role: customer
2693 Neighbor Role: provider
2694 Role: advertised and received
2695
2696If strict-mode is set BGP session won't become established until BGP neighbor
8f2d6021 2697set local Role on its side. This configuration parameter is defined in
d864dd9e 2698:rfc:`9234` and used to enforce corresponding configuration at your
8f2d6021 2699counter-part side. Default value - disabled.
d864dd9e
EB
2700
2701Routes that sent from provider, rs-server, or peer local-role (or if received
2702by customer, rs-clinet, or peer local-role) will be marked with a new
2703Only to Customer (OTC) attribute.
2704
2705Routes with this attribute can only be sent to your neighbor if your
2706local-role is provider or rs-server. Routes with this attribute can be
2707received only if your local-role is customer or rs-client.
2708
8f2d6021 2709In case of peer-peer relationship routes can be received only if
d864dd9e
EB
2710OTC value is equal to your neighbor AS number.
2711
2712All these rules with OTC help to detect and mitigate route leaks and
2713happened automatically if local-role is set.
2714
2715.. clicmd:: neighbor PEER local-role LOCAL-ROLE [strict-mode]
2716
2717 This command set your local-role to ``LOCAL-ROLE``:
2718 <provider|rs-server|rs-client|customer|peer>.
2719
8f2d6021 2720 This role helps to detect and prevent route leaks.
d864dd9e
EB
2721
2722 If ``strict-mode`` is set, your neighbor must send you Capability with the
2723 value of his role (by setting local-role on his side). Otherwise, a Role
2724 Mismatch Notification will be sent.
2725
c8a5e5e1 2726.. _bgp-l3vpn-vrfs:
b572f826 2727
c8a5e5e1
QY
2728L3VPN VRFs
2729----------
b572f826 2730
c8a5e5e1
QY
2731*bgpd* supports :abbr:`L3VPN (Layer 3 Virtual Private Networks)` :abbr:`VRFs
2732(Virtual Routing and Forwarding)` for IPv4 :rfc:`4364` and IPv6 :rfc:`4659`.
2733L3VPN routes, and their associated VRF MPLS labels, can be distributed to VPN
2734SAFI neighbors in the *default*, i.e., non VRF, BGP instance. VRF MPLS labels
2735are reached using *core* MPLS labels which are distributed using LDP or BGP
2736labeled unicast. *bgpd* also supports inter-VRF route leaking.
b572f826 2737
b572f826 2738
1bb550b6
PG
2739L3VPN over GRE interfaces
2740^^^^^^^^^^^^^^^^^^^^^^^^^
2741
2742In MPLS-VPN or SRv6-VPN, an L3VPN next-hop entry requires that the path
2743chosen respectively contains a labelled path or a valid SID IPv6 address.
2744Otherwise the L3VPN entry will not be installed. It is possible to ignore
2745that check when the path chosen by the next-hop uses a GRE interface, and
2746there is a route-map configured at inbound side of ipv4-vpn or ipv6-vpn
2747address family with following syntax:
2748
2749.. clicmd:: set l3vpn next-hop encapsulation gre
2750
2751The incoming BGP L3VPN entry is accepted, provided that the next hop of the
2752L3VPN entry uses a path that takes the GRE tunnel as outgoing interface. The
2753remote endpoint should be configured just behind the GRE tunnel; remote
2754device configuration may vary depending whether it acts at edge endpoint or
2755not: in any case, the expectation is that incoming MPLS traffic received at
2756this endpoint should be considered as a valid path for L3VPN.
2757
c8a5e5e1 2758.. _bgp-vrf-route-leaking:
8fcedbd2
QY
2759
2760VRF Route Leaking
c8a5e5e1 2761-----------------
8fcedbd2
QY
2762
2763BGP routes may be leaked (i.e. copied) between a unicast VRF RIB and the VPN
f90115c5
LB
2764SAFI RIB of the default VRF for use in MPLS-based L3VPNs. Unicast routes may
2765also be leaked between any VRFs (including the unicast RIB of the default BGP
2766instanced). A shortcut syntax is also available for specifying leaking from one
f563acec 2767VRF to another VRF using the default instance's VPN RIB as the intermediary. A
f90115c5 2768common application of the VRF-VRF feature is to connect a customer's private
8fcedbd2
QY
2769routing domain to a provider's VPN service. Leaking is configured from the
2770point of view of an individual VRF: ``import`` refers to routes leaked from VPN
2771to a unicast VRF, whereas ``export`` refers to routes leaked from a unicast VRF
2772to VPN.
2773
2774Required parameters
c8a5e5e1 2775^^^^^^^^^^^^^^^^^^^
b572f826 2776
4da7fda3
QY
2777Routes exported from a unicast VRF to the VPN RIB must be augmented by two
2778parameters:
2779
2780- an :abbr:`RD (Route Distinguisher)`
2781- an :abbr:`RTLIST (Route-target List)`
2782
2783Configuration for these exported routes must, at a minimum, specify these two
2784parameters.
2785
2786Routes imported from the VPN RIB to a unicast VRF are selected according to
2787their RTLISTs. Routes whose RTLIST contains at least one route-target in
2788common with the configured import RTLIST are leaked. Configuration for these
2789imported routes must specify an RTLIST to be matched.
2790
2791The RD, which carries no semantic value, is intended to make the route unique
2792in the VPN RIB among all routes of its prefix that originate from all the
2793customers and sites that are attached to the provider's VPN service.
2794Accordingly, each site of each customer is typically assigned an RD that is
2795unique across the entire provider network.
2796
2797The RTLIST is a set of route-target extended community values whose purpose is
2798to specify route-leaking policy. Typically, a customer is assigned a single
2799route-target value for import and export to be used at all customer sites. This
2800configuration specifies a simple topology wherein a customer has a single
2801routing domain which is shared across all its sites. More complex routing
2802topologies are possible through use of additional route-targets to augment the
2803leaking of sets of routes in various ways.
b572f826 2804
e967a1d0
DS
2805When using the shortcut syntax for vrf-to-vrf leaking, the RD and RT are
2806auto-derived.
fb3d9f3e 2807
8fcedbd2 2808General configuration
c8a5e5e1 2809^^^^^^^^^^^^^^^^^^^^^
b572f826 2810
f90115c5 2811Configuration of route leaking between a unicast VRF RIB and the VPN SAFI RIB
4da7fda3
QY
2812of the default VRF is accomplished via commands in the context of a VRF
2813address-family:
b572f826 2814
b572f826
PZ
2815.. clicmd:: rd vpn export AS:NN|IP:nn
2816
4da7fda3
QY
2817 Specifies the route distinguisher to be added to a route exported from the
2818 current unicast VRF to VPN.
b572f826 2819
b572f826
PZ
2820.. clicmd:: rt vpn import|export|both RTLIST...
2821
4da7fda3
QY
2822 Specifies the route-target list to be attached to a route (export) or the
2823 route-target list to match against (import) when exporting/importing between
2824 the current unicast VRF and VPN.
b572f826 2825
4da7fda3
QY
2826 The RTLIST is a space-separated list of route-targets, which are BGP
2827 extended community values as described in
b572f826
PZ
2828 :ref:`bgp-extended-communities-attribute`.
2829
e70e9f8e 2830.. clicmd:: label vpn export (0..1048575)|auto
b572f826 2831
8a2124f7 2832 Enables an MPLS label to be attached to a route exported from the current
2833 unicast VRF to VPN. If the value specified is ``auto``, the label value is
2834 automatically assigned from a pool maintained by the Zebra daemon. If Zebra
2835 is not running, or if this command is not configured, automatic label
2836 assignment will not complete, which will block corresponding route export.
b572f826 2837
b572f826
PZ
2838.. clicmd:: nexthop vpn export A.B.C.D|X:X::X:X
2839
4da7fda3
QY
2840 Specifies an optional nexthop value to be assigned to a route exported from
2841 the current unicast VRF to VPN. If left unspecified, the nexthop will be set
2842 to 0.0.0.0 or 0:0::0:0 (self).
b572f826 2843
b572f826
PZ
2844.. clicmd:: route-map vpn import|export MAP
2845
4da7fda3 2846 Specifies an optional route-map to be applied to routes imported or exported
d1e7591e 2847 between the current unicast VRF and VPN.
b572f826 2848
b572f826
PZ
2849.. clicmd:: import|export vpn
2850
d1e7591e 2851 Enables import or export of routes between the current unicast VRF and VPN.
b572f826 2852
fb3d9f3e
DS
2853.. clicmd:: import vrf VRFNAME
2854
e967a1d0
DS
2855 Shortcut syntax for specifying automatic leaking from vrf VRFNAME to
2856 the current VRF using the VPN RIB as intermediary. The RD and RT
2857 are auto derived and should not be specified explicitly for either the
2858 source or destination VRF's.
2859
2860 This shortcut syntax mode is not compatible with the explicit
2861 `import vpn` and `export vpn` statements for the two VRF's involved.
2862 The CLI will disallow attempts to configure incompatible leaking
2863 modes.
fb3d9f3e 2864
a486300b
PG
2865.. clicmd:: bgp retain route-target all
2866
2867It is possible to retain or not VPN prefixes that are not imported by local
2868VRF configuration. This can be done via the following command in the context
2869of the global VPNv4/VPNv6 family. This command defaults to on and is not
2870displayed.
2871The `no bgp retain route-target all` form of the command is displayed.
2872
01da2d26
DA
2873.. clicmd:: neighbor <A.B.C.D|X:X::X:X|WORD> soo EXTCOMMUNITY
2874
2875Without this command, SoO extended community attribute is configured using
2876an inbound route map that sets the SoO value during the update process.
2877With the introduction of the new BGP per-neighbor Site-of-Origin (SoO) feature,
2878two new commands configured in sub-modes under router configuration mode
2879simplify the SoO value configuration.
2880
2881If we configure SoO per neighbor at PEs, the SoO community is automatically
2882added for all routes from the CPEs. Routes are validated and prevented from
2883being sent back to the same CPE (e.g.: multi-site). This is especially needed
2884when using ``as-override`` or ``allowas-in`` to prevent routing loops.
2885
4cd690ae
PG
2886.. clicmd:: mpls bgp forwarding
2887
2888It is possible to permit BGP install VPN prefixes without transport labels,
2889by issuing the following command under the interface configuration context.
2890This configuration will install VPN prefixes originated from an e-bgp session,
2891and with the next-hop directly connected.
2892
4ccd4033
HS
2893.. _bgp-l3vpn-srv6:
2894
2895L3VPN SRv6
2896----------
2897
2898.. clicmd:: segment-routing srv6
2899
2900 Use SRv6 backend with BGP L3VPN, and go to its configuration node.
2901
2902.. clicmd:: locator NAME
2903
2904 Specify the SRv6 locator to be used for SRv6 L3VPN. The Locator name must
2905 be set in zebra, but user can set it in any order.
42fc5d26 2906
b6c34e85
CS
2907.. _bgp-evpn:
2908
2909Ethernet Virtual Network - EVPN
2910-------------------------------
2911
0a4e0034
JAG
2912Note: When using EVPN features and if you have a large number of hosts, make
2913sure to adjust the size of the arp neighbor cache to avoid neighbor table
2914overflow and/or excessive garbage collection. On Linux, the size of the table
2915and garbage collection frequency can be controlled via the following
2916sysctl configurations:
2917
2918.. code-block:: shell
2919
2920 net.ipv4.neigh.default.gc_thresh1
2921 net.ipv4.neigh.default.gc_thresh2
2922 net.ipv4.neigh.default.gc_thresh3
2923
2924 net.ipv6.neigh.default.gc_thresh1
2925 net.ipv6.neigh.default.gc_thresh2
2926 net.ipv6.neigh.default.gc_thresh3
2927
2928For more information, see ``man 7 arp``.
2929
b6c34e85
CS
2930.. _bgp-evpn-advertise-pip:
2931
2932EVPN advertise-PIP
2933^^^^^^^^^^^^^^^^^^
2934
2935In a EVPN symmetric routing MLAG deployment, all EVPN routes advertised
2936with anycast-IP as next-hop IP and anycast MAC as the Router MAC (RMAC - in
2937BGP EVPN Extended-Community).
2938EVPN picks up the next-hop IP from the VxLAN interface's local tunnel IP and
2939the RMAC is obtained from the MAC of the L3VNI's SVI interface.
2940Note: Next-hop IP is used for EVPN routes whether symmetric routing is
2941deployed or not but the RMAC is only relevant for symmetric routing scenario.
2942
2943Current behavior is not ideal for Prefix (type-5) and self (type-2)
2944routes. This is because the traffic from remote VTEPs routed sub optimally
2945if they land on the system where the route does not belong.
2946
2947The advertise-pip feature advertises Prefix (type-5) and self (type-2)
2948routes with system's individual (primary) IP as the next-hop and individual
2949(system) MAC as Router-MAC (RMAC), while leaving the behavior unchanged for
2950other EVPN routes.
2951
2952To support this feature there needs to have ability to co-exist a
2953(system-MAC, system-IP) pair with a (anycast-MAC, anycast-IP) pair with the
2954ability to terminate VxLAN-encapsulated packets received for either pair on
0a4e0034 2955the same L3VNI (i.e associated VLAN). This capability is needed per tenant
b6c34e85
CS
2956VRF instance.
2957
0a4e0034 2958To derive the system-MAC and the anycast MAC, there must be a
b6c34e85
CS
2959separate/additional MAC-VLAN interface corresponding to L3VNI’s SVI.
2960The SVI interface’s MAC address can be interpreted as system-MAC
2961and MAC-VLAN interface's MAC as anycast MAC.
2962
2963To derive system-IP and anycast-IP, the default BGP instance's router-id is used
2964as system-IP and the VxLAN interface’s local tunnel IP as the anycast-IP.
2965
2966User has an option to configure the system-IP and/or system-MAC value if the
2967auto derived value is not preferred.
2968
2969Note: By default, advertise-pip feature is enabled and user has an option to
0a4e0034 2970disable the feature via configuration CLI. Once the feature is disabled under
b6c34e85
CS
2971bgp vrf instance or MAC-VLAN interface is not configured, all the routes follow
2972the same behavior of using same next-hop and RMAC values.
2973
03750f1e 2974.. clicmd:: advertise-pip [ip <addr> [mac <addr>]]
b6c34e85 2975
f563acec 2976Enables or disables advertise-pip feature, specify system-IP and/or system-MAC
b6c34e85
CS
2977parameters.
2978
a927f5bc
JAG
2979EVPN advertise-svi-ip
2980^^^^^^^^^^^^^^^^^^^^^
0a4e0034 2981Typically, the SVI IP address is reused on VTEPs across multiple racks. However,
a927f5bc 2982if you have unique SVI IP addresses that you want to be reachable you can use the
0a4e0034
JAG
2983advertise-svi-ip option. This option advertises the SVI IP/MAC address as a type-2
2984route and eliminates the need for any flooding over VXLAN to reach the IP from a
2985remote VTEP.
2986
a927f5bc 2987.. clicmd:: advertise-svi-ip
0a4e0034
JAG
2988
2989Note that you should not enable both the advertise-svi-ip and the advertise-default-gw
2990at the same time.
2991
40f4507d
AD
2992.. _bgp-evpn-overlay-index-gateway-ip:
2993
2994EVPN Overlay Index Gateway IP
2995^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
d272105a
MC
2996RFC https://datatracker.ietf.org/doc/html/rfc9136 explains the use of overlay
2997indexes for recursive route resolution for EVPN type-5 route.
40f4507d
AD
2998
2999We support gateway IP overlay index.
3000A gateway IP, advertised with EVPN prefix route, is used to find an EVPN MAC/IP
3001route with its IP field same as the gateway IP. This MAC/IP entry provides the
3002nexthop VTEP and the tunnel information required for the VxLAN encapsulation.
3003
3004Functionality:
3005
3006::
3007
3008 . +--------+ BGP +--------+ BGP +--------+ +--------+
3009 SN1 | | IPv4 | | EVPN | | | |
3010 ======+ Host1 +------+ PE1 +------+ PE2 +------+ Host2 +
3011 | | | | | | | |
3012 +--------+ +--------+ +--------+ +--------+
3013
3014Consider above topology where prefix SN1 is connected behind host1. Host1
3015advertises SN1 to PE1 over BGP IPv4 session. PE1 advertises SN1 to PE2 using
3016EVPN type-5 route with host1 IP as the gateway IP. PE1 also advertises
3017Host1 MAC/IP as type-2 route which is used to resolve host1 gateway IP.
3018
3019PE2 receives this type-5 route and imports it into the vrf based on route
3020targets. BGP prefix imported into the vrf uses gateway IP as its BGP nexthop.
3021This route is installed into zebra if following conditions are satisfied:
7aa6fb2d 3022
40f4507d
AD
30231. Gateway IP nexthop is L3 reachable.
30242. PE2 has received EVPN type-2 route with IP field set to gateway IP.
3025
3026Topology requirements:
7aa6fb2d 3027
40f4507d
AD
30281. This feature is supported for asymmetric routing model only. While
3029 sending packets to SN1, ingress PE (PE2) performs routing and
3030 egress PE (PE1) performs only bridging.
f563acec 30312. This feature supports only traditional(non vlan-aware) bridge model. Bridge
40f4507d
AD
3032 interface associated with L2VNI is an L3 interface. i.e., this interface is
3033 configured with an address in the L2VNI subnet. Note that the gateway IP
3034 should also have an address in the same subnet.
30353. As this feature works in asymmetric routing model, all L2VNIs and corresponding
3036 VxLAN and bridge interfaces should be present at all the PEs.
30374. L3VNI configuration is required to generate and import EVPN type-5 routes.
3038 L3VNI VxLAN and bridge interfaces also should be present.
3039
3040A PE can use one of the following two mechanisms to advertise an EVPN type-5
3041route with gateway IP.
3042
30431. CLI to add gateway IP while generating EVPN type-5 route from a BGP IPv4/IPv6
3044prefix:
3045
5c54512e 3046.. clicmd:: advertise <ipv4|ipv6> unicast [gateway-ip]
40f4507d
AD
3047
3048When this CLI is configured for a BGP vrf under L2VPN EVPN address family, EVPN
3049type-5 routes are generated for BGP prefixes in the vrf. Nexthop of the BGP
3050prefix becomes the gateway IP of the corresponding type-5 route.
3051
3052If the above command is configured without the "gateway-ip" keyword, type-5
3053routes are generated without overlay index.
3054
30552. Add gateway IP to EVPN type-5 route using a route-map:
3056
5c54512e 3057.. clicmd:: set evpn gateway-ip <ipv4|ipv6> <addr>
40f4507d
AD
3058
3059When route-map with above set clause is applied as outbound policy in BGP, it
3060will set the gateway-ip in EVPN type-5 NLRI.
3061
3062Example configuration:
3063
3064.. code-block:: frr
3065
3066 router bgp 100
3067 neighbor 192.168.0.1 remote-as 101
3068 !
3069 address-family ipv4 l2vpn evpn
3070 neighbor 192.168.0.1 route-map RMAP out
3071 exit-address-family
3072 !
3073 route-map RMAP permit 10
3074 set evpn gateway-ip 10.0.0.1
3075 set evpn gateway-ip 10::1
3076
3077A PE that receives a type-5 route with gateway IP overlay index should have
3078"enable-resolve-overlay-index" configuration enabled to recursively resolve the
3079overlay index nexthop and install the prefix into zebra.
3080
5c54512e 3081.. clicmd:: enable-resolve-overlay-index
40f4507d
AD
3082
3083Example configuration:
3084
3085.. code-block:: frr
3086
3087 router bgp 65001
3088 bgp router-id 192.168.100.1
3089 no bgp ebgp-requires-policy
3090 neighbor 10.0.1.2 remote-as 65002
3091 !
3092 address-family l2vpn evpn
3093 neighbor 10.0.1.2 activate
3094 advertise-all-vni
3095 enable-resolve-overlay-index
3096 exit-address-family
3097 !
3098
92396068
AK
3099.. _bgp-evpn-mh:
3100
77457939
AK
3101EVPN Multihoming
3102^^^^^^^^^^^^^^^^
3103
3104All-Active Multihoming is used for redundancy and load sharing. Servers
3105are attached to two or more PEs and the links are bonded (link-aggregation).
3106This group of server links is referred to as an Ethernet Segment.
3107
3108Ethernet Segments
3109"""""""""""""""""
3110An Ethernet Segment can be configured by specifying a system-MAC and a
c52de8c1 3111local discriminator or a complete ESINAME against the bond interface on the
3112PE (via zebra) -
77457939 3113
c52de8c1 3114.. clicmd:: evpn mh es-id <(1-16777215)|ESINAME>
77457939 3115
03750f1e 3116.. clicmd:: evpn mh es-sys-mac X:X:X:X:X:X
77457939
AK
3117
3118The sys-mac and local discriminator are used for generating a 10-byte,
c52de8c1 3119Type-3 Ethernet Segment ID. ESINAME is a 10-byte, Type-0 Ethernet Segment ID -
3120"00:AA:BB:CC:DD:EE:FF:GG:HH:II".
77457939 3121
c12d5f20 3122Type-1 (EAD-per-ES and EAD-per-EVI) routes are used to advertise the locally
77457939
AK
3123attached ESs and to learn off remote ESs in the network. Local Type-2/MAC-IP
3124routes are also advertised with a destination ESI allowing for MAC-IP syncing
3125between Ethernet Segment peers.
3126Reference: RFC 7432, RFC 8365
3127
3128EVPN-MH is intended as a replacement for MLAG or Anycast VTEPs. In
3129multihoming each PE has an unique VTEP address which requires the introduction
3130of a new dataplane construct, MAC-ECMP. Here a MAC/FDB entry can point to a
3131list of remote PEs/VTEPs.
3132
3133BUM handling
3134""""""""""""
3135Type-4 (ESR) routes are used for Designated Forwarder (DF) election. DFs
3136forward BUM traffic received via the overlay network. This implementation
3137uses a preference based DF election specified by draft-ietf-bess-evpn-pref-df.
3138The DF preference is configurable per-ES (via zebra) -
3139
03750f1e 3140.. clicmd:: evpn mh es-df-pref (1-16777215)
77457939
AK
3141
3142BUM traffic is rxed via the overlay by all PEs attached to a server but
3143only the DF can forward the de-capsulated traffic to the access port. To
f563acec 3144accommodate that non-DF filters are installed in the dataplane to drop
77457939
AK
3145the traffic.
3146
3147Similarly traffic received from ES peers via the overlay cannot be forwarded
3148to the server. This is split-horizon-filtering with local bias.
3149
fe8293c3
AK
3150Knobs for interop
3151"""""""""""""""""
3152Some vendors do not send EAD-per-EVI routes. To interop with them we
3153need to relax the dependency on EAD-per-EVI routes and activate a remote
3154ES-PE based on just the EAD-per-ES route.
3155
3156Note that by default we advertise and expect EAD-per-EVI routes.
3157
03750f1e 3158.. clicmd:: disable-ead-evi-rx
fe8293c3 3159
03750f1e 3160.. clicmd:: disable-ead-evi-tx
fe8293c3 3161
77457939
AK
3162Fast failover
3163"""""""""""""
3164As the primary purpose of EVPN-MH is redundancy keeping the failover efficient
3165is a recurring theme in the implementation. Following sub-features have
3166been introduced for the express purpose of efficient ES failovers.
3167
3168- Layer-2 Nexthop Groups and MAC-ECMP via L2NHG.
3169
3170- Host routes (for symmetric IRB) via L3NHG.
3171 On dataplanes that support layer3 nexthop groups the feature can be turned
3172 on via the following BGP config -
3173
03750f1e 3174.. clicmd:: use-es-l3nhg
77457939
AK
3175
3176- Local ES (MAC/Neigh) failover via ES-redirect.
3177 On dataplanes that do not have support for ES-redirect the feature can be
3178 turned off via the following zebra config -
3179
03750f1e 3180.. clicmd:: evpn mh redirect-off
77457939
AK
3181
3182Uplink/Core tracking
3183""""""""""""""""""""
3184When all the underlay links go down the PE no longer has access to the VxLAN
3185+overlay. To prevent blackholing of traffic the server/ES links are
3186protodowned on the PE. A link can be setup for uplink tracking via the
3187following zebra configuration -
3188
03750f1e 3189.. clicmd:: evpn mh uplink
77457939
AK
3190
3191Proxy advertisements
3192""""""""""""""""""""
3193To handle hitless upgrades support for proxy advertisement has been added
3194as specified by draft-rbickhart-evpn-ip-mac-proxy-adv. This allows a PE
3195(say PE1) to proxy advertise a MAC-IP rxed from an ES peer (say PE2). When
3196the ES peer (PE2) goes down PE1 continues to advertise hosts learnt from PE2
3197for a holdtime during which it attempts to establish local reachability of
3198the host. This holdtime is configurable via the following zebra commands -
3199
03750f1e 3200.. clicmd:: evpn mh neigh-holdtime (0-86400)
77457939 3201
03750f1e 3202.. clicmd:: evpn mh mac-holdtime (0-86400)
77457939
AK
3203
3204Startup delay
3205"""""""""""""
3206When a switch is rebooted we wait for a brief period to allow the underlay
3207and EVPN network to converge before enabling the ESs. For this duration the
3208ES bonds are held protodown. The startup delay is configurable via the
3209following zebra command -
3210
03750f1e 3211.. clicmd:: evpn mh startup-delay (0-3600)
77457939 3212
92396068
AK
3213EAD-per-ES fragmentation
3214""""""""""""""""""""""""
3215The EAD-per-ES route carries the EVI route targets for all the broadcast
3216domains associated with the ES. Depending on the EVI scale the EAD-per-ES
3217route maybe fragmented.
3218
3219The number of EVIs per-EAD route can be configured via the following
3220BGP command -
3221
c12d5f20 3222.. clicmd:: [no] ead-es-frag evi-limit (1-1000)
92396068
AK
3223
3224Sample Configuration
3225^^^^^^^^^^^^^^^^^^^^^
3226.. code-block:: frr
3227
3228 !
3229 router bgp 5556
3230 !
3231 address-family l2vpn evpn
3232 ead-es-frag evi-limit 200
3233 exit-address-family
3234 !
3235 !
3236
3237EAD-per-ES route-target
3238"""""""""""""""""""""""
3239The EAD-per-ES route by default carries all the EVI route targets. Depending
3240on EVI scale that can result in route fragmentation. In some cases it maybe
3241necessary to avoid this fragmentation and that can be done via the following
3242workaround -
32431. Configure a single supplementary BD per-tenant VRF. This SBD needs to
3244be provisioned on all EVPN PEs associated with the tenant-VRF.
32452. Config the SBD's RT as the EAD-per-ES route's export RT.
3246
3247Sample Configuration
3248^^^^^^^^^^^^^^^^^^^^^
3249.. code-block:: frr
3250
3251 !
3252 router bgp 5556
3253 !
3254 address-family l2vpn evpn
3255 ead-es-route-target export 5556:1001
3256 ead-es-route-target export 5556:1004
3257 ead-es-route-target export 5556:1008
3258 exit-address-family
3259 !
3260
b58393f6 3261Support with VRF network namespace backend
3262^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ee9d0f09
PG
3263It is possible to separate overlay networks contained in VXLAN interfaces from
3264underlay networks by using VRFs. VRF-lite and VRF-netns backends can be used for
3265that. In the latter case, it is necessary to set both bridge and vxlan interface
3266in the same network namespace, as below example illustrates:
3267
3268.. code-block:: shell
3269
3270 # linux shell
3271 ip netns add vrf1
3272 ip link add name vxlan101 type vxlan id 101 dstport 4789 dev eth0 local 10.1.1.1
3273 ip link set dev vxlan101 netns vrf1
3274 ip netns exec vrf1 ip link set dev lo up
3275 ip netns exec vrf1 brctl addbr bridge101
3276 ip netns exec vrf1 brctl addif bridge101 vxlan101
3277
3278This makes it possible to separate not only layer 3 networks like VRF-lite networks.
3279Also, VRF netns based make possible to separate layer 2 networks on separate VRF
3280instances.
89b97c33 3281
7f7940e6
MK
3282.. _bgp-conditional-advertisement:
3283
3284BGP Conditional Advertisement
3285-----------------------------
3286The BGP conditional advertisement feature uses the ``non-exist-map`` or the
3287``exist-map`` and the ``advertise-map`` keywords of the neighbor advertise-map
3288command in order to track routes by the route prefix.
3289
3290``non-exist-map``
3291 1. If a route prefix is not present in the output of non-exist-map command,
3292 then advertise the route specified by the advertise-map command.
3293
3294 2. If a route prefix is present in the output of non-exist-map command,
3295 then do not advertise the route specified by the addvertise-map command.
3296
3297``exist-map``
3298 1. If a route prefix is present in the output of exist-map command,
3299 then advertise the route specified by the advertise-map command.
3300
3301 2. If a route prefix is not present in the output of exist-map command,
3302 then do not advertise the route specified by the advertise-map command.
3303
3304This feature is useful when some prefixes are advertised to one of its peers
3305only if the information from the other peer is not present (due to failure in
3306peering session or partial reachability etc).
3307
3308The conditional BGP announcements are sent in addition to the normal
3309announcements that a BGP router sends to its peer.
3310
3311The conditional advertisement process is triggered by the BGP scanner process,
389e4f92
QY
3312which runs every 60 by default. This means that the maximum time for the
3313conditional advertisement to take effect is the value of the process timer.
3314
3315As an optimization, while the process always runs on each timer expiry, it
3316determines whether or not the conditional advertisement policy or the routing
3317table has changed; if neither have changed, no processing is necessary and the
3318scanner exits early.
7f7940e6 3319
03750f1e 3320.. clicmd:: neighbor A.B.C.D advertise-map NAME [exist-map|non-exist-map] NAME
7f7940e6 3321
fa36596c 3322 This command enables BGP scanner process to monitor routes specified by
7f7940e6 3323 exist-map or non-exist-map command in BGP table and conditionally advertises
fa36596c 3324 the routes specified by advertise-map command.
7f7940e6 3325
389e4f92
QY
3326.. clicmd:: bgp conditional-advertisement timer (5-240)
3327
3328 Set the period to rerun the conditional advertisement scanner process. The
3329 default is 60 seconds.
3330
7f7940e6
MK
3331Sample Configuration
3332^^^^^^^^^^^^^^^^^^^^^
3333.. code-block:: frr
3334
fa36596c
MK
3335 interface enp0s9
3336 ip address 10.10.10.2/24
3337 !
3338 interface enp0s10
3339 ip address 10.10.20.2/24
3340 !
7f7940e6 3341 interface lo
fa36596c 3342 ip address 203.0.113.1/32
7f7940e6
MK
3343 !
3344 router bgp 2
3345 bgp log-neighbor-changes
3346 no bgp ebgp-requires-policy
3347 neighbor 10.10.10.1 remote-as 1
3348 neighbor 10.10.20.3 remote-as 3
3349 !
3350 address-family ipv4 unicast
7f7940e6 3351 neighbor 10.10.10.1 soft-reconfiguration inbound
7f7940e6 3352 neighbor 10.10.20.3 soft-reconfiguration inbound
fa36596c 3353 neighbor 10.10.20.3 advertise-map ADV-MAP non-exist-map EXIST-MAP
7f7940e6
MK
3354 exit-address-family
3355 !
fa36596c
MK
3356 ip prefix-list DEFAULT seq 5 permit 192.0.2.5/32
3357 ip prefix-list DEFAULT seq 10 permit 192.0.2.1/32
3358 ip prefix-list EXIST seq 5 permit 10.10.10.10/32
3359 ip prefix-list DEFAULT-ROUTE seq 5 permit 0.0.0.0/0
3360 ip prefix-list IP1 seq 5 permit 10.139.224.0/20
3361 !
3362 bgp community-list standard DC-ROUTES seq 5 permit 64952:3008
3363 bgp community-list standard DC-ROUTES seq 10 permit 64671:501
3364 bgp community-list standard DC-ROUTES seq 15 permit 64950:3009
3365 bgp community-list standard DEFAULT-ROUTE seq 5 permit 65013:200
7f7940e6 3366 !
fa36596c
MK
3367 route-map ADV-MAP permit 10
3368 match ip address prefix-list IP1
7f7940e6 3369 !
fa36596c
MK
3370 route-map ADV-MAP permit 20
3371 match community DC-ROUTES
3372 !
3373 route-map EXIST-MAP permit 10
3374 match community DEFAULT-ROUTE
3375 match ip address prefix-list DEFAULT-ROUTE
7f7940e6
MK
3376 !
3377
3378Sample Output
3379^^^^^^^^^^^^^
3380
fa36596c 3381When 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.
7f7940e6
MK
3382
3383.. code-block:: frr
3384
3385 Router2# show ip bgp
fa36596c 3386 BGP table version is 20, local router ID is 203.0.113.1, vrf id 0
7f7940e6
MK
3387 Default local pref 100, local AS 2
3388 Status codes: s suppressed, d damped, h history, * valid, > best, = multipath,
3389 i internal, r RIB-failure, S Stale, R Removed
3390 Nexthop codes: @NNN nexthop's vrf id, < announce-nh-self
3391 Origin codes: i - IGP, e - EGP, ? - incomplete
0bcfc1a3 3392 RPKI validation codes: V valid, I invalid, N Not found
7f7940e6 3393
fa36596c
MK
3394 Network Next Hop Metric LocPrf Weight Path
3395 *> 0.0.0.0/0 10.10.10.1 0 0 1 i
3396 *> 10.139.224.0/20 10.10.10.1 0 0 1 ?
3397 *> 192.0.2.1/32 10.10.10.1 0 0 1 i
3398 *> 192.0.2.5/32 10.10.10.1 0 0 1 i
7f7940e6
MK
3399
3400 Displayed 4 routes and 4 total paths
fa36596c 3401 Router2# show ip bgp neighbors 10.10.20.3
7f7940e6
MK
3402
3403 !--- Output suppressed.
3404
3405 For address family: IPv4 Unicast
fa36596c 3406 Update group 7, subgroup 7
7f7940e6
MK
3407 Packet Queue length 0
3408 Inbound soft reconfiguration allowed
3409 Community attribute sent to this neighbor(all)
fa36596c
MK
3410 Condition NON_EXIST, Condition-map *EXIST-MAP, Advertise-map *ADV-MAP, status: Withdraw
3411 0 accepted prefixes
7f7940e6
MK
3412
3413 !--- Output suppressed.
3414
fa36596c
MK
3415 Router2# show ip bgp neighbors 10.10.20.3 advertised-routes
3416 BGP table version is 20, local router ID is 203.0.113.1, vrf id 0
7f7940e6
MK
3417 Default local pref 100, local AS 2
3418 Status codes: s suppressed, d damped, h history, * valid, > best, = multipath,
fa36596c 3419 i internal, r RIB-failure, S Stale, R Removed
7f7940e6
MK
3420 Nexthop codes: @NNN nexthop's vrf id, < announce-nh-self
3421 Origin codes: i - IGP, e - EGP, ? - incomplete
0bcfc1a3 3422 RPKI validation codes: V valid, I invalid, N Not found
7f7940e6 3423
fa36596c
MK
3424 Network Next Hop Metric LocPrf Weight Path
3425 *> 0.0.0.0/0 0.0.0.0 0 1 i
3426 *> 192.0.2.5/32 0.0.0.0 0 1 i
7f7940e6 3427
fa36596c 3428 Total number of prefixes 2
7f7940e6 3429
fa36596c 3430When 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.
7f7940e6
MK
3431
3432.. code-block:: frr
3433
3434 Router2# show ip bgp
fa36596c 3435 BGP table version is 21, local router ID is 203.0.113.1, vrf id 0
7f7940e6
MK
3436 Default local pref 100, local AS 2
3437 Status codes: s suppressed, d damped, h history, * valid, > best, = multipath,
3438 i internal, r RIB-failure, S Stale, R Removed
3439 Nexthop codes: @NNN nexthop's vrf id, < announce-nh-self
3440 Origin codes: i - IGP, e - EGP, ? - incomplete
0bcfc1a3 3441 RPKI validation codes: V valid, I invalid, N Not found
7f7940e6 3442
fa36596c
MK
3443 Network Next Hop Metric LocPrf Weight Path
3444 *> 10.139.224.0/20 10.10.10.1 0 0 1 ?
3445 *> 192.0.2.1/32 10.10.10.1 0 0 1 i
3446 *> 192.0.2.5/32 10.10.10.1 0 0 1 i
7f7940e6
MK
3447
3448 Displayed 3 routes and 3 total paths
7f7940e6 3449
fa36596c 3450 Router2# show ip bgp neighbors 10.10.20.3
7f7940e6
MK
3451
3452 !--- Output suppressed.
3453
3454 For address family: IPv4 Unicast
fa36596c 3455 Update group 7, subgroup 7
7f7940e6
MK
3456 Packet Queue length 0
3457 Inbound soft reconfiguration allowed
3458 Community attribute sent to this neighbor(all)
fa36596c
MK
3459 Condition NON_EXIST, Condition-map *EXIST-MAP, Advertise-map *ADV-MAP, status: Advertise
3460 0 accepted prefixes
7f7940e6
MK
3461
3462 !--- Output suppressed.
3463
fa36596c
MK
3464 Router2# show ip bgp neighbors 10.10.20.3 advertised-routes
3465 BGP table version is 21, local router ID is 203.0.113.1, vrf id 0
7f7940e6
MK
3466 Default local pref 100, local AS 2
3467 Status codes: s suppressed, d damped, h history, * valid, > best, = multipath,
3468 i internal, r RIB-failure, S Stale, R Removed
3469 Nexthop codes: @NNN nexthop's vrf id, < announce-nh-self
3470 Origin codes: i - IGP, e - EGP, ? - incomplete
0bcfc1a3 3471 RPKI validation codes: V valid, I invalid, N Not found
7f7940e6 3472
fa36596c
MK
3473 Network Next Hop Metric LocPrf Weight Path
3474 *> 10.139.224.0/20 0.0.0.0 0 1 ?
3475 *> 192.0.2.1/32 0.0.0.0 0 1 i
3476 *> 192.0.2.5/32 0.0.0.0 0 1 i
7f7940e6
MK
3477
3478 Total number of prefixes 3
fa36596c 3479 Router2#
7f7940e6 3480
2b55ff40
MK
3481.. _bgp-optimal-route-reflection:
3482
3483BGP Optimal Route Reflection
3484----------------------------
3485BGP Route Reflectors (RRs) are used to improve network scalability by reducing
3486or eliminating the need for a full-mesh of IBGP sessions.
3487
3488When a BGP RR receives multiple paths for the same IP prefix, it typically
3489selects a single best path to send for all its clients.
3490If the RR has multiple nearly-equal best paths and the tie-break is determined
3491by the next-hop cost, the RR advertises the path based on its view of next-hop
3492costs, which leads to a non-optimal routing.
3493The advertised route may differ from the path that a client would select
3494if it had the visibility of the same set of candidate paths and used
3495its own view of next-hop costs.
3496
3497Non-optimal advertisements by the RR can be a problem in hot-potato routing.
3498Hot-potato routing aims to hand off traffic to the next AS using the closest
3499possible exit point from the local AS.
3500In this context, the closest exit point implies minimum IGP cost to
3501reach the BGP next-hop.
3502
3503The BGP Optimal Route Reflection allows the RR to choose and send a different
3504best path to a different or a set of RR clients.
3505
3506A link-state protocol is required. It can be OSPF or IS-IS.
3507Current implementation of BGP ORR is based on the IGP cost to the BGP next hop,
3508and not based on some configured policy.
3509
3510RR runs Shortest Path First (SPF) calculation with the selected
3511router as the root of the tree and calculates the cost to every other router.
3512
3513This special SPF calculation with another router as the root, is referred to as
3514a Reverse SPF (rSPF). This can only be done if the RR learns all the BGP paths
3515from all the BGP border routers.
3516
3517There could be as many rSPFs run as there are RR clients.
3518This will increase the CPU load somewhat on the RR.
3519
3520Current implementation allows up to three root nodes for the rSPF calculation.
3521There is no need to configure each RR client as a root and run rSPF.
3522Current implementation allows to configure three, the primary, the secondary,
3523and the tertiary root, per set of RR clients, for redundancy purposes.
3524For the BGP ORR feature to apply to any RR client, that RR client must be
3525configured to be part of an ORR policy group.
3526
3527The BGP ORR feature is enabled per address family.
3528
3529The minimal configuration needed:
3530
35311. ORR needs to be enabled for specific groups of BGP neighbors.
35322. For each group of BGP neighbors, at least one root needs to be configured.
3533 Optionally, a secondary and tertiary root can be configured.
35343. For OSPF, the root routers(RR clients) need additional configuration
3535 to make BGP ORR work.
3536 i.e. The MPLS TE configuration on the root router needs to have the minimal
3537 configuration for MPLS TE enabled so that OSPF advertises the MPLS TE
3538 router ID in an opaque-area LSA (type 10).
3539 Once the RR has an opaque-area LSA with the MPLS TE router-ID matching the
3540 configured root router address, rSPF can run and BGP on the RR can
3541 advertise the optimal route.
3542
3543.. clicmd:: neighbor A.B.C.D optimal-route-reflection NAME
3544
3545 This command allows the neighbor to be part of the ORR group.
3546
3547.. clicmd:: optimal-route-reflection orr-1 A.B.C.D [A.B.C.D] [A.B.C.D]
3548
3549 This command creates an ORR group with a mandatory primary root
3550 and optional secondary and/or tertiary roots.
3551 When primary is reachable it will be the active root.
3552 when primary goes down, secondary followed by tertiary takes over
3553 the active root's role.
3554 Always rSPF calculation runs active root as the root.
3555 Which means the RR advertises the path based on active root's
3556 view of next-hop costs.
3557
3558Sample Configuration
3559^^^^^^^^^^^^^^^^^^^^
3560
3561Sample configuration on Route Reflector
3562
3563.. code-block:: frr
3564
3565 !
3566 debug ospf 8 orr
3567 debug bgp optimal-route-reflection
3568 !
3569 interface enp0s8
3570 ip address 10.10.68.8/24
3571 ip ospf 8 area 0
3572 exit
3573 !
3574 interface lo
3575 ip address 10.100.1.8/32
3576 ip ospf 8 area 0
3577 exit
3578 !
3579 router bgp 1
3580 neighbor 10.100.1.1 remote-as 1
3581 neighbor 10.100.1.1 update-source lo
3582 neighbor 10.100.1.2 remote-as 1
3583 neighbor 10.100.1.2 update-source lo
3584 neighbor 10.100.1.3 remote-as 1
3585 neighbor 10.100.1.3 update-source lo
3586 neighbor 10.100.1.4 remote-as 1
3587 neighbor 10.100.1.4 update-source lo
3588 !
3589 address-family ipv4 unicast
3590 neighbor 10.100.1.1 route-reflector-client
3591 neighbor 10.100.1.1 optimal-route-reflection orr-1
3592 neighbor 10.100.1.2 route-reflector-client
3593 neighbor 10.100.1.2 optimal-route-reflection orr-1
3594 neighbor 10.100.1.3 route-reflector-client
3595 neighbor 10.100.1.3 optimal-route-reflection orr-1
3596 neighbor 10.100.1.4 route-reflector-client
3597 neighbor 10.100.1.4 optimal-route-reflection orr-1
3598 optimal-route-reflection orr-1 10.100.1.4 10.100.1.3 10.100.1.1
3599 exit-address-family
3600 exit
3601 !
3602 router ospf 8
3603 ospf router-id 8.8.8.8
3604 area 0 authentication
3605 capability opaque
3606 exit
3607 !
3608 end
3609
3610Sample configuration on RR clients
3611
3612.. code-block:: frr
3613
3614 interface enp0s8
3615 ip address 10.10.34.4/24
3616 ip ospf 4 area 0
3617 link-params
3618 enable
3619 exit-link-params
3620 exit
3621 !
3622 interface enp0s9
3623 ip address 10.10.74.4/24
3624 ip ospf 4 area 0
3625 link-params
3626 enable
3627 exit-link-params
3628 exit
3629 !
3630 interface lo
3631 ip address 10.100.1.4/32
3632 ip ospf 4 area 0
3633 exit
3634 !
3635 router bgp 1
3636 neighbor 10.100.1.8 remote-as 1
3637 neighbor 10.100.1.8 update-source lo
3638 !
3639 address-family ipv4 unicast
3640 neighbor 10.100.1.8 soft-reconfiguration inbound
3641 exit-address-family
3642 exit
3643 !
3644 router ospf 4
3645 ospf router-id 4.4.4.4
3646 area 0 authentication
3647 capability opaque
3648 mpls-te on
3649 mpls-te router-address 10.100.1.4
3650 mpls-te inter-as area 0.0.0.0
3651 mpls-te export
3652 exit
3653 !
3654 end
3655
3656Sample Output
3657^^^^^^^^^^^^^
3658
3659When Optimal Route Reflection is not enabled on RR, it sends 10.100.1.1 as the best path to its clients.
3660
3661.. code-block:: frr
3662
3663 Router-RR# show ip bgp neighbors 10.100.1.4
3664
3665 !--- Output suppressed.
3666
3667 For address family: IPv4 Unicast
3668 Update group 2, subgroup 2
3669 Packet Queue length 0
3670 Route-Reflector Client
3671 Community attribute sent to this neighbor(all)
3672 0 accepted prefixes
3673
3674 !--- Output suppressed.
3675
3676 Router-RR#
3677 Router-RR# show ip bgp
3678 BGP table version is 3, local router ID is 10.100.1.8, vrf id 0
3679 Default local pref 100, local AS 1
3680 Status codes: s suppressed, d damped, h history, * valid, > best, = multipath,
3681 i internal, r RIB-failure, S Stale, R Removed
3682 Nexthop codes: @NNN nexthop's vrf id, < announce-nh-self
3683 Origin codes: i - IGP, e - EGP, ? - incomplete
3684 RPKI validation codes: V valid, I invalid, N Not found
3685
3686 Network Next Hop Metric LocPrf Weight Path
3687 * i203.0.113.0/24 10.100.1.2 0 100 0 i
3688 *>i 10.100.1.1 0 100 0 i
3689 *=i 10.100.1.3 0 100 0 i
3690
3691 Displayed 1 routes and 3 total paths
3692 Router-RR#
3693
3694 Router-PE4# show ip bgp
3695 BGP table version is 5, local router ID is 10.100.1.4, vrf id 0
3696 Default local pref 100, local AS 1
3697 Status codes: s suppressed, d damped, h history, * valid, > best, = multipath,
3698 i internal, r RIB-failure, S Stale, R Removed
3699 Nexthop codes: @NNN nexthop's vrf id, < announce-nh-self
3700 Origin codes: i - IGP, e - EGP, ? - incomplete
3701 RPKI validation codes: V valid, I invalid, N Not found
3702
3703 Network Next Hop Metric LocPrf Weight Path
3704 *>i203.0.113.0/24 10.100.1.1 0 100 0 i
3705
3706 Displayed 1 routes and 1 total paths
3707 Router-PE4#
3708
3709When Optimal Route Reflection is enabled on RR, it sends 10.100.1.3 as the best path to its clients.
3710
3711.. code-block:: frr
3712
3713 Router-RR# show ip bgp neighbors 10.100.1.4
3714
3715 !--- Output suppressed.
3716
3717 For address family: IPv4 Unicast
3718 Update group 1, subgroup 1
3719 Packet Queue length 0
3720 Route-Reflector Client
3721 ORR group (configured) : orr-1
3722 Community attribute sent to this neighbor(all)
3723 0 accepted prefixes
3724
3725 !--- Output suppressed.
3726
3727 Router-RR#
3728 Router-RR# show ip bgp
3729 BGP table version is 1, local router ID is 10.100.1.8, vrf id 0
3730 Default local pref 100, local AS 1
3731 Status codes: s suppressed, d damped, h history, * valid, > best, = multipath,
3732 i internal, r RIB-failure, S Stale, R Removed
3733 Nexthop codes: @NNN nexthop's vrf id, < announce-nh-self
3734 Origin codes: i - IGP, e - EGP, ? - incomplete
3735 RPKI validation codes: V valid, I invalid, N Not found
3736
3737 Network Next Hop Metric LocPrf Weight Path
3738 * i203.0.113.0/24 10.100.1.2 0 100 0 i
3739 *>i 10.100.1.3 0 100 0 i
3740 * i 10.100.1.1 0 100 0 i
3741
3742 Displayed 1 routes and 3 total paths
3743 Router-RR#
3744
3745 Router-RR# show ip bgp optimal-route-reflection
3746
3747 ORR group: orr-1, IPv4 Unicast
3748 Configured root: primary: 10.100.1.4(Router-PE4), secondary: 10.100.1.3(Router-PE3), tertiary: 10.100.1.1(Router-PE1)
3749 Active Root: 10.100.1.4(Router-PE4)
3750
3751 RR Clients mapped:
3752 10.100.1.1
3753 10.100.1.2
3754 10.100.1.3
3755 10.100.1.4
3756
3757 Number of mapping entries: 4
3758
3759 Prefix Cost
3760 10.10.34.0/24 100
3761 10.10.61.0/24 300
3762 10.10.63.0/24 200
3763 10.10.67.0/24 200
3764 10.10.68.0/24 300
3765 10.10.72.0/24 200
3766 10.10.74.0/24 100
3767 10.100.1.1/32 300
3768 10.100.1.2/32 200
3769 10.100.1.3/32 100
3770 10.100.1.4/32 0
3771 10.100.1.6/32 200
3772 10.100.1.7/32 100
3773 10.100.1.8/32 300
3774
3775 Number of mapping entries: 14
3776
3777 Router-RR#
3778
3779 Router-PE4# show ip bgp
3780 BGP table version is 3, local router ID is 10.100.1.4, vrf id 0
3781 Default local pref 100, local AS 1
3782 Status codes: s suppressed, d damped, h history, * valid, > best, = multipath,
3783 i internal, r RIB-failure, S Stale, R Removed
3784 Nexthop codes: @NNN nexthop's vrf id, < announce-nh-self
3785 Origin codes: i - IGP, e - EGP, ? - incomplete
3786 RPKI validation codes: V valid, I invalid, N Not found
3787
3788 Network Next Hop Metric LocPrf Weight Path
3789 *>i203.0.113.0/24 10.100.1.3 0 100 0 i
3790
3791 Displayed 1 routes and 1 total paths
3792 Router-PE4#
3793
8fcedbd2
QY
3794.. _bgp-debugging:
3795
3796Debugging
3797---------
42fc5d26 3798
29adcd50 3799.. clicmd:: show debug
42fc5d26 3800
8fcedbd2 3801 Show all enabled debugs.
42fc5d26 3802
54422b46
DS
3803.. clicmd:: show bgp listeners
3804
3805 Display Listen sockets and the vrf that created them. Useful for debugging of when
3806 listen is not working and this is considered a developer debug statement.
3807
8666265e
DS
3808.. clicmd:: debug bgp allow-martian
3809
3810 Enable or disable BGP accepting martian nexthops from a peer. Please note
3811 this is not an actual debug command and this command is also being deprecated
3812 and will be removed soon. The new command is :clicmd:`bgp allow-martian-nexthop`
3813
81313f43
RZ
3814.. clicmd:: debug bgp bfd
3815
3816 Enable or disable debugging for BFD events. This will show BFD integration
3817 library messages and BGP BFD integration messages that are mostly state
3818 transitions and validation problems.
3819
8093d799
MK
3820.. clicmd:: debug bgp conditional-advertisement
3821
3822 Enable or disable debugging of BGP conditional advertisement.
3823
03750f1e 3824.. clicmd:: debug bgp neighbor-events
42fc5d26 3825
8fcedbd2
QY
3826 Enable or disable debugging for neighbor events. This provides general
3827 information on BGP events such as peer connection / disconnection, session
3828 establishment / teardown, and capability negotiation.
42fc5d26 3829
03750f1e 3830.. clicmd:: debug bgp updates
42fc5d26 3831
8fcedbd2
QY
3832 Enable or disable debugging for BGP updates. This provides information on
3833 BGP UPDATE messages transmitted and received between local and remote
3834 instances.
42fc5d26 3835
03750f1e 3836.. clicmd:: debug bgp keepalives
42fc5d26 3837
8fcedbd2
QY
3838 Enable or disable debugging for BGP keepalives. This provides information on
3839 BGP KEEPALIVE messages transmitted and received between local and remote
3840 instances.
c1a54c05 3841
03750f1e 3842.. clicmd:: debug bgp bestpath <A.B.C.D/M|X:X::X:X/M>
42fc5d26 3843
8fcedbd2 3844 Enable or disable debugging for bestpath selection on the specified prefix.
42fc5d26 3845
03750f1e 3846.. clicmd:: debug bgp nht
4da7fda3 3847
8fcedbd2 3848 Enable or disable debugging of BGP nexthop tracking.
4da7fda3 3849
03750f1e 3850.. clicmd:: debug bgp update-groups
4b44467c 3851
8fcedbd2
QY
3852 Enable or disable debugging of dynamic update groups. This provides general
3853 information on group creation, deletion, join and prune events.
4b44467c 3854
03750f1e 3855.. clicmd:: debug bgp zebra
42fc5d26 3856
8fcedbd2 3857 Enable or disable debugging of communications between *bgpd* and *zebra*.
c3c5a71f 3858
2b55ff40
MK
3859.. clicmd:: debug bgp optimal-route-reflection
3860
3861 Enable or disable debugging of BGP Optimal Route Reflection.
3862
8fcedbd2
QY
3863Dumping Messages and Routing Tables
3864^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
42fc5d26 3865
8fcedbd2 3866.. clicmd:: dump bgp all PATH [INTERVAL]
42fc5d26 3867
8fcedbd2 3868.. clicmd:: dump bgp all-et PATH [INTERVAL]
c3c5a71f 3869
42fc5d26 3870
8fcedbd2
QY
3871 Dump all BGP packet and events to `path` file.
3872 If `interval` is set, a new file will be created for echo `interval` of
3873 seconds. The path `path` can be set with date and time formatting
3874 (strftime). The type ‘all-et’ enables support for Extended Timestamp Header
3875 (:ref:`packet-binary-dump-format`).
c3c5a71f 3876
8fcedbd2 3877.. clicmd:: dump bgp updates PATH [INTERVAL]
42fc5d26 3878
8fcedbd2 3879.. clicmd:: dump bgp updates-et PATH [INTERVAL]
42fc5d26 3880
42fc5d26 3881
8fcedbd2
QY
3882 Dump only BGP updates messages to `path` file.
3883 If `interval` is set, a new file will be created for echo `interval` of
3884 seconds. The path `path` can be set with date and time formatting
3885 (strftime). The type ‘updates-et’ enables support for Extended Timestamp
3886 Header (:ref:`packet-binary-dump-format`).
42fc5d26 3887
8fcedbd2 3888.. clicmd:: dump bgp routes-mrt PATH
c3c5a71f 3889
8fcedbd2 3890.. clicmd:: dump bgp routes-mrt PATH INTERVAL
42fc5d26 3891
42fc5d26 3892
8fcedbd2
QY
3893 Dump whole BGP routing table to `path`. This is heavy process. The path
3894 `path` can be set with date and time formatting (strftime). If `interval` is
3895 set, a new file will be created for echo `interval` of seconds.
42fc5d26 3896
8fcedbd2 3897 Note: the interval variable can also be set using hours and minutes: 04h20m00.
42fc5d26 3898
c3c5a71f 3899
8fcedbd2 3900.. _bgp-other-commands:
42fc5d26 3901
8fcedbd2
QY
3902Other BGP Commands
3903------------------
42fc5d26 3904
e312b6c6
QY
3905The following are available in the top level *enable* mode:
3906
dc912615
DS
3907.. clicmd:: clear bgp \*
3908
3909 Clear all peers.
3910
8fcedbd2 3911.. clicmd:: clear bgp ipv4|ipv6 \*
42fc5d26 3912
dc912615
DS
3913 Clear all peers with this address-family activated.
3914
dc912615
DS
3915.. clicmd:: clear bgp ipv4|ipv6 unicast \*
3916
3917 Clear all peers with this address-family and sub-address-family activated.
42fc5d26 3918
8fcedbd2 3919.. clicmd:: clear bgp ipv4|ipv6 PEER
42fc5d26 3920
dc912615
DS
3921 Clear peers with address of X.X.X.X and this address-family activated.
3922
dc912615
DS
3923.. clicmd:: clear bgp ipv4|ipv6 unicast PEER
3924
3925 Clear peer with address of X.X.X.X and this address-family and sub-address-family activated.
3926
dc912615
DS
3927.. clicmd:: clear bgp ipv4|ipv6 PEER soft|in|out
3928
3929 Clear peer using soft reconfiguration in this address-family.
42fc5d26 3930
dc912615 3931.. clicmd:: clear bgp ipv4|ipv6 unicast PEER soft|in|out
42fc5d26 3932
dc912615 3933 Clear peer using soft reconfiguration in this address-family and sub-address-family.
42fc5d26 3934
33bbb2e7
DS
3935.. clicmd:: clear bgp [ipv4|ipv6] [unicast] PEER|\* message-stats
3936
3937 Clear BGP message statistics for a specified peer or for all peers,
3938 optionally filtered by activated address-family and sub-address-family.
3939
e312b6c6
QY
3940The following are available in the ``router bgp`` mode:
3941
e312b6c6
QY
3942.. clicmd:: write-quanta (1-64)
3943
3944 BGP message Tx I/O is vectored. This means that multiple packets are written
3945 to the peer socket at the same time each I/O cycle, in order to minimize
3946 system call overhead. This value controls how many are written at a time.
3947 Under certain load conditions, reducing this value could make peer traffic
3948 less 'bursty'. In practice, leave this settings on the default (64) unless
3949 you truly know what you are doing.
3950
dad83b67 3951.. clicmd:: read-quanta (1-10)
e312b6c6
QY
3952
3953 Unlike Tx, BGP Rx traffic is not vectored. Packets are read off the wire one
3954 at a time in a loop. This setting controls how many iterations the loop runs
3955 for. As with write-quanta, it is best to leave this setting on the default.
42fc5d26 3956
05bd726c 3957The following command is available in ``config`` mode as well as in the
3958``router bgp`` mode:
3959
05bd726c 3960.. clicmd:: bgp graceful-shutdown
3961
3962 The purpose of this command is to initiate BGP Graceful Shutdown which
3963 is described in :rfc:`8326`. The use case for this is to minimize or
3964 eliminate the amount of traffic loss in a network when a planned
3965 maintenance activity such as software upgrade or hardware replacement
3966 is to be performed on a router. The feature works by re-announcing
3967 routes to eBGP peers with the GRACEFUL_SHUTDOWN community included.
3968 Peers are then expected to treat such paths with the lowest preference.
3969 This happens automatically on a receiver running FRR; with other
3970 routing protocol stacks, an inbound policy may have to be configured.
3971 In FRR, triggering graceful shutdown also results in announcing a
3972 LOCAL_PREF of 0 to iBGP peers.
3973
3974 Graceful shutdown can be configured per BGP instance or globally for
3975 all of BGP. These two options are mutually exclusive. The no form of
3976 the command causes graceful shutdown to be stopped, and routes will
3977 be re-announced without the GRACEFUL_SHUTDOWN community and/or with
3978 the usual LOCAL_PREF value. Note that if this option is saved to
3979 the startup configuration, graceful shutdown will remain in effect
3980 across restarts of *bgpd* and will need to be explicitly disabled.
3981
8fcedbd2 3982.. _bgp-displaying-bgp-information:
42fc5d26 3983
8fcedbd2
QY
3984Displaying BGP Information
3985==========================
42fc5d26 3986
e6f59415
PG
3987The following four commands display the IPv6 and IPv4 routing tables, depending
3988on whether or not the ``ip`` keyword is used.
3989Actually, :clicmd:`show ip bgp` command was used on older `Quagga` routing
3990daemon project, while :clicmd:`show bgp` command is the new format. The choice
3991has been done to keep old format with IPv4 routing table, while new format
3992displays IPv6 routing table.
3993
4c92d818 3994.. clicmd:: show ip bgp [all] [wide|json [detail]]
42fc5d26 3995
96f3485c 3996.. clicmd:: show ip bgp A.B.C.D [json]
c1a54c05 3997
4c92d818 3998.. clicmd:: show bgp [all] [wide|json [detail]]
e6f59415 3999
96f3485c 4000.. clicmd:: show bgp X:X::X:X [json]
42fc5d26 4001
8fcedbd2 4002 These commands display BGP routes. When no route is specified, the default
e6f59415 4003 is to display all BGP routes.
42fc5d26 4004
8fcedbd2 4005 ::
c1a54c05 4006
8fcedbd2
QY
4007 BGP table version is 0, local router ID is 10.1.1.1
4008 Status codes: s suppressed, d damped, h history, * valid, > best, i - internal
4009 Origin codes: i - IGP, e - EGP, ? - incomplete
42fc5d26 4010
8fcedbd2
QY
4011 Network Next Hop Metric LocPrf Weight Path
4012 \*> 1.1.1.1/32 0.0.0.0 0 32768 i
42fc5d26 4013
8fcedbd2 4014 Total number of prefixes 1
4da7fda3 4015
56c07345 4016 If ``wide`` option is specified, then the prefix table's width is increased
986b0fc3
DA
4017 to fully display the prefix and the nexthop.
4018
4019 This is especially handy dealing with IPv6 prefixes and
4020 if :clicmd:`[no] bgp default show-nexthop-hostname` is enabled.
4021
56c07345 4022 If ``all`` option is specified, ``ip`` keyword is ignored, show bgp all and
96f3485c
MK
4023 show ip bgp all commands display routes for all AFIs and SAFIs.
4024
56c07345 4025 If ``json`` option is specified, output is displayed in JSON format.
96f3485c 4026
4c92d818
DA
4027 If ``detail`` option is specified after ``json``, more verbose JSON output
4028 will be displayed.
4029
e6f59415
PG
4030Some other commands provide additional options for filtering the output.
4031
e6f59415 4032.. clicmd:: show [ip] bgp regexp LINE
42fc5d26 4033
8fcedbd2
QY
4034 This command displays BGP routes using AS path regular expression
4035 (:ref:`bgp-regular-expressions`).
42fc5d26 4036
28b25b6b 4037.. clicmd:: show [ip] bgp [all] summary [wide] [json]
42fc5d26 4038
8fcedbd2 4039 Show a bgp peer summary for the specified address family.
42fc5d26 4040
e6f59415
PG
4041The old command structure :clicmd:`show ip bgp` may be removed in the future
4042and should no longer be used. In order to reach the other BGP routing tables
4043other than the IPv6 routing table given by :clicmd:`show bgp`, the new command
4044structure is extended with :clicmd:`show bgp [afi] [safi]`.
4045
28b25b6b
DA
4046``wide`` option gives more output like ``LocalAS`` and extended ``Desc`` to
404764 characters.
4048
4049 .. code-block:: frr
4050
4051 exit1# show ip bgp summary wide
4052
6cac2fcc 4053 IPv4 Unicast Summary (VRF default):
28b25b6b
DA
4054 BGP router identifier 192.168.100.1, local AS number 65534 vrf-id 0
4055 BGP table version 3
4056 RIB entries 5, using 920 bytes of memory
4057 Peers 1, using 27 KiB of memory
4058
4059 Neighbor V AS LocalAS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd PfxSnt Desc
4060 192.168.0.2 4 65030 123 15 22 0 0 0 00:07:00 0 1 us-east1-rs1.frrouting.org
4061
4062 Total number of neighbors 1
4063 exit1#
4064
96f3485c 4065.. clicmd:: show bgp [afi] [safi] [all] [wide|json]
e6f59415 4066
22bfb2a6 4067.. clicmd:: show bgp [<ipv4|ipv6> <unicast|multicast|vpn|labeled-unicast|flowspec> | l2vpn evpn]
e6f59415
PG
4068
4069 These commands display BGP routes for the specific routing table indicated by
4070 the selected afi and the selected safi. If no afi and no safi value is given,
6cfd16ad 4071 the command falls back to the default IPv6 routing table.
6cfd16ad 4072
6cfd16ad
TA
4073.. clicmd:: show bgp l2vpn evpn route [type <macip|2|multicast|3|es|4|prefix|5>]
4074
22bfb2a6 4075 EVPN prefixes can also be filtered by EVPN route type.
e6f59415 4076
96f3485c 4077.. clicmd:: show bgp [afi] [safi] [all] summary [json]
e6f59415
PG
4078
4079 Show a bgp peer summary for the specified address family, and subsequent
4080 address-family.
4081
96f3485c 4082.. clicmd:: show bgp [afi] [safi] [all] summary failed [json]
3577f1c5 4083
f563acec 4084 Show a bgp peer summary for peers that are not successfully exchanging routes
3577f1c5
DD
4085 for the specified address family, and subsequent address-family.
4086
96f3485c 4087.. clicmd:: show bgp [afi] [safi] [all] summary established [json]
1c027267 4088
f563acec 4089 Show a bgp peer summary for peers that are successfully exchanging routes
1c027267
DA
4090 for the specified address family, and subsequent address-family.
4091
8c1d4cd5
LS
4092.. clicmd:: show bgp [afi] [safi] [all] summary neighbor [PEER] [json]
4093
4094 Show a bgp summary for the specified peer, address family, and
4095 subsequent address-family. The neighbor filter can be used in combination
4096 with the failed, established filters.
4097
4098.. clicmd:: show bgp [afi] [safi] [all] summary remote-as <internal|external|ASN> [json]
4099
4100 Show a bgp peer summary for the specified remote-as ASN or type (``internal``
4101 for iBGP and ``external`` for eBGP sessions), address family, and subsequent
4102 address-family. The remote-as filter can be used in combination with the
4103 failed, established filters.
4104
96c81f66
LS
4105.. clicmd:: show bgp [afi] [safi] [all] summary terse [json]
4106
4107 Shorten the output. Do not show the following information about the BGP
4108 instances: the number of RIB entries, the table version and the used memory.
4109 The ``terse`` option can be used in combination with the remote-as, neighbor,
4110 failed and established filters, and with the ``wide`` option as well.
4111
22bfb2a6 4112.. clicmd:: show bgp [afi] [safi] [neighbor [PEER] [routes|advertised-routes|received-routes] [json]
9eb95b3b 4113
e6f59415
PG
4114 This command shows information on a specific BGP peer of the relevant
4115 afi and safi selected.
c1a54c05 4116
22bfb2a6
TA
4117 The ``routes`` keyword displays only routes in this address-family's BGP
4118 table that were received by this peer and accepted by inbound policy.
4119
4120 The ``advertised-routes`` keyword displays only the routes in this
4121 address-family's BGP table that were permitted by outbound policy and
4122 advertised to to this peer.
4123
4124 The ``received-routes`` keyword displays all routes belonging to this
4125 address-family (prior to inbound policy) that were received by this peer.
4126
d3120452
IR
4127.. clicmd:: show bgp [<view|vrf> VIEWVRFNAME] [afi] [safi] neighbors PEER received prefix-filter [json]
4128
4129 Display Address Prefix ORFs received from this peer.
4130
96f3485c 4131.. clicmd:: show bgp [afi] [safi] [all] dampening dampened-paths [wide|json]
42fc5d26 4132
e6f59415
PG
4133 Display paths suppressed due to dampening of the selected afi and safi
4134 selected.
42fc5d26 4135
96f3485c 4136.. clicmd:: show bgp [afi] [safi] [all] dampening flap-statistics [wide|json]
c1a54c05 4137
e6f59415 4138 Display flap statistics of routes of the selected afi and safi selected.
42fc5d26 4139
fe0f234d
RW
4140.. clicmd:: show bgp [afi] [safi] [all] dampening parameters [json]
4141
4142 Display details of configured dampening parameters of the selected afi and
4143 safi.
4144
4145 If the ``json`` option is specified, output is displayed in JSON format.
4146
244e6cab
DA
4147.. clicmd:: show bgp [afi] [safi] [all] version (1-4294967295) [wide|json]
4148
4149 Display prefixes with matching version numbers. The version number and
4150 above having prefixes will be listed here.
4151
4152 It helps to identify which prefixes were installed at some point.
4153
4154 Here is an example of how to check what prefixes were installed starting
05653f49 4155 with an arbitrary version:
244e6cab 4156
01af2696 4157.. code-block:: shell
244e6cab 4158
01af2696
DS
4159 # vtysh -c 'show bgp ipv4 unicast json' | jq '.tableVersion'
4160 9
4161 # vtysh -c 'show ip bgp version 9 json' | jq -r '.routes | keys[]'
4162 192.168.3.0/24
4163 # vtysh -c 'show ip bgp version 8 json' | jq -r '.routes | keys[]'
4164 192.168.2.0/24
4165 192.168.3.0/24
244e6cab 4166
620e23e8
PG
4167.. clicmd:: show bgp [afi] [safi] statistics
4168
4169 Display statistics of routes of the selected afi and safi.
4170
620e23e8
PG
4171.. clicmd:: show bgp statistics-all
4172
4173 Display statistics of routes of all the afi and safi.
4174
96f3485c
MK
4175.. clicmd:: show [ip] bgp [afi] [safi] [all] cidr-only [wide|json]
4176
4177 Display routes with non-natural netmasks.
4178
6deaf579
RW
4179.. clicmd:: show [ip] bgp [afi] [safi] [all] prefix-list WORD [wide|json]
4180
4181 Display routes that match the specified prefix-list.
4182
4183 If ``wide`` option is specified, then the prefix table's width is increased
4184 to fully display the prefix and the nexthop.
4185
4186 If the ``json`` option is specified, output is displayed in JSON format.
4187
61216286
DA
4188.. clicmd:: show [ip] bgp [afi] [safi] [all] access-list WORD [wide|json]
4189
4190 Display routes that match the specified access-list.
4191
a7129347
RW
4192.. clicmd:: show [ip] bgp [afi] [safi] [all] filter-list WORD [wide|json]
4193
4194 Display routes that match the specified AS-Path filter-list.
4195
4196 If ``wide`` option is specified, then the prefix table's width is increased
4197 to fully display the prefix and the nexthop.
4198
4199 If the ``json`` option is specified, output is displayed in JSON format.
4200
bf1a944a
RW
4201.. clicmd:: show [ip] bgp [afi] [safi] [all] route-map WORD [wide|json]
4202
4203 Display routes that match the specified route-map.
4204
4205 If ``wide`` option is specified, then the prefix table's width is increased
4206 to fully display the prefix and the nexthop.
4207
4208 If the ``json`` option is specified, output is displayed in JSON format.
4209
39c3c736
RW
4210.. clicmd:: show [ip] bgp [afi] [safi] [all] <A.B.C.D/M|X:X::X:X/M> longer-prefixes [wide|json]
4211
4212 Displays the specified route and all more specific routes.
4213
4214 If ``wide`` option is specified, then the prefix table's width is increased
4215 to fully display the prefix and the nexthop.
4216
4217 If the ``json`` option is specified, output is displayed in JSON format.
4218
96f3485c
MK
4219.. clicmd:: show [ip] bgp [afi] [safi] [all] neighbors A.B.C.D [advertised-routes|received-routes|filtered-routes] [json|wide]
4220
4221 Display the routes advertised to a BGP neighbor or received routes
4222 from neighbor or filtered routes received from neighbor based on the
4223 option specified.
4224
56c07345 4225 If ``wide`` option is specified, then the prefix table's width is increased
96f3485c
MK
4226 to fully display the prefix and the nexthop.
4227
4228 This is especially handy dealing with IPv6 prefixes and
4229 if :clicmd:`[no] bgp default show-nexthop-hostname` is enabled.
4230
56c07345 4231 If ``all`` option is specified, ``ip`` keyword is ignored and,
96f3485c 4232 routes displayed for all AFIs and SAFIs.
56c07345 4233 if afi is specified, with ``all`` option, routes will be displayed for
96f3485c
MK
4234 each SAFI in the selcted AFI
4235
56c07345 4236 If ``json`` option is specified, output is displayed in JSON format.
96f3485c 4237
8fcedbd2 4238.. _bgp-display-routes-by-community:
42fc5d26 4239
8fcedbd2
QY
4240Displaying Routes by Community Attribute
4241----------------------------------------
42fc5d26 4242
8fcedbd2
QY
4243The following commands allow displaying routes based on their community
4244attribute.
42fc5d26 4245
96f3485c 4246.. clicmd:: show [ip] bgp <ipv4|ipv6> [all] community [wide|json]
42fc5d26 4247
96f3485c 4248.. clicmd:: show [ip] bgp <ipv4|ipv6> [all] community COMMUNITY [wide|json]
42fc5d26 4249
96f3485c 4250.. clicmd:: show [ip] bgp <ipv4|ipv6> [all] community COMMUNITY exact-match [wide|json]
76bd1499 4251
8fcedbd2
QY
4252 These commands display BGP routes which have the community attribute.
4253 attribute. When ``COMMUNITY`` is specified, BGP routes that match that
4254 community are displayed. When `exact-match` is specified, it display only
4255 routes that have an exact match.
c3c5a71f 4256
70799983 4257.. clicmd:: show [ip] bgp <ipv4|ipv6> community-list WORD [json]
42fc5d26 4258
70799983 4259.. clicmd:: show [ip] bgp <ipv4|ipv6> community-list WORD exact-match [json]
42fc5d26 4260
8fcedbd2
QY
4261 These commands display BGP routes for the address family specified that
4262 match the specified community list. When `exact-match` is specified, it
4263 displays only routes that have an exact match.
42fc5d26 4264
56c07345 4265 If ``wide`` option is specified, then the prefix table's width is increased
96f3485c
MK
4266 to fully display the prefix and the nexthop.
4267
4268 This is especially handy dealing with IPv6 prefixes and
4269 if :clicmd:`[no] bgp default show-nexthop-hostname` is enabled.
4270
56c07345 4271 If ``all`` option is specified, ``ip`` keyword is ignored and,
96f3485c 4272 routes displayed for all AFIs and SAFIs.
56c07345 4273 if afi is specified, with ``all`` option, routes will be displayed for
96f3485c
MK
4274 each SAFI in the selcted AFI
4275
56c07345 4276 If ``json`` option is specified, output is displayed in JSON format.
e3ea6503 4277
e3ea6503
PR
4278.. clicmd:: show bgp labelpool <chunks|inuse|ledger|requests|summary> [json]
4279
4280 These commands display information about the BGP labelpool used for
4281 the association of MPLS labels with routes for L3VPN and Labeled Unicast
4282
4283 If ``chunks`` option is specified, output shows the current list of label
4284 chunks granted to BGP by Zebra, indicating the start and end label in
4285 each chunk
4286
4287 If ``inuse`` option is specified, output shows the current inuse list of
4288 label to prefix mappings
4289
4290 If ``ledger`` option is specified, output shows ledger list of all
4291 label requests made per prefix
4292
4293 If ``requests`` option is specified, output shows current list of label
4294 requests which have not yet been fulfilled by the labelpool
4295
4296 If ``summary`` option is specified, output is a summary of the counts for
4297 the chunks, inuse, ledger and requests list along with the count of
f563acec 4298 outstanding chunk requests to Zebra and the number of zebra reconnects
e3ea6503
PR
4299 that have happened
4300
4301 If ``json`` option is specified, output is displayed in JSON format.
96f3485c 4302
36a206db 4303.. _bgp-display-routes-by-lcommunity:
4304
4305Displaying Routes by Large Community Attribute
4306----------------------------------------------
4307
ac2201bb 4308The following commands allow displaying routes based on their
36a206db 4309large community attribute.
4310
36a206db 4311.. clicmd:: show [ip] bgp <ipv4|ipv6> large-community
4312
36a206db 4313.. clicmd:: show [ip] bgp <ipv4|ipv6> large-community LARGE-COMMUNITY
4314
36a206db 4315.. clicmd:: show [ip] bgp <ipv4|ipv6> large-community LARGE-COMMUNITY exact-match
4316
36a206db 4317.. clicmd:: show [ip] bgp <ipv4|ipv6> large-community LARGE-COMMUNITY json
4318
4319 These commands display BGP routes which have the large community attribute.
4320 attribute. When ``LARGE-COMMUNITY`` is specified, BGP routes that match that
ac2201bb
DA
4321 large community are displayed. When `exact-match` is specified, it display
4322 only routes that have an exact match. When `json` is specified, it display
36a206db 4323 routes in json format.
4324
36a206db 4325.. clicmd:: show [ip] bgp <ipv4|ipv6> large-community-list WORD
4326
36a206db 4327.. clicmd:: show [ip] bgp <ipv4|ipv6> large-community-list WORD exact-match
4328
36a206db 4329.. clicmd:: show [ip] bgp <ipv4|ipv6> large-community-list WORD json
4330
4331 These commands display BGP routes for the address family specified that
ac2201bb
DA
4332 match the specified large community list. When `exact-match` is specified,
4333 it displays only routes that have an exact match. When `json` is specified,
36a206db 4334 it display routes in json format.
4335
8fcedbd2 4336.. _bgp-display-routes-by-as-path:
42fc5d26 4337
36a206db 4338
8fcedbd2
QY
4339Displaying Routes by AS Path
4340----------------------------
42fc5d26 4341
8fcedbd2 4342.. clicmd:: show bgp ipv4|ipv6 regexp LINE
76bd1499 4343
8fcedbd2
QY
4344 This commands displays BGP routes that matches a regular
4345 expression `line` (:ref:`bgp-regular-expressions`).
4346
e6f59415 4347.. clicmd:: show [ip] bgp ipv4 vpn
8fcedbd2 4348
e6f59415 4349.. clicmd:: show [ip] bgp ipv6 vpn
8fcedbd2
QY
4350
4351 Print active IPV4 or IPV6 routes advertised via the VPN SAFI.
4352
8fcedbd2
QY
4353.. clicmd:: show bgp ipv4 vpn summary
4354
8fcedbd2
QY
4355.. clicmd:: show bgp ipv6 vpn summary
4356
4357 Print a summary of neighbor connections for the specified AFI/SAFI combination.
4358
22bfb2a6
TA
4359Displaying Routes by Route Distinguisher
4360----------------------------------------
4361
4362.. clicmd:: show bgp [<ipv4|ipv6> vpn | l2vpn evpn [route]] rd <all|RD>
4363
4364 For L3VPN and EVPN address-families, routes can be displayed on a per-RD
4365 (Route Distinguisher) basis or for all RD's.
4366
4367.. clicmd:: show bgp l2vpn evpn rd <all|RD> [overlay | tags]
4368
4369 Use the ``overlay`` or ``tags`` keywords to display the overlay/tag
4370 information about the EVPN prefixes in the selected Route Distinguisher.
4371
4372.. clicmd:: show bgp l2vpn evpn route rd <all|RD> mac <MAC> [ip <MAC>] [json]
4373
4374 For EVPN Type 2 (macip) routes, a MAC address (and optionally an IP address)
4375 can be supplied to the command to only display matching prefixes in the
4376 specified RD.
4377
09d78f10
DS
4378Displaying Update Group Information
4379-----------------------------------
4380
6c5be52a 4381.. clicmd:: show bgp update-groups [advertise-queue|advertised-routes|packet-queue]
09d78f10
DS
4382
4383 Display Information about each individual update-group being used.
4384 If SUBGROUP-ID is specified only display about that particular group. If
4385 advertise-queue is specified the list of routes that need to be sent
4386 to the peers in the update-group is displayed, advertised-routes means
a64e0ee5 4387 the list of routes we have sent to the peers in the update-group and
09d78f10
DS
4388 packet-queue specifies the list of packets in the queue to be sent.
4389
6c5be52a 4390.. clicmd:: show bgp update-groups statistics
09d78f10
DS
4391
4392 Display Information about update-group events in FRR.
8fcedbd2 4393
4ccd4033
HS
4394Segment-Routing IPv6
4395--------------------
4396
4397.. clicmd:: show bgp segment-routing srv6
4398
4399 This command displays information about SRv6 L3VPN in bgpd. Specifically,
4400 what kind of Locator is being used, and its Locator chunk information.
4401 And the SID of the SRv6 Function that is actually managed on bgpd.
4402 In the following example, bgpd is using a Locator named loc1, and two SRv6
4403 Functions are managed to perform VPNv6 VRF redirect for vrf10 and vrf20.
4404
4405::
4406
4407 router# show bgp segment-routing srv6
4408 locator_name: loc1
4409 locator_chunks:
4410 - 2001:db8:1:1::/64
4411 functions:
4412 - sid: 2001:db8:1:1::100
4413 locator: loc1
4414 - sid: 2001:db8:1:1::200
4415 locator: loc1
4416 bgps:
4417 - name: default
4418 vpn_policy[AFI_IP].tovpn_sid: none
4419 vpn_policy[AFI_IP6].tovpn_sid: none
4420 - name: vrf10
4421 vpn_policy[AFI_IP].tovpn_sid: none
4422 vpn_policy[AFI_IP6].tovpn_sid: 2001:db8:1:1::100
4423 - name: vrf20
4424 vpn_policy[AFI_IP].tovpn_sid: none
4425 vpn_policy[AFI_IP6].tovpn_sid: 2001:db8:1:1::200
4426
4427
8fcedbd2
QY
4428.. _bgp-route-reflector:
4429
4430Route Reflector
4431===============
4432
749afd7d
RF
4433BGP routers connected inside the same AS through BGP belong to an internal
4434BGP session, or IBGP. In order to prevent routing table loops, IBGP does not
4435advertise IBGP-learned routes to other routers in the same session. As such,
4436IBGP requires a full mesh of all peers. For large networks, this quickly becomes
4437unscalable. Introducing route reflectors removes the need for the full-mesh.
8fcedbd2 4438
749afd7d
RF
4439When route reflectors are configured, these will reflect the routes announced
4440by the peers configured as clients. A route reflector client is configured
4441with:
8fcedbd2 4442
8fcedbd2
QY
4443.. clicmd:: neighbor PEER route-reflector-client
4444
c3c5a71f 4445
749afd7d
RF
4446To avoid single points of failure, multiple route reflectors can be configured.
4447
4448A cluster is a collection of route reflectors and their clients, and is used
4449by route reflectors to avoid looping.
4450
749afd7d 4451.. clicmd:: bgp cluster-id A.B.C.D
42fc5d26 4452
03750f1e 4453.. clicmd:: bgp no-rib
8dad2243
DS
4454
4455To set and unset the BGP daemon ``-n`` / ``--no_kernel`` options during runtime
4456to disable BGP route installation to the RIB (Zebra), the ``[no] bgp no-rib``
4457commands can be used;
4458
4459Please note that setting the option during runtime will withdraw all routes in
4460the daemons RIB from Zebra and unsetting it will announce all routes in the
4461daemons RIB to Zebra. If the option is passed as a command line argument when
4462starting the daemon and the configuration gets saved, the option will persist
4463unless removed from the configuration with the negating command prior to the
56b91d10
DS
4464configuration write operation. At this point in time non SAFI_UNICAST BGP
4465data is not properly withdrawn from zebra when this command is issued.
8dad2243 4466
8666265e
DS
4467.. clicmd:: bgp allow-martian-nexthop
4468
4469When a peer receives a martian nexthop as part of the NLRI for a route
4470permit the nexthop to be used as such, instead of rejecting and resetting
4471the connection.
4472
03750f1e 4473.. clicmd:: bgp send-extra-data zebra
9a06c157 4474
870791a3
IR
4475This command turns on the ability of BGP to send extra data to zebra. Currently,
4476it's the AS-Path, communities, and the path selection reason. The default
4477behavior in BGP is not to send this data. If the routes were sent to zebra and
4478the option is changed, bgpd doesn't reinstall the routes to comply with the new
4479setting.
9a06c157 4480
425bd64b
PS
4481.. clicmd:: bgp session-dscp (0-63)
4482
4483This command allows bgp to control, at a global level, the TCP dscp values
4484in the TCP header.
4485
1cc55938
S
4486.. _bgp-suppress-fib:
4487
4488Suppressing routes not installed in FIB
4489=======================================
4490
4491The FRR implementation of BGP advertises prefixes learnt from a peer to other
4492peers even if the routes do not get installed in the FIB. There can be
4493scenarios where the hardware tables in some of the routers (along the path from
4494the source to destination) is full which will result in all routes not getting
4495installed in the FIB. If these routes are advertised to the downstream routers
4496then traffic will start flowing and will be dropped at the intermediate router.
4497
4498The solution is to provide a configurable option to check for the FIB install
4499status of the prefixes and advertise to peers if the prefixes are successfully
4500installed in the FIB. The advertisement of the prefixes are suppressed if it is
4501not installed in FIB.
4502
4503The following conditions apply will apply when checking for route installation
4504status in FIB:
0ea5223c 4505
1cc55938
S
45061. The advertisement or suppression of routes based on FIB install status
4507 applies only for newly learnt routes from peer (routes which are not in
4508 BGP local RIB).
45092. If the route received from peer already exists in BGP local RIB and route
4510 attributes have changed (best path changed), the old path is deleted and
4511 new path is installed in FIB. The FIB install status will not have any
4512 effect. Therefore only when the route is received first time the checks
4513 apply.
45143. The feature will not apply for routes learnt through other means like
4515 redistribution to bgp from other protocols. This is applicable only to
4516 peer learnt routes.
45174. If a route is installed in FIB and then gets deleted from the dataplane,
4518 then routes will not be withdrawn from peers. This will be considered as
4519 dataplane issue.
45205. The feature will slightly increase the time required to advertise the routes
4521 to peers since the route install status needs to be received from the FIB
45226. If routes are received by the peer before the configuration is applied, then
4523 the bgp sessions need to be reset for the configuration to take effect.
45247. If the route which is already installed in dataplane is removed for some
4525 reason, sending withdraw message to peers is not currently supported.
4526
03750f1e 4527.. clicmd:: bgp suppress-fib-pending
8dad2243 4528
4f4ba68c
DS
4529 This command is applicable at the global level and at an individual
4530 bgp level. If applied at the global level all bgp instances will
4531 wait for fib installation before announcing routes and there is no
4532 way to turn it off for a particular bgp vrf.
4533
0efdf0fe 4534.. _routing-policy:
42fc5d26 4535
8fcedbd2
QY
4536Routing Policy
4537==============
42fc5d26 4538
4da7fda3 4539You can set different routing policy for a peer. For example, you can set
9eb95b3b
QY
4540different filter for a peer.
4541
4542.. code-block:: frr
c1a54c05 4543
c1a54c05
QY
4544 !
4545 router bgp 1 view 1
4546 neighbor 10.0.0.1 remote-as 2
4547 address-family ipv4 unicast
4548 neighbor 10.0.0.1 distribute-list 1 in
4549 exit-address-family
4550 !
4551 router bgp 1 view 2
4552 neighbor 10.0.0.1 remote-as 2
4553 address-family ipv4 unicast
4554 neighbor 10.0.0.1 distribute-list 2 in
4555 exit-address-family
c3c5a71f 4556
4da7fda3
QY
4557This means BGP update from a peer 10.0.0.1 goes to both BGP view 1 and view 2.
4558When the update is inserted into view 1, distribute-list 1 is applied. On the
4559other hand, when the update is inserted into view 2, distribute-list 2 is
4560applied.
42fc5d26 4561
42fc5d26 4562
0efdf0fe 4563.. _bgp-regular-expressions:
42fc5d26
QY
4564
4565BGP Regular Expressions
4566=======================
4567
8fcedbd2
QY
4568BGP regular expressions are based on :t:`POSIX 1003.2` regular expressions. The
4569following description is just a quick subset of the POSIX regular expressions.
42fc5d26
QY
4570
4571
8fcedbd2 4572.\*
c1a54c05 4573 Matches any single character.
42fc5d26 4574
8fcedbd2 4575\*
c1a54c05 4576 Matches 0 or more occurrences of pattern.
42fc5d26 4577
8fcedbd2 4578\+
c1a54c05 4579 Matches 1 or more occurrences of pattern.
42fc5d26
QY
4580
4581?
c1a54c05 4582 Match 0 or 1 occurrences of pattern.
42fc5d26
QY
4583
4584^
c1a54c05 4585 Matches the beginning of the line.
42fc5d26
QY
4586
4587$
c1a54c05 4588 Matches the end of the line.
42fc5d26
QY
4589
4590_
8fcedbd2
QY
4591 The ``_`` character has special meanings in BGP regular expressions. It
4592 matches to space and comma , and AS set delimiter ``{`` and ``}`` and AS
4593 confederation delimiter ``(`` and ``)``. And it also matches to the
4594 beginning of the line and the end of the line. So ``_`` can be used for AS
4595 value boundaries match. This character technically evaluates to
4596 ``(^|[,{}()]|$)``.
42fc5d26 4597
42fc5d26 4598
c1a54c05 4599.. _bgp-configuration-examples:
42fc5d26 4600
8fcedbd2
QY
4601Miscellaneous Configuration Examples
4602====================================
42fc5d26 4603
9eb95b3b
QY
4604Example of a session to an upstream, advertising only one prefix to it.
4605
4606.. code-block:: frr
42fc5d26 4607
c1a54c05
QY
4608 router bgp 64512
4609 bgp router-id 10.236.87.1
4610 neighbor upstream peer-group
4611 neighbor upstream remote-as 64515
4612 neighbor upstream capability dynamic
4613 neighbor 10.1.1.1 peer-group upstream
4614 neighbor 10.1.1.1 description ACME ISP
c3c5a71f 4615
c1a54c05
QY
4616 address-family ipv4 unicast
4617 network 10.236.87.0/24
4618 neighbor upstream prefix-list pl-allowed-adv out
4619 exit-address-family
4620 !
4621 ip prefix-list pl-allowed-adv seq 5 permit 82.195.133.0/25
4622 ip prefix-list pl-allowed-adv seq 10 deny any
42fc5d26 4623
aa9eafa4
QY
4624A more complex example including upstream, peer and customer sessions
4625advertising global prefixes and NO_EXPORT prefixes and providing actions for
4626customer routes based on community values. Extensive use is made of route-maps
4627and the 'call' feature to support selective advertising of prefixes. This
4628example is intended as guidance only, it has NOT been tested and almost
4629certainly contains silly mistakes, if not serious flaws.
42fc5d26 4630
9eb95b3b 4631.. code-block:: frr
42fc5d26 4632
c1a54c05
QY
4633 router bgp 64512
4634 bgp router-id 10.236.87.1
4635 neighbor upstream capability dynamic
4636 neighbor cust capability dynamic
4637 neighbor peer capability dynamic
4638 neighbor 10.1.1.1 remote-as 64515
4639 neighbor 10.1.1.1 peer-group upstream
4640 neighbor 10.2.1.1 remote-as 64516
4641 neighbor 10.2.1.1 peer-group upstream
4642 neighbor 10.3.1.1 remote-as 64517
4643 neighbor 10.3.1.1 peer-group cust-default
4644 neighbor 10.3.1.1 description customer1
4645 neighbor 10.4.1.1 remote-as 64518
4646 neighbor 10.4.1.1 peer-group cust
4647 neighbor 10.4.1.1 description customer2
4648 neighbor 10.5.1.1 remote-as 64519
4649 neighbor 10.5.1.1 peer-group peer
4650 neighbor 10.5.1.1 description peer AS 1
4651 neighbor 10.6.1.1 remote-as 64520
4652 neighbor 10.6.1.1 peer-group peer
4653 neighbor 10.6.1.1 description peer AS 2
4654
4655 address-family ipv4 unicast
4656 network 10.123.456.0/24
4657 network 10.123.456.128/25 route-map rm-no-export
4658 neighbor upstream route-map rm-upstream-out out
4659 neighbor cust route-map rm-cust-in in
4660 neighbor cust route-map rm-cust-out out
4661 neighbor cust send-community both
4662 neighbor peer route-map rm-peer-in in
4663 neighbor peer route-map rm-peer-out out
4664 neighbor peer send-community both
4665 neighbor 10.3.1.1 prefix-list pl-cust1-network in
4666 neighbor 10.4.1.1 prefix-list pl-cust2-network in
4667 neighbor 10.5.1.1 prefix-list pl-peer1-network in
4668 neighbor 10.6.1.1 prefix-list pl-peer2-network in
4669 exit-address-family
4670 !
4671 ip prefix-list pl-default permit 0.0.0.0/0
4672 !
4673 ip prefix-list pl-upstream-peers permit 10.1.1.1/32
4674 ip prefix-list pl-upstream-peers permit 10.2.1.1/32
4675 !
4676 ip prefix-list pl-cust1-network permit 10.3.1.0/24
4677 ip prefix-list pl-cust1-network permit 10.3.2.0/24
4678 !
4679 ip prefix-list pl-cust2-network permit 10.4.1.0/24
4680 !
4681 ip prefix-list pl-peer1-network permit 10.5.1.0/24
4682 ip prefix-list pl-peer1-network permit 10.5.2.0/24
4683 ip prefix-list pl-peer1-network permit 192.168.0.0/24
4684 !
4685 ip prefix-list pl-peer2-network permit 10.6.1.0/24
4686 ip prefix-list pl-peer2-network permit 10.6.2.0/24
4687 ip prefix-list pl-peer2-network permit 192.168.1.0/24
4688 ip prefix-list pl-peer2-network permit 192.168.2.0/24
4689 ip prefix-list pl-peer2-network permit 172.16.1/24
4690 !
e6e62ee5
CS
4691 bgp as-path access-list seq 5 asp-own-as permit ^$
4692 bgp as-path access-list seq 10 asp-own-as permit _64512_
c1a54c05
QY
4693 !
4694 ! #################################################################
4695 ! Match communities we provide actions for, on routes receives from
4696 ! customers. Communities values of <our-ASN>:X, with X, have actions:
4697 !
4698 ! 100 - blackhole the prefix
4699 ! 200 - set no_export
4700 ! 300 - advertise only to other customers
4701 ! 400 - advertise only to upstreams
4702 ! 500 - set no_export when advertising to upstreams
4703 ! 2X00 - set local_preference to X00
4704 !
4705 ! blackhole the prefix of the route
a64e0ee5 4706 bgp community-list standard cm-blackhole permit 64512:100
c1a54c05
QY
4707 !
4708 ! set no-export community before advertising
a64e0ee5 4709 bgp community-list standard cm-set-no-export permit 64512:200
c1a54c05
QY
4710 !
4711 ! advertise only to other customers
a64e0ee5 4712 bgp community-list standard cm-cust-only permit 64512:300
c1a54c05
QY
4713 !
4714 ! advertise only to upstreams
a64e0ee5 4715 bgp community-list standard cm-upstream-only permit 64512:400
c1a54c05
QY
4716 !
4717 ! advertise to upstreams with no-export
a64e0ee5 4718 bgp community-list standard cm-upstream-noexport permit 64512:500
c1a54c05
QY
4719 !
4720 ! set local-pref to least significant 3 digits of the community
a64e0ee5
DA
4721 bgp community-list standard cm-prefmod-100 permit 64512:2100
4722 bgp community-list standard cm-prefmod-200 permit 64512:2200
4723 bgp community-list standard cm-prefmod-300 permit 64512:2300
4724 bgp community-list standard cm-prefmod-400 permit 64512:2400
4725 bgp community-list expanded cme-prefmod-range permit 64512:2...
c1a54c05
QY
4726 !
4727 ! Informational communities
4728 !
4729 ! 3000 - learned from upstream
4730 ! 3100 - learned from customer
4731 ! 3200 - learned from peer
4732 !
a64e0ee5
DA
4733 bgp community-list standard cm-learnt-upstream permit 64512:3000
4734 bgp community-list standard cm-learnt-cust permit 64512:3100
4735 bgp community-list standard cm-learnt-peer permit 64512:3200
c1a54c05
QY
4736 !
4737 ! ###################################################################
4738 ! Utility route-maps
4739 !
4740 ! These utility route-maps generally should not used to permit/deny
4741 ! routes, i.e. they do not have meaning as filters, and hence probably
4742 ! should be used with 'on-match next'. These all finish with an empty
4743 ! permit entry so as not interfere with processing in the caller.
4744 !
4745 route-map rm-no-export permit 10
4746 set community additive no-export
4747 route-map rm-no-export permit 20
4748 !
4749 route-map rm-blackhole permit 10
f6aa36f5 4750 description blackhole, up-pref and ensure it cannot escape this AS
c1a54c05
QY
4751 set ip next-hop 127.0.0.1
4752 set local-preference 10
4753 set community additive no-export
4754 route-map rm-blackhole permit 20
4755 !
4756 ! Set local-pref as requested
4757 route-map rm-prefmod permit 10
4758 match community cm-prefmod-100
4759 set local-preference 100
4760 route-map rm-prefmod permit 20
4761 match community cm-prefmod-200
4762 set local-preference 200
4763 route-map rm-prefmod permit 30
4764 match community cm-prefmod-300
4765 set local-preference 300
4766 route-map rm-prefmod permit 40
4767 match community cm-prefmod-400
4768 set local-preference 400
4769 route-map rm-prefmod permit 50
4770 !
4771 ! Community actions to take on receipt of route.
4772 route-map rm-community-in permit 10
4773 description check for blackholing, no point continuing if it matches.
4774 match community cm-blackhole
4775 call rm-blackhole
4776 route-map rm-community-in permit 20
4777 match community cm-set-no-export
4778 call rm-no-export
4779 on-match next
4780 route-map rm-community-in permit 30
4781 match community cme-prefmod-range
4782 call rm-prefmod
4783 route-map rm-community-in permit 40
4784 !
4785 ! #####################################################################
4786 ! Community actions to take when advertising a route.
4787 ! These are filtering route-maps,
4788 !
4789 ! Deny customer routes to upstream with cust-only set.
4790 route-map rm-community-filt-to-upstream deny 10
4791 match community cm-learnt-cust
4792 match community cm-cust-only
4793 route-map rm-community-filt-to-upstream permit 20
4794 !
4795 ! Deny customer routes to other customers with upstream-only set.
4796 route-map rm-community-filt-to-cust deny 10
4797 match community cm-learnt-cust
4798 match community cm-upstream-only
4799 route-map rm-community-filt-to-cust permit 20
4800 !
4801 ! ###################################################################
4802 ! The top-level route-maps applied to sessions. Further entries could
4803 ! be added obviously..
4804 !
4805 ! Customers
4806 route-map rm-cust-in permit 10
4807 call rm-community-in
4808 on-match next
4809 route-map rm-cust-in permit 20
4810 set community additive 64512:3100
4811 route-map rm-cust-in permit 30
4812 !
4813 route-map rm-cust-out permit 10
4814 call rm-community-filt-to-cust
4815 on-match next
4816 route-map rm-cust-out permit 20
4817 !
4818 ! Upstream transit ASes
4819 route-map rm-upstream-out permit 10
4820 description filter customer prefixes which are marked cust-only
4821 call rm-community-filt-to-upstream
4822 on-match next
4823 route-map rm-upstream-out permit 20
4824 description only customer routes are provided to upstreams/peers
4825 match community cm-learnt-cust
4826 !
4827 ! Peer ASes
4828 ! outbound policy is same as for upstream
4829 route-map rm-peer-out permit 10
4830 call rm-upstream-out
4831 !
4832 route-map rm-peer-in permit 10
4833 set community additive 64512:3200
c3c5a71f 4834
8fcedbd2
QY
4835
4836Example of how to set up a 6-Bone connection.
4837
4838.. code-block:: frr
4839
4840 ! bgpd configuration
4841 ! ==================
4842 !
4843 ! MP-BGP configuration
4844 !
4845 router bgp 7675
4846 bgp router-id 10.0.0.1
4847 neighbor 3ffe:1cfa:0:2:2a0:c9ff:fe9e:f56 remote-as `as-number`
4848 !
4849 address-family ipv6
4850 network 3ffe:506::/32
4851 neighbor 3ffe:1cfa:0:2:2a0:c9ff:fe9e:f56 activate
4852 neighbor 3ffe:1cfa:0:2:2a0:c9ff:fe9e:f56 route-map set-nexthop out
4853 neighbor 3ffe:1cfa:0:2:2c0:4fff:fe68:a231 remote-as `as-number`
4854 neighbor 3ffe:1cfa:0:2:2c0:4fff:fe68:a231 route-map set-nexthop out
4855 exit-address-family
4856 !
4857 ipv6 access-list all permit any
4858 !
4859 ! Set output nexthop address.
4860 !
4861 route-map set-nexthop permit 10
4862 match ipv6 address all
4863 set ipv6 nexthop global 3ffe:1cfa:0:2:2c0:4fff:fe68:a225
4864 set ipv6 nexthop local fe80::2c0:4fff:fe68:a225
4865 !
4866 log file bgpd.log
4867 !
4868
4ab46701
AR
4869.. _bgp-tcp-mss:
4870
4871BGP tcp-mss support
4872===================
4873TCP provides a mechanism for the user to specify the max segment size.
4874setsockopt API is used to set the max segment size for TCP session. We
4875can configure this as part of BGP neighbor configuration.
4876
4877This document explains how to avoid ICMP vulnerability issues by limiting
4878TCP max segment size when you are using MTU discovery. Using MTU discovery
4879on TCP paths is one method of avoiding BGP packet fragmentation.
4880
4881TCP negotiates a maximum segment size (MSS) value during session connection
4882establishment between two peers. The MSS value negotiated is primarily based
073b7664
DA
4883on the maximum transmission unit (MTU) of the interfaces to which the
4884communicating peers are directly connected. However, due to variations in
4885link MTU on the path taken by the TCP packets, some packets in the network
4ab46701 4886that are well within the MSS value might be fragmented when the packet size
073b7664 4887exceeds the link's MTU.
4ab46701
AR
4888
4889This feature is supported with TCP over IPv4 and TCP over IPv6.
4890
4891CLI Configuration:
4892------------------
4893Below configuration can be done in router bgp mode and allows the user to
4894configure the tcp-mss value per neighbor. The configuration gets applied
4895only after hard reset is performed on that neighbor. If we configure tcp-mss
4896on both the neighbors then both neighbors need to be reset.
4897
4898The configuration takes effect based on below rules, so there is a configured
4899tcp-mss and a synced tcp-mss value per TCP session.
4900
4901By default if the configuration is not done then the TCP max segment size is
4902set to the Maximum Transmission unit (MTU) – (IP/IP6 header size + TCP header
4903size + ethernet header). For IPv4 its MTU – (20 bytes IP header + 20 bytes TCP
4904header + 12 bytes ethernet header) and for IPv6 its MTU – (40 bytes IPv6 header
4905+ 20 bytes TCP header + 12 bytes ethernet header).
4906
073b7664 4907If the config is done then it reduces 12-14 bytes for the ether header and
4ab46701
AR
4908uses it after synchronizing in TCP handshake.
4909
4910.. clicmd:: neighbor <A.B.C.D|X:X::X:X|WORD> tcp-mss (1-65535)
4911
4912When tcp-mss is configured kernel reduces 12-14 bytes for ethernet header.
4913E.g. if tcp-mss is configured as 150 the synced value will be 138.
4914
4915Note: configured and synced value is different since TCP module will reduce
491612 bytes for ethernet header.
4917
4918Running config:
4919---------------
4920
4921.. code-block:: frr
4922
073b7664 4923 frr# show running-config
4ab46701
AR
4924 Building configuration...
4925
4926 Current configuration:
4927 !
4928 router bgp 100
4929 bgp router-id 192.0.2.1
4930 neighbor 198.51.100.2 remote-as 100
4931 neighbor 198.51.100.2 tcp-mss 150 => new entry
4932 neighbor 2001:DB8::2 remote-as 100
4933 neighbor 2001:DB8::2 tcp-mss 400 => new entry
4934
4935Show command:
4936-------------
4937
4938.. code-block:: frr
4939
073b7664 4940 frr# show bgp neighbors 198.51.100.2
4ab46701
AR
4941 BGP neighbor is 198.51.100.2, remote AS 100, local AS 100, internal link
4942 Hostname: frr
4943 BGP version 4, remote router ID 192.0.2.2, local router ID 192.0.2.1
4944 BGP state = Established, up for 02:15:28
4945 Last read 00:00:28, Last write 00:00:28
4946 Hold time is 180, keepalive interval is 60 seconds
4947 Configured tcp-mss is 150, synced tcp-mss is 138 => new display
4948
4949.. code-block:: frr
4950
073b7664 4951 frr# show bgp neighbors 2001:DB8::2
4ab46701
AR
4952 BGP neighbor is 2001:DB8::2, remote AS 100, local AS 100, internal link
4953 Hostname: frr
4954 BGP version 4, remote router ID 192.0.2.2, local router ID 192.0.2.1
4955 BGP state = Established, up for 02:16:34
4956 Last read 00:00:34, Last write 00:00:34
4957 Hold time is 180, keepalive interval is 60 seconds
4958 Configured tcp-mss is 400, synced tcp-mss is 388 => new display
4959
4960Show command json output:
4961-------------------------
4962
4963.. code-block:: frr
4964
073b7664 4965 frr# show bgp neighbors 2001:DB8::2 json
4ab46701
AR
4966 {
4967 "2001:DB8::2":{
4968 "remoteAs":100,
4969 "localAs":100,
4970 "nbrInternalLink":true,
4971 "hostname":"frr",
4972 "bgpVersion":4,
4973 "remoteRouterId":"192.0.2.2",
4974 "localRouterId":"192.0.2.1",
4975 "bgpState":"Established",
4976 "bgpTimerUpMsec":8349000,
4977 "bgpTimerUpString":"02:19:09",
4978 "bgpTimerUpEstablishedEpoch":1613054251,
4979 "bgpTimerLastRead":9000,
4980 "bgpTimerLastWrite":9000,
4981 "bgpInUpdateElapsedTimeMsecs":8347000,
4982 "bgpTimerHoldTimeMsecs":180000,
4983 "bgpTimerKeepAliveIntervalMsecs":60000,
4984 "bgpTcpMssConfigured":400, => new entry
4985 "bgpTcpMssSynced":388, => new entry
4986
4987.. code-block:: frr
4988
073b7664 4989 frr# show bgp neighbors 198.51.100.2 json
4ab46701
AR
4990 {
4991 "198.51.100.2":{
4992 "remoteAs":100,
4993 "localAs":100,
4994 "nbrInternalLink":true,
4995 "hostname":"frr",
4996 "bgpVersion":4,
4997 "remoteRouterId":"192.0.2.2",
4998 "localRouterId":"192.0.2.1",
4999 "bgpState":"Established",
5000 "bgpTimerUpMsec":8370000,
5001 "bgpTimerUpString":"02:19:30",
5002 "bgpTimerUpEstablishedEpoch":1613054251,
5003 "bgpTimerLastRead":30000,
5004 "bgpTimerLastWrite":30000,
5005 "bgpInUpdateElapsedTimeMsecs":8368000,
5006 "bgpTimerHoldTimeMsecs":180000,
5007 "bgpTimerKeepAliveIntervalMsecs":60000,
5008 "bgpTcpMssConfigured":150, => new entry
5009 "bgpTcpMssSynced":138, => new entry
8fcedbd2 5010
9e146a81 5011.. include:: routeserver.rst
f3817860
QY
5012
5013.. include:: rpki.rst
c1a54c05 5014
ed647ed2 5015.. include:: wecmp_linkbw.rst
5016
00458d01
PG
5017.. include:: flowspec.rst
5018
d1e7591e 5019.. [#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)
c1a54c05
QY
5020.. [bgp-route-osci-cond] McPherson, D. and Gill, V. and Walton, D., "Border Gateway Protocol (BGP) Persistent Route Oscillation Condition", IETF RFC3345
5021.. [stable-flexible-ibgp] Flavel, A. and M. Roughan, "Stable and flexible iBGP", ACM SIGCOMM 2009
5022.. [ibgp-correctness] Griffin, T. and G. Wilfong, "On the correctness of IBGP configuration", ACM SIGCOMM 2002
5874235f
PG
5023
5024.. _bgp-fast-convergence:
5025
5026BGP fast-convergence support
5027============================
5028Whenever BGP peer address becomes unreachable we must bring down the BGP
7cb0494d
DA
5029session immediately. Currently only single-hop EBGP sessions are brought
5030down immediately.IBGP and multi-hop EBGP sessions wait for hold-timer
5874235f
PG
5031expiry to bring down the sessions.
5032
5033This new configuration option helps user to teardown BGP sessions immediately
5034whenever peer becomes unreachable.
5035
5036.. clicmd:: bgp fast-convergence
5037
5038This configuration is available at the bgp level. When enabled, configuration
5039is applied to all the neighbors configured in that bgp instance.
5040
5041.. code-block:: frr
5042
5043 router bgp 64496
5044 neighbor 10.0.0.2 remote-as 64496
5045 neighbor fd00::2 remote-as 64496
5046 bgp fast-convergence
5047 !
5048 address-family ipv4 unicast
5049 redistribute static
5050 exit-address-family
5051 !
5052 address-family ipv6 unicast
5053 neighbor fd00::2 activate
5054 exit-address-family