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