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