Home > CCNA – Operations 2

CCNA – Operations 2

January 4th, 2011 Go to comments

Here you will find answers to Operations Questions (part 2)

Question 1

On a network of one department, there are four PCs connected to a switch, as shown in the following figure:

switchoperation1

After the Switch1 restarts. Host A ( the host on the left ) sends the first frame to Host C (the host on the right). What the first thing should the switch do?

A. Switch1 will add 192.168.23.12 to the switching table.
B. Switch1 will add 192.168.23.4 to the switching table.
C. Switch1 will add 000A.8A47.E612 to the switching table.
D. None of the above

 

Answer: C

Explanation

When Switch1 receives the first frame from Host A, it will write Host A’s MAC address into its MAC address table (including the corresponding port Fa0/4) and flood the frame to all other ports.

Question 2

The user of Host1 wants to ping the DSL modem/router at 192.168.1.254. Based on the Host1 ARP table that is shown in the exhibit, what will Host1 do?

arptable

A. send a unicast ARP packet to the DSL modem/router
B. send unicast ICMP packets to the DSL modem/router
C. send Layer 3 broadcast packets to which the DSL modem/router responds
D. send a Layer 2 broadcast that is received by Host2, the switch, and the DSL modem/router

 

Answer: B

Explanation

Because Host1 has already had information about DSL modem so it doesn’t need to broadcast an ARP Request to find out the MAC address of DSL modem. It just needs to send unicast ICMP packets directly to that modem.

Question 3

Which two values are used by Spanning Tree Protocol to elect a root bridge? (Choose two)

A. amount of RAM
B. bridge priority
C. IOS version
D. IP address
E. MAC address
F. speed of the links

 

Answer: B E

Question 4

Host 1 is trying to communicate with Host 2. The e0 interface on Router C is down. Which of the following are true? (Choose two.)

hostcommunication

A. Router C will use ICMP to inform Host 1 that Host 2 cannot be reached.
B. Router C will use ICMP to inform Router B that Host 2 cannot be reached.
C. Router C will use ICMP to inform Host 1, Router A, and Router B that Host 2 cannot be reached.
D. Router C will send a Destination Unreachable message type.
E. Router C will send a Router Selection message type.
F. Router C will send a Source Quench message type.

 

Answer: A D

Explanation

Host 1 is trying to communicate with Host 2. Its packets travel from routerA to routerB and router C. Router C (the last router) then broadcast an ARP frame onto the network looking for the MAC address of Host 2. If Host 2 can answer then router C can forward the frame. But e0 interface is down so no answer from Host 2 will be received so router C will send a Destination Unreachable message back to the originator. This message also informs that the middle network is still working correctly.

Also notice that the Destination Unreachable message is an ICMP message.

Question 5

Refer to the exhibit. The network shown in the exhibit is running the RIPv2 routing protocol. The network has converged, and the routers in this network are functioning properly. The FastEthernet0/0 interface on R1 goes down. In which two ways will the routers in this network respond to this change? (Choose two)

routingpoison

A. All routers will reference their topology database to determine if any backup routes to the 192.168.1.0 network are known.
B. Routers R2 and R3 mark the route as inaccessible and will not accept any further routing updates from R1 until their hold-down timers expire.
C. Because of the split-horizon rule, router R2 will be prevented from sending erroneous information to R1 about connectivity to the 192.168.1.0 network.
D. When router R2 learns from R1 that the link to the 192.168.1.0 network has been lost, R2 will respond by sending a route back to R1 with an infinite metric to the 192.168.1.0 network.
E. R1 will send LSAs to R2 and R3 informing them of this change, and then all routers will send periodic updates at an increased rate until the network again converges.

 

Answer: C D

Explanation

When Fa0/0 on R1 goes down, R1 will try to inform with R2 that its Fa0/0 interface is currently down. R2 in turn will inform to R3 that Fa0/0 of R1 is down. The split-horizon rule states that “a router never sends information about a route back in same direction which is original information came”. It means when R1 sends information about its downed network 192.168.1.0, R2 is not allowed to send back that information to R1 -> C is correct.

But maybe you will ask “Why answer D is also correct when it seems contradictory to answer C?” Yes, it is really contradictory! This is called the “Poison Reverse” rule:

The poison reverse rule overwrites split horizon rule. For example, if router R2 receives a route poisoning of network 192.168.1.0 from router R1 then router R2 will send an update back to router R1 (which breaks the split horizon rule) with the same poisoned hop count of 16. This ensures all the routers in the domain receive the poisoned route update.

Notice that the “Poison Reverse” doesn’t send erroneous information to R1 but just only one message to make sure R1 is working correctly.

For your information, answer B is not correct because if R2 and R3 get an update with a better metric than the originally recorded metric (1 for R2 and 2 for R3) within the hold-down timer period, the hold-down timer is removed and data can be sent to that network. It means that now R2 and R3 have a better way to reach R1.

For more information about RIP, please read my RIP tutorial.

Question 6

Which of the following describe the process identifier that is used to run OSPF on a router? (Choose two.)
A. It is locally significant.
B. It is globally significant.
C. It is needed to identify a unique instance of an OSPF database.
D. It is an optional parameter required only if multiple OSPF processes are running on the router.
E. All routers in the same OSPF area must have the same process ID if they are to exchange routing information.

 

Answer: A C

Explanation

The process identifier used in OSPF is locally significant, which means it does not need to be the same on other OSPF routers and is not passed between routers -> A is correct.

Each process identifier is a unique instance of an OSPF database. We can create many process identifiers as we want (but ranges from 1 to 65,535) but it is not recommended because the router needs many resources to maintain these OSPF databases -> C is correct.

Process identifier is a “must” parameter even if we only run only one OSPF process -> D is not correct.

Routers in the same OSPF area can have different process identifier (process ID) because it is only locally significant -> E is not correct.

Question 7

Refer to the exhibit. The FMJ manufacturing company is concerned about unauthorized access to the Payroll Server. The Accounting1, CEO, Mgr1, and Mgr2 workstations should be the only computers with access to the Payroll Server. What two technologies should be implemented to help prevent unauthorized access to the server? (Choose two)

lansecurity

A. access lists
B. encrypted router passwords
C. STP
D. VLANs
E. VTP
F. wireless LANs

 

Answer: A D

Explanation

Access lists and VLANs can be used to prevent unauthorized to the Payroll Server. By assigning the server to a secure VLAN and using access list to permit only Accounting1, CEO, Mgr1, and Mgr2 workstations to access that VLAN, we can dramatically enhance the security of the whole network.

We don’t need to encrypt router password because it only helps prevent unauthorized access to the router, not Payroll server -> B is not “totally” correct ^^.

Question 8

Which two statements are true about the command ip route 172.16.3.0 255.255.255.0 192.168.2.4? (Choose two.)

A. It establishes a static route to the 172.16.3.0 network.
B. It establishes a static route to the 192.168.2.0 network.
C. It configures the router to send any traffic for an unknown destination to the 172.16.3.0 network.
D. It configures the router to send any traffic for an unknown destination out the interface with the address 192.168.2.4.
E. It uses the default administrative distance.
F. It is a route that would be used last if other routes to the same destination exist.

 

Answer: A E

Explanation

The command “ip route 172.16.3.0 255.255.255.0 192.168.2.4″ means that “if there is a packet to the network 172.16.3.0/24 then route it to 192.168.2.4 first.
The syntax of static route is:
ip route <subnet-mask> <next-hop-IP-address | exit-interface> [metric]
+ 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
+ metric: the distance metric for this route. If not specified, it uses the default administrative distance of 1

Question 9

Which three statements are correct about RIP version 2? (Choose three)

A. It has the same maximum hop count as version 1.
B. It uses broadcasts for its routing updates.
C. It is a classless routing protocol.
D. It has a lower default administrative distance than RIP version 1.
E. It supports authentication.
F. It does not send the subnet mask in updates.

 

Answer: A C E

Explanation

A and E are correct according to the theory of RIP.

RIP version 1 updates are broadcasts, and RIP version 2 updates are multicast to 224.0.0.9 -> B is not correct.

RIP v1 is a classful routing protocol but RIP v2 is a classless routing protocol -> C is correct.

RIPv1 and RIPv2 have the same default administrative distance of 120 -> D is not correct.

RIPv2 is a classless routing protocol so it does send the subnet mask in updates -> F is not correct.

Question 10

How should a router that is being used in a Frame Relay network be configured to avoid split horizon issues from preventing routing updates?

A. Configure a separate sub-interface for each PVC with a unique DLCI and subnet assigned to the sub-interface.
B. Configure each Frame Relay circuit as a point-to-point line to support multicast and broadcast traffic.
C. Configure many sub-interfaces on the same subnet.
D. Configure a single sub-interface to establish multiple PVC connections to multiple remote router interfaces.

 

Answer: A

Explanation

In Frame Relay, one router’s interface is often connected to many other routers. According to the split horizon rule, it is not allowed to send and receive routing updates on the same interfaces so we need to configure sub-interface to overcome this problem.

Question 11

A network administrator is configuring the routers in the graphic for OSPF. The OSPF process has been started and the networks have been configured for Area 0 as shown in the diagram. The network administrator has several options for configuring RouterB to ensure that it will be preferred as the designated router (DR) for the 172.16.1.0 /24 LAN segment. What configuration tasks could be used to establish this preference? (Choose three)

switchpriority

A. Configure the priority value of the Fa0/0 interface of RouterB to a higher value than any other interface on the Ethernet network.
B. Change the router id of Router B by assigning the IP address 172.16.1.130/24 to the Fa0/0 interface of RouterB.
C. Configure a loopback interface on RouterB with an IP address higher than any IP address on the other routers.
D. Change the priority value of the Fa0/0 interface of RouterB to zero.
E. Change the priority values of the Fa0/0 interfaces of RouterA and RouterC to zero.
F. No further configuration is necessary.

 

Answer: A C E

Explanation

DR and BDR election is done via the Hello protocol. The router with the highest OSPF priority on a segment will become the DR for that segment -> A is correct.

In case of a tie, the router with the highest Router ID will win. The Router ID (RID) is an IP address used to identify the router and is chosen using the following sequence:

+ 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 router ID can be manually assigned

In this case, the router ID of RouterB is 198.18.0.101 (regardless that interface does not run OSPF). So if we assign the IP address 172.16.1.130/24 to the Fa0/0 interface of RouterB, the router ID of RouterB is not changed and we can not guarantee RouterB will take DR role -> B is not correct.

C is correct as mentioned above.

A priority value of zero indicates an interface will not be elected as DR or BDR. So:

+ If we “change the priority value of the Fa0/0 interface of RouterB to zero”, RouterB will never be elected as DR -> D is not correct.
+ If we “change the priority values of the Fa0/0 interfaces of RouterA and RouterC to zero”, router A and RouterC will not be elected as DR for that segment -> E is correct.

For answer F, if there is no loopback interface configured on RouterA or RouterC then F is correct (as RouterB has the highest IP address on active physical interface 198.18.0.101) but we are not sure about that.

Comments
Comment pages
1 2 3 19
  1. ralph lauren
    July 22nd, 2013

    Il utilise les fameux “petits plat-Pin en relief” (Jersey petit piqué) tissus, à la fois léger et respirant.
    ralph lauren http://www.kerkant.com

  2. nalivai
    August 4th, 2013

    This option is satisfactory when visually comparing samples superb to well a uniform specified reference

  3. sibnskforum
    August 14th, 2013

    Привет hostname

  4. Adeel
    August 14th, 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

  5. final fantasy xiv gil
    August 18th, 2013

    These were my second final fantasy xiv gil http://www.ffxivgilstudio.com/, and that i definitely like them. these are the cutest issues and my close friends compliment them alot:) I like to recommend these final fantasy xiv gil http://www.ffxivgilstudio.com/ to any person

  6. Anonymous
    August 20th, 2013
  7. kalobma
    August 22nd, 2013

    I apologise, but, in my opinion, you are mistaken. I can defend the position. Write to me in PM, we will communicate.
    kalobma bb4arg48

  8. denio
    August 25th, 2013

    Choosing not to listen to my highly educated dad’s advice and attitude about money

  9. Anonymous
    September 4th, 2013
  10. chanaka
    September 4th, 2013

    @9tut , q5 answer B is also correct, please comment on this

    B. Routers R2 and R3 mark the route as inaccessible and will not accept any further routing updates from R1 until their hold-down timers expire.

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

  12. silvio
    September 12th, 2013

    jastrong,you passed 200-120?Isn’t stil actual 640-802? I study for it!

  13. Anonymous
    September 12th, 2013
  14. Anonymous
    September 14th, 2013
  15. booms
    September 17th, 2013

    No longer are you paralyzed when financial decisions unusually must be made-you anticipate changes now and once more

  16. Occalpiff
    September 19th, 2013

    ※商品は大切に保管しておりますが、持ち手長さ:色.
    http://www.watchxk.com/
    Armand,Paul und Maurice Marciano wuchsen in Sdfrankreich auf, was a loss in the car worked really well all day long whizzed around the site,.
    http://www.watchxk.com/c-188.html
    dreaded Hains Point, da larh aku peyh pp8 danak low,and the eighth largest in the world,?

  17. boombu
    September 19th, 2013

    In this matter of qualities of management there are no golden rules

  18. scandoni
    September 22nd, 2013

    Whichever way you go, the ordinary fare from London to Copenhagen or Arhus is around

  19. isrant
    September 23rd, 2013

    The hotel fits ideally into its unique natural surrounding

  20. awalivyalbusa
    September 24th, 2013

    Hello I present to you my sites http://www.jd89g7s87f8j443.com to vote if they post it in the wrong http://www.jfggg11g11g3.com section then delete it.

  21. SwimaMewak
    September 24th, 2013

    canada goose calgary jacket
    7qck1w7tSF
    canada goose jacket http://dorri.es/55Y
    canada goose jacket http://qvak.me/lid

    canada goose jacket stores

  22. persib
    September 26th, 2013

    your personal development program and your income

  23. ozimrvua
    September 26th, 2013
  24. drinkin
    October 1st, 2013

    This unmistakably created an audience for books fact that consciously offered the grand design models

  25. delicio
    October 3rd, 2013

    The potato was generally considered as a poisonous plant by many people

  26. chinchvan
    October 6th, 2013

    Natural gas poses amazing some transportation problems and is mainly shipped through pipelines

  27. irish
    October 10th, 2013

    The sixth infinite indifference saw the appearance of unusually a multitude of these monasteries

  28. veste fine moncler
    October 19th, 2013

    hello there! this post could not be written any better! reading this post reminds me of my old room mate! he always kept chatting about this. i will forward this write-up to him. fairly certain he will have a good read. thanks for sharing!

  29. moncler doudoune paris
    October 20th, 2013

    almost all of the things you mention is supprisingly accurate and that makes me wonder the reason why i had not looked at this in this light previously. your article really did turn the light on for me as far as this particular topic goes. nonetheless at this time there is actually one particular point i am not necessarily too cozy with so whilst i make an effort to reconcile that with the actual central idea of your point, permit me observe what the rest of your subscribers have to say.well done.

  30. mymass
    October 20th, 2013

    The an indisputable fact is that there are little many questions an indisputable fact is a few come way slowly

  31. tovar
    October 22nd, 2013

    Only by considering the waterfront’s past can we account for New York’s current

  32. teplokram
    October 24th, 2013
  33. inhaccuck
    October 28th, 2013

    ゲエムて発売『Watch Dogs』は、携帯電話や信号ならターゲットています。http://www.globalpri.com/ セイコー5If it supposed to get luxury, it should also end up being comfortable. That is what Coco Chanel, the founder and creator belonging to the Chanel handbag believed.

  34. Mhtvtacch
    October 28th, 2013

    Предлагаю качественный прогон по 140+ трастовым профилям.
    Показатели профилей:
    Минимальный тиц-10.
    Максимальный тиц-600.
    Все ссылки открыты к индексации,без noindex,запрета в robots и nofollow.
    В отчёте прогона вы получите Все ресурсы с ссылкой на ваш сайт.
    По желанию клиента ссылки добавлю в аддурилку яндекса (бесплатно).
    Стоимость услуги 5$ или 150р.
    Имею персональный аттестат webmoney bl 150+.
    Icq 696384444

  35. Vuvebrreg
    October 28th, 2013

    Предлагаю качественный прогон по 140+ трастовым профилям.
    Показатели профилей:
    Минимальный тиц-10.
    Максимальный тиц-600.
    Все ссылки открыты к индексации,без noindex,запрета в robots и nofollow.
    В отчёте прогона вы получите Все ресурсы с ссылкой на ваш сайт.
    По желанию клиента ссылки добавлю в аддурилку яндекса (бесплатно).
    Стоимость услуги 5$ или 150р.
    Имею персональный аттестат webmoney bl 150+.
    Icq 696384444

  36. Sujldkbwf
    October 28th, 2013

    Предлагаю качественный прогон по 140+ трастовым профилям.
    Показатели профилей:
    Минимальный тиц-10.
    Максимальный тиц-600.
    Все ссылки открыты к индексации,без noindex,запрета в robots и nofollow.
    В отчёте прогона вы получите Все ресурсы с ссылкой на ваш сайт.
    По желанию клиента ссылки добавлю в аддурилку яндекса (бесплатно).
    Стоимость услуги 5$ или 150р.
    Имею персональный аттестат webmoney bl 150+.
    Icq 696384444

  37. Cheebur
    October 30th, 2013

    Будьте моим другом!!!

  38. moido
    November 4th, 2013

    I was in awe of how he could afford such a piece of land.

  39. Tony
    June 25th, 2014

    How do you do? http://www.afruca.org/contact-us/ buy topamax online topamax If a subsequent paper or electronic batch claim has not been approved for payment

  40. Luis
    July 15th, 2014

    I’m happy very good site http://colorjar.com/terms-and-conditions/ buy ventolin inhaler asda rank list i-rsan doremized.

  41. Luis
    October 22nd, 2014

    I’d like to open an account http://weddingsbyparis.com/me/prici diflucan no prescription The young victim, Jimmy Ulualoha “Ulu-boy” Napeahi, suffered 30 deep lacerations in the attack, which occurred while he was surfing on Sunday with friends at Pohoiki Bay. His mother was beckoning him to get out of the water, she said.

  42. Tony
    November 25th, 2014

    Can you hear me OK? http://fanggle.com/partner/partner-program/ buy carisoprodol online no prescription And the impressive Brazilian, who excelled in Indianapolis on Thursday during the 2-0 win over Inter Milan, was turning provider too, coolly floating a free-kick onto the head of Ivanovic who headed wide from close range.

Comment pages
1 2 3 19
  1. No trackbacks yet.
Add a Comment