EIGRP Theory and Commands Flashcards

1
Q

What is EIGRP?

A

Enhanced Interior Gateway Routing Protocol - a Cisco proprietary routing protocol, known as a hybrid protocol because EIGRP’s routing metrics use attributes used by both distance vector and link state routing protocols.

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

What is the name of the algorithm used by EIGRP to calculate network paths?

A

DUAL - Diffusing Update Algorithm

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

What is the protocol number used by EIGRP?

A

Protocol 88

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

What is the multicast address used by EIGRP to communicate with its neighbors?

A

224.0.0.10

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

What is the command to enable EIGRP on a Cisco router?

A

R1(config)# router eigrp {AS-number}

Example: router eigrp 1

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

What is the command to advertise a network prefix into EIGRP?

A

R1(config-router)# network {prefix} {wildcard-mask}

Example: network 10.1.1.0 0.0.0.255

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

What is the Successor Route in EIGRP?

A

The route from EIGRP that was the best route and installed to the routing table (RIB)

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

What is the Successor in EIGRP?

A

The first next-hop router for a given successor route.

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

What is the Reported Distance in EIGRP?

A

The metric to reach a subnet as reported by a given upstream router.

NOTE: When looking at the EIGRP topology table, the reported distance is the second number in the parenthesis next to the reporting router.

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

What is the Feasible Distance in EIGRP?

A

The value of the metric of an EIGRP route in the routing table (the Successor)

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

What is a Feasibility Condition in EIGRP?

A

When a route has a feasible distance that is “next best” to the Successor Route and could be considered the backup route.

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

What is a Feasible Successor in EIGRP?

A

The backup route that meets the Feasibility condition.

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

What are two things that make EIGRP unique?

A

1.) Maintains a topology table of all routes within an AS
2.) Only has knowledge of routes within its own AS

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

What symbol in the routing table (RIB) denotes an EIGRP learned route?

A

The letter “D”

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

What is the Administrative Distance of EIGRP?

A

90

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

What are the five different packet types used by EIGRP?

A

1.) Hello
2.) Request
3.) Update
4.) Query
5.) Reply

17
Q

What are the default hello and hold down timers on a standard Ethernet connection between two EIGRP routers?

A

Hello is 5 seconds, Hold-down is 15 seconds

18
Q

What are the default hello and hold down timers on a slow connection (like a T1) between two EIGRP routers?

A

Hello is 60 seconds, Hold-down is 180 seconds

19
Q

What are the two elements that influence the calculation of the EIGRP metric?

A

1.) Worst bandwidth through the path
2.) Sum of delays

20
Q

What is the newer method for calculating EIGRP called and what makes it different than the Classic Metrics?

A

Wide Metrics - it addresses scalability issues that come with higher speed interfaces by adding an additional K-value to the calculation.

21
Q

What is the command that will display the EIGRP database information on a Cisco router?

A

show ip eigrp topology

22
Q

What is the Reported Distance in EIGRP?

A

The metric that was advertised from a neighbor regarding the cost of a specific route. In other words, the advertised metric by the perspective of the neighbor device.

23
Q

What is a Feasible Successor?

A

If more than one route exists in the EIGRP topology database, the less desirable route could be installed to the routing table if the Successor Route were to go down.

24
Q

What is the Feasibility Condition for a Feasible Successor to exist?

A

The reported distance for the Feasible Successor must be less than the Feasible Distance of the Successor Route.

NOTE: this is to prevent loops. Keep in mind the Feasible Distance will be the advertised distance plus link delay.

25
Q

What is the command to enable unequal cost load balancing when a Feasible Successor exists?

A

R1(config-router)# variance {multiplier}

26
Q

How is the Variance Multiplier calculated against a Feasible Successor?

A

If the Feasible Successor’s Feasible Distance is divided by the Successor Route’s Feasible Distance and it is less than or equal to the Variance Multiplier, then the Feasible Successor will be installed into the RIB as an unequal cost load balanced path.

Example where the FS metric is 5000, the Successor metric is 3000, and the multiplier is 2.
5000 / 3000 = 1.66; Less than the variable multiplier of 2 so it will be installed in the RIB.

27
Q

What is the command to specify a passive interface in EIGRP?

A

R1(config-router)# passive-interface {interface-id}

28
Q

What are the commands to create a summary route for EIGRP?

A

R1(config)# interface {int-id}
R1(config-if)# ip summary-address eigrp {AS-number} {prefix}/{bits}

Example:

R1(config)# int Fa1/1
R1(config-if)# ip summary-address eigrp 1 10.0.0.0/8