• 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/40

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;

40 Cards in this Set

  • Front
  • Back
What two metrics does EIGRP calculate for every route?
1. Feasible Distance (FD)
2. Reported Distance (RD)
RD is also known as Advertised Distance.
What two commands display the metric details for a route?
1. #show ip eigrp topology <network/mask>
2. #show ip route <network>
What are the commands (and units) to set bandwidth and delay on an interface?
#bandwidth (units of Kbps)
#delay (units of tens-of-microseconds)
What are the default delay values for FastE, GigE, and Serial?
FastE = 100
GigE = 10
Serial = 2000
What are the default values for the EIGRP metric weights?
K1 = K3 = 1
All others zero.
Why should EIGRP metrics K2, K4, and K5 be left at zero?
Because load and reliability change over time, which causes EIGRP to reflood topology data and may lead to route flapping.
What are the valid values for an EIGRP K-value?
Any integer, 0 to 255.
What is the purpose of an EIGRP offset-list?
Adds a value to the calculated metrics -- both FD and RD -- for matching routes.
What is the mode and syntax to configure an EIGRP offset-list?
Create a standard ACL w/ permit statement(s)
EIGRP configuration mode
#offset-list <acl> {in|out} <offset value> <interface>
What is the EIGRP feasibility condition?
If a non-successor route's RD is less than the FD, the route is a feasible successor route.
What is an EIGRP successor?
The route with the lowest feasible distance (FD).
What CLI command will list only successor and feasible successor routes?
#show ip eigrp topology
What CLI command will list all possible routes, including those that are not feasible successor routes?
#show ip eigrp topology all-links
What happens when a successor route fails and a feasible successor exists?
What is the convergence time?
The router places the feasible successor into the routing table.
Convergence is typically less than 1 second.
What is "going active" for an EIGRP router?
If the successor route fails and no feasible success exists, the router "goes active" to find an alternate route. Otherwise, the router remains passive.
What happens when an EIGRP router goes active?
1. Change state in topology to active.
2. Send EIGRP QUERY messages (prefix/length) to every neighbor except the one with the failed route.
3. If the neighbor has a passive route for prefix/length, it responds with a REPLY message and does not forward the QUERY
4. If the neighbor is active for the route, it floods the QUERY to its neighbors
5. When a router recieves a REPLY for prefix/length, it will reply to its neighbors
6. When a router receives a REPLY for all its QUERY messages, it may use the best of the routes.
How can an engineer avoid the EIGRP "active" query process?
Make sure every route has an FS.
What is an EIGRP stub router?
A router that should not forward traffic between two remote EIGRP-learned subnets.
#eigrp stub (router eigrp mode)
What are the #eigrp stub command options?
1. connected - advertise connected routes for interfaces matched with #network
2. summary - advertise auto-summarized routes or statically configured summary routes
3. static - advertise static routes, if #redistribute static is configured
4. redistributed - advertises redistributed routes if redistribution is configured
5. receive-only - does not advertise any routes.
EIGRP - How can summary routes help limit QUERY scope?
If a router receives a query for a prefix/length and does not have an exactly matching route, but does have an appropriate summary route, the router immediately sends a REPLY and does not flood the QUERY.
How does EIGRP deal with "stuck in active" routes?
1. Active Timer (3 minutes by default)
2. Halfway through active timer, send an SIA-QUERY to neighbors that have not responded
3. Receive an SIA-REPLY, keep waiting
4. No SIA-REPLY, fail the neighbor relationship
How do you configure EIGRP load balancing?
EIGRP subcommands:
1. #maximum-paths <n> (default: 4)
2. #variance <n> (value from 1 to 128)
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