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 41 42 43 44 45 77 29
  1. Xyz
    November 28th, 2012

    ^ I see, thanks!

  2. Needhelp
    November 30th, 2012

    How do I know in router have “passive-interface”? and how to remove it? Are there any command to show it?

    Thanks,

  3. ابراهيم الرميان
    December 1st, 2012

    @Needhelp

    from router 3 type # sh ru
    if u see f0/3 passive mode don’t care about it

    we need f0/0 directed link with main router

    just go to :

    R3(config)#router eigrp 212
    R3(config-router)#no passive-interface f0/0

    #copy run start

    bye

  4. ابراهيم الرميان
    December 1st, 2012

    and use

    #show ip eigrp neighbors

  5. yadoo
    December 1st, 2012

    same exam today but as number 221

    and same acl lab

    and vtp 5 questions

  6. Needhelp
    December 3rd, 2012

    Thanks you for your help ابراهيم الرميان

  7. HAMZA ADIL
    December 5th, 2012

    السلام عليكم يا شباب الحمد لله اليوم نجحته في امتحان السي سي ان ايه واحرزته 854 اللابات الموجوده في الامتحان الEIGRP & ACCESS LIST

  8. bruch
    December 6th, 2012

    @hamza

    there is a new question??

  9. Karthick
    December 6th, 2012

    Hi All,

    After configuring all that configs. Still i am unable to ping the ISP 198.0.18.5 from other R2 R3 R4 please help.

  10. suresh
    December 6th, 2012

    @ karthick
    what u configure just summarrzy..i think u forget to give auto summary finaly..if we won’t give this command no routing happen..or in r1 router u didn’t advertise the missing network just check it

  11. Mostafa Nader
    December 7th, 2012

    @Anybody
    @9tut

    Whether can we use tab key to fill the full cmds??
    Also can we use shortcut cmds in exam like we use in gns3 or packet tracer??
    eg:sh run, sh ip int br, sh ip rout…
    thanks..

  12. shah
    December 7th, 2012

    sad news..i fail my second attemp…just got 700++…will try again later…sim..eigrp..vtp and acl..lot of new guestion on frame relay..

  13. hey
    December 7th, 2012

    This lab, VTP and Access list 2 came in exam. Be sure to do them if u prepare CCNA exam.

  14. Arnoldrs
    December 7th, 2012

    I failed my exam today. The sims were the same EIGRP, VTP and ACL2. On this lab EIGRP I found that the router 1 was advertising 3 additional and different networks. My question is should I delete those networks next time or just leave it like that? I just did what you explained on the lab I mean add the R3 network without delete those others routes.

  15. Jamerican
    December 8th, 2012

    Shah, where do you think you went wrong on the exam? Are the frame-relay questions any different than the ones on this site? Please give more feedback if possible. Thanks

  16. Pramod
    December 12th, 2012

    Thanks 9tut… Passed exam today got 894… lab EIGRP, VTP and ACL2..

  17. mcl
    December 12th, 2012

    configure terminal on routers R2 and R4 are unable to use, is that normal???

  18. mcl
    December 12th, 2012

    in my exam today

  19. 9tut
    December 12th, 2012

    @mcl: In this lab you can configure on all 4 routers R1, R2, R3, R4 but only R1 and R3 need to be configured.

  20. mcl
    December 13th, 2012

    but my exam was today and i was unable to enter the configure terminal command con routers branch 1 & 2. Got a message “command dissable in this version”, i make a comment on the question, any idea of this???

    Thanks

  21. mcl
    December 13th, 2012

    i fail the exam with 788, very sad….

  22. rajesh
    December 13th, 2012

    in this sim where i can ping .and how can ping say the ip adsdress please.where i gave the no passive int command in which interface

  23. rajesh
    December 13th, 2012

    after configuring i am not able to ping and where and which port i give no passive
    int comm

  24. rajesh
    December 13th, 2012

    say answers to my question please

  25. Ranjit Chandra Barman
    December 13th, 2012

    By the grace of God i m ccna certified scoring 1000 in 12-12-2012 exam and very thankful to 9tut and SEKHARS & others and dont be scared like me as i m very confused by reading some comments and i got all three famous sims
    1.vtp
    2.eigrp
    3.acl.
    And good luck to all whos opting for the exam

    Lot of thanks to 9tut………..

  26. TDy11
    December 13th, 2012

    TY 9tut.

    Today I have passed the CCNA. (860/825)
    50 questions 3 labs (VTP, EIGRP, ACL). 35 from 9tut.

    Also thanks a lot Brar and Sekhar

    Ty again 9tut

  27. Wero
    December 14th, 2012

    Hi all, im preparing for my CCNA exam this Dec 21th. My question is, after i fixed the issue with the AS in R3 and added the network in R1, with this im available to ping all routers from R3, with this i answered the question? with this will be enough to score 100%?. Because in the SIM I tried to ping from one host to another(host in R3 to host in R4)but they didnt ping. Thanks in advance guys!

  28. Deb
    December 15th, 2012

    @TDy11 please could you let us know which 35 questions (sections) in 9tut are you referring..

  29. harry
    December 15th, 2012

    hi 9tut ,
    i wish to ask that after completing the missing configurations correctly in this eigrp , i could not able to ping ……….is that needed to give ip address in each pc(a,b,c,d,e)

  30. harry
    December 15th, 2012

    hi 9tut ,
    please response to my ques ….. its my humble request

  31. harry
    December 15th, 2012

    any one pls give me ans

  32. 9tut
    December 15th, 2012

    @harry: The IP addresses have been already given in each PC so you don’t need to assign them. If you could not ping then it was another fault in the configuration.

  33. Remy
    December 15th, 2012

    @Wero,

    Hi Wero, I suspect because you cannot ping one host from another using Packet Tracer is because the IP address and Gateway for each host is not defined and need to be configured before you can actually ping hosts. But there is full connectivity between routers.

    If you want to be able to be able to ping using hosts, you will need to configure the IP addresses for each host with their gateway address.

    Hope that helps.

    Regards,
    Remy

  34. vivo
    December 16th, 2012

    I took the exam yesterday,
    In EIGRP, router1 was configured with one additional network x.x.80.0
    which not belongs to any network given, not to confuse it with the Internet network!
    anyway what I did I remove x.x.80.0 and I add x.x.77.0
    I got 100%

  35. Faizy
    December 16th, 2012

    can you send the latest dumps on faizan_jehangir88@hotmail.co.uk? Thanks

  36. VIVO—–JJJJJJ
    December 16th, 2012

    router eigrp 212
    passive-interface Serial1/0
    network 192.168.36.0
    network 192.168.60.0
    network 198.0.18.0
    network 192.168.77.0
    no auto-summary
    !
    ip classless
    ip default-network 198.0.18.0
    ip route 0.0.0.0 0.0.0.0 198.0.18.5

  37. VIVO—–JJJJJJ
    December 16th, 2012

    sorry..
    did you add passive-interface on serial0/1 and
    ip default-network 198.0.18.0
    ip route 0.0.0.0 0.0.0.0 198.0.18.5

    ——————–

    router eigrp 212
    passive-interface Serial1/0
    network 192.168.36.0
    network 192.168.60.0
    network 198.0.18.0
    network 192.168.77.0
    no auto-summary
    !
    ip classless
    ip default-network 198.0.18.0
    ip route 0.0.0.0 0.0.0.0 198.0.18.5

  38. jjjjjjjjjjjj
    December 16th, 2012

    hi 9tut,

    please clarify….
    in EIGRP SIM, do we need to configure on R1- serial 1/0 as passive-interface and
    ip default-network 198.0.18.0
    ip route 0.0.0.0 0.0.0.0 198.0.18.5

  39. 9tut
    December 16th, 2012

    @jjjjjjjjjjjj: No, we don’t need to configure them.

  40. udita_london
    December 17th, 2012

    sir plsss reply

  41. LonelY
    December 18th, 2012

    @rajesh

    forget the passive : ) we don’t need in the exam

    just change as number

    and add network

    no auto-sumrry

    copy run start

    bye

  42. satperm
    December 19th, 2012

    can you send the latest dumps on satperm@gmail.com ? Thanks

  43. cowboy
    December 19th, 2012

    passive interface was present in Serail 0/1 in my exam…

    I forget to add the static route ..eventhough I lost only 20 marks in this SIM..

  44. cowboy
    December 19th, 2012

    ##### ignore the previous comment ######

    passive interface was present in Serial 1/0 in my exam…

    I forget to add the static route ..even though I lost only 20 marks in this SIM…

  45. raj.
    December 20th, 2012

    where we can gave default route cowboy

  46. raj.
    December 20th, 2012

    please say cow boy

  47. little time
    December 20th, 2012

    @raj dont worry about passive interface on serial 1/0. had it on my exam today and i left it there. it was link to ISP. i passed 973/1000. you only remove it if it is on interfaces connecting to other routers not the interface to the ISP.

  48. Prashanth Dsouza
    December 21st, 2012

    Could anyone explain me about passive interface part in eigrp?

  49. Prashanth Dsouza
    December 21st, 2012

    I find it a bit confusing please help.and also commands to solve this 3rd part passive-interface

  50. Prashanth Dsouza
    December 22nd, 2012

    Could anyone explain me about passive interface part in eigrp? Also commands to solve this 3rd part passive-interface

Comment pages
1 41 42 43 44 45 77 29
  1. No trackbacks yet.
Add a Comment