Home > CCNA – OSPF Questions

CCNA – OSPF Questions

March 20th, 2011 Go to comments

Here you will find answers to OSPF Questions

Note: If you are not sure about OSPF, please read my OSPF tutorial

Question 1

Which of the following statements below best describe the process identifier that is used to run OSPF on a router? (Choose two)

A – It is an optional parameter required only if multiple OSPF processes are running on the router
B – It is locally significant
C – It is needed to identify a unique instance of an OSPF database
D – All routers in the same OSPF area must have the same process ID if they are to exchange routing information


Answer: B C

Question 2:

Why R1 can’t establish an OSPF neighbor relationship with R3 according to the following graphic? (Choose two)

OSPFneighbor

A – Configure EIGRP on these routers with a lower administrative distance
B – All routers should be configured for backbone Area 1
C – R1 and R3 have been configured in different areas
D – The hello and dead interval timers are not configured the same values on R1 and R3


Answer: C D

Explanation:

A is not correct because configure EIGRP on these routers (with a lower administrative distance) will force these routers to run EIGRP, not OSPF.

B is not correct because the backbone area of OSPF is always Area 0.

C and D are correct because these entries must match on neighboring routers:

- Hello and dead intervals
Area ID (Area 0 in this case)
– Authentication password
– Stub area flag

Question 3:

Which items are correct about the routing protocol OSPF? (Choose three)

A – Support VLSM
B – Increase routing overhead on the network
C – Confine network instability to one area of the network
D – Allow extensive control of routing updates


Answer: A C D

Explanation:

Routing overhead is the amount of information needed to describe the changes in a dynamic network topology. All routers in an OSPF area have identical copies of the topology database and the topology database of one area is hidden from the rest of the areas to reduce routing overhead because fewer routing updates are sent and smaller routing trees are computed and maintained (allow extensive control of routing updates and confine network instability to one area of the network).

Question 4:

Which three features are of OSPF routing protocol? (Choose three)

A – Converge quickly
B – OSPF is a classful routing protocol
C – Identify the best route by use of cost
D – Before exchanging routing information, OSPF routers find out neighbors


Answer: A C D

Question 5:

OSPF routing uses the concept of areas. What are the characteristics of OSPF areas? (Chose three)

A – Each OSPF area requires a loopback interface to be configured
B – Areas may be assigned any number from 0 to 65535
C – Area 0 is called the backbone area
D – Hierarchical OSPF networks do not require multiple areas
E – Multiple OSPF areas must connect to area 0
F – Single area OSPF networks must be configured in area 1


Answer: B C E

Explanation:

I used to think the answers should be C D E and here is my explanation:

OSPF can use an active interface for its router ID, so a loopback interface is not a must -> A is incorrect.

OSPF Area is a 32-bit number so we can use up to 232 – 1 = 4294967296 – 1 (since Area 0 is the first area). Remember that only process ID is a 16-bit number and ranges from 1 to 65535 -> B is incorrect.

F is incorrect too because single area OSPF netwoks must be configured in Area 0, which is called the backbone area.

For answer D, it is a bit hard to guess what they want to say about “hierarchical” but we should understand “Hierarchical OSPF networks” as “OSPF networks”. D is correct bercause we can only have one area (area 0 – the backbone area) for our networks.

But TT commented on 01-11-2010:

Especially to note on choice B, D, and E:

Choice B: we all know that The areas can be any number from 0 to 4.2 billion and 1 to 65,535 for the Process ID. As choice B specifies ‘area’ (be aware, it’s not saying ‘process id), there is no reason to say that we cannot assign numbers from 0 to 65535 for area # (it is using ‘may be’, not ‘have to be’ or ‘ought to be’). Hence, we do not worry about assigning ’0′.

Choice E: as Area 0 is the backbone, we all understand that any areas in a OSPF network have to be connected to it. And actually this is implicitly saying that multiple areas form a hierarchical OSPF network, as Area 0 being a root and others being its leaves.

Choice D: when it specifies ‘Hierarchical’, at least 2 areas should be required to form such topology (of course that includes Area 0)

Although Choice B is not an absolutely accurate statement since it not only can be assigned up to 65535, it is still a correct answer. And again, it specifies ‘area’, not ‘process id’, so ’0′ can be included. Finally, it would be meaningless to call OSPF a hierarchical network if no more than one area is present.

—————————————————————————————————-

I reviewed the question and think it is a more suitable solution with choice B than choice D, surely it is a tricky question!

Question 6:

Part of the OSPF network is shown below:

OSPF_Routing

Configuration exhibit:

R1 routing commands:

ip route 0.0.0.0 0.0.0.0 serial0/0
router ospf 1
network 172.16.100.0 0.0.0.3 area 0
network 172.16.100.64 0.0.0.63 area 0
network 172.16.100.128 0.0.0.31 area 0
default-information originate

You work as a network technician, study the exhibits carefully. Assume that all router interfaces are operational and correctly configured. In addition, assume that OSPF has been correctly configured on router R2. How will the default route configured on R1 affect the operation of R2?

A – Any packet destined for a network that is not directly connected to router R2 will be dropped immediately
B – Any packet destined for a network that is not directly connected to router R1 will be dropped
C – Any packet destined for a network that is not directly connected to router R2 will be dropped immediately because of the lack of a gateway on R1
D – The network directly connected to a router R2 will not be able to communicate with the 172.16.100.0, 172.16.100.28 and 172.16.100.64 subnetworks.
E – Any packet destined for a network that is not referenced in the routing table of router R2 will be directed to R1. R1 will then send that packet back to R2 and a routing loop will occur


Answer: E

Explanation:

First, notice that the more-specific routes will always be favored over less-specific routes regardless of the administrative distance set for a protocol. In this case, because we use OSPF for three networks (172.16.100.0 0.0.0.3, 172.16.100.64 0.0.0.63, 172.16.100.128 0.0.0.31) so the packets destined for these networks will not be affected by the default route.

The default route configured on R1 “ip route 0.0.0.0 0.0.0.0 serial0/0″ will send any packet whose destination network is not referenced in the routing table of router R1 to R2, it doesn’t drop anything so answers A, B and C are not correct. D is not correct too because these routes are declared in R1 and the question says that “OSPF has been correctly configured on router R2″, so network directly connected to router R2 can communicate with those three subnetworks.

As said above, the default route configured on R1 will send any packet destined for a network that is not referenced in its routing table to R2; R2 in turn sends it to R1 because it is the only way and a routing loop will occur.

Comments
Comment pages
1 8 9 10 15
  1. Hassan
    September 4th, 2013

    Hi , My name is hassan , if any one want these documents and videos , can contact me on this email :hassan_Salamah@hotmail.com , i will send the videos to your email by” wetransfer.com ” it’s perfect place , all these files for 50 $ ,this cost will be to pay my internet Gigs consumption ,the videos ( more than 2 Gig ) and other pdf files have a huge size and this is cost me

    1- CCNA REAL life course from CBT Nuggets ( only the Examples which is include 6-phase in each phase there is : a- Lab.pdf , b- GNS3 (.net files )
    2- CBT Nuggets videos (Route , Switch , T.Shoot )
    3- CCNP Atual Tests
    4- CCNP Quick Reference
    5- CCNP Portable command Guide
    6- IOS Images (c2600 , c3640 , c7200 )
    7- CCNP (642-902 ) (9 Examples from CBT Nuggets) with [ .net files ]

    Good Luck

  2. Ochuko
    September 5th, 2013

    Well, question 6 is kind of confusing and tricky because s0/1 is what is meant to have being used on R1 for the default route creation since it is the exit interface. s0/0 used however is the interface that leads back to R2, hence answer E. good one

  3. Taz to Ochuko
    September 5th, 2013

    No you are wrong. The exit interface is s0/0 therefore the default route configuration is correct. Any packet is destined to R1 and if the network is not in the routing table will be forward to s0/0 exit interface and will reach to R2. There is no indication about any default route being configured for R2 router so if the packets destination address is not in the r2′s route table, that packet will be dropped. I don’t know how everyone talks about routing loops here. How is a packet destined for unknown network coming to R2 is going back to R1 without their network address being in R2′s routing table.

  4. Iz to Taz
    September 8th, 2013

    The loop occurs because the default information originate command is propagating the default route to R2, but because the exit interface was incorrectly configured with s0/0/0 rather than with s0/0/1 going to the ISP, the default route is just pointing back to R2 which then forwards the packet back to R1 and causing the loop.

  5. Taz to Iz Hi :)
    September 8th, 2013

    OK assume we have configured the exit interface wrong and there is a packet came to R2 and destined for 192.168.1.1 can you please tell me how exactly R2 will forward that packet to R1 back. Default route is configured to R1 so thats cool you can say any packets is not in the routing table will be forwarded to R2 but how on earth R2 will forward that packet to R1 back without any other extra configuration.

    this is what happens. packet 192.168.1.1 enters to R2 interface and R2 will check its routing table and can’t find any match then R2 will check if a default route is being configured (gateway of last resort) and won’t be able to find any match either and that is it. BYE BYE that packet will be dropped straight away.

  6. Taz
    September 8th, 2013

    “how on earth R2 will forward that packet to R1 back without any other extra configuration.”

    default-information originate is part of the R1 configuration so it will forward the default route on to R2 where it will become part of its routing table.

  7. Barbara
    September 10th, 2013

    So… There is one confuse. Than R2 receive this default route from R1, It can see that this route point to R2. Why R2 add this route in its routing table as default route with next hop – R1. Just because this route was propagated by R1?

  8. jasostrong
    September 11th, 2013

    Thanks 9tut. I made it. I passed my CCNA 200-120 today. The sim is Access-list 1 , Access-list 2 & EIGRP. A lot of new questions like Netflow, Syslog, SNMP, VRRP, and GLBP.

  9. Fawad
    September 12th, 2013

    Alhamdulilah.
    Today i make it, passed CCNA 640-802 with 907/1000.
    Goold Luck to All.

  10. ariskazuma
    September 13th, 2013

    Hi All, my exam in two week remaining. Please send the last dumps to me at aris.kazuma@yahoo.com. Thank before

  11. Chris J
    September 14th, 2013

    q4 in my exam today. Thanks 9tut! Passed my CCNA exam 960!!!!

  12. leroy
    September 14th, 2013

    hey i have my exam on the 17th can someone please send me the latest dumps at poetictragedy02@hotmail.com

  13. Rafael
    September 17th, 2013

    Hi

    I Guys i have exam next week 23th Please send my the last dumps migzola@hotmail.com

    Thank you.

  14. Rizwan
    September 17th, 2013

    i have an exam on the 29 of September. Can somebody plz send me the latest dumps for CCNA 640-802
    on email address is rizwan.ali763@gmail.com
    Thanks

  15. malik
    September 18th, 2013

    i have an exam too on the 29 of September. Can somebody plz send me the latest dumps for CCNA 640-802,, PLEASE
    shahram327@gmail.com

  16. may
    September 22nd, 2013

    hola presentare mi examen el 27 de sep por fa ayudenme con los ultimos examenes de cisco CCNA-640-802 GRACIASSS de ante mano mi correo es ma12carrascal@hotmail.com please

  17. Mike
    September 22nd, 2013

    Alhamdulilah & Chris J you guys passed CCNA with good score please provide tips and dumps. Thanks in advance. mpk300@gmai.com

  18. trinstock
    September 22nd, 2013

    i have an exam on the 24 of September. Can somebody plz send me the latest dumps for CCNA 640-802
    on email address is trinstock@gmail.com
    Thanks

  19. Nestor
    September 25th, 2013

    Please can I need latest dumps I will be writing on 28 of September. My email Address is otenyinelsonekene@gmail.com

  20. JM
    September 26th, 2013

    @9tut
    can you help with question below

    Which command is used to display OSPF link states

    a. show ip OSPF neighbors

    b. show ip OSPF database

    Router2#show ip ospf neighbor

    Neighbor ID Pri State Dead Time Address Interface
    192.168.1.10 1 FULL/BDR 00:00:32 192.168.1.10 FastEthernet0/0
    192.168.1.1 1 FULL/DROTHER 00:00:32 192.168.1.1 FastEthernet0/0
    172.30.7.1 0 FULL/ – 00:00:32 192.168.2.2 Serial2/0
    Router2#
    outer2#show ip ospf database
    OSPF Router with ID (192.168.20.1) (Process ID 1)

    Router Link States (Area 0)

    Link ID ADV Router Age Seq# Checksum Link count

    192.168.1.10 192.168.1.10 440 0x8000000f 0x00d0ac 1

    192.168.1.1 192.168.1.1 440 0x8000000e 0x008d01 1

    192.168.20.1 192.168.20.1 431 0×80000011 0x006ea4 5
    172.30.7.1 172.30.7.1 431 0x8000000b 0x001c25 3

    Net Link States (Area 0)
    Link ID ADV Router Age Seq# Checksum
    192.168.1.2 192.168.20.1 440 0×80000008 0x009d04

    Summary Net Link States (Area 0)
    Link ID ADV Router Age Seq# Checksum
    172.30.0.1 172.30.7.1 510 0×80000011 0x0010a7
    172.30.1.1 172.30.7.1 510 0×80000012 0x0003b2
    172.30.2.1 172.30.7.1 510 0×80000013 0x00f5bd
    172.30.3.1 172.30.7.1 510 0×80000014 0x00e8c8
    172.30.4.1 172.30.7.1 510 0×80000015 0x00dbd3
    172.30.5.1 172.30.7.1 510 0×80000016 0x00cede
    172.30.6.1 172.30.7.1 510 0×80000017 0x00c1e9
    172.30.7.1 172.30.7.1 510 0×80000018 0x00b4f4

    Type-5 AS External Link States
    Link ID ADV Router Age Seq# Checksum Tag

    0.0.0.0 192.168.1.1 507 0×80000003 0x

  21. Prince Setu
    September 29th, 2013

    This is a awesome and very nice question and answer, which i can not ever seen……………..

  22. JM
    September 30th, 2013

    @prince I got the above question on my exam yesterday . I answered OSPF database. My score was a 960

  23. Aurang Zaib
    October 5th, 2013

    Q2 in 28th September exam…

  24. Vijay
    October 11th, 2013

    I am taking CCNA exam next month, Plz any one help me with Vedio Dumps to better understand. My email ID vijay.ds855@gmail.com

  25. KHIN
    January 17th, 2014

    hello everyone, my name is KHIN. I will sit the New CCNA exam next 3 months. That’s why I need everybody help me to give so many questions that concerned with the new CCNA. Please contact me via kiki80345@gmail.com. And then I need to get free simulation software where can I find to get that software. Please help me.

  26. rupert
    April 26th, 2014

    can someone send me the latest dumps (video or other) to rbapitter@live.com

  27. rupert
    April 26th, 2014

    can someone send me the latest ccna dumps (video or other) to rbapitter@live.com. i sit the new ccna in june

Comment pages
1 8 9 10 15
  1. No trackbacks yet.
Add a Comment