Home > New CCNA – IP Routing Questions

New CCNA – IP Routing Questions

September 27th, 2013 Go to comments

Question 1

A router receives information about network 192.168.10.0/24 from multiple sources. What will the router consider the most reliable information about the path to that network?

A. an OSPF update for network 192.168.0.0/16
B. a static router to network 192.168.10.0/24
C. a static router to network 192.168.10.0/24 with a local serial interface configured as the next hop
D. a RIP update for network 192.168.10.0/24
E. a directly connected interface with an address of 192.168.10.254/24
F. a default route with a next hop address of 192.168.10.1

 

Answer: E

Question 2

Refer to the graphic.

source_MAC_address.jpg

Host A is communicating with the server. What will be the source MAC address of the frames received by Host A from the server?

A. the MAC address of router interface e0
B. the MAC address of router interface e1
C. the MAC address of the server network interface
D. the MAC address of host A

 

Answer: A

Question 3

A router has learned three possible routes that could be used to reach a destination network. One route is from EIGRP and has a composite metric of 20514560. Another route is from OSPF with a metric of 782. The last is from RIPv2 and has a metric of 4. Which route or routes will the router install in the routing table?

A. the OSPF route
B. the EIGRP route
C. the RIPv2 route
D. all three routes
E. the OSPF and RIPv2 routes

 

Answer: B

Explanation

When one route is advertised by more than one routing protocol, the router will choose to use the routing protocol which has lowest Administrative Distance. The Administrative Distances of popular routing protocols are listed below:

EIGRP_Administrative Distances_popular_routing_protocols.jpg

Question 4

A router has two FastEthernet interfaces and needs to connect to four vlans in the local network. How can you accomplish this task, using the fewest physical interfaces and without decreasing network performance?

A. Add two more FastEthernet interfaces.
B. Add a second router to handle the vlan traffic.
C. Use a hub to connect the four vlans with a FastEthernet interface on router.
D. Implement a router-on-a-stick configuration.

 

Answer: D

Question 5

Refer to the exhibit, Host A pings interface S0/0 on router 3, what is the TTL value for that ping?

TTL_ping.jpg

A. 253
B. 252
C. 255
D. 254

 

Answer: A

Explanation

From the CCNA ICND2 Exam book: “Routers decrement the TTL by 1 every time they forward a packet; if a router decrements the TTL to 0, it throws away the packet. This prevents packets from rotating forever.” I want to make it clear that before the router forwards a packet, the TTL is still remain the same. For example in the topology above, pings to S0/1 and S0/0 of Router 2 have the same TTL.

The picture below shows TTL values for each interface of each router and for Host B. Notice that Host A initializes ICMP packet with a TTL of 255:

TTL_ping_detail.jpg

Question 6

If IP routing is enabled, which two commands set the gateway of last resort to the default gateway? (Choose two)

A. ip default-gateway 0.0.0.0
B. ip route 172.16.2.1 0.0.0.0 0.0.0.0
C. ip default-network 0.0.0.0
D. ip default-route 0.0.0.0 0.0.0.0 172.16.2.1
E. ip route 0.0.0.0 0.0.0.0 172.16.2.1

 

Answer: C E

Question 7

Refer to the exhibit. A network administrator attempts to ping Host2 from Host1 and receives the results that are shown. What is a possible problem?

ping

A. The link between Host1 and Switch1 is down.
B. TCP/IP is not functioning on Host1
C. The link between Router1 and Router2 is down.
D. The default gateway on Host1 is incorrect.
E. Interface Fa0/0 on Router1 is shutdown.
F. The link between Switch1 and Router1 is down.

 

Answer: C

Explanation

In this question, Host1 wants to ping Host2 but it receives a reply from the interface Fa0/0 of Router1 (10.1.1.1/24) that the “destination host unreachable”.

If the link between Host1 and Switch1 is down or the link between Switch1 and Router1 is down then Host1 can not receive this reply -> A and F are not correct.

Host1 can receive a reply from 10.1.1.1 -> the TCP/IP is working properly -> B is not correct.

For answer D, if the default gateway was not configured correctly on Host1 (in this case the default gateway should be 10.1.1.1/24) then 10.1.1.1 can not receive the ping packets from Host1 and can not reply for Host1 that the destination is unreachable -> D is not correct.

Interface Fa0/0 on Router1 replies for the ping packets from Host1 so it is up -> E is not correct. If the interface Fa0/0 on Router is shutdown then we will receive a message of “Request timed out”, not “Destination host unreachable”.

Answer C is correct because we can get a reply from the interface Fa0/0 of Router1 so the link between Host1 and Router1 should be fine -> the problem lies at the other side of Router1. But if the link between Router2 and Host2 is down then we will receive a reply from interface S0/1 of Router2 that the “destination host unreachable”. Therefore the problem can just be the link between Router1 and Router2.

Question 8

Refer to the exhibit. The network administrator requires easy configuration options and minimal routing protocol traffic. Which two options provide adequate routing table information for traffic that passes between the two routers and satisfy the requests of the network administrator? (choose two)

easy_routing_traffic.jpg

A. a dynamic routing protocol on InternetRouter to advertise summarized routers to CentralRouter.
B. a dynamic routing protocol on CentralRouter to advertise summarized routers to InternetRouter.
C. a static route on InternetRouter to direct traffic that is destined for 172.16.0.0/16 to CentralRouter.
D. a dynamic routing protocol on InternetRouter to advertise all routes to CentralRouter.
E. a dynamic routing protocol on CentralRouer to advertise all routes to InternetRouter
F. a static, default route on CentralRouter that directs traffic to InternetRouter.

 

Answer: C F

Question 9

Refer to the graphic. A static route to the 10.5.6.0/24 network is to be configured on the HFD router. Which commands will accomplish this? (Choose two)

static_route.jpg

A. HFD (config) #ip route 10.5.6.0 0.0.0.255 fa0/0
B. HFD(config)# ip route 10.5.6.0 0.0.0.255 10.5.4.6
C. HFD(config)# ip route 10.5.6.0 255.255.255.0 fa0/0
D. HFD(config)# ip route 10.5.6.0 255.255.255.0 10.5.4.6
E. HFD(config)# ip route 10.5.4.6 0.0.0.255 10.5.6.0
F. HFD(config)# ip route 10.5.4.6 255.255.255.0 10.5.6.0

 

Answer: C D

Explanation

The simple syntax of static route:

ip route destination-network-address subnet-mask {next-hop-IP-address | exit-interface}
+ destination-network-address: destination network address of the remote network
+ subnet mask: subnet mask of the destination network
+ next-hop-IP-address: the IP address of the receiving interface on the next-hop router
+ exit-interface: the local interface of this router where the packets will go out

In the statement “ip route 10.5.6.0 255.255.255.0 fa0/0″:

+ 10.5.6.0 255.255.255.0: the destination network
+ fa0/0: the exit-interface

Comments (103) Comments
Comment pages
1 2 3 1774
  1. goodlucktoall
    September 27th, 2013

    Question 7 was in today’s exam but with slight change

    in Exam: Consider the packets as they leave RB interface Fa0/1 forwards to RA interface 0/0

    9tut: Consider the packets as they leave RA interface Fa0/0 forwards RB

  2. goodlucktoall
    September 27th, 2013

    as well I had Question 8 in today’s exam

  3. i’lldoitnexttime
    September 27th, 2013

    q 7, 8, 9 in today’s exam

  4. Manuel
    September 28th, 2013

    which exam did you do ? the 200 or the old 802 ?

  5. Angel
    September 28th, 2013

    Hi everybody, I am having exam in a days time can anyone send me the latest CCNA dumps on chichisolo2006@yahoo.com please. Thank you

  6. Adeel
    September 29th, 2013

    Hello Guys I hope you will be fine there.Now New CCNA (200-120) and CCNA security (640-554) Vouchers on special discount of 58% for World wide, with six months expiry date till you purchase. Each voucher cost 70USD.

    Details Required For CCNA Voucher For Discount Processing:

    1-Full Name. 1st Name & Last Name (as you want to appear on certificate & documents)
    2-Country.
    3-City.
    4-State.
    5-Pin Code (or Area Code)
    6-Residential Address (or where you can collect your Certificate or further correspondence
    can be received)
    7-Date of birth
    Add me on Skype through this information which is written below:
    Skype Name: rockon660
    you can also email me at this email address which is written below:
    madeelqaiser@gmail.com
    If you have any Questions feel free to contact me.

    Thanks,
    Best regards,
    Adeel

  7. Anonymous
    October 28th, 2013

    download latest dumps from
    9
    t
    u
    t
    .
    c
    o
    m
    x
    a
    .
    c
    o
    m

  8. Weisskopf
    November 20th, 2013

    Hi guys, i have an exam in couple of days, can someone please send me the latest dump ? thanks a lot
    atotalis@gmail.com

  9. biacosta
    November 28th, 2013

    I PASSED yesterday, thanks to 9tut…..got a 920……woooohhoooo, study up!!!!

  10. Subhsamal
    November 29th, 2013

    Could not understand Qes 8. Even Option B & D also seems corect. Can any one clear my doubt?

  11. mohit
    December 18th, 2013

    Subhsamal: the question asks for easiest way…and static routing is easy to configure so C&F

  12. Anonymous
    December 31st, 2013

    download free latest dumps from

    9tut.webs,com

    (replace comma with dot)

  13. Anonymous
    January 6th, 2014

    download free latest dumps from
    9
    t
    u
    t
    .
    w
    e
    b
    s
    .
    c
    o
    m

  14. Sabry
    January 29th, 2014

    Q1 was in today’s exam.

  15. aguerogio
    February 28th, 2014

    Hi everybody, I am having exam in a days time can anyone send me the latest CCNA dumps on s-aguero@hotmail.com.com please. Thank you

  16. DavidM
    March 10th, 2014

    The question on TTL doesn’t have sufficient information to answer the question. Depending on the OS of the PC the initial TTL may not bee 255. Additionally the question doesn’t state where in the process the TTL is being questioned.

  17. rocky
    March 24th, 2014

    can someone xplain q1? why 192.168.10.254?

  18. q1
    March 25th, 2014

    answer to q1 because its a directly connected network which has a administrative distance of 0. Lower administrative distance is always chosen.

  19. q1
    March 25th, 2014

    answer to q1 because its directly connected to the same network. Directly connected interface has an administrative distance of 0. Lower administrative distance is always chosen.

  20. Mark
    March 27th, 2014

    Hi Guys , Can someone help me passing the exam.
    I would appreciate if one of you guys who have the latest dump to send it to my email
    “seafarmer11@gmail.com”

    Thanks Alot

  21. Iceberg
    April 3rd, 2014

    Please send latest dump to my email
    snoicer1877@gmail.com
    thank you

  22. Iceberg
    April 3rd, 2014

    :)

  23. Anonymous
    April 14th, 2014

    Can somebody help me to understand qes 8 ??.. why option B&C is not correct???

  24. Praying
    April 15th, 2014

    i can’t see any picture.. can fix it?

  25. kherbek
    April 24th, 2014

    can someone xplain q1? why 192.168.10.254?

  26. Ahmed
    April 26th, 2014

    Alhamdulliah,………I have passed exam today with 972/1000
    Total questions 51,
    Acl,Acl2 end eigrp with some modifications
    Work hard it will pay you back
    Thanks

  27. Tom
    May 1st, 2014

    kherbek,
    The deal with Q1 is just to ensure that you know the order of precedence in routing decisions. A directly connected route will always be favored over any other type of learned route on the router itself.
    For the person that asked about Q8:
    There is no need for a dynamic routing policy. The router has all directly connected routes to each of the switches directly connected to it. Therefore, it would know how to route traffic to each of those networks. All that router needs is one static route between each of the routers and they will be able to route the traffic properly. Make sense?

  28. chetan
    May 5th, 2014

    explain ques 7 plss…lots of confusion

  29. Mifres
    May 5th, 2014

    I will have eaxm on 24 May
    could you pleas send the latest dump to my eamil mifres.h@hotmail.com

  30. billy
    May 6th, 2014

    Who here will take CCNA 200-120 exam this end of may?

  31. sharmin farzana
    May 10th, 2014

    im going to take the exam 23rd may
    can anyone send me the lattest verified dumps
    reza_musc@gmail.com

  32. Alex
    May 10th, 2014

    I am taking it next week. I had a buddy take it two weeks ago and said a lot of these questions were on the test.

  33. Bharath
    May 13th, 2014

    If RouterA is having 2 interfaces. The first one fa0/0, with 10.x.x.x n/w. and other fa0/1 with 172.16.x.x n/w. What should be the loopback address of the router ? Should it have the classA address(fa0/0) or class B address(from fa0/1) ?

  34. Bharath
    May 13th, 2014

    Please let me know in this forum or in bkbn16@gmail.com

  35. Ram
    May 22nd, 2014

    Hi Guys,

    Pls provide more information about New CCNA Exam offer…

  36. Ram
    May 22nd, 2014

    Pls send updated dumps to ramkumarpgk@gmail.com

  37. rxd034000
    May 22nd, 2014

    Q7 was in test today

  38. Humphrey
    May 26th, 2014

    hello guys i need you help ,i have examz next week so i need CCNA Exams dealing with Routing protocol (EIRGP ,RIP, OSFP ,BGP ) etc and aslo CCNA dealing with ISP service .
    MY Email :humphreycharles0@live.com

  39. ahmed
    May 31st, 2014

    kindly send me last dump that grantees exam questions for ccna 200-120 ,, i will have my exam this in few days

  40. ahmed
    May 31st, 2014

    kindly send me last dump that grantees exam questions for ccna 200-120 ,, i will have my exam this in few days email : ahmedomr90@gmail.com

  41. kherbek
    June 8th, 2014

    thanks for ur explanations about q1 ,but my question why this IP with an address of 192.168.10.254/24 if 192.168.10.250/24 is it okay .

  42. Anonymous
    June 20th, 2014

    There was a RIP question in my exam – only relating to its administrative distance.

  43. John
    July 4th, 2014

    Hello,
    i have to write the ccna exam in two weeks. Please can you send me the latest ccna or all necessary documents ?

    See you
    John

  44. Confused !
    July 7th, 2014

    Q9

    the answer should fa0/1 instead of fa0/0 is it right ?

    C. HFD(config)# ip route 10.5.6.0 255.255.255.0 fa0/0

  45. Amen
    July 8th, 2014

    @Confused!

    Nope because you have to choose 2 and the one answer is D. HFD(config)# ip route 10.5.6.0 255.255.255.0 10.5.4.6 and that is the IP of fa0/1

  46. Confused !
    July 8th, 2014

    @Amen

    Thanx for help

  47. Amen
    July 8th, 2014

    @Confused!

    No problem.. can u send to me your latest dump?? johnbincent_ebido@yahoo.com

    thanks

  48. Anonymous
    July 11th, 2014

    Can anyone please send me the dumps for CCNA 200-120 Exam?? richinaction@hotmail.com

    Please do me a favour.
    GOD BLESS YOU……..!

    Thanks
    Richi…!

  49. Anonymous
    July 11th, 2014

    can anyone plz send me latest dumps of CCNA 200-120 in my email koiralamabsl@gmail.com ? I looking for exam date soon, so it would be more helpful to me. Thank you.

  50. Strange
    July 16th, 2014

    Question 1 was in the exam recently

Comment pages
1 2 3 1774
Add a Comment