Term
| What does the greater-than sign (>) mean inthe output of the show ip bgp command? |
|
Definition
|
The greater-than sign indicates the best path for a route selected by BGP. This is the route that is offered to the IP routing table.
|
|
|
Term
| What command is used to display the BGP routes that were not installed in the RIB? |
|
Definition
|
|
Term
| What command displays the status of all BGP connections? |
|
Definition
|
|
Term
| What command is used to view BGP updates as they're being sent? |
|
Definition
|
|
Term
| What are the different neighbor states that a BGP neighbor can be in? |
|
Definition
|
- Idle - The router is searching the routing table to see whether a route exists to reach the neighbor. - Connect - The router found a route to the neighbor and has completed the 3-way TCP handshake. - Open sent - An open message was sent, with the parameters for the BGP session. - Open confirm - The router received agreement on the parameters for establishing a session. - Active - The router goes into active state if it doesn't receive a response to an open message - Established - Peering is established and routing begins.
|
|
|
Term
| What command is used to display information about the BGP connections to neighbors? |
|
Definition
|
|
Term
| What command is used to change the default local preference for all BGP routes advertised by a router? |
|
Definition
|
bgp default local-preference value
|
|
|
Term
| What command can be used to change the default MED value on a BGP router? |
|
Definition
|
|
Term
| What command is used to assign a weight to updates from a neighbor connection? |
|
Definition
|
neighbor {ip-address | peer-group} weight value
|
|
|
Term
| Describe the 2 BGP attributes that are related to aggregate addressing. |
|
Definition
|
- Atomic aggregate - A well-known disctretionary attribute that informs the neighbor AS that the originating router has aggregated the routes. - Aggregator - An optional transitive attribute that specifies the BGP router ID and AS number of the router that preformed the route aggregation.
|
|
|
Term
| How does BGP handle redistribution when summarization is enabled? |
|
Definition
|
When summarization is enabled (with auto-summary), all redistrbuted subnets are summarized to their classful boundaries in the BGP table. When summarization is disabled, all redistributed subnets are present in their original form in the BGP table.
|
|
|
Term
| What command is used to create an aggregate, or summary, entry in the BGP table? |
|
Definition
|
aggregate-address ip-address mask [summary-only] [as-set]
|
|
|
Term
| When summarizing routes in BGP, what is the difference between using the network command and using the aggregate-address command? |
|
Definition
|
The network command only advertises summaries that already exist in the IP routing table. With the aggregate-address command aggregates only networks that are already in the BGP table.
|
|
|
Term
| What command is used to create a prefix list? |
|
Definition
|
ip prefix-list {list-name | list-number} [seg value] {permit | deny} network/length [ge value] [le value]
|
|
|
Term
| What command is used to filter BGP neighbor information as specified in a prefix list? |
|
Definition
|
neighbor {ip-address | peer-group} prefix-list list-name {in | out}
|
|
|
Term
| What command is used to add a text description for a prefix list? |
|
Definition
|
ip prefix-list list-name description text
|
|
|
Term
| What command is used to display detailed information about all prefix-lists? |
|
Definition
show ip prefix-list [detail | summary]
|
|
|
Term
| What command is used to display detailed information about a specific prefix-list? |
|
Definition
|
show ip prefix-list [detail | summary] prefix-list-name
|
|
|
Term
| What are the different ways that a community number can be defined? |
|
Definition
|
The community value can be entered as one decimal number or in the format of AS:nn, where the AS is the autonomous system number, and nn is the lower 16-bit local number.
|
|
|
Term
| What command is used within a route map to set the BGP community attribute? |
|
Definition
|
set community {[community-number] [well-known-community] [additive]} | none
|
|
|
Term
| What command is used to specify that the BGP communities attribute should be sent to a BGP neighbor? |
|
Definition
|
neighbor {ip-address | peer-group} send-community
|
|
|
Term
| What is the default behavior for a router looking to send out a community attribute? |
|
Definition
|
By default, the communities attribute is not sent to any neighbors, since communities are stripped in outgoing BGP updates.
|
|
|
Term
| What command is used to create a community list for BGP and to control access to it? |
|
Definition
|
ip community-list list-number {permit | deny} community-number
|
|
|
Term
| Describe the basic use of route reflectors. |
|
Definition
|
A route reflector is a router that is configured to be the router allowed to advertise (reflect) routes it learned vian IBGP to other IBGP peers.
|
|
|
Term
| How does a route reflector handle updates that it receives? |
|
Definition
|
If the update if from a client peer, or from an EBGP peer, it sends the update to all nonclient and client peers (except the route's originator). But if the update is from a nonclient peer, it sends the update to all clients in the cluster.
|
|
|
Term
| What command allows you to configure a router as a BGP RR and to configure the specified neighbor as its client? |
|
Definition
|
neighbor ip-address route-reflector-client
|
|
|
Term
| What command is used to configure a cluster ID for a RR? |
|
Definition
|
bgp cluster-id cluster-id
|
|
|