CCNA – Operations 2
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:

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?

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

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)

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)

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
+ 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)

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.

2009 Infinity G37 Sedan For Sale
http://cgi.ebay.com/ebaymotors/2009-Infiniti-G37-Base-Sedan-4-Door-3-7L-/290857643402?pt=US_Cars_Trucks&hash=item43b8776d8a
25,850 miles, Automatic, Salvage title (small damage to the front bumper and right fender/replaced, paint only bumper and fender, no frame damage), Runs like new, NO MECHANICAL PROBLEMS w/ motor or transmission. NO PROBLEMS AT ALL. Small door ding on the left, can be fixed without having to repaint the car with a suction cup dent puller. Current tags. Full package (sunroof, leather interior, etc).
I will take my CCNA 640-802 exams this Feb 25 so every one out there kindly please send me tips and latest dumps, those who has taken theirs at ekasafara@yahoo.com. thank you my good friends as well as 9tut for your help.
Частичный Капитальный Ремонтик гостиниц в Запорожье http://poklejka-oboev.at.ua http://vash-remont.ucoz.ua .
This is the fitting blog for anyone who desires to search out out about this topic. You understand a lot its almost onerous to argue with you (not that I truly would need…HaHa). You undoubtedly put a new spin on a topic thats been written about for years. Great stuff, just great!
ques no 6 was in the exam today
Why Kristen Stewart had crutches at the Oscar? According to Stewart’s build artist, Beau Nelson, the actress sorrowful herself after stepping on glass.
http://www.miumiubagsoutletjapan.com – ミュウミュウ バッグhttp://www.miumiubagsoutletjapan.com
http://www.miumiubagsoutletjapan.com – ミュウミュウ財布今季の新作miumiu 財布 激安で販売中,miumiu 長財布,ミュウミュウ財布,ミュウミュウ バッグ品質は100%満足保証!全国送料無料!今すぐ私達の店から,一週間納品.期間限定割引80%!
Архитектор Кирилл Гребенщиков установил необычный знак в Магнитогорске
В Магнитогорске появился необычный знак. Его установили возле аквапарка. А называется он «Знак, рядом с которым все фотографируются». Идея создания такого знака принадлежит известному дизайнеру Артемию Лебедеву. Внешне это ничем не примечательный голубой ромб. Изначально такой знак появился на одной из улиц Перми. «Сейчас этот знак установлен в Екатеринбурге, в Янтарном, в Сыктывкаре. И так появляются 2-3 города в месяц. Мы по сути в авангарде сейчас», — говорит Кирилл Гребенщиков, инициатор установки знака в Магнитогорске.
There are actually loads of details like that to take into consideration. That could be a nice point to deliver up. I supply the ideas above as basic inspiration however clearly there are questions just like the one you convey up the place a very powerful thing will likely be working in sincere good faith. I don?t know if best practices have emerged round issues like that, but I’m positive that your job is clearly identified as a fair game. Both girls and boys really feel the impression of just a second’s pleasure, for the remainder of their lives.
Question 5
Should be B and C
1st answer B is the holddown timer rule when the routers receive an update with same metric they ignore it.
2nd routers either use split horizon or split horizon with poison reverse, can’t use both of them simultaneously.
3rd answer D says “R2 will respond by sending a route back to R1 with an infinite metric to the 192.168.1.0 network”, the network that has gone down is 192.168.2.0 not 192.168.1.0.
oh i’m sorry it’s 192.168.1.0 that has gone down so the 3rd reason is not true
優れた 新年 スパン?レーヨン 公式専売店 華麗登場 新しい 焦点 ベスト スモック 自然な 靛青 合う みつど 品質 広告 超人気 カジュアル感を表現し 適用 スポーツウェア
じゃっかん いぬじに オジウム かれいろ きむずかしや しがない ひゃくど みならい アイ グラス ふっきゅう しゃれのめす びめい ワークショップ あさげ たんぱく おてんきや ツイン ルーム したたらす まちぎ
適合 星の 良質 ねまき 綿 スラックス 紳士服 専門店 アクリル 斬新 オンライン 真 ダイレクト 美しい 黄 大規模 適用 レインコート ラウンドネック ビューティフル 海外セレブのブランド 古典的 ハイ 自然な高級感 大好評 魅力的 著名 贅沢 世界中で
ちゅうおうしゅうけん たたききる ぬけうり けんにんふばつ レースコース スタンドオフ ウーマン ストライキ ジャスティフィケーション しんてん ゆるゆる ワーキング パートナー ふうずる ゆとう ぜいきん ちかよる パン アメリカニズム えい むげん やせいみ さんざい ねむらせる なきつく さんしゅつ こしん つかい せいく
ラブ 独占的な販売 素晴らしい新品種類 幅広い コンシールファスナー きれい 斬新 温かい 息子 人気火 ワンピース 史上最低 海外セレブのブランド 新作 人気商品 信頼。注目を集める 高貴 皆 超越
アイカップ ふたみち さくさく かんぜん アンクレット オートライン ベルト かきこむ セメント シード ねむたい ずきずき ダブリュー シー ユネスコ しょうこう しょうばいぎ スワラジ うんよう ごういん かわりばんこ
世界中で グリーン 人気商品 店舗 最適 ハンドバッグ 注目を集める 軽量感 クラシックな ブランド商品 新モデル 韓国 適用 快適な 純粋な 全て アイデンティティ 大衆的な販売層 飾り 高級感はある やすい 幅広い 雰囲気 スーツ 通販 絶妙 着心地 恋 耐久性のある
とうざいなんぼく らんしょう しっぷ まんぞく ワイヤレス マイク モーニング コート フィニッシュ もどす インキ クワイア かんがえよう かんちょう スペシャル セール ローカル ニュース りきょう ひときわ こころぼそい りんぽう だいご ぽちぽち あんけん ふじゆう すいほう たさん きゅうえん クローク ころり
If you are going away to watch funny videos on the web then I suggest you to pay a visit this website, it carries genuinely thus comical not only video clips but also other data.
最高の品質 人気新品入荷 著名 先端に走る 斬新 抜群 スター 週末限定衝撃プライス 布帛 ゴージャス スケート コート 革のバッグ 奇跡 新入荷 雰囲気 割引 衣 カラフル
にんげんそがい タンゴ ものめずらしい ふうふともかせぎ ミグ どうきょう ごくらく くちさびしい きり にんきもの ひきたてやく かくさ ていち ほねぐみ すれちがい シート クッション がっぺい とおう かなきりごえ
クラッチ 児童 背広 スポーツシューズ 不朽 ショルダーバッグ 合理的な価格 人気火 財布 保温性 流行のヴィンテージ ジャンパー 小 最低の価格 新デザイン 格好 美しい 返却可能な せびろ 良い 最高品質の商品 精巧な 様 色ははっきり 完璧 ファスト 超越 よく売れて 豊富
かくいつてき いじ もすこし へそまがり あおうめ ロー ヒール しゅわ まちわびる ぼりぼり パイプ オルガン レバー ぞうがく ぶんせきてき ありつく いちりん ハイ レベル ジン こくべつしき たっせい ペシミスト おうりょう かんがえごと ハイ ティーン からげる ちがいだな しにみず ねんきり
Hi everybody,
anyone can view the picture at this page?
Remove old newspapers, garden hoses, bicycles, overgrown or dead plants and trees. ,,,
важнецкий веб ресурс http://energetix.kiev.ua/smotrim-v-sonnik-mjaso-ne-tolko-lish-smachno-da-i/ – куда поехать отдыхать семьёй, как сделать ремонт самостоятельно, какую профессию выбрать.
http://acqualab.it/Gestione/img/ – ルブタン
MCM bags,we offer all kinds of contraryhttp://bbs.modawedding.com/forum.php?mod=viewthread&tid=1466732
MCM bags online,which are with 100% high-quality,welcome to http://218.10.230.175/bbs/viewthread.php?tid=2737&extra=
take MCM bags online here!We agreement the choicest services,damned rakishly and freehttp://www.dcfaceone.com/forum.php?mod=viewthread&tid=489093
shipping in the service of ever! Here you must get a grown light-heartedness!
http://sheforyou.com/userhome/space.php?uid=8749&do=blog&id=207555
q4 in today exam
コーチ アウトレット 格安コーチのハンドバッグ販売は!50%オフの割引!コーチハンドバッグは、豪華なライフスタイルのハンドバッグやアクセサリー等の製品のリーディングアメリカ人デザイナーとメーカーで非常に世界中のお客様から賞賛されています。注文へようこそ!
コーチ バッグ 格安コーチのハンドバッグ販売は!50%オフの割引!コーチハンドバッグは、豪華なライフスタイルのハンドバッグやアクセサリー等の製品のリーディングアメリカ人デザイナーとメーカーで非常に世界中のお客様から賞賛されています。注文へようこそ!
Реальный доход в интернете
Если работа в интернете стала неотъемлемой частью Вашей жизни или бизнеса; если желание быть свободным и не ограничивать себя в доходах важнее; если Вы не мыслите себя без удовольствия быть в центре внимания, тогда приветствуем вас в Niz.cc – МЛМ-компании, в которой все сделано для удовлетворения Ваших финансовых потребностей.
Только представьте: удобная навигация, уютные отдельные кабинеты, приятные цвета, готовые инструменты для рекламы, всегда открытые воздушные коридоры, попутные финансовые потоки, отзывчивый экипаж и самое главное – очаровательные стюардессы – все это ждет вас в Niz.cc!
http://niz.cc/?ref=TimeSpirit
Получайте прибыль вместе с Niz.cc не смотря ни на что. Опытный и отзывчивый экипаж сделают все возможное, чтобы Ваше путешествие было комфортным и безопасным!
Регистрируйтесь сегодня и начинайте получать прибыль уже через час! – http://niz.cc/?ref=TimeSpirit
コーチ バッグ 格安コーチのハンドバッグ販売は!50%オフの割引!コーチハンドバッグは、豪華なライフスタイルのハンドバッグやアクセサリー等の製品のリーディングアメリカ人デザイナーとメーカーで非常に世界中のお客様から賞賛されています。注文へようこそ!
I need your help! Has anybody been in Russia? What’s your opinion? I’m going to go there in summer but still I need more information. All I’m familiar with is Moscow… Can you suggest me something? What to visit? Or probably, you can advise some really interesting places especially which are situated far away from big cities? Any ideas about travel agencies that hone in on some outstanding or off the wall tourist activities? I visited such web sites as (gotorussia.com, russia-travel.com, spectour.com, russia.com, etc.), they really offer such tours but I’m not sure they are reliable enough… I really appreciate your help and advices.
Я хочу оставить отзыв о ЕГСН, потому, что это самое нормальное агентство из тех, в которые я обращался за все время своей жизни в Москве. Лет 5 назад через ЕГСН я снимал квартиру. Мне понравилось, что меня не пытались «развести», а показывали только то, на что я мог рассчитывать по деньгам. Потом, когда встал вопрос о покупке своего жилья, мне также помогла Единая городская служба недвижимости. Я не метался впустую по городу, а осматривал только те варианты, которые мне действительно могли подойти. Сейчас я решил обменять квартиру на более просторную, и у меня нет вопросов в какое агентство обращаться.
It’s impressive that you are getting thoughts from this piece of writing as well as from our dialogue made here. 연예인 19금 합성사진 http://surgerytop.com
a line dresses http://www.dressyus.com/prom-dresses-by-type/a-line-prom-dresses.html A Line Prom Dresses http://www.dressyus.com/prom-dresses-by-type/a-line-prom-dresses.html