]> git.proxmox.com Git - mirror_frr.git/blame - doc/user/bgp.rst
bgpd: Define function to check if performing graceful shutdown
[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
c0868e8b
QY
34 Specify a specific IP address for bgpd to listen on, rather than its default
35 of ``0.0.0.0`` / ``::``. This can be useful to constrain bgpd to an internal
36 address, or to run multiple bgpd processes on one host.
42fc5d26 37
11a9a236
DS
38.. option:: -n, --no_kernel
39
40 Do not install learned routes into the linux kernel. This option is useful
41 for a route-reflector environment or if you are running multiple bgp
42 processes in the same namespace. This option is different than the --no_zebra
43 option in that a ZAPI connection is made.
44
45.. option:: -S, --skip_runas
46
47 Skip the normal process of checking capabilities and changing user and group
48 information.
49
50.. option:: -e, --ecmp
51
52 Run BGP with a limited ecmp capability, that is different than what BGP
53 was compiled with. The value specified must be greater than 0 and less
54 than or equal to the MULTIPATH_NUM specified on compilation.
55
56.. option:: -Z, --no_zebra
57
58 Do not communicate with zebra at all. This is different than the --no_kernel
59 option in that we do not even open a ZAPI connection to the zebra process.
60
61.. option:: -s, --socket_size
62
63 When opening tcp connections to our peers, set the socket send buffer
64 size that the kernel will use for the peers socket. This option
65 is only really useful at a very large scale. Experimentation should
66 be done to see if this is helping or not at the scale you are running
67 at.
68
69LABEL MANAGER
70-------------
71
72.. option:: -I, --int_num
73
74 Set zclient id. This is required when using Zebra label manager in proxy mode.
75
8fcedbd2 76.. _bgp-basic-concepts:
42fc5d26 77
8fcedbd2
QY
78Basic Concepts
79==============
42fc5d26 80
8fcedbd2 81.. _bgp-autonomous-systems:
c3c5a71f 82
8fcedbd2
QY
83Autonomous Systems
84------------------
42fc5d26 85
c0868e8b
QY
86From :rfc:`1930`:
87
88 An AS is a connected group of one or more IP prefixes run by one or more
89 network operators which has a SINGLE and CLEARLY DEFINED routing policy.
90
91Each AS has an identifying number associated with it called an :abbr:`ASN
92(Autonomous System Number)`. This is a two octet value ranging in value from 1
93to 65535. The AS numbers 64512 through 65535 are defined as private AS numbers.
94Private AS numbers must not be advertised on the global Internet.
95
96The :abbr:`ASN (Autonomous System Number)` is one of the essential elements of
8fcedbd2 97BGP. BGP is a distance vector routing protocol, and the AS-Path framework
c0868e8b 98provides distance vector metric and loop detection to BGP.
42fc5d26 99
c0868e8b 100.. seealso:: :rfc:`1930`
42fc5d26 101
8fcedbd2 102.. _bgp-address-families:
42fc5d26 103
8fcedbd2
QY
104Address Families
105----------------
42fc5d26 106
c0868e8b
QY
107Multiprotocol extensions enable BGP to carry routing information for multiple
108network layer protocols. BGP supports an Address Family Identifier (AFI) for
109IPv4 and IPv6. Support is also provided for multiple sets of per-AFI
110information via the BGP Subsequent Address Family Identifier (SAFI). FRR
111supports SAFIs for unicast information, labeled information (:rfc:`3107` and
112:rfc:`8277`), and Layer 3 VPN information (:rfc:`4364` and :rfc:`4659`).
c3c5a71f 113
8fcedbd2 114.. _bgp-route-selection:
42fc5d26 115
8fcedbd2
QY
116Route Selection
117---------------
42fc5d26 118
8fcedbd2
QY
119The route selection process used by FRR's BGP implementation uses the following
120decision criterion, starting at the top of the list and going towards the
121bottom until one of the factors can be used.
42fc5d26 122
8fcedbd2 1231. **Weight check**
42fc5d26 124
c1a54c05 125 Prefer higher local weight routes to lower routes.
42fc5d26 126
8fcedbd2
QY
1272. **Local preference check**
128
c1a54c05 129 Prefer higher local preference routes to lower.
42fc5d26 130
8fcedbd2
QY
1313. **Local route check**
132
c1a54c05 133 Prefer local routes (statics, aggregates, redistributed) to received routes.
42fc5d26 134
8fcedbd2
QY
1354. **AS path length check**
136
c1a54c05 137 Prefer shortest hop-count AS_PATHs.
42fc5d26 138
8fcedbd2
QY
1395. **Origin check**
140
c1a54c05
QY
141 Prefer the lowest origin type route. That is, prefer IGP origin routes to
142 EGP, to Incomplete routes.
42fc5d26 143
8fcedbd2
QY
1446. **MED check**
145
c1a54c05 146 Where routes with a MED were received from the same AS, prefer the route
0efdf0fe 147 with the lowest MED. :ref:`bgp-med`.
42fc5d26 148
8fcedbd2
QY
1497. **External check**
150
c1a54c05
QY
151 Prefer the route received from an external, eBGP peer over routes received
152 from other types of peers.
42fc5d26 153
8fcedbd2
QY
1548. **IGP cost check**
155
c1a54c05 156 Prefer the route with the lower IGP cost.
42fc5d26 157
8fcedbd2
QY
1589. **Multi-path check**
159
c1a54c05
QY
160 If multi-pathing is enabled, then check whether the routes not yet
161 distinguished in preference may be considered equal. If
9e146a81 162 :clicmd:`bgp bestpath as-path multipath-relax` is set, all such routes are
c1a54c05
QY
163 considered equal, otherwise routes received via iBGP with identical AS_PATHs
164 or routes received from eBGP neighbours in the same AS are considered equal.
42fc5d26 165
8fcedbd2
QY
16610. **Already-selected external check**
167
07738543
QY
168 Where both routes were received from eBGP peers, then prefer the route
169 which is already selected. Note that this check is not applied if
170 :clicmd:`bgp bestpath compare-routerid` is configured. This check can
171 prevent some cases of oscillation.
172
8fcedbd2
QY
17311. **Router-ID check**
174
07738543
QY
175 Prefer the route with the lowest `router-ID`. If the route has an
176 `ORIGINATOR_ID` attribute, through iBGP reflection, then that router ID is
177 used, otherwise the `router-ID` of the peer the route was received from is
178 used.
179
8fcedbd2
QY
18012. **Cluster-List length check**
181
07738543
QY
182 The route with the shortest cluster-list length is used. The cluster-list
183 reflects the iBGP reflection path the route has taken.
184
8fcedbd2
QY
18513. **Peer address**
186
07738543
QY
187 Prefer the route received from the peer with the higher transport layer
188 address, as a last-resort tie-breaker.
42fc5d26 189
8fcedbd2
QY
190.. _bgp-capability-negotiation:
191
192Capability Negotiation
193----------------------
194
195When adding IPv6 routing information exchange feature to BGP. There were some
196proposals. :abbr:`IETF (Internet Engineering Task Force)`
197:abbr:`IDR (Inter Domain Routing)` adopted a proposal called Multiprotocol
198Extension for BGP. The specification is described in :rfc:`2283`. The protocol
199does not define new protocols. It defines new attributes to existing BGP. When
200it is used exchanging IPv6 routing information it is called BGP-4+. When it is
201used for exchanging multicast routing information it is called MBGP.
202
203*bgpd* supports Multiprotocol Extension for BGP. So if a remote peer supports
204the protocol, *bgpd* can exchange IPv6 and/or multicast routing information.
205
206Traditional BGP did not have the feature to detect a remote peer's
207capabilities, e.g. whether it can handle prefix types other than IPv4 unicast
208routes. This was a big problem using Multiprotocol Extension for BGP in an
209operational network. :rfc:`2842` adopted a feature called Capability
210Negotiation. *bgpd* use this Capability Negotiation to detect the remote peer's
211capabilities. If a peer is only configured as an IPv4 unicast neighbor, *bgpd*
212does not send these Capability Negotiation packets (at least not unless other
213optional BGP features require capability negotiation).
214
215By default, FRR will bring up peering with minimal common capability for the
216both sides. For example, if the local router has unicast and multicast
217capabilities and the remote router only has unicast capability the local router
218will establish the connection with unicast only capability. When there are no
219common capabilities, FRR sends Unsupported Capability error and then resets the
220connection.
221
8fcedbd2
QY
222.. _bgp-router-configuration:
223
224BGP Router Configuration
225========================
226
227ASN and Router ID
228-----------------
229
230First of all you must configure BGP router with the :clicmd:`router bgp ASN`
231command. The AS number is an identifier for the autonomous system. The BGP
232protocol uses the AS number for detecting whether the BGP connection is
233internal or external.
234
235.. index:: router bgp ASN
236.. clicmd:: router bgp ASN
237
238 Enable a BGP protocol process with the specified ASN. After
239 this statement you can input any `BGP Commands`.
240
241.. index:: no router bgp ASN
242.. clicmd:: no router bgp ASN
243
244 Destroy a BGP protocol process with the specified ASN.
245
246.. index:: bgp router-id A.B.C.D
247.. clicmd:: bgp router-id A.B.C.D
248
249 This command specifies the router-ID. If *bgpd* connects to *zebra* it gets
250 interface and address information. In that case default router ID value is
251 selected as the largest IP Address of the interfaces. When `router zebra` is
252 not enabled *bgpd* can't get interface information so `router-id` is set to
253 0.0.0.0. So please set router-id by hand.
254
c8a5e5e1
QY
255
256.. _bgp-multiple-autonomous-systems:
257
258Multiple Autonomous Systems
259---------------------------
260
261FRR's BGP implementation is capable of running multiple autonomous systems at
262once. Each configured AS corresponds to a :ref:`zebra-vrf`. In the past, to get
263the same functionality the network administrator had to run a new *bgpd*
264process; using VRFs allows multiple autonomous systems to be handled in a
265single process.
266
267When using multiple autonomous systems, all router config blocks after the
268first one must specify a VRF to be the target of BGP's route selection. This
269VRF must be unique within respect to all other VRFs being used for the same
270purpose, i.e. two different autonomous systems cannot use the same VRF.
271However, the same AS can be used with different VRFs.
272
273.. note::
274
275 The separated nature of VRFs makes it possible to peer a single *bgpd*
edde3ce9
QY
276 process to itself, on one machine. Note that this can be done fully within
277 BGP without a corresponding VRF in the kernel or Zebra, which enables some
278 practical use cases such as :ref:`route reflectors <bgp-route-reflector>`
279 and route servers.
c8a5e5e1
QY
280
281Configuration of additional autonomous systems, or of a router that targets a
282specific VRF, is accomplished with the following command:
283
284.. index:: router bgp ASN vrf VRFNAME
285.. clicmd:: router bgp ASN vrf VRFNAME
286
287 ``VRFNAME`` is matched against VRFs configured in the kernel. When ``vrf
288 VRFNAME`` is not specified, the BGP protocol process belongs to the default
289 VRF.
290
291An example configuration with multiple autonomous systems might look like this:
292
293.. code-block:: frr
294
295 router bgp 1
296 neighbor 10.0.0.1 remote-as 20
297 neighbor 10.0.0.2 remote-as 30
298 !
299 router bgp 2 vrf blue
300 neighbor 10.0.0.3 remote-as 40
301 neighbor 10.0.0.4 remote-as 50
302 !
303 router bgp 3 vrf red
304 neighbor 10.0.0.5 remote-as 60
305 neighbor 10.0.0.6 remote-as 70
306 ...
307
c8a5e5e1
QY
308.. seealso:: :ref:`bgp-vrf-route-leaking`
309.. seealso:: :ref:`zebra-vrf`
310
311
312.. _bgp-views:
313
314Views
315-----
316
317In addition to supporting multiple autonomous systems, FRR's BGP implementation
318also supports *views*.
319
320BGP views are almost the same as normal BGP processes, except that routes
195c7461
QY
321selected by BGP are not installed into the kernel routing table. Each BGP view
322provides an independent set of routing information which is only distributed
323via BGP. Multiple views can be supported, and BGP view information is always
324independent from other routing protocols and Zebra/kernel routes. BGP views use
325the core instance (i.e., default VRF) for communication with peers.
edde3ce9 326
c8a5e5e1
QY
327.. index:: router bgp AS-NUMBER view NAME
328.. clicmd:: router bgp AS-NUMBER view NAME
329
330 Make a new BGP view. You can use an arbitrary word for the ``NAME``. Routes
331 selected by the view are not installed into the kernel routing table.
332
333 With this command, you can setup Route Server like below.
334
335 .. code-block:: frr
336
337 !
338 router bgp 1 view 1
339 neighbor 10.0.0.1 remote-as 2
340 neighbor 10.0.0.2 remote-as 3
341 !
342 router bgp 2 view 2
343 neighbor 10.0.0.3 remote-as 4
344 neighbor 10.0.0.4 remote-as 5
345
346.. index:: show [ip] bgp view NAME
347.. clicmd:: show [ip] bgp view NAME
348
349 Display the routing table of BGP view ``NAME``.
350
351
8fcedbd2
QY
352Route Selection
353---------------
c3c5a71f 354
c1a54c05 355.. index:: bgp bestpath as-path confed
29adcd50 356.. clicmd:: bgp bestpath as-path confed
42fc5d26 357
c1a54c05
QY
358 This command specifies that the length of confederation path sets and
359 sequences should should be taken into account during the BGP best path
360 decision process.
42fc5d26 361
c3c5a71f 362.. index:: bgp bestpath as-path multipath-relax
29adcd50 363.. clicmd:: bgp bestpath as-path multipath-relax
42fc5d26 364
c1a54c05
QY
365 This command specifies that BGP decision process should consider paths
366 of equal AS_PATH length candidates for multipath computation. Without
367 the knob, the entire AS_PATH must match for multipath computation.
c3c5a71f 368
29adcd50 369.. clicmd:: bgp bestpath compare-routerid
42fc5d26 370
c1a54c05
QY
371 Ensure that when comparing routes where both are equal on most metrics,
372 including local-pref, AS_PATH length, IGP cost, MED, that the tie is broken
373 based on router-ID.
42fc5d26 374
c1a54c05
QY
375 If this option is enabled, then the already-selected check, where
376 already selected eBGP routes are preferred, is skipped.
42fc5d26 377
c1a54c05
QY
378 If a route has an `ORIGINATOR_ID` attribute because it has been reflected,
379 that `ORIGINATOR_ID` will be used. Otherwise, the router-ID of the peer the
380 route was received from will be used.
42fc5d26 381
c1a54c05
QY
382 The advantage of this is that the route-selection (at this point) will be
383 more deterministic. The disadvantage is that a few or even one lowest-ID
d1e7591e 384 router may attract all traffic to otherwise-equal paths because of this
c1a54c05
QY
385 check. It may increase the possibility of MED or IGP oscillation, unless
386 other measures were taken to avoid these. The exact behaviour will be
387 sensitive to the iBGP and reflection topology.
42fc5d26 388
8fcedbd2
QY
389.. _bgp-distance:
390
391Administrative Distance Metrics
392-------------------------------
393
394.. index:: distance bgp (1-255) (1-255) (1-255)
395.. clicmd:: distance bgp (1-255) (1-255) (1-255)
396
397 This command change distance value of BGP. The arguments are the distance
398 values for for external routes, internal routes and local routes
399 respectively.
400
401.. index:: distance (1-255) A.B.C.D/M
402.. clicmd:: distance (1-255) A.B.C.D/M
403
404.. index:: distance (1-255) A.B.C.D/M WORD
405.. clicmd:: distance (1-255) A.B.C.D/M WORD
406
407 Sets the administrative distance for a particular route.
42fc5d26 408
713c64dd
DA
409.. _bgp-requires-policy:
410
411Require policy on EBGP
412-------------------------------
413
414.. index:: [no] bgp ebgp-requires-policy
415.. clicmd:: [no] bgp ebgp-requires-policy
416
8955d9e5
DA
417 This command requires incoming and outgoing filters to be applied
418 for eBGP sessions. Without the incoming filter, no routes will be
419 accepted. Without the outgoing filter, no routes will be announced.
420
421 This is enabled by default.
713c64dd 422
62c42b0e
DA
423 When the incoming or outgoing filter is missing you will see
424 "(Policy)" sign under ``show bgp summary``:
425
426 .. code-block:: frr
427
428 exit1# show bgp summary
429
430 IPv4 Unicast Summary:
431 BGP router identifier 10.10.10.1, local AS number 65001 vrf-id 0
432 BGP table version 4
433 RIB entries 7, using 1344 bytes of memory
434 Peers 2, using 43 KiB of memory
435
436 Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd PfxSnt
437 192.168.0.2 4 65002 8 10 0 0 0 00:03:09 5 (Policy)
438 fe80:1::2222 4 65002 9 11 0 0 0 00:03:09 (Policy) (Policy)
439
f0c81afe 440Reject routes with AS_SET or AS_CONFED_SET types
5031d886 441------------------------------------------------
f0c81afe
DA
442
443.. index:: [no] bgp reject-as-sets
444.. clicmd:: [no] bgp reject-as-sets
445
446 This command enables rejection of incoming and outgoing routes having AS_SET or AS_CONFED_SET type.
447
835e9c5d
DA
448Disable checking if nexthop is connected on EBGP sessions
449---------------------------------------------------------
450
451.. index:: [no] bgp disable-ebgp-connected-route-check
452.. clicmd:: [no] bgp disable-ebgp-connected-route-check
453
454 This command is used to disable the connection verification process for EBGP peering sessions
455 that are reachable by a single hop but are configured on a loopback interface or otherwise
456 configured with a non-directly connected IP address.
457
0efdf0fe 458.. _bgp-route-flap-dampening:
42fc5d26 459
8fcedbd2
QY
460Route Flap Dampening
461--------------------
42fc5d26 462
c1a54c05
QY
463.. clicmd:: bgp dampening (1-45) (1-20000) (1-20000) (1-255)
464
c1a54c05 465 This command enables BGP route-flap dampening and specifies dampening parameters.
42fc5d26 466
c1a54c05
QY
467 half-life
468 Half-life time for the penalty
42fc5d26 469
c1a54c05
QY
470 reuse-threshold
471 Value to start reusing a route
42fc5d26 472
c1a54c05
QY
473 suppress-threshold
474 Value to start suppressing a route
42fc5d26 475
c1a54c05
QY
476 max-suppress
477 Maximum duration to suppress a stable route
42fc5d26 478
c1a54c05
QY
479 The route-flap damping algorithm is compatible with :rfc:`2439`. The use of
480 this command is not recommended nowadays.
42fc5d26 481
319a7d06
DA
482 At the moment, route-flap dampening is not working per VRF and is working only
483 for IPv4 unicast and multicast.
484
c1a54c05 485.. seealso::
8fcedbd2 486 https://www.ripe.net/publications/docs/ripe-378
42fc5d26 487
0efdf0fe 488.. _bgp-med:
42fc5d26 489
8fcedbd2
QY
490Multi-Exit Discriminator
491------------------------
42fc5d26 492
8fcedbd2 493The BGP :abbr:`MED (Multi-Exit Discriminator)` attribute has properties which
c1a54c05
QY
494can cause subtle convergence problems in BGP. These properties and problems
495have proven to be hard to understand, at least historically, and may still not
496be widely understood. The following attempts to collect together and present
497what is known about MED, to help operators and FRR users in designing and
498configuring their networks.
42fc5d26 499
07a17e6d
QY
500The BGP :abbr:`MED` attribute is intended to allow one AS to indicate its
501preferences for its ingress points to another AS. The MED attribute will not be
502propagated on to another AS by the receiving AS - it is 'non-transitive' in the
503BGP sense.
42fc5d26 504
c1a54c05
QY
505E.g., if AS X and AS Y have 2 different BGP peering points, then AS X might set
506a MED of 100 on routes advertised at one and a MED of 200 at the other. When AS
507Y selects between otherwise equal routes to or via AS X, AS Y should prefer to
508take the path via the lower MED peering of 100 with AS X. Setting the MED
509allows an AS to influence the routing taken to it within another, neighbouring
510AS.
42fc5d26
QY
511
512In this use of MED it is not really meaningful to compare the MED value on
c1a54c05
QY
513routes where the next AS on the paths differs. E.g., if AS Y also had a route
514for some destination via AS Z in addition to the routes from AS X, and AS Z had
515also set a MED, it wouldn't make sense for AS Y to compare AS Z's MED values to
516those of AS X. The MED values have been set by different administrators, with
517different frames of reference.
42fc5d26
QY
518
519The default behaviour of BGP therefore is to not compare MED values across
dc1046f7 520routes received from different neighbouring ASes. In FRR this is done by
c1a54c05
QY
521comparing the neighbouring, left-most AS in the received AS_PATHs of the routes
522and only comparing MED if those are the same.
523
524Unfortunately, this behaviour of MED, of sometimes being compared across routes
525and sometimes not, depending on the properties of those other routes, means MED
526can cause the order of preference over all the routes to be undefined. That is,
527given routes A, B, and C, if A is preferred to B, and B is preferred to C, then
528a well-defined order should mean the preference is transitive (in the sense of
013f9762 529orders [#med-transitivity-rant]_) and that A would be preferred to C.
42fc5d26 530
c3c5a71f
QY
531However, when MED is involved this need not be the case. With MED it is
532possible that C is actually preferred over A. So A is preferred to B, B is
533preferred to C, but C is preferred to A. This can be true even where BGP
c1a54c05
QY
534defines a deterministic 'most preferred' route out of the full set of A,B,C.
535With MED, for any given set of routes there may be a deterministically
536preferred route, but there need not be any way to arrange them into any order
537of preference. With unmodified MED, the order of preference of routes literally
538becomes undefined.
42fc5d26 539
c3c5a71f 540That MED can induce non-transitive preferences over routes can cause issues.
c1a54c05
QY
541Firstly, it may be perceived to cause routing table churn locally at speakers;
542secondly, and more seriously, it may cause routing instability in iBGP
543topologies, where sets of speakers continually oscillate between different
544paths.
42fc5d26 545
c3c5a71f 546The first issue arises from how speakers often implement routing decisions.
c1a54c05
QY
547Though BGP defines a selection process that will deterministically select the
548same route as best at any given speaker, even with MED, that process requires
549evaluating all routes together. For performance and ease of implementation
550reasons, many implementations evaluate route preferences in a pair-wise fashion
551instead. Given there is no well-defined order when MED is involved, the best
552route that will be chosen becomes subject to implementation details, such as
553the order the routes are stored in. That may be (locally) non-deterministic,
554e.g.: it may be the order the routes were received in.
42fc5d26
QY
555
556This indeterminism may be considered undesirable, though it need not cause
c1a54c05
QY
557problems. It may mean additional routing churn is perceived, as sometimes more
558updates may be produced than at other times in reaction to some event .
42fc5d26
QY
559
560This first issue can be fixed with a more deterministic route selection that
c3c5a71f 561ensures routes are ordered by the neighbouring AS during selection.
9e146a81 562:clicmd:`bgp deterministic-med`. This may reduce the number of updates as routes
c1a54c05
QY
563are received, and may in some cases reduce routing churn. Though, it could
564equally deterministically produce the largest possible set of updates in
565response to the most common sequence of received updates.
42fc5d26
QY
566
567A deterministic order of evaluation tends to imply an additional overhead of
c3c5a71f 568sorting over any set of n routes to a destination. The implementation of
dc1046f7 569deterministic MED in FRR scales significantly worse than most sorting
c1a54c05
QY
570algorithms at present, with the number of paths to a given destination. That
571number is often low enough to not cause any issues, but where there are many
572paths, the deterministic comparison may quickly become increasingly expensive
573in terms of CPU.
574
575Deterministic local evaluation can *not* fix the second, more major, issue of
576MED however. Which is that the non-transitive preference of routes MED can
577cause may lead to routing instability or oscillation across multiple speakers
578in iBGP topologies. This can occur with full-mesh iBGP, but is particularly
579problematic in non-full-mesh iBGP topologies that further reduce the routing
580information known to each speaker. This has primarily been documented with iBGP
749afd7d
RF
581:ref:`route-reflection <bgp-route-reflector>` topologies. However, any
582route-hiding technologies potentially could also exacerbate oscillation with MED.
c1a54c05
QY
583
584This second issue occurs where speakers each have only a subset of routes, and
585there are cycles in the preferences between different combinations of routes -
586as the undefined order of preference of MED allows - and the routes are
587distributed in a way that causes the BGP speakers to 'chase' those cycles. This
588can occur even if all speakers use a deterministic order of evaluation in route
589selection.
590
591E.g., speaker 4 in AS A might receive a route from speaker 2 in AS X, and from
592speaker 3 in AS Y; while speaker 5 in AS A might receive that route from
593speaker 1 in AS Y. AS Y might set a MED of 200 at speaker 1, and 100 at speaker
5943. I.e, using ASN:ID:MED to label the speakers:
42fc5d26
QY
595
596::
597
c1a54c05
QY
598 .
599 /---------------\\
42fc5d26 600 X:2------|--A:4-------A:5--|-Y:1:200
c1a54c05
QY
601 Y:3:100--|-/ |
602 \\---------------/
c3c5a71f 603
42fc5d26 604
42fc5d26 605
c1a54c05
QY
606Assuming all other metrics are equal (AS_PATH, ORIGIN, 0 IGP costs), then based
607on the RFC4271 decision process speaker 4 will choose X:2 over Y:3:100, based
608on the lower ID of 2. Speaker 4 advertises X:2 to speaker 5. Speaker 5 will
609continue to prefer Y:1:200 based on the ID, and advertise this to speaker 4.
610Speaker 4 will now have the full set of routes, and the Y:1:200 it receives
611from 5 will beat X:2, but when speaker 4 compares Y:1:200 to Y:3:100 the MED
612check now becomes active as the ASes match, and now Y:3:100 is preferred.
613Speaker 4 therefore now advertises Y:3:100 to 5, which will also agrees that
614Y:3:100 is preferred to Y:1:200, and so withdraws the latter route from 4.
615Speaker 4 now has only X:2 and Y:3:100, and X:2 beats Y:3:100, and so speaker 4
616implicitly updates its route to speaker 5 to X:2. Speaker 5 sees that Y:1:200
617beats X:2 based on the ID, and advertises Y:1:200 to speaker 4, and the cycle
618continues.
42fc5d26
QY
619
620The root cause is the lack of a clear order of preference caused by how MED
621sometimes is and sometimes is not compared, leading to this cycle in the
622preferences between the routes:
623
624::
625
c1a54c05
QY
626 .
627 /---> X:2 ---beats---> Y:3:100 --\\
628 | |
629 | |
630 \\---beats--- Y:1:200 <---beats---/
c3c5a71f 631
42fc5d26 632
42fc5d26
QY
633
634This particular type of oscillation in full-mesh iBGP topologies can be
635avoided by speakers preferring already selected, external routes rather than
c1a54c05
QY
636choosing to update to new a route based on a post-MED metric (e.g. router-ID),
637at the cost of a non-deterministic selection process. FRR implements this, as
638do many other implementations, so long as it is not overridden by setting
9e146a81 639:clicmd:`bgp bestpath compare-routerid`, and see also
8fcedbd2 640:ref:`bgp-route-selection`.
42fc5d26
QY
641
642However, more complex and insidious cycles of oscillation are possible with
c3c5a71f 643iBGP route-reflection, which are not so easily avoided. These have been
c1a54c05
QY
644documented in various places. See, e.g.:
645
646- [bgp-route-osci-cond]_
647- [stable-flexible-ibgp]_
648- [ibgp-correctness]_
649
650for concrete examples and further references.
651
652There is as of this writing *no* known way to use MED for its original purpose;
653*and* reduce routing information in iBGP topologies; *and* be sure to avoid the
654instability problems of MED due the non-transitive routing preferences it can
655induce; in general on arbitrary networks.
656
657There may be iBGP topology specific ways to reduce the instability risks, even
658while using MED, e.g.: by constraining the reflection topology and by tuning
013f9762 659IGP costs between route-reflector clusters, see :rfc:`3345` for details. In the
c1a54c05
QY
660near future, the Add-Path extension to BGP may also solve MED oscillation while
661still allowing MED to be used as intended, by distributing "best-paths per
662neighbour AS". This would be at the cost of distributing at least as many
663routes to all speakers as a full-mesh iBGP would, if not more, while also
664imposing similar CPU overheads as the "Deterministic MED" feature at each
665Add-Path reflector.
42fc5d26
QY
666
667More generally, the instability problems that MED can introduce on more
668complex, non-full-mesh, iBGP topologies may be avoided either by:
669
013f9762 670- Setting :clicmd:`bgp always-compare-med`, however this allows MED to be compared
42fc5d26
QY
671 across values set by different neighbour ASes, which may not produce
672 coherent desirable results, of itself.
4b44467c 673- Effectively ignoring MED by setting MED to the same value (e.g.: 0) using
013f9762
QY
674 :clicmd:`set metric METRIC` on all received routes, in combination with
675 setting :clicmd:`bgp always-compare-med` on all speakers. This is the simplest
42fc5d26
QY
676 and most performant way to avoid MED oscillation issues, where an AS is happy
677 not to allow neighbours to inject this problematic metric.
678
42fc5d26
QY
679As MED is evaluated after the AS_PATH length check, another possible use for
680MED is for intra-AS steering of routes with equal AS_PATH length, as an
c1a54c05
QY
681extension of the last case above. As MED is evaluated before IGP metric, this
682can allow cold-potato routing to be implemented to send traffic to preferred
683hand-offs with neighbours, rather than the closest hand-off according to the
684IGP metric.
685
686Note that even if action is taken to address the MED non-transitivity issues,
687other oscillations may still be possible. E.g., on IGP cost if iBGP and IGP
688topologies are at cross-purposes with each other - see the Flavel and Roughan
689paper above for an example. Hence the guideline that the iBGP topology should
690follow the IGP topology.
691
c3c5a71f 692.. index:: bgp deterministic-med
29adcd50 693.. clicmd:: bgp deterministic-med
42fc5d26 694
c1a54c05
QY
695 Carry out route-selection in way that produces deterministic answers
696 locally, even in the face of MED and the lack of a well-defined order of
697 preference it can induce on routes. Without this option the preferred route
698 with MED may be determined largely by the order that routes were received
699 in.
42fc5d26 700
c1a54c05
QY
701 Setting this option will have a performance cost that may be noticeable when
702 there are many routes for each destination. Currently in FRR it is
703 implemented in a way that scales poorly as the number of routes per
704 destination increases.
42fc5d26 705
c1a54c05 706 The default is that this option is not set.
42fc5d26
QY
707
708Note that there are other sources of indeterminism in the route selection
709process, specifically, the preference for older and already selected routes
8fcedbd2 710from eBGP peers, :ref:`bgp-route-selection`.
42fc5d26 711
c3c5a71f 712.. index:: bgp always-compare-med
29adcd50 713.. clicmd:: bgp always-compare-med
42fc5d26 714
c1a54c05
QY
715 Always compare the MED on routes, even when they were received from
716 different neighbouring ASes. Setting this option makes the order of
717 preference of routes more defined, and should eliminate MED induced
718 oscillations.
42fc5d26 719
c1a54c05 720 If using this option, it may also be desirable to use
9e146a81 721 :clicmd:`set metric METRIC` to set MED to 0 on routes received from external
c1a54c05 722 neighbours.
42fc5d26 723
9e146a81
QY
724 This option can be used, together with :clicmd:`set metric METRIC` to use
725 MED as an intra-AS metric to steer equal-length AS_PATH routes to, e.g.,
726 desired exit points.
42fc5d26 727
efcb2ebb 728
729.. _bgp-graceful-restart:
730
731Graceful Restart
732----------------
733
734BGP graceful restart functionality as defined in
735`RFC-4724 <https://tools.ietf.org/html/rfc4724/>`_ defines the mechanisms that
736allows BGP speaker to continue to forward data packets along known routes
737while the routing protocol information is being restored.
738
739
740Usually, when BGP on a router restarts, all the BGP peers detect that the
741session went down and then came up. This "down/up" transition results in a
742"routing flap" and causes BGP route re-computation, generation of BGP routing
743updates, and unnecessary churn to the forwarding tables.
744
745The following functionality is provided by graceful restart:
746
7471. The feature allows the restarting router to indicate to the helping peer the
748 routes it can preserve in its forwarding plane during control plane restart
749 by sending graceful restart capability in the OPEN message sent during
750 session establishment.
7512. The feature allows helping router to advertise to all other peers the routes
752 received from the restarting router which are preserved in the forwarding
753 plane of the restarting router during control plane restart.
754
755
756::
757
758
759
760 (R1)-----------------------------------------------------------------(R2)
761
762 1. BGP Graceful Restart Capability exchanged between R1 & R2.
763
764 <--------------------------------------------------------------------->
765
766 2. Kill BGP Process at R1.
767
768 ---------------------------------------------------------------------->
769
770 3. R2 Detects the above BGP Restart & verifies BGP Restarting
771 Capability of R1.
772
773 4. Start BGP Process at R1.
774
775 5. Re-establish the BGP session between R1 & R2.
776
777 <--------------------------------------------------------------------->
778
779 6. R2 Send initial route updates, followed by End-Of-Rib.
780
781 <----------------------------------------------------------------------
782
783 7. R1 was waiting for End-Of-Rib from R2 & which has been received
784 now.
785
786 8. R1 now runs BGP Best-Path algorithm. Send Initial BGP Update,
787 followed by End-Of Rib
788
789 <--------------------------------------------------------------------->
790
791
792.. _bgp-end-of-rib-message:
793
794End-of-RIB (EOR) message
795^^^^^^^^^^^^^^^^^^^^^^^^
796
797An UPDATE message with no reachable Network Layer Reachability Information
798(NLRI) and empty withdrawn NLRI is specified as the End-of-RIB marker that can
799be used by a BGP speaker to indicate to its peer the completion of the initial
800routing update after the session is established.
801
802For the IPv4 unicast address family, the End-of-RIB marker is an UPDATE message
803with the minimum length. For any other address family, it is an UPDATE message
804that contains only the MP_UNREACH_NLRI attribute with no withdrawn routes for
805that <AFI, SAFI>.
806
807Although the End-of-RIB marker is specified for the purpose of BGP graceful
808restart, it is noted that the generation of such a marker upon completion of
809the initial update would be useful for routing convergence in general, and thus
810the practice is recommended.
811
812.. _bgp-route-selection-deferral-timer:
813
814Route Selection Deferral Timer
815^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
816
817Specifies the time the restarting router defers the route selection process
818after restart.
819
820Restarting Router : The usage of route election deferral timer is specified
821in https://tools.ietf.org/html/rfc4724#section-4.1
822
823Once the session between the Restarting Speaker and the Receiving Speaker is
824re-established, the Restarting Speaker will receive and process BGP messages
825from its peers.
826
827However, it MUST defer route selection for an address family until it either.
828
8291. Receives the End-of-RIB marker from all its peers (excluding the ones with
830 the "Restart State" bit set in the received capability and excluding the ones
831 that do not advertise the graceful restart capability).
8322. The Selection_Deferral_Timer timeout.
833
834.. index:: bgp graceful-restart select-defer-time (0-3600)
835.. clicmd:: bgp graceful-restart select-defer-time (0-3600)
836
837 This is command, will set deferral time to value specified.
838
839
840.. index:: bgp graceful-restart rib-stale-time (1-3600)
841.. clicmd:: bgp graceful-restart rib-stale-time (1-3600)
842
843 This is command, will set the time for which stale routes are kept in RIB.
844
845.. _bgp-per-peer-graceful-restart:
846
847BGP Per Peer Graceful Restart
848^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
849
850Ability to enable and disable graceful restart, helper and no GR at all mode
851functionality at peer level.
852
853So bgp graceful restart can be enabled at modes global BGP level or at per
854peer level. There are two FSM, one for BGP GR global mode and other for peer
855per GR.
856
857Default global mode is helper and default peer per mode is inherit from global.
858If per peer mode is configured, the GR mode of this particular peer will
859override the global mode.
860
2ba1fe69 861.. _bgp-GR-global-mode-cmd:
efcb2ebb 862
863BGP GR Global Mode Commands
864^^^^^^^^^^^^^^^^^^^^^^^^^^^
865
866.. index:: bgp graceful-restart
867.. clicmd:: bgp graceful-restart
868
869 This command will enable BGP graceful restart ifunctionality at the global
870 level.
871
872.. index:: bgp graceful-restart disable
873.. clicmd:: bgp graceful-restart disable
874
875 This command will disable both the functionality graceful restart and helper
876 mode.
877
878
879.. _bgp-GR-peer-mode-cmd:
880
881BGP GR Peer Mode Commands
882^^^^^^^^^^^^^^^^^^^^^^^^^
883
884.. index:: neighbor A.B.C.D graceful-restart
885.. clicmd:: neighbor A.B.C.D graceful-restart
886
887 This command will enable BGP graceful restart ifunctionality at the peer
888 level.
889
890.. index:: neighbor A.B.C.D graceful-restart-helper
891.. clicmd:: neighbor A.B.C.D graceful-restart-helper
892
893 This command will enable BGP graceful restart helper only functionality
894 at the peer level.
895
896.. index:: neighbor A.B.C.D graceful-restart-disable
897.. clicmd:: neighbor A.B.C.D graceful-restart-disable
898
899 This command will disable the entire BGP graceful restart functionality
900 at the peer level.
901
902
df465afe
DS
903.. _bgp-shutdown:
904
905Administrative Shutdown
906-----------------------
907
908.. index:: [no] bgp shutdown [message MSG...]
909.. clicmd:: [no] bgp shutdown [message MSG...]
910
911 Administrative shutdown of all peers of a bgp instance. Drop all BGP peers,
912 but preserve their configurations. The peers are notified in accordance with
913 `RFC 8203 <https://tools.ietf.org/html/rfc8203/>`_ by sending a
914 ``NOTIFICATION`` message with error code ``Cease`` and subcode
915 ``Administrative Shutdown`` prior to terminating connections. This global
916 shutdown is independent of the neighbor shutdown, meaning that individually
917 shut down peers will not be affected by lifting it.
918
919 An optional shutdown message `MSG` can be specified.
920
921
0efdf0fe 922.. _bgp-network:
42fc5d26 923
8fcedbd2
QY
924Networks
925--------
42fc5d26 926
c1a54c05
QY
927.. index:: network A.B.C.D/M
928.. clicmd:: network A.B.C.D/M
42fc5d26 929
9eb95b3b 930 This command adds the announcement network.
c3c5a71f 931
9eb95b3b
QY
932 .. code-block:: frr
933
934 router bgp 1
935 address-family ipv4 unicast
936 network 10.0.0.0/8
937 exit-address-family
42fc5d26 938
c1a54c05
QY
939 This configuration example says that network 10.0.0.0/8 will be
940 announced to all neighbors. Some vendors' routers don't advertise
941 routes if they aren't present in their IGP routing tables; `bgpd`
942 doesn't care about IGP routes when announcing its routes.
c3c5a71f 943
c1a54c05
QY
944.. index:: no network A.B.C.D/M
945.. clicmd:: no network A.B.C.D/M
42fc5d26 946
f990a416
DS
947.. index:: [no] bgp network import-check
948.. clicmd:: [no] bgp network import-check
949
950 This configuration modifies the behavior of the network statement.
951 If you have this configured the underlying network must exist in
952 the rib. If you have the [no] form configured then BGP will not
953 check for the networks existence in the rib. For versions 7.3 and
954 before frr defaults for datacenter were the network must exist,
955 traditional did not check for existence. For versions 7.4 and beyond
956 both traditional and datacenter the network must exist.
957
8fcedbd2 958.. _bgp-route-aggregation:
42fc5d26
QY
959
960Route Aggregation
961-----------------
962
5101fece 963.. _bgp-route-aggregation-ipv4:
964
965Route Aggregation-IPv4 Address Family
966^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
967
c1a54c05
QY
968.. index:: aggregate-address A.B.C.D/M
969.. clicmd:: aggregate-address A.B.C.D/M
c3c5a71f 970
c1a54c05 971 This command specifies an aggregate address.
42fc5d26 972
ac2201bb
DA
973.. index:: aggregate-address A.B.C.D/M route-map NAME
974.. clicmd:: aggregate-address A.B.C.D/M route-map NAME
975
976 Apply a route-map for an aggregated prefix.
977
a87d2ef7
DA
978.. index:: aggregate-address A.B.C.D/M origin <egp|igp|incomplete>
979.. clicmd:: aggregate-address A.B.C.D/M origin <egp|igp|incomplete>
980
981 Override ORIGIN for an aggregated prefix.
982
c1a54c05
QY
983.. index:: aggregate-address A.B.C.D/M as-set
984.. clicmd:: aggregate-address A.B.C.D/M as-set
42fc5d26 985
c1a54c05
QY
986 This command specifies an aggregate address. Resulting routes include
987 AS set.
42fc5d26 988
c1a54c05
QY
989.. index:: aggregate-address A.B.C.D/M summary-only
990.. clicmd:: aggregate-address A.B.C.D/M summary-only
c3c5a71f 991
d1e7591e 992 This command specifies an aggregate address. Aggregated routes will
b91bf5bd 993 not be announced.
42fc5d26 994
c1a54c05
QY
995.. index:: no aggregate-address A.B.C.D/M
996.. clicmd:: no aggregate-address A.B.C.D/M
ac2201bb 997
5101fece 998 This command removes an aggregate address.
999
1000
ac2201bb 1001 This configuration example setup the aggregate-address under
5101fece 1002 ipv4 address-family.
1003
1004 .. code-block:: frr
1005
1006 router bgp 1
1007 address-family ipv4 unicast
1008 aggregate-address 10.0.0.0/8
1009 aggregate-address 20.0.0.0/8 as-set
1010 aggregate-address 40.0.0.0/8 summary-only
ac2201bb 1011 aggregate-address 50.0.0.0/8 route-map aggr-rmap
5101fece 1012 exit-address-family
1013
1014
1015.. _bgp-route-aggregation-ipv6:
1016
1017Route Aggregation-IPv6 Address Family
1018^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1019
1020.. index:: aggregate-address X:X::X:X/M
1021.. clicmd:: aggregate-address X:X::X:X/M
1022
1023 This command specifies an aggregate address.
1024
ac2201bb
DA
1025.. index:: aggregate-address X:X::X:X/M route-map NAME
1026.. clicmd:: aggregate-address X:X::X:X/M route-map NAME
1027
1028 Apply a route-map for an aggregated prefix.
1029
a87d2ef7
DA
1030.. index:: aggregate-address X:X::X:X/M origin <egp|igp|incomplete>
1031.. clicmd:: aggregate-address X:X::X:X/M origin <egp|igp|incomplete>
1032
1033 Override ORIGIN for an aggregated prefix.
1034
5101fece 1035.. index:: aggregate-address X:X::X:X/M as-set
1036.. clicmd:: aggregate-address X:X::X:X/M as-set
1037
1038 This command specifies an aggregate address. Resulting routes include
1039 AS set.
1040
1041.. index:: aggregate-address X:X::X:X/M summary-only
1042.. clicmd:: aggregate-address X:X::X:X/M summary-only
1043
1044 This command specifies an aggregate address. Aggregated routes will
b91bf5bd 1045 not be announced.
5101fece 1046
1047.. index:: no aggregate-address X:X::X:X/M
1048.. clicmd:: no aggregate-address X:X::X:X/M
1049
1050 This command removes an aggregate address.
1051
1052
ac2201bb
DA
1053 This configuration example setup the aggregate-address under
1054 ipv6 address-family.
5101fece 1055
1056 .. code-block:: frr
1057
1058 router bgp 1
1059 address-family ipv6 unicast
1060 aggregate-address 10::0/64
ac2201bb
DA
1061 aggregate-address 20::0/64 as-set
1062 aggregate-address 40::0/64 summary-only
1063 aggregate-address 50::0/64 route-map aggr-rmap
5101fece 1064 exit-address-family
c3c5a71f 1065
8fcedbd2 1066.. _bgp-redistribute-to-bgp:
42fc5d26 1067
8fcedbd2
QY
1068Redistribution
1069--------------
42fc5d26 1070
c3c5a71f 1071.. index:: redistribute kernel
29adcd50 1072.. clicmd:: redistribute kernel
42fc5d26 1073
c1a54c05 1074 Redistribute kernel route to BGP process.
42fc5d26 1075
c3c5a71f 1076.. index:: redistribute static
29adcd50 1077.. clicmd:: redistribute static
42fc5d26 1078
c1a54c05 1079 Redistribute static route to BGP process.
42fc5d26 1080
c3c5a71f 1081.. index:: redistribute connected
29adcd50 1082.. clicmd:: redistribute connected
42fc5d26 1083
c1a54c05 1084 Redistribute connected route to BGP process.
42fc5d26 1085
c3c5a71f 1086.. index:: redistribute rip
29adcd50 1087.. clicmd:: redistribute rip
42fc5d26 1088
c1a54c05 1089 Redistribute RIP route to BGP process.
42fc5d26 1090
c3c5a71f 1091.. index:: redistribute ospf
29adcd50 1092.. clicmd:: redistribute ospf
42fc5d26 1093
c1a54c05 1094 Redistribute OSPF route to BGP process.
42fc5d26 1095
99ad55e0
DA
1096.. index:: redistribute vnc
1097.. clicmd:: redistribute vnc
42fc5d26 1098
c1a54c05 1099 Redistribute VNC routes to BGP process.
42fc5d26 1100
245d354f
DA
1101.. index:: redistribute vnc-direct
1102.. clicmd:: redistribute vnc-direct
1103
1104 Redistribute VNC direct (not via zebra) routes to BGP process.
1105
d70583f7
D
1106.. index:: bgp update-delay MAX-DELAY
1107.. clicmd:: bgp update-delay MAX-DELAY
1108
1109.. index:: bgp update-delay MAX-DELAY ESTABLISH-WAIT
1110.. clicmd:: bgp update-delay MAX-DELAY ESTABLISH-WAIT
1111
1112 This feature is used to enable read-only mode on BGP process restart or when
1113 a BGP process is cleared using 'clear ip bgp \*'. Note that this command is
1114 configured at the global level and applies to all bgp instances/vrfs. It
1115 cannot be used at the same time as the "update-delay" command described below,
1116 which is entered in each bgp instance/vrf desired to delay update installation
1117 and advertisements. The global and per-vrf approaches to defining update-delay
1118 are mutually exclusive.
1119
1120 When applicable, read-only mode would begin as soon as the first peer reaches
1121 Established status and a timer for max-delay seconds is started. During this
1122 mode BGP doesn't run any best-path or generate any updates to its peers. This
1123 mode continues until:
1124
1125 1. All the configured peers, except the shutdown peers, have sent explicit EOR
1126 (End-Of-RIB) or an implicit-EOR. The first keep-alive after BGP has reached
1127 Established is considered an implicit-EOR.
1128 If the establish-wait optional value is given, then BGP will wait for
1129 peers to reach established from the beginning of the update-delay till the
1130 establish-wait period is over, i.e. the minimum set of established peers for
1131 which EOR is expected would be peers established during the establish-wait
1132 window, not necessarily all the configured neighbors.
1133 2. max-delay period is over.
1134
1135 On hitting any of the above two conditions, BGP resumes the decision process
1136 and generates updates to its peers.
1137
1138 Default max-delay is 0, i.e. the feature is off by default.
1139
1140
c1a54c05
QY
1141.. index:: update-delay MAX-DELAY
1142.. clicmd:: update-delay MAX-DELAY
c3c5a71f 1143
c1a54c05
QY
1144.. index:: update-delay MAX-DELAY ESTABLISH-WAIT
1145.. clicmd:: update-delay MAX-DELAY ESTABLISH-WAIT
c3c5a71f 1146
c1a54c05 1147 This feature is used to enable read-only mode on BGP process restart or when
d70583f7
D
1148 a BGP process is cleared using 'clear ip bgp \*'. Note that this command is
1149 configured under the specific bgp instance/vrf that the feaure is enabled for.
1150 It cannot be used at the same time as the global "bgp update-delay" described
1151 above, which is entered at the global level and applies to all bgp instances.
1152 The global and per-vrf approaches to defining update-delay are mutually
1153 exclusive.
1154
1155 When applicable, read-only mode would begin as soon as the first peer reaches
1156 Established status and a timer for max-delay seconds is started. During this
1157 mode BGP doesn't run any best-path or generate any updates to its peers. This
1158 mode continues until:
42fc5d26 1159
c1a54c05
QY
1160 1. All the configured peers, except the shutdown peers, have sent explicit EOR
1161 (End-Of-RIB) or an implicit-EOR. The first keep-alive after BGP has reached
1162 Established is considered an implicit-EOR.
1163 If the establish-wait optional value is given, then BGP will wait for
d1e7591e 1164 peers to reach established from the beginning of the update-delay till the
c1a54c05
QY
1165 establish-wait period is over, i.e. the minimum set of established peers for
1166 which EOR is expected would be peers established during the establish-wait
1167 window, not necessarily all the configured neighbors.
1168 2. max-delay period is over.
42fc5d26 1169
c1a54c05
QY
1170 On hitting any of the above two conditions, BGP resumes the decision process
1171 and generates updates to its peers.
42fc5d26 1172
c1a54c05 1173 Default max-delay is 0, i.e. the feature is off by default.
c3c5a71f 1174
c1a54c05
QY
1175.. index:: table-map ROUTE-MAP-NAME
1176.. clicmd:: table-map ROUTE-MAP-NAME
42fc5d26 1177
c1a54c05
QY
1178 This feature is used to apply a route-map on route updates from BGP to
1179 Zebra. All the applicable match operations are allowed, such as match on
1180 prefix, next-hop, communities, etc. Set operations for this attach-point are
1181 limited to metric and next-hop only. Any operation of this feature does not
1182 affect BGPs internal RIB.
42fc5d26 1183
c1a54c05
QY
1184 Supported for ipv4 and ipv6 address families. It works on multi-paths as
1185 well, however, metric setting is based on the best-path only.
42fc5d26 1186
8fcedbd2 1187.. _bgp-peers:
42fc5d26 1188
8fcedbd2
QY
1189Peers
1190-----
42fc5d26 1191
8fcedbd2 1192.. _bgp-defining-peers:
42fc5d26 1193
8fcedbd2
QY
1194Defining Peers
1195^^^^^^^^^^^^^^
42fc5d26 1196
c1a54c05
QY
1197.. index:: neighbor PEER remote-as ASN
1198.. clicmd:: neighbor PEER remote-as ASN
42fc5d26 1199
c1a54c05 1200 Creates a new neighbor whose remote-as is ASN. PEER can be an IPv4 address
9eb95b3b 1201 or an IPv6 address or an interface to use for the connection.
76bd1499 1202
9eb95b3b
QY
1203 .. code-block:: frr
1204
1205 router bgp 1
1206 neighbor 10.0.0.1 remote-as 2
76bd1499 1207
c1a54c05 1208 In this case my router, in AS-1, is trying to peer with AS-2 at 10.0.0.1.
76bd1499 1209
c1a54c05 1210 This command must be the first command used when configuring a neighbor. If
9eb95b3b 1211 the remote-as is not specified, *bgpd* will complain like this: ::
76bd1499 1212
c1a54c05 1213 can't find neighbor 10.0.0.1
c3c5a71f 1214
5413757f
DS
1215.. index:: neighbor PEER remote-as internal
1216.. clicmd:: neighbor PEER remote-as internal
1217
1218 Create a peer as you would when you specify an ASN, except that if the
1219 peers ASN is different than mine as specified under the :clicmd:`router bgp ASN`
1220 command the connection will be denied.
1221
1222.. index:: neighbor PEER remote-as external
1223.. clicmd:: neighbor PEER remote-as external
1224
1225 Create a peer as you would when you specify an ASN, except that if the
1226 peers ASN is the same as mine as specified under the :clicmd:`router bgp ASN`
1227 command the connection will be denied.
42fc5d26 1228
d7b9898c
DA
1229.. index:: [no] bgp listen range <A.B.C.D/M|X:X::X:X/M> peer-group PGNAME
1230.. clicmd:: [no] bgp listen range <A.B.C.D/M|X:X::X:X/M> peer-group PGNAME
d79e0e08
QY
1231
1232 Accept connections from any peers in the specified prefix. Configuration
1233 from the specified peer-group is used to configure these peers.
1234
1235.. note::
1236
1237 When using BGP listen ranges, if the associated peer group has TCP MD5
1238 authentication configured, your kernel must support this on prefixes. On
1239 Linux, this support was added in kernel version 4.14. If your kernel does
1240 not support this feature you will get a warning in the log file, and the
1241 listen range will only accept connections from peers without MD5 configured.
1242
1243 Additionally, we have observed that when using this option at scale (several
1244 hundred peers) the kernel may hit its option memory limit. In this situation
1245 you will see error messages like:
1246
1247 ``bgpd: sockopt_tcp_signature: setsockopt(23): Cannot allocate memory``
1248
1249 In this case you need to increase the value of the sysctl
1250 ``net.core.optmem_max`` to allow the kernel to allocate the necessary option
1251 memory.
1252
ced26d3d
DS
1253.. index:: [no] coalesce-time (0-4294967295)
1254.. clicmd:: [no] coalesce-time (0-4294967295)
1255
1256 The time in milliseconds that BGP will delay before deciding what peers
1257 can be put into an update-group together in order to generate a single
1258 update for them. The default time is 1000.
91052810 1259
8fcedbd2 1260.. _bgp-configuring-peers:
42fc5d26 1261
8fcedbd2
QY
1262Configuring Peers
1263^^^^^^^^^^^^^^^^^
42fc5d26 1264
91052810
DA
1265.. index:: [no] neighbor PEER shutdown [message MSG...] [rtt (1-65535) [count (1-255)]]
1266.. clicmd:: [no] neighbor PEER shutdown [message MSG...] [rtt (1-65535) [count (1-255)]]
c3c5a71f 1267
c1a54c05
QY
1268 Shutdown the peer. We can delete the neighbor's configuration by
1269 ``no neighbor PEER remote-as ASN`` but all configuration of the neighbor
1270 will be deleted. When you want to preserve the configuration, but want to
1271 drop the BGP peer, use this syntax.
c3c5a71f 1272
70335e0a
RZ
1273 Optionally you can specify a shutdown message `MSG`.
1274
91052810
DA
1275 Also, you can specify optionally _rtt_ in milliseconds to automatically
1276 shutdown the peer if round-trip-time becomes higher than defined.
1277
1278 Additional _count_ parameter is the number of keepalive messages to count
1279 before shutdown the peer if round-trip-time becomes higher than defined.
1280
c0868e8b
QY
1281.. index:: [no] neighbor PEER disable-connected-check
1282.. clicmd:: [no] neighbor PEER disable-connected-check
c3c5a71f 1283
c0868e8b
QY
1284 Allow peerings between directly connected eBGP peers using loopback
1285 addresses.
c3c5a71f 1286
c0868e8b
QY
1287.. index:: [no] neighbor PEER ebgp-multihop
1288.. clicmd:: [no] neighbor PEER ebgp-multihop
42fc5d26 1289
164786a9
QY
1290 Specifying ``ebgp-multihop`` allows sessions with eBGP neighbors to
1291 establish when they are multiple hops away. When the neighbor is not
1292 directly connected and this knob is not enabled, the session will not
1293 establish.
1294
c0868e8b
QY
1295.. index:: [no] neighbor PEER description ...
1296.. clicmd:: [no] neighbor PEER description ...
42fc5d26 1297
c1a54c05 1298 Set description of the peer.
42fc5d26 1299
c0868e8b
QY
1300.. index:: [no] neighbor PEER version VERSION
1301.. clicmd:: [no] neighbor PEER version VERSION
42fc5d26 1302
4da7fda3
QY
1303 Set up the neighbor's BGP version. `version` can be `4`, `4+` or `4-`. BGP
1304 version `4` is the default value used for BGP peering. BGP version `4+`
1305 means that the neighbor supports Multiprotocol Extensions for BGP-4. BGP
1306 version `4-` is similar but the neighbor speaks the old Internet-Draft
1307 revision 00's Multiprotocol Extensions for BGP-4. Some routing software is
1308 still using this version.
42fc5d26 1309
c0868e8b
QY
1310.. index:: [no] neighbor PEER interface IFNAME
1311.. clicmd:: [no] neighbor PEER interface IFNAME
42fc5d26 1312
c1a54c05
QY
1313 When you connect to a BGP peer over an IPv6 link-local address, you have to
1314 specify the IFNAME of the interface used for the connection. To specify
1315 IPv4 session addresses, see the ``neighbor PEER update-source`` command
1316 below.
42fc5d26 1317
c1a54c05
QY
1318 This command is deprecated and may be removed in a future release. Its use
1319 should be avoided.
42fc5d26 1320
c0868e8b
QY
1321.. index:: [no] neighbor PEER next-hop-self [all]
1322.. clicmd:: [no] neighbor PEER next-hop-self [all]
42fc5d26 1323
c1a54c05
QY
1324 This command specifies an announced route's nexthop as being equivalent to
1325 the address of the bgp router if it is learned via eBGP. If the optional
d1e7591e 1326 keyword `all` is specified the modification is done also for routes learned
c1a54c05 1327 via iBGP.
42fc5d26 1328
8b0d734b 1329.. index:: neighbor PEER attribute-unchanged [{as-path|next-hop|med}]
1330.. clicmd:: neighbor PEER attribute-unchanged [{as-path|next-hop|med}]
1331
1332 This command specifies attributes to be left unchanged for advertisements
1333 sent to a peer. Use this to leave the next-hop unchanged in ipv6
1334 configurations, as the route-map directive to leave the next-hop unchanged
1335 is only available for ipv4.
1336
c0868e8b
QY
1337.. index:: [no] neighbor PEER update-source <IFNAME|ADDRESS>
1338.. clicmd:: [no] neighbor PEER update-source <IFNAME|ADDRESS>
42fc5d26 1339
c1a54c05
QY
1340 Specify the IPv4 source address to use for the :abbr:`BGP` session to this
1341 neighbour, may be specified as either an IPv4 address directly or as an
1342 interface name (in which case the *zebra* daemon MUST be running in order
9eb95b3b
QY
1343 for *bgpd* to be able to retrieve interface state).
1344
1345 .. code-block:: frr
42fc5d26 1346
c1a54c05
QY
1347 router bgp 64555
1348 neighbor foo update-source 192.168.0.1
1349 neighbor bar update-source lo0
42fc5d26 1350
42fc5d26 1351
c0868e8b
QY
1352.. index:: [no] neighbor PEER default-originate
1353.. clicmd:: [no] neighbor PEER default-originate
42fc5d26 1354
4da7fda3
QY
1355 *bgpd*'s default is to not announce the default route (0.0.0.0/0) even if it
1356 is in routing table. When you want to announce default routes to the peer,
1357 use this command.
42fc5d26 1358
c1a54c05
QY
1359.. index:: neighbor PEER port PORT
1360.. clicmd:: neighbor PEER port PORT
42fc5d26 1361
e7c105a7
DS
1362.. index:: [no] neighbor PEER password PASSWORD
1363.. clicmd:: [no] neighbor PEER password PASSWORD
1364
1365 Set a MD5 password to be used with the tcp socket that is being used
1366 to connect to the remote peer. Please note if you are using this
1367 command with a large number of peers on linux you should consider
1368 modifying the `net.core.optmem_max` sysctl to a larger value to
1369 avoid out of memory errors from the linux kernel.
1370
c1a54c05
QY
1371.. index:: neighbor PEER send-community
1372.. clicmd:: neighbor PEER send-community
42fc5d26 1373
c0868e8b
QY
1374.. index:: [no] neighbor PEER weight WEIGHT
1375.. clicmd:: [no] neighbor PEER weight WEIGHT
42fc5d26 1376
c1a54c05 1377 This command specifies a default `weight` value for the neighbor's routes.
42fc5d26 1378
c1bcac1d
DA
1379.. index:: [no] neighbor PEER maximum-prefix NUMBER [force]
1380.. clicmd:: [no] neighbor PEER maximum-prefix NUMBER [force]
42fc5d26 1381
886026c8
QY
1382 Sets a maximum number of prefixes we can receive from a given peer. If this
1383 number is exceeded, the BGP session will be destroyed.
1384
1385 In practice, it is generally preferable to use a prefix-list to limit what
1386 prefixes are received from the peer instead of using this knob. Tearing down
1387 the BGP session when a limit is exceeded is far more destructive than merely
1388 rejecting undesired prefixes. The prefix-list method is also much more
1389 granular and offers much smarter matching criterion than number of received
1390 prefixes, making it more suited to implementing policy.
1391
c1bcac1d
DA
1392 If _force_ is set, then ALL prefixes are counted for maximum instead of
1393 accepted only. This is useful for cases where an inbound filter is applied,
1394 but you want maximum-prefix to act on ALL (including filtered) prefixes. This
1395 option requires `soft-reconfiguration inbound` to be enabled for the peer.
1396
edf98aa3
DA
1397.. index:: [no] neighbor PEER maximum-prefix-out NUMBER
1398.. clicmd:: [no] neighbor PEER maximum-prefix-out NUMBER
1399
1400 Sets a maximum number of prefixes we can send to a given peer.
1401
f5399474
DA
1402 Since sent prefix count is managed by update-groups, this option
1403 creates a separate update-group for outgoing updates.
1404
886026c8
QY
1405.. index:: [no] neighbor PEER local-as AS-NUMBER [no-prepend] [replace-as]
1406.. clicmd:: [no] neighbor PEER local-as AS-NUMBER [no-prepend] [replace-as]
42fc5d26 1407
c1a54c05
QY
1408 Specify an alternate AS for this BGP process when interacting with the
1409 specified peer. With no modifiers, the specified local-as is prepended to
1410 the received AS_PATH when receiving routing updates from the peer, and
1411 prepended to the outgoing AS_PATH (after the process local AS) when
1412 transmitting local routes to the peer.
42fc5d26 1413
c1a54c05
QY
1414 If the no-prepend attribute is specified, then the supplied local-as is not
1415 prepended to the received AS_PATH.
c3c5a71f 1416
c1a54c05
QY
1417 If the replace-as attribute is specified, then only the supplied local-as is
1418 prepended to the AS_PATH when transmitting local-route updates to this peer.
c3c5a71f 1419
c1a54c05 1420 Note that replace-as can only be specified if no-prepend is.
c3c5a71f 1421
c1a54c05 1422 This command is only allowed for eBGP peers.
c3c5a71f 1423
252c5590
RZ
1424.. index:: [no] neighbor <A.B.C.D|X:X::X:X|WORD> as-override
1425.. clicmd:: [no] neighbor <A.B.C.D|X:X::X:X|WORD> as-override
1426
1427 Override AS number of the originating router with the local AS number.
1428
1429 Usually this configuration is used in PEs (Provider Edge) to replace
1430 the incoming customer AS number so the connected CE (Customer Edge)
1431 can use the same AS number as the other customer sites. This allows
1432 customers of the provider network to use the same AS number across
1433 their sites.
1434
1435 This command is only allowed for eBGP peers.
1436
ae1e0f32
RZ
1437.. index:: [no] neighbor <A.B.C.D|X:X::X:X|WORD> allowas-in [<(1-10)|origin>]
1438.. clicmd:: [no] neighbor <A.B.C.D|X:X::X:X|WORD> allowas-in [<(1-10)|origin>]
1439
1440 Accept incoming routes with AS path containing AS number with the same value
1441 as the current system AS.
1442
1443 This is used when you want to use the same AS number in your sites, but you
1444 can't connect them directly. This is an alternative to
1445 `neighbor WORD as-override`.
1446
1447 The parameter `(1-10)` configures the amount of accepted occurences of the
1448 system AS number in AS path.
1449
1450 The parameter `origin` configures BGP to only accept routes originated with
1451 the same AS number as the system.
1452
1453 This command is only allowed for eBGP peers.
1454
e03bf6fc
RZ
1455.. index:: [no] neighbor <A.B.C.D|X:X::X:X|WORD> addpath-tx-all-paths
1456.. clicmd:: [no] neighbor <A.B.C.D|X:X::X:X|WORD> addpath-tx-all-paths
1457
1458 Configure BGP to send all known paths to neighbor in order to preserve multi
1459 path capabilities inside a network.
1460
1461.. index:: [no] neighbor <A.B.C.D|X:X::X:X|WORD> addpath-tx-bestpath-per-AS
1462.. clicmd:: [no] neighbor <A.B.C.D|X:X::X:X|WORD> addpath-tx-bestpath-per-AS
1463
1464 Configure BGP to send best known paths to neighbor in order to preserve multi
1465 path capabilities inside a network.
1466
c0868e8b
QY
1467.. index:: [no] neighbor PEER ttl-security hops NUMBER
1468.. clicmd:: [no] neighbor PEER ttl-security hops NUMBER
c3c5a71f 1469
c1a54c05
QY
1470 This command enforces Generalized TTL Security Mechanism (GTSM), as
1471 specified in RFC 5082. With this command, only neighbors that are the
1472 specified number of hops away will be allowed to become neighbors. This
d1e7591e 1473 command is mutually exclusive with *ebgp-multihop*.
42fc5d26 1474
19f2b5e8
DS
1475.. index:: [no] neighbor PEER capability extended-nexthop
1476.. clicmd:: [no] neighbor PEER capability extended-nexthop
1477
1478 Allow bgp to negotiate the extended-nexthop capability with it's peer.
1479 If you are peering over a v6 LL address then this capability is turned
1480 on automatically. If you are peering over a v6 Global Address then
1481 turning on this command will allow BGP to install v4 routes with
1482 v6 nexthops if you do not have v4 configured on interfaces.
1483
eb938189
DS
1484.. index:: [no] bgp fast-external-failover
1485.. clicmd:: [no] bgp fast-external-failover
1486
1487 This command causes bgp to not take down ebgp peers immediately
1488 when a link flaps. `bgp fast-external-failover` is the default
1489 and will not be displayed as part of a `show run`. The no form
1490 of the command turns off this ability.
1491
bc132029
DS
1492.. index:: [no] bgp default ipv4-unicast
1493.. clicmd:: [no] bgp default ipv4-unicast
1494
1495 This command allows the user to specify that v4 peering is turned
1496 on by default or not. This command defaults to on and is not displayed.
1497 The `no bgp default ipv4-unicast` form of the command is displayed.
1498
7d981695
DA
1499.. index:: [no] bgp default show-hostname
1500.. clicmd:: [no] bgp default show-hostname
1501
1502 This command shows the hostname of the peer in certain BGP commands
1503 outputs. It's easier to troubleshoot if you have a number of BGP peers.
1504
1505.. index:: [no] bgp default show-nexthop-hostname
1506.. clicmd:: [no] bgp default show-nexthop-hostname
1507
1508 This command shows the hostname of the next-hop in certain BGP commands
1509 outputs. It's easier to troubleshoot if you have a number of BGP peers
1510 and a number of routes to check.
1511
e10dda57
DS
1512.. index:: [no] neighbor PEER advertisement-interval (0-600)
1513.. clicmd:: [no] neighbor PEER advertisement-interval (0-600)
1514
1515 Setup the minimum route advertisement interval(mrai) for the
1516 peer in question. This number is between 0 and 600 seconds,
1517 with the default advertisement interval being 0.
1518
4e853678
DS
1519Displaying Information about Peers
1520^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1521
1522.. index:: show bgp <afi> <safi> neighbors WORD bestpath-routes [json] [wide]
1523.. clicmd:: show bgp <afi> <safi> neighbors WORD bestpath-routes [json] [wide]
1524
1525 For the given neighbor, WORD, that is specified list the routes selected
1526 by BGP as having the best path.
1527
8fcedbd2 1528.. _bgp-peer-filtering:
42fc5d26 1529
8fcedbd2
QY
1530Peer Filtering
1531^^^^^^^^^^^^^^
42fc5d26 1532
c1a54c05
QY
1533.. index:: neighbor PEER distribute-list NAME [in|out]
1534.. clicmd:: neighbor PEER distribute-list NAME [in|out]
42fc5d26 1535
c1a54c05
QY
1536 This command specifies a distribute-list for the peer. `direct` is
1537 ``in`` or ``out``.
42fc5d26 1538
c3c5a71f 1539.. index:: neighbor PEER prefix-list NAME [in|out]
29adcd50 1540.. clicmd:: neighbor PEER prefix-list NAME [in|out]
42fc5d26 1541
c1a54c05 1542.. index:: neighbor PEER filter-list NAME [in|out]
29adcd50 1543.. clicmd:: neighbor PEER filter-list NAME [in|out]
42fc5d26 1544
c1a54c05
QY
1545.. index:: neighbor PEER route-map NAME [in|out]
1546.. clicmd:: neighbor PEER route-map NAME [in|out]
42fc5d26 1547
c1a54c05 1548 Apply a route-map on the neighbor. `direct` must be `in` or `out`.
42fc5d26 1549
c3c5a71f 1550.. index:: bgp route-reflector allow-outbound-policy
29adcd50 1551.. clicmd:: bgp route-reflector allow-outbound-policy
42fc5d26 1552
c1a54c05
QY
1553 By default, attribute modification via route-map policy out is not reflected
1554 on reflected routes. This option allows the modifications to be reflected as
1555 well. Once enabled, it affects all reflected routes.
42fc5d26 1556
583a9fd4
RZ
1557.. index:: [no] neighbor PEER sender-as-path-loop-detection
1558.. clicmd:: [no] neighbor PEER sender-as-path-loop-detection
1559
1560 Enable the detection of sender side AS path loops and filter the
1561 bad routes before they are sent.
1562
1563 This setting is disabled by default.
1564
0efdf0fe 1565.. _bgp-peer-group:
42fc5d26 1566
8fcedbd2
QY
1567Peer Groups
1568^^^^^^^^^^^
42fc5d26 1569
199ad5c4
LB
1570Peer groups are used to help improve scaling by generating the same
1571update information to all members of a peer group. Note that this means
1572that the routes generated by a member of a peer group will be sent back
1573to that originating peer with the originator identifier attribute set to
1574indicated the originating peer. All peers not associated with a
1575specific peer group are treated as belonging to a default peer group,
1576and will share updates.
1577
c1a54c05
QY
1578.. index:: neighbor WORD peer-group
1579.. clicmd:: neighbor WORD peer-group
42fc5d26 1580
c1a54c05 1581 This command defines a new peer group.
42fc5d26 1582
d7b9898c
DA
1583.. index:: neighbor PEER peer-group PGNAME
1584.. clicmd:: neighbor PEER peer-group PGNAME
c3c5a71f 1585
c1a54c05 1586 This command bind specific peer to peer group WORD.
42fc5d26 1587
199ad5c4
LB
1588.. index:: neighbor PEER solo
1589.. clicmd:: neighbor PEER solo
1590
1591 This command is used to indicate that routes advertised by the peer
1592 should not be reflected back to the peer. This command only is only
1593 meaningful when there is a single peer defined in the peer-group.
1594
8fcedbd2
QY
1595Capability Negotiation
1596^^^^^^^^^^^^^^^^^^^^^^
42fc5d26 1597
8fcedbd2
QY
1598.. index:: neighbor PEER strict-capability-match
1599.. clicmd:: neighbor PEER strict-capability-match
42fc5d26 1600
8fcedbd2
QY
1601.. index:: no neighbor PEER strict-capability-match
1602.. clicmd:: no neighbor PEER strict-capability-match
c1a54c05 1603
8fcedbd2
QY
1604 Strictly compares remote capabilities and local capabilities. If
1605 capabilities are different, send Unsupported Capability error then reset
1606 connection.
42fc5d26 1607
8fcedbd2
QY
1608 You may want to disable sending Capability Negotiation OPEN message optional
1609 parameter to the peer when remote peer does not implement Capability
1610 Negotiation. Please use *dont-capability-negotiate* command to disable the
1611 feature.
42fc5d26 1612
7cdc9530
DS
1613.. index:: [no] neighbor PEER dont-capability-negotiate
1614.. clicmd:: [no] neighbor PEER dont-capability-negotiate
42fc5d26 1615
8fcedbd2
QY
1616 Suppress sending Capability Negotiation as OPEN message optional parameter
1617 to the peer. This command only affects the peer is configured other than
1618 IPv4 unicast configuration.
42fc5d26 1619
8fcedbd2
QY
1620 When remote peer does not have capability negotiation feature, remote peer
1621 will not send any capabilities at all. In that case, bgp configures the peer
1622 with configured capabilities.
42fc5d26 1623
8fcedbd2
QY
1624 You may prefer locally configured capabilities more than the negotiated
1625 capabilities even though remote peer sends capabilities. If the peer is
1626 configured by *override-capability*, *bgpd* ignores received capabilities
1627 then override negotiated capabilities with configured values.
42fc5d26 1628
7cdc9530
DS
1629 Additionally the operator should be reminded that this feature fundamentally
1630 disables the ability to use widely deployed BGP features. BGP unnumbered,
1631 hostname support, AS4, Addpath, Route Refresh, ORF, Dynamic Capabilities,
1632 and graceful restart.
1633
8fcedbd2
QY
1634.. index:: neighbor PEER override-capability
1635.. clicmd:: neighbor PEER override-capability
42fc5d26 1636
8fcedbd2
QY
1637.. index:: no neighbor PEER override-capability
1638.. clicmd:: no neighbor PEER override-capability
c1a54c05 1639
8fcedbd2
QY
1640 Override the result of Capability Negotiation with local configuration.
1641 Ignore remote peer's capability value.
42fc5d26 1642
8fcedbd2 1643.. _bgp-as-path-access-lists:
42fc5d26 1644
8fcedbd2
QY
1645AS Path Access Lists
1646--------------------
42fc5d26
QY
1647
1648AS path access list is user defined AS path.
1649
a64e0ee5
DA
1650.. index:: bgp as-path access-list WORD permit|deny LINE
1651.. clicmd:: bgp as-path access-list WORD permit|deny LINE
42fc5d26 1652
c1a54c05 1653 This command defines a new AS path access list.
42fc5d26 1654
a64e0ee5
DA
1655.. index:: no bgp as-path access-list WORD
1656.. clicmd:: no bgp as-path access-list WORD
42fc5d26 1657
a64e0ee5
DA
1658.. index:: no bgp as-path access-list WORD permit|deny LINE
1659.. clicmd:: no bgp as-path access-list WORD permit|deny LINE
42fc5d26 1660
125cec1a
DA
1661.. _bgp-bogon-filter-example:
1662
1663Bogon ASN filter policy configuration example
1664^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1665
1666.. code-block:: frr
1667
1668 bgp as-path access-list 99 permit _0_
1669 bgp as-path access-list 99 permit _23456_
1670 bgp as-path access-list 99 permit _1310[0-6][0-9]_|_13107[0-1]_
1671
8fcedbd2 1672.. _bgp-using-as-path-in-route-map:
42fc5d26
QY
1673
1674Using AS Path in Route Map
1675--------------------------
1676
eb1f303d
DS
1677.. index:: [no] match as-path WORD
1678.. clicmd:: [no] match as-path WORD
42fc5d26 1679
eb1f303d
DS
1680 For a given as-path, WORD, match it on the BGP as-path given for the prefix
1681 and if it matches do normal route-map actions. The no form of the command
1682 removes this match from the route-map.
42fc5d26 1683
eb1f303d
DS
1684.. index:: [no] set as-path prepend AS-PATH
1685.. clicmd:: [no] set as-path prepend AS-PATH
42fc5d26 1686
eb1f303d
DS
1687 Prepend the given string of AS numbers to the AS_PATH of the BGP path's NLRI.
1688 The no form of this command removes this set operation from the route-map.
42fc5d26 1689
eb1f303d
DS
1690.. index:: [no] set as-path prepend last-as NUM
1691.. clicmd:: [no] set as-path prepend last-as NUM
c1a54c05
QY
1692
1693 Prepend the existing last AS number (the leftmost ASN) to the AS_PATH.
eb1f303d 1694 The no form of this command removes this set operation from the route-map.
42fc5d26 1695
0efdf0fe 1696.. _bgp-communities-attribute:
42fc5d26 1697
8fcedbd2
QY
1698Communities Attribute
1699---------------------
42fc5d26 1700
8fcedbd2 1701The BGP communities attribute is widely used for implementing policy routing.
c1a54c05
QY
1702Network operators can manipulate BGP communities attribute based on their
1703network policy. BGP communities attribute is defined in :rfc:`1997` and
1704:rfc:`1998`. It is an optional transitive attribute, therefore local policy can
1705travel through different autonomous system.
1706
8fcedbd2
QY
1707The communities attribute is a set of communities values. Each community value
1708is 4 octet long. The following format is used to define the community value.
c1a54c05 1709
8fcedbd2 1710``AS:VAL``
c1a54c05
QY
1711 This format represents 4 octet communities value. ``AS`` is high order 2
1712 octet in digit format. ``VAL`` is low order 2 octet in digit format. This
1713 format is useful to define AS oriented policy value. For example,
1714 ``7675:80`` can be used when AS 7675 wants to pass local policy value 80 to
1715 neighboring peer.
1716
8fcedbd2
QY
1717``internet``
1718 ``internet`` represents well-known communities value 0.
c1a54c05 1719
cae770d3
C
1720``graceful-shutdown``
1721 ``graceful-shutdown`` represents well-known communities value
1722 ``GRACEFUL_SHUTDOWN`` ``0xFFFF0000`` ``65535:0``. :rfc:`8326` implements
1723 the purpose Graceful BGP Session Shutdown to reduce the amount of
56f0bea7 1724 lost traffic when taking BGP sessions down for maintenance. The use
cae770d3
C
1725 of the community needs to be supported from your peers side to
1726 actually have any effect.
1727
1728``accept-own``
1729 ``accept-own`` represents well-known communities value ``ACCEPT_OWN``
1730 ``0xFFFF0001`` ``65535:1``. :rfc:`7611` implements a way to signal
1731 to a router to accept routes with a local nexthop address. This
1732 can be the case when doing policing and having traffic having a
1733 nexthop located in another VRF but still local interface to the
1734 router. It is recommended to read the RFC for full details.
1735
1736``route-filter-translated-v4``
1737 ``route-filter-translated-v4`` represents well-known communities value
1738 ``ROUTE_FILTER_TRANSLATED_v4`` ``0xFFFF0002`` ``65535:2``.
1739
1740``route-filter-v4``
1741 ``route-filter-v4`` represents well-known communities value
1742 ``ROUTE_FILTER_v4`` ``0xFFFF0003`` ``65535:3``.
1743
1744``route-filter-translated-v6``
1745 ``route-filter-translated-v6`` represents well-known communities value
1746 ``ROUTE_FILTER_TRANSLATED_v6`` ``0xFFFF0004`` ``65535:4``.
1747
1748``route-filter-v6``
1749 ``route-filter-v6`` represents well-known communities value
1750 ``ROUTE_FILTER_v6`` ``0xFFFF0005`` ``65535:5``.
1751
1752``llgr-stale``
1753 ``llgr-stale`` represents well-known communities value ``LLGR_STALE``
1754 ``0xFFFF0006`` ``65535:6``.
56f0bea7 1755 Assigned and intended only for use with routers supporting the
cae770d3 1756 Long-lived Graceful Restart Capability as described in
49606d58 1757 [Draft-IETF-uttaro-idr-bgp-persistence]_.
56f0bea7 1758 Routers receiving routes with this community may (depending on
cae770d3
C
1759 implementation) choose allow to reject or modify routes on the
1760 presence or absence of this community.
1761
1762``no-llgr``
1763 ``no-llgr`` represents well-known communities value ``NO_LLGR``
1764 ``0xFFFF0007`` ``65535:7``.
56f0bea7 1765 Assigned and intended only for use with routers supporting the
cae770d3 1766 Long-lived Graceful Restart Capability as described in
49606d58 1767 [Draft-IETF-uttaro-idr-bgp-persistence]_.
56f0bea7 1768 Routers receiving routes with this community may (depending on
cae770d3
C
1769 implementation) choose allow to reject or modify routes on the
1770 presence or absence of this community.
1771
1772``accept-own-nexthop``
1773 ``accept-own-nexthop`` represents well-known communities value
1774 ``accept-own-nexthop`` ``0xFFFF0008`` ``65535:8``.
49606d58 1775 [Draft-IETF-agrewal-idr-accept-own-nexthop]_ describes
cae770d3
C
1776 how to tag and label VPN routes to be able to send traffic between VRFs
1777 via an internal layer 2 domain on the same PE device. Refer to
49606d58 1778 [Draft-IETF-agrewal-idr-accept-own-nexthop]_ for full details.
cae770d3
C
1779
1780``blackhole``
1781 ``blackhole`` represents well-known communities value ``BLACKHOLE``
1782 ``0xFFFF029A`` ``65535:666``. :rfc:`7999` documents sending prefixes to
1783 EBGP peers and upstream for the purpose of blackholing traffic.
1784 Prefixes tagged with the this community should normally not be
1785 re-advertised from neighbors of the originating network. It is
1786 recommended upon receiving prefixes tagged with this community to
1787 add ``NO_EXPORT`` and ``NO_ADVERTISE``.
1788
8fcedbd2 1789``no-export``
c1a54c05
QY
1790 ``no-export`` represents well-known communities value ``NO_EXPORT``
1791 ``0xFFFFFF01``. All routes carry this value must not be advertised to
1792 outside a BGP confederation boundary. If neighboring BGP peer is part of BGP
1793 confederation, the peer is considered as inside a BGP confederation
1794 boundary, so the route will be announced to the peer.
1795
8fcedbd2 1796``no-advertise``
c1a54c05
QY
1797 ``no-advertise`` represents well-known communities value ``NO_ADVERTISE``
1798 ``0xFFFFFF02``. All routes carry this value must not be advertise to other
1799 BGP peers.
1800
8fcedbd2 1801``local-AS``
c1a54c05
QY
1802 ``local-AS`` represents well-known communities value ``NO_EXPORT_SUBCONFED``
1803 ``0xFFFFFF03``. All routes carry this value must not be advertised to
1804 external BGP peers. Even if the neighboring router is part of confederation,
1805 it is considered as external BGP peer, so the route will not be announced to
1806 the peer.
1807
cae770d3
C
1808``no-peer``
1809 ``no-peer`` represents well-known communities value ``NOPEER``
1810 ``0xFFFFFF04`` ``65535:65284``. :rfc:`3765` is used to communicate to
1811 another network how the originating network want the prefix propagated.
1812
aa9eafa4
QY
1813When the communities attribute is received duplicate community values in the
1814attribute are ignored and value is sorted in numerical order.
42fc5d26 1815
49606d58
PG
1816.. [Draft-IETF-uttaro-idr-bgp-persistence] <https://tools.ietf.org/id/draft-uttaro-idr-bgp-persistence-04.txt>
1817.. [Draft-IETF-agrewal-idr-accept-own-nexthop] <https://tools.ietf.org/id/draft-agrewal-idr-accept-own-nexthop-00.txt>
1818
0efdf0fe 1819.. _bgp-community-lists:
42fc5d26 1820
8fcedbd2
QY
1821Community Lists
1822^^^^^^^^^^^^^^^
aa9eafa4
QY
1823Community lists are user defined lists of community attribute values. These
1824lists can be used for matching or manipulating the communities attribute in
1825UPDATE messages.
42fc5d26 1826
aa9eafa4 1827There are two types of community list:
c1a54c05 1828
aa9eafa4 1829standard
56f0bea7 1830 This type accepts an explicit value for the attribute.
aa9eafa4
QY
1831
1832expanded
1833 This type accepts a regular expression. Because the regex must be
1834 interpreted on each use expanded community lists are slower than standard
1835 lists.
42fc5d26 1836
a64e0ee5
DA
1837.. index:: bgp community-list standard NAME permit|deny COMMUNITY
1838.. clicmd:: bgp community-list standard NAME permit|deny COMMUNITY
42fc5d26 1839
aa9eafa4
QY
1840 This command defines a new standard community list. ``COMMUNITY`` is
1841 communities value. The ``COMMUNITY`` is compiled into community structure.
1842 We can define multiple community list under same name. In that case match
1843 will happen user defined order. Once the community list matches to
1844 communities attribute in BGP updates it return permit or deny by the
1845 community list definition. When there is no matched entry, deny will be
1846 returned. When ``COMMUNITY`` is empty it matches to any routes.
42fc5d26 1847
a64e0ee5
DA
1848.. index:: bgp community-list expanded NAME permit|deny COMMUNITY
1849.. clicmd:: bgp community-list expanded NAME permit|deny COMMUNITY
42fc5d26 1850
aa9eafa4
QY
1851 This command defines a new expanded community list. ``COMMUNITY`` is a
1852 string expression of communities attribute. ``COMMUNITY`` can be a regular
1853 expression (:ref:`bgp-regular-expressions`) to match the communities
47f47873
PG
1854 attribute in BGP updates. The expanded community is only used to filter,
1855 not `set` actions.
42fc5d26 1856
aa9eafa4
QY
1857.. deprecated:: 5.0
1858 It is recommended to use the more explicit versions of this command.
42fc5d26 1859
a64e0ee5
DA
1860.. index:: bgp community-list NAME permit|deny COMMUNITY
1861.. clicmd:: bgp community-list NAME permit|deny COMMUNITY
aa9eafa4
QY
1862
1863 When the community list type is not specified, the community list type is
1864 automatically detected. If ``COMMUNITY`` can be compiled into communities
1865 attribute, the community list is defined as a standard community list.
1866 Otherwise it is defined as an expanded community list. This feature is left
1867 for backward compatibility. Use of this feature is not recommended.
42fc5d26 1868
42fc5d26 1869
a64e0ee5
DA
1870.. index:: no bgp community-list [standard|expanded] NAME
1871.. clicmd:: no bgp community-list [standard|expanded] NAME
42fc5d26 1872
aa9eafa4
QY
1873 Deletes the community list specified by ``NAME``. All community lists share
1874 the same namespace, so it's not necessary to specify ``standard`` or
1875 ``expanded``; these modifiers are purely aesthetic.
42fc5d26 1876
36dc43aa
DA
1877.. index:: show bgp community-list [NAME detail]
1878.. clicmd:: show bgp community-list [NAME detail]
42fc5d26 1879
aa9eafa4
QY
1880 Displays community list information. When ``NAME`` is specified the
1881 specified community list's information is shown.
c3c5a71f 1882
c1a54c05 1883 ::
76bd1499 1884
a64e0ee5 1885 # show bgp community-list
c1a54c05
QY
1886 Named Community standard list CLIST
1887 permit 7675:80 7675:100 no-export
1888 deny internet
1889 Named Community expanded list EXPAND
1890 permit :
76bd1499 1891
36dc43aa 1892 # show bgp community-list CLIST detail
c1a54c05
QY
1893 Named Community standard list CLIST
1894 permit 7675:80 7675:100 no-export
1895 deny internet
42fc5d26 1896
42fc5d26 1897
8fcedbd2 1898.. _bgp-numbered-community-lists:
42fc5d26 1899
8fcedbd2
QY
1900Numbered Community Lists
1901^^^^^^^^^^^^^^^^^^^^^^^^
42fc5d26
QY
1902
1903When number is used for BGP community list name, the number has
c3c5a71f
QY
1904special meanings. Community list number in the range from 1 and 99 is
1905standard community list. Community list number in the range from 100
1906to 199 is expanded community list. These community lists are called
1907as numbered community lists. On the other hand normal community lists
42fc5d26
QY
1908is called as named community lists.
1909
a64e0ee5
DA
1910.. index:: bgp community-list (1-99) permit|deny COMMUNITY
1911.. clicmd:: bgp community-list (1-99) permit|deny COMMUNITY
42fc5d26 1912
aa9eafa4
QY
1913 This command defines a new community list. The argument to (1-99) defines
1914 the list identifier.
42fc5d26 1915
a64e0ee5
DA
1916.. index:: bgp community-list (100-199) permit|deny COMMUNITY
1917.. clicmd:: bgp community-list (100-199) permit|deny COMMUNITY
42fc5d26 1918
aa9eafa4
QY
1919 This command defines a new expanded community list. The argument to
1920 (100-199) defines the list identifier.
42fc5d26 1921
8fcedbd2 1922.. _bgp-using-communities-in-route-map:
42fc5d26 1923
8fcedbd2
QY
1924Using Communities in Route Maps
1925^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
42fc5d26 1926
aa9eafa4
QY
1927In :ref:`route-map` we can match on or set the BGP communities attribute. Using
1928this feature network operator can implement their network policy based on BGP
1929communities attribute.
42fc5d26 1930
b91bf5bd 1931The following commands can be used in route maps:
42fc5d26 1932
aa9eafa4
QY
1933.. index:: match community WORD exact-match [exact-match]
1934.. clicmd:: match community WORD exact-match [exact-match]
42fc5d26 1935
c1a54c05
QY
1936 This command perform match to BGP updates using community list WORD. When
1937 the one of BGP communities value match to the one of communities value in
d1e7591e 1938 community list, it is match. When `exact-match` keyword is specified, match
c1a54c05
QY
1939 happen only when BGP updates have completely same communities value
1940 specified in the community list.
42fc5d26 1941
aa9eafa4
QY
1942.. index:: set community <none|COMMUNITY> additive
1943.. clicmd:: set community <none|COMMUNITY> additive
42fc5d26 1944
aa9eafa4
QY
1945 This command sets the community value in BGP updates. If the attribute is
1946 already configured, the newly provided value replaces the old one unless the
1947 ``additive`` keyword is specified, in which case the new value is appended
1948 to the existing value.
42fc5d26 1949
aa9eafa4
QY
1950 If ``none`` is specified as the community value, the communities attribute
1951 is not sent.
42fc5d26 1952
47f47873
PG
1953 It is not possible to set an expanded community list.
1954
c1a54c05 1955.. index:: set comm-list WORD delete
29adcd50 1956.. clicmd:: set comm-list WORD delete
c1a54c05 1957
aa9eafa4
QY
1958 This command remove communities value from BGP communities attribute. The
1959 ``word`` is community list name. When BGP route's communities value matches
1960 to the community list ``word``, the communities value is removed. When all
1961 of communities value is removed eventually, the BGP update's communities
1962 attribute is completely removed.
42fc5d26 1963
8fcedbd2 1964.. _bgp-communities-example:
c1a54c05 1965
8fcedbd2
QY
1966Example Configuration
1967^^^^^^^^^^^^^^^^^^^^^
9eb95b3b 1968
8fcedbd2
QY
1969The following configuration is exemplary of the most typical usage of BGP
1970communities attribute. In the example, AS 7675 provides an upstream Internet
1971connection to AS 100. When the following configuration exists in AS 7675, the
1972network operator of AS 100 can set local preference in AS 7675 network by
1973setting BGP communities attribute to the updates.
9eb95b3b
QY
1974
1975.. code-block:: frr
c1a54c05
QY
1976
1977 router bgp 7675
1978 neighbor 192.168.0.1 remote-as 100
1979 address-family ipv4 unicast
1980 neighbor 192.168.0.1 route-map RMAP in
1981 exit-address-family
1982 !
a64e0ee5
DA
1983 bgp community-list 70 permit 7675:70
1984 bgp community-list 70 deny
1985 bgp community-list 80 permit 7675:80
1986 bgp community-list 80 deny
1987 bgp community-list 90 permit 7675:90
1988 bgp community-list 90 deny
c1a54c05
QY
1989 !
1990 route-map RMAP permit 10
1991 match community 70
1992 set local-preference 70
1993 !
1994 route-map RMAP permit 20
1995 match community 80
1996 set local-preference 80
1997 !
1998 route-map RMAP permit 30
1999 match community 90
2000 set local-preference 90
c3c5a71f 2001
42fc5d26 2002
8fcedbd2
QY
2003The following configuration announces ``10.0.0.0/8`` from AS 100 to AS 7675.
2004The route has communities value ``7675:80`` so when above configuration exists
2005in AS 7675, the announced routes' local preference value will be set to 80.
9eb95b3b
QY
2006
2007.. code-block:: frr
c1a54c05
QY
2008
2009 router bgp 100
2010 network 10.0.0.0/8
2011 neighbor 192.168.0.2 remote-as 7675
2012 address-family ipv4 unicast
2013 neighbor 192.168.0.2 route-map RMAP out
2014 exit-address-family
2015 !
2016 ip prefix-list PLIST permit 10.0.0.0/8
2017 !
2018 route-map RMAP permit 10
2019 match ip address prefix-list PLIST
2020 set community 7675:80
c3c5a71f 2021
42fc5d26 2022
8fcedbd2
QY
2023The following configuration is an example of BGP route filtering using
2024communities attribute. This configuration only permit BGP routes which has BGP
2025communities value ``0:80`` or ``0:90``. The network operator can set special
2026internal communities value at BGP border router, then limit the BGP route
2027announcements into the internal network.
9eb95b3b
QY
2028
2029.. code-block:: frr
42fc5d26 2030
c1a54c05
QY
2031 router bgp 7675
2032 neighbor 192.168.0.1 remote-as 100
2033 address-family ipv4 unicast
2034 neighbor 192.168.0.1 route-map RMAP in
2035 exit-address-family
2036 !
a64e0ee5 2037 bgp community-list 1 permit 0:80 0:90
c1a54c05
QY
2038 !
2039 route-map RMAP permit in
2040 match community 1
c3c5a71f 2041
42fc5d26 2042
8fcedbd2
QY
2043The following example filters BGP routes which have a community value of
2044``1:1``. When there is no match community-list returns ``deny``. To avoid
2045filtering all routes, a ``permit`` line is set at the end of the
2046community-list.
9eb95b3b
QY
2047
2048.. code-block:: frr
42fc5d26 2049
c1a54c05
QY
2050 router bgp 7675
2051 neighbor 192.168.0.1 remote-as 100
2052 address-family ipv4 unicast
2053 neighbor 192.168.0.1 route-map RMAP in
2054 exit-address-family
2055 !
a64e0ee5
DA
2056 bgp community-list standard FILTER deny 1:1
2057 bgp community-list standard FILTER permit
c1a54c05
QY
2058 !
2059 route-map RMAP permit 10
2060 match community FILTER
c3c5a71f 2061
42fc5d26 2062
8fcedbd2
QY
2063The communities value keyword ``internet`` has special meanings in standard
2064community lists. In the below example ``internet`` matches all BGP routes even
2065if the route does not have communities attribute at all. So community list
2066``INTERNET`` is the same as ``FILTER`` in the previous example.
9eb95b3b
QY
2067
2068.. code-block:: frr
42fc5d26 2069
a64e0ee5
DA
2070 bgp community-list standard INTERNET deny 1:1
2071 bgp community-list standard INTERNET permit internet
c3c5a71f 2072
42fc5d26 2073
8fcedbd2
QY
2074The following configuration is an example of communities value deletion. With
2075this configuration the community values ``100:1`` and ``100:2`` are removed
2076from BGP updates. For communities value deletion, only ``permit``
2077community-list is used. ``deny`` community-list is ignored.
9eb95b3b
QY
2078
2079.. code-block:: frr
42fc5d26 2080
c1a54c05
QY
2081 router bgp 7675
2082 neighbor 192.168.0.1 remote-as 100
2083 address-family ipv4 unicast
2084 neighbor 192.168.0.1 route-map RMAP in
2085 exit-address-family
2086 !
a64e0ee5 2087 bgp community-list standard DEL permit 100:1 100:2
c1a54c05
QY
2088 !
2089 route-map RMAP permit 10
2090 set comm-list DEL delete
c3c5a71f 2091
42fc5d26 2092
0efdf0fe 2093.. _bgp-extended-communities-attribute:
42fc5d26 2094
8fcedbd2
QY
2095Extended Communities Attribute
2096^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
42fc5d26 2097
c1a54c05
QY
2098BGP extended communities attribute is introduced with MPLS VPN/BGP technology.
2099MPLS VPN/BGP expands capability of network infrastructure to provide VPN
2100functionality. At the same time it requires a new framework for policy routing.
2101With BGP Extended Communities Attribute we can use Route Target or Site of
2102Origin for implementing network policy for MPLS VPN/BGP.
42fc5d26 2103
c1a54c05
QY
2104BGP Extended Communities Attribute is similar to BGP Communities Attribute. It
2105is an optional transitive attribute. BGP Extended Communities Attribute can
2106carry multiple Extended Community value. Each Extended Community value is
2107eight octet length.
42fc5d26 2108
c1a54c05
QY
2109BGP Extended Communities Attribute provides an extended range compared with BGP
2110Communities Attribute. Adding to that there is a type field in each value to
2111provides community space structure.
42fc5d26 2112
c1a54c05
QY
2113There are two format to define Extended Community value. One is AS based format
2114the other is IP address based format.
42fc5d26 2115
8fcedbd2
QY
2116``AS:VAL``
2117 This is a format to define AS based Extended Community value. ``AS`` part
2118 is 2 octets Global Administrator subfield in Extended Community value.
2119 ``VAL`` part is 4 octets Local Administrator subfield. ``7675:100``
2120 represents AS 7675 policy value 100.
42fc5d26 2121
8fcedbd2 2122``IP-Address:VAL``
c1a54c05 2123 This is a format to define IP address based Extended Community value.
8fcedbd2
QY
2124 ``IP-Address`` part is 4 octets Global Administrator subfield. ``VAL`` part
2125 is 2 octets Local Administrator subfield.
42fc5d26 2126
0efdf0fe 2127.. _bgp-extended-community-lists:
42fc5d26 2128
8fcedbd2
QY
2129Extended Community Lists
2130^^^^^^^^^^^^^^^^^^^^^^^^
42fc5d26 2131
a64e0ee5
DA
2132.. index:: bgp extcommunity-list standard NAME permit|deny EXTCOMMUNITY
2133.. clicmd:: bgp extcommunity-list standard NAME permit|deny EXTCOMMUNITY
42fc5d26 2134
4da7fda3
QY
2135 This command defines a new standard extcommunity-list. `extcommunity` is
2136 extended communities value. The `extcommunity` is compiled into extended
2137 community structure. We can define multiple extcommunity-list under same
2138 name. In that case match will happen user defined order. Once the
2139 extcommunity-list matches to extended communities attribute in BGP updates
2140 it return permit or deny based upon the extcommunity-list definition. When
2141 there is no matched entry, deny will be returned. When `extcommunity` is
2142 empty it matches to any routes.
42fc5d26 2143
a64e0ee5
DA
2144.. index:: bgp extcommunity-list expanded NAME permit|deny LINE
2145.. clicmd:: bgp extcommunity-list expanded NAME permit|deny LINE
42fc5d26 2146
4da7fda3
QY
2147 This command defines a new expanded extcommunity-list. `line` is a string
2148 expression of extended communities attribute. `line` can be a regular
2149 expression (:ref:`bgp-regular-expressions`) to match an extended communities
2150 attribute in BGP updates.
42fc5d26 2151
a64e0ee5
DA
2152.. index:: no bgp extcommunity-list NAME
2153.. clicmd:: no bgp extcommunity-list NAME
42fc5d26 2154
a64e0ee5
DA
2155.. index:: no bgp extcommunity-list standard NAME
2156.. clicmd:: no bgp extcommunity-list standard NAME
42fc5d26 2157
a64e0ee5
DA
2158.. index:: no bgp extcommunity-list expanded NAME
2159.. clicmd:: no bgp extcommunity-list expanded NAME
42fc5d26 2160
4da7fda3
QY
2161 These commands delete extended community lists specified by `name`. All of
2162 extended community lists shares a single name space. So extended community
d1e7591e 2163 lists can be removed simply specifying the name.
42fc5d26 2164
a64e0ee5
DA
2165.. index:: show bgp extcommunity-list
2166.. clicmd:: show bgp extcommunity-list
42fc5d26 2167
36dc43aa
DA
2168.. index:: show bgp extcommunity-list NAME detail
2169.. clicmd:: show bgp extcommunity-list NAME detail
c1a54c05 2170
4da7fda3 2171 This command displays current extcommunity-list information. When `name` is
9eb95b3b 2172 specified the community list's information is shown.::
42fc5d26 2173
a64e0ee5 2174 # show bgp extcommunity-list
c3c5a71f 2175
42fc5d26 2176
0efdf0fe 2177.. _bgp-extended-communities-in-route-map:
42fc5d26
QY
2178
2179BGP Extended Communities in Route Map
8fcedbd2 2180"""""""""""""""""""""""""""""""""""""
42fc5d26 2181
c3c5a71f 2182.. index:: match extcommunity WORD
29adcd50 2183.. clicmd:: match extcommunity WORD
42fc5d26 2184
c1a54c05 2185.. index:: set extcommunity rt EXTCOMMUNITY
29adcd50 2186.. clicmd:: set extcommunity rt EXTCOMMUNITY
42fc5d26 2187
c1a54c05 2188 This command set Route Target value.
42fc5d26 2189
c1a54c05 2190.. index:: set extcommunity soo EXTCOMMUNITY
29adcd50 2191.. clicmd:: set extcommunity soo EXTCOMMUNITY
c1a54c05
QY
2192
2193 This command set Site of Origin value.
42fc5d26 2194
ed647ed2 2195.. index:: set extcommunity bandwidth <(1-25600) | cumulative | num-multipaths> [non-transitive]
2196.. clicmd:: set extcommunity bandwidth <(1-25600) | cumulative | num-multipaths> [non-transitive]
2197
2198 This command sets the BGP link-bandwidth extended community for the prefix
2199 (best path) for which it is applied. The link-bandwidth can be specified as
2200 an ``explicit value`` (specified in Mbps), or the router can be told to use
2201 the ``cumulative bandwidth`` of all multipaths for the prefix or to compute
2202 it based on the ``number of multipaths``. The link bandwidth extended
2203 community is encoded as ``transitive`` unless the set command explicitly
2204 configures it as ``non-transitive``.
2205
2206.. seealso:: :ref:`wecmp_linkbw`
47f47873
PG
2207
2208Note that the extended expanded community is only used for `match` rule, not for
2209`set` actions.
2210
0efdf0fe 2211.. _bgp-large-communities-attribute:
42fc5d26 2212
8fcedbd2
QY
2213Large Communities Attribute
2214^^^^^^^^^^^^^^^^^^^^^^^^^^^
42fc5d26
QY
2215
2216The BGP Large Communities attribute was introduced in Feb 2017 with
c1a54c05 2217:rfc:`8092`.
42fc5d26 2218
8fcedbd2
QY
2219The BGP Large Communities Attribute is similar to the BGP Communities Attribute
2220except that it has 3 components instead of two and each of which are 4 octets
2221in length. Large Communities bring additional functionality and convenience
2222over traditional communities, specifically the fact that the ``GLOBAL`` part
2223below is now 4 octets wide allowing seamless use in networks using 4-byte ASNs.
2224
2225``GLOBAL:LOCAL1:LOCAL2``
2226 This is the format to define Large Community values. Referencing :rfc:`8195`
2227 the values are commonly referred to as follows:
2228
2229 - The ``GLOBAL`` part is a 4 octet Global Administrator field, commonly used
2230 as the operators AS number.
2231 - The ``LOCAL1`` part is a 4 octet Local Data Part 1 subfield referred to as
2232 a function.
2233 - The ``LOCAL2`` part is a 4 octet Local Data Part 2 field and referred to
2234 as the parameter subfield.
2235
2236 As an example, ``65551:1:10`` represents AS 65551 function 1 and parameter
2237 10. The referenced RFC above gives some guidelines on recommended usage.
42fc5d26 2238
0efdf0fe 2239.. _bgp-large-community-lists:
42fc5d26 2240
8fcedbd2
QY
2241Large Community Lists
2242"""""""""""""""""""""
42fc5d26
QY
2243
2244Two types of large community lists are supported, namely `standard` and
2245`expanded`.
2246
a64e0ee5
DA
2247.. index:: bgp large-community-list standard NAME permit|deny LARGE-COMMUNITY
2248.. clicmd:: bgp large-community-list standard NAME permit|deny LARGE-COMMUNITY
42fc5d26 2249
4da7fda3
QY
2250 This command defines a new standard large-community-list. `large-community`
2251 is the Large Community value. We can add multiple large communities under
2252 same name. In that case the match will happen in the user defined order.
2253 Once the large-community-list matches the Large Communities attribute in BGP
2254 updates it will return permit or deny based upon the large-community-list
2255 definition. When there is no matched entry, a deny will be returned. When
2256 `large-community` is empty it matches any routes.
42fc5d26 2257
a64e0ee5
DA
2258.. index:: bgp large-community-list expanded NAME permit|deny LINE
2259.. clicmd:: bgp large-community-list expanded NAME permit|deny LINE
42fc5d26 2260
4da7fda3
QY
2261 This command defines a new expanded large-community-list. Where `line` is a
2262 string matching expression, it will be compared to the entire Large
2263 Communities attribute as a string, with each large-community in order from
2264 lowest to highest. `line` can also be a regular expression which matches
2265 this Large Community attribute.
42fc5d26 2266
a64e0ee5
DA
2267.. index:: no bgp large-community-list NAME
2268.. clicmd:: no bgp large-community-list NAME
42fc5d26 2269
a64e0ee5
DA
2270.. index:: no bgp large-community-list standard NAME
2271.. clicmd:: no bgp large-community-list standard NAME
42fc5d26 2272
a64e0ee5
DA
2273.. index:: no bgp large-community-list expanded NAME
2274.. clicmd:: no bgp large-community-list expanded NAME
42fc5d26 2275
4da7fda3
QY
2276 These commands delete Large Community lists specified by `name`. All Large
2277 Community lists share a single namespace. This means Large Community lists
2278 can be removed by simply specifying the name.
42fc5d26 2279
a64e0ee5
DA
2280.. index:: show bgp large-community-list
2281.. clicmd:: show bgp large-community-list
42fc5d26 2282
36dc43aa
DA
2283.. index:: show bgp large-community-list NAME detail
2284.. clicmd:: show bgp large-community-list NAME detail
42fc5d26 2285
c1a54c05
QY
2286 This command display current large-community-list information. When
2287 `name` is specified the community list information is shown.
42fc5d26 2288
c1a54c05 2289.. index:: show ip bgp large-community-info
29adcd50 2290.. clicmd:: show ip bgp large-community-info
c1a54c05
QY
2291
2292 This command displays the current large communities in use.
42fc5d26 2293
0efdf0fe 2294.. _bgp-large-communities-in-route-map:
42fc5d26 2295
8fcedbd2
QY
2296Large Communities in Route Map
2297""""""""""""""""""""""""""""""
42fc5d26 2298
03ff9a14 2299.. index:: match large-community LINE [exact-match]
2300.. clicmd:: match large-community LINE [exact-match]
42fc5d26 2301
4da7fda3
QY
2302 Where `line` can be a simple string to match, or a regular expression. It
2303 is very important to note that this match occurs on the entire
c1a54c05 2304 large-community string as a whole, where each large-community is ordered
03ff9a14 2305 from lowest to highest. When `exact-match` keyword is specified, match
2306 happen only when BGP updates have completely same large communities value
2307 specified in the large community list.
42fc5d26 2308
c1a54c05 2309.. index:: set large-community LARGE-COMMUNITY
29adcd50 2310.. clicmd:: set large-community LARGE-COMMUNITY
42fc5d26 2311
c1a54c05 2312.. index:: set large-community LARGE-COMMUNITY LARGE-COMMUNITY
29adcd50 2313.. clicmd:: set large-community LARGE-COMMUNITY LARGE-COMMUNITY
42fc5d26 2314
c1a54c05 2315.. index:: set large-community LARGE-COMMUNITY additive
29adcd50 2316.. clicmd:: set large-community LARGE-COMMUNITY additive
c1a54c05
QY
2317
2318 These commands are used for setting large-community values. The first
2319 command will overwrite any large-communities currently present.
2320 The second specifies two large-communities, which overwrites the current
2321 large-community list. The third will add a large-community value without
2322 overwriting other values. Multiple large-community values can be specified.
42fc5d26 2323
47f47873
PG
2324Note that the large expanded community is only used for `match` rule, not for
2325`set` actions.
b572f826 2326
c8a5e5e1 2327.. _bgp-l3vpn-vrfs:
b572f826 2328
c8a5e5e1
QY
2329L3VPN VRFs
2330----------
b572f826 2331
c8a5e5e1
QY
2332*bgpd* supports :abbr:`L3VPN (Layer 3 Virtual Private Networks)` :abbr:`VRFs
2333(Virtual Routing and Forwarding)` for IPv4 :rfc:`4364` and IPv6 :rfc:`4659`.
2334L3VPN routes, and their associated VRF MPLS labels, can be distributed to VPN
2335SAFI neighbors in the *default*, i.e., non VRF, BGP instance. VRF MPLS labels
2336are reached using *core* MPLS labels which are distributed using LDP or BGP
2337labeled unicast. *bgpd* also supports inter-VRF route leaking.
b572f826 2338
b572f826 2339
c8a5e5e1 2340.. _bgp-vrf-route-leaking:
8fcedbd2
QY
2341
2342VRF Route Leaking
c8a5e5e1 2343-----------------
8fcedbd2
QY
2344
2345BGP routes may be leaked (i.e. copied) between a unicast VRF RIB and the VPN
f90115c5
LB
2346SAFI RIB of the default VRF for use in MPLS-based L3VPNs. Unicast routes may
2347also be leaked between any VRFs (including the unicast RIB of the default BGP
2348instanced). A shortcut syntax is also available for specifying leaking from one
2349VRF to another VRF using the default instance's VPN RIB as the intemediary. A
2350common application of the VRF-VRF feature is to connect a customer's private
8fcedbd2
QY
2351routing domain to a provider's VPN service. Leaking is configured from the
2352point of view of an individual VRF: ``import`` refers to routes leaked from VPN
2353to a unicast VRF, whereas ``export`` refers to routes leaked from a unicast VRF
2354to VPN.
2355
2356Required parameters
c8a5e5e1 2357^^^^^^^^^^^^^^^^^^^
b572f826 2358
4da7fda3
QY
2359Routes exported from a unicast VRF to the VPN RIB must be augmented by two
2360parameters:
2361
2362- an :abbr:`RD (Route Distinguisher)`
2363- an :abbr:`RTLIST (Route-target List)`
2364
2365Configuration for these exported routes must, at a minimum, specify these two
2366parameters.
2367
2368Routes imported from the VPN RIB to a unicast VRF are selected according to
2369their RTLISTs. Routes whose RTLIST contains at least one route-target in
2370common with the configured import RTLIST are leaked. Configuration for these
2371imported routes must specify an RTLIST to be matched.
2372
2373The RD, which carries no semantic value, is intended to make the route unique
2374in the VPN RIB among all routes of its prefix that originate from all the
2375customers and sites that are attached to the provider's VPN service.
2376Accordingly, each site of each customer is typically assigned an RD that is
2377unique across the entire provider network.
2378
2379The RTLIST is a set of route-target extended community values whose purpose is
2380to specify route-leaking policy. Typically, a customer is assigned a single
2381route-target value for import and export to be used at all customer sites. This
2382configuration specifies a simple topology wherein a customer has a single
2383routing domain which is shared across all its sites. More complex routing
2384topologies are possible through use of additional route-targets to augment the
2385leaking of sets of routes in various ways.
b572f826 2386
e967a1d0
DS
2387When using the shortcut syntax for vrf-to-vrf leaking, the RD and RT are
2388auto-derived.
fb3d9f3e 2389
8fcedbd2 2390General configuration
c8a5e5e1 2391^^^^^^^^^^^^^^^^^^^^^
b572f826 2392
f90115c5 2393Configuration of route leaking between a unicast VRF RIB and the VPN SAFI RIB
4da7fda3
QY
2394of the default VRF is accomplished via commands in the context of a VRF
2395address-family:
b572f826
PZ
2396
2397.. index:: rd vpn export AS:NN|IP:nn
2398.. clicmd:: rd vpn export AS:NN|IP:nn
2399
4da7fda3
QY
2400 Specifies the route distinguisher to be added to a route exported from the
2401 current unicast VRF to VPN.
b572f826
PZ
2402
2403.. index:: no rd vpn export [AS:NN|IP:nn]
2404.. clicmd:: no rd vpn export [AS:NN|IP:nn]
2405
2406 Deletes any previously-configured export route distinguisher.
2407
2408.. index:: rt vpn import|export|both RTLIST...
2409.. clicmd:: rt vpn import|export|both RTLIST...
2410
4da7fda3
QY
2411 Specifies the route-target list to be attached to a route (export) or the
2412 route-target list to match against (import) when exporting/importing between
2413 the current unicast VRF and VPN.
b572f826 2414
4da7fda3
QY
2415 The RTLIST is a space-separated list of route-targets, which are BGP
2416 extended community values as described in
b572f826
PZ
2417 :ref:`bgp-extended-communities-attribute`.
2418
2419.. index:: no rt vpn import|export|both [RTLIST...]
2420.. clicmd:: no rt vpn import|export|both [RTLIST...]
2421
2422 Deletes any previously-configured import or export route-target list.
2423
e70e9f8e
PZ
2424.. index:: label vpn export (0..1048575)|auto
2425.. clicmd:: label vpn export (0..1048575)|auto
b572f826 2426
8a2124f7 2427 Enables an MPLS label to be attached to a route exported from the current
2428 unicast VRF to VPN. If the value specified is ``auto``, the label value is
2429 automatically assigned from a pool maintained by the Zebra daemon. If Zebra
2430 is not running, or if this command is not configured, automatic label
2431 assignment will not complete, which will block corresponding route export.
b572f826 2432
e70e9f8e
PZ
2433.. index:: no label vpn export [(0..1048575)|auto]
2434.. clicmd:: no label vpn export [(0..1048575)|auto]
b572f826
PZ
2435
2436 Deletes any previously-configured export label.
2437
2438.. index:: nexthop vpn export A.B.C.D|X:X::X:X
2439.. clicmd:: nexthop vpn export A.B.C.D|X:X::X:X
2440
4da7fda3
QY
2441 Specifies an optional nexthop value to be assigned to a route exported from
2442 the current unicast VRF to VPN. If left unspecified, the nexthop will be set
2443 to 0.0.0.0 or 0:0::0:0 (self).
b572f826
PZ
2444
2445.. index:: no nexthop vpn export [A.B.C.D|X:X::X:X]
2446.. clicmd:: no nexthop vpn export [A.B.C.D|X:X::X:X]
2447
2448 Deletes any previously-configured export nexthop.
2449
2450.. index:: route-map vpn import|export MAP
2451.. clicmd:: route-map vpn import|export MAP
2452
4da7fda3 2453 Specifies an optional route-map to be applied to routes imported or exported
d1e7591e 2454 between the current unicast VRF and VPN.
b572f826
PZ
2455
2456.. index:: no route-map vpn import|export [MAP]
2457.. clicmd:: no route-map vpn import|export [MAP]
2458
2459 Deletes any previously-configured import or export route-map.
2460
2461.. index:: import|export vpn
2462.. clicmd:: import|export vpn
2463
d1e7591e 2464 Enables import or export of routes between the current unicast VRF and VPN.
b572f826
PZ
2465
2466.. index:: no import|export vpn
2467.. clicmd:: no import|export vpn
2468
d1e7591e 2469 Disables import or export of routes between the current unicast VRF and VPN.
b572f826 2470
fb3d9f3e
DS
2471.. index:: import vrf VRFNAME
2472.. clicmd:: import vrf VRFNAME
2473
e967a1d0
DS
2474 Shortcut syntax for specifying automatic leaking from vrf VRFNAME to
2475 the current VRF using the VPN RIB as intermediary. The RD and RT
2476 are auto derived and should not be specified explicitly for either the
2477 source or destination VRF's.
2478
2479 This shortcut syntax mode is not compatible with the explicit
2480 `import vpn` and `export vpn` statements for the two VRF's involved.
2481 The CLI will disallow attempts to configure incompatible leaking
2482 modes.
fb3d9f3e
DS
2483
2484.. index:: no import vrf VRFNAME
2485.. clicmd:: no import vrf VRFNAME
2486
e967a1d0
DS
2487 Disables automatic leaking from vrf VRFNAME to the current VRF using
2488 the VPN RIB as intermediary.
b572f826 2489
42fc5d26 2490
b6c34e85
CS
2491.. _bgp-evpn:
2492
2493Ethernet Virtual Network - EVPN
2494-------------------------------
2495
2496.. _bgp-evpn-advertise-pip:
2497
2498EVPN advertise-PIP
2499^^^^^^^^^^^^^^^^^^
2500
2501In a EVPN symmetric routing MLAG deployment, all EVPN routes advertised
2502with anycast-IP as next-hop IP and anycast MAC as the Router MAC (RMAC - in
2503BGP EVPN Extended-Community).
2504EVPN picks up the next-hop IP from the VxLAN interface's local tunnel IP and
2505the RMAC is obtained from the MAC of the L3VNI's SVI interface.
2506Note: Next-hop IP is used for EVPN routes whether symmetric routing is
2507deployed or not but the RMAC is only relevant for symmetric routing scenario.
2508
2509Current behavior is not ideal for Prefix (type-5) and self (type-2)
2510routes. This is because the traffic from remote VTEPs routed sub optimally
2511if they land on the system where the route does not belong.
2512
2513The advertise-pip feature advertises Prefix (type-5) and self (type-2)
2514routes with system's individual (primary) IP as the next-hop and individual
2515(system) MAC as Router-MAC (RMAC), while leaving the behavior unchanged for
2516other EVPN routes.
2517
2518To support this feature there needs to have ability to co-exist a
2519(system-MAC, system-IP) pair with a (anycast-MAC, anycast-IP) pair with the
2520ability to terminate VxLAN-encapsulated packets received for either pair on
2521the same L3VNI (i.e associated VLAN). This capability is need per tenant
2522VRF instance.
2523
2524To derive the system-MAC and the anycast MAC, there needs to have a
2525separate/additional MAC-VLAN interface corresponding to L3VNI’s SVI.
2526The SVI interface’s MAC address can be interpreted as system-MAC
2527and MAC-VLAN interface's MAC as anycast MAC.
2528
2529To derive system-IP and anycast-IP, the default BGP instance's router-id is used
2530as system-IP and the VxLAN interface’s local tunnel IP as the anycast-IP.
2531
2532User has an option to configure the system-IP and/or system-MAC value if the
2533auto derived value is not preferred.
2534
2535Note: By default, advertise-pip feature is enabled and user has an option to
2536disable the feature via configuration CLI. Once the feature is disable under
2537bgp vrf instance or MAC-VLAN interface is not configured, all the routes follow
2538the same behavior of using same next-hop and RMAC values.
2539
2540.. index:: [no] advertise-pip [ip <addr> [mac <addr>]]
2541.. clicmd:: [no] advertise-pip [ip <addr> [mac <addr>]]
2542
2543Enables or disables advertise-pip feature, specifiy system-IP and/or system-MAC
2544parameters.
2545
ee9d0f09
PG
2546+Support with VRF network namespace backend
2547+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2548It is possible to separate overlay networks contained in VXLAN interfaces from
2549underlay networks by using VRFs. VRF-lite and VRF-netns backends can be used for
2550that. In the latter case, it is necessary to set both bridge and vxlan interface
2551in the same network namespace, as below example illustrates:
2552
2553.. code-block:: shell
2554
2555 # linux shell
2556 ip netns add vrf1
2557 ip link add name vxlan101 type vxlan id 101 dstport 4789 dev eth0 local 10.1.1.1
2558 ip link set dev vxlan101 netns vrf1
2559 ip netns exec vrf1 ip link set dev lo up
2560 ip netns exec vrf1 brctl addbr bridge101
2561 ip netns exec vrf1 brctl addif bridge101 vxlan101
2562
2563This makes it possible to separate not only layer 3 networks like VRF-lite networks.
2564Also, VRF netns based make possible to separate layer 2 networks on separate VRF
2565instances.
89b97c33 2566
8fcedbd2
QY
2567.. _bgp-debugging:
2568
2569Debugging
2570---------
42fc5d26 2571
c1a54c05 2572.. index:: show debug
29adcd50 2573.. clicmd:: show debug
42fc5d26 2574
8fcedbd2 2575 Show all enabled debugs.
42fc5d26 2576
54422b46
DS
2577.. index:: show bgp listeners
2578.. clicmd:: show bgp listeners
2579
2580 Display Listen sockets and the vrf that created them. Useful for debugging of when
2581 listen is not working and this is considered a developer debug statement.
2582
53b758f3
PG
2583.. index:: [no] debug bgp neighbor-events
2584.. clicmd:: [no] debug bgp neighbor-events
42fc5d26 2585
8fcedbd2
QY
2586 Enable or disable debugging for neighbor events. This provides general
2587 information on BGP events such as peer connection / disconnection, session
2588 establishment / teardown, and capability negotiation.
42fc5d26 2589
53b758f3
PG
2590.. index:: [no] debug bgp updates
2591.. clicmd:: [no] debug bgp updates
42fc5d26 2592
8fcedbd2
QY
2593 Enable or disable debugging for BGP updates. This provides information on
2594 BGP UPDATE messages transmitted and received between local and remote
2595 instances.
42fc5d26 2596
53b758f3
PG
2597.. index:: [no] debug bgp keepalives
2598.. clicmd:: [no] debug bgp keepalives
42fc5d26 2599
8fcedbd2
QY
2600 Enable or disable debugging for BGP keepalives. This provides information on
2601 BGP KEEPALIVE messages transmitted and received between local and remote
2602 instances.
c1a54c05 2603
8fcedbd2
QY
2604.. index:: [no] debug bgp bestpath <A.B.C.D/M|X:X::X:X/M>
2605.. clicmd:: [no] debug bgp bestpath <A.B.C.D/M|X:X::X:X/M>
42fc5d26 2606
8fcedbd2 2607 Enable or disable debugging for bestpath selection on the specified prefix.
42fc5d26 2608
8fcedbd2
QY
2609.. index:: [no] debug bgp nht
2610.. clicmd:: [no] debug bgp nht
4da7fda3 2611
8fcedbd2 2612 Enable or disable debugging of BGP nexthop tracking.
4da7fda3 2613
8fcedbd2
QY
2614.. index:: [no] debug bgp update-groups
2615.. clicmd:: [no] debug bgp update-groups
4b44467c 2616
8fcedbd2
QY
2617 Enable or disable debugging of dynamic update groups. This provides general
2618 information on group creation, deletion, join and prune events.
4b44467c 2619
8fcedbd2
QY
2620.. index:: [no] debug bgp zebra
2621.. clicmd:: [no] debug bgp zebra
42fc5d26 2622
8fcedbd2 2623 Enable or disable debugging of communications between *bgpd* and *zebra*.
c3c5a71f 2624
8fcedbd2
QY
2625Dumping Messages and Routing Tables
2626^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
42fc5d26 2627
8fcedbd2
QY
2628.. index:: dump bgp all PATH [INTERVAL]
2629.. clicmd:: dump bgp all PATH [INTERVAL]
42fc5d26 2630
8fcedbd2
QY
2631.. index:: dump bgp all-et PATH [INTERVAL]
2632.. clicmd:: dump bgp all-et PATH [INTERVAL]
c3c5a71f 2633
8fcedbd2
QY
2634.. index:: no dump bgp all [PATH] [INTERVAL]
2635.. clicmd:: no dump bgp all [PATH] [INTERVAL]
42fc5d26 2636
8fcedbd2
QY
2637 Dump all BGP packet and events to `path` file.
2638 If `interval` is set, a new file will be created for echo `interval` of
2639 seconds. The path `path` can be set with date and time formatting
2640 (strftime). The type ‘all-et’ enables support for Extended Timestamp Header
2641 (:ref:`packet-binary-dump-format`).
c3c5a71f 2642
8fcedbd2
QY
2643.. index:: dump bgp updates PATH [INTERVAL]
2644.. clicmd:: dump bgp updates PATH [INTERVAL]
42fc5d26 2645
8fcedbd2
QY
2646.. index:: dump bgp updates-et PATH [INTERVAL]
2647.. clicmd:: dump bgp updates-et PATH [INTERVAL]
42fc5d26 2648
8fcedbd2
QY
2649.. index:: no dump bgp updates [PATH] [INTERVAL]
2650.. clicmd:: no dump bgp updates [PATH] [INTERVAL]
42fc5d26 2651
8fcedbd2
QY
2652 Dump only BGP updates messages to `path` file.
2653 If `interval` is set, a new file will be created for echo `interval` of
2654 seconds. The path `path` can be set with date and time formatting
2655 (strftime). The type ‘updates-et’ enables support for Extended Timestamp
2656 Header (:ref:`packet-binary-dump-format`).
42fc5d26 2657
8fcedbd2
QY
2658.. index:: dump bgp routes-mrt PATH
2659.. clicmd:: dump bgp routes-mrt PATH
c3c5a71f 2660
8fcedbd2
QY
2661.. index:: dump bgp routes-mrt PATH INTERVAL
2662.. clicmd:: dump bgp routes-mrt PATH INTERVAL
42fc5d26 2663
8fcedbd2
QY
2664.. index:: no dump bgp route-mrt [PATH] [INTERVAL]
2665.. clicmd:: no dump bgp route-mrt [PATH] [INTERVAL]
42fc5d26 2666
8fcedbd2
QY
2667 Dump whole BGP routing table to `path`. This is heavy process. The path
2668 `path` can be set with date and time formatting (strftime). If `interval` is
2669 set, a new file will be created for echo `interval` of seconds.
42fc5d26 2670
8fcedbd2 2671 Note: the interval variable can also be set using hours and minutes: 04h20m00.
42fc5d26 2672
c3c5a71f 2673
8fcedbd2 2674.. _bgp-other-commands:
42fc5d26 2675
8fcedbd2
QY
2676Other BGP Commands
2677------------------
42fc5d26 2678
e312b6c6
QY
2679The following are available in the top level *enable* mode:
2680
dc912615
DS
2681.. index:: clear bgp \*
2682.. clicmd:: clear bgp \*
2683
2684 Clear all peers.
2685
8fcedbd2
QY
2686.. index:: clear bgp ipv4|ipv6 \*
2687.. clicmd:: clear bgp ipv4|ipv6 \*
42fc5d26 2688
dc912615
DS
2689 Clear all peers with this address-family activated.
2690
2691.. index:: clear bgp ipv4|ipv6 unicast \*
2692.. clicmd:: clear bgp ipv4|ipv6 unicast \*
2693
2694 Clear all peers with this address-family and sub-address-family activated.
42fc5d26 2695
8fcedbd2
QY
2696.. index:: clear bgp ipv4|ipv6 PEER
2697.. clicmd:: clear bgp ipv4|ipv6 PEER
42fc5d26 2698
dc912615
DS
2699 Clear peers with address of X.X.X.X and this address-family activated.
2700
2701.. index:: clear bgp ipv4|ipv6 unicast PEER
2702.. clicmd:: clear bgp ipv4|ipv6 unicast PEER
2703
2704 Clear peer with address of X.X.X.X and this address-family and sub-address-family activated.
2705
2706.. index:: clear bgp ipv4|ipv6 PEER soft|in|out
2707.. clicmd:: clear bgp ipv4|ipv6 PEER soft|in|out
2708
2709 Clear peer using soft reconfiguration in this address-family.
42fc5d26 2710
dc912615
DS
2711.. index:: clear bgp ipv4|ipv6 unicast PEER soft|in|out
2712.. clicmd:: clear bgp ipv4|ipv6 unicast PEER soft|in|out
42fc5d26 2713
dc912615 2714 Clear peer using soft reconfiguration in this address-family and sub-address-family.
42fc5d26 2715
e312b6c6
QY
2716The following are available in the ``router bgp`` mode:
2717
2718.. index:: write-quanta (1-64)
2719.. clicmd:: write-quanta (1-64)
2720
2721 BGP message Tx I/O is vectored. This means that multiple packets are written
2722 to the peer socket at the same time each I/O cycle, in order to minimize
2723 system call overhead. This value controls how many are written at a time.
2724 Under certain load conditions, reducing this value could make peer traffic
2725 less 'bursty'. In practice, leave this settings on the default (64) unless
2726 you truly know what you are doing.
2727
2728.. index:: read-quanta (1-10)
dad83b67 2729.. clicmd:: read-quanta (1-10)
e312b6c6
QY
2730
2731 Unlike Tx, BGP Rx traffic is not vectored. Packets are read off the wire one
2732 at a time in a loop. This setting controls how many iterations the loop runs
2733 for. As with write-quanta, it is best to leave this setting on the default.
42fc5d26 2734
8fcedbd2 2735.. _bgp-displaying-bgp-information:
42fc5d26 2736
8fcedbd2
QY
2737Displaying BGP Information
2738==========================
42fc5d26 2739
e6f59415
PG
2740The following four commands display the IPv6 and IPv4 routing tables, depending
2741on whether or not the ``ip`` keyword is used.
2742Actually, :clicmd:`show ip bgp` command was used on older `Quagga` routing
2743daemon project, while :clicmd:`show bgp` command is the new format. The choice
2744has been done to keep old format with IPv4 routing table, while new format
2745displays IPv6 routing table.
2746
96f3485c
MK
2747.. index:: show ip bgp [all] [wide|json]
2748.. clicmd:: show ip bgp [all] [wide|json]
42fc5d26 2749
96f3485c
MK
2750.. index:: show ip bgp A.B.C.D [json]
2751.. clicmd:: show ip bgp A.B.C.D [json]
c1a54c05 2752
96f3485c
MK
2753.. index:: show bgp [all] [wide|json]
2754.. clicmd:: show bgp [all] [wide|json]
e6f59415 2755
96f3485c
MK
2756.. index:: show bgp X:X::X:X [json]
2757.. clicmd:: show bgp X:X::X:X [json]
42fc5d26 2758
8fcedbd2 2759 These commands display BGP routes. When no route is specified, the default
e6f59415 2760 is to display all BGP routes.
42fc5d26 2761
8fcedbd2 2762 ::
c1a54c05 2763
8fcedbd2
QY
2764 BGP table version is 0, local router ID is 10.1.1.1
2765 Status codes: s suppressed, d damped, h history, * valid, > best, i - internal
2766 Origin codes: i - IGP, e - EGP, ? - incomplete
42fc5d26 2767
8fcedbd2
QY
2768 Network Next Hop Metric LocPrf Weight Path
2769 \*> 1.1.1.1/32 0.0.0.0 0 32768 i
42fc5d26 2770
8fcedbd2 2771 Total number of prefixes 1
4da7fda3 2772
986b0fc3
DA
2773 If _wide_ option is specified, then the prefix table's width is increased
2774 to fully display the prefix and the nexthop.
2775
2776 This is especially handy dealing with IPv6 prefixes and
2777 if :clicmd:`[no] bgp default show-nexthop-hostname` is enabled.
2778
96f3485c
MK
2779 If _all_ option is specified, _ip_ keyword is ignored, show bgp all and
2780 show ip bgp all commands display routes for all AFIs and SAFIs.
2781
2782 If _json_ option is specified, output is displayed in JSON format.
2783
e6f59415
PG
2784Some other commands provide additional options for filtering the output.
2785
2786.. index:: show [ip] bgp regexp LINE
2787.. clicmd:: show [ip] bgp regexp LINE
42fc5d26 2788
8fcedbd2
QY
2789 This command displays BGP routes using AS path regular expression
2790 (:ref:`bgp-regular-expressions`).
42fc5d26 2791
96f3485c
MK
2792.. index:: show [ip] bgp [all] summary [json]
2793.. clicmd:: show [ip] bgp [all] summary [json]
42fc5d26 2794
8fcedbd2 2795 Show a bgp peer summary for the specified address family.
42fc5d26 2796
e6f59415
PG
2797The old command structure :clicmd:`show ip bgp` may be removed in the future
2798and should no longer be used. In order to reach the other BGP routing tables
2799other than the IPv6 routing table given by :clicmd:`show bgp`, the new command
2800structure is extended with :clicmd:`show bgp [afi] [safi]`.
2801
96f3485c
MK
2802.. index:: show bgp [afi] [safi] [all] [wide|json]
2803.. clicmd:: show bgp [afi] [safi] [all] [wide|json]
e6f59415
PG
2804
2805.. index:: show bgp <ipv4|ipv6> <unicast|multicast|vpn|labeled-unicast>
2806.. clicmd:: show bgp <ipv4|ipv6> <unicast|multicast|vpn|labeled-unicast>
2807
2808 These commands display BGP routes for the specific routing table indicated by
2809 the selected afi and the selected safi. If no afi and no safi value is given,
6cfd16ad
TA
2810 the command falls back to the default IPv6 routing table.
2811 For EVPN prefixes, you can display the full BGP table for this AFI/SAFI
2812 using the standard `show bgp [afi] [safi]` syntax.
2813
2814.. index:: show bgp l2vpn evpn route [type <macip|2|multicast|3|es|4|prefix|5>]
2815.. clicmd:: show bgp l2vpn evpn route [type <macip|2|multicast|3|es|4|prefix|5>]
2816
2817 Additionally, you can also filter this output by route type.
e6f59415 2818
96f3485c
MK
2819.. index:: show bgp [afi] [safi] [all] summary [json]
2820.. clicmd:: show bgp [afi] [safi] [all] summary [json]
e6f59415
PG
2821
2822 Show a bgp peer summary for the specified address family, and subsequent
2823 address-family.
2824
96f3485c
MK
2825.. index:: show bgp [afi] [safi] [all] summary failed [json]
2826.. clicmd:: show bgp [afi] [safi] [all] summary failed [json]
3577f1c5
DD
2827
2828 Show a bgp peer summary for peers that are not succesfully exchanging routes
2829 for the specified address family, and subsequent address-family.
2830
96f3485c
MK
2831.. index:: show bgp [afi] [safi] [all] summary established [json]
2832.. clicmd:: show bgp [afi] [safi] [all] summary established [json]
1c027267
DA
2833
2834 Show a bgp peer summary for peers that are succesfully exchanging routes
2835 for the specified address family, and subsequent address-family.
2836
e6f59415
PG
2837.. index:: show bgp [afi] [safi] neighbor [PEER]
2838.. clicmd:: show bgp [afi] [safi] neighbor [PEER]
9eb95b3b 2839
e6f59415
PG
2840 This command shows information on a specific BGP peer of the relevant
2841 afi and safi selected.
c1a54c05 2842
96f3485c
MK
2843.. index:: show bgp [afi] [safi] [all] dampening dampened-paths [wide|json]
2844.. clicmd:: show bgp [afi] [safi] [all] dampening dampened-paths [wide|json]
42fc5d26 2845
e6f59415
PG
2846 Display paths suppressed due to dampening of the selected afi and safi
2847 selected.
42fc5d26 2848
96f3485c
MK
2849.. index:: show bgp [afi] [safi] [all] dampening flap-statistics [wide|json]
2850.. clicmd:: show bgp [afi] [safi] [all] dampening flap-statistics [wide|json]
c1a54c05 2851
e6f59415 2852 Display flap statistics of routes of the selected afi and safi selected.
42fc5d26 2853
620e23e8
PG
2854.. index:: show bgp [afi] [safi] statistics
2855.. clicmd:: show bgp [afi] [safi] statistics
2856
2857 Display statistics of routes of the selected afi and safi.
2858
2859.. index:: show bgp statistics-all
2860.. clicmd:: show bgp statistics-all
2861
2862 Display statistics of routes of all the afi and safi.
2863
96f3485c
MK
2864.. index:: show [ip] bgp [afi] [safi] [all] cidr-only [wide|json]
2865.. clicmd:: show [ip] bgp [afi] [safi] [all] cidr-only [wide|json]
2866
2867 Display routes with non-natural netmasks.
2868
2869.. index:: show [ip] bgp [afi] [safi] [all] neighbors A.B.C.D [advertised-routes|received-routes|filtered-routes] [json|wide]
2870.. clicmd:: show [ip] bgp [afi] [safi] [all] neighbors A.B.C.D [advertised-routes|received-routes|filtered-routes] [json|wide]
2871
2872 Display the routes advertised to a BGP neighbor or received routes
2873 from neighbor or filtered routes received from neighbor based on the
2874 option specified.
2875
2876 If _wide_ option is specified, then the prefix table's width is increased
2877 to fully display the prefix and the nexthop.
2878
2879 This is especially handy dealing with IPv6 prefixes and
2880 if :clicmd:`[no] bgp default show-nexthop-hostname` is enabled.
2881
2882 If _all_ option is specified, _ip_ keyword is ignored and,
2883 routes displayed for all AFIs and SAFIs.
2884 if afi is specified, with _all_ option, routes will be displayed for
2885 each SAFI in the selcted AFI
2886
2887 If _json_ option is specified, output is displayed in JSON format.
2888
8fcedbd2 2889.. _bgp-display-routes-by-community:
42fc5d26 2890
8fcedbd2
QY
2891Displaying Routes by Community Attribute
2892----------------------------------------
42fc5d26 2893
8fcedbd2
QY
2894The following commands allow displaying routes based on their community
2895attribute.
42fc5d26 2896
96f3485c
MK
2897.. index:: show [ip] bgp <ipv4|ipv6> [all] community [wide|json]
2898.. clicmd:: show [ip] bgp <ipv4|ipv6> [all] community [wide|json]
42fc5d26 2899
96f3485c
MK
2900.. index:: show [ip] bgp <ipv4|ipv6> [all] community COMMUNITY [wide|json]
2901.. clicmd:: show [ip] bgp <ipv4|ipv6> [all] community COMMUNITY [wide|json]
42fc5d26 2902
96f3485c
MK
2903.. index:: show [ip] bgp <ipv4|ipv6> [all] community COMMUNITY exact-match [wide|json]
2904.. clicmd:: show [ip] bgp <ipv4|ipv6> [all] community COMMUNITY exact-match [wide|json]
76bd1499 2905
8fcedbd2
QY
2906 These commands display BGP routes which have the community attribute.
2907 attribute. When ``COMMUNITY`` is specified, BGP routes that match that
2908 community are displayed. When `exact-match` is specified, it display only
2909 routes that have an exact match.
c3c5a71f 2910
8fcedbd2
QY
2911.. index:: show [ip] bgp <ipv4|ipv6> community-list WORD
2912.. clicmd:: show [ip] bgp <ipv4|ipv6> community-list WORD
42fc5d26 2913
8fcedbd2
QY
2914.. index:: show [ip] bgp <ipv4|ipv6> community-list WORD exact-match
2915.. clicmd:: show [ip] bgp <ipv4|ipv6> community-list WORD exact-match
42fc5d26 2916
8fcedbd2
QY
2917 These commands display BGP routes for the address family specified that
2918 match the specified community list. When `exact-match` is specified, it
2919 displays only routes that have an exact match.
42fc5d26 2920
96f3485c
MK
2921 If _wide_ option is specified, then the prefix table's width is increased
2922 to fully display the prefix and the nexthop.
2923
2924 This is especially handy dealing with IPv6 prefixes and
2925 if :clicmd:`[no] bgp default show-nexthop-hostname` is enabled.
2926
2927 If _all_ option is specified, _ip_ keyword is ignored and,
2928 routes displayed for all AFIs and SAFIs.
2929 if afi is specified, with _all_ option, routes will be displayed for
2930 each SAFI in the selcted AFI
2931
2932 If _json_ option is specified, output is displayed in JSON format.
2933
36a206db 2934.. _bgp-display-routes-by-lcommunity:
2935
2936Displaying Routes by Large Community Attribute
2937----------------------------------------------
2938
ac2201bb 2939The following commands allow displaying routes based on their
36a206db 2940large community attribute.
2941
2942.. index:: show [ip] bgp <ipv4|ipv6> large-community
2943.. clicmd:: show [ip] bgp <ipv4|ipv6> large-community
2944
2945.. index:: show [ip] bgp <ipv4|ipv6> large-community LARGE-COMMUNITY
2946.. clicmd:: show [ip] bgp <ipv4|ipv6> large-community LARGE-COMMUNITY
2947
2948.. index:: show [ip] bgp <ipv4|ipv6> large-community LARGE-COMMUNITY exact-match
2949.. clicmd:: show [ip] bgp <ipv4|ipv6> large-community LARGE-COMMUNITY exact-match
2950
2951.. index:: show [ip] bgp <ipv4|ipv6> large-community LARGE-COMMUNITY json
2952.. clicmd:: show [ip] bgp <ipv4|ipv6> large-community LARGE-COMMUNITY json
2953
2954 These commands display BGP routes which have the large community attribute.
2955 attribute. When ``LARGE-COMMUNITY`` is specified, BGP routes that match that
ac2201bb
DA
2956 large community are displayed. When `exact-match` is specified, it display
2957 only routes that have an exact match. When `json` is specified, it display
36a206db 2958 routes in json format.
2959
2960.. index:: show [ip] bgp <ipv4|ipv6> large-community-list WORD
2961.. clicmd:: show [ip] bgp <ipv4|ipv6> large-community-list WORD
2962
2963.. index:: show [ip] bgp <ipv4|ipv6> large-community-list WORD exact-match
2964.. clicmd:: show [ip] bgp <ipv4|ipv6> large-community-list WORD exact-match
2965
2966.. index:: show [ip] bgp <ipv4|ipv6> large-community-list WORD json
2967.. clicmd:: show [ip] bgp <ipv4|ipv6> large-community-list WORD json
2968
2969 These commands display BGP routes for the address family specified that
ac2201bb
DA
2970 match the specified large community list. When `exact-match` is specified,
2971 it displays only routes that have an exact match. When `json` is specified,
36a206db 2972 it display routes in json format.
2973
8fcedbd2 2974.. _bgp-display-routes-by-as-path:
42fc5d26 2975
36a206db 2976
8fcedbd2
QY
2977Displaying Routes by AS Path
2978----------------------------
42fc5d26 2979
8fcedbd2
QY
2980.. index:: show bgp ipv4|ipv6 regexp LINE
2981.. clicmd:: show bgp ipv4|ipv6 regexp LINE
76bd1499 2982
8fcedbd2
QY
2983 This commands displays BGP routes that matches a regular
2984 expression `line` (:ref:`bgp-regular-expressions`).
2985
e6f59415
PG
2986.. index:: show [ip] bgp ipv4 vpn
2987.. clicmd:: show [ip] bgp ipv4 vpn
8fcedbd2 2988
e6f59415
PG
2989.. index:: show [ip] bgp ipv6 vpn
2990.. clicmd:: show [ip] bgp ipv6 vpn
8fcedbd2
QY
2991
2992 Print active IPV4 or IPV6 routes advertised via the VPN SAFI.
2993
2994.. index:: show bgp ipv4 vpn summary
2995.. clicmd:: show bgp ipv4 vpn summary
2996
2997.. index:: show bgp ipv6 vpn summary
2998.. clicmd:: show bgp ipv6 vpn summary
2999
3000 Print a summary of neighbor connections for the specified AFI/SAFI combination.
3001
09d78f10
DS
3002Displaying Update Group Information
3003-----------------------------------
3004
6c5be52a
SR
3005.. index:: show bgp update-groups SUBGROUP-ID [advertise-queue|advertised-routes|packet-queue]
3006.. clicmd:: show bgp update-groups [advertise-queue|advertised-routes|packet-queue]
09d78f10
DS
3007
3008 Display Information about each individual update-group being used.
3009 If SUBGROUP-ID is specified only display about that particular group. If
3010 advertise-queue is specified the list of routes that need to be sent
3011 to the peers in the update-group is displayed, advertised-routes means
a64e0ee5 3012 the list of routes we have sent to the peers in the update-group and
09d78f10
DS
3013 packet-queue specifies the list of packets in the queue to be sent.
3014
6c5be52a
SR
3015.. index:: show bgp update-groups statistics
3016.. clicmd:: show bgp update-groups statistics
09d78f10
DS
3017
3018 Display Information about update-group events in FRR.
8fcedbd2
QY
3019
3020.. _bgp-route-reflector:
3021
3022Route Reflector
3023===============
3024
749afd7d
RF
3025BGP routers connected inside the same AS through BGP belong to an internal
3026BGP session, or IBGP. In order to prevent routing table loops, IBGP does not
3027advertise IBGP-learned routes to other routers in the same session. As such,
3028IBGP requires a full mesh of all peers. For large networks, this quickly becomes
3029unscalable. Introducing route reflectors removes the need for the full-mesh.
8fcedbd2 3030
749afd7d
RF
3031When route reflectors are configured, these will reflect the routes announced
3032by the peers configured as clients. A route reflector client is configured
3033with:
8fcedbd2
QY
3034
3035.. index:: neighbor PEER route-reflector-client
3036.. clicmd:: neighbor PEER route-reflector-client
3037
3038.. index:: no neighbor PEER route-reflector-client
3039.. clicmd:: no neighbor PEER route-reflector-client
c3c5a71f 3040
749afd7d
RF
3041To avoid single points of failure, multiple route reflectors can be configured.
3042
3043A cluster is a collection of route reflectors and their clients, and is used
3044by route reflectors to avoid looping.
3045
3046.. index:: bgp cluster-id A.B.C.D
3047.. clicmd:: bgp cluster-id A.B.C.D
42fc5d26 3048
0efdf0fe 3049.. _routing-policy:
42fc5d26 3050
8fcedbd2
QY
3051Routing Policy
3052==============
42fc5d26 3053
4da7fda3 3054You can set different routing policy for a peer. For example, you can set
9eb95b3b
QY
3055different filter for a peer.
3056
3057.. code-block:: frr
c1a54c05 3058
c1a54c05
QY
3059 !
3060 router bgp 1 view 1
3061 neighbor 10.0.0.1 remote-as 2
3062 address-family ipv4 unicast
3063 neighbor 10.0.0.1 distribute-list 1 in
3064 exit-address-family
3065 !
3066 router bgp 1 view 2
3067 neighbor 10.0.0.1 remote-as 2
3068 address-family ipv4 unicast
3069 neighbor 10.0.0.1 distribute-list 2 in
3070 exit-address-family
c3c5a71f 3071
4da7fda3
QY
3072This means BGP update from a peer 10.0.0.1 goes to both BGP view 1 and view 2.
3073When the update is inserted into view 1, distribute-list 1 is applied. On the
3074other hand, when the update is inserted into view 2, distribute-list 2 is
3075applied.
42fc5d26 3076
42fc5d26 3077
0efdf0fe 3078.. _bgp-regular-expressions:
42fc5d26
QY
3079
3080BGP Regular Expressions
3081=======================
3082
8fcedbd2
QY
3083BGP regular expressions are based on :t:`POSIX 1003.2` regular expressions. The
3084following description is just a quick subset of the POSIX regular expressions.
42fc5d26
QY
3085
3086
8fcedbd2 3087.\*
c1a54c05 3088 Matches any single character.
42fc5d26 3089
8fcedbd2 3090\*
c1a54c05 3091 Matches 0 or more occurrences of pattern.
42fc5d26 3092
8fcedbd2 3093\+
c1a54c05 3094 Matches 1 or more occurrences of pattern.
42fc5d26
QY
3095
3096?
c1a54c05 3097 Match 0 or 1 occurrences of pattern.
42fc5d26
QY
3098
3099^
c1a54c05 3100 Matches the beginning of the line.
42fc5d26
QY
3101
3102$
c1a54c05 3103 Matches the end of the line.
42fc5d26
QY
3104
3105_
8fcedbd2
QY
3106 The ``_`` character has special meanings in BGP regular expressions. It
3107 matches to space and comma , and AS set delimiter ``{`` and ``}`` and AS
3108 confederation delimiter ``(`` and ``)``. And it also matches to the
3109 beginning of the line and the end of the line. So ``_`` can be used for AS
3110 value boundaries match. This character technically evaluates to
3111 ``(^|[,{}()]|$)``.
42fc5d26 3112
42fc5d26 3113
c1a54c05 3114.. _bgp-configuration-examples:
42fc5d26 3115
8fcedbd2
QY
3116Miscellaneous Configuration Examples
3117====================================
42fc5d26 3118
9eb95b3b
QY
3119Example of a session to an upstream, advertising only one prefix to it.
3120
3121.. code-block:: frr
42fc5d26 3122
c1a54c05
QY
3123 router bgp 64512
3124 bgp router-id 10.236.87.1
3125 neighbor upstream peer-group
3126 neighbor upstream remote-as 64515
3127 neighbor upstream capability dynamic
3128 neighbor 10.1.1.1 peer-group upstream
3129 neighbor 10.1.1.1 description ACME ISP
c3c5a71f 3130
c1a54c05
QY
3131 address-family ipv4 unicast
3132 network 10.236.87.0/24
3133 neighbor upstream prefix-list pl-allowed-adv out
3134 exit-address-family
3135 !
3136 ip prefix-list pl-allowed-adv seq 5 permit 82.195.133.0/25
3137 ip prefix-list pl-allowed-adv seq 10 deny any
42fc5d26 3138
aa9eafa4
QY
3139A more complex example including upstream, peer and customer sessions
3140advertising global prefixes and NO_EXPORT prefixes and providing actions for
3141customer routes based on community values. Extensive use is made of route-maps
3142and the 'call' feature to support selective advertising of prefixes. This
3143example is intended as guidance only, it has NOT been tested and almost
3144certainly contains silly mistakes, if not serious flaws.
42fc5d26 3145
9eb95b3b 3146.. code-block:: frr
42fc5d26 3147
c1a54c05
QY
3148 router bgp 64512
3149 bgp router-id 10.236.87.1
3150 neighbor upstream capability dynamic
3151 neighbor cust capability dynamic
3152 neighbor peer capability dynamic
3153 neighbor 10.1.1.1 remote-as 64515
3154 neighbor 10.1.1.1 peer-group upstream
3155 neighbor 10.2.1.1 remote-as 64516
3156 neighbor 10.2.1.1 peer-group upstream
3157 neighbor 10.3.1.1 remote-as 64517
3158 neighbor 10.3.1.1 peer-group cust-default
3159 neighbor 10.3.1.1 description customer1
3160 neighbor 10.4.1.1 remote-as 64518
3161 neighbor 10.4.1.1 peer-group cust
3162 neighbor 10.4.1.1 description customer2
3163 neighbor 10.5.1.1 remote-as 64519
3164 neighbor 10.5.1.1 peer-group peer
3165 neighbor 10.5.1.1 description peer AS 1
3166 neighbor 10.6.1.1 remote-as 64520
3167 neighbor 10.6.1.1 peer-group peer
3168 neighbor 10.6.1.1 description peer AS 2
3169
3170 address-family ipv4 unicast
3171 network 10.123.456.0/24
3172 network 10.123.456.128/25 route-map rm-no-export
3173 neighbor upstream route-map rm-upstream-out out
3174 neighbor cust route-map rm-cust-in in
3175 neighbor cust route-map rm-cust-out out
3176 neighbor cust send-community both
3177 neighbor peer route-map rm-peer-in in
3178 neighbor peer route-map rm-peer-out out
3179 neighbor peer send-community both
3180 neighbor 10.3.1.1 prefix-list pl-cust1-network in
3181 neighbor 10.4.1.1 prefix-list pl-cust2-network in
3182 neighbor 10.5.1.1 prefix-list pl-peer1-network in
3183 neighbor 10.6.1.1 prefix-list pl-peer2-network in
3184 exit-address-family
3185 !
3186 ip prefix-list pl-default permit 0.0.0.0/0
3187 !
3188 ip prefix-list pl-upstream-peers permit 10.1.1.1/32
3189 ip prefix-list pl-upstream-peers permit 10.2.1.1/32
3190 !
3191 ip prefix-list pl-cust1-network permit 10.3.1.0/24
3192 ip prefix-list pl-cust1-network permit 10.3.2.0/24
3193 !
3194 ip prefix-list pl-cust2-network permit 10.4.1.0/24
3195 !
3196 ip prefix-list pl-peer1-network permit 10.5.1.0/24
3197 ip prefix-list pl-peer1-network permit 10.5.2.0/24
3198 ip prefix-list pl-peer1-network permit 192.168.0.0/24
3199 !
3200 ip prefix-list pl-peer2-network permit 10.6.1.0/24
3201 ip prefix-list pl-peer2-network permit 10.6.2.0/24
3202 ip prefix-list pl-peer2-network permit 192.168.1.0/24
3203 ip prefix-list pl-peer2-network permit 192.168.2.0/24
3204 ip prefix-list pl-peer2-network permit 172.16.1/24
3205 !
9b6fddd4
DS
3206 bgp as-path access-list asp-own-as permit ^$
3207 bgp as-path access-list asp-own-as permit _64512_
c1a54c05
QY
3208 !
3209 ! #################################################################
3210 ! Match communities we provide actions for, on routes receives from
3211 ! customers. Communities values of <our-ASN>:X, with X, have actions:
3212 !
3213 ! 100 - blackhole the prefix
3214 ! 200 - set no_export
3215 ! 300 - advertise only to other customers
3216 ! 400 - advertise only to upstreams
3217 ! 500 - set no_export when advertising to upstreams
3218 ! 2X00 - set local_preference to X00
3219 !
3220 ! blackhole the prefix of the route
a64e0ee5 3221 bgp community-list standard cm-blackhole permit 64512:100
c1a54c05
QY
3222 !
3223 ! set no-export community before advertising
a64e0ee5 3224 bgp community-list standard cm-set-no-export permit 64512:200
c1a54c05
QY
3225 !
3226 ! advertise only to other customers
a64e0ee5 3227 bgp community-list standard cm-cust-only permit 64512:300
c1a54c05
QY
3228 !
3229 ! advertise only to upstreams
a64e0ee5 3230 bgp community-list standard cm-upstream-only permit 64512:400
c1a54c05
QY
3231 !
3232 ! advertise to upstreams with no-export
a64e0ee5 3233 bgp community-list standard cm-upstream-noexport permit 64512:500
c1a54c05
QY
3234 !
3235 ! set local-pref to least significant 3 digits of the community
a64e0ee5
DA
3236 bgp community-list standard cm-prefmod-100 permit 64512:2100
3237 bgp community-list standard cm-prefmod-200 permit 64512:2200
3238 bgp community-list standard cm-prefmod-300 permit 64512:2300
3239 bgp community-list standard cm-prefmod-400 permit 64512:2400
3240 bgp community-list expanded cme-prefmod-range permit 64512:2...
c1a54c05
QY
3241 !
3242 ! Informational communities
3243 !
3244 ! 3000 - learned from upstream
3245 ! 3100 - learned from customer
3246 ! 3200 - learned from peer
3247 !
a64e0ee5
DA
3248 bgp community-list standard cm-learnt-upstream permit 64512:3000
3249 bgp community-list standard cm-learnt-cust permit 64512:3100
3250 bgp community-list standard cm-learnt-peer permit 64512:3200
c1a54c05
QY
3251 !
3252 ! ###################################################################
3253 ! Utility route-maps
3254 !
3255 ! These utility route-maps generally should not used to permit/deny
3256 ! routes, i.e. they do not have meaning as filters, and hence probably
3257 ! should be used with 'on-match next'. These all finish with an empty
3258 ! permit entry so as not interfere with processing in the caller.
3259 !
3260 route-map rm-no-export permit 10
3261 set community additive no-export
3262 route-map rm-no-export permit 20
3263 !
3264 route-map rm-blackhole permit 10
f6aa36f5 3265 description blackhole, up-pref and ensure it cannot escape this AS
c1a54c05
QY
3266 set ip next-hop 127.0.0.1
3267 set local-preference 10
3268 set community additive no-export
3269 route-map rm-blackhole permit 20
3270 !
3271 ! Set local-pref as requested
3272 route-map rm-prefmod permit 10
3273 match community cm-prefmod-100
3274 set local-preference 100
3275 route-map rm-prefmod permit 20
3276 match community cm-prefmod-200
3277 set local-preference 200
3278 route-map rm-prefmod permit 30
3279 match community cm-prefmod-300
3280 set local-preference 300
3281 route-map rm-prefmod permit 40
3282 match community cm-prefmod-400
3283 set local-preference 400
3284 route-map rm-prefmod permit 50
3285 !
3286 ! Community actions to take on receipt of route.
3287 route-map rm-community-in permit 10
3288 description check for blackholing, no point continuing if it matches.
3289 match community cm-blackhole
3290 call rm-blackhole
3291 route-map rm-community-in permit 20
3292 match community cm-set-no-export
3293 call rm-no-export
3294 on-match next
3295 route-map rm-community-in permit 30
3296 match community cme-prefmod-range
3297 call rm-prefmod
3298 route-map rm-community-in permit 40
3299 !
3300 ! #####################################################################
3301 ! Community actions to take when advertising a route.
3302 ! These are filtering route-maps,
3303 !
3304 ! Deny customer routes to upstream with cust-only set.
3305 route-map rm-community-filt-to-upstream deny 10
3306 match community cm-learnt-cust
3307 match community cm-cust-only
3308 route-map rm-community-filt-to-upstream permit 20
3309 !
3310 ! Deny customer routes to other customers with upstream-only set.
3311 route-map rm-community-filt-to-cust deny 10
3312 match community cm-learnt-cust
3313 match community cm-upstream-only
3314 route-map rm-community-filt-to-cust permit 20
3315 !
3316 ! ###################################################################
3317 ! The top-level route-maps applied to sessions. Further entries could
3318 ! be added obviously..
3319 !
3320 ! Customers
3321 route-map rm-cust-in permit 10
3322 call rm-community-in
3323 on-match next
3324 route-map rm-cust-in permit 20
3325 set community additive 64512:3100
3326 route-map rm-cust-in permit 30
3327 !
3328 route-map rm-cust-out permit 10
3329 call rm-community-filt-to-cust
3330 on-match next
3331 route-map rm-cust-out permit 20
3332 !
3333 ! Upstream transit ASes
3334 route-map rm-upstream-out permit 10
3335 description filter customer prefixes which are marked cust-only
3336 call rm-community-filt-to-upstream
3337 on-match next
3338 route-map rm-upstream-out permit 20
3339 description only customer routes are provided to upstreams/peers
3340 match community cm-learnt-cust
3341 !
3342 ! Peer ASes
3343 ! outbound policy is same as for upstream
3344 route-map rm-peer-out permit 10
3345 call rm-upstream-out
3346 !
3347 route-map rm-peer-in permit 10
3348 set community additive 64512:3200
c3c5a71f 3349
8fcedbd2
QY
3350
3351Example of how to set up a 6-Bone connection.
3352
3353.. code-block:: frr
3354
3355 ! bgpd configuration
3356 ! ==================
3357 !
3358 ! MP-BGP configuration
3359 !
3360 router bgp 7675
3361 bgp router-id 10.0.0.1
3362 neighbor 3ffe:1cfa:0:2:2a0:c9ff:fe9e:f56 remote-as `as-number`
3363 !
3364 address-family ipv6
3365 network 3ffe:506::/32
3366 neighbor 3ffe:1cfa:0:2:2a0:c9ff:fe9e:f56 activate
3367 neighbor 3ffe:1cfa:0:2:2a0:c9ff:fe9e:f56 route-map set-nexthop out
3368 neighbor 3ffe:1cfa:0:2:2c0:4fff:fe68:a231 remote-as `as-number`
3369 neighbor 3ffe:1cfa:0:2:2c0:4fff:fe68:a231 route-map set-nexthop out
3370 exit-address-family
3371 !
3372 ipv6 access-list all permit any
3373 !
3374 ! Set output nexthop address.
3375 !
3376 route-map set-nexthop permit 10
3377 match ipv6 address all
3378 set ipv6 nexthop global 3ffe:1cfa:0:2:2c0:4fff:fe68:a225
3379 set ipv6 nexthop local fe80::2c0:4fff:fe68:a225
3380 !
3381 log file bgpd.log
3382 !
3383
3384
9e146a81 3385.. include:: routeserver.rst
f3817860
QY
3386
3387.. include:: rpki.rst
c1a54c05 3388
ed647ed2 3389.. include:: wecmp_linkbw.rst
3390
00458d01
PG
3391.. include:: flowspec.rst
3392
d1e7591e 3393.. [#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
3394.. [bgp-route-osci-cond] McPherson, D. and Gill, V. and Walton, D., "Border Gateway Protocol (BGP) Persistent Route Oscillation Condition", IETF RFC3345
3395.. [stable-flexible-ibgp] Flavel, A. and M. Roughan, "Stable and flexible iBGP", ACM SIGCOMM 2009
3396.. [ibgp-correctness] Griffin, T. and G. Wilfong, "On the correctness of IBGP configuration", ACM SIGCOMM 2002