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 40 41 42 43 44 77 29
  1. Yazan
    November 11th, 2012

    @Basti

    did u saw this command when u did sho run
    enable router eigrp 212
    passive-interface FastEthernet0/0

    ?????

  2. Basti
    November 11th, 2012

    I am really puzzled up to this time because I am sure I configured it properly.
    What is missing on my configuration? Thanks in advance. .

  3. Basti
    November 11th, 2012

    i saw the passive-interface connected to ISP but can’t remember there is a passive-interface FastEthernet0/0. .

  4. Yazan
    November 11th, 2012

    @Basti

    if the passive-interface FastEthernet0/0 are enabled u have to remove it .

  5. Yazan
    November 11th, 2012

    @Basti

    i guess the command was enabled coz the ppl who take exams at last 2 days they said that the command was enabled .

  6. Basti
    November 11th, 2012

    @Yazan

    Thank you so much. . Aside from that is there anything that I need to check?

  7. Yazan
    November 11th, 2012

    @Basti

    no just keep checking the comments to see if there was any upgrades in the questions and study well :))) .

    sry that u failed and gd luck next time :) .

  8. Basti
    November 11th, 2012

    @Yazan

    Thanks again man. Planning to take after a week or two more weeks. :)

  9. evans
    November 11th, 2012

    pls my exam is 21st of november. help me with a valid dumps.. email; ebareleevans@yahoo.com thanks

  10. Basti
    November 12th, 2012

    Yazan I’ve done some research about the passive interface.
    If you are saying there is a passive interface configured on fa0/0 on Home1 router how come
    the two routers are performing adjacency. I am sure of it because I used the
    show ip eigrp neighbors and I can ping the routers Home1, Field1 and Field2 from Home2 router.
    As per CISCO about the passive interface on EIGRP. The EIGRP suppresses the exchange of hello packets between two routers,
    which results in the loss of their neighbor relationship.
    So please anyone can tell me what’s wrong on my configuration. Thanks.
    or did I miss something?

  11. pk
    November 12th, 2012

    Download packet tracer 5.3.2

    Packet Tracer is created by Cisco SystemsTM and provided for free distribution to faculty, students, and alumni who are or have participated in the Networking AcademyTM program. Self-learners are not allowed to download this software.

    Packet Tracer 5.3.2 is currently available for download from the Packet Tracer resource page on Cisco Networking AcademyTM pages.

    To access this page, log in to Academy Connection (CiscoTM website) and click the Packet Tracer graphic on the left of the page, select Software Downloads, then select the appropriate download package for your needs.

    Find alternate download links

  12. Thomas
    November 13th, 2012

    Can anyone help, I check all my configurations, everything looks good, same at answered one.. but somehow , my eigrp is not been established in R3
    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

  13. Yazan
    November 13th, 2012

    @Basti

    when u do the Passive-interface command on f0/0 on R1 or R3 , the other routers cant ping R3 same as R3 its cant ping the other routers except it can ping f0/0 .

  14. Basti
    November 13th, 2012

    But on my case I can ping all the routers. And adjacency is performed. So I don’t think it has something to do with passive-interface. Correct me if I’m wrong.
    Ok about my score 69%. Is it the Eigrp lab only? Or it was already included with eigrp multiple choice questions. Am not sure about the scoring system on the printed report.

  15. ahmad
    November 13th, 2012

    thanks yazan
    thanks for all people who helped me in 9 tut
    thanks sekher
    i passed today in my ccna exam 947

  16. rana
    November 13th, 2012

    can any buddy tell m that how can we check that our lab is successfully configured..and what are ways to verify that..in steps..should we go on every router and ping all other routers..r just go on R1 and R3..my exam is on 15 nov

  17. Yazan
    November 14th, 2012

    @Basti
    then i dont know mate where u lost ur marks but u can see in ur report .

  18. Yazan
    November 14th, 2012

    @Ahmad

    congrats mate :)))

  19. Yazan
    November 14th, 2012

    @Rana

    try to ping any R2 from R3 and by default at the exam u gonna ping R3 from router in the sim to be sure ;)
    best wishes for u :)))

  20. Yazan
    November 14th, 2012

    @rana

    ping R2 from R3 this will be enough , but at the exam ur mind gonna make u to ping R3 from any router .

  21. buks
    November 14th, 2012

    @Basti

    Maybe on your other lab sim have problem..can you figure out here your other lab

  22. Will
    November 14th, 2012

    Guys,I have a question.

    If there’s no “passive-interface” between ISP & R1,do I have to add that command?or I have to stick with the objectives?…and if I add a command that is not on the objectives,will it deduct some points?sorry for my grammar.

    :)

  23. ohaysama5
    November 14th, 2012

    Hi Network Addicts,
    I got my CCNA today, I got more than 90% points :)
    ********************************************************
    Talking about my today’s exam:
    I had the three most known simulations which are: EIGRP, VTP, and ACL2.
    * EIGRP SIM had 122 as a AS in few routers, and 12 in one so i followed steps as dictated in this site, i found a passive-interface between ISP and Router “1″ so i leave it, i also delete one network that was advertised by router “1″ and which wasn’t lied/configured in any physical interface, so i guess that allows me to get 100% in this section. (15min)
    * Locate VTP SIM in this site it was the same with only 5 questions.
    * IMPORTANT:————————————-
    ACL2 I took all my time there, I spent more than 25min, I was very sure in each step BUT at last i get 40% which i was expecting unfortunately !!
    the exhibit was exactly as below:
    - Host C should be able to use a web browser(HTTP)to access the Finance Web Server
    - Other types of access from host C to the Finance Web Server should be blocked
    - All access from hosts in the Core or local LAN to the Finance Web Server should be blocked
    - All hosts in the Core and local LAN should be able to access the Public Web Server
    The Finance Web Server and Public Web Server had different IP Addresses.
    The Task was the same as on top
    My unsuccessful response -because at the end i wasn’t able to access Finance Web Server via Web from Host C- was:

    Corp1#conf t
    Corp1(config)#access-list 102 permit tcp host 192.168.33.3 host 172.22.242.23 eq 80
    Corp1(config)#access-list 102 deny ip any host 172.22.242.23
    Corp1(config)#access-list 102 permit ip any any
    Corp1(config)#interface fa0/1
    Corp1(config-if)#ip access-group 102 out
    Corp1#copy run start

    I check everything more than once but i didn’t succeed to figure out !!
    What i could say is that i noticed each time i tried to access Finance Web Server from Host C, i got a message over the Router interface which i can’t remember exactly sorry but it was smth like that “…… domain server (255.255.255.255) ……”
    So, now after a bit search over internet i guess i ought to use “NO IP DOMAIN-LOOKUP” which prevents router from looking for DNS resolution !!!
    with all my consideration, It will be helpful for future candidates if somebody can confirm or correct me
    ———————————————————–
    All MCQs was familiar, if you have no doubt in concepts and you give sufficient time and concentration to all of 9tut sections, question became obvious and you figured out instantly the correct answer !!
    **********************************************************
    This is my email: ohaysama5@gmail.com If I can be of any help feel free to ask.

  24. tai
    November 15th, 2012

    @ ohaysama5

    Can you show your answer for EIGRP Sumilation ? How to leave passive-interface between ISP and Router ???

  25. ohaysama5
    November 15th, 2012

    @tai

    It’s exactly the same as in this tutorial, while when checking the R1 running-config file, i found a passive-interface between R1 ans ISP plus a static route to the ISP and a default-network so i didn’t change anything. the point is that i noticed that R1 advertise one more network which isn’t configured anywhere so i removed it with no network 192.x.x.x. at last i saved the config with copy run start and checked the whole network with the ping command.
    Regards :)

  26. tai
    November 16th, 2012

    @ ohaysama5

    Tks so much .

  27. gimgim
    November 16th, 2012

    hi guys, please can someone send me the activation key for visual certexam suite to take the full practice exam. the trial copy only allows me to answer 5 questions. my email is mhdzowa@yahoo.com .thanks in advance, i really apreciate it

  28. Peter
    November 16th, 2012

    Hi guys,

    I wrote my CCNA exams today and i passed. i was unnecessarily scared as i had postponed the exams over 4 times in d last month. SIMS were EIGRP, ACL and VTP. the questions were basically the same, just a little alterations in IP addresses (as expected tho). And yeah… the EIGRP was a lil tricky as the two networks in the MAIN router were not in the CAMPUS router.

    My advice tho: if you are gonna memorize the options in the concept, memorize the entire answers not just the alphabets (a) (b) becos the options were re-arranged.

    further enquiries?? papilon866@yahoo.com.

    Great job from you lot….. cheers!!!

  29. ohaysama5
    November 16th, 2012

    @Peter
    Congrats men.
    but my advice will be understand questions and responses too to be able to figure out the correct answers on the reel exam.
    regards.

  30. Peter
    November 16th, 2012

    true true!!!!!!@ohaysama5

  31. basti
    November 16th, 2012

    @buks
    @to all

    Guys!
    Got 69% on “Configure, verify, and troubleshoot basic router operation and routing on Cisco devices.”

    My question is: The 69% is all EIGRP lab sim? or is it included the multiple choice questions regarding the EIGRP?

    Please help me understand the scoring system. . Thanks in advance.

  32. Bob
    November 16th, 2012

    Passed today, had this SIM. AS number and subnets were different!

  33. 9tut
    November 17th, 2012

    @basti: It includes all the multiple choice questions & sims.

  34. Anonymous
    November 17th, 2012

    @9tut

    Thanks 9tut. . .

  35. basti
    November 17th, 2012

    @9tut

    Thanks 9tut. . .

  36. waqas
    November 17th, 2012

    alhamdullilah i m ccna certified scoring 986 in todays 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 famouse sims
    1.vtp
    2.eigrp
    3.acl
    and vtp question is confusing but by the grace of almighty i tackled this question too..
    and in eigrp as number is 23 on all router except the newly added router ,and i see the passive interface b/w the central 1 router and isp so i leave it and static route b/w central 1 to isp is also there and ip default network too…
    but the response of the show running config on all the router is very bad or u say slow that i dont see all advertsied networks on first time so have to use show run config again and again and there is also a route which is not used in complete so i delete that network
    and atlast i ping all routers with each other but i cant ping isp router successfully from any of the four routers but still got 100% in this eigrp lab
    and 3rd scenario is acl which is from the 9tut sim and i also got full marks in this sim too by the thankz of almighty ALLAH..
    And gud luck to all whos oppting for the exammm

  37. rana
    November 20th, 2012

    passed my exam on 15-nov,labs vtp,eigrp,acl2
    in eigrp as 23
    all other scenerio is same as above sim..
    remove one network from r1.bcz that was not in use
    thanks to 9tut
    But i still can’t get my score sheet..bcz of faulty printer at center..

  38. Scottest
    November 22nd, 2012

    Hi guys, for the drag and drop quts,can one have access to use the sho commands to determine the types of routers, ip addresses and many others. plz help Monday i’m sitting thks

  39. Scottest
    November 22nd, 2012

    one more tin guys, about the passive interface on eigrp, how can u see or notice it?and how does it works.helps guys just 5days to …………..

  40. TOMS
    November 22nd, 2012

    @ Scottest

    At your exam use these commands to verify “show run”, “show ip protocols”(EIGRP LAB SIM) and “show ip route”.

  41. manu
    November 22nd, 2012

    passed yesterday, labs still valid VTP ACL2 EIGRP

  42. Anonymous
    November 24th, 2012

    passed ccna exam this morning, thanks 9tut, labs still valid vtp acl2 eigrp

  43. Alfred
    November 24th, 2012

    for gimgim

    hi, man I had the same problem with visual cert i had an old version and we i tried to use the lastest dumbs that i downloaded from exam collection, visual cert said that i have to upgrade the software to can use it. when I upgrade the last visual cert It only let me use the trial version with just 5 question socks, right! well, if you wanna use the full version just download the visual cert 3.0.1 from this link this include the patch to use as registered…

    link: http://tny.cz/2b9f1868 (copy this link in your browser)
    good luck bro

  44. LoneLy
    November 25th, 2012

    hi
    i wanna ask about sim EIGRP

    what i do when i found passive router between r1 r3 or r2 r3
    should be type : “no passive-interface type
    ?? or what i am confused :(

    i need example

    than x 4 all

  45. Mike
    November 26th, 2012

    @LoneLy

    You should know what passive-interface does, what the function is and after you will not be confused.
    Ta

  46. tshons
    November 26th, 2012

    makes sense.

  47. Jack
    November 26th, 2012

    >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..

  48. BRYAN
    November 26th, 2012

    is there a need to add “redistribute static” on router 1? to advertise static default route on router 2,3 and 4?

  49. Xyz
    November 27th, 2012

    Hi Everyone,

    I just have a question regarding the above EIGRP sim.

    I noticed that there is a network “198.0.18.0″ configured on R1. Should we remove it and configure a static default route instead and advertise it using redistribute static ? Assuming that the ip default-network is not configured?

    Thanks in advance!

  50. Cael13
    November 28th, 2012

    No as the instructions state all other routing and internet are working properly. Just need to configure R3 and update R1 to form adjacency and you will get 100%.

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