EIGRP COPY Flashcards

1
Q

Are keys case sensitive?

A

Yes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

If there are multiple valid, matching keys, which key will be used?

A

The one with the lowest number (first match)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Give the command to display a key chain

A

show key chain

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the two ways to add interfaces to EIGRP and what are the administrative distances for these?

A

network command - Internal route - AD 90

redistribute connected command - External route - AD 170

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What two things does “passive-interface” do?

A

It stops the interface from sending Hello packets and will also ignore incoming ones.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Give the command to set all interfaces as passive except Ethernet0/0

A

router eigrp
passive-interface default
no passive-interface Ethernet0/0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What command will show EIGRP interfaces in passive mode?

A

sh ip protocols

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Which K-values are used in the default metric?

A

bandwidth (k1) and delay (k3)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How is the router-id chosen?

A

The highest numbered active loopback is used, or the highest numbered active interface if no loopback is available.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Can two routers with the same router-id become neighbors? Can they exchange routes?

A

They can become neighbors but cannot exchange routes if directly connected to each other. They will accept internal routes if there is another router between the two.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Give the command to manually set a router-id

A

router eigrp 100

eigrp router-id X.X.X.X

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What extra information does an external route update include?

A

It includes the originating router’s router-id as well as the external metric and protocol.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Give the command to disable split-horizon for EIGRP on an interface.

A

interface serial0/0

no ip split-horizon eigrp

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What does the following command do?
interface serial0/0
no ip split-horizon

A

It will disable split-horizon for RIP only.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How much bandwidth total will EIGRP use on a given link?

A

By default, EIGRP uses only 50% of the available bandwidth.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Give the command to change the percentage of bandwidth EIGRP will use on interface serial0/0.

A

interface serial0/0

ip bandwidth-percent eigrp

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Explain the difference between access-rate and CIR.

A

Access rate is the fastest rate a connection can physically handle. Committed information rate (CIR) is the guaranteed available rate.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Does the bandwidth command set the access rate or the CIR? Without it, what is used?

A

It sets the CIR. Without the bandwidth command, the CIR defaults to the access rate.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

What unit does the bandwidth command use?

A

kilobits per second

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

What is the assumed bandwidth rate on a serial interface unless otherwise specified?

A

1544 kbps

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

What should the bandwidth command be set to for point-to-point and multipoint links?

A

On point-to-point, use bandwidth to set the CIR. On multipoint, set bandwidth to the sum of all the CIRs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

How does EIGRP determine the available bandwidth in multipoint links?

A

Bandwidth should be set to the sum of the CIRs. EIGRP will divide this by the number of PVCs, and use 50% of that value for each connection.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

What impact does “set ip bandwidth-percent” have on a multipoint link?

A

EIGRP will divide the number given by the number of PVCs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

How is the reported distance sent?

A

The sending router sends the raw values and the receiving router calculates the reported distance (RD).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Q

How does as a receiving router calculate the feasible distance?

A

It adds the delay for the distance to the sending router, and also replaces the bandwidth value if the bandwidth between it and the sending router is slower than the current minimum bandwidth, then recalculates.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
26
Q

What are the values given as (x, y) in “show ip eigrp toplogy”?

A

(feasible distance, reported distance)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
27
Q

What unit is used in the “delay” command on an interface? What unit is displayed with “show interface”?

A

The delay command uses tens of microseconds but the show command will display it in microseconds.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
28
Q

What are the two ways of manipulating EIGRP metrics?

A

1) Change delay and/or bandwidth

2) Use an offset-list

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
29
Q

Of delay and bandwidth, which is preferred to modify?

A

Delay is preferred, because other protocols also use the bandwidth command.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
30
Q

Does changing the delay or bandwidth impact a sending neighbor’s reported distance?

A

No

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
31
Q

What are the two ways of matching all ip addresses with an off-set list?

A

Use any/any in the access-list, or reference access-list 0.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
32
Q

Does adding/removing an offset-list cause adjacencies to drop?

A

Yes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
33
Q

What does “sh ip eigrp topology” show by default? Give the command to see everything in the topology table.

A

It shows only successors and feasible successors.

sh ip eigrp topology all-links

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
34
Q

What does an inbound versus an outbound offset-list do?

A

An inbound list changes the router’s local value plus the value it will report.

An outbound list changes only the reported value.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
35
Q

On the packet level, how is an offset-list implemented?

A

As delay

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
36
Q

Can an offset-list decrease the value of the EIGRP metric?

A

No

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
37
Q

What are the the conditions for choosing a feasible successor?

A

The feasible successor must have the same AD metric as the successor, and must satisfy the feasible condition. The feasibility condition states the feasible successor’s reported distance must be less than the successor’s feasible distance.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
38
Q

What does a Query include?

A

The query includes poisoned route information, including a maximum bandwidth and infinite delay.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
39
Q

What does a negative reply to a query include?

A

The reply includes a router-id with all zeros and a different value for the type of network. The delay is also maxxed out.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
40
Q

What is the active timer?

A

The active timer is the amount of time before a neighbor that doesn’t respond to a query is considered Stuck in Active and the adjacency is torn down.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
41
Q

What is the default active timer value?

A

The default active timer value is 3 minutes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
42
Q

How much time must elapse before a SIA Query is sent to a non-responsive neighbor?

A

Half of the active timer value, so roughly 90 seconds by default.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
43
Q

What happens if a router receives an answer to a SIA Query?

A

If the neighbor sends back a SIA Reply, the active timer will be reset.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
44
Q

If a route is lost, what happens to it while the router goes through the Active route process?

A

The stale route remains in the routing table.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
45
Q

What are two ways to limit the scope of EIGRP active route queries?

A

Stub routers and router summarization

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
46
Q

What is a stub router?

A

A stub router will not advertise learned routes amongst its neighbors by default. Other routers will also not send Query packets to it.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
47
Q

Give the command to change the default active timer to one minute.

A

router eigrp 100

timers active-time 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
48
Q

By default, what will a stub router advertise?

A

It will advertise only connected and summary routes by default.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
49
Q

Give the command to set a router as a stub router that will advertise its redistributed routes as well as the default options.

A

router eigrp 100

eigrp stub connected summary redistributed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
50
Q

What options does an offset-list take for input?

A

Standard access-list only

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
51
Q

What is the netmask for matching all bits?

A

255.255.255.255

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
52
Q

What is the syntax to match all routes on a prefix-list?

A

0.0.0.0/0 le 32

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
53
Q

What does variance enable?

A

Variance allows the installation of unequal cost routing paths into the routing table. By default, it is set to 1, meaning it only allows equal paths.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
54
Q

How is an extended ACL interpreted when used as a distribution list?

A

The source is evaluated as the sending neighbor IP address, and the destination is evaluated as the prefix in the update.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
55
Q

What is a distribute-list used for?

A

It can limit which routes are accepted and/or sent to neighbors.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
56
Q

When can a route be added as an unequal cost path to the routing table?

A

It must be a feasible successor route, and the reported distance must be less than the successor’s feasible distance multiplied by the variance.

FS’s RD greater than Successor’s FD * variance

57
Q

What is the netmask octet for match?

A

255

58
Q

What command will show any distribute-list filters that are impacting EIGRP?

A

sh ip protocols

59
Q

What must the relationship of the ge or le number be to the CIDR notation number?

A

They cannot be lower or equal to the length on the CIDR notation.

60
Q

Does adding a distribution list cause adjacencies to go down?

A

Yes

61
Q

How does auto-summarization impact the number of queries?

A

The neighbors of the auto-summarization router will not query other neighbors if the route becomes unreachable. So, queries stop at one hop beyond the summarizing router(s).

62
Q

Give the command to enable the maximum number of equal-cost paths that EIGRP can support.

A

router eigrp 100

maximum-paths 6

63
Q

If no ge or le is specified, what value is used for the subnet mask?

A

The /# is used first for the number of interesting bits to match on, and then used again for matching the subnet mask.

64
Q

What is the wildcard octet for ignore?

A

255

65
Q

What is the wildcard mask for ignoring all bits?

A

255.255.255.255

66
Q

Give the command to set variance to three.

A

router eigrp 10

variance 3

67
Q

What happens if a distribute-list references a non-existent ACL?

A

It will have no impact.

68
Q

What is the syntax to match a default route in a prefix-list?

A

0.0.0.0/0

69
Q

Does ge or le come first in a prefix-list statement?

A

ge

70
Q

What three options will the distribute-list command take as a source?

A

access-list, prefix-list, or route-map

71
Q

What is the netmask octet for ignore?

A

0

72
Q

What is the netmask for ignoring all bits?

A

0.0.0.0

73
Q

Give the syntax for a prefix-list entry.

A

ip prefix-list MyList seq 10 …

74
Q

What is the wildcard mask for matching all bits?

A

0.0.0.0

75
Q

Give the prefix-list notation to deny all incoming prefixes that have the first three octets of 10.10.10.x and a subnet mask between 24 and 30.

A

ip prefix-list MyList seq 10 deny 10.10.10.0/24

ip prefix-list MyList seq 10 deny 10.10.10.0/24 ge 25 le 30

76
Q

What additional functionality does a prefix-list add over an access-list?

A

The ability to match on the subnet mask as well as the prefix.

77
Q

What is the wildcard octet for match?

A

0

78
Q

Are prefix-list names case sensitive?

A

Yes

79
Q

Give the command to apply a prefix-list for route filtering.

A

router eigrp 100

distribution-list prefix in/out

80
Q

What impact will a route-map without a match statement have?

A

It will match everything.

81
Q

Give the command to match an ACL within a route-map.

A

route-map Test permit 10

match ip address 101

82
Q

What will the sequences numbers be for the following input?route-map INE permitroute-map INE deny

A

The permit will be overwritten, leaving only -

route-map Test deny 10

83
Q

Give the command to match a prefix-list within a route-map.

A

route-map Test permit 10

match ip address prefix-list MyList

84
Q

What direction to permits/denies work in a distribute-list?

A

Addresses must match the distribute list, or they are filtered.

85
Q

Can a distribution list be entered without specifying direction?

A

No

86
Q

Give the command to apply a route-map for route filtering.

A

router eigrp 100

distribute-list route-map INE in/out

87
Q

Which EIGRP routers can perform summarization?

A

Any router

88
Q

Where is EIGRP summarization configured?

A

On the interface

89
Q

Give the command to summarize 10.0.0.0/8.

A

interface Serial0/0

ip summary-address eigrp 100 10.0.0.0 255.0.0.0

90
Q

Which of the following results in dropping the adjacency: adding, removing, or changing a prefix-list?

A

All three

91
Q

Can an interface have multiple summary addresses?

A

Yes

92
Q

What side effect occurs as a result of adding a summary route?

A

The route will add the summary as a directly connected route to the network to its Null0 interface.

93
Q

Are summary routes internal or external? What is the AD?

A

Internal; 90

94
Q

What are three criteria for auto-summarization to occur?

A
  1. The network must be local to the router.
  2. The network must be defined with “network …” rather than redistributed.
  3. The sending interface must not be part of the summarized networks.
95
Q

Give the command to show auto-summarizations in effect.

A

show ip protocols

96
Q

Give the three ways to send a default route through EIGRP.

A

Redistribution of a static route, summarization, or configuration of a default classful network

97
Q

What are two ways the default network can make it into the routing table through EIGRP?

A

There must be a static route with static redistribution, or the default network must already be an EIGRP-advertised route.

98
Q

Give the command to set the default network.

A

ip default-network x.x.x.x

There is no mask since the network must be classful.

99
Q

Give the command to summarize a default route.

A

interface Serial0/0

ip summary-address eigrp 0.0.0.0 0.0.0.0

100
Q

What is a side effect of adding a summary-address statement on an interface?

A

No other routes will be advertised, except for other summary routes.

101
Q

What is DUAL?

A

Diffusing Update ALgorithm

102
Q

What kind of algorithm is EIGRP?

A

advanced distance vector

103
Q

What address are EIGRP updates sent to?

A

In a multiaccess network, multicast address 224.0.0.10

In a point-to-point network, individual neighbor IP

104
Q

What layer 4 protocol does EIGRP run on?

A

IP protocol 88

105
Q

Name the five EIGRP packet types.

A

Hello, Query, Reply, Update, ACK

How queer Randy usually acts!

106
Q

Which packets require an ACK?

A

Update, Query, and Reply

everything except Hello and ACK

107
Q

What are RD and FD?

A

Reported distance (RD) is the neighbor’s metric for the route. Feasible distance (FD) is the advertised distance, plus the distance from this router to the neighbor.

108
Q

How is EIGRP unlike other distance vector algorithms?

A

It only sends updates on change, and maintains relationships using hellos.

109
Q

What does EIGRP use for metric calculation by default?

A

bandwidth and delay

110
Q

What are the three steps to EIGRP neighbor convergence?

A
  1. Formation of neighbor relationship
  2. Exchange of routes to populate the topology table
  3. Run DUAL and populate the routing table
111
Q

What is an AS?

A

An autonomous system is a collection of networks under one centralized administrative control entity.

112
Q

What purpose do Hello packets serve?

A

They discover new neighbors and maintain existing relationships.

113
Q

List the three classful network ranges.

A

Class A - anything before 127
Class B - anything after A and before 192
Class C - anything after B and before 224

114
Q

What is the hold time, where is it advertised, and what value does it use by default?

A

The hold time is amount of time before a neighbor marks this router as dead. It is included in the Hello packet.

The default hold time is 3 x hello interval. On LAN links, this is 15 seconds. On T1 or slower, this is 180 seconds.

115
Q

How are EIGRP routes indicated in the routing table?

A

D for interior routes and EX for exterior routes

116
Q

List the process for forming a neighbor relationship.

A
  1. Both neighbors send unicast Hellos
  2. Each sends a unicast Update packet that is empty but has the Init flag set
  3. Each sends a unicast Update that contains the entire routing table
  4. Each neighbor ACKs the Updates.
117
Q

What does a “retry limit exceeded” indicate?

A

This router is sending unicast Update packets with the initialization bit set in order to form an adjacency, but it is not receiving a response from the neighbor.

118
Q

How are Hello and ACK packets related?

A

ACK packets are just Hello packets that are sent unicast and have a number in the acknowledge field.

119
Q

What is the side effect of adding a static neighbor?

A

Multicast is disabled on that interface.

120
Q

Name five requirements for forming a neighbor adjacency.

A

The interfaces must be able to reach each other.
The interfaces must not be in passive mode.
Authentication must match.
K-values must match.
AS must match.

121
Q

In an interface with a primary and secondary ip address, which address(es) will EIGRP communication originate from?

A

primary IP only

122
Q

What does this error message indicate?

“Neighbor is blocked: not on common subnet”

A

The router is receiving packets from an address on a subnet that it does not have directly connected on that interface.

123
Q

What is the error message for mismatched AS values?

A

There is no error. It fails silently.

124
Q

What is the command to set non-standard K-values?

A

router eigrp 100

metric weights k1 k2 k3 k4 k5

125
Q

How often are Hello packets sent by default?

A

5 seconds on a LAN or 60 seconds on a T1 or slower

126
Q

What is the command to change how often hello packets are sent?

A

interface Gigabit0/0

ip hello-interval eigrp #

127
Q

What are the default hold timers?

A

Three times the hello time by default.

15 seconds on a LAN and 180 seconds on a T1 or slower

128
Q

What is the command to set the hold timer?

A

interface Gigabit0/0

ip hold-timer eigrp #

129
Q

What impact does updating the hold-timer on an interface have?

A

The router will send a different dead timer in its Hello packets, and its neighbor will wait that many seconds before marking it down.

130
Q

What command will show non-default hello intervals (and hold timers on newer versions of IOS)?

A

sh ip eigrp interface detail

131
Q

What kinds of authentication does EIGRP support?

A

MD5 only

132
Q

Give the commands to create a keychain called MyKeys with a password of supersecret.

A

key chain MyKeys
key 1
key-string supersecret

133
Q

Give the commands to apply the keychain called MyKeys to interface GigabitEthernet0/0

A

interface GigabitEthernet0/0
ip authentication mode eigrp md5
ip authentication key-chain eigrp MyKeys

134
Q

Which parts of authentication have to match to form a neighbor relationship?

A

The key number and key-string.

The key chain name does not have to match.

135
Q

Give the command to disable split-horizon.

A

interface Gigabit0/0

no ip split-horizon eigrp

136
Q

How will a router respond to a Query for a network it has never seen?

A

It will reply back in the negative.

137
Q

How will a router respond to a Query that it has an alternate route to?

A

The router will reply with the alternative route.

138
Q

How will a router respond to a Query for a network that previously existed through the querying router?

A

It will propagate the query.