Home > CCNA – OSPF Questions 2

CCNA – OSPF Questions 2

March 15th, 2011 Go to comments

Here you will find answers to OSPF Questions – Part 2

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

Question 1

Refer to the exhibit. Which two statements are true about the loopback address that is configured on RouterB? (Choose two)

OSPF_loopback.jpg

A. It ensures that data will be forwarded by RouterB.
B. It provides stability for the OSPF process on RouterB.
C. It specifies that the router ID for RouterB should be 10.0.0.1.
D. It decreases the metric for routes that are advertised from RouterB.
E. It indicates that RouterB should be elected the DR for the LAN.

 

Answer: B C

Explanation

A loopback interface never comes down even if the link is broken so it provides stability for the OSPF process (for example we use that loopback interface as the router-id) -> B is correct.

The router-ID is chosen in the order below:

+ The highest IP address assigned to a loopback (logical) interface.
+ If a loopback interface is not defined, the highest IP address of all active router’s physical interfaces will be chosen.

-> The loopback interface will be chosen as the router ID of RouterB -> C is correct.

Question 2

Which characteristics are representative of a link-state routing protocol? (Choose three)

A. provides common view of entire topology
B. exchanges routing tables with neighbors
C. calculates shortest path
D. utilizes event-triggered updates
E. utilizes frequent periodic updates

 

Answer: A C D

Explanation

Each of routers running link-state routing protocol learns paths to all the destinations in its “area” so we can say A is correct although it is a bit unclear.

Link-state routing protocols generate routing updates only (not the whole routing table) when a change occurs in the network topology so B is not correct.

Link-state routing protocol like OSPF uses Dijkstra algorithm to calculate the shortest path -> C is correct.

Unlike Distance vector routing protocol (which utilizes frequent periodic updates), link-state routing protocol utilizes event-triggered updates (only sends update when a change occurs) -> D is correct but E is not correct.

Question 3

OSPF_DR_elect.jpg

The internetwork infrastructure of company XYZ consists of a single OSPF area as shown in the graphic. There is concern that a lack of router resources is impeding internetwork performance.

As part of examining the router resources the OSPF DRs need to be known.

All the router OSPF priorities are at the default and the router IDs are shown with each router.

Which routers are likely to have been elected as DR? (Choose two)

A. Corp-1
B. Corp-2
C. Corp-3
D. Corp4
E. Branch-1
F. Branch-2

 

Answer: D F

Explanation

There are 2 segments on the topology above which are separated by Corp-3 router. Each segment will have a DR so we have 2 DRs.

To select which router will become DR they will compare their router-IDs. The router with highest (best) router-ID will become DR. The router-ID is chosen in the order below:

+ The highest IP address assigned to a loopback (logical) interface.

+ If a loopback interface is not defined, the highest IP address of all active router’s physical interfaces will be chosen.

In this question, the IP addresses of loopback interfaces are not mentioned so we will consider IP addresses of all active router’s physical interfaces. Router Corp-4 (10.1.40.40) & Branch-2 (10.2.20.20) have highest “active” IP addresses so they will become DRs.

Question 4

OSPF_show_ip_interface_brief.jpg

A network associate has configured OSPF with the command:
City(config-router)# network 192.168.12.64 0.0.0.63 area 0

After completing the configuration, the associate discovers that not all the interfaces are participating in OSPF.
Which three of the interfaces shown in the exhibit will participate in OSPF according to this configuration statement? (Choose three)

A. FastEthernet0/0
B. FastEthernet0/1
C. Serial0/0
D. Serial0/1.102
E. Serial0/1.103
F. Serial0/1.104

Answer: B C D

Explanation

The “network 192.168.12.64 0.0.0.63″ equals to network 192.168.12.64/26. This network has:
+ Increment: 64 (/26= 1111 1111.1111 1111.1111 1111.1100 0000)
+ Network address: 192.168.12.64
+ Broadcast address: 192.168.12.127
Therefore all interface in the range of this network will join OSPF -> B C D are correct.

Question 5

When running OSPF, what would cause router A not to form an adjacency with router B?

OSPF_adjacency.jpg

A. The loopback addresses are on different subnets.
B. The values of the dead timers on the routers are different.
C. Route summarization is enabled on both routers.
D. The process identifier on router A is different than the process identifier on router

Answer: B

Explanation

To form an adjacency (become neighbor), router A & B must have the same Hello interval, Dead interval and AREA number.

Question 6

Refer to the exhibit. The network is converged. After link-state advertisements are received from Router_A, what information will Router_E contain in its routing table for the subnets 208.149.23.64 and 208.149.23.96?

OSPF_routing_table.jpg

A. 208.149.23.64[110/13] via 190.173.23.10, 00:00:00:07, FastEthernet0/0
208.149.23.96[110/13] via 190.173.23.10, 00:00:00:16, FastEthernet0/0

B. 208.149.23.64[110/1] via 190.173.23.10, 00:00:00:07, Serial1/0
208.149.23.96[110/3] via 190.173.23.10, 00:00:00:16, FastEthernet0/0

C. 208.149.23.64[110/13] via 190.173.23.10, 00:00:00:07, Serial1/0
208.149.23.96[110/13] via 190.173.23.10, 00:00:00:16, Serial1/0
208.149.23.96[110/13] via 190.173.23.10, 00:00:00:16, FastEthernet0/0

D. 208.149.23.64[110/13] via 190.173.23.10, 00:00:00:07, Serial1/0
208.149.23.96[110/13] via 190.173.23.10, 00:00:00:16, Serial1/0

 

Answer: A

Explanation

Router_E learns two subnets subnets 208.149.23.64 and 208.149.23.96 via Router_A through FastEthernet interface. The interface cost is calculated with the formula 108 / Bandwidth. For FastEthernet it is 108 / 100 Mbps = 108 / 100,000,000 = 1. Therefore the cost is 12 (learned from Router_A) + 1 = 13 for both subnets -> B is not correct.

The cost through T1 link is much higher than through T3 link (T1 cost = 108 / 1.544 Mbps = 64; T3 cost = 108 / 45 Mbps = 2) so surely OSPF will choose the path through T3 link -> Router_E will choose the path from Router_A through FastEthernet0/0, not Serial1/0 -> C & D are not correct.

In fact, we can quickly eliminate answers B, C and D because they contain at least one subnet learned from Serial1/0 -> they are surely incorrect.

Question 7

Refer to the exhibit. Given the output for this command, if the router ID has not been manually set, what router ID will OSPF use for this RouterD?

RouterD# show ip interface brief

show_ip_interface_brief.jpg

 

A. 10.1.1.2
B. 10.154.154.1
C. 172.16.5.1
D. 192.168.5.316

 

Answer: C

Explanation

The highest IP address of all loopback interfaces will be chosen -> Loopback 0 will be chosen as the router ID.

Question 8

Which commands are required to properly configure a router to run OSPF and to add network 192.168.16.0/24 to OSPF area 0? (choose two)

A. Router(config)#router ospf 1
B. Router(config)#router ospf 0
C. Router(config)#router ospf area 0
D. Router(config-router)#network 192.168.16.0 0.0.0.255 area 0
E. Router(config-router)#network 192.168.16.0 0.0.0.255 0
F. Router(config-router)#network 192.168.16.0 255.255.255.0 area 0

 

Answer: A D

Explanation

In the router ospf

command, theranges from 1 to 65535 so o is an invalid number -> A is correct but B is not correct.

To configure OSPF, we need a wildcard in the “network” statement, not a subnet mask. We also need to assgin an area to this process -> D is correct.

Question 9

Which parameter or parameters are used to calculate OSPF cost in Cisco routers?

A. Bandwidth, Delay and MTU
B. Bandwidth
C. Bandwidth and MTU
D. Bandwidth, MTU, Reliability, Delay and Load

 

Answer: B

The well-known formula to calculate OSPF cost is

Cost = 108 / Bandwidth

so B is the correct answer.

Question 10

Refer to the exhibit. Why are two OSPF designated routers identified on Core-Router?

Neighbor_ID Pri State Dead Time Address Interface
208.149.23.194 1 Full/DR 00:00:33 190.172.32.10 Ethernet1
208.149.23.60 1 Full/BDR 00:00:33 190.172.32.10 Ethernet0
208.149.23.130 1 Full/DR 00:00:39 190.172.32.10 Ethernet0

A. Core-Router is connected more than one multi-access network
B. The router at 208.149.23.130 is a secondary DR in case the primary fails.
C. Two router IDs have the same OSPF priority and are therefore tied for DR election
D. The DR election is still underway and there are two contenders for the role.

 

Answer: A

Explanation

OSPF elects one DR per multi-access network. In the exhibit there are two DR so there must have more than one multi-access network.

Question 11

What is the default maximum number of equal-cost paths that can be placed into the routing of a Cisco OSPF router?

A. 16
B. 2
C. unlimited
D. 4

 

Answer: D

Explanation

The default number of equal-cost paths that can be placed into the routing of a Cisco OSPF router is 4. We can change this default value by using “maximum-paths” command:

Router(config-router)#maximum-paths 2

Note: Cisco routers support up to 16 equal-cost paths. In detail, the default number of maximum paths is 32 for Cisco CRS-1 routers and 16 for Cisco XR 12000 Series Routers. The range is from 1 to 32 for Cisco CRS-1 routers and 1 to 16 for Cisco XR 12000 Series Routers.

(Reference: http://www.cisco.com/en/US/docs/ios_xr_sw/iosxr_r3.7/routing/configuration/guide/rc37ospf.html)

 

Question 12

What is the OSPF default frequency, in seconds, at which a Cisco router sends hello packets on a multiaccess network?

A. 10
B. 40
C. 30
D. 20

 

Answer: A

Explanation

On broadcast multiacess and point-to-point links, the default is 10 seconds. On NBMA, the default is 30 seconds.

Question 13

What is the default administrative distance of OSPF?
A. 120
B. 100
C. 90
D. 110

 

Answer: D

Question 14

What information does a router running a link-state protocol use to build and maintain its topological database? (Choose two)

A. hello packets
B. SAP messages sent by other routers
C. LSAs from other routers
D. beacons received on point-to-point links
E. routing tables received from other link-state routers
F. TTL packets from designated routers

 

Answer: A C

Comments (244) Comments
Comment pages
1 3 4 5 835
  1. Jah Rastafarai
    February 27th, 2013

    Passed CCNA, question 8 from here.

  2. shshoor
    March 1st, 2013

    que 8 from here

  3. shshoor
    March 1st, 2013

    ques no 8 was in the exam today

  4. Me too
    March 21st, 2013

    Question 5,10 on CCNA 2nd try today

  5. Nazifa
    March 21st, 2013

    We have a router too and quite often even if it is coetncned, we don’t have internet service. It’s in and out and sometimes so slow can’t do a thing. Quite frustrating at times. Never know what causes it to work or not. Just gotta go with the flow. Have a great day! Tammy

  6. SaberaSultana
    March 23rd, 2013

    Q10
    If core router is connected to more than one multiaccess network ip under address field should belong to at least 2 different subnet because same ip can not be assigned on two interfaces of a router but the router must use 2 different interfaces to be connected to two different multi access network.

    Anyone please clear my confusion.i am very near to my ccna exam.

  7. Arshad
    March 26th, 2013

    Question 4 was my today exam.

  8. call girls Paris
    March 27th, 2013

    J?ai une chanson mp3] et je veux qu?il joue automatiquement lorsque vous entrez dans mon blog wordpress. Sur toutes les pages, si possible, mais de pr?f?rence seulement sur la page d?accueil si simple. Je suis nouveau sur wordpress donc il peut ?tre difficile, mais si quelqu?un peut me confirmer que c?est possible et peut-?tre me dire comment il serait grandement appr?ci? .. . Aussi j?ai install? Firebug si ?a peut aider ..

  9. KLYnick
    April 2nd, 2013

    Hello. I have a few questions:
    1- priority is related to the interface. If one router has two interfaces with different priorities in one OSPF area, how are the DR/BDR elected ?
    Let’s say we have R1 with 2 interface (prio 10& 20), R2 with 1 interface (prio 15) and R3 with 1 interface (16). We suppose that all 3 get rebooted at the same time. The DR will become R1 because he has an interface with OSPF priority 20 ?
    What happens if we have the above case but only interface 1 from R1 is in OSPF and has priority of 10 ? Who is elected DR ?
    More: let’s assume that all R1,R2 and R3 have equal priorities and no loopback interfaces defined. The RID is the highest IP address of any interface (active) from the router participating in the OSPF or just any interface at all ?

    thank you in advance for your answers.

  10. Kam
    April 17th, 2013

    KLYnick – the key is that DR/BDR is elected ONLY in muliaccess network. So if you’ve got some (let’s say four) routers connected to the switch’s ports only priority from interfaces connected to this switch would be compared. If one of this four routers would be also connected via it’s serial interface with another router – there would not be election of DR and BDR (because this part of network is not multiacces, its point-to-point).

    2nd question – any interface at all.

  11. Wally
    May 1st, 2013

    In question 2?

    A. provides common view of entire topology.

    Why A? Isn’t each router has its own view of the topology? Commong means they all have the same view

  12. Zahid Ismail
    May 5th, 2013

    q5 and q10 in today exam

  13. subbalakshmi
    May 14th, 2013

    Question 5?

    with out configuring hello-intervals and dead-intervals how can u say dead-intervals are different ? both are having default intervals right

  14. suresh
    May 22nd, 2013

    Not understood explanation of question 6.

    Question 6

    Refer to the exhibit. The network is converged. After link-state advertisements are received from Router_A, what information will Router_E contain in its routing table for the subnets 208.149.23.64 and 208.149.23.96?

    OSPF_routing_table.jpg

    A. 208.149.23.64[110/13] via 190.173.23.10, 00:00:00:07, FastEthernet0/0
    208.149.23.96[110/13] via 190.173.23.10, 00:00:00:16, FastEthernet0/0

    B. 208.149.23.64[110/1] via 190.173.23.10, 00:00:00:07, Serial1/0
    208.149.23.96[110/3] via 190.173.23.10, 00:00:00:16, FastEthernet0/0

    C. 208.149.23.64[110/13] via 190.173.23.10, 00:00:00:07, Serial1/0
    208.149.23.96[110/13] via 190.173.23.10, 00:00:00:16, Serial1/0
    208.149.23.96[110/13] via 190.173.23.10, 00:00:00:16, FastEthernet0/0

    D. 208.149.23.64[110/13] via 190.173.23.10, 00:00:00:07, Serial1/0
    208.149.23.96[110/13] via 190.173.23.10, 00:00:00:16, Serial1/0

    Answer: A

    Explanation

    Router_E learns two subnets subnets 208.149.23.64 and 208.149.23.96 via Router_A through FastEthernet interface. The interface cost is calculated with the formula 108 / Bandwidth. For FastEthernet it is 108 / 100 Mbps = 108 / 100,000,000 = 1. Therefore the cost is 12 (learned from Router_A) + 1 = 13 for both subnets -> B is not correct.

    The cost through T1 link is much higher than through T3 link (T1 cost = 108 / 1.544 Mbps = 64; T3 cost = 108 / 45 Mbps = 2) so surely OSPF will choose the path through T3 link -> Router_E will choose the path from Router_A through FastEthernet0/0, not Serial1/0 -> C & D are not correct.

    In fact, we can quickly eliminate answers B, C and D because they contain at least one subnet learned from Serial1/0 -> they are surely incorrect.

  15. mohamed
    May 23rd, 2013

    Please please please guys i am preparing for the exam next month, can someone be kind enough to send me the latest dumps on my e-mail : mastermalganis@hotmail.com

  16. Guest
    May 25th, 2013

    Hi,

    I see the cost is mentioned wrongly for T3 and T1 links. As bandwidth is high for T3, then cost will be less. So OSPF will select the path either by low cost or high bandwidth paths. Please correct it.

    By the way, Thanks again for all this useful info. Really appreciate it.

  17. David Okeri
    May 28th, 2013

    Pliz i will sit for the exam next month, can someone send me the latest dumps on email: olesimbe@yahoo.com

  18. PSY
    May 29th, 2013

    Hi Everyone~!
    I’m passed CCNA 2Days ago.
    My Score is 995!
    Routing Exam From Here.
    10 exam Is Here.
    I Love 9TUT !

  19. BeeDee
    June 26th, 2013

    Question 3, I read somewhere the reason for two DRs is because election doesn’t take place on point-to-point links, so the top segment will have there own election, while the second segment will have theirs also.

  20. emmy
    July 16th, 2013

    my exam is in few days, can someone send me the latest dump please???emmyokay@hotmail.com

    Thanks

  21. Anonymous
    August 4th, 2013

    Guest .. OSPF WILL SELECT THE PATH WITH THE HIGHEST BANDWITH .. T1 IS 1.5 SOMETHING speed WHILE T3 IS SUPERIOR

  22. chanaka
    August 11th, 2013

    Hi 9tut,

    How many questions in OSPF in often?

  23. ahmad
    August 19th, 2013

    dear’s,

    can anyone send me a recent pass4sure dumps on my email: ahmad.alrefai87@gmail.com

  24. lily
    August 25th, 2013

    great OSPF review, question 1,5,6 on the exam.

  25. Adeel
    August 26th, 2013

    Hello Guys I hope you will be fine there. I have CCNA (640-802) 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

  26. raju
    August 29th, 2013

    Q no 5. what do we know that dead interval timers are different in two routers?

  27. Andrey
    August 30th, 2013

    @RAJU: It is not stated there but that is the only option left that could be preventing the OSPF router to become neighbors as the other options are all OK and fine.

  28. New CCNA Candidate
    September 1st, 2013

    If I correct two of a 3 question which has multiple questions and get wrong one of it do i have marks in the real ccna exam

  29. rose
    September 6th, 2013

    @CCNA candidate
    No, u will not get the marks for that..

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

  31. Mohammed Gasim
    September 17th, 2013

    Q3 in my Exam

  32. Ayaz
    September 17th, 2013

    Hi every one,

    With respect;I am about give CCNA exam until 25 September 2013 and i have just borrowed 100$ from my friend to complete exam payment I want know if some has an updated CCNA real dumps if possible send it to my email (ayaz_af@hotmail.com) and also who passed the exam i need their kind guidance and tips regarding exam please email me because i am amazed how will be the exam if fail then i will lose a chance I will really appreciate.

    Thanks every one for their kind comments and also 9tut.

    ayaz_af@hotmail.com

    Regards,

  33. Ayaz
    September 17th, 2013

    Hi every one,

    With respect;I am about give CCNA exam up to 25 September 2013 and i have just borrowed 100$ from my friend to complete exam payment I want know if some has an updated CCNA real dumps if possible send it to my email (ayaz_af@hotmail.com) and also who passed the exam i need their kind guidance and tips regarding exam please email me because i am amazed how will be the exam if fail then i will lose a chance I will really appreciate.

    Thanks every one for their kind comments and also 9tut.

    ayaz_af@hotmail.com

    Regards,

  34. Daisy
    September 17th, 2013

    Hi, Did anyone contact Adeel for the voucher and did it work?

  35. Kevin Daniels from Seattle
    September 18th, 2013

    Can anyone please give me the latest dumps for 640-802, it would be greatly appreciated.

    amirakclubs@gmail.com

    thanks

  36. CiscoER
    September 18th, 2013

    @ CCNA Candidate – See 9tut FAQs and Tips link – Ques #22. If a multiple choice has 5 choices and 3 are the correct answer but you answered only 2 correctly, you will get points for the 2 answered correctly.

  37. Anonymous
    September 18th, 2013

    Taking CCNA 640-802 test next Wednesday, can someone send dump at tgrass80@gmail.com

  38. DJ
    September 18th, 2013

    Where is the OSPF Lab Sim located on this site?

  39. 9tut
    September 19th, 2013

    @DJ: That sim is only shown in the ICND exam, not CCNA exam so it is posted at 9tut.net (not 9tut.com) and here is the link: http://www.9tut.net/icnd2/icnd2-labsim/ospf-sim

  40. Waymond
    September 29th, 2013

    I don’t understand the calculations on Q6. Could someone explain pls. Thanks!

  41. bode
    October 10th, 2013

    Can some one send to be reading materials for ccna 200-120

    msemo2@gmail.com

  42. karthik
    October 24th, 2013

    confusing with the Cost = 108 / Bandwidth calculation

  43. moldau79
    January 13th, 2014

    7, 9 & i think 11 were on the exam that i took a few days ago..

  44. Junaid khan
    January 29th, 2014

    I am doing prepration for the ccna 200-120…can ene one send me the latest dumps please ??
    for 200-120 … would be very thankful..
    My email is junaid_500@yahoo.com

Comment pages
1 3 4 5 835
Add a Comment