Feedback
|
Table Of Contents
Prerequisites for the BGP Cost Community Feature
Restrictions for the BGP Cost Community Feature
Information About the BGP Cost Community Feature
How the BGP Cost Community Influences the Best Path Selection Process
Cost Community Support for Aggregate Routes and Multipaths
Influencing Route Preference in a Multi-Exit IGP Network
BGP Cost Community Support for EIGRP MPLS VPN PE-CE with Backdoor Links
How to Configure the BGP Cost Community Feature
Configuring the BGP Cost Community
Verifying the Configuration of the BGP Cost Community
Configuration Examples for the BGP Cost Community Feature
BGP Cost Community Configuration: Example
BGP Cost Community Verification: Examples
Feature Information for BGP Cost Community
BGP Cost Community
First Published: May 2004Last Updated: May 4, 2009The BGP Cost Community feature introduces the cost extended community attribute. The cost community is a non-transitive extended community attribute that is passed to internal BGP (iBGP) and confederation peers but not to external BGP (eBGP) peers. The cost community feature allows you to customize the local route preference and influence the best-path selection process by assigning cost values to specific routes.
In Cisco IOS XE Release 2.1 and later releases, support was introduced for mixed EIGRP MPLS VPN network topologies that contain VPN and backdoor links.
Finding Feature Information
For the latest feature information and caveats, see the release notes for your platform and software release. To find information about the features documented in this module, and to see a list of the releases in which each feature is supported, see the "Feature Information for BGP Cost Community" section.
Use Cisco Feature Navigator to find information about platform support and Cisco IOS XE software image support. To access Cisco Feature Navigator, go to http://www.cisco.com/go/cfn. An account on Cisco.com is not required.
Contents
•
Prerequisites for the BGP Cost Community Feature
•
Restrictions for the BGP Cost Community Feature
•
Information About the BGP Cost Community Feature
•
How to Configure the BGP Cost Community Feature
•
Configuration Examples for the BGP Cost Community Feature
•
Feature Information for BGP Cost Community
Prerequisites for the BGP Cost Community Feature
This document assumes that BGP is configured in your network and that peering has been established.
Restrictions for the BGP Cost Community Feature
•
The BGP Cost Community feature can be configured only within an autonomous system or confederation. The cost community is a non-transitive extended community that is passed to iBGP and confederation peers only and is not passed to eBGP peers.
•
The BGP Cost Community feature must be supported on all routers in the autonomous system or confederation before cost community filtering is configured. The cost community should be applied consistently throughout the local autonomous system or confederation to avoid potential routing loops.
•
Multiple cost community set clauses may be configured with the set extcommunity cost command in a single route map block or sequence. However, each set clause must be configured with a different ID value (0-255) for each point of insertion (POI). The ID value determines preference when all other attributes are equal. The lowest ID value is preferred.
Information About the BGP Cost Community Feature
To configure the BGP Cost Community feature, you must understand the following concepts:
•
How the BGP Cost Community Influences the Best Path Selection Process
•
Cost Community Support for Aggregate Routes and Multipaths
•
Influencing Route Preference in a Multi-Exit IGP Network
•
BGP Cost Community Support for EIGRP MPLS VPN PE-CE with Backdoor Links
BGP Cost Community Overview
The cost community is a non-transitive extended community attribute that is passed to iBGP and confederation peers but not to eBGP peers. The configuration of the BGP Cost Community feature allows you to customize the BGP best path selection process for a local autonomous system or confederation.
The cost community attribute is applied to internal routes by configuring the set extcommunity cost command in a route map. The cost community set clause is configured with a cost community ID number (0-255) and cost number (0-4294967295). The cost number value determines the preference for the path. The path with the lowest cost community number is preferred. Paths that are not specifically configured with the cost community attribute are assigned a default cost number value of 2147483647 (the midpoint between 0 and 4294967295) and are evaluated by the best path selection process accordingly. In the case where two paths have been configured with the same cost number value, the path selection process will then prefer the path with the lowest cost community ID. The cost extended community attribute is propagated to iBGP peers when extended community exchange is enabled with the neighbor send-community command.
The following commands can be used to apply the route map that is configured with the cost community set clause:
•
aggregate-address
•
neighbor default-originate route-map {in | out}
•
neighbor route-map
•
network route-map
•
redistribute route-map
How the BGP Cost Community Influences the Best Path Selection Process
The cost community attribute influences the BGP best path selection process at the point of insertion (POI). By default, the POI follows the IGP metric comparison. When BGP receives multiple paths to the same destination, it uses the best path selection process to determine which path is the best path. BGP automatically makes the decision and installs the best path into the routing table. The POI allows you to assign a preference to o a specific path when multiple equal cost paths are available. If the POI is not valid for local best path selection, the cost community attribute is silently ignored.
Multiple paths can be configured with the cost community attribute for the same POI. The path with the lowest cost community ID is considered first. In other words, all of the cost community paths for a specific POI are considered, starting with the one with the lowest cost community. Paths that do not contain the cost community (for the POI and community ID being evaluated) are assigned the default community cost value (2147483647). If the cost community values are equal, then cost community comparison proceeds to the next lowest community ID for this POI.
Note
Paths that are not configured with the cost community attribute are considered by the best path selection process to have the default cost-value (half of the maximum value [4294967295] or 2147483647).
Applying the cost community attribute at the POI allows you to assign a value to a path originated or learned by a peer in any part of the local autonomous system or confederation. The cost community can be used as a "tie breaker" during the best path selection process. Multiple instances of the cost community can be configured for separate equal cost paths within the same autonomous system or confederation. For example, a lower cost community value can be applied to a specific exit path in a network with multiple equal cost exits points, and the specific exit path will be preferred by the BGP best path selection process. See the scenario described in the "Influencing Route Preference in a Multi-Exit IGP Network" section.
Cost Community Support for Aggregate Routes and Multipaths
Aggregate routes and multipaths are supported by the BGP Cost Community feature. The cost community attribute can be applied to either type of route. The cost community attribute is passed to the aggregate or multipath route from component routes that carry the cost community attribute. Only unique IDs are passed, and only the highest cost of any individual component route will be applied to the aggregate on a per-ID basis. If multiple component routes contain the same ID, the highest configured cost is applied to the route. For example, the following two component routes are configured with the cost community attribute via an inbound route map:
•
10.0.0.1 (POI=IGP, ID=1, Cost=100)
•
192.168.0.1 (POI=IGP, ID=1, Cost=200)
If these component routes are aggregated or configured as a multipath, the cost value 200 (POI=IGP, ID=1, Cost=200) will be advertised because it is the highest cost.
If one or more component routes does not carry the cost community attribute or if the component routes are configured with different IDs, then the default value (2147483647) will be advertised for the aggregate or multipath route. For example, the following three component routes are configured with the cost community attribute via an inbound route map. However, the component routes are configured with two different IDs.
•
10.0.0.1 (POI=IGP, ID=1, Cost=100)
•
172.16.0.1 (POI=IGP, ID=2, Cost=100)
•
192.168.0.1 (POI=IGP, ID=1, Cost=200)
The single advertised path will include the aggregated cost communities as follows:
•
{POI=IGP, ID=1, Cost=2147483647} {POI=IGP, ID=2, Cost=2147483647}
Influencing Route Preference in a Multi-Exit IGP Network
Figure 1 shows an Interior Gateway Protocol (IGP) network with two autonomous system boundary routers (ASBRs) on the edge. Each ASBR has an equal cost path to network 10.8/16.
Figure 1 Multi-Exit Point IGP Network
Both paths are considered to be equal by BGP. If multipath loadsharing is configured, both paths will be installed to the routing table and will be used to load balance traffic. If multipath load balancing is not configured, then BGP will select the path that was learned first as the best path and install this path to the routing table. This behavior may not be desirable under some conditions. For example, the path is learned from ISP1 PE2 first, but the link between ISP1 PE2 and ASBR1 is a low-speed link.
The configuration of the cost community attribute can be used to influence the BGP best path selection process by applying a lower cost community value to the path learned by ASBR2. For example, the following configuration is applied to ASBR2.
route-map ISP2_PE1 permit 10set extcommunity cost 1 1match ip address 13!ip access-list 13 permit 10.8.0.0 0.0.255.255The above route map applies a cost community number value of 1 to the 10.8.0.0 route. By default, the path learned from ASBR1 will be assigned a cost community value of 2147483647. Because the path learned from ASBR2 has lower cost community value, this path will be preferred.
BGP Cost Community Support for EIGRP MPLS VPN PE-CE with Backdoor Links
Before EIGRP Site of Origin (SoO) BGP Cost Community support was introduced, BGP preferred locally sourced routes over routes learned from BGP peers. Back door links in an EIGRP MPLS VPN topology will be preferred by BGP if the back door link is learned first. (A back door link, or a route, is a connection that is configured outside of the VPN between a remote and main site. For example, a WAN leased line that connects a remote site to the corporate network).
The "pre-best-path" point of insertion (POI) was introduced in the BGP Cost Community feature to support mixed EIGRP VPN network topologies that contain VPN and backdoor links. This POI is applied automatically to EIGRP routes that are redistributed into BGP. The "pre-best path" POI carries the EIGRP route type and metric. This POI influences the best path calculation process by influencing BGP to consider this POI before any other comparison step. No configuration is required.
How to Configure the BGP Cost Community Feature
•
Configuring the BGP Cost Community
•
Verifying the Configuration of the BGP Cost Community
Configuring the BGP Cost Community
To configure the cost community, perform the steps in this section.
SUMMARY STEPS
1.
enable
2.
configure terminal
3.
router bgp autonomous-system-number
4.
neighbor ip-address remote-as autonomous-system-number
5.
address-family ipv4 [mdt | multicast | tunnel | unicast [vrf vrf-name] | vrf vrf-name] | ipv6 [multicast | unicast] | vpnv4 [unicast]
6.
neighbor ip-address route-map map-name {in | out}
7.
exit
8.
route-map map-name {permit | deny} [sequence-number]
9.
set extcommunity cost [igp] community-id cost-value
10.
end
DETAILED STEPS
Verifying the Configuration of the BGP Cost Community
BGP cost community configuration can be verified locally or for a specific neighbor. To verify the local configuration cost community, use the show route-map or show running-config command. To verify that a specific neighbor carries the cost community, use the show ip bgp ip-address command. The output from these commands displays the POI (IGP is the default POI), the configured ID, and configured cost. For large cost community values, the output from these commands will also show, with + and - values, the difference between the configured cost and the default cost. See the "Verifying the Configuration of the BGP Cost Community" section for specific example output.
Troubleshooting Tips
The bgp bestpath cost-community ignore command can be used to disable the evaluation of the cost community attribute to help isolate problems and troubleshoot issues that relate to BGP best path selection.
The debug ip bgp updates command can be used to print BGP update messages. The cost community extended community attribute will be displayed in the output of this command when received from a neighbor. A message will also be displayed if a non-transitive extended community if received from an external peer.
Configuration Examples for the BGP Cost Community Feature
The following examples show the configuration and verification of this feature:
•
BGP Cost Community Configuration: Example
•
BGP Cost Community Verification: Examples
BGP Cost Community Configuration: Example
The following example configuration shows the configuration of the set extcommunity cost command. The following example applies the cost community ID of 1 and cost community value of 100 to routes that are permitted by the route map. This configuration will cause the best path selection process to prefer this route over other equal cost paths that were not permitted by this route map sequence.
Router(config)# router bgp 50000Router(config-router)# neighbor 10.0.0.1 remote-as 50000Router(config-router)# neighbor 10.0.0.1 update-source Loopback 0Router(config-router)# address-family ipv4Router(config-router-af)# neighbor 10.0.0.1 activateRouter(config-router-af)# neighbor 10.0.0.1 route-map COST1 inRouter(config-router-af)# neighbor 10.0.0.1 send-community bothRouter(config-router-af)# exitRouter(config)# route-map COST1 permit 10Router(config-route-map)# match ip-address 1Router(config-route-map)# set extcommunity cost 1 100BGP Cost Community Verification: Examples
BGP cost community configuration can be verified locally or for a specific neighbor. To verify the local configuration cost community, use the show route-map or show running-config command. To verify that a specific neighbor carries the cost community, use the show ip bgp ip-address command.
The output of the show route-map command will display locally configured route-maps, match, set, continue clauses, and the status and configuration of the cost community attribute. The following sample output is similar to the output that will be displayed:
Router# show route-maproute-map COST1, permit, sequence 10Match clauses:as-path (as-path filter): 1Set clauses:extended community Cost:igp:1:100Policy routing matches: 0 packets, 0 bytesroute-map COST1, permit, sequence 20Match clauses:ip next-hop (access-lists): 2Set clauses:extended community Cost:igp:2:200Policy routing matches: 0 packets, 0 bytesroute-map COST1, permit, sequence 30Match clauses:interface GigabitEthernet0/0/0extcommunity (extcommunity-list filter):300Set clauses:extended community Cost:igp:3:300Policy routing matches: 0 packets, 0 bytesThe following sample output shows locally configured routes with large cost community values:
Router# show route-maproute-map set-cost, permit, sequence 10Match clauses:Set clauses:extended community RT:1:1 RT:2:2 RT:3:3 RT:4:4 RT:5:5 RT:6:6 RT:7:7RT:100:100 RT:200:200 RT:300:300 RT:400:400 RT:500:500 RT:600:600RT:700:700 additiveextended community Cost:igp:1:4294967295 (default+2147483648)Cost:igp:2:200 Cost:igp:3:300 Cost:igp:4:400Cost:igp:5:2147483648 (default+1) Cost:igp:6:2147484648 (default+1001)Cost:igp:7:2147284648 (default-198999)Policy routing matches: 0 packets, 0 bytesThe output of the show running config command will display match, set, and continue clauses that are configured within a route-map. The following sample output is filtered to show only the relevant part of the running configuration:
Router# show running-config | begin route-maproute-map COST1 permit 20match ip next-hop 2set extcommunity cost igp 2 200!route-map COST1 permit 30match interface GigabitEthernet0/0/0match extcommunity 300set extcommunity cost igp 3 300...The output of the show ip bgp ip-address command can be used to verify if a specific neighbor carries a path that is configured with the cost community attribute. The cost community attribute information is displayed in the "Extended Community" field. The POI, the cost community ID, and the cost community number value are displayed. The following sample output shows that neighbor 172.16.1.2 carries a cost community with an ID of 1 and a cost of 100:
Router# show ip bgp 10.0.0.0BGP routing table entry for 10.0.0.0/8, version 2Paths: (1 available, best #1)Not advertised to any peer2 2 2172.16.1.2 from 172.16.1.2 (172.16.1.2)Origin IGP, metric 0, localpref 100, valid, external, bestExtended Community: Cost:igp:1:100If the specified neighbor is configured with the default cost community number value or if the default value is assigned automatically for cost community evaluation, "default" with + and - values will be displayed after the cost community number value in the output.
Where to Go Next
For more information about the EIGRP MPLS VPN PE-CE Site of Origin (SoO) feature, refer to the EIGRP MPLS VPN PE-CE Site of Origin (SoO) module.
Additional References
For additional information related to the BGP Cost Community feature, refer to the following references.
Related Documents
Related Topic Document TitleBGP Best Path Selection
EIGRP MPLS VPN PE-CE Site of Origin
BGP commands
Cisco IOS master command list, all releases
Standards
Standard TitleNo new or modified standards are supported, and support for existing standards has not been modified.
—
MIBs
RFCs
Technical Assistance
Feature Information for BGP Cost Community
Table 1 lists the features in this module and provides links to specific configuration information.
Use Cisco Feature Navigator to find information about platform support and software image support. Cisco Feature Navigator enables you to determine which Cisco IOS XE software images support a specific software release, feature set, or platform. To access Cisco Feature Navigator, go to http://www.cisco.com/go/cfn. An account on Cisco.com is not required.
Note
Table 1 lists only the Cisco IOS XE software release that introduced support for a given feature in a given Cisco IOS XE software release train. Unless noted otherwise, subsequent releases of that Cisco IOS XE software release train also support that feature.
Table 1 Feature Information for BGP Cost Community
Feature Name Releases Feature InformationBGP Cost Community
Cisco IOS XE
Release 2.1The BGP Cost Community feature introduces the cost extended community attribute. The cost community is a non-transitive extended community attribute that is passed to internal BGP (iBGP) and confederation peers but not to external BGP (eBGP) peers. The cost community feature allows you to customize the local route preference and influence the best-path selection process by assigning cost values to specific routes.
This feature was introduced on the Cisco ASR 1000 Series Aggregation Services Routers.
The following sections provide information about this feature:
•
How the BGP Cost Community Influences the Best Path Selection Process
•
Cost Community Support for Aggregate Routes and Multipaths
•
Influencing Route Preference in a Multi-Exit IGP Network
•
How to Configure the BGP Cost Community Feature
•
Configuration Examples for the BGP Cost Community Feature
The following commands were introduced or modified: bgp bestpath cost-community ignore, debug ip bgp updates, and set extcommunity cost.
BGP Cost Community Support for EIGRP MPLS VPN PE-CE with Backdoor Links
Cisco IOS XE
Release 2.1Back door links in an EIGRP MPLS VPN topology will be preferred by BGP if the back door link is learned first. The "pre-best-path" point of insertion (POI) was introduced in the BGP Cost Community feature to support mixed EIGRP VPN network topologies that contain VPN and backdoor links. This POI is applied automatically to EIGRP routes that are redistributed into BGP and the POI influences the best path calculation process by influencing BGP to consider this POI before any other comparison step. No configuration is required. This feature is enabled automatically for EIGRP VPN sites when Cisco IOS XE Release 2.1 or later releases, is installed to a PE, CE, or back door router.
This feature was introduced on the Cisco ASR 1000 Series Routers.
The following section provides information about this feature:
•
BGP Cost Community Support for EIGRP MPLS VPN PE-CE with Backdoor Links
Cisco and the Cisco Logo are trademarks of Cisco Systems, Inc. and/or its affiliates in the U.S. and other countries. A listing of Cisco's trademarks can be found at www.cisco.com/go/trademarks. Third party trademarks mentioned are the property of their respective owners. The use of the word partner does not imply a partnership relationship between Cisco and any other company. (1005R)
Any Internet Protocol (IP) addresses and phone numbers used in this document are not intended to be actual addresses and phone numbers. Any examples, command display output, and figures included in the document are shown for illustrative purposes only. Any use of actual IP addresses or phone numbers in illustrative content is unintentional and coincidental.
© 2004-2009 Cisco Systems, Inc. All rights reserved.
Feedback
