]> git.proxmox.com Git - mirror_frr.git/blame - doc/user/bgp.rst
bgpd : Support for exact-match in match clause for lcommunity
[mirror_frr.git] / doc / user / bgp.rst
CommitLineData
0efdf0fe 1.. _bgp:
42fc5d26
QY
2
3***
4BGP
5***
6
8fcedbd2 7:abbr:`BGP` stands for Border Gateway Protocol. The latest BGP version is 4.
d1e7591e 8BGP-4 is one of the Exterior Gateway Protocols and the de facto standard
8fcedbd2
QY
9interdomain routing protocol. BGP-4 is described in :rfc:`1771` and updated by
10:rfc:`4271`. :rfc:`2858` adds multiprotocol support to BGP-4.
42fc5d26 11
0efdf0fe 12.. _starting-bgp:
42fc5d26
QY
13
14Starting BGP
15============
16
8fcedbd2
QY
17The default configuration file of *bgpd* is :file:`bgpd.conf`. *bgpd* searches
18the current directory first, followed by |INSTALL_PREFIX_ETC|/bgpd.conf. All of
19*bgpd*'s commands must be configured in :file:`bgpd.conf` when the integrated
20config is not being used.
42fc5d26 21
c1a54c05 22*bgpd* specific invocation options are described below. Common options may also
0efdf0fe 23be specified (:ref:`common-invocation-options`).
42fc5d26 24
c1a54c05 25.. program:: bgpd
42fc5d26 26
c9365894 27.. option:: -p, --bgp_port <port>
42fc5d26 28
db759bb0 29 Set the bgp protocol's port number. When port number is 0, that means do not
30 listen bgp port.
42fc5d26 31
c9365894 32.. option:: -l, --listenon
42fc5d26 33
c0868e8b
QY
34 Specify a specific IP address for bgpd to listen on, rather than its default
35 of ``0.0.0.0`` / ``::``. This can be useful to constrain bgpd to an internal
36 address, or to run multiple bgpd processes on one host.
42fc5d26 37
8fcedbd2 38.. _bgp-basic-concepts:
42fc5d26 39
8fcedbd2
QY
40Basic Concepts
41==============
42fc5d26 42
8fcedbd2 43.. _bgp-autonomous-systems:
c3c5a71f 44
8fcedbd2
QY
45Autonomous Systems
46------------------
42fc5d26 47
c0868e8b
QY
48From :rfc:`1930`:
49
50 An AS is a connected group of one or more IP prefixes run by one or more
51 network operators which has a SINGLE and CLEARLY DEFINED routing policy.
52
53Each AS has an identifying number associated with it called an :abbr:`ASN
54(Autonomous System Number)`. This is a two octet value ranging in value from 1
55to 65535. The AS numbers 64512 through 65535 are defined as private AS numbers.
56Private AS numbers must not be advertised on the global Internet.
57
58The :abbr:`ASN (Autonomous System Number)` is one of the essential elements of
8fcedbd2 59BGP. BGP is a distance vector routing protocol, and the AS-Path framework
c0868e8b 60provides distance vector metric and loop detection to BGP.
42fc5d26 61
c0868e8b 62.. seealso:: :rfc:`1930`
42fc5d26 63
8fcedbd2 64.. _bgp-address-families:
42fc5d26 65
8fcedbd2
QY
66Address Families
67----------------
42fc5d26 68
c0868e8b
QY
69Multiprotocol extensions enable BGP to carry routing information for multiple
70network layer protocols. BGP supports an Address Family Identifier (AFI) for
71IPv4 and IPv6. Support is also provided for multiple sets of per-AFI
72information via the BGP Subsequent Address Family Identifier (SAFI). FRR
73supports SAFIs for unicast information, labeled information (:rfc:`3107` and
74:rfc:`8277`), and Layer 3 VPN information (:rfc:`4364` and :rfc:`4659`).
c3c5a71f 75
8fcedbd2 76.. _bgp-route-selection:
42fc5d26 77
8fcedbd2
QY
78Route Selection
79---------------
42fc5d26 80
8fcedbd2
QY
81The route selection process used by FRR's BGP implementation uses the following
82decision criterion, starting at the top of the list and going towards the
83bottom until one of the factors can be used.
42fc5d26 84
8fcedbd2 851. **Weight check**
42fc5d26 86
c1a54c05 87 Prefer higher local weight routes to lower routes.
42fc5d26 88
8fcedbd2
QY
892. **Local preference check**
90
c1a54c05 91 Prefer higher local preference routes to lower.
42fc5d26 92
8fcedbd2
QY
933. **Local route check**
94
c1a54c05 95 Prefer local routes (statics, aggregates, redistributed) to received routes.
42fc5d26 96
8fcedbd2
QY
974. **AS path length check**
98
c1a54c05 99 Prefer shortest hop-count AS_PATHs.
42fc5d26 100
8fcedbd2
QY
1015. **Origin check**
102
c1a54c05
QY
103 Prefer the lowest origin type route. That is, prefer IGP origin routes to
104 EGP, to Incomplete routes.
42fc5d26 105
8fcedbd2
QY
1066. **MED check**
107
c1a54c05 108 Where routes with a MED were received from the same AS, prefer the route
0efdf0fe 109 with the lowest MED. :ref:`bgp-med`.
42fc5d26 110
8fcedbd2
QY
1117. **External check**
112
c1a54c05
QY
113 Prefer the route received from an external, eBGP peer over routes received
114 from other types of peers.
42fc5d26 115
8fcedbd2
QY
1168. **IGP cost check**
117
c1a54c05 118 Prefer the route with the lower IGP cost.
42fc5d26 119
8fcedbd2
QY
1209. **Multi-path check**
121
c1a54c05
QY
122 If multi-pathing is enabled, then check whether the routes not yet
123 distinguished in preference may be considered equal. If
9e146a81 124 :clicmd:`bgp bestpath as-path multipath-relax` is set, all such routes are
c1a54c05
QY
125 considered equal, otherwise routes received via iBGP with identical AS_PATHs
126 or routes received from eBGP neighbours in the same AS are considered equal.
42fc5d26 127
8fcedbd2
QY
12810. **Already-selected external check**
129
07738543
QY
130 Where both routes were received from eBGP peers, then prefer the route
131 which is already selected. Note that this check is not applied if
132 :clicmd:`bgp bestpath compare-routerid` is configured. This check can
133 prevent some cases of oscillation.
134
8fcedbd2
QY
13511. **Router-ID check**
136
07738543
QY
137 Prefer the route with the lowest `router-ID`. If the route has an
138 `ORIGINATOR_ID` attribute, through iBGP reflection, then that router ID is
139 used, otherwise the `router-ID` of the peer the route was received from is
140 used.
141
8fcedbd2
QY
14212. **Cluster-List length check**
143
07738543
QY
144 The route with the shortest cluster-list length is used. The cluster-list
145 reflects the iBGP reflection path the route has taken.
146
8fcedbd2
QY
14713. **Peer address**
148
07738543
QY
149 Prefer the route received from the peer with the higher transport layer
150 address, as a last-resort tie-breaker.
42fc5d26 151
8fcedbd2
QY
152.. _bgp-capability-negotiation:
153
154Capability Negotiation
155----------------------
156
157When adding IPv6 routing information exchange feature to BGP. There were some
158proposals. :abbr:`IETF (Internet Engineering Task Force)`
159:abbr:`IDR (Inter Domain Routing)` adopted a proposal called Multiprotocol
160Extension for BGP. The specification is described in :rfc:`2283`. The protocol
161does not define new protocols. It defines new attributes to existing BGP. When
162it is used exchanging IPv6 routing information it is called BGP-4+. When it is
163used for exchanging multicast routing information it is called MBGP.
164
165*bgpd* supports Multiprotocol Extension for BGP. So if a remote peer supports
166the protocol, *bgpd* can exchange IPv6 and/or multicast routing information.
167
168Traditional BGP did not have the feature to detect a remote peer's
169capabilities, e.g. whether it can handle prefix types other than IPv4 unicast
170routes. This was a big problem using Multiprotocol Extension for BGP in an
171operational network. :rfc:`2842` adopted a feature called Capability
172Negotiation. *bgpd* use this Capability Negotiation to detect the remote peer's
173capabilities. If a peer is only configured as an IPv4 unicast neighbor, *bgpd*
174does not send these Capability Negotiation packets (at least not unless other
175optional BGP features require capability negotiation).
176
177By default, FRR will bring up peering with minimal common capability for the
178both sides. For example, if the local router has unicast and multicast
179capabilities and the remote router only has unicast capability the local router
180will establish the connection with unicast only capability. When there are no
181common capabilities, FRR sends Unsupported Capability error and then resets the
182connection.
183
8fcedbd2
QY
184.. _bgp-router-configuration:
185
186BGP Router Configuration
187========================
188
189ASN and Router ID
190-----------------
191
192First of all you must configure BGP router with the :clicmd:`router bgp ASN`
193command. The AS number is an identifier for the autonomous system. The BGP
194protocol uses the AS number for detecting whether the BGP connection is
195internal or external.
196
197.. index:: router bgp ASN
198.. clicmd:: router bgp ASN
199
200 Enable a BGP protocol process with the specified ASN. After
201 this statement you can input any `BGP Commands`.
202
203.. index:: no router bgp ASN
204.. clicmd:: no router bgp ASN
205
206 Destroy a BGP protocol process with the specified ASN.
207
208.. index:: bgp router-id A.B.C.D
209.. clicmd:: bgp router-id A.B.C.D
210
211 This command specifies the router-ID. If *bgpd* connects to *zebra* it gets
212 interface and address information. In that case default router ID value is
213 selected as the largest IP Address of the interfaces. When `router zebra` is
214 not enabled *bgpd* can't get interface information so `router-id` is set to
215 0.0.0.0. So please set router-id by hand.
216
c8a5e5e1
QY
217
218.. _bgp-multiple-autonomous-systems:
219
220Multiple Autonomous Systems
221---------------------------
222
223FRR's BGP implementation is capable of running multiple autonomous systems at
224once. Each configured AS corresponds to a :ref:`zebra-vrf`. In the past, to get
225the same functionality the network administrator had to run a new *bgpd*
226process; using VRFs allows multiple autonomous systems to be handled in a
227single process.
228
229When using multiple autonomous systems, all router config blocks after the
230first one must specify a VRF to be the target of BGP's route selection. This
231VRF must be unique within respect to all other VRFs being used for the same
232purpose, i.e. two different autonomous systems cannot use the same VRF.
233However, the same AS can be used with different VRFs.
234
235.. note::
236
237 The separated nature of VRFs makes it possible to peer a single *bgpd*
edde3ce9
QY
238 process to itself, on one machine. Note that this can be done fully within
239 BGP without a corresponding VRF in the kernel or Zebra, which enables some
240 practical use cases such as :ref:`route reflectors <bgp-route-reflector>`
241 and route servers.
c8a5e5e1
QY
242
243Configuration of additional autonomous systems, or of a router that targets a
244specific VRF, is accomplished with the following command:
245
246.. index:: router bgp ASN vrf VRFNAME
247.. clicmd:: router bgp ASN vrf VRFNAME
248
249 ``VRFNAME`` is matched against VRFs configured in the kernel. When ``vrf
250 VRFNAME`` is not specified, the BGP protocol process belongs to the default
251 VRF.
252
253An example configuration with multiple autonomous systems might look like this:
254
255.. code-block:: frr
256
257 router bgp 1
258 neighbor 10.0.0.1 remote-as 20
259 neighbor 10.0.0.2 remote-as 30
260 !
261 router bgp 2 vrf blue
262 neighbor 10.0.0.3 remote-as 40
263 neighbor 10.0.0.4 remote-as 50
264 !
265 router bgp 3 vrf red
266 neighbor 10.0.0.5 remote-as 60
267 neighbor 10.0.0.6 remote-as 70
268 ...
269
270In the past this feature done differently and the following commands were
271required to enable the functionality. They are now deprecated.
272
273.. deprecated:: 5.0
274 This command is deprecated and may be safely removed from the config.
275
276.. index:: bgp multiple-instance
277.. clicmd:: bgp multiple-instance
278
279 Enable BGP multiple instance feature. Because this is now the default
280 configuration this command will not be displayed in the running
281 configuration.
282
283.. deprecated:: 5.0
284 This command is deprecated and may be safely removed from the config.
285
286.. index:: no bgp multiple-instance
287.. clicmd:: no bgp multiple-instance
288
289 In previous versions of FRR, this command disabled the BGP multiple instance
290 feature. This functionality is automatically turned on when BGP multiple
291 instances or views exist so this command no longer does anything.
292
293.. seealso:: :ref:`bgp-vrf-route-leaking`
294.. seealso:: :ref:`zebra-vrf`
295
296
297.. _bgp-views:
298
299Views
300-----
301
302In addition to supporting multiple autonomous systems, FRR's BGP implementation
303also supports *views*.
304
305BGP views are almost the same as normal BGP processes, except that routes
195c7461
QY
306selected by BGP are not installed into the kernel routing table. Each BGP view
307provides an independent set of routing information which is only distributed
308via BGP. Multiple views can be supported, and BGP view information is always
309independent from other routing protocols and Zebra/kernel routes. BGP views use
310the core instance (i.e., default VRF) for communication with peers.
edde3ce9 311
c8a5e5e1
QY
312.. index:: router bgp AS-NUMBER view NAME
313.. clicmd:: router bgp AS-NUMBER view NAME
314
315 Make a new BGP view. You can use an arbitrary word for the ``NAME``. Routes
316 selected by the view are not installed into the kernel routing table.
317
318 With this command, you can setup Route Server like below.
319
320 .. code-block:: frr
321
322 !
323 router bgp 1 view 1
324 neighbor 10.0.0.1 remote-as 2
325 neighbor 10.0.0.2 remote-as 3
326 !
327 router bgp 2 view 2
328 neighbor 10.0.0.3 remote-as 4
329 neighbor 10.0.0.4 remote-as 5
330
331.. index:: show [ip] bgp view NAME
332.. clicmd:: show [ip] bgp view NAME
333
334 Display the routing table of BGP view ``NAME``.
335
336
8fcedbd2
QY
337Route Selection
338---------------
c3c5a71f 339
c1a54c05 340.. index:: bgp bestpath as-path confed
29adcd50 341.. clicmd:: bgp bestpath as-path confed
42fc5d26 342
c1a54c05
QY
343 This command specifies that the length of confederation path sets and
344 sequences should should be taken into account during the BGP best path
345 decision process.
42fc5d26 346
c3c5a71f 347.. index:: bgp bestpath as-path multipath-relax
29adcd50 348.. clicmd:: bgp bestpath as-path multipath-relax
42fc5d26 349
c1a54c05
QY
350 This command specifies that BGP decision process should consider paths
351 of equal AS_PATH length candidates for multipath computation. Without
352 the knob, the entire AS_PATH must match for multipath computation.
c3c5a71f 353
29adcd50 354.. clicmd:: bgp bestpath compare-routerid
42fc5d26 355
c1a54c05
QY
356 Ensure that when comparing routes where both are equal on most metrics,
357 including local-pref, AS_PATH length, IGP cost, MED, that the tie is broken
358 based on router-ID.
42fc5d26 359
c1a54c05
QY
360 If this option is enabled, then the already-selected check, where
361 already selected eBGP routes are preferred, is skipped.
42fc5d26 362
c1a54c05
QY
363 If a route has an `ORIGINATOR_ID` attribute because it has been reflected,
364 that `ORIGINATOR_ID` will be used. Otherwise, the router-ID of the peer the
365 route was received from will be used.
42fc5d26 366
c1a54c05
QY
367 The advantage of this is that the route-selection (at this point) will be
368 more deterministic. The disadvantage is that a few or even one lowest-ID
d1e7591e 369 router may attract all traffic to otherwise-equal paths because of this
c1a54c05
QY
370 check. It may increase the possibility of MED or IGP oscillation, unless
371 other measures were taken to avoid these. The exact behaviour will be
372 sensitive to the iBGP and reflection topology.
42fc5d26 373
8fcedbd2
QY
374.. _bgp-distance:
375
376Administrative Distance Metrics
377-------------------------------
378
379.. index:: distance bgp (1-255) (1-255) (1-255)
380.. clicmd:: distance bgp (1-255) (1-255) (1-255)
381
382 This command change distance value of BGP. The arguments are the distance
383 values for for external routes, internal routes and local routes
384 respectively.
385
386.. index:: distance (1-255) A.B.C.D/M
387.. clicmd:: distance (1-255) A.B.C.D/M
388
389.. index:: distance (1-255) A.B.C.D/M WORD
390.. clicmd:: distance (1-255) A.B.C.D/M WORD
391
392 Sets the administrative distance for a particular route.
42fc5d26 393
0efdf0fe 394.. _bgp-route-flap-dampening:
42fc5d26 395
8fcedbd2
QY
396Route Flap Dampening
397--------------------
42fc5d26 398
c1a54c05
QY
399.. clicmd:: bgp dampening (1-45) (1-20000) (1-20000) (1-255)
400
c1a54c05 401 This command enables BGP route-flap dampening and specifies dampening parameters.
42fc5d26 402
c1a54c05
QY
403 half-life
404 Half-life time for the penalty
42fc5d26 405
c1a54c05
QY
406 reuse-threshold
407 Value to start reusing a route
42fc5d26 408
c1a54c05
QY
409 suppress-threshold
410 Value to start suppressing a route
42fc5d26 411
c1a54c05
QY
412 max-suppress
413 Maximum duration to suppress a stable route
42fc5d26 414
c1a54c05
QY
415 The route-flap damping algorithm is compatible with :rfc:`2439`. The use of
416 this command is not recommended nowadays.
42fc5d26 417
c1a54c05 418.. seealso::
8fcedbd2 419 https://www.ripe.net/publications/docs/ripe-378
42fc5d26 420
0efdf0fe 421.. _bgp-med:
42fc5d26 422
8fcedbd2
QY
423Multi-Exit Discriminator
424------------------------
42fc5d26 425
8fcedbd2 426The BGP :abbr:`MED (Multi-Exit Discriminator)` attribute has properties which
c1a54c05
QY
427can cause subtle convergence problems in BGP. These properties and problems
428have proven to be hard to understand, at least historically, and may still not
429be widely understood. The following attempts to collect together and present
430what is known about MED, to help operators and FRR users in designing and
431configuring their networks.
42fc5d26 432
07a17e6d
QY
433The BGP :abbr:`MED` attribute is intended to allow one AS to indicate its
434preferences for its ingress points to another AS. The MED attribute will not be
435propagated on to another AS by the receiving AS - it is 'non-transitive' in the
436BGP sense.
42fc5d26 437
c1a54c05
QY
438E.g., if AS X and AS Y have 2 different BGP peering points, then AS X might set
439a MED of 100 on routes advertised at one and a MED of 200 at the other. When AS
440Y selects between otherwise equal routes to or via AS X, AS Y should prefer to
441take the path via the lower MED peering of 100 with AS X. Setting the MED
442allows an AS to influence the routing taken to it within another, neighbouring
443AS.
42fc5d26
QY
444
445In this use of MED it is not really meaningful to compare the MED value on
c1a54c05
QY
446routes where the next AS on the paths differs. E.g., if AS Y also had a route
447for some destination via AS Z in addition to the routes from AS X, and AS Z had
448also set a MED, it wouldn't make sense for AS Y to compare AS Z's MED values to
449those of AS X. The MED values have been set by different administrators, with
450different frames of reference.
42fc5d26
QY
451
452The default behaviour of BGP therefore is to not compare MED values across
dc1046f7 453routes received from different neighbouring ASes. In FRR this is done by
c1a54c05
QY
454comparing the neighbouring, left-most AS in the received AS_PATHs of the routes
455and only comparing MED if those are the same.
456
457Unfortunately, this behaviour of MED, of sometimes being compared across routes
458and sometimes not, depending on the properties of those other routes, means MED
459can cause the order of preference over all the routes to be undefined. That is,
460given routes A, B, and C, if A is preferred to B, and B is preferred to C, then
461a well-defined order should mean the preference is transitive (in the sense of
013f9762 462orders [#med-transitivity-rant]_) and that A would be preferred to C.
42fc5d26 463
c3c5a71f
QY
464However, when MED is involved this need not be the case. With MED it is
465possible that C is actually preferred over A. So A is preferred to B, B is
466preferred to C, but C is preferred to A. This can be true even where BGP
c1a54c05
QY
467defines a deterministic 'most preferred' route out of the full set of A,B,C.
468With MED, for any given set of routes there may be a deterministically
469preferred route, but there need not be any way to arrange them into any order
470of preference. With unmodified MED, the order of preference of routes literally
471becomes undefined.
42fc5d26 472
c3c5a71f 473That MED can induce non-transitive preferences over routes can cause issues.
c1a54c05
QY
474Firstly, it may be perceived to cause routing table churn locally at speakers;
475secondly, and more seriously, it may cause routing instability in iBGP
476topologies, where sets of speakers continually oscillate between different
477paths.
42fc5d26 478
c3c5a71f 479The first issue arises from how speakers often implement routing decisions.
c1a54c05
QY
480Though BGP defines a selection process that will deterministically select the
481same route as best at any given speaker, even with MED, that process requires
482evaluating all routes together. For performance and ease of implementation
483reasons, many implementations evaluate route preferences in a pair-wise fashion
484instead. Given there is no well-defined order when MED is involved, the best
485route that will be chosen becomes subject to implementation details, such as
486the order the routes are stored in. That may be (locally) non-deterministic,
487e.g.: it may be the order the routes were received in.
42fc5d26
QY
488
489This indeterminism may be considered undesirable, though it need not cause
c1a54c05
QY
490problems. It may mean additional routing churn is perceived, as sometimes more
491updates may be produced than at other times in reaction to some event .
42fc5d26
QY
492
493This first issue can be fixed with a more deterministic route selection that
c3c5a71f 494ensures routes are ordered by the neighbouring AS during selection.
9e146a81 495:clicmd:`bgp deterministic-med`. This may reduce the number of updates as routes
c1a54c05
QY
496are received, and may in some cases reduce routing churn. Though, it could
497equally deterministically produce the largest possible set of updates in
498response to the most common sequence of received updates.
42fc5d26
QY
499
500A deterministic order of evaluation tends to imply an additional overhead of
c3c5a71f 501sorting over any set of n routes to a destination. The implementation of
dc1046f7 502deterministic MED in FRR scales significantly worse than most sorting
c1a54c05
QY
503algorithms at present, with the number of paths to a given destination. That
504number is often low enough to not cause any issues, but where there are many
505paths, the deterministic comparison may quickly become increasingly expensive
506in terms of CPU.
507
508Deterministic local evaluation can *not* fix the second, more major, issue of
509MED however. Which is that the non-transitive preference of routes MED can
510cause may lead to routing instability or oscillation across multiple speakers
511in iBGP topologies. This can occur with full-mesh iBGP, but is particularly
512problematic in non-full-mesh iBGP topologies that further reduce the routing
513information known to each speaker. This has primarily been documented with iBGP
749afd7d
RF
514:ref:`route-reflection <bgp-route-reflector>` topologies. However, any
515route-hiding technologies potentially could also exacerbate oscillation with MED.
c1a54c05
QY
516
517This second issue occurs where speakers each have only a subset of routes, and
518there are cycles in the preferences between different combinations of routes -
519as the undefined order of preference of MED allows - and the routes are
520distributed in a way that causes the BGP speakers to 'chase' those cycles. This
521can occur even if all speakers use a deterministic order of evaluation in route
522selection.
523
524E.g., speaker 4 in AS A might receive a route from speaker 2 in AS X, and from
525speaker 3 in AS Y; while speaker 5 in AS A might receive that route from
526speaker 1 in AS Y. AS Y might set a MED of 200 at speaker 1, and 100 at speaker
5273. I.e, using ASN:ID:MED to label the speakers:
42fc5d26
QY
528
529::
530
c1a54c05
QY
531 .
532 /---------------\\
42fc5d26 533 X:2------|--A:4-------A:5--|-Y:1:200
c1a54c05
QY
534 Y:3:100--|-/ |
535 \\---------------/
c3c5a71f 536
42fc5d26 537
42fc5d26 538
c1a54c05
QY
539Assuming all other metrics are equal (AS_PATH, ORIGIN, 0 IGP costs), then based
540on the RFC4271 decision process speaker 4 will choose X:2 over Y:3:100, based
541on the lower ID of 2. Speaker 4 advertises X:2 to speaker 5. Speaker 5 will
542continue to prefer Y:1:200 based on the ID, and advertise this to speaker 4.
543Speaker 4 will now have the full set of routes, and the Y:1:200 it receives
544from 5 will beat X:2, but when speaker 4 compares Y:1:200 to Y:3:100 the MED
545check now becomes active as the ASes match, and now Y:3:100 is preferred.
546Speaker 4 therefore now advertises Y:3:100 to 5, which will also agrees that
547Y:3:100 is preferred to Y:1:200, and so withdraws the latter route from 4.
548Speaker 4 now has only X:2 and Y:3:100, and X:2 beats Y:3:100, and so speaker 4
549implicitly updates its route to speaker 5 to X:2. Speaker 5 sees that Y:1:200
550beats X:2 based on the ID, and advertises Y:1:200 to speaker 4, and the cycle
551continues.
42fc5d26
QY
552
553The root cause is the lack of a clear order of preference caused by how MED
554sometimes is and sometimes is not compared, leading to this cycle in the
555preferences between the routes:
556
557::
558
c1a54c05
QY
559 .
560 /---> X:2 ---beats---> Y:3:100 --\\
561 | |
562 | |
563 \\---beats--- Y:1:200 <---beats---/
c3c5a71f 564
42fc5d26 565
42fc5d26
QY
566
567This particular type of oscillation in full-mesh iBGP topologies can be
568avoided by speakers preferring already selected, external routes rather than
c1a54c05
QY
569choosing to update to new a route based on a post-MED metric (e.g. router-ID),
570at the cost of a non-deterministic selection process. FRR implements this, as
571do many other implementations, so long as it is not overridden by setting
9e146a81 572:clicmd:`bgp bestpath compare-routerid`, and see also
8fcedbd2 573:ref:`bgp-route-selection`.
42fc5d26
QY
574
575However, more complex and insidious cycles of oscillation are possible with
c3c5a71f 576iBGP route-reflection, which are not so easily avoided. These have been
c1a54c05
QY
577documented in various places. See, e.g.:
578
579- [bgp-route-osci-cond]_
580- [stable-flexible-ibgp]_
581- [ibgp-correctness]_
582
583for concrete examples and further references.
584
585There is as of this writing *no* known way to use MED for its original purpose;
586*and* reduce routing information in iBGP topologies; *and* be sure to avoid the
587instability problems of MED due the non-transitive routing preferences it can
588induce; in general on arbitrary networks.
589
590There may be iBGP topology specific ways to reduce the instability risks, even
591while using MED, e.g.: by constraining the reflection topology and by tuning
013f9762 592IGP costs between route-reflector clusters, see :rfc:`3345` for details. In the
c1a54c05
QY
593near future, the Add-Path extension to BGP may also solve MED oscillation while
594still allowing MED to be used as intended, by distributing "best-paths per
595neighbour AS". This would be at the cost of distributing at least as many
596routes to all speakers as a full-mesh iBGP would, if not more, while also
597imposing similar CPU overheads as the "Deterministic MED" feature at each
598Add-Path reflector.
42fc5d26
QY
599
600More generally, the instability problems that MED can introduce on more
601complex, non-full-mesh, iBGP topologies may be avoided either by:
602
013f9762 603- Setting :clicmd:`bgp always-compare-med`, however this allows MED to be compared
42fc5d26
QY
604 across values set by different neighbour ASes, which may not produce
605 coherent desirable results, of itself.
4b44467c 606- Effectively ignoring MED by setting MED to the same value (e.g.: 0) using
013f9762
QY
607 :clicmd:`set metric METRIC` on all received routes, in combination with
608 setting :clicmd:`bgp always-compare-med` on all speakers. This is the simplest
42fc5d26
QY
609 and most performant way to avoid MED oscillation issues, where an AS is happy
610 not to allow neighbours to inject this problematic metric.
611
42fc5d26
QY
612As MED is evaluated after the AS_PATH length check, another possible use for
613MED is for intra-AS steering of routes with equal AS_PATH length, as an
c1a54c05
QY
614extension of the last case above. As MED is evaluated before IGP metric, this
615can allow cold-potato routing to be implemented to send traffic to preferred
616hand-offs with neighbours, rather than the closest hand-off according to the
617IGP metric.
618
619Note that even if action is taken to address the MED non-transitivity issues,
620other oscillations may still be possible. E.g., on IGP cost if iBGP and IGP
621topologies are at cross-purposes with each other - see the Flavel and Roughan
622paper above for an example. Hence the guideline that the iBGP topology should
623follow the IGP topology.
624
c3c5a71f 625.. index:: bgp deterministic-med
29adcd50 626.. clicmd:: bgp deterministic-med
42fc5d26 627
c1a54c05
QY
628 Carry out route-selection in way that produces deterministic answers
629 locally, even in the face of MED and the lack of a well-defined order of
630 preference it can induce on routes. Without this option the preferred route
631 with MED may be determined largely by the order that routes were received
632 in.
42fc5d26 633
c1a54c05
QY
634 Setting this option will have a performance cost that may be noticeable when
635 there are many routes for each destination. Currently in FRR it is
636 implemented in a way that scales poorly as the number of routes per
637 destination increases.
42fc5d26 638
c1a54c05 639 The default is that this option is not set.
42fc5d26
QY
640
641Note that there are other sources of indeterminism in the route selection
642process, specifically, the preference for older and already selected routes
8fcedbd2 643from eBGP peers, :ref:`bgp-route-selection`.
42fc5d26 644
c3c5a71f 645.. index:: bgp always-compare-med
29adcd50 646.. clicmd:: bgp always-compare-med
42fc5d26 647
c1a54c05
QY
648 Always compare the MED on routes, even when they were received from
649 different neighbouring ASes. Setting this option makes the order of
650 preference of routes more defined, and should eliminate MED induced
651 oscillations.
42fc5d26 652
c1a54c05 653 If using this option, it may also be desirable to use
9e146a81 654 :clicmd:`set metric METRIC` to set MED to 0 on routes received from external
c1a54c05 655 neighbours.
42fc5d26 656
9e146a81
QY
657 This option can be used, together with :clicmd:`set metric METRIC` to use
658 MED as an intra-AS metric to steer equal-length AS_PATH routes to, e.g.,
659 desired exit points.
42fc5d26 660
0efdf0fe 661.. _bgp-network:
42fc5d26 662
8fcedbd2
QY
663Networks
664--------
42fc5d26 665
c1a54c05
QY
666.. index:: network A.B.C.D/M
667.. clicmd:: network A.B.C.D/M
42fc5d26 668
9eb95b3b 669 This command adds the announcement network.
c3c5a71f 670
9eb95b3b
QY
671 .. code-block:: frr
672
673 router bgp 1
674 address-family ipv4 unicast
675 network 10.0.0.0/8
676 exit-address-family
42fc5d26 677
c1a54c05
QY
678 This configuration example says that network 10.0.0.0/8 will be
679 announced to all neighbors. Some vendors' routers don't advertise
680 routes if they aren't present in their IGP routing tables; `bgpd`
681 doesn't care about IGP routes when announcing its routes.
c3c5a71f 682
c1a54c05
QY
683.. index:: no network A.B.C.D/M
684.. clicmd:: no network A.B.C.D/M
42fc5d26 685
8fcedbd2 686.. _bgp-route-aggregation:
42fc5d26
QY
687
688Route Aggregation
689-----------------
690
5101fece 691.. _bgp-route-aggregation-ipv4:
692
693Route Aggregation-IPv4 Address Family
694^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
695
c1a54c05
QY
696.. index:: aggregate-address A.B.C.D/M
697.. clicmd:: aggregate-address A.B.C.D/M
c3c5a71f 698
c1a54c05 699 This command specifies an aggregate address.
42fc5d26 700
c1a54c05
QY
701.. index:: aggregate-address A.B.C.D/M as-set
702.. clicmd:: aggregate-address A.B.C.D/M as-set
42fc5d26 703
c1a54c05
QY
704 This command specifies an aggregate address. Resulting routes include
705 AS set.
42fc5d26 706
c1a54c05
QY
707.. index:: aggregate-address A.B.C.D/M summary-only
708.. clicmd:: aggregate-address A.B.C.D/M summary-only
c3c5a71f 709
d1e7591e 710 This command specifies an aggregate address. Aggregated routes will
c1a54c05 711 not be announce.
42fc5d26 712
c1a54c05
QY
713.. index:: no aggregate-address A.B.C.D/M
714.. clicmd:: no aggregate-address A.B.C.D/M
5101fece 715
716 This command removes an aggregate address.
717
718
719 This configuration example setup the aggregate-address under
720 ipv4 address-family.
721
722 .. code-block:: frr
723
724 router bgp 1
725 address-family ipv4 unicast
726 aggregate-address 10.0.0.0/8
727 aggregate-address 20.0.0.0/8 as-set
728 aggregate-address 40.0.0.0/8 summary-only
729 exit-address-family
730
731
732.. _bgp-route-aggregation-ipv6:
733
734Route Aggregation-IPv6 Address Family
735^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
736
737.. index:: aggregate-address X:X::X:X/M
738.. clicmd:: aggregate-address X:X::X:X/M
739
740 This command specifies an aggregate address.
741
742.. index:: aggregate-address X:X::X:X/M as-set
743.. clicmd:: aggregate-address X:X::X:X/M as-set
744
745 This command specifies an aggregate address. Resulting routes include
746 AS set.
747
748.. index:: aggregate-address X:X::X:X/M summary-only
749.. clicmd:: aggregate-address X:X::X:X/M summary-only
750
751 This command specifies an aggregate address. Aggregated routes will
752 not be announce.
753
754.. index:: no aggregate-address X:X::X:X/M
755.. clicmd:: no aggregate-address X:X::X:X/M
756
757 This command removes an aggregate address.
758
759
760 This configuration example setup the aggregate-address under
761 ipv4 address-family.
762
763 .. code-block:: frr
764
765 router bgp 1
766 address-family ipv6 unicast
767 aggregate-address 10::0/64
768 aggregate-address 20::0/64 as-set
769 aggregate-address 40::0/64 summary-only
770 exit-address-family
c3c5a71f 771
8fcedbd2 772.. _bgp-redistribute-to-bgp:
42fc5d26 773
8fcedbd2
QY
774Redistribution
775--------------
42fc5d26 776
c3c5a71f 777.. index:: redistribute kernel
29adcd50 778.. clicmd:: redistribute kernel
42fc5d26 779
c1a54c05 780 Redistribute kernel route to BGP process.
42fc5d26 781
c3c5a71f 782.. index:: redistribute static
29adcd50 783.. clicmd:: redistribute static
42fc5d26 784
c1a54c05 785 Redistribute static route to BGP process.
42fc5d26 786
c3c5a71f 787.. index:: redistribute connected
29adcd50 788.. clicmd:: redistribute connected
42fc5d26 789
c1a54c05 790 Redistribute connected route to BGP process.
42fc5d26 791
c3c5a71f 792.. index:: redistribute rip
29adcd50 793.. clicmd:: redistribute rip
42fc5d26 794
c1a54c05 795 Redistribute RIP route to BGP process.
42fc5d26 796
c3c5a71f 797.. index:: redistribute ospf
29adcd50 798.. clicmd:: redistribute ospf
42fc5d26 799
c1a54c05 800 Redistribute OSPF route to BGP process.
42fc5d26 801
c3c5a71f 802.. index:: redistribute vpn
29adcd50 803.. clicmd:: redistribute vpn
42fc5d26 804
c1a54c05 805 Redistribute VNC routes to BGP process.
42fc5d26 806
c1a54c05
QY
807.. index:: update-delay MAX-DELAY
808.. clicmd:: update-delay MAX-DELAY
c3c5a71f 809
c1a54c05
QY
810.. index:: update-delay MAX-DELAY ESTABLISH-WAIT
811.. clicmd:: update-delay MAX-DELAY ESTABLISH-WAIT
c3c5a71f 812
c1a54c05
QY
813 This feature is used to enable read-only mode on BGP process restart or when
814 BGP process is cleared using 'clear ip bgp \*'. When applicable, read-only
815 mode would begin as soon as the first peer reaches Established status and a
816 timer for max-delay seconds is started.
42fc5d26 817
c1a54c05
QY
818 During this mode BGP doesn't run any best-path or generate any updates to its
819 peers. This mode continues until:
42fc5d26 820
c1a54c05
QY
821 1. All the configured peers, except the shutdown peers, have sent explicit EOR
822 (End-Of-RIB) or an implicit-EOR. The first keep-alive after BGP has reached
823 Established is considered an implicit-EOR.
824 If the establish-wait optional value is given, then BGP will wait for
d1e7591e 825 peers to reach established from the beginning of the update-delay till the
c1a54c05
QY
826 establish-wait period is over, i.e. the minimum set of established peers for
827 which EOR is expected would be peers established during the establish-wait
828 window, not necessarily all the configured neighbors.
829 2. max-delay period is over.
42fc5d26 830
c1a54c05
QY
831 On hitting any of the above two conditions, BGP resumes the decision process
832 and generates updates to its peers.
42fc5d26 833
c1a54c05 834 Default max-delay is 0, i.e. the feature is off by default.
c3c5a71f 835
c1a54c05
QY
836.. index:: table-map ROUTE-MAP-NAME
837.. clicmd:: table-map ROUTE-MAP-NAME
42fc5d26 838
c1a54c05
QY
839 This feature is used to apply a route-map on route updates from BGP to
840 Zebra. All the applicable match operations are allowed, such as match on
841 prefix, next-hop, communities, etc. Set operations for this attach-point are
842 limited to metric and next-hop only. Any operation of this feature does not
843 affect BGPs internal RIB.
42fc5d26 844
c1a54c05
QY
845 Supported for ipv4 and ipv6 address families. It works on multi-paths as
846 well, however, metric setting is based on the best-path only.
42fc5d26 847
8fcedbd2 848.. _bgp-peers:
42fc5d26 849
8fcedbd2
QY
850Peers
851-----
42fc5d26 852
8fcedbd2 853.. _bgp-defining-peers:
42fc5d26 854
8fcedbd2
QY
855Defining Peers
856^^^^^^^^^^^^^^
42fc5d26 857
c1a54c05
QY
858.. index:: neighbor PEER remote-as ASN
859.. clicmd:: neighbor PEER remote-as ASN
42fc5d26 860
c1a54c05 861 Creates a new neighbor whose remote-as is ASN. PEER can be an IPv4 address
9eb95b3b 862 or an IPv6 address or an interface to use for the connection.
76bd1499 863
9eb95b3b
QY
864 .. code-block:: frr
865
866 router bgp 1
867 neighbor 10.0.0.1 remote-as 2
76bd1499 868
c1a54c05 869 In this case my router, in AS-1, is trying to peer with AS-2 at 10.0.0.1.
76bd1499 870
c1a54c05 871 This command must be the first command used when configuring a neighbor. If
9eb95b3b 872 the remote-as is not specified, *bgpd* will complain like this: ::
76bd1499 873
c1a54c05 874 can't find neighbor 10.0.0.1
c3c5a71f 875
5413757f
DS
876.. index:: neighbor PEER remote-as internal
877.. clicmd:: neighbor PEER remote-as internal
878
879 Create a peer as you would when you specify an ASN, except that if the
880 peers ASN is different than mine as specified under the :clicmd:`router bgp ASN`
881 command the connection will be denied.
882
883.. index:: neighbor PEER remote-as external
884.. clicmd:: neighbor PEER remote-as external
885
886 Create a peer as you would when you specify an ASN, except that if the
887 peers ASN is the same as mine as specified under the :clicmd:`router bgp ASN`
888 command the connection will be denied.
42fc5d26 889
d7b9898c
DA
890.. index:: [no] bgp listen range <A.B.C.D/M|X:X::X:X/M> peer-group PGNAME
891.. clicmd:: [no] bgp listen range <A.B.C.D/M|X:X::X:X/M> peer-group PGNAME
d79e0e08
QY
892
893 Accept connections from any peers in the specified prefix. Configuration
894 from the specified peer-group is used to configure these peers.
895
896.. note::
897
898 When using BGP listen ranges, if the associated peer group has TCP MD5
899 authentication configured, your kernel must support this on prefixes. On
900 Linux, this support was added in kernel version 4.14. If your kernel does
901 not support this feature you will get a warning in the log file, and the
902 listen range will only accept connections from peers without MD5 configured.
903
904 Additionally, we have observed that when using this option at scale (several
905 hundred peers) the kernel may hit its option memory limit. In this situation
906 you will see error messages like:
907
908 ``bgpd: sockopt_tcp_signature: setsockopt(23): Cannot allocate memory``
909
910 In this case you need to increase the value of the sysctl
911 ``net.core.optmem_max`` to allow the kernel to allocate the necessary option
912 memory.
913
8fcedbd2 914.. _bgp-configuring-peers:
42fc5d26 915
8fcedbd2
QY
916Configuring Peers
917^^^^^^^^^^^^^^^^^
42fc5d26 918
c0868e8b
QY
919.. index:: [no] neighbor PEER shutdown
920.. clicmd:: [no] neighbor PEER shutdown
c3c5a71f 921
c1a54c05
QY
922 Shutdown the peer. We can delete the neighbor's configuration by
923 ``no neighbor PEER remote-as ASN`` but all configuration of the neighbor
924 will be deleted. When you want to preserve the configuration, but want to
925 drop the BGP peer, use this syntax.
c3c5a71f 926
c0868e8b
QY
927.. index:: [no] neighbor PEER disable-connected-check
928.. clicmd:: [no] neighbor PEER disable-connected-check
c3c5a71f 929
c0868e8b
QY
930 Allow peerings between directly connected eBGP peers using loopback
931 addresses.
c3c5a71f 932
c0868e8b
QY
933.. index:: [no] neighbor PEER ebgp-multihop
934.. clicmd:: [no] neighbor PEER ebgp-multihop
42fc5d26 935
c0868e8b
QY
936.. index:: [no] neighbor PEER description ...
937.. clicmd:: [no] neighbor PEER description ...
42fc5d26 938
c1a54c05 939 Set description of the peer.
42fc5d26 940
c0868e8b
QY
941.. index:: [no] neighbor PEER version VERSION
942.. clicmd:: [no] neighbor PEER version VERSION
42fc5d26 943
4da7fda3
QY
944 Set up the neighbor's BGP version. `version` can be `4`, `4+` or `4-`. BGP
945 version `4` is the default value used for BGP peering. BGP version `4+`
946 means that the neighbor supports Multiprotocol Extensions for BGP-4. BGP
947 version `4-` is similar but the neighbor speaks the old Internet-Draft
948 revision 00's Multiprotocol Extensions for BGP-4. Some routing software is
949 still using this version.
42fc5d26 950
c0868e8b
QY
951.. index:: [no] neighbor PEER interface IFNAME
952.. clicmd:: [no] neighbor PEER interface IFNAME
42fc5d26 953
c1a54c05
QY
954 When you connect to a BGP peer over an IPv6 link-local address, you have to
955 specify the IFNAME of the interface used for the connection. To specify
956 IPv4 session addresses, see the ``neighbor PEER update-source`` command
957 below.
42fc5d26 958
c1a54c05
QY
959 This command is deprecated and may be removed in a future release. Its use
960 should be avoided.
42fc5d26 961
c0868e8b
QY
962.. index:: [no] neighbor PEER next-hop-self [all]
963.. clicmd:: [no] neighbor PEER next-hop-self [all]
42fc5d26 964
c1a54c05
QY
965 This command specifies an announced route's nexthop as being equivalent to
966 the address of the bgp router if it is learned via eBGP. If the optional
d1e7591e 967 keyword `all` is specified the modification is done also for routes learned
c1a54c05 968 via iBGP.
42fc5d26 969
c0868e8b
QY
970.. index:: [no] neighbor PEER update-source <IFNAME|ADDRESS>
971.. clicmd:: [no] neighbor PEER update-source <IFNAME|ADDRESS>
42fc5d26 972
c1a54c05
QY
973 Specify the IPv4 source address to use for the :abbr:`BGP` session to this
974 neighbour, may be specified as either an IPv4 address directly or as an
975 interface name (in which case the *zebra* daemon MUST be running in order
9eb95b3b
QY
976 for *bgpd* to be able to retrieve interface state).
977
978 .. code-block:: frr
42fc5d26 979
c1a54c05
QY
980 router bgp 64555
981 neighbor foo update-source 192.168.0.1
982 neighbor bar update-source lo0
42fc5d26 983
42fc5d26 984
c0868e8b
QY
985.. index:: [no] neighbor PEER default-originate
986.. clicmd:: [no] neighbor PEER default-originate
42fc5d26 987
4da7fda3
QY
988 *bgpd*'s default is to not announce the default route (0.0.0.0/0) even if it
989 is in routing table. When you want to announce default routes to the peer,
990 use this command.
42fc5d26 991
c1a54c05
QY
992.. index:: neighbor PEER port PORT
993.. clicmd:: neighbor PEER port PORT
42fc5d26 994
c1a54c05
QY
995.. index:: neighbor PEER send-community
996.. clicmd:: neighbor PEER send-community
42fc5d26 997
c0868e8b
QY
998.. index:: [no] neighbor PEER weight WEIGHT
999.. clicmd:: [no] neighbor PEER weight WEIGHT
42fc5d26 1000
c1a54c05 1001 This command specifies a default `weight` value for the neighbor's routes.
42fc5d26 1002
c0868e8b
QY
1003.. index:: [no] neighbor PEER maximum-prefix NUMBER
1004.. clicmd:: [no] neighbor PEER maximum-prefix NUMBER
42fc5d26 1005
886026c8
QY
1006 Sets a maximum number of prefixes we can receive from a given peer. If this
1007 number is exceeded, the BGP session will be destroyed.
1008
1009 In practice, it is generally preferable to use a prefix-list to limit what
1010 prefixes are received from the peer instead of using this knob. Tearing down
1011 the BGP session when a limit is exceeded is far more destructive than merely
1012 rejecting undesired prefixes. The prefix-list method is also much more
1013 granular and offers much smarter matching criterion than number of received
1014 prefixes, making it more suited to implementing policy.
1015
1016.. index:: [no] neighbor PEER local-as AS-NUMBER [no-prepend] [replace-as]
1017.. clicmd:: [no] neighbor PEER local-as AS-NUMBER [no-prepend] [replace-as]
42fc5d26 1018
c1a54c05
QY
1019 Specify an alternate AS for this BGP process when interacting with the
1020 specified peer. With no modifiers, the specified local-as is prepended to
1021 the received AS_PATH when receiving routing updates from the peer, and
1022 prepended to the outgoing AS_PATH (after the process local AS) when
1023 transmitting local routes to the peer.
42fc5d26 1024
c1a54c05
QY
1025 If the no-prepend attribute is specified, then the supplied local-as is not
1026 prepended to the received AS_PATH.
c3c5a71f 1027
c1a54c05
QY
1028 If the replace-as attribute is specified, then only the supplied local-as is
1029 prepended to the AS_PATH when transmitting local-route updates to this peer.
c3c5a71f 1030
c1a54c05 1031 Note that replace-as can only be specified if no-prepend is.
c3c5a71f 1032
c1a54c05 1033 This command is only allowed for eBGP peers.
c3c5a71f 1034
c0868e8b
QY
1035.. index:: [no] neighbor PEER ttl-security hops NUMBER
1036.. clicmd:: [no] neighbor PEER ttl-security hops NUMBER
c3c5a71f 1037
c1a54c05
QY
1038 This command enforces Generalized TTL Security Mechanism (GTSM), as
1039 specified in RFC 5082. With this command, only neighbors that are the
1040 specified number of hops away will be allowed to become neighbors. This
d1e7591e 1041 command is mutually exclusive with *ebgp-multihop*.
42fc5d26 1042
19f2b5e8
DS
1043.. index:: [no] neighbor PEER capability extended-nexthop
1044.. clicmd:: [no] neighbor PEER capability extended-nexthop
1045
1046 Allow bgp to negotiate the extended-nexthop capability with it's peer.
1047 If you are peering over a v6 LL address then this capability is turned
1048 on automatically. If you are peering over a v6 Global Address then
1049 turning on this command will allow BGP to install v4 routes with
1050 v6 nexthops if you do not have v4 configured on interfaces.
1051
eb938189
DS
1052.. index:: [no] bgp fast-external-failover
1053.. clicmd:: [no] bgp fast-external-failover
1054
1055 This command causes bgp to not take down ebgp peers immediately
1056 when a link flaps. `bgp fast-external-failover` is the default
1057 and will not be displayed as part of a `show run`. The no form
1058 of the command turns off this ability.
1059
bc132029
DS
1060.. index:: [no] bgp default ipv4-unicast
1061.. clicmd:: [no] bgp default ipv4-unicast
1062
1063 This command allows the user to specify that v4 peering is turned
1064 on by default or not. This command defaults to on and is not displayed.
1065 The `no bgp default ipv4-unicast` form of the command is displayed.
1066
8fcedbd2 1067.. _bgp-peer-filtering:
42fc5d26 1068
8fcedbd2
QY
1069Peer Filtering
1070^^^^^^^^^^^^^^
42fc5d26 1071
c1a54c05
QY
1072.. index:: neighbor PEER distribute-list NAME [in|out]
1073.. clicmd:: neighbor PEER distribute-list NAME [in|out]
42fc5d26 1074
c1a54c05
QY
1075 This command specifies a distribute-list for the peer. `direct` is
1076 ``in`` or ``out``.
42fc5d26 1077
c3c5a71f 1078.. index:: neighbor PEER prefix-list NAME [in|out]
29adcd50 1079.. clicmd:: neighbor PEER prefix-list NAME [in|out]
42fc5d26 1080
c1a54c05 1081.. index:: neighbor PEER filter-list NAME [in|out]
29adcd50 1082.. clicmd:: neighbor PEER filter-list NAME [in|out]
42fc5d26 1083
c1a54c05
QY
1084.. index:: neighbor PEER route-map NAME [in|out]
1085.. clicmd:: neighbor PEER route-map NAME [in|out]
42fc5d26 1086
c1a54c05 1087 Apply a route-map on the neighbor. `direct` must be `in` or `out`.
42fc5d26 1088
c3c5a71f 1089.. index:: bgp route-reflector allow-outbound-policy
29adcd50 1090.. clicmd:: bgp route-reflector allow-outbound-policy
42fc5d26 1091
c1a54c05
QY
1092 By default, attribute modification via route-map policy out is not reflected
1093 on reflected routes. This option allows the modifications to be reflected as
1094 well. Once enabled, it affects all reflected routes.
42fc5d26 1095
0efdf0fe 1096.. _bgp-peer-group:
42fc5d26 1097
8fcedbd2
QY
1098Peer Groups
1099^^^^^^^^^^^
42fc5d26 1100
199ad5c4
LB
1101Peer groups are used to help improve scaling by generating the same
1102update information to all members of a peer group. Note that this means
1103that the routes generated by a member of a peer group will be sent back
1104to that originating peer with the originator identifier attribute set to
1105indicated the originating peer. All peers not associated with a
1106specific peer group are treated as belonging to a default peer group,
1107and will share updates.
1108
c1a54c05
QY
1109.. index:: neighbor WORD peer-group
1110.. clicmd:: neighbor WORD peer-group
42fc5d26 1111
c1a54c05 1112 This command defines a new peer group.
42fc5d26 1113
d7b9898c
DA
1114.. index:: neighbor PEER peer-group PGNAME
1115.. clicmd:: neighbor PEER peer-group PGNAME
c3c5a71f 1116
c1a54c05 1117 This command bind specific peer to peer group WORD.
42fc5d26 1118
199ad5c4
LB
1119.. index:: neighbor PEER solo
1120.. clicmd:: neighbor PEER solo
1121
1122 This command is used to indicate that routes advertised by the peer
1123 should not be reflected back to the peer. This command only is only
1124 meaningful when there is a single peer defined in the peer-group.
1125
8fcedbd2
QY
1126Capability Negotiation
1127^^^^^^^^^^^^^^^^^^^^^^
42fc5d26 1128
8fcedbd2
QY
1129.. index:: neighbor PEER strict-capability-match
1130.. clicmd:: neighbor PEER strict-capability-match
42fc5d26 1131
8fcedbd2
QY
1132.. index:: no neighbor PEER strict-capability-match
1133.. clicmd:: no neighbor PEER strict-capability-match
c1a54c05 1134
8fcedbd2
QY
1135 Strictly compares remote capabilities and local capabilities. If
1136 capabilities are different, send Unsupported Capability error then reset
1137 connection.
42fc5d26 1138
8fcedbd2
QY
1139 You may want to disable sending Capability Negotiation OPEN message optional
1140 parameter to the peer when remote peer does not implement Capability
1141 Negotiation. Please use *dont-capability-negotiate* command to disable the
1142 feature.
42fc5d26 1143
8fcedbd2
QY
1144.. index:: neighbor PEER dont-capability-negotiate
1145.. clicmd:: neighbor PEER dont-capability-negotiate
42fc5d26 1146
8fcedbd2
QY
1147.. index:: no neighbor PEER dont-capability-negotiate
1148.. clicmd:: no neighbor PEER dont-capability-negotiate
42fc5d26 1149
8fcedbd2
QY
1150 Suppress sending Capability Negotiation as OPEN message optional parameter
1151 to the peer. This command only affects the peer is configured other than
1152 IPv4 unicast configuration.
42fc5d26 1153
8fcedbd2
QY
1154 When remote peer does not have capability negotiation feature, remote peer
1155 will not send any capabilities at all. In that case, bgp configures the peer
1156 with configured capabilities.
42fc5d26 1157
8fcedbd2
QY
1158 You may prefer locally configured capabilities more than the negotiated
1159 capabilities even though remote peer sends capabilities. If the peer is
1160 configured by *override-capability*, *bgpd* ignores received capabilities
1161 then override negotiated capabilities with configured values.
42fc5d26 1162
8fcedbd2
QY
1163.. index:: neighbor PEER override-capability
1164.. clicmd:: neighbor PEER override-capability
42fc5d26 1165
8fcedbd2
QY
1166.. index:: no neighbor PEER override-capability
1167.. clicmd:: no neighbor PEER override-capability
c1a54c05 1168
8fcedbd2
QY
1169 Override the result of Capability Negotiation with local configuration.
1170 Ignore remote peer's capability value.
42fc5d26 1171
8fcedbd2 1172.. _bgp-as-path-access-lists:
42fc5d26 1173
8fcedbd2
QY
1174AS Path Access Lists
1175--------------------
42fc5d26
QY
1176
1177AS path access list is user defined AS path.
1178
c3c5a71f 1179.. index:: ip as-path access-list WORD permit|deny LINE
29adcd50 1180.. clicmd:: ip as-path access-list WORD permit|deny LINE
42fc5d26 1181
c1a54c05 1182 This command defines a new AS path access list.
42fc5d26 1183
c1a54c05 1184.. index:: no ip as-path access-list WORD
29adcd50 1185.. clicmd:: no ip as-path access-list WORD
42fc5d26 1186
c1a54c05 1187.. index:: no ip as-path access-list WORD permit|deny LINE
29adcd50 1188.. clicmd:: no ip as-path access-list WORD permit|deny LINE
42fc5d26 1189
8fcedbd2 1190.. _bgp-using-as-path-in-route-map:
42fc5d26
QY
1191
1192Using AS Path in Route Map
1193--------------------------
1194
c3c5a71f 1195.. index:: match as-path WORD
29adcd50 1196.. clicmd:: match as-path WORD
42fc5d26 1197
42fc5d26 1198
c1a54c05 1199.. index:: set as-path prepend AS-PATH
29adcd50 1200.. clicmd:: set as-path prepend AS-PATH
42fc5d26 1201
c1a54c05 1202 Prepend the given string of AS numbers to the AS_PATH.
42fc5d26 1203
c1a54c05 1204.. index:: set as-path prepend last-as NUM
29adcd50 1205.. clicmd:: set as-path prepend last-as NUM
c1a54c05
QY
1206
1207 Prepend the existing last AS number (the leftmost ASN) to the AS_PATH.
42fc5d26 1208
0efdf0fe 1209.. _bgp-communities-attribute:
42fc5d26 1210
8fcedbd2
QY
1211Communities Attribute
1212---------------------
42fc5d26 1213
8fcedbd2 1214The BGP communities attribute is widely used for implementing policy routing.
c1a54c05
QY
1215Network operators can manipulate BGP communities attribute based on their
1216network policy. BGP communities attribute is defined in :rfc:`1997` and
1217:rfc:`1998`. It is an optional transitive attribute, therefore local policy can
1218travel through different autonomous system.
1219
8fcedbd2
QY
1220The communities attribute is a set of communities values. Each community value
1221is 4 octet long. The following format is used to define the community value.
c1a54c05 1222
8fcedbd2 1223``AS:VAL``
c1a54c05
QY
1224 This format represents 4 octet communities value. ``AS`` is high order 2
1225 octet in digit format. ``VAL`` is low order 2 octet in digit format. This
1226 format is useful to define AS oriented policy value. For example,
1227 ``7675:80`` can be used when AS 7675 wants to pass local policy value 80 to
1228 neighboring peer.
1229
8fcedbd2
QY
1230``internet``
1231 ``internet`` represents well-known communities value 0.
c1a54c05 1232
cae770d3
C
1233``graceful-shutdown``
1234 ``graceful-shutdown`` represents well-known communities value
1235 ``GRACEFUL_SHUTDOWN`` ``0xFFFF0000`` ``65535:0``. :rfc:`8326` implements
1236 the purpose Graceful BGP Session Shutdown to reduce the amount of
56f0bea7 1237 lost traffic when taking BGP sessions down for maintenance. The use
cae770d3
C
1238 of the community needs to be supported from your peers side to
1239 actually have any effect.
1240
1241``accept-own``
1242 ``accept-own`` represents well-known communities value ``ACCEPT_OWN``
1243 ``0xFFFF0001`` ``65535:1``. :rfc:`7611` implements a way to signal
1244 to a router to accept routes with a local nexthop address. This
1245 can be the case when doing policing and having traffic having a
1246 nexthop located in another VRF but still local interface to the
1247 router. It is recommended to read the RFC for full details.
1248
1249``route-filter-translated-v4``
1250 ``route-filter-translated-v4`` represents well-known communities value
1251 ``ROUTE_FILTER_TRANSLATED_v4`` ``0xFFFF0002`` ``65535:2``.
1252
1253``route-filter-v4``
1254 ``route-filter-v4`` represents well-known communities value
1255 ``ROUTE_FILTER_v4`` ``0xFFFF0003`` ``65535:3``.
1256
1257``route-filter-translated-v6``
1258 ``route-filter-translated-v6`` represents well-known communities value
1259 ``ROUTE_FILTER_TRANSLATED_v6`` ``0xFFFF0004`` ``65535:4``.
1260
1261``route-filter-v6``
1262 ``route-filter-v6`` represents well-known communities value
1263 ``ROUTE_FILTER_v6`` ``0xFFFF0005`` ``65535:5``.
1264
1265``llgr-stale``
1266 ``llgr-stale`` represents well-known communities value ``LLGR_STALE``
1267 ``0xFFFF0006`` ``65535:6``.
56f0bea7 1268 Assigned and intended only for use with routers supporting the
cae770d3 1269 Long-lived Graceful Restart Capability as described in
49606d58 1270 [Draft-IETF-uttaro-idr-bgp-persistence]_.
56f0bea7 1271 Routers receiving routes with this community may (depending on
cae770d3
C
1272 implementation) choose allow to reject or modify routes on the
1273 presence or absence of this community.
1274
1275``no-llgr``
1276 ``no-llgr`` represents well-known communities value ``NO_LLGR``
1277 ``0xFFFF0007`` ``65535:7``.
56f0bea7 1278 Assigned and intended only for use with routers supporting the
cae770d3 1279 Long-lived Graceful Restart Capability as described in
49606d58 1280 [Draft-IETF-uttaro-idr-bgp-persistence]_.
56f0bea7 1281 Routers receiving routes with this community may (depending on
cae770d3
C
1282 implementation) choose allow to reject or modify routes on the
1283 presence or absence of this community.
1284
1285``accept-own-nexthop``
1286 ``accept-own-nexthop`` represents well-known communities value
1287 ``accept-own-nexthop`` ``0xFFFF0008`` ``65535:8``.
49606d58 1288 [Draft-IETF-agrewal-idr-accept-own-nexthop]_ describes
cae770d3
C
1289 how to tag and label VPN routes to be able to send traffic between VRFs
1290 via an internal layer 2 domain on the same PE device. Refer to
49606d58 1291 [Draft-IETF-agrewal-idr-accept-own-nexthop]_ for full details.
cae770d3
C
1292
1293``blackhole``
1294 ``blackhole`` represents well-known communities value ``BLACKHOLE``
1295 ``0xFFFF029A`` ``65535:666``. :rfc:`7999` documents sending prefixes to
1296 EBGP peers and upstream for the purpose of blackholing traffic.
1297 Prefixes tagged with the this community should normally not be
1298 re-advertised from neighbors of the originating network. It is
1299 recommended upon receiving prefixes tagged with this community to
1300 add ``NO_EXPORT`` and ``NO_ADVERTISE``.
1301
8fcedbd2 1302``no-export``
c1a54c05
QY
1303 ``no-export`` represents well-known communities value ``NO_EXPORT``
1304 ``0xFFFFFF01``. All routes carry this value must not be advertised to
1305 outside a BGP confederation boundary. If neighboring BGP peer is part of BGP
1306 confederation, the peer is considered as inside a BGP confederation
1307 boundary, so the route will be announced to the peer.
1308
8fcedbd2 1309``no-advertise``
c1a54c05
QY
1310 ``no-advertise`` represents well-known communities value ``NO_ADVERTISE``
1311 ``0xFFFFFF02``. All routes carry this value must not be advertise to other
1312 BGP peers.
1313
8fcedbd2 1314``local-AS``
c1a54c05
QY
1315 ``local-AS`` represents well-known communities value ``NO_EXPORT_SUBCONFED``
1316 ``0xFFFFFF03``. All routes carry this value must not be advertised to
1317 external BGP peers. Even if the neighboring router is part of confederation,
1318 it is considered as external BGP peer, so the route will not be announced to
1319 the peer.
1320
cae770d3
C
1321``no-peer``
1322 ``no-peer`` represents well-known communities value ``NOPEER``
1323 ``0xFFFFFF04`` ``65535:65284``. :rfc:`3765` is used to communicate to
1324 another network how the originating network want the prefix propagated.
1325
aa9eafa4
QY
1326When the communities attribute is received duplicate community values in the
1327attribute are ignored and value is sorted in numerical order.
42fc5d26 1328
49606d58
PG
1329.. [Draft-IETF-uttaro-idr-bgp-persistence] <https://tools.ietf.org/id/draft-uttaro-idr-bgp-persistence-04.txt>
1330.. [Draft-IETF-agrewal-idr-accept-own-nexthop] <https://tools.ietf.org/id/draft-agrewal-idr-accept-own-nexthop-00.txt>
1331
0efdf0fe 1332.. _bgp-community-lists:
42fc5d26 1333
8fcedbd2
QY
1334Community Lists
1335^^^^^^^^^^^^^^^
aa9eafa4
QY
1336Community lists are user defined lists of community attribute values. These
1337lists can be used for matching or manipulating the communities attribute in
1338UPDATE messages.
42fc5d26 1339
aa9eafa4 1340There are two types of community list:
c1a54c05 1341
aa9eafa4 1342standard
56f0bea7 1343 This type accepts an explicit value for the attribute.
aa9eafa4
QY
1344
1345expanded
1346 This type accepts a regular expression. Because the regex must be
1347 interpreted on each use expanded community lists are slower than standard
1348 lists.
42fc5d26 1349
c3c5a71f 1350.. index:: ip community-list standard NAME permit|deny COMMUNITY
29adcd50 1351.. clicmd:: ip community-list standard NAME permit|deny COMMUNITY
42fc5d26 1352
aa9eafa4
QY
1353 This command defines a new standard community list. ``COMMUNITY`` is
1354 communities value. The ``COMMUNITY`` is compiled into community structure.
1355 We can define multiple community list under same name. In that case match
1356 will happen user defined order. Once the community list matches to
1357 communities attribute in BGP updates it return permit or deny by the
1358 community list definition. When there is no matched entry, deny will be
1359 returned. When ``COMMUNITY`` is empty it matches to any routes.
42fc5d26 1360
aa9eafa4
QY
1361.. index:: ip community-list expanded NAME permit|deny COMMUNITY
1362.. clicmd:: ip community-list expanded NAME permit|deny COMMUNITY
42fc5d26 1363
aa9eafa4
QY
1364 This command defines a new expanded community list. ``COMMUNITY`` is a
1365 string expression of communities attribute. ``COMMUNITY`` can be a regular
1366 expression (:ref:`bgp-regular-expressions`) to match the communities
47f47873
PG
1367 attribute in BGP updates. The expanded community is only used to filter,
1368 not `set` actions.
42fc5d26 1369
aa9eafa4
QY
1370.. deprecated:: 5.0
1371 It is recommended to use the more explicit versions of this command.
42fc5d26 1372
aa9eafa4
QY
1373.. index:: ip community-list NAME permit|deny COMMUNITY
1374.. clicmd:: ip community-list NAME permit|deny COMMUNITY
1375
1376 When the community list type is not specified, the community list type is
1377 automatically detected. If ``COMMUNITY`` can be compiled into communities
1378 attribute, the community list is defined as a standard community list.
1379 Otherwise it is defined as an expanded community list. This feature is left
1380 for backward compatibility. Use of this feature is not recommended.
42fc5d26 1381
42fc5d26 1382
aa9eafa4
QY
1383.. index:: no ip community-list [standard|expanded] NAME
1384.. clicmd:: no ip community-list [standard|expanded] NAME
42fc5d26 1385
aa9eafa4
QY
1386 Deletes the community list specified by ``NAME``. All community lists share
1387 the same namespace, so it's not necessary to specify ``standard`` or
1388 ``expanded``; these modifiers are purely aesthetic.
42fc5d26 1389
aa9eafa4
QY
1390.. index:: show ip community-list [NAME]
1391.. clicmd:: show ip community-list [NAME]
42fc5d26 1392
aa9eafa4
QY
1393 Displays community list information. When ``NAME`` is specified the
1394 specified community list's information is shown.
c3c5a71f 1395
c1a54c05 1396 ::
76bd1499 1397
c1a54c05
QY
1398 # show ip community-list
1399 Named Community standard list CLIST
1400 permit 7675:80 7675:100 no-export
1401 deny internet
1402 Named Community expanded list EXPAND
1403 permit :
76bd1499 1404
c1a54c05
QY
1405 # show ip community-list CLIST
1406 Named Community standard list CLIST
1407 permit 7675:80 7675:100 no-export
1408 deny internet
42fc5d26 1409
42fc5d26 1410
8fcedbd2 1411.. _bgp-numbered-community-lists:
42fc5d26 1412
8fcedbd2
QY
1413Numbered Community Lists
1414^^^^^^^^^^^^^^^^^^^^^^^^
42fc5d26
QY
1415
1416When number is used for BGP community list name, the number has
c3c5a71f
QY
1417special meanings. Community list number in the range from 1 and 99 is
1418standard community list. Community list number in the range from 100
1419to 199 is expanded community list. These community lists are called
1420as numbered community lists. On the other hand normal community lists
42fc5d26
QY
1421is called as named community lists.
1422
29adcd50 1423.. index:: ip community-list (1-99) permit|deny COMMUNITY
29adcd50 1424.. clicmd:: ip community-list (1-99) permit|deny COMMUNITY
42fc5d26 1425
aa9eafa4
QY
1426 This command defines a new community list. The argument to (1-99) defines
1427 the list identifier.
42fc5d26 1428
c1a54c05 1429.. index:: ip community-list (100-199) permit|deny COMMUNITY
29adcd50 1430.. clicmd:: ip community-list (100-199) permit|deny COMMUNITY
42fc5d26 1431
aa9eafa4
QY
1432 This command defines a new expanded community list. The argument to
1433 (100-199) defines the list identifier.
42fc5d26 1434
8fcedbd2 1435.. _bgp-using-communities-in-route-map:
42fc5d26 1436
8fcedbd2
QY
1437Using Communities in Route Maps
1438^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
42fc5d26 1439
aa9eafa4
QY
1440In :ref:`route-map` we can match on or set the BGP communities attribute. Using
1441this feature network operator can implement their network policy based on BGP
1442communities attribute.
42fc5d26 1443
aa9eafa4 1444The ollowing commands can be used in route maps:
42fc5d26 1445
aa9eafa4
QY
1446.. index:: match community WORD exact-match [exact-match]
1447.. clicmd:: match community WORD exact-match [exact-match]
42fc5d26 1448
c1a54c05
QY
1449 This command perform match to BGP updates using community list WORD. When
1450 the one of BGP communities value match to the one of communities value in
d1e7591e 1451 community list, it is match. When `exact-match` keyword is specified, match
c1a54c05
QY
1452 happen only when BGP updates have completely same communities value
1453 specified in the community list.
42fc5d26 1454
aa9eafa4
QY
1455.. index:: set community <none|COMMUNITY> additive
1456.. clicmd:: set community <none|COMMUNITY> additive
42fc5d26 1457
aa9eafa4
QY
1458 This command sets the community value in BGP updates. If the attribute is
1459 already configured, the newly provided value replaces the old one unless the
1460 ``additive`` keyword is specified, in which case the new value is appended
1461 to the existing value.
42fc5d26 1462
aa9eafa4
QY
1463 If ``none`` is specified as the community value, the communities attribute
1464 is not sent.
42fc5d26 1465
47f47873
PG
1466 It is not possible to set an expanded community list.
1467
c1a54c05 1468.. index:: set comm-list WORD delete
29adcd50 1469.. clicmd:: set comm-list WORD delete
c1a54c05 1470
aa9eafa4
QY
1471 This command remove communities value from BGP communities attribute. The
1472 ``word`` is community list name. When BGP route's communities value matches
1473 to the community list ``word``, the communities value is removed. When all
1474 of communities value is removed eventually, the BGP update's communities
1475 attribute is completely removed.
42fc5d26 1476
8fcedbd2 1477.. _bgp-communities-example:
c1a54c05 1478
8fcedbd2
QY
1479Example Configuration
1480^^^^^^^^^^^^^^^^^^^^^
9eb95b3b 1481
8fcedbd2
QY
1482The following configuration is exemplary of the most typical usage of BGP
1483communities attribute. In the example, AS 7675 provides an upstream Internet
1484connection to AS 100. When the following configuration exists in AS 7675, the
1485network operator of AS 100 can set local preference in AS 7675 network by
1486setting BGP communities attribute to the updates.
9eb95b3b
QY
1487
1488.. code-block:: frr
c1a54c05
QY
1489
1490 router bgp 7675
1491 neighbor 192.168.0.1 remote-as 100
1492 address-family ipv4 unicast
1493 neighbor 192.168.0.1 route-map RMAP in
1494 exit-address-family
1495 !
1496 ip community-list 70 permit 7675:70
1497 ip community-list 70 deny
1498 ip community-list 80 permit 7675:80
1499 ip community-list 80 deny
1500 ip community-list 90 permit 7675:90
1501 ip community-list 90 deny
1502 !
1503 route-map RMAP permit 10
1504 match community 70
1505 set local-preference 70
1506 !
1507 route-map RMAP permit 20
1508 match community 80
1509 set local-preference 80
1510 !
1511 route-map RMAP permit 30
1512 match community 90
1513 set local-preference 90
c3c5a71f 1514
42fc5d26 1515
8fcedbd2
QY
1516The following configuration announces ``10.0.0.0/8`` from AS 100 to AS 7675.
1517The route has communities value ``7675:80`` so when above configuration exists
1518in AS 7675, the announced routes' local preference value will be set to 80.
9eb95b3b
QY
1519
1520.. code-block:: frr
c1a54c05
QY
1521
1522 router bgp 100
1523 network 10.0.0.0/8
1524 neighbor 192.168.0.2 remote-as 7675
1525 address-family ipv4 unicast
1526 neighbor 192.168.0.2 route-map RMAP out
1527 exit-address-family
1528 !
1529 ip prefix-list PLIST permit 10.0.0.0/8
1530 !
1531 route-map RMAP permit 10
1532 match ip address prefix-list PLIST
1533 set community 7675:80
c3c5a71f 1534
42fc5d26 1535
8fcedbd2
QY
1536The following configuration is an example of BGP route filtering using
1537communities attribute. This configuration only permit BGP routes which has BGP
1538communities value ``0:80`` or ``0:90``. The network operator can set special
1539internal communities value at BGP border router, then limit the BGP route
1540announcements into the internal network.
9eb95b3b
QY
1541
1542.. code-block:: frr
42fc5d26 1543
c1a54c05
QY
1544 router bgp 7675
1545 neighbor 192.168.0.1 remote-as 100
1546 address-family ipv4 unicast
1547 neighbor 192.168.0.1 route-map RMAP in
1548 exit-address-family
1549 !
1550 ip community-list 1 permit 0:80 0:90
1551 !
1552 route-map RMAP permit in
1553 match community 1
c3c5a71f 1554
42fc5d26 1555
8fcedbd2
QY
1556The following example filters BGP routes which have a community value of
1557``1:1``. When there is no match community-list returns ``deny``. To avoid
1558filtering all routes, a ``permit`` line is set at the end of the
1559community-list.
9eb95b3b
QY
1560
1561.. code-block:: frr
42fc5d26 1562
c1a54c05
QY
1563 router bgp 7675
1564 neighbor 192.168.0.1 remote-as 100
1565 address-family ipv4 unicast
1566 neighbor 192.168.0.1 route-map RMAP in
1567 exit-address-family
1568 !
1569 ip community-list standard FILTER deny 1:1
1570 ip community-list standard FILTER permit
1571 !
1572 route-map RMAP permit 10
1573 match community FILTER
c3c5a71f 1574
42fc5d26 1575
8fcedbd2
QY
1576The communities value keyword ``internet`` has special meanings in standard
1577community lists. In the below example ``internet`` matches all BGP routes even
1578if the route does not have communities attribute at all. So community list
1579``INTERNET`` is the same as ``FILTER`` in the previous example.
9eb95b3b
QY
1580
1581.. code-block:: frr
42fc5d26 1582
c1a54c05
QY
1583 ip community-list standard INTERNET deny 1:1
1584 ip community-list standard INTERNET permit internet
c3c5a71f 1585
42fc5d26 1586
8fcedbd2
QY
1587The following configuration is an example of communities value deletion. With
1588this configuration the community values ``100:1`` and ``100:2`` are removed
1589from BGP updates. For communities value deletion, only ``permit``
1590community-list is used. ``deny`` community-list is ignored.
9eb95b3b
QY
1591
1592.. code-block:: frr
42fc5d26 1593
c1a54c05
QY
1594 router bgp 7675
1595 neighbor 192.168.0.1 remote-as 100
1596 address-family ipv4 unicast
1597 neighbor 192.168.0.1 route-map RMAP in
1598 exit-address-family
1599 !
1600 ip community-list standard DEL permit 100:1 100:2
1601 !
1602 route-map RMAP permit 10
1603 set comm-list DEL delete
c3c5a71f 1604
42fc5d26 1605
0efdf0fe 1606.. _bgp-extended-communities-attribute:
42fc5d26 1607
8fcedbd2
QY
1608Extended Communities Attribute
1609^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
42fc5d26 1610
c1a54c05
QY
1611BGP extended communities attribute is introduced with MPLS VPN/BGP technology.
1612MPLS VPN/BGP expands capability of network infrastructure to provide VPN
1613functionality. At the same time it requires a new framework for policy routing.
1614With BGP Extended Communities Attribute we can use Route Target or Site of
1615Origin for implementing network policy for MPLS VPN/BGP.
42fc5d26 1616
c1a54c05
QY
1617BGP Extended Communities Attribute is similar to BGP Communities Attribute. It
1618is an optional transitive attribute. BGP Extended Communities Attribute can
1619carry multiple Extended Community value. Each Extended Community value is
1620eight octet length.
42fc5d26 1621
c1a54c05
QY
1622BGP Extended Communities Attribute provides an extended range compared with BGP
1623Communities Attribute. Adding to that there is a type field in each value to
1624provides community space structure.
42fc5d26 1625
c1a54c05
QY
1626There are two format to define Extended Community value. One is AS based format
1627the other is IP address based format.
42fc5d26 1628
8fcedbd2
QY
1629``AS:VAL``
1630 This is a format to define AS based Extended Community value. ``AS`` part
1631 is 2 octets Global Administrator subfield in Extended Community value.
1632 ``VAL`` part is 4 octets Local Administrator subfield. ``7675:100``
1633 represents AS 7675 policy value 100.
42fc5d26 1634
8fcedbd2 1635``IP-Address:VAL``
c1a54c05 1636 This is a format to define IP address based Extended Community value.
8fcedbd2
QY
1637 ``IP-Address`` part is 4 octets Global Administrator subfield. ``VAL`` part
1638 is 2 octets Local Administrator subfield.
42fc5d26 1639
0efdf0fe 1640.. _bgp-extended-community-lists:
42fc5d26 1641
8fcedbd2
QY
1642Extended Community Lists
1643^^^^^^^^^^^^^^^^^^^^^^^^
42fc5d26 1644
c3c5a71f 1645.. index:: ip extcommunity-list standard NAME permit|deny EXTCOMMUNITY
29adcd50 1646.. clicmd:: ip extcommunity-list standard NAME permit|deny EXTCOMMUNITY
42fc5d26 1647
4da7fda3
QY
1648 This command defines a new standard extcommunity-list. `extcommunity` is
1649 extended communities value. The `extcommunity` is compiled into extended
1650 community structure. We can define multiple extcommunity-list under same
1651 name. In that case match will happen user defined order. Once the
1652 extcommunity-list matches to extended communities attribute in BGP updates
1653 it return permit or deny based upon the extcommunity-list definition. When
1654 there is no matched entry, deny will be returned. When `extcommunity` is
1655 empty it matches to any routes.
42fc5d26 1656
c1a54c05 1657.. index:: ip extcommunity-list expanded NAME permit|deny LINE
29adcd50 1658.. clicmd:: ip extcommunity-list expanded NAME permit|deny LINE
42fc5d26 1659
4da7fda3
QY
1660 This command defines a new expanded extcommunity-list. `line` is a string
1661 expression of extended communities attribute. `line` can be a regular
1662 expression (:ref:`bgp-regular-expressions`) to match an extended communities
1663 attribute in BGP updates.
42fc5d26 1664
c1a54c05 1665.. index:: no ip extcommunity-list NAME
29adcd50 1666.. clicmd:: no ip extcommunity-list NAME
42fc5d26 1667
c1a54c05 1668.. index:: no ip extcommunity-list standard NAME
29adcd50 1669.. clicmd:: no ip extcommunity-list standard NAME
42fc5d26 1670
c1a54c05 1671.. index:: no ip extcommunity-list expanded NAME
29adcd50 1672.. clicmd:: no ip extcommunity-list expanded NAME
42fc5d26 1673
4da7fda3
QY
1674 These commands delete extended community lists specified by `name`. All of
1675 extended community lists shares a single name space. So extended community
d1e7591e 1676 lists can be removed simply specifying the name.
42fc5d26 1677
c1a54c05 1678.. index:: show ip extcommunity-list
29adcd50 1679.. clicmd:: show ip extcommunity-list
42fc5d26 1680
c1a54c05 1681.. index:: show ip extcommunity-list NAME
29adcd50 1682.. clicmd:: show ip extcommunity-list NAME
c1a54c05 1683
4da7fda3 1684 This command displays current extcommunity-list information. When `name` is
9eb95b3b 1685 specified the community list's information is shown.::
42fc5d26 1686
9eb95b3b 1687 # show ip extcommunity-list
c3c5a71f 1688
42fc5d26 1689
0efdf0fe 1690.. _bgp-extended-communities-in-route-map:
42fc5d26
QY
1691
1692BGP Extended Communities in Route Map
8fcedbd2 1693"""""""""""""""""""""""""""""""""""""
42fc5d26 1694
c3c5a71f 1695.. index:: match extcommunity WORD
29adcd50 1696.. clicmd:: match extcommunity WORD
42fc5d26 1697
c1a54c05 1698.. index:: set extcommunity rt EXTCOMMUNITY
29adcd50 1699.. clicmd:: set extcommunity rt EXTCOMMUNITY
42fc5d26 1700
c1a54c05 1701 This command set Route Target value.
42fc5d26 1702
c1a54c05 1703.. index:: set extcommunity soo EXTCOMMUNITY
29adcd50 1704.. clicmd:: set extcommunity soo EXTCOMMUNITY
c1a54c05
QY
1705
1706 This command set Site of Origin value.
42fc5d26 1707
47f47873
PG
1708
1709Note that the extended expanded community is only used for `match` rule, not for
1710`set` actions.
1711
0efdf0fe 1712.. _bgp-large-communities-attribute:
42fc5d26 1713
8fcedbd2
QY
1714Large Communities Attribute
1715^^^^^^^^^^^^^^^^^^^^^^^^^^^
42fc5d26
QY
1716
1717The BGP Large Communities attribute was introduced in Feb 2017 with
c1a54c05 1718:rfc:`8092`.
42fc5d26 1719
8fcedbd2
QY
1720The BGP Large Communities Attribute is similar to the BGP Communities Attribute
1721except that it has 3 components instead of two and each of which are 4 octets
1722in length. Large Communities bring additional functionality and convenience
1723over traditional communities, specifically the fact that the ``GLOBAL`` part
1724below is now 4 octets wide allowing seamless use in networks using 4-byte ASNs.
1725
1726``GLOBAL:LOCAL1:LOCAL2``
1727 This is the format to define Large Community values. Referencing :rfc:`8195`
1728 the values are commonly referred to as follows:
1729
1730 - The ``GLOBAL`` part is a 4 octet Global Administrator field, commonly used
1731 as the operators AS number.
1732 - The ``LOCAL1`` part is a 4 octet Local Data Part 1 subfield referred to as
1733 a function.
1734 - The ``LOCAL2`` part is a 4 octet Local Data Part 2 field and referred to
1735 as the parameter subfield.
1736
1737 As an example, ``65551:1:10`` represents AS 65551 function 1 and parameter
1738 10. The referenced RFC above gives some guidelines on recommended usage.
42fc5d26 1739
0efdf0fe 1740.. _bgp-large-community-lists:
42fc5d26 1741
8fcedbd2
QY
1742Large Community Lists
1743"""""""""""""""""""""
42fc5d26
QY
1744
1745Two types of large community lists are supported, namely `standard` and
1746`expanded`.
1747
c3c5a71f 1748.. index:: ip large-community-list standard NAME permit|deny LARGE-COMMUNITY
29adcd50 1749.. clicmd:: ip large-community-list standard NAME permit|deny LARGE-COMMUNITY
42fc5d26 1750
4da7fda3
QY
1751 This command defines a new standard large-community-list. `large-community`
1752 is the Large Community value. We can add multiple large communities under
1753 same name. In that case the match will happen in the user defined order.
1754 Once the large-community-list matches the Large Communities attribute in BGP
1755 updates it will return permit or deny based upon the large-community-list
1756 definition. When there is no matched entry, a deny will be returned. When
1757 `large-community` is empty it matches any routes.
42fc5d26 1758
c1a54c05 1759.. index:: ip large-community-list expanded NAME permit|deny LINE
29adcd50 1760.. clicmd:: ip large-community-list expanded NAME permit|deny LINE
42fc5d26 1761
4da7fda3
QY
1762 This command defines a new expanded large-community-list. Where `line` is a
1763 string matching expression, it will be compared to the entire Large
1764 Communities attribute as a string, with each large-community in order from
1765 lowest to highest. `line` can also be a regular expression which matches
1766 this Large Community attribute.
42fc5d26 1767
c1a54c05 1768.. index:: no ip large-community-list NAME
29adcd50 1769.. clicmd:: no ip large-community-list NAME
42fc5d26 1770
c1a54c05 1771.. index:: no ip large-community-list standard NAME
29adcd50 1772.. clicmd:: no ip large-community-list standard NAME
42fc5d26 1773
c1a54c05 1774.. index:: no ip large-community-list expanded NAME
29adcd50 1775.. clicmd:: no ip large-community-list expanded NAME
42fc5d26 1776
4da7fda3
QY
1777 These commands delete Large Community lists specified by `name`. All Large
1778 Community lists share a single namespace. This means Large Community lists
1779 can be removed by simply specifying the name.
42fc5d26 1780
c1a54c05 1781.. index:: show ip large-community-list
29adcd50 1782.. clicmd:: show ip large-community-list
42fc5d26 1783
c1a54c05 1784.. index:: show ip large-community-list NAME
29adcd50 1785.. clicmd:: show ip large-community-list NAME
42fc5d26 1786
c1a54c05
QY
1787 This command display current large-community-list information. When
1788 `name` is specified the community list information is shown.
42fc5d26 1789
c1a54c05 1790.. index:: show ip bgp large-community-info
29adcd50 1791.. clicmd:: show ip bgp large-community-info
c1a54c05
QY
1792
1793 This command displays the current large communities in use.
42fc5d26 1794
0efdf0fe 1795.. _bgp-large-communities-in-route-map:
42fc5d26 1796
8fcedbd2
QY
1797Large Communities in Route Map
1798""""""""""""""""""""""""""""""
42fc5d26 1799
03ff9a14 1800.. index:: match large-community LINE [exact-match]
1801.. clicmd:: match large-community LINE [exact-match]
42fc5d26 1802
4da7fda3
QY
1803 Where `line` can be a simple string to match, or a regular expression. It
1804 is very important to note that this match occurs on the entire
c1a54c05 1805 large-community string as a whole, where each large-community is ordered
03ff9a14 1806 from lowest to highest. When `exact-match` keyword is specified, match
1807 happen only when BGP updates have completely same large communities value
1808 specified in the large community list.
42fc5d26 1809
c1a54c05 1810.. index:: set large-community LARGE-COMMUNITY
29adcd50 1811.. clicmd:: set large-community LARGE-COMMUNITY
42fc5d26 1812
c1a54c05 1813.. index:: set large-community LARGE-COMMUNITY LARGE-COMMUNITY
29adcd50 1814.. clicmd:: set large-community LARGE-COMMUNITY LARGE-COMMUNITY
42fc5d26 1815
c1a54c05 1816.. index:: set large-community LARGE-COMMUNITY additive
29adcd50 1817.. clicmd:: set large-community LARGE-COMMUNITY additive
c1a54c05
QY
1818
1819 These commands are used for setting large-community values. The first
1820 command will overwrite any large-communities currently present.
1821 The second specifies two large-communities, which overwrites the current
1822 large-community list. The third will add a large-community value without
1823 overwriting other values. Multiple large-community values can be specified.
42fc5d26 1824
47f47873
PG
1825Note that the large expanded community is only used for `match` rule, not for
1826`set` actions.
b572f826 1827
c8a5e5e1 1828.. _bgp-l3vpn-vrfs:
b572f826 1829
c8a5e5e1
QY
1830L3VPN VRFs
1831----------
b572f826 1832
c8a5e5e1
QY
1833*bgpd* supports :abbr:`L3VPN (Layer 3 Virtual Private Networks)` :abbr:`VRFs
1834(Virtual Routing and Forwarding)` for IPv4 :rfc:`4364` and IPv6 :rfc:`4659`.
1835L3VPN routes, and their associated VRF MPLS labels, can be distributed to VPN
1836SAFI neighbors in the *default*, i.e., non VRF, BGP instance. VRF MPLS labels
1837are reached using *core* MPLS labels which are distributed using LDP or BGP
1838labeled unicast. *bgpd* also supports inter-VRF route leaking.
b572f826 1839
b572f826 1840
c8a5e5e1 1841.. _bgp-vrf-route-leaking:
8fcedbd2
QY
1842
1843VRF Route Leaking
c8a5e5e1 1844-----------------
8fcedbd2
QY
1845
1846BGP routes may be leaked (i.e. copied) between a unicast VRF RIB and the VPN
f90115c5
LB
1847SAFI RIB of the default VRF for use in MPLS-based L3VPNs. Unicast routes may
1848also be leaked between any VRFs (including the unicast RIB of the default BGP
1849instanced). A shortcut syntax is also available for specifying leaking from one
1850VRF to another VRF using the default instance's VPN RIB as the intemediary. A
1851common application of the VRF-VRF feature is to connect a customer's private
8fcedbd2
QY
1852routing domain to a provider's VPN service. Leaking is configured from the
1853point of view of an individual VRF: ``import`` refers to routes leaked from VPN
1854to a unicast VRF, whereas ``export`` refers to routes leaked from a unicast VRF
1855to VPN.
1856
1857Required parameters
c8a5e5e1 1858^^^^^^^^^^^^^^^^^^^
b572f826 1859
4da7fda3
QY
1860Routes exported from a unicast VRF to the VPN RIB must be augmented by two
1861parameters:
1862
1863- an :abbr:`RD (Route Distinguisher)`
1864- an :abbr:`RTLIST (Route-target List)`
1865
1866Configuration for these exported routes must, at a minimum, specify these two
1867parameters.
1868
1869Routes imported from the VPN RIB to a unicast VRF are selected according to
1870their RTLISTs. Routes whose RTLIST contains at least one route-target in
1871common with the configured import RTLIST are leaked. Configuration for these
1872imported routes must specify an RTLIST to be matched.
1873
1874The RD, which carries no semantic value, is intended to make the route unique
1875in the VPN RIB among all routes of its prefix that originate from all the
1876customers and sites that are attached to the provider's VPN service.
1877Accordingly, each site of each customer is typically assigned an RD that is
1878unique across the entire provider network.
1879
1880The RTLIST is a set of route-target extended community values whose purpose is
1881to specify route-leaking policy. Typically, a customer is assigned a single
1882route-target value for import and export to be used at all customer sites. This
1883configuration specifies a simple topology wherein a customer has a single
1884routing domain which is shared across all its sites. More complex routing
1885topologies are possible through use of additional route-targets to augment the
1886leaking of sets of routes in various ways.
b572f826 1887
e967a1d0
DS
1888When using the shortcut syntax for vrf-to-vrf leaking, the RD and RT are
1889auto-derived.
fb3d9f3e 1890
8fcedbd2 1891General configuration
c8a5e5e1 1892^^^^^^^^^^^^^^^^^^^^^
b572f826 1893
f90115c5 1894Configuration of route leaking between a unicast VRF RIB and the VPN SAFI RIB
4da7fda3
QY
1895of the default VRF is accomplished via commands in the context of a VRF
1896address-family:
b572f826
PZ
1897
1898.. index:: rd vpn export AS:NN|IP:nn
1899.. clicmd:: rd vpn export AS:NN|IP:nn
1900
4da7fda3
QY
1901 Specifies the route distinguisher to be added to a route exported from the
1902 current unicast VRF to VPN.
b572f826
PZ
1903
1904.. index:: no rd vpn export [AS:NN|IP:nn]
1905.. clicmd:: no rd vpn export [AS:NN|IP:nn]
1906
1907 Deletes any previously-configured export route distinguisher.
1908
1909.. index:: rt vpn import|export|both RTLIST...
1910.. clicmd:: rt vpn import|export|both RTLIST...
1911
4da7fda3
QY
1912 Specifies the route-target list to be attached to a route (export) or the
1913 route-target list to match against (import) when exporting/importing between
1914 the current unicast VRF and VPN.
b572f826 1915
4da7fda3
QY
1916 The RTLIST is a space-separated list of route-targets, which are BGP
1917 extended community values as described in
b572f826
PZ
1918 :ref:`bgp-extended-communities-attribute`.
1919
1920.. index:: no rt vpn import|export|both [RTLIST...]
1921.. clicmd:: no rt vpn import|export|both [RTLIST...]
1922
1923 Deletes any previously-configured import or export route-target list.
1924
e70e9f8e
PZ
1925.. index:: label vpn export (0..1048575)|auto
1926.. clicmd:: label vpn export (0..1048575)|auto
b572f826 1927
8a2124f7 1928 Enables an MPLS label to be attached to a route exported from the current
1929 unicast VRF to VPN. If the value specified is ``auto``, the label value is
1930 automatically assigned from a pool maintained by the Zebra daemon. If Zebra
1931 is not running, or if this command is not configured, automatic label
1932 assignment will not complete, which will block corresponding route export.
b572f826 1933
e70e9f8e
PZ
1934.. index:: no label vpn export [(0..1048575)|auto]
1935.. clicmd:: no label vpn export [(0..1048575)|auto]
b572f826
PZ
1936
1937 Deletes any previously-configured export label.
1938
1939.. index:: nexthop vpn export A.B.C.D|X:X::X:X
1940.. clicmd:: nexthop vpn export A.B.C.D|X:X::X:X
1941
4da7fda3
QY
1942 Specifies an optional nexthop value to be assigned to a route exported from
1943 the current unicast VRF to VPN. If left unspecified, the nexthop will be set
1944 to 0.0.0.0 or 0:0::0:0 (self).
b572f826
PZ
1945
1946.. index:: no nexthop vpn export [A.B.C.D|X:X::X:X]
1947.. clicmd:: no nexthop vpn export [A.B.C.D|X:X::X:X]
1948
1949 Deletes any previously-configured export nexthop.
1950
1951.. index:: route-map vpn import|export MAP
1952.. clicmd:: route-map vpn import|export MAP
1953
4da7fda3 1954 Specifies an optional route-map to be applied to routes imported or exported
d1e7591e 1955 between the current unicast VRF and VPN.
b572f826
PZ
1956
1957.. index:: no route-map vpn import|export [MAP]
1958.. clicmd:: no route-map vpn import|export [MAP]
1959
1960 Deletes any previously-configured import or export route-map.
1961
1962.. index:: import|export vpn
1963.. clicmd:: import|export vpn
1964
d1e7591e 1965 Enables import or export of routes between the current unicast VRF and VPN.
b572f826
PZ
1966
1967.. index:: no import|export vpn
1968.. clicmd:: no import|export vpn
1969
d1e7591e 1970 Disables import or export of routes between the current unicast VRF and VPN.
b572f826 1971
fb3d9f3e
DS
1972.. index:: import vrf VRFNAME
1973.. clicmd:: import vrf VRFNAME
1974
e967a1d0
DS
1975 Shortcut syntax for specifying automatic leaking from vrf VRFNAME to
1976 the current VRF using the VPN RIB as intermediary. The RD and RT
1977 are auto derived and should not be specified explicitly for either the
1978 source or destination VRF's.
1979
1980 This shortcut syntax mode is not compatible with the explicit
1981 `import vpn` and `export vpn` statements for the two VRF's involved.
1982 The CLI will disallow attempts to configure incompatible leaking
1983 modes.
fb3d9f3e
DS
1984
1985.. index:: no import vrf VRFNAME
1986.. clicmd:: no import vrf VRFNAME
1987
e967a1d0
DS
1988 Disables automatic leaking from vrf VRFNAME to the current VRF using
1989 the VPN RIB as intermediary.
b572f826 1990
42fc5d26 1991
8fcedbd2 1992.. _bgp-cisco-compatibility:
42fc5d26 1993
8fcedbd2
QY
1994Cisco Compatibility
1995-------------------
42fc5d26 1996
8fcedbd2
QY
1997FRR has commands that change some configuration syntax and default behavior to
1998behave more closely to Cisco conventions. These are deprecated and will be
1999removed in a future version of FRR.
42fc5d26 2000
8fcedbd2
QY
2001.. deprecated:: 5.0
2002 Please transition to using the FRR specific syntax for your configuration.
42fc5d26 2003
8fcedbd2
QY
2004.. index:: bgp config-type cisco
2005.. clicmd:: bgp config-type cisco
42fc5d26 2006
8fcedbd2 2007 Cisco compatible BGP configuration output.
42fc5d26 2008
8fcedbd2 2009 When this configuration line is specified:
c1a54c05 2010
8fcedbd2
QY
2011 - ``no synchronization`` is displayed. This command does nothing and is for
2012 display purposes only.
2013 - ``no auto-summary`` is displayed.
2014 - The ``network`` and ``aggregate-address`` arguments are displayed as:
42fc5d26 2015
8fcedbd2 2016 ::
42fc5d26 2017
8fcedbd2 2018 A.B.C.D M.M.M.M
42fc5d26 2019
8fcedbd2
QY
2020 FRR: network 10.0.0.0/8
2021 Cisco: network 10.0.0.0
42fc5d26 2022
8fcedbd2
QY
2023 FRR: aggregate-address 192.168.0.0/24
2024 Cisco: aggregate-address 192.168.0.0 255.255.255.0
42fc5d26 2025
8fcedbd2
QY
2026 Community attribute handling is also different. If no configuration is
2027 specified community attribute and extended community attribute are sent to
2028 the neighbor. If a user manually disables the feature, the community
2029 attribute is not sent to the neighbor. When ``bgp config-type cisco`` is
2030 specified, the community attribute is not sent to the neighbor by default.
2031 To send the community attribute user has to specify
2032 :clicmd:`neighbor A.B.C.D send-community` like so:
42fc5d26 2033
8fcedbd2 2034 .. code-block:: frr
42fc5d26 2035
8fcedbd2
QY
2036 !
2037 router bgp 1
2038 neighbor 10.0.0.1 remote-as 1
2039 address-family ipv4 unicast
2040 no neighbor 10.0.0.1 send-community
2041 exit-address-family
2042 !
2043 router bgp 1
2044 neighbor 10.0.0.1 remote-as 1
2045 address-family ipv4 unicast
2046 neighbor 10.0.0.1 send-community
2047 exit-address-family
2048 !
42fc5d26 2049
8fcedbd2
QY
2050.. deprecated:: 5.0
2051 Please transition to using the FRR specific syntax for your configuration.
2052
2053.. index:: bgp config-type zebra
2054.. clicmd:: bgp config-type zebra
2055
2056 FRR style BGP configuration. This is the default.
2057
2058.. _bgp-debugging:
2059
2060Debugging
2061---------
42fc5d26 2062
c1a54c05 2063.. index:: show debug
29adcd50 2064.. clicmd:: show debug
42fc5d26 2065
8fcedbd2 2066 Show all enabled debugs.
42fc5d26 2067
53b758f3
PG
2068.. index:: [no] debug bgp neighbor-events
2069.. clicmd:: [no] debug bgp neighbor-events
42fc5d26 2070
8fcedbd2
QY
2071 Enable or disable debugging for neighbor events. This provides general
2072 information on BGP events such as peer connection / disconnection, session
2073 establishment / teardown, and capability negotiation.
42fc5d26 2074
53b758f3
PG
2075.. index:: [no] debug bgp updates
2076.. clicmd:: [no] debug bgp updates
42fc5d26 2077
8fcedbd2
QY
2078 Enable or disable debugging for BGP updates. This provides information on
2079 BGP UPDATE messages transmitted and received between local and remote
2080 instances.
42fc5d26 2081
53b758f3
PG
2082.. index:: [no] debug bgp keepalives
2083.. clicmd:: [no] debug bgp keepalives
42fc5d26 2084
8fcedbd2
QY
2085 Enable or disable debugging for BGP keepalives. This provides information on
2086 BGP KEEPALIVE messages transmitted and received between local and remote
2087 instances.
c1a54c05 2088
8fcedbd2
QY
2089.. index:: [no] debug bgp bestpath <A.B.C.D/M|X:X::X:X/M>
2090.. clicmd:: [no] debug bgp bestpath <A.B.C.D/M|X:X::X:X/M>
42fc5d26 2091
8fcedbd2 2092 Enable or disable debugging for bestpath selection on the specified prefix.
42fc5d26 2093
8fcedbd2
QY
2094.. index:: [no] debug bgp nht
2095.. clicmd:: [no] debug bgp nht
4da7fda3 2096
8fcedbd2 2097 Enable or disable debugging of BGP nexthop tracking.
4da7fda3 2098
8fcedbd2
QY
2099.. index:: [no] debug bgp update-groups
2100.. clicmd:: [no] debug bgp update-groups
4b44467c 2101
8fcedbd2
QY
2102 Enable or disable debugging of dynamic update groups. This provides general
2103 information on group creation, deletion, join and prune events.
4b44467c 2104
8fcedbd2
QY
2105.. index:: [no] debug bgp zebra
2106.. clicmd:: [no] debug bgp zebra
42fc5d26 2107
8fcedbd2 2108 Enable or disable debugging of communications between *bgpd* and *zebra*.
c3c5a71f 2109
8fcedbd2
QY
2110Dumping Messages and Routing Tables
2111^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
42fc5d26 2112
8fcedbd2
QY
2113.. index:: dump bgp all PATH [INTERVAL]
2114.. clicmd:: dump bgp all PATH [INTERVAL]
42fc5d26 2115
8fcedbd2
QY
2116.. index:: dump bgp all-et PATH [INTERVAL]
2117.. clicmd:: dump bgp all-et PATH [INTERVAL]
c3c5a71f 2118
8fcedbd2
QY
2119.. index:: no dump bgp all [PATH] [INTERVAL]
2120.. clicmd:: no dump bgp all [PATH] [INTERVAL]
42fc5d26 2121
8fcedbd2
QY
2122 Dump all BGP packet and events to `path` file.
2123 If `interval` is set, a new file will be created for echo `interval` of
2124 seconds. The path `path` can be set with date and time formatting
2125 (strftime). The type ‘all-et’ enables support for Extended Timestamp Header
2126 (:ref:`packet-binary-dump-format`).
c3c5a71f 2127
8fcedbd2
QY
2128.. index:: dump bgp updates PATH [INTERVAL]
2129.. clicmd:: dump bgp updates PATH [INTERVAL]
42fc5d26 2130
8fcedbd2
QY
2131.. index:: dump bgp updates-et PATH [INTERVAL]
2132.. clicmd:: dump bgp updates-et PATH [INTERVAL]
42fc5d26 2133
8fcedbd2
QY
2134.. index:: no dump bgp updates [PATH] [INTERVAL]
2135.. clicmd:: no dump bgp updates [PATH] [INTERVAL]
42fc5d26 2136
8fcedbd2
QY
2137 Dump only BGP updates messages to `path` file.
2138 If `interval` is set, a new file will be created for echo `interval` of
2139 seconds. The path `path` can be set with date and time formatting
2140 (strftime). The type ‘updates-et’ enables support for Extended Timestamp
2141 Header (:ref:`packet-binary-dump-format`).
42fc5d26 2142
8fcedbd2
QY
2143.. index:: dump bgp routes-mrt PATH
2144.. clicmd:: dump bgp routes-mrt PATH
c3c5a71f 2145
8fcedbd2
QY
2146.. index:: dump bgp routes-mrt PATH INTERVAL
2147.. clicmd:: dump bgp routes-mrt PATH INTERVAL
42fc5d26 2148
8fcedbd2
QY
2149.. index:: no dump bgp route-mrt [PATH] [INTERVAL]
2150.. clicmd:: no dump bgp route-mrt [PATH] [INTERVAL]
42fc5d26 2151
8fcedbd2
QY
2152 Dump whole BGP routing table to `path`. This is heavy process. The path
2153 `path` can be set with date and time formatting (strftime). If `interval` is
2154 set, a new file will be created for echo `interval` of seconds.
42fc5d26 2155
8fcedbd2 2156 Note: the interval variable can also be set using hours and minutes: 04h20m00.
42fc5d26 2157
c3c5a71f 2158
8fcedbd2 2159.. _bgp-other-commands:
42fc5d26 2160
8fcedbd2
QY
2161Other BGP Commands
2162------------------
42fc5d26 2163
8fcedbd2
QY
2164.. index:: clear bgp ipv4|ipv6 \*
2165.. clicmd:: clear bgp ipv4|ipv6 \*
42fc5d26 2166
8fcedbd2 2167 Clear all address family peers.
42fc5d26 2168
8fcedbd2
QY
2169.. index:: clear bgp ipv4|ipv6 PEER
2170.. clicmd:: clear bgp ipv4|ipv6 PEER
42fc5d26 2171
8fcedbd2 2172 Clear peers which have addresses of X.X.X.X
42fc5d26 2173
8fcedbd2
QY
2174.. index:: clear bgp ipv4|ipv6 PEER soft in
2175.. clicmd:: clear bgp ipv4|ipv6 PEER soft in
42fc5d26 2176
8fcedbd2 2177 Clear peer using soft reconfiguration.
42fc5d26 2178
42fc5d26 2179
8fcedbd2 2180.. _bgp-displaying-bgp-information:
42fc5d26 2181
8fcedbd2
QY
2182Displaying BGP Information
2183==========================
42fc5d26 2184
e6f59415
PG
2185The following four commands display the IPv6 and IPv4 routing tables, depending
2186on whether or not the ``ip`` keyword is used.
2187Actually, :clicmd:`show ip bgp` command was used on older `Quagga` routing
2188daemon project, while :clicmd:`show bgp` command is the new format. The choice
2189has been done to keep old format with IPv4 routing table, while new format
2190displays IPv6 routing table.
2191
8fcedbd2
QY
2192.. index:: show ip bgp
2193.. clicmd:: show ip bgp
42fc5d26 2194
8fcedbd2
QY
2195.. index:: show ip bgp A.B.C.D
2196.. clicmd:: show ip bgp A.B.C.D
c1a54c05 2197
e6f59415
PG
2198.. index:: show bgp
2199.. clicmd:: show bgp
2200
2201.. index:: show bgp X:X::X:X
2202.. clicmd:: show bgp X:X::X:X
42fc5d26 2203
8fcedbd2 2204 These commands display BGP routes. When no route is specified, the default
e6f59415 2205 is to display all BGP routes.
42fc5d26 2206
8fcedbd2 2207 ::
c1a54c05 2208
8fcedbd2
QY
2209 BGP table version is 0, local router ID is 10.1.1.1
2210 Status codes: s suppressed, d damped, h history, * valid, > best, i - internal
2211 Origin codes: i - IGP, e - EGP, ? - incomplete
42fc5d26 2212
8fcedbd2
QY
2213 Network Next Hop Metric LocPrf Weight Path
2214 \*> 1.1.1.1/32 0.0.0.0 0 32768 i
42fc5d26 2215
8fcedbd2 2216 Total number of prefixes 1
4da7fda3 2217
e6f59415
PG
2218Some other commands provide additional options for filtering the output.
2219
2220.. index:: show [ip] bgp regexp LINE
2221.. clicmd:: show [ip] bgp regexp LINE
42fc5d26 2222
8fcedbd2
QY
2223 This command displays BGP routes using AS path regular expression
2224 (:ref:`bgp-regular-expressions`).
42fc5d26 2225
e6f59415
PG
2226.. index:: show [ip] bgp summary
2227.. clicmd:: show [ip] bgp summary
42fc5d26 2228
8fcedbd2 2229 Show a bgp peer summary for the specified address family.
42fc5d26 2230
e6f59415
PG
2231The old command structure :clicmd:`show ip bgp` may be removed in the future
2232and should no longer be used. In order to reach the other BGP routing tables
2233other than the IPv6 routing table given by :clicmd:`show bgp`, the new command
2234structure is extended with :clicmd:`show bgp [afi] [safi]`.
2235
2236.. index:: show bgp [afi] [safi]
2237.. clicmd:: show bgp [afi] [safi]
2238
2239.. index:: show bgp <ipv4|ipv6> <unicast|multicast|vpn|labeled-unicast>
2240.. clicmd:: show bgp <ipv4|ipv6> <unicast|multicast|vpn|labeled-unicast>
2241
2242 These commands display BGP routes for the specific routing table indicated by
2243 the selected afi and the selected safi. If no afi and no safi value is given,
2244 the command falls back to the default IPv6 routing table
2245
2246.. index:: show bgp [afi] [safi] summary
2247.. clicmd:: show bgp [afi] [safi] summary
2248
2249 Show a bgp peer summary for the specified address family, and subsequent
2250 address-family.
2251
2252.. index:: show bgp [afi] [safi] neighbor [PEER]
2253.. clicmd:: show bgp [afi] [safi] neighbor [PEER]
9eb95b3b 2254
e6f59415
PG
2255 This command shows information on a specific BGP peer of the relevant
2256 afi and safi selected.
c1a54c05 2257
e6f59415
PG
2258.. index:: show bgp [afi] [safi] dampening dampened-paths
2259.. clicmd:: show bgp [afi] [safi] dampening dampened-paths
42fc5d26 2260
e6f59415
PG
2261 Display paths suppressed due to dampening of the selected afi and safi
2262 selected.
42fc5d26 2263
e6f59415
PG
2264.. index:: show bgp [afi] [safi] dampening flap-statistics
2265.. clicmd:: show bgp [afi] [safi] dampening flap-statistics
c1a54c05 2266
e6f59415 2267 Display flap statistics of routes of the selected afi and safi selected.
42fc5d26 2268
8fcedbd2 2269.. _bgp-display-routes-by-community:
42fc5d26 2270
8fcedbd2
QY
2271Displaying Routes by Community Attribute
2272----------------------------------------
42fc5d26 2273
8fcedbd2
QY
2274The following commands allow displaying routes based on their community
2275attribute.
42fc5d26 2276
8fcedbd2
QY
2277.. index:: show [ip] bgp <ipv4|ipv6> community
2278.. clicmd:: show [ip] bgp <ipv4|ipv6> community
42fc5d26 2279
8fcedbd2
QY
2280.. index:: show [ip] bgp <ipv4|ipv6> community COMMUNITY
2281.. clicmd:: show [ip] bgp <ipv4|ipv6> community COMMUNITY
42fc5d26 2282
8fcedbd2
QY
2283.. index:: show [ip] bgp <ipv4|ipv6> community COMMUNITY exact-match
2284.. clicmd:: show [ip] bgp <ipv4|ipv6> community COMMUNITY exact-match
76bd1499 2285
8fcedbd2
QY
2286 These commands display BGP routes which have the community attribute.
2287 attribute. When ``COMMUNITY`` is specified, BGP routes that match that
2288 community are displayed. When `exact-match` is specified, it display only
2289 routes that have an exact match.
c3c5a71f 2290
8fcedbd2
QY
2291.. index:: show [ip] bgp <ipv4|ipv6> community-list WORD
2292.. clicmd:: show [ip] bgp <ipv4|ipv6> community-list WORD
42fc5d26 2293
8fcedbd2
QY
2294.. index:: show [ip] bgp <ipv4|ipv6> community-list WORD exact-match
2295.. clicmd:: show [ip] bgp <ipv4|ipv6> community-list WORD exact-match
42fc5d26 2296
8fcedbd2
QY
2297 These commands display BGP routes for the address family specified that
2298 match the specified community list. When `exact-match` is specified, it
2299 displays only routes that have an exact match.
42fc5d26 2300
8fcedbd2 2301.. _bgp-display-routes-by-as-path:
42fc5d26 2302
8fcedbd2
QY
2303Displaying Routes by AS Path
2304----------------------------
42fc5d26 2305
8fcedbd2
QY
2306.. index:: show bgp ipv4|ipv6 regexp LINE
2307.. clicmd:: show bgp ipv4|ipv6 regexp LINE
76bd1499 2308
8fcedbd2
QY
2309 This commands displays BGP routes that matches a regular
2310 expression `line` (:ref:`bgp-regular-expressions`).
2311
e6f59415
PG
2312.. index:: show [ip] bgp ipv4 vpn
2313.. clicmd:: show [ip] bgp ipv4 vpn
8fcedbd2 2314
e6f59415
PG
2315.. index:: show [ip] bgp ipv6 vpn
2316.. clicmd:: show [ip] bgp ipv6 vpn
8fcedbd2
QY
2317
2318 Print active IPV4 or IPV6 routes advertised via the VPN SAFI.
2319
2320.. index:: show bgp ipv4 vpn summary
2321.. clicmd:: show bgp ipv4 vpn summary
2322
2323.. index:: show bgp ipv6 vpn summary
2324.. clicmd:: show bgp ipv6 vpn summary
2325
2326 Print a summary of neighbor connections for the specified AFI/SAFI combination.
2327
2328
2329.. _bgp-route-reflector:
2330
2331Route Reflector
2332===============
2333
749afd7d
RF
2334BGP routers connected inside the same AS through BGP belong to an internal
2335BGP session, or IBGP. In order to prevent routing table loops, IBGP does not
2336advertise IBGP-learned routes to other routers in the same session. As such,
2337IBGP requires a full mesh of all peers. For large networks, this quickly becomes
2338unscalable. Introducing route reflectors removes the need for the full-mesh.
8fcedbd2 2339
749afd7d
RF
2340When route reflectors are configured, these will reflect the routes announced
2341by the peers configured as clients. A route reflector client is configured
2342with:
8fcedbd2
QY
2343
2344.. index:: neighbor PEER route-reflector-client
2345.. clicmd:: neighbor PEER route-reflector-client
2346
2347.. index:: no neighbor PEER route-reflector-client
2348.. clicmd:: no neighbor PEER route-reflector-client
c3c5a71f 2349
749afd7d
RF
2350To avoid single points of failure, multiple route reflectors can be configured.
2351
2352A cluster is a collection of route reflectors and their clients, and is used
2353by route reflectors to avoid looping.
2354
2355.. index:: bgp cluster-id A.B.C.D
2356.. clicmd:: bgp cluster-id A.B.C.D
42fc5d26 2357
0efdf0fe 2358.. _routing-policy:
42fc5d26 2359
8fcedbd2
QY
2360Routing Policy
2361==============
42fc5d26 2362
4da7fda3 2363You can set different routing policy for a peer. For example, you can set
9eb95b3b
QY
2364different filter for a peer.
2365
2366.. code-block:: frr
c1a54c05
QY
2367
2368 bgp multiple-instance
2369 !
2370 router bgp 1 view 1
2371 neighbor 10.0.0.1 remote-as 2
2372 address-family ipv4 unicast
2373 neighbor 10.0.0.1 distribute-list 1 in
2374 exit-address-family
2375 !
2376 router bgp 1 view 2
2377 neighbor 10.0.0.1 remote-as 2
2378 address-family ipv4 unicast
2379 neighbor 10.0.0.1 distribute-list 2 in
2380 exit-address-family
c3c5a71f 2381
4da7fda3
QY
2382This means BGP update from a peer 10.0.0.1 goes to both BGP view 1 and view 2.
2383When the update is inserted into view 1, distribute-list 1 is applied. On the
2384other hand, when the update is inserted into view 2, distribute-list 2 is
2385applied.
42fc5d26 2386
42fc5d26 2387
0efdf0fe 2388.. _bgp-regular-expressions:
42fc5d26
QY
2389
2390BGP Regular Expressions
2391=======================
2392
8fcedbd2
QY
2393BGP regular expressions are based on :t:`POSIX 1003.2` regular expressions. The
2394following description is just a quick subset of the POSIX regular expressions.
42fc5d26
QY
2395
2396
8fcedbd2 2397.\*
c1a54c05 2398 Matches any single character.
42fc5d26 2399
8fcedbd2 2400\*
c1a54c05 2401 Matches 0 or more occurrences of pattern.
42fc5d26 2402
8fcedbd2 2403\+
c1a54c05 2404 Matches 1 or more occurrences of pattern.
42fc5d26
QY
2405
2406?
c1a54c05 2407 Match 0 or 1 occurrences of pattern.
42fc5d26
QY
2408
2409^
c1a54c05 2410 Matches the beginning of the line.
42fc5d26
QY
2411
2412$
c1a54c05 2413 Matches the end of the line.
42fc5d26
QY
2414
2415_
8fcedbd2
QY
2416 The ``_`` character has special meanings in BGP regular expressions. It
2417 matches to space and comma , and AS set delimiter ``{`` and ``}`` and AS
2418 confederation delimiter ``(`` and ``)``. And it also matches to the
2419 beginning of the line and the end of the line. So ``_`` can be used for AS
2420 value boundaries match. This character technically evaluates to
2421 ``(^|[,{}()]|$)``.
42fc5d26 2422
42fc5d26 2423
c1a54c05 2424.. _bgp-configuration-examples:
42fc5d26 2425
8fcedbd2
QY
2426Miscellaneous Configuration Examples
2427====================================
42fc5d26 2428
9eb95b3b
QY
2429Example of a session to an upstream, advertising only one prefix to it.
2430
2431.. code-block:: frr
42fc5d26 2432
c1a54c05
QY
2433 router bgp 64512
2434 bgp router-id 10.236.87.1
2435 neighbor upstream peer-group
2436 neighbor upstream remote-as 64515
2437 neighbor upstream capability dynamic
2438 neighbor 10.1.1.1 peer-group upstream
2439 neighbor 10.1.1.1 description ACME ISP
c3c5a71f 2440
c1a54c05
QY
2441 address-family ipv4 unicast
2442 network 10.236.87.0/24
2443 neighbor upstream prefix-list pl-allowed-adv out
2444 exit-address-family
2445 !
2446 ip prefix-list pl-allowed-adv seq 5 permit 82.195.133.0/25
2447 ip prefix-list pl-allowed-adv seq 10 deny any
42fc5d26 2448
aa9eafa4
QY
2449A more complex example including upstream, peer and customer sessions
2450advertising global prefixes and NO_EXPORT prefixes and providing actions for
2451customer routes based on community values. Extensive use is made of route-maps
2452and the 'call' feature to support selective advertising of prefixes. This
2453example is intended as guidance only, it has NOT been tested and almost
2454certainly contains silly mistakes, if not serious flaws.
42fc5d26 2455
9eb95b3b 2456.. code-block:: frr
42fc5d26 2457
c1a54c05
QY
2458 router bgp 64512
2459 bgp router-id 10.236.87.1
2460 neighbor upstream capability dynamic
2461 neighbor cust capability dynamic
2462 neighbor peer capability dynamic
2463 neighbor 10.1.1.1 remote-as 64515
2464 neighbor 10.1.1.1 peer-group upstream
2465 neighbor 10.2.1.1 remote-as 64516
2466 neighbor 10.2.1.1 peer-group upstream
2467 neighbor 10.3.1.1 remote-as 64517
2468 neighbor 10.3.1.1 peer-group cust-default
2469 neighbor 10.3.1.1 description customer1
2470 neighbor 10.4.1.1 remote-as 64518
2471 neighbor 10.4.1.1 peer-group cust
2472 neighbor 10.4.1.1 description customer2
2473 neighbor 10.5.1.1 remote-as 64519
2474 neighbor 10.5.1.1 peer-group peer
2475 neighbor 10.5.1.1 description peer AS 1
2476 neighbor 10.6.1.1 remote-as 64520
2477 neighbor 10.6.1.1 peer-group peer
2478 neighbor 10.6.1.1 description peer AS 2
2479
2480 address-family ipv4 unicast
2481 network 10.123.456.0/24
2482 network 10.123.456.128/25 route-map rm-no-export
2483 neighbor upstream route-map rm-upstream-out out
2484 neighbor cust route-map rm-cust-in in
2485 neighbor cust route-map rm-cust-out out
2486 neighbor cust send-community both
2487 neighbor peer route-map rm-peer-in in
2488 neighbor peer route-map rm-peer-out out
2489 neighbor peer send-community both
2490 neighbor 10.3.1.1 prefix-list pl-cust1-network in
2491 neighbor 10.4.1.1 prefix-list pl-cust2-network in
2492 neighbor 10.5.1.1 prefix-list pl-peer1-network in
2493 neighbor 10.6.1.1 prefix-list pl-peer2-network in
2494 exit-address-family
2495 !
2496 ip prefix-list pl-default permit 0.0.0.0/0
2497 !
2498 ip prefix-list pl-upstream-peers permit 10.1.1.1/32
2499 ip prefix-list pl-upstream-peers permit 10.2.1.1/32
2500 !
2501 ip prefix-list pl-cust1-network permit 10.3.1.0/24
2502 ip prefix-list pl-cust1-network permit 10.3.2.0/24
2503 !
2504 ip prefix-list pl-cust2-network permit 10.4.1.0/24
2505 !
2506 ip prefix-list pl-peer1-network permit 10.5.1.0/24
2507 ip prefix-list pl-peer1-network permit 10.5.2.0/24
2508 ip prefix-list pl-peer1-network permit 192.168.0.0/24
2509 !
2510 ip prefix-list pl-peer2-network permit 10.6.1.0/24
2511 ip prefix-list pl-peer2-network permit 10.6.2.0/24
2512 ip prefix-list pl-peer2-network permit 192.168.1.0/24
2513 ip prefix-list pl-peer2-network permit 192.168.2.0/24
2514 ip prefix-list pl-peer2-network permit 172.16.1/24
2515 !
2516 ip as-path access-list asp-own-as permit ^$
2517 ip as-path access-list asp-own-as permit _64512_
2518 !
2519 ! #################################################################
2520 ! Match communities we provide actions for, on routes receives from
2521 ! customers. Communities values of <our-ASN>:X, with X, have actions:
2522 !
2523 ! 100 - blackhole the prefix
2524 ! 200 - set no_export
2525 ! 300 - advertise only to other customers
2526 ! 400 - advertise only to upstreams
2527 ! 500 - set no_export when advertising to upstreams
2528 ! 2X00 - set local_preference to X00
2529 !
2530 ! blackhole the prefix of the route
2531 ip community-list standard cm-blackhole permit 64512:100
2532 !
2533 ! set no-export community before advertising
2534 ip community-list standard cm-set-no-export permit 64512:200
2535 !
2536 ! advertise only to other customers
2537 ip community-list standard cm-cust-only permit 64512:300
2538 !
2539 ! advertise only to upstreams
2540 ip community-list standard cm-upstream-only permit 64512:400
2541 !
2542 ! advertise to upstreams with no-export
2543 ip community-list standard cm-upstream-noexport permit 64512:500
2544 !
2545 ! set local-pref to least significant 3 digits of the community
2546 ip community-list standard cm-prefmod-100 permit 64512:2100
2547 ip community-list standard cm-prefmod-200 permit 64512:2200
2548 ip community-list standard cm-prefmod-300 permit 64512:2300
2549 ip community-list standard cm-prefmod-400 permit 64512:2400
2550 ip community-list expanded cme-prefmod-range permit 64512:2...
2551 !
2552 ! Informational communities
2553 !
2554 ! 3000 - learned from upstream
2555 ! 3100 - learned from customer
2556 ! 3200 - learned from peer
2557 !
2558 ip community-list standard cm-learnt-upstream permit 64512:3000
2559 ip community-list standard cm-learnt-cust permit 64512:3100
2560 ip community-list standard cm-learnt-peer permit 64512:3200
2561 !
2562 ! ###################################################################
2563 ! Utility route-maps
2564 !
2565 ! These utility route-maps generally should not used to permit/deny
2566 ! routes, i.e. they do not have meaning as filters, and hence probably
2567 ! should be used with 'on-match next'. These all finish with an empty
2568 ! permit entry so as not interfere with processing in the caller.
2569 !
2570 route-map rm-no-export permit 10
2571 set community additive no-export
2572 route-map rm-no-export permit 20
2573 !
2574 route-map rm-blackhole permit 10
f6aa36f5 2575 description blackhole, up-pref and ensure it cannot escape this AS
c1a54c05
QY
2576 set ip next-hop 127.0.0.1
2577 set local-preference 10
2578 set community additive no-export
2579 route-map rm-blackhole permit 20
2580 !
2581 ! Set local-pref as requested
2582 route-map rm-prefmod permit 10
2583 match community cm-prefmod-100
2584 set local-preference 100
2585 route-map rm-prefmod permit 20
2586 match community cm-prefmod-200
2587 set local-preference 200
2588 route-map rm-prefmod permit 30
2589 match community cm-prefmod-300
2590 set local-preference 300
2591 route-map rm-prefmod permit 40
2592 match community cm-prefmod-400
2593 set local-preference 400
2594 route-map rm-prefmod permit 50
2595 !
2596 ! Community actions to take on receipt of route.
2597 route-map rm-community-in permit 10
2598 description check for blackholing, no point continuing if it matches.
2599 match community cm-blackhole
2600 call rm-blackhole
2601 route-map rm-community-in permit 20
2602 match community cm-set-no-export
2603 call rm-no-export
2604 on-match next
2605 route-map rm-community-in permit 30
2606 match community cme-prefmod-range
2607 call rm-prefmod
2608 route-map rm-community-in permit 40
2609 !
2610 ! #####################################################################
2611 ! Community actions to take when advertising a route.
2612 ! These are filtering route-maps,
2613 !
2614 ! Deny customer routes to upstream with cust-only set.
2615 route-map rm-community-filt-to-upstream deny 10
2616 match community cm-learnt-cust
2617 match community cm-cust-only
2618 route-map rm-community-filt-to-upstream permit 20
2619 !
2620 ! Deny customer routes to other customers with upstream-only set.
2621 route-map rm-community-filt-to-cust deny 10
2622 match community cm-learnt-cust
2623 match community cm-upstream-only
2624 route-map rm-community-filt-to-cust permit 20
2625 !
2626 ! ###################################################################
2627 ! The top-level route-maps applied to sessions. Further entries could
2628 ! be added obviously..
2629 !
2630 ! Customers
2631 route-map rm-cust-in permit 10
2632 call rm-community-in
2633 on-match next
2634 route-map rm-cust-in permit 20
2635 set community additive 64512:3100
2636 route-map rm-cust-in permit 30
2637 !
2638 route-map rm-cust-out permit 10
2639 call rm-community-filt-to-cust
2640 on-match next
2641 route-map rm-cust-out permit 20
2642 !
2643 ! Upstream transit ASes
2644 route-map rm-upstream-out permit 10
2645 description filter customer prefixes which are marked cust-only
2646 call rm-community-filt-to-upstream
2647 on-match next
2648 route-map rm-upstream-out permit 20
2649 description only customer routes are provided to upstreams/peers
2650 match community cm-learnt-cust
2651 !
2652 ! Peer ASes
2653 ! outbound policy is same as for upstream
2654 route-map rm-peer-out permit 10
2655 call rm-upstream-out
2656 !
2657 route-map rm-peer-in permit 10
2658 set community additive 64512:3200
c3c5a71f 2659
8fcedbd2
QY
2660
2661Example of how to set up a 6-Bone connection.
2662
2663.. code-block:: frr
2664
2665 ! bgpd configuration
2666 ! ==================
2667 !
2668 ! MP-BGP configuration
2669 !
2670 router bgp 7675
2671 bgp router-id 10.0.0.1
2672 neighbor 3ffe:1cfa:0:2:2a0:c9ff:fe9e:f56 remote-as `as-number`
2673 !
2674 address-family ipv6
2675 network 3ffe:506::/32
2676 neighbor 3ffe:1cfa:0:2:2a0:c9ff:fe9e:f56 activate
2677 neighbor 3ffe:1cfa:0:2:2a0:c9ff:fe9e:f56 route-map set-nexthop out
2678 neighbor 3ffe:1cfa:0:2:2c0:4fff:fe68:a231 remote-as `as-number`
2679 neighbor 3ffe:1cfa:0:2:2c0:4fff:fe68:a231 route-map set-nexthop out
2680 exit-address-family
2681 !
2682 ipv6 access-list all permit any
2683 !
2684 ! Set output nexthop address.
2685 !
2686 route-map set-nexthop permit 10
2687 match ipv6 address all
2688 set ipv6 nexthop global 3ffe:1cfa:0:2:2c0:4fff:fe68:a225
2689 set ipv6 nexthop local fe80::2c0:4fff:fe68:a225
2690 !
2691 log file bgpd.log
2692 !
2693
2694
9e146a81 2695.. include:: routeserver.rst
f3817860
QY
2696
2697.. include:: rpki.rst
c1a54c05 2698
00458d01
PG
2699.. include:: flowspec.rst
2700
d1e7591e 2701.. [#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
2702.. [bgp-route-osci-cond] McPherson, D. and Gill, V. and Walton, D., "Border Gateway Protocol (BGP) Persistent Route Oscillation Condition", IETF RFC3345
2703.. [stable-flexible-ibgp] Flavel, A. and M. Roughan, "Stable and flexible iBGP", ACM SIGCOMM 2009
2704.. [ibgp-correctness] Griffin, T. and G. Wilfong, "On the correctness of IBGP configuration", ACM SIGCOMM 2002