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