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. 9tut
    August 24th, 2012

    @kovi: Yes, thanks for your detection. I updated it!

  2. jacsatx
    August 29th, 2012

    DID IT!!…907…thx 9tut!!!!..CCNA certified….tons of questions from this site…read from top to bottom every question, because you will not know what pops up…holy smokes..q6 on exam…good luck to all..listen to 9tut!!

  3. Shankar
    August 31st, 2012

    Hi friend…
    visual certExam manager is unregisterd..
    i m unable to work with dumds…
    pls can any one send registration id to my mail id
    pls…. help me out to pass ccna
    email id: rshankar36@gmail.com

  4. xallax
    August 31st, 2012
  5. NeverTore
    September 10th, 2012

    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

    im confused cisco press says that 16 different equal cost can be put in routing table. so in the note u said 6 which one is correct? tnx

  6. ion
    September 18th, 2012

    Q5 how did you know that the values of the dead timers on the routers are different with just the picture?

  7. ExeCPL
    September 22nd, 2012

    @ion
    dead timers difference is the only possible reason from those 4 given

  8. Jonus
    September 26th, 2012

    can someone provide any documented reference to the statement:
    “Cisco routers support up to 6 equal-cost paths”

  9. kushal arora
    September 26th, 2012

    @jonus
    ite s typo.
    CISCO supports maximum 16 paths bt by default its only 4.
    we can chnge it via some command upto 16

  10. William Alvarez
    September 26th, 2012

    Q1 = C E

  11. Bob
    September 30th, 2012

    @William Alvarez Q1 E is incorrect because RouterD has the highest loopback and will become the DR not RouterB. B and C is correct

  12. Titus
    October 3rd, 2012

    @9tut: Can you explain why E isn’t right on Q2 because aren’t “Hellos” and LSA periodically sent at certain intervals?

  13. Titus
    October 4th, 2012

    I get the part about why the “Hello” wouldn’t be included but what about the LSAs?

  14. imran
    October 6th, 2012

    I get the part about why the “Hello” wouldn’t be included but what about the LSAs?

  15. Muja
    October 6th, 2012

    @imran n Titus: LSA are not sent periodically rather than LSA are used by OSPF to advertise “changes in the condition of links” to other OSPF routers.

  16. William Alvarez
    October 23rd, 2012

    I was wrong. Sorry

  17. Mark
    November 5th, 2012

    Q3 – how is corp-4 ID (10.1.40.40) higher than Branch- ID (10.2.10.10)?

  18. Pijush
    November 5th, 2012

    @9tut , “Question 3″ – explanation section – r u sure, that each segment should have a DR. As far i learned(Todd lamle), that each area should have a DR and BDR not every Segment. please reply, if I’m wrong!

  19. 9tut
    November 5th, 2012

    @Pijush: “Segment” here means “a broadcast domain” and DR\BDR are elected on each Segment, not area. Here is a paragraph from Cisco website:

    “OSPF elects one router to be a designated router (DR), and one router to be a backup designated router (BDR), on each multi-access segment”

    You can read the full article here:
    http://www.cisco.com/en/US/tech/tk365/technologies_white_paper09186a0080094e9e.shtml

  20. Oleg Mavashev
    November 16th, 2012

    Could anybody explain why it is necessary to elect DR in bottom segment of #3 question? Since there are only two routers why it is necessary?

  21. RC189
    November 21st, 2012

    @Mark – notice those are serial connections on each side of Corp-3, so there are 2 segments, and each one gets it’s own DR. So on the 10.1.x.x segment side, Corp-4 (.40.40) is the highest, and thus the DR on that segment. On the 10.2.x.x segment side, Branch-2 (.20.20) is the highest, and thus the DR on that segment.

  22. anonymous
    November 24th, 2012

    @ Oleg it’s on a different Segment

  23. anonymous
    November 24th, 2012

    @ Oleg in otherwords a different network. Just look for the serial links.

  24. haR
    November 24th, 2012

    hi, latest dumps
    hani_2012_rad@yahoo.com

  25. Vinay
    November 28th, 2012

    Hi, Can anyone send me the latest dumps….I have my exams registered next week..mail id vinay8887@gmail.com

  26. Jainal
    December 5th, 2012

    Q269 on shekhar’s dump..can any one explain me?

  27. pat
    December 11th, 2012

    I didn’t find a question a need the answer for it here

    can you have look at the screenshot
    http://i47.tinypic.com/2znzw5x.png

    I think it should be B please can anyone explain that for me, I have exam on friday
    thanks

  28. pat
    December 13th, 2012

    guys please can anyone explain this for me

    have a look at the snapshot
    http://i47.tinypic.com/2znzw5x.png

  29. pat
    December 13th, 2012

    I understand that the 221.139.140.10 route is not advertised by the ospf on this particular router but the router still has 221.139.140.10 as its ID, I know the answer D makes most sense out of all of them but I still don’t get it

  30. TDy11
    December 13th, 2012

    TY 9tut.

    Today I have passed the CCNA. (860/825)
    50 questions 3 labs (VTP, EIGRP, ACL). 35 from 9tut.

    Also thanks a lot Brar and Sekhar (still valid from examcollection)

    Ty again 9tut

    from here Q 4, 11

  31. Faizy
    December 16th, 2012

    can you send the latest dumps on faizan_jehangir88@hotmail.co.uk? Thanks

  32. Anonymous
    December 18th, 2012

    http://i47.tinypic.com/2znzw5x.png

    can anyone explain this for me please

  33. Anonymous
    December 21st, 2012

    @NeverTore and @9tut:
    Typo in Q11 explanation. Cisco routers do support up to sixteen (16) equal-cost paths. (Under EIGRP, you can also do non-equal route load-balancing [with variance].)

  34. Associate NE
    December 24th, 2012

    Regarding the following

    http://i47.tinypic.com/2znzw5x.png
    can anyone explain this for me please

    I think that the RID has been manually set by the user and the user forgot to change the interface address thats the DR is other router.

  35. Ahmeds
    December 24th, 2012

    @Anonymous
    a. process id do not need to match for router
    b. router A rid is higher than dr id but
    1.router came online after dr election. so DR remain same unless reelection of DR/BDR in
    this case DR is already elected
    2.DR have lower cost metric for same network
    c.interface value is not play a role in dr election unless it is RID

  36. Joe
    January 4th, 2013

    Question 7 has an error. IOS does not allow IP addresses within the same subnet to be configured on multiple interfaces on a single router. Each interface must have an IP address that is in a different subnet. Maybe this is a test questions, but it is in error.

  37. Joe
    January 4th, 2013

    I meant question 4, not question 7.

  38. Klauss
    January 6th, 2013

    @Oleg – broadcast networks always use a DR. The bottom piece is a Broadcast network.

  39. Virtualyzer
    January 13th, 2013

    Hi all,
    to clarify the question 9.
    the different answers suggested on this question are not totally correct :

    what is the result of setting the no login command ?

    A. Telnet access is denied
    B. Telnet access requires a new password at the first login.
    C. Telnet access requires a new password
    D. no password is required for telnet access
    ——————————————————–

    the correct answer is D. with the ” no login” parameter you allow people to log remotely to the switch/router without password required :-)
    By the way i ‘ll pass my ccna exam tomorrow morning i hope that i’ll be enough prepared to succeed the test with satisfaction…i ‘ll let you know :-))

  40. Michael
    January 15th, 2013

    first i would to thank the admin of this site
    second please answer what about the last choice of the question number 1
    please i wanna an explanation

  41. jay
    January 19th, 2013

    Q3-isnt ans C& D are correct?

  42. Daniel L.
    January 22nd, 2013

    Q.1,3,13 on ICND2 test

  43. Prashanth M. S
    January 28th, 2013

    I wonder how come the Q3 answer is corp4 and branch2 whereas it should be Branch1 and Branch2 because of their IP address 10.20.

    please explain why branch1 cannot be the next DR when the ip of corp4 is 10.10 and ip of branch1 is 10.20

  44. Prashanth M. S
    January 28th, 2013

    I guess am late to ask the question….found the answer :p

  45. Ahmeds
    February 2nd, 2013

    @Prashanth M. S
    beacuse it could be diff subnet as in point to point link to it can be 2 diff DR which id is highest

  46. Karthik
    February 7th, 2013

    @ prashanth

    can u explain me how DR’s are elected in the above qn 3

  47. vurdulak
    February 13th, 2013

    thank you very much it was hard

  48. mina
    February 19th, 2013

    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
    why answer c is correct ….. the link state use dijestra algorithm to determine the best path no shortest bath .

  49. Artur
    February 21st, 2013

    ICND 2 today 874 points. Question 1 and 6 the same. One sim VTP, Hotspot, few question about IPv6, VLAN. Few questions from VCE by Daniel.

  50. GUN
    February 24th, 2013

    Hi there. Taking CCNA in a weeks. Can anyone send me latest dumps? gugunwasp@gmail.com? thank you!

Comment pages
Add a Comment