Quantcast
Channel: Chris – Wendell's CCNA Skills Blog
Viewing all articles
Browse latest Browse all 91

Answers: Basic EIGRP

$
0
0

Configure EIGRP, and configure the link delay – and influence the routes in a small lab network. That’s the summary of your task for this most recent lab. Check out the original lab post first, create your own answer, and then come back here to check your answer.

Answers

Figure 1: Router Triangle with IP Subnets (EIGRP I – 2.jpg)

 

Example 4: R1 Config

router eigrp 5
 network 192.168.1.0

 

Example 5: R2 Config

interface GigibitEthernet0/1
 delay 100
!
router eigrp 5
 network 192.168.1.0

 

Example 6: R3 Config

interface GigibitEthernet0/2
 delay 100
!
router eigrp 5
 network 192.168.1.0

 

Commentary

First, none of the routers had EIGRP configured yet, so the configuration on all three routers enables EIGRP. In this case, all three routers use the same configuration. All use ASN 5 as requested (router eigrp 5), and all use the network 192.168.1.0 command, which enables EIGRP on all interfaces with addresses in class C network 192.168.1.0 (which includes all interfaces in the figure).

EIGRP uses the worst (slowest) bandwidth in the metric calculation for each competing route. In this lab, all the links have a bandwidth of 1 Gbps (a literal setting of 1,000,000, meaning 1,000,000 Kbps). As a result, all the alternate routes use the same minimum bandwidth, so the bandwidth has no impact on a router’s choice of best (lowest) metric.

EIGRP uses delay by adding the delay for each link in a route; in other words, EIGRP uses the cumulative delay, rather than the worst delay among all links in the route. Gigabit interfaces (when running at Gigabit speed) default to a 10 microsecond delay. By configuring both R2 ad R3 to use a much higher delay setting on the link between these two routers, in this case, all the routers will prefer routes through R1, rather than routes that use the R2-R3 link.

Also, note that the interface delay subcommand uses a unit of 10’s of microseconds, so the correct command in this case is delay 100, which equates to 1000 microseconds.


Viewing all articles
Browse latest Browse all 91

Trending Articles