• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/33

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

33 Cards in this Set

  • Front
  • Back
What are the EIGRP rules for adding load-balancing routes?
1. Routes must be a successor or feasible succesor
2. FS successor routes where metric <= current FD * variance
3. maximum-paths allows more paths
What is the purpose of EIGRP route filtering?
1. Prevent some (perhaps branch office or stub) routers from routing packets from one part to the network to another.
2. Reduce size of routing tables
What are the IOS commands and mode for three different ways of implementing EIGRP route filtering?
router configuration mode.
1. #distribute-list <acl> { in | out } [interface]
2. #distribute-list prefix <name> { in | out }
3. #distribute-list route-map <name> { in | out }
Note: for the ACL option, if interface is not supplied, the list applies to the router.
What components of an IP route can be mached by a prefix-list?
1. The route prefix (subnet)
2. The prefix length (mask)
What is the command to create a prefix list?
#ip prefix-list <name> [seq <number>]
{deny | permit <prefix>/<len>}
[ge <n>] [le <n>]
What must be true for a prefix list to match a route?
1. route's prefix must be in range implied by list's prefix/length
2. route's prefix length must fall within list's range
What are the four rules for matching the prefix-length of a prefix-list?
1. if neither ge or le, then conf-len = route-len
2. if both ge and le, then ge <= route-len <= le
3. if only le, then conf-len <= rout-len <= le
4. if only ge, then ge <= route-len <= 32
What is the syntax of a route-map?
#route-map <name> { permit | deny } [<seq-num>].
#match <criteria>
What is the default result of a route-map if none of the criteria match? How do you change the default behavior?
1. implied deny at end
2. Add a permit statement at end with no match criteria
What does a route-map do when a permit condition is matched?
Route is allowed through
What does a route-map do when a deny condition is matched?
Route is filtered
What does a route-map do when it uses an ACL or prefix-list for matching?
If the result is "permit", the match is successful.
If the result is "deny", the match is unsuccessful and it passes to the next statement.
How do you verify a route-map?
#show route-map <name>
On which routers does EIGRP allow route summarization? How is this different than OSPF?
EIGRP allows summarization at any router.
OSPF, allows summarization only at area border routers and autonomous system border routers.
What are four benefits of route summarization?
1. smaller routing tables
2. Reduces query scope
3. Summarization supported at any point in network (EIGRP)
4. Summary has metric of the best of the subnets being sumarized
What are two tradeoffs of route summarization?
1. May cause suboptimal routing
2. Packets destined for inaccessible destinations will flow to the summarizing router before being dropped.
What is the mode and command to configure EIGRP route summarization?
config-interface mode
#ip summary-address eigrp <asn> <prefix> <subnet-mask>
When an EIGRP summary route is configured on an interface, what 4 steps does the router take?
1. Brings down and back up all neighbor relationships on that interface, thus flushing topology data.
2. Advertises a summary route, assuming the router has at least one route in the summary range.
3. Does not advertise the subordinate (summarized) routes
4. Adds a route to its own routing table for the summary prefix/length with outgoing interface null0
Define auto-summarization.
When a router has multiple working interfaces using IP addresses in different classful networks, the router advertises a summary route for each classful network on interfaces attached to a different classful network.
What is the mode and command to turn off auto-summarization for EIGRP?
router config mode
#no auto-summary
In what condition must you turn of auto-summarization for EIGRP?
Discontiguous networks. Packets sent between at least one pair of subnets pass through a subnet of a different classful network.
What are two options for EIGRP to advertise default routes?
1. Define and advertise a static route
2. Flag an existing route to be the default route
What are the commands to advertise a default static route in EIGRP?
1. Create a static route: #ip route 0.0.0.0 0.0.0.0 <interface>
2. Inject the static route into EIGRP topology database: #network 0.0.0.0
or redistribute the static route.
What are the commands to flag a route to be the default route?
1. On the "gateway" router, define a classful network to advertise into EIGRP using the #network command. Tthis network is either configured on the outgoing interface or created on a loopback interface.
2. Configure that network as the default network: #ip default-network <network>
Define auto-summarization.
When a router has multiple working interfaces using IP addresses in different classful networks, the router advertises a summary route for each classful network on interfaces attached to a different classful network.
What is the mode and command to turn off auto-summarization for EIGRP?
router config mode
#no auto-summary
In what condition must you turn of auto-summarization for EIGRP?
Discontiguous networks. Packets sent between at least one pair of subnets pass through a subnet of a different classful network.
What are two options for EIGRP to advertise default routes?
1. Define and advertise a static route
2. Flag an existing route to be the default route
What are the commands to advertise a default static route in EIGRP?
1. Create a static route: #ip route 0.0.0.0 0.0.0.0 <interface>
2. Inject the static route into EIGRP topology database: #network 0.0.0.0
or redistribute the static route.
What are the commands to flag a route to be the default route?
1. On the "gateway" router, define a classful network to advertise into EIGRP using the #network command. Tthis network is either configured on the outgoing interface or created on a loopback interface.
2. Configure that network as the default network: #ip default-network <network>
What stub keywords are used by default, if no keywords are specified?
connected and static
What type of packet does an EIGRP router send in response to a HELLO packet?
An UPDATE packet.
Which routes (successors and/or feasible successors) will be shown by the #show ip route eigrp command?
Just the successors. Need to use #show ip eigrp topology to see the feasible successors.