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 29 30 31 32 33 77 29
  1. RED
    July 27th, 2012

    Layer 13 congrats in passing. So in 9tut on VTP it says when you show cdp neighbor we shoud be able to see the IP of the switch that recieved the last update so that wasn’t the case? Has anybody else had this problem? Please share your experience. I appreciate the help.

  2. Anonymous
    July 27th, 2012

    hello
    should reach ISP router through eigrp or not ? (add static route on R1 and redistribute it under eigrp or not )
    plzzzzz advise :S

  3. RED
    July 28th, 2012

    Are pass4sure still good for the questions? Thanks in advance for your response.

  4. Layer13
    July 28th, 2012

    Hi RED,
    exactly, when I used “cdp neighbors” I’ve not seen IP address which would be matching IP address from “show vtp status” so I’ve picked answer “updated locally SW3″. I wasn’t sure is it right but this is becasue I couldn’t find this address.

  5. Mike
    July 28th, 2012

    @Layer13
    Well done with exam mate. Did you try to use show ip interface brief, so you can see yours ip addresses, and I think you pick up right answer. If you can’t see in show cdp neighbour detail ip address, probably it’s local update, if it’s locall meant its root bridge.

  6. Mike
    July 28th, 2012

    Oh I think I mixed up stuff:) Ignore my comment

  7. akshay londhe
    July 28th, 2012

    gundah & flamur , i m unable to understand how to check “passive interface ”
    . plz guys can u tell how to find by steps. or by setting an example here. plz.

  8. RED
    July 28th, 2012

    Layer 13 and Mike so If I can’t get the IP from show CDP neighbor or show iP int brief how would I find which switch is the updater?? I appreciate your responses guys.

  9. Mike
    July 28th, 2012

    @Red

    You should find it by typing those two command that you mention before
    show cdp neighbour detail or your local address by show ip interface brief

  10. RED
    July 28th, 2012

    Hey Mike but I thought that Layer 13 wasn’t able to see that info with those commands? I just want to understand. Thanks all.

  11. Mike
    July 28th, 2012

    @RED

    Layer 13 comment:
    I got confused on question from which switch SW3 received last update. Have used ”show vtp status” + ”show cdp neigbors detail” and I couldn’t find this IP address.

    Command “show ip interface brief missing”

  12. RED
    July 28th, 2012

    Thanks Mike! that makes sense!

  13. RED
    July 29th, 2012

    When you import the sim here on 9tut into packet tracer is there any other configuration needed or is it pretty much done for you?? I mean do you need to put in IP and such? Thanks!

  14. SK
    July 29th, 2012

    Did anyone get NAT sim in the exam??

  15. amrit
    July 29th, 2012

    wat is passive-interface can any 1 help me…………

  16. xallax
    July 29th, 2012

    @amrit
    the “passive-interface” command disables EIGRP on a particular interface so you dont have to worry about routing broadcasts out that interface

  17. Ahmed
    July 29th, 2012

    I passed today with a score of 920/1000, Thanks a lot to 9tut and Jericho, i’ve had the ACL, VTP and EIGRP labs, with slight modifications on ACL and EIGRP, the whole ohter 48 questions were from the Jericho dumps so i can testify they are 100% valid.

    Good luck everyone !

  18. amrit
    July 29th, 2012

    @xallax
    command 4 chk passive- interface on particular interface?????
    thanx xallax

  19. amrit
    July 29th, 2012

    hi ahmed can u pls suggest me abut modification in acl,eigrp sim’s
    thnx

  20. xallax
    July 29th, 2012

    @amrit
    yes, on particular interfaces

  21. wannabeenowoneofmanycertified
    July 30th, 2012

    @ all

    VTP question:

    if the question was asking where switch sw-ac3 gets its vlan update:
    use this command first : sho spanning-tree vlan 1
    if you see a message ” this is the root bridge” then the switch was updated locally:
    if you see that the switch is not the root bridge
    then use the command: sho vtp status to find the ip address then command cdp neigh detail or cdp entry * to find the name of the switch that updates sw-ac3

  22. RED
    July 30th, 2012

    Can somebody explain to me how we remove the network in the passive interface and what would the question say if we indeed needed to remove the network? I am confused on what the question would be if we had to remove the network? In responses can you also please provide the command to reomve the network? I mostly need the “how” and “why” we would remove the network and what the question would be.

    Thanks in advance for your help guys.

  23. afolabi
    July 30th, 2012

    writing the exam tomorrow,i only went thru most of the dumps i read once,am praying that will be enough for me

  24. Doumbia
    July 31st, 2012

    HI EVERYBODY,ALHAMDOULLAYE RABIL ALAMINE
    I Just passed the exam,i scored 960,i had VTP,ACL and EiGRP.
    I only used 9TUT and exam collextion 487.

    I m very grateful to 9TUT and everybody on this wonderful site.

    THANKS

  25. Jamie
    July 31st, 2012

    Passed CCNA today with 986/1000.. Studied Todd Lammle Sybex, CCNA (6th edition), Bruce, Sekhar and Jericho. Labs were EIGRP, VTP and ACL2.. Thank you exam collection and 9tut!

  26. RED
    July 31st, 2012

    Are there any drag and drop questions on the exam? I am seeing a lot in the dumps but am not sure how many if any are on the exam. Thanks.

  27. Jag
    July 31st, 2012

    Hi! I took and passed the EXAM today. Praises to Jesus Christ, the ancestors and the elect.

    9tut! Thank you for presenting this body of work in a simple manner, which allows a

    person to put the concepts in perspective. The dumps that are found examcollection.com

    are valid. The Sims were Access-list 2, EIGRP and VTP, which are the same as 9tut.

    Anyone who needs this cert, can use these sites and Pass4sure.

  28. RED
    July 31st, 2012

    Jag CONGRATS ON PASSING! were pass4sures valid? Were most of your questions from pass4sure?

  29. help ??????????????????????
    July 31st, 2012


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

    Is the “ip default-network 198.0.18.0″ will do the same as “ip default-information originate” (to propogate the static route ) ?

  30. Anonymous
    August 1st, 2012

    @RED

    Passive Interface will stop Eigrp to form neighbor with each other. You only need to remove Passive Interface when it is configured on the interface adjacence to neighbor routers.

    configure terminal
    interface abc
    no passive interface

  31. RED
    August 1st, 2012

    Thanks Anonymous!

  32. DNT
    August 1st, 2012

    To All future CCNA Takers

    All the dumps and questions on 9 tut are valid. I believed Cisco gives those questions out here for us to learn, revise, and understanding the cisco network before taking exam.

    You guys really need to read books and get understanding the network fundamentals then use this web site last. you will be fine and pass exam easily.

    I was very nervous and worry alot before taking CCNA. But when i took the exam and found out all the questions from dump and 9tut. 9tut is great because there are a lot of explanation. Some questions from dumps deliberately are wrong in representation and answer because cisco wants to test your knowledge. so you need to justify your answers and knowledge in the exam. Practice alot of time from the dumps because you will not have enough time in the exam if you dont do it at home, particularly for ESL student like me ( English is not my native language). You will not have enough time to analyse the question

    It is a great way to learn by posting your problems and question then we are here learning together. Dont ask for valid dump because all the questions are valid you need to ask for your valid knowledge and understanding.

    After 10 years driving a truck and now i go back to school to learn this shttttt network at my age. i found myself struggling and hard to cope it. but i prevailed and continue my further education with cisco probably CCNP

    Trust me . READ BOOKS and TUTORIAL and THINK then ACTION. YOU WILL BE WINNERs

    Good Luck

  33. anaz
    August 1st, 2012

    @DNT Didn’t you ask for the extendtion time for ESL ? and did you score good on the exam ?

  34. Mike
    August 1st, 2012

    @DNT

    Well done.

  35. DNT
    August 1st, 2012

    @Anaz

    Time extension application was rejected. I was very nervous when i took exam. I wished i had more time so i could relax.

    Reconfirm all the questions from dump and 9tut are good revision

  36. Mike
    August 1st, 2012

    I book my exam and got 30 mins additional time.
    I’m fro Ukraine, and living in United Kingdom only 2,5 years. I met theirs condition. You need to check if you can apply

  37. ako
    August 1st, 2012

    passed ccna thanks 9tut! acl2 eigrp vtp

  38. Olivia
    August 1st, 2012

    Passed the test with 933 !! Labs were acl2, vtp and eigrp with some changes in IP, computer names etc… The questions were mostly from Colliseo! But i also studied Shakar and Bruce.

  39. anaz
    August 1st, 2012

    @DNT OH ! same as me ! I just got rejected and plan to take the cirt this week ! Talk you later then !

  40. eagle
    August 2nd, 2012

    woudlnt you also delete the 198.0.18.0 network from eigrp on router 1? since its the route to the outside and it already has a static route out that interface that is being propagated? also ive never used default-network ive always used ip default-information orginate and redistribute static commands?

  41. eagle
    August 2nd, 2012

    also remember there is show cdp neighbors command…and there is the show cdp neighbors detail command..only the later shows the IP address of each device

  42. Moez
    August 2nd, 2012

    Hey Guys, quick question from me; in the actual exam sim’s can we use ‘tab’ and ‘?’ Thanks

  43. Anonymous
    August 2nd, 2012

    Can omebody expalin this to me I am seeing a lot of people saying they need to remove a network IP what whould the question ask if we need to remove the netowrk IP? Alos how do you know if there is a passive interface? What should i look for to tell me if there is a passive interface? Thanks.

  44. Doumbia
    August 2nd, 2012

    @anonymous:
    if you run the show running-config on the router you will see the networks that are advertising by the router,here is an exple:

    router eigrp 212
    network 192.168.36.0
    network 192.168.60.0
    network 198.0.18.0
    no auto-summary

    Now compare the advertised networks from your show running-config to the networks that are connected to your router,if you find one that is not connected to your router then remove it or if there is one connected to your router and it is not advertise then add it

    THX

  45. anaz
    August 2nd, 2012

    @Anonymous The first answer is look at Doumbia’s comment.For the second one about the passive interface you should do “show run ” LOOK under the eigrp running config should look like this ”
    router eigrp 212
    passive-interface FastEthernet0/1 (just to to eigrp 212 and do “no passive-interface FastEthernet0/1 ” to remove )
    network 192.168.77.0
    network 192.168.60.0
    no auto-summary”

    http://i47.tinypic.com/30sysrq.jpg

  46. Doumbia
    August 2nd, 2012

    @anonymous: About the passive interface

    Maybe in this EIGRP Sim you will see the “passive-interface …” command somewhere in R1 configuration. If the link between R1 to R2 (or R3, 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 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 the correct
    9TUT comments.

    Thx

  47. gundah
    August 2nd, 2012

    hallow guys i thnx GOD i passed exam 947 the 9tut ua gud and be blessed everyone

  48. Anonymous
    August 2nd, 2012

    Thanks Doumbia and Anaz that makes sense. Thanks so much!

  49. Anonymous
    August 2nd, 2012

    Question Doumbia How will I see or know how to idenify the link between R1 and ISP? What should i look for in regards to that? Thanks!

  50. ud
    August 2nd, 2012

    in real ccna exam, is simulator in packet tracer?? or something else???

Comment pages
1 29 30 31 32 33 77 29
  1. No trackbacks yet.
Add a Comment