Home > CCNA EIGRP LAB Question

CCNA EIGRP LAB Question

January 25th, 2014 Go to comments

Question

After adding R3 router, no routing updates are being exchanged between R3 and the new location. All other inter connectivity and Internet access for the existing locations of the company are working properly.

The task is to identify the fault(s) and correct the router configuration to provide full connectivity between the routers.

Access to the router CLI can be gained by clicking on the appropriate host. All passwords on all routers are cisco.

IP addresses are listed in the chart below.

ccna_eigrp_sim

R1
Fa0/0: 192.168.77.33
S1/0: 198.0.18.6
S0/1: 192.168.60.25
S0/0: 192.168.36.13
R2
Fa0/0: 192.168.60.97
Fa0/1: 192.168.60.113
S0/0: 192.168.36.14
R3
Fa0/0: 192.168.77.34
Fa0/1: 192.168.60.65
Fa1/0: 192.168.60.81
R4
Fa0/0: 192.168.60.129
Fa0/1: 192.168.60.145
S0/1: 192.168.60.26

Answer and explanation

(Note: If you are not sure how EIGRP works, please read my EIGRP tutorial: http://www.9tut.com/eigrp-routing-protocol-tutorial. Note: You can download this sim to practice here: http://www.9tut.com/download/9tut.com_CCNA_EIGRP_sim_question.zip)

We should check the configuration of the new added router first because it does not function properly while others work well. From the command line interface of R3 router, enter the show running-config command

ccna_eigrp_sim_show_run

From the output above, we know that this router was wrongly configured with an autonomous number (AS) of 22. When the AS numbers among routers are mismatched, no adjacency is formed.

(You should check the AS numbers on other routers for sure)

To solve this problem, we simply re-configure router R3 with the following commands:

R3>enable (you have to enter cisco as its password here)

R3#configure terminal

R3(config)#no router eigrp 22

R3(config)#router eigrp 212

R3(config-router)#network 192.168.60.0

R3(config-router)#network 192.168.77.0

R3(config-router)#no auto-summary

R3(config-router)#end

R3#copy running-config startup-config

Check R1 router with the show running-config command:

ccna_eigrp_sim_show_run_2

Notice that it is missing a definition to the network R3. Therefore we have to add it so that it can recognize R3 router

R1>enable (you have to enter cisco as its password here)

R1#configure terminal

R1(config)#router eigrp 212

R1(config-router)#network 192.168.77.0

R1(config-router)#end

R1#copy running-config startup-config

Now the whole network will work well. You should check again with ping command from router R3 to other routers!

Modifications:

Maybe in this EIGRP Sim you will see the “passive-interface …” command somewhere in R1 configuration. If the link between R1 to R2; or R1 to R3; or R1 to R4) routers has the “passive interface” then we have to remove it with the “no passive-interface …” command because it prevents EIGRP update from being sent on that interface. But if the “passive interface” is applied to the link between R1 and ISP router like this:

R1:

!
router eigrp 212
passive-interface s1/0
!

then we just leave it. Don’t use the “no passive-interface s1/0″ on R1 because the link between R1 & ISP doesn’t need EIGRP to run on it. A static route from R1 to ISP & “ip default-network” command in R1 are correct so that all the routers (R1, R2, R3, R4) can access the Internet.

(Note: The “ip default-network” command in R1 will advertise the static route of R1 (to go to the Internet) to other routers (R2,R3,R4) so that they can access the Internet too). In the exam you will see these lines in R1 configuration:

!
ip default-network 198.0.18.0
ip route 0.0.0.0 0.0.0.0 198.0.18.5
!

If you want to learn more about “ip default-network” command please read: http://www.cisco.com/en/US/tech/tk365/technologies_tech_note09186a0080094374.shtml

I read recent comments and realized that you will see the “passive-interface” in the link between R1 & ISP router so just leave it.

Note: Also some readers confuse about if we should use the wildcard masks on the “network” statements under EIGRP process or not. For example should we use:

router eigrp 212
network 192.168.77.0 0.0.0.3

The answer is: we can use wildcard masks or not, it does not matter. Not having a wildcard mask does not make the routes conflicting. The “network …” command in EIGRP (and OSPF, RIP) does not means “advertise this network” but means “If I has interface(s) belongs to this network please turn on EIGRP on that interface. Therefore when you don’t use wildcard mask EIGRP will turn on EIGRP on all interfaces that belongs to the network you specify in the “network …” command.

You should only use wildcard mask on EIGRP if you have 2 or more interfaces that belong to the same major networks but you don’t want to run EIGRP on all of them. For example if your router has 2 interfaces whose IP addresses are 192.168.30.1/28 and 192.168.30.17/28 but you only want to run EIGRP on the first interface, you can type “network 192.168.30.0 0.0.0.15″ under EIGRP process.

Other lab-sims on this site:

CCNA Access List Sim

CCNA NAT SIM Question 1

CCNA NAT SIM Question 2

CCNA Frame Relay Sim

CCNA Configuration SIM Question (RIPv2 SIM)

CCNA VTP SIM

CCNA Drag and Drop SIM

CCNA Implementation SIM

 

Comments
Comment pages
1 12 13 14 15 16 77 29
  1. chokka
    December 14th, 2011

    @xallax

    yes, otherwise the router will advertise 192.168.60.0/24

    what you mean from this?? please make me clear. when i type show run in R1,

    passive-interface default>>>>>> come like dis. so in this situtuation what i want do in exam?
    please explain me briefly about this passive-interface concept related to thi sim question and configuration???

  2. xallax
    December 14th, 2011

    @chokka
    we use “passive-interface” to stop a certain interface from participating in the eigrp routing update distribution.
    if you see “passive-interface” on an area border router, such is the example here, then leave it as it is because it is normal for you not to spread the routing table from your network to the rest of the world.

  3. toddy
    December 14th, 2011

    tommorow my exam plz help me about exam

  4. Maybe…
    December 14th, 2011

    R3 or The router which need to no passive….
    #en
    #cisco
    #conf t
    #router eigrp 212
    #no passive-interface fa0/0
    #network 192.168.77.0
    #network 192.168.60.0
    #no auto summary
    #end
    #copy run start

    somtng likdis correct or not xallax,guy….thk

  5. Koffy
    December 14th, 2011

    @Maybe

    Yes, you are right. But, always remember, you have go into the “config-router” command to issue “passive-interface” OR “no passive-interface” and also “no auto-summary” and then advertise your network just as you have done.

  6. Maybe…
    December 14th, 2011

    @Koffy
    Thank you so much,you given us the high valuable comments and helping many guys cleared the Q…God bless…

  7. Bashmax
    December 14th, 2011

    Hi Fellows,
    i took the CCNA Exams for 4th time yesterday 14th, Dec, 2011 but it’s totally crab and shit because i fail with very low score. It required time, dedication and understanding for there are some few changes that occur in the exams. Pay more attention to Eigrp Simulation because passive-interface is a kind of applied on the interface fa0/0 and VTP Simulation is a bit changed, just understand the concept and master your configuration commands and use them appropriately.
    There are quite few changes because Ipv4 subnetting question seems to be the majority, followed by Vlan, Switch and other operational questions. Eigrp and Ospf question only appear trice in the entire exams. Therefore be careful.

  8. skyline
    December 14th, 2011

    hey guys, do we need use the ‘no network 198.0.18.0′ command as well? cuz no eigrp is needed between isp and r1?

  9. claudia
    December 15th, 2011

    @sasha
    in your test the new router was R2??
    does anybody know why the router behave like that on sasha’s test??

    if you want to find out if a router has passive interfaces
    #show ip protocols (will show it )

  10. claudia
    December 15th, 2011

    @Maria

    terminal monitor enables to display “debug and system error messages” on the console line,and only really affects the vty that you are currently telnetted or ssh’d into

  11. bakki
    December 16th, 2011

    can someone tell me???
    In the real ccna exam, will the talk abt passive-interface or will we want check passive-interface configugure on each router and make configuration even without they talked about the passive-interface???

  12. Viktor
    December 16th, 2011

    I had exam today! Passed with 841 score. Total 48 questions. 3 labs: VTP, EIGRP, ACL2.
    Dump (.vce) from Dima Dima (www.examcollection.com) is valid. I had 3-4 new questions, but not complex. 3 questions about IPv6. EIGRP and ACL2 valid on 100% with 9tut.com. VTP lab have 1 question that is absent in VTP lab from 9tut. Lucky to All!

  13. Zero
    December 16th, 2011

    I pass today with 894 score. 3 labs: VTP, EIGRP, ACL2.
    VTP and ACL2 same on 9tut
    for EIGRP lab
    - cmd passive-interface on R1 s1/0 and i can’t remove it.
    - one network on R1 that not use T_T and i remove it from config.

    good luck for all thk u 9tut.com >_<

  14. presy
    December 18th, 2011

    @Zero

    one network on R1 that not use T_T and i remove it from config.

    how did you find out this and how to complete this task???

  15. rakhy
    December 18th, 2011

    @daniel

    Thank you daniel for the reply.

    So if they specify particulary the interface name, then I can remove it (if the interface between R1 and R3 is passive interface) using no passive-interface (interface name)

    Thanks alot…

  16. Igor
    December 18th, 2011

    @zero

    I’m also seen network that not used by R1 but i didnt touch it

    you are risky man))

  17. bakki
    December 19th, 2011

    @zero &Igor

    if i’l find out that type of network, should i want to remove or not??? please reply me….
    If i want to remove how can i perform that task? which command should i want to use???

  18. David
    December 19th, 2011

    R3#show ip route
    Codes: C – connected, S – static, I – IGRP, R – RIP, M – mobile, B – BGP
    D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area
    N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2
    E1 – OSPF external type 1, E2 – OSPF external type 2, E – EGP
    i – IS-IS, L1 – IS-IS level-1, L2 – IS-IS level-2, ia – IS-IS inter area
    * – candidate default, U – per-user static route, o – ODR
    P – periodic downloaded static route

    Gateway of last resort is not set

    192.168.60.0/30 is subnetted, 2 subnets
    C 192.168.60.64 is directly connected, FastEthernet0/1
    C 192.168.60.80 is directly connected, FastEthernet1/0
    192.168.77.0/30 is subnetted, 1 subnets
    C 192.168.77.32 is directly connected, FastEthernet0/0

    In EIGRP we can use wildcard mask to advertise these directly connected networks. Why do v have to use network statements without wildcard mask. If we use statements with wildcard mask do we still get the points.

    Another thing is that R3 does have “no auto-summary” configured. Is that why v don’t have to configure network statements with wildcard mask because EIGRP would advertise the actual subnets anyways. Please help me to understand this concept. Why do v configure 192.168.60.0 why not 192.168.60.64 0.0.0.3 and so on.

  19. ke
    December 19th, 2011

    still valid

  20. Anonymous
    December 19th, 2011

    I’ve got same as Sasha
    #no router eigrp 22 “this command has been deactivated from the router’s R2 interface”

  21. vin
    December 19th, 2011

    passed it today. thanks 9tut. it was your website that helped the most.

  22. franc
    December 20th, 2011

    successful in my exam yesterday with 973. thank at all of you.

  23. RRR
    December 20th, 2011

    passed today 990. i studied dima dima 486Q and the 3 sim from 9tut. everything is from the dump. only in EIGRP R3 has been moved to the oppsite side of ISP router(they only changed the locations of the routers) but the configuration is the same.
    thanks to all here.
    please share your experince after your exam so other can get benifit.

  24. ameen
    December 20th, 2011

    pls look at the router R4 ping from R1.becoz in qn they mentioned “as provide full connectivity between the routers”so , check all others are ping each other.

  25. Claudia
    December 20th, 2011

    passed CCNA dec 20th , i got this sim today , the AS on the R1 was 222 ,R1 has a passive interface (S1/0) to the ISP… so you DONT have anything to do with that just follow the same instruccions on 9tut and you will be fine, ACL2 Sw3 had the max rev num so the answer was C,and for VTP the first 5 questions the same.
    God luck to everybody ,thanks 9tut

  26. anji
    December 20th, 2011

    today i finished ccna with 900/1000 eigrp is dam sim
    be carefull some communication is not forming between R1 and R3 even though i config correctly i have lost marks in this only

  27. rakhy
    December 21st, 2011

    Hi…Guys…

    I have a doubt in this Eigrp sim.

    Once we find that we don’t have an entry of R3 in R1 configuration, then we configure R1

    using

    network (network address)

    network (network address)

    Do we need to give “no auto-summary” command here after adding all the addresses ?

    Thanks,
    Rakhy.

  28. Mohammed Shokan
    December 21st, 2011

    I took the CCNA exam yesterday (Tuesday December 21, 2011) and this question comes as simulation part or as a lab.

  29. Sanju
    December 21st, 2011

    Plz send the recent simulation questions to sanjeevhaveri@gmail.com. Thanking you….

  30. Koffy
    December 21st, 2011

    @rakhy

    Yes, you need to issue a “no auto-summary” when configuring your network statement, just as is done in the above example. If you don’t, the network will summarize automatically, and you don’t want that. Do you?

  31. Saini525
    December 21st, 2011

    passed yesterday, I got this sim but diagram was different and would not take the no auto-summary command on the config. Off course Network numbers were different. I passed with 854 barely and I studied very hard. The eigrp area was 112 but basically same question. Know the concepts not just the answer.

  32. Abiola
    December 21st, 2011

    I wrote my exam 2day and scored 973. Sims were eigrp, acl2, and vtp. 10ks 2u all, 9tut and examcollection.com. note dt dumps is still valid. Incase u want my assistance contact me at ab_one4u@yahoo.com

  33. I wrote my exam 2day and scored 973. Sims were eigrp, acl2, and vtp. 10ks 2u all, 9tut and examcollection.com. note dt dumps is still valid. Incase u want my assistance contact me at ab_one4u@yahoo.com
    December 21st, 2011

    I wrote my exam 2day and scored 973. Sims were eigrp, acl2, and vtp. 10ks 2u all, 9tut and examcollection.com. note dt dumps is still valid. Incase u want my assistance contact me at ab_one4u@yahoo.com

  34. Anonymous
    December 21st, 2011

    Alhamdolillah i passed today with 881 marks. all simulation comes from 9tut which was vtp, ACL2, EIGRP. Thanks to 9tut.

  35. rakhy
    December 23rd, 2011

    @Koffy thanks for the reply.

    But why didnt 9tut give no auto summary here when adding R3 network address to R1 ?

  36. some
    December 23rd, 2011

    how to check this sim that is it ok or not? after configure the default route towards ISP in R1

    ip default-network 198.0.18.0
    ip route 0.0.0.0 0.0.0.0 198.0.18.5
    then from other router i want to ping to ISP router but not reachable. it should reachable from any router. am i right or wrong? plz ned a ahthenticate feedback..

  37. some
    December 23rd, 2011

    please let me cleare abt it. actually what we have to done in this SIM ? is it only change eigrp AS in router3? then how i could be shure that my task is ok or not after chage it. because of after configure the mentioned change a can reach from all router to 198.0.18.6 but not able to ping ISP side ip 198.0.18.5. so please share with me about your experience in this regard.
    thanks..

  38. Koffy
    December 23rd, 2011

    @rakhy

    Please, look at R3 network statement carefully. The “no auto-summary” command is issued.

  39. Koffy
    December 23rd, 2011

    @some

    Yes, after configuring the “ip default-network” command in R1 will advertise the static route of R1 (to go to the Internet) to other routers R2, R3, R4. Therefore the route is pingable from other networks or routers. The route become reachable……Network or Route of last resort.

  40. some
    December 23rd, 2011

    @Koffy
    thanks a lot for your comment, but i can reach from all lan network to R1 out interface(.6) but not able to ping that other point to point ISP interface (.5). so what could be the wrong in my configuration.

  41. Koffy
    December 23rd, 2011

    @some

    Try if the ping between the ISP router and the R1(serial interface) works. Work at it bit by bit.

  42. some
    December 24th, 2011

    @koffy
    I can ping from R1 S0/0/0 interface to ISP router s0/0/1 interface IP and also able to ping from R2, R3, R4 to R1 s0/0/0 Interface ip but not able to ping ISP router s0/0/1 interface ip from R2,R3 and R4. i didn’t find anything that why it is not ping.

  43. Koffy
    December 24th, 2011

    @some

    Well, now all the conditions being satisfied. The ping between R1 and ISP works, and the ping between R1,R2,R3 and R4 works too.
    R1 is acting as the gateway of last resort, so for R2,R3,R4 to reach ISP router must go through R1.(To the internet)
    The ISP router is a remote router, does not form part of the AS number, and therefore is not pingable from R2,R3,R4.

    For ISP router to be pingable from R2,R3,R4 you must include it in the same AS number as the other routers, and issue the redistribute static command to include this static default route with its eigrp routing updates, then R2,R3,R4 would have the ISP router as their gateway of last resort, then the ISP router is pingable from R2,R3,R4.
    Try it this way, and see if it works.

  44. some
    December 24th, 2011

    @koffy ,

    i’m trying to reditribute static within R1 router EIGRP diclartion. but result is same.

  45. Maqsood
    December 26th, 2011

    Passed exam very comfortably, thanks to 9tut and all guys who take out time to explain the concepts here, for all those who want to know status of dumps and labs all are valid with slight changes like name , AS numbers etc, EIGRP,Access list 2 and vtp are valid.

  46. moncho
    December 28th, 2011

    i had to add ip default network and ip route into ISP router because this sim didnt have it. i did the test last wk and they were already in the ISP router ready to go. i managed to get R3 to ping ISP AFTER i entered those 2 commands (after fixing everything else). if u wonder why R3 wont ping ISP, that is why. also you dont need to worry about other routers, because in the exam they already setup, and the question states you dont need to worry about them. only get R1, R3 and ISP to ping!

  47. madccs
    December 28th, 2011

    I passed the exan today, december 28-2011, the eigrp lab was exactly like this one. I also got the vtp and access-list lab. So, EIGRP, access-list and vtp are valid.

  48. shafiq
    December 28th, 2011

    what is passive interface command? and one more thing in the exam we must have to ping to other router and check the status?

  49. shakeel
    December 29th, 2011

    router eigrp 212
    passive-interface {interface name}

  50. Agni
    December 29th, 2011

    just today passed ccna got 973/1000. sims r ACL2.VTP & Eigrp….same as 9tut.com….thanks a lot….

Comment pages
1 12 13 14 15 16 77 29
  1. No trackbacks yet.
Add a Comment