Refer to the topology. Your company has connected the routers R1, R2 and R3 with serial links. R2 and R3 are connected to the switches SW1 and SW2, respectively. SW1 and SW2 are also connected to the routers R4 and R5.
The EIGRP routing protocol is configured. You are required to troubleshoot and resolve the EIGRP issues between the various routers. Use the appropriate show
commands to troubleshoot the issues.
Download Packet Tracer .pka file:
Instead of posting the output of show run
commands we post here the commands entered on each router to reduce some useless lines. Also you can try solving questions by yourself before reading the answers.
R1: int lo0 ip address 10.1.1.1 255.255.255.255 int e0/0 ip address 192.168.16.1 255.255.255.0 int s1/1 ip address 192.168.13.1 255.255.255.0 bandwidth 1000 int s1/3 ip address 192.168.12.1 255.255.255.0 ! router eigrp 1 network 192.168.12.0 network 192.168.13.0 network 192.168.16.0 |
R2: int lo0 ip address 10.2.2.2 255.255.255.255 int e0/0 ip address 192.168.123.2 255.255.255.0 int s2/1 ip address 192.168.12.2 255.255.255.0 ! router eigrp 1 network 10.2.2.2 0.0.0.0 network 192.168.12.0 network 192.168.123.0 |
R3: int lo0 ip address 10.3.3.3 255.255.255.255 int e0/0 ip address 192.168.123.3 255.255.255.0 int s2/1 ip address 192.168.13.3 255.255.255.0 ! router eigrp 1 network 10.3.3.3 0.0.0.0 network 192.168.13.0 network 192.168.123.0 |
R4: int lo0 ip address 10.4.4.4 255.255.255.255 int lo1 ip address 10.4.4.5 255.255.255.255 int lo2 ip address 10.4.4.6 255.255.255.255 int e0/0 ip address 192.168.123.4 255.255.255.0 ! router eigrp 2 network 10.4.4.4 0.0.0.0 network 10.4.4.5 0.0.0.0 network 10.4.4.6 0.0.0.0 network 192.168.123.0 |
R5: int lo0 ip address 10.5.5.5 255.255.255.255 int lo1 ip address 10.5.5.55 255.255.255.255 int e0/0 ip address 192.168.123.5 255.255.255.0 ! router eigrp 1 network 10.5.5.5 0.0.0.0 network 10.5.5.55 0.0.0.0 network 10.10.10.0 0.0.0.255 network 192.168.123.0 |
R6: int lo0 ip address 10.6.6.6 255.255.255.255 int e0/0 ip address 192.168.16.6 255.255.255.0 ! router eigrp 1 network 10.6.6.6 0.0.0.0 |
Note: In the exam, this sim uses IOS version 15 so no auto-summary
is the default setting of EIGRP. You don’t have to type it.
Question 1:
The loopback interfaces on R4 with the IP addresses of 10.4.4.4/32, 10.4.4.5/32 and 10.4.4.6/32 are not appearing in the routing table of R5. Why are the interfaces missing?
- The interfaces are shutdown, so they are not being advertised.
- R4 has been incorrectly configured to be in another AS, so it does not peer with R5.
- Automatic summarization is enabled, so only the 10.0.0.0 network is displayed.
- The loopback addresses haven’t been advertised, and the network command is missing on R4*
Explanation/Reference:
Question 2:
Which path does traffic take from R1 to R5?
- The traffic goes through R2.
- The traffic goes through R3.
- The traffic is equally load-balanced over R2 and R3.*
- The traffic is unequally load-balanced over R2 and R3.
Explanation/Reference:
Question 3:
Router R6 does not form an EIGRP neighbor relationship correctly with router R1. What is the cause for this misconfiguration?
- The K values mismatch.*
- The AS does not match.
- The network command is missing.
- The passive-interface command is enabled.
Explanation/Reference:
Question 4:
Study the following output taken on R1:
R1#ping 10.5.5.55 source 10.1.1.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.5.5.55, timeout is 2 seconds: Packet sent with a source address of 10.1.1.1 . . . . . Success rate is 0 percent (0/5)
Why are the pings failing?
- The network statement is missing on R5.*
- The loopback interface is shut down on R5.
- The network statement is missing on R1.
- The IP address that is configured on the Lo1 interface on R5 is incorrect.
Explanation/Reference:
the question says You are required to troubleshoot and *resolve* the EIGRP issues between the various routers !
so should i correct the configuration or just choose the right answer ?
thank you :)
for q2, can we use traceroute 192.168.123.5? i am wondering what will be the output if the traffic were load balanced
Hi,
Could someone please explain to me why the answer for Q3 the ans is
The network command is missing.
Please go to R6 and type show running-config, you will get this output
router eigrp 1
network 10.6.6.6 0.0.0.0
auto-summary
I think network 192.168.16.0 0.0.0.255 should be formatted there. Therefore not form an EIGRP neighbor relationship correctly with router R1.
The loopback interfaces on R4 with the IP addresses of 10.4.4.4/32, 10.4.4.5/32 and 10.4.4.6/32 are not appearing in the routing table of R5. Why are the interfaces missing?
i think that the answer is B and not C.
i think B is corect ans _ R4 has been incorrectly configured to be in another AS
what about question 4?
I find very confusing that the answers are marked for one version of the exercise that does not correspond with the explanation given and with the pkt shared.
So, for those that are studing with the pkt shared, I would say the anwers are:
Q1 R4 has been incorrectly configured to be in another AS, so it does not peer with R5.
Q2 The traffic goes through R2.
Q3 The network command is missing.
Q4 The network statement is missing on R1.
It is great to know what other scenarios might be in the exam, thanks for taking the time to explain both.
Yigal, actually the loopback network was not advertised in R1, at least not in this sim file shared.
R1#show run | inc network
network 192.168.12.0
network 192.168.13.0
network 192.168.16.0
Yes! Thanks a lot Elena by Juan Bou
Q2 The traffic goes through R2. Because they have changed the BW has no load balance!
Serial 0/0/1 interface
bandwidth 1543
Serial 0/0/0 interface
bandwidth 1544
in the simulation ,the last question router 1 infact does advertise its loopback..
Hello, please be specific on your contribution for our understanding. I have questions to ask.
1. Are you referring to this lab on the site?
2. Or are you talk about the exam lab?
Good