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 biggest difference between how OSPF and EIGRP advertise routes?

A
  • OSPF knows all the routes from all routers in an Area, however…
  • EIGRP only knows the routes from its directly connected neighbors
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
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
4
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
5
Q

What is the Successor 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
6
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
7
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
8
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
9
Q

What are the five different packet types used by EIGRP?

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
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.

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

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

A

show ip eigrp topology

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
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.

17
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.

18
Q

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

A

R1(config-router)# variance {multiplier}

19
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.

20
Q

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

A

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

21
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