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