What command is used for dynamic route summarization in BGP?
aggregate-address network subnet-mask [summary-only] [as-set]
This command is part of the BGP address family configuration.
Which BGP path attributes are not included in the new BGP aggregate prefix?
These attributes are essential for path selection but are omitted in summarization.
What does the atomic aggregate attribute indicate?
A loss of path information has occurred
This attribute is used to signal that some details about the original routes are no longer available.
What keyword may be used with the aggregate-address command to keep the component route’s BGP path information?
as-set
The as-set keyword allows for the preservation of the original path information when aggregating BGP routes.
What does the regex ^$ match?
Empty AS_PATH (routes originated within your local AS)
This regex pattern is used to identify routes that do not have any AS_PATH information.
What does the regex _100$ match?
Routes originated in AS 100
100 is the last entry in the path.
What does the regex ^100 match?
Matches routes directly received from AS 100
100 is the first entry.
What does the regex 100 match?
Routes that passed through AS 100 anywhere in the path
What does regex .* match?
Matches any as-path
What command is used to create the AS_Path access list?
ip as-path access-list acl-number {deny | permit} regex-query
This command allows for the specification of regular expressions to filter AS paths.
How is the AS_Path access list applied to a neighbor?
neighbor ip-address filter-list acl-number {in | out}
This command determines the direction of the filter application on the specified neighbor.
What command is used to initiate a hard reset on a router?
clear ip bgp ip-address
This command resets the BGP session for the specified IP address.
How can you clear all the router’s BGP sessions?
By using an asterisk (*) in lieu of the peer’s IP address
This command clears all BGP sessions instead of targeting a specific one.
What does performing a soft reset on sessions that support route refresh capability actually initiate?
a route refresh
This action allows for the re-establishment of routing information without tearing down the session.
You can perform a soft reset for a specific address family with the command _______.
clear bgp afi safi {ip-address | *} soft [in | out]
This command allows for targeted refresh of routing information based on the specified address family.
What command is used to enable communities on a neighbor-by-neighbor basis in BGP?
neighbor ip-address send-community [standard | extended | both]
This command configures the BGP address family to send community attributes.
What command is used in IOS XE to display communities in a new format?
ip bgp-community new-format
This command makes the communities easier to read.
What is the No_Advertise community in BGP?
A community that prevents routes from being advertised to any BGP peer
The No_Advertise community is set with the command set community no-advertise within a route map.
How is the No_Advertise community set in BGP?
Using the command set community no-advertise within a route map
This command ensures that the specified routes are not advertised to any BGP peers.
What happens when a route is received with the No_Export community?
The route is not advertised to any eBGP peer
The No_Export community is represented by the value 0xFFFFFF01 or 4,294,967,041.
How is the No_Export community set within a route map?
set community no-export
This command is used to configure the No_Export community for specific routes.
What is the No_Export_SubConfed community identifier?
0xFFFFFF03 (4,294,967,043)
This community is used to control route advertisement within a local AS.
If a router receiving a route with the local AS community is a confederation member, where can the route be advertised?
Only within the sub-AS (member AS)
Routes are not advertised between member ASs.
The command used to set the local AS community within a route map is __________.
set community local-as
This command is essential for configuring route advertisement behavior.