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