Quantcast
Viewing latest article 6
Browse Latest Browse All 91

EIGRP Enabler #2 – Answers

This latest EIGRP Enabler exercise asked you to configure three routers, specifically to add the EIGRP network commands. This post lists the answers – simple enough.

The Topology

It is probably best to have the exercise post on the screen at the same time you look at this post. If not, for convenience, here’s a copy of the topology figure for this exercise.

Image may be NSFW.
Clik here to view.

EIGRP Enabler Topology

 

The Answers

I promised short, sweet, and to the point. Here are the answers!

router eigrp 1
  network 172.16.12.0 0.0.0.3
  network 172.16.13.0 0.0.0.7
  network 172.21.1.0  0.0.0.255
  network 172.21.2.0  0.0.1.255

Answers: Router R1

 

router eigrp 1
  network 172.16.12.0  0.0.0.3
  network 172.16.23.0  0.0.0.7
  network 172.22.2.0   0.0.0.127
  network 172.22.2.128 0.0.0.63

Answers: Router R2

 

router eigrp 1
  network 172.16.13.3   0.0.0.0
  network 172.16.23.3   0.0.0.0
  network 172.23.33.3   0.0.0.0
  network 172.23.33.213 0.0.0.0

Answers: Router R3

 

Comments and Explanations – R1

R1 requires some thought because you must calculate the subnet ID of each subnet off each interface, and find the ACL wildcard mask to use that matches the subnet mask on each interface, following a process like this:

  1. Begin with each interface’s IP address and subnet mask
  2. Calculate the subnet ID, which will be the first parameter in the network command
  3. Invert the subnet mask, which will be the second parameter in the network command

Because of how the exercise is worded, you should have four network commands, one matching the subnet off each of the interfaces on R1.

Most of the math should be straightforward, but the last network command in the answer – network 172.21.2.0 0.0.1.255 – looks a little weird. Just trust your subnetting skills to show yourself that 172.21.2.0 is the correct subnet ID, and then subtract 255.255.254.0 from 255.255.255.255 to get wildcard mask 0.0.1.255.

 

Comments and Explanations – R2

R2 uses the same “match subnet” logic as R1, with the same process. Just work the process!

Most of the math should be straightforward, but the last network command in the answer – network 172.22.2.128 0.0.0.63 – looks a little weird. Again trust your subnetting skills to show yourself that 172.22.2.128 is the correct subnet ID, and then subtract 255.255.255.192 from 255.255.255.255 to get wildcard mask 0.0.0.63.

 

Comments and Explanations – R3

R3 requires the least thought of all the routers. To match a single IP address, use wildcard mask of 0.0.0.0. For the number preceding the wildcard mask in the network command, use the interface IP address. The result: each network command matches an interface IP address, and only that address, enabling EIGRP on that interface.

In this case, with two interfaces with IPv4 addresses, R3 needs four network commands, as shown in Example 3.


Viewing latest article 6
Browse Latest Browse All 91

Trending Articles