<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>CCNA Training</title>
	<atom:link href="http://www.9tut.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.9tut.com</link>
	<description>CCNA Training with Questions, Answers and Explanations</description>
	<lastBuildDate>Tue, 08 May 2012 16:07:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Get bolded</title>
		<link>http://www.9tut.com/get-bolded</link>
		<comments>http://www.9tut.com/get-bolded#comments</comments>
		<pubDate>Wed, 22 Feb 2012 09:40:37 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=468</guid>
		<description><![CDATA[Get bolded]]></description>
			<content:encoded><![CDATA[<p>Get bolded</p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/get-bolded/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>InterVLAN Routing Tutorial</title>
		<link>http://www.9tut.com/intervlan-routing-tutorial</link>
		<comments>http://www.9tut.com/intervlan-routing-tutorial#comments</comments>
		<pubDate>Wed, 22 Feb 2012 09:39:39 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Knowledge]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=1061</guid>
		<description><![CDATA[In the previous VLAN tutorial we learned how to use VLAN to segment the network and create &#8220;logical&#8221; broadcast domains. In this tutorial we will learn about InterVLAN Routing. What is InterVLAN routing? As we learned, devices within a VLAN can communicate with each other without the need of Layer 3 routing. But devices in [...]]]></description>
			<content:encoded><![CDATA[<p>In the previous <a href="http://www.9tut.com/virtual-local-area-network-vlan-tutorial" target="_blank">VLAN tutorial</a> we learned how to use VLAN to segment the network and create &#8220;logical&#8221; broadcast domains. In this tutorial we will learn about InterVLAN Routing.</p>
<p class="blueandbold">What is InterVLAN routing?</p>
<p>As we learned, devices within a VLAN can communicate with each other without the need of Layer 3 routing. But devices in separate VLANs require a Layer 3 routing device to communicate with one another. For example, in the topology below host A and B can communicate with each other without a router in the same VLAN 10; host C and D can communicate in the same VLAN 20. But host A can&#8217;t communicate with host C or D because they are in different VLANs.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/InterVLAN/InterVLAN_no_router.jpg" alt="InterVLAN_no_router.jpg" width="420" height="180" /></p>
<p>To allow hosts in different VLANs communicate with each other, we need a Layer 3 device (like a router) for routing:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/InterVLAN/InterVLAN_traditional_routing.jpg" alt="InterVLAN_traditional_routing.jpg" width="420" height="290" /></p>
<p style="text-align: left;">The routing traffic from one VLAN to another VLAN is called InterVLAN routing.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-2092096328550054";
/* 728x90, created 8/23/10 */
google_ad_slot = "7262806449";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><span id="more-1061"></span></p>
<p style="text-align: left;">Now host A can communicate with host C or D easily. Now let&#8217;s see how  the traffic is sent from host A to host D. First, traffic from host A is sent  to the switch. The switch tags the frame as originating on VLAN 10 and checks the destination. Switch knows the  destination host is in a different VLAN so it forwards that traffic to the  router. In turn, the router makes routing decision from VLAN 10 to VLAN 20 and sends back that traffic to the switch, where it  is forwarded out to host D.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/InterVLAN/InterVLAN_sticky_router_traffic_flow_2_interfaces.jpg" alt="InterVLAN_sticky_router_traffic_flow_2_interfaces.jpg" width="420" height="290" /></p>
<p style="text-align: left;">Notice that the routing decision to another VLAN is done by the router, not the switch. When frames leave the router (step 3 in the picture above), they are tagged with VLAN 20.</p>
<p style="text-align: left;">Also notice that receiving ends (host A &amp; D in this case) are unaware of any VLAN information. Switch attaches VLAN information when receiving frames from host A and removes VLAN information before forwarding to host D.</p>
<p style="text-align: left;">But there is one disadvantage in the topology above: for each VLAN we need a physical connection from the router to the switch but in practical, the interfaces of the router are very limited. To overcome this problem, we can create many logical interfaces in one physical interface. For example from a physical interface fa0/0 we can create many sub-interfaces like fa0/0.0, fa0/0.1 &#8230; Now this router is often called &#8220;router on a stick&#8221; (maybe because there is only one physical link connecting from router so it looks like a router on a stick ^^)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/InterVLAN/InterVLAN_sticky_router.jpg" alt="InterVLAN_sticky_router.jpg" width="420" height="290" /></p>
<p>The router treats each sub-interface as a separate physical interface in routing decisions -> data can be sent and received in the same physical interface (but different sub-interfaces) without being dropped by the split-horizon rule in the case you want to send routing updates through the router from one VLAN to another.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/InterVLAN/InterVLAN_sticky_router_traffic_flow.jpg" alt="InterVLAN_sticky_router_traffic_flow.jpg" width="420" height="290" /></p>
<p class="blueandbold">Configuring InterVLAN routing</p>
<p>Now you understand how InterVLAN works. To accomplish InterVLAN routing, some configuration must be implemented on both router and switch. Let&#8217;s see what actions need to be completed when we want to configure InterVLAN in &#8220;router on a stick&#8221; model using the above topology.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-2092096328550054";
/* 728x90, created 3/13/11 */
google_ad_slot = "4023788434";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>+ The switch port connected to the router interface must be configured as trunk port. <br />
 + The router sub-interfaces must be running a trunking protocol. Two popular trunking protocols in CCNA are 802.1q (open standard) and InterSwitch Link (ISL, a Cisco propriety protocol).<br />
 + Set IP address on each sub-interface.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/InterVLAN/InterVLAN_configuration_topology.jpg" alt="InterVLAN_configuration_topology.jpg" width="420" height="290" /></p>
<p>To help you understand more clearly about InterVLAN, the main configuration of router &amp; switch are shown below:</p>
<p><strong>Configure trunk port on switch:</strong></p>
<p>Switch(config)#interface f0/0<br />
 Switch(config-if)#no shutdown<br />
 Switch(config-if)#switchport mode trunk</p>
<p><strong>Create sub-interfaces, set 802.1Q trunking protocol and ip address on each sub-interface</strong></p>
<p>Router(config)#interface f0/0<br />
 Router(config-if)#no shutdown</p>
<p>(Note: The main interface f0/0 doesn&#8217;t need an IP address but it must be turned on)</p>
<p>Router(config)#interface f0/0.0<br />
 Router(config-subif)#encapsulation dot1q 10<br />
 Router(config-subif)#ip address 192.168.1.1 255.255.255.0<br />
 Router(config-subif)#interface f0/0.1<br />
 Router(config-subif)#encapsulation dot11 20<br />
 Router(config-subif)#ip address 192.168.2.1 255.255.255.0</p>
<p>(Note: In the &#8220;encapsulation dot1q 10&#8243; command, 10 is the VLAN ID this interface operates in)</p>
<p>I also list the full configuration of the above topology for your reference:</p>
<p><strong>Configure VLAN <br />
 </strong></p>
<p>Switch(config)#vlan 10<br />
 Switch(config-vlan)#name SALES<br />
 Switch(config-vlan)#vlan 20<br />
 Switch(config-vlan)#name TECH</p>
<p><strong>Set ports to access mode &amp; assign ports to VLAN</strong></p>
<p>Switch(config)#interface range fa0/1-2<br />
 Switch(config-if)#no shutdown<br />
 Switch(config-if)# switchport mode access<br />
 Switch(config-if)# switchport access vlan 10<br />
 Switch(config-if)#interface range fa0/3-4<br />
 Switch(config-if)#no shutdown<br />
 Switch(config-if)#switchport mode access<br />
 Switch(config-if)# switchport access vlan 20</p>
<p>In practical, we often use a Layer 3 switch instead of a switch and a  &#8220;router on the stick&#8221;, this helps reduce the complexity of the topology and  cost.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/InterVLAN/InterVLAN_Switch_Layer3.jpg" alt="InterVLAN_Switch_Layer3.jpg" width="420" height="200" /></p>
<p>Note: With this topology, we don&#8217;t need to use a trunking protocol and the &#8220;switchport mode trunk&#8221; command. The full configuration of Layer 3 switch is listed below:</p>
<p><strong>Switch configuration</strong></p>
<table border="1">
<tbody>
<tr>
<td>
<p>ip routing<br />
 !<br />
 interface FastEthernet0/1<br />
 switchport access vlan 10<br />
 switchport mode access<br />
 !<br />
 interface FastEthernet0/2<br />
 switchport access vlan 20<br />
 switchport mode access</p>
<p>interface Vlan10<br />
 ip address 192.168.10.1 255.255.255.0<br />
 !<br />
 interface Vlan20<br />
 ip address 192.168.20.1 255.255.255.0</p>
</td>
</tr>
</tbody>
</table>
<p>And on hosts just assign IP addresses and default gateways (to the corresponding interface VLANs) -> hosts in different VLANs can communicate.</p>
<p>In summary, InterVLAN routing is used to permit devices on separate VLANs to communicate. In this tutorial you need to remember these important terms:</p>
<p>+ <strong>Router-on-a-stick</strong>: single physical interface routes traffic between multiple VLANs on a network.<br />
 + <strong>Subinterfaces </strong>are multiple virtual interfaces, associated with one physical interface. These subinterfaces are configured in software on a router that is independently configured with an IP address and VLAN assignment.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-2092096328550054";
/* 728x90, created 8/23/10 */
google_ad_slot = "7262806449";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/intervlan-routing-tutorial/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>CCNA VTP SIM Question</title>
		<link>http://www.9tut.com/80-ccna-vtp-sim-question</link>
		<comments>http://www.9tut.com/80-ccna-vtp-sim-question#comments</comments>
		<pubDate>Tue, 21 Feb 2012 10:38:58 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Lab Sim]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=43</guid>
		<description><![CDATA[Question This task requires you to use the CLI of Sw-AC3 to answer five multiple-choice questions. This does not require any configuration. To answer the multiple-choice questions, click on the numbered boxes in the right panel. There are five multiple-choice questions with this task. Be sure to answer all five questions before leaving this item. [...]]]></description>
			<content:encoded><![CDATA[<p class="ccnaquestionsnumber">Question</p>
<p>This task requires you to use the CLI of Sw-AC3 to answer five multiple-choice questions. This does not require any configuration.</p>
<p>To answer the multiple-choice questions, click on the numbered boxes in the right panel.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_vtp_sim_question.jpg" border="0" alt="ccna_vtp_sim_question" width="600" height="297" /></p>
<p>There are five multiple-choice questions with this task. Be sure to  answer all five questions before leaving this item.</p>
<p><!--adsense--></p>
<p><span id="more-43"></span></p>
<p>Notice: All the images in this VTP LAB are used for demonstration only, you will see slightly different images in the real CCNA exam. You can download this sim to practice here: <a href="http://www.9tut.com/download/9tut.com_CCNA_vtp_sim.pka" target="_blank">http://www.9tut.com/download/9tut.com_CCNA_vtp_sim.pka</a></p>
<p>If you are not sure about VTP, please read my <a href="http://www.9tut.com/vlan-trunk-protocol-vtp-tutorial" target="_blank">VTP Tutorial</a></p>
<p class="blueandbold">Note: In this VTP sim, you have to answer 5 questions. After answering the first question, click on the number boxes to move to other questions. If you click &#8220;Next&#8221; at the first question, you will lose points for 4 remaining questions.</p>
<p><span class="ccnaquestionsnumber">Question 1</span></p>
<p>What interface did Sw-AC3 associate with source MAC address 0010.5a0c.ffba ?</p>
<p>a) Fa0/1</p>
<p>b) Fa0/3</p>
<p>c) Fa0/6</p>
<p>d) Fa0/8</p>
<p>e) Fa0/9</p>
<p>f) Fa0/12</p>
<p><span class="ccnacorrectanswers">Answer:</span> Fa 0/8</p>
<p><span class="ccnaexplanation">Explanation:</span> to find out which interface associated with a given MAC address, use the <span class="pinkandbold">show mac-address-table</span> command. It shows the learned MAC addresses and their associated interfaces. After entering this command, you will see a MAC address table like this:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_vtp_sim_answer_1.jpg" border="0" alt="ccna_vtp_sim_answer_1" width="284" height="332" /></p>
<p>From this table we can figure out that the MAC address 0010.5a0c.ffba is associated with interface Fa0/8.</p>
<p>Note: There are some reports that the &#8220;show mac-address-table&#8221; command does not exist in the exam. So in the exam, if you cannot use the &#8220;show mac-address-table&#8221; command then try using the &#8220;<span class="pinkandbold">show mac address-table</span>&#8221; (without &#8220;-&#8221;) instead.</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>What ports on Sw-AC3 are operating has trunks (choose three)?</p>
<p>a) Fa0/1</p>
<p>b) Fa0/3</p>
<p>c) Fa0/4</p>
<p>d) Fa0/6</p>
<p>e) Fa0/9</p>
<p>f) Fa0/12</p>
<p><span class="ccnacorrectanswers">Answer:</span> Fa0/3, Fa0/9 and Fa0/12</p>
<p><span class="ccnaexplanation">Explanation:</span> Use the <span class="pinkandbold">show interface trunk</span> command to determine the trunking status of a link and VLAN status. This command lists port, its mode, encapsulation and whether it is trunking. The image below shows how it works:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_vtp_sim_answer_2.jpg" border="0" alt="ccna_vtp_sim_answer_2" width="480" height="230" /></p>
<p><em>(This image is used for demonstration only) </em></p>
<p><span class="ccnaquestionsnumber">Question 3</span></p>
<p>What kind of router is VLAN-R1?</p>
<p>a) 1720</p>
<p>b) 1841</p>
<p>c) 2611</p>
<p>d) 2620</p>
<p><span class="ccnacorrectanswers">Answer:</span> 2620</p>
<p><span class="ccnaexplanation">Explanation:</span> VLAN-R1 is the router directly connected to Sw-Ac3 switch, so we can use the <span class="pinkandbold">show cdp neighbors</span> command to see:</p>
<p>1. Neighbor Device ID : The name of the neighbor device;</p>
<p>2. Local Interface : The interface to which this neighbor is heard</p>
<p>3. Capability: Capability of this neighboring device &#8211; R for router, S for switch, H for Host etc.</p>
<p><strong>4. Platform: Which type of device the neighbor is</strong></p>
<p>5. Port ID: The interface of the remote neighbor you receive CDP information</p>
<p>6. Holdtime: Decremental hold time in seconds</p>
<p>Sample output of <em>show cdp neighbors</em> command:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_vtp_sim_answer_3_2.jpg" border="0" alt="ccna_vtp_sim_answer_3_2" width="485" height="110" /></p>
<p>One thing I want to notice you is &#8220;Local Intrfce&#8221; in the image above refers to the local interface on the device you are running the &#8220;show cdp neighbors&#8221; command</p>
<p><span class="ccnaquestionsnumber">Question 4</span></p>
<p>Which switch is the root bridge for VLAN 1?</p>
<p><span class="ccnacorrectanswers">Answer:</span> Sw-DS1</p>
<p><span class="ccnaexplanation">Explanation:</span> First we use the <span class="pinkandbold">show spanning-tree vlan 1</span> to view the spanning-tree information of VLAN 1</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_vtp_sim_answer_4.jpg" border="0" alt="ccna_vtp_sim_answer_4" width="422" height="260" /></p>
<p>From the &#8220;Cost 19&#8243;, we learn that the root switch is directly connected to the Sw-Ac3 switch over a 100Mbps Ethernet link</p>
<p>Notice that if you see all of the interface roles are Desg (designated) then you can confirm <strong>Sw-Ac3</strong> switch is the root bridge for this VLAN (VLAN 1).</p>
<p>If you see there is at least one Root port in the interface roles then you can confirm Sw-Ac3 is not the root bridge because root bridge does not have root port. In this case, we notice that the root port on Sw-Ac3 switch is FastEthernet0/12, so we have to figure out which switch is associated with this port -&gt; it is the root bridge. You can verify it with the <span class="pinkandbold">show cdp neighbors</span> command:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_vtp_sim_answer_4_2.jpg" border="0" alt="ccna_vtp_sim_answer_4_2" width="485" height="110" /></p>
<p>The &#8220;Local Intrfce&#8221; column refers to the interface on the switch running &#8220;show cdp neighbors&#8221; command. In this case, Sw-DS1 is associated with interface FastEthernet0/12 -&gt; <strong>Sw-DS1</strong> is the root bridge</p>
<p><!--adsense#MiddleContent--></p>
<p><span class="ccnaquestionsnumber">Question 5</span></p>
<p>What address should be configured as the default-gateway for the host connected to interface fa 0/4 of SW-Ac3?</p>
<p><span class="ccnacorrectanswers">Answer:</span> 192.168.44.254</p>
<p><span class="ccnaexplanation">Explanation:</span></p>
<p>First we have to identify which VLAN interface Fa0/4 belongs to by the <span class="pinkandbold">show vlan</span> command</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_vtp_sim_answer_4_show_vlan.jpg" border="0" alt="ccna_vtp_sim_answer_4_show_vlan" width="447" height="152" /></p>
<p>From the exhibit we know that VLAN 44 is configured on router using sub-interface Fa0/0.44 with IP address 192.168.44.254/24</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_vtp_sim_answer_4_part_exhibit.jpg" border="0" alt="ccna_vtp_sim_answer_4_part_exhibit" width="414" height="288" /></p>
<p>Therefore the default gateway of the host should be 192.168.44.254</p>
<p><span class="ccnaquestionsnumber">Question 6</span></p>
<p><span class="ccnaquestionsnumber"> </span> From which switch did Sw-Ac3 receive VLAN information ?</p>
<p><span class="ccnacorrectanswers">Answer:</span> Sw-AC2</p>
<p><span class="ccnaexplanation">Explanation:</span> to view the VTP configuration information, use the <span class="pinkandbold">show vtp status</span> command</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_vtp_sim_answer_4_show_vtp_status.jpg" border="0" alt="ccna_vtp_sim_answer_4_show_vtp_status" width="408" height="240" /></p>
<p>So we knew Sw-Ac3 received VLAN information from 163.5.8.3 (notice:the IP address may be different). Finally we use the <span class="pinkandbold">show cdp neighbors detail</span> to find out who 163.5.8.3 is:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_vtp_sim_answer_4_show_cdp_neighbors_detail.jpg" border="0" alt="ccna_vtp_sim_answer_4_show_cdp_neighbors_detail" width="550" height="198" /></p>
<p><br class="spacer_" /></p>
<p><span class="ccnaquestionsnumber">Question 7</span></p>
<p><span class="ccnaquestionsnumber"> </span> Refer to the exibit, SwX was taken out of the production network for maintenance. It will be reconnected to the Fa 0/16 port of Sw-Ac3. What happens to the network when it is reconnected and a trunk exists between the two switches?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_vtp_sim_answer_7_new_switch.jpg" border="0" alt="ccna_vtp_sim_answer_7_new_switch" width="522" height="204" /></p>
<p>A &#8211; All VLANs except the default VLAN win be removed from all switches</p>
<p>B &#8211; All existing switches will have the students, admin, faculty, Servers, Management, Production, and      no-where VLANs</p>
<p>C &#8211; The VLANs Servers, Management, Production and no-where will replace the VLANs on SwX</p>
<p>D &#8211; The VLANs Servers, Management, Production and no-where will be removed from existing switches</p>
<p class="ccnaexplanation">Answer and Explanation:</p>
<p>First we should view the VTP configuration of switch Sw-Ac3 by using the <span class="pinkandbold">show vtp status</span> command on Sw-Ac3</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_vtp_sim_answer_7_new_switch_answer_2.jpg" border="0" alt="ccna_vtp_sim_answer_7_new_switch_answer_2" width="460" height="182" /></p>
<p>Notice that its configuration revision number is <strong>5</strong> and VTP Domain Name is <strong>home-office</strong></p>
<p>Next, from the exhibit we know that SwX has a revision number of 6, which is greater than that of Sw-Ac3 switch, and both of them have same VTP Domain Name called &#8220;home-office&#8221;.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_vtp_sim_answer_7_new_switch_answer_1.jpg" border="0" alt="ccna_vtp_sim_answer_7_new_switch_answer_1" width="522" height="204" /></p>
<p>Therefore SwX will replace vlan information on other switches with its own information. We should check vlan information of Sw-Ac3 switch with <span class="pinkandbold">show vlan</span> command</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_vtp_sim_answer_7_new_switch_answer_3.jpg" border="0" alt="ccna_vtp_sim_answer_7_new_switch_answer_3" width="454" height="210" /></p>
<p>So the correct answer is <strong>D &#8211; The VLANs Servers, Management, Production and no-where will be removed from existing switches </strong></p>
<p>Please notice that in the real CCNA exam you may see a different configuration revision of Sw-Ac3 or of SwX. In general, which switch has a higher revision number it will become the updater and other switches will overwrite their current databases with the new information received from the updater (provided that they are on the same domain and that switch is not in transparent mode). In particular, <strong>if the revision number of SwX is lower than that of Sw-Ac3, the answer should be &#8220;C &#8211; The VLANs Servers, Management, Production and no-where will replace the  VLANs on SwX&#8221;</strong>.</p>
<p>Also, some recent comments have said that the new switch&#8217;s VTP Operating Mode is <strong>Server</strong> but the answer is still the same.</p>
<p>Note: If a switch is in client mode and has a higher Revision number, it can still update other Server switches (with lower Revision numbers).</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>Out of which ports will a frame be forwarded that has source mac-address 0010.5a0c.fd86 and destination mac-address 000a.8a47.e612? (Choose three)</p>
<p>A &#8211; Fa0/8</p>
<p>B &#8211; Fa0/3</p>
<p>C &#8211; Fa0/1</p>
<p>D &#8211; Fa0/12</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B C D</p>
<p class="ccnaexplanation">Explanation:</p>
<p>First we check to see which ports the source mac-address and the destination mac-address belong to by using <span class="pinkandbold">show mac-address-table</span> command</p>
<div style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_vtp_sim_answer_8_1.jpg" border="0" alt="ccna_vtp_sim_answer_8_1" width="276" height="330" /></div>
<p>We notice that the  source mac-address 0010.5a0c.fd86 is listed in the table and it belongs to Vlan 33 but we can&#8217;t find the destination mac-address 000a.8a47.e612 in this table. In this case, the switch will flood to all ports of Vlan 33 and flood to all the trunk links, except the port it received this frame (port Fa0/6). Therefore from the output above, we can figure out it will flood this frame to <strong>Fa0/1</strong>, <strong>Fa0/3</strong> and <strong>Fa0/12</strong>.</p>
<p>Please notice that the &#8220;show mac-address-table&#8221; command just lists information that was learned by the switch, it means that there can be other ports besides Fa0/1, Fa0/3 and Fa0/12 belong to Vlan 33. You can use the<span class="pinkandbold"> show vlan</span> command to see which ports belong to vlan 33</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_vtp_sim_answer_8_2.jpg" border="0" alt="ccna_vtp_sim_answer_8_2" width="451" height="152" /></p>
<p>And we found other ports which belong to vlan 33, they are Fa0/2, Fa0/5 and Fa0/7. Our switch will flood the frame to these ports, too.</p>
<p>And we can check which trunk ports will receive this frame by the <span class="pinkandbold">show interface trunk</span> command</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_vtp_sim_answer_8_3.jpg" border="0" alt="ccna_vtp_sim_answer_8_3" width="392" height="70" /></p>
<p>-&gt; Port Fa0/9 will also receive this frame!</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>If one of the host connected to Sw-AC3 wants to send something for the ip 190.0.2.5 (or any ip that is not on the same subnet) what will be the destination  MAC address?</p>
<p class="ccnaexplanation">Answer and Explanation:</p>
<p>Because the destination address is not on the same subnet with the switch, it will forward the packet to its default gateway. So we have to find out who is the default gateway of this switch by using the<span class="pinkandbold"> show running-config</span> command</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_vtp_sim_answer_9_1.jpg" border="0" alt="ccna_vtp_sim_answer_9_1" width="200" height="154" /></p>
<p>From the output, we notice that its default-gateway is 192.168.1.254. In fact, we can easily guess that its default gateway should be a layer 3 device like a router; and in this case, the VLAN-R1 router. To verify our theory, use the<span class="pinkandbold"> show cdp neighbor detail</span> command and focus on the description of VLAN-R1 router</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_vtp_sim_answer_9_2.jpg" border="0" alt="ccna_vtp_sim_answer_9_2" width="443" height="369" /></p>
<p>From this output, we can confirm the switch&#8217;s default gateway is VLAN-R1 router (with the IP address of 192.168.1.254). And &#8220;the interface: FastEthernet0/3&#8243; tells us that the switch is connected to VLAN-R1 router through Fa0/3 port (Fa0/3 is the port on the switch).</p>
<p>Finally we just need to use the <span class="pinkandbold">show mac-address-table</span> command to find out which MAC address is associated with this interface</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_vtp_sim_answer_9_3.jpg" border="0" alt="ccna_vtp_sim_answer_9_3" width="277" height="330" /></p>
<p><em>(Notice that in the real CCNA exam the MAC address or port may be different) </em></p>
<p>And we find out the corresponding MAC address is 000a.b7e9.8360. Although there are some entries of port Fa0/3 with different Vlans but they have the same MAC address</p>
<p><!--adsense--></p>
<p>Other lab-sims on this site:</p>
<p><a href="http://www.9tut.com/70-ccna-access-list-sim">CCNA Access List Sim</a></p>
<p><a href="http://www.9tut.com/78-ccna-access-list-sim-2" target="_blank">CCNA Access List Sim 2</a></p>
<p><a href="http://www.9tut.com/52-ccna-nat-sim-question">CCNA NAT SIM Question 1</a></p>
<p><a href="http://www.9tut.com/57-ccna-nat-sim-question-2">CCNA NAT SIM Question 2</a></p>
<p><a href="http://www.9tut.com/ccna-hotspot-questions">CCNA Frame Relay Sim</a></p>
<p><a href="http://www.9tut.com/59-ccna-configuration-sim-question"> CCNA Configuration SIM Question (RIPv2 SIM)</a></p>
<p><a href="http://www.9tut.com/64-ccna-eigrp-lab-question">CCNA EIGRP LAB</a></p>
<p><a href="http://www.9tut.com/65-ccna-drag-and-drop-sim-question">CCNA Drag and Drop SIM</a></p>
<p><a href="http://www.9tut.com/66-ccna-implementation-sim">CCNA Implementation SIM</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/80-ccna-vtp-sim-question/feed</wfw:commentRss>
		<slash:comments>2424</slash:comments>
		</item>
		<item>
		<title>CCNA Access List Sim 2</title>
		<link>http://www.9tut.com/78-ccna-access-list-sim-2</link>
		<comments>http://www.9tut.com/78-ccna-access-list-sim-2#comments</comments>
		<pubDate>Wed, 15 Feb 2012 10:38:35 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Lab Sim]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=41</guid>
		<description><![CDATA[Question A network associate is adding security to the configuration of the Corp1 router. The user on host C should be able to use a web browser to access financial information from the Finance Web Server. No other hosts from the LAN nor the Core should be able to use a web browser to access [...]]]></description>
			<content:encoded><![CDATA[<p class="ccnaquestionsnumber">Question</p>
<p>A network associate is adding security to the configuration of the Corp1 router. The user on host C should be able to use a web browser to access financial information from the Finance Web Server. No other hosts from the LAN nor the Core should be able to use a web browser to access this server. Since there are multiple resources for the corporation at this location including other resources on the Finance Web Server, all other traffic should be allowed.</p>
<p>The task is to create and apply a numberd access-list with no more than three statements that will allow ONLY host C web access to the Finance Web Server. No other hosts will have web access to the Finance Web Server. All other traffic is permitted.<br />
 Access to the router CLI can be gained by clicking on the appropriate host.</p>
<p>All passwords have been temporarily set to &#8220;cisco&#8221;.<br />
 The Core connection uses an IP address of 198.18.196.65<br />
 The computers in the Hosts LAN have been assigned addresses of 192.168.33.1 &#8211; 192.168.33.254<br />
 Host A 192.168.33.1<br />
 Host B 192.168.33.2<br />
 Host C 192.168.33.3<br />
 Host D 192.168.33.4<br />
 The servers in the Server LAN have been assigned addresses of 172.22.242.17 &#8211; 172.22.242.30<br />
 The Finance Web Server is assigned an IP address of 172.22.242.23.<br />
 The Public Web Server is assigned an IP address of 172.22.242.17</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/access_list_sim2.jpg" border="0" alt="access_list_sim2.jpg" width="550" height="393" /></p>
<p><!--adsense--></p>
<p class="ccnaexplanation">Answer and Explanation</p>
<p><span id="more-41"></span></p>
<p>(Note: If you are not sure how to use access-list, please check out my access-list tutorial at: <a href="http://www.9tut.com/access-list-tutorial" target="_blank">http://www.9tut.com/access-list-tutorial</a>, also some modifications about the access-list have been reported so you should read the &#8220;Some modifications&#8221; section at the end of this question to understand more. You can also download this sim to practice (open with Packet Tracer) here: <a href="http://www.9tut.com/download/9tut.com_Access-list_sim2.pkt" target="_blank">http://www.9tut.com/download/9tut.com_Access-list_sim2.pkt</a></p>
<p><span class="blueandbold">Corp1&gt;</span><span class="pinkandbold">enable</span> (you may enter &#8220;cisco&#8221; as it passwords here)</p>
<p>We should create an access-list and apply it to the interface which is connected to the Server LAN because it can filter out traffic from both Sw-2 and Core networks. The Server LAN network has been assigned addresses of 172.22.242.17 &#8211; 172.22.242.30 so we can guess the interface connected to them has an IP address of 172.22.242.30 (.30 is the number shown in the figure). Use the &#8220;show running-config&#8221; command to check which interface has the IP address of 172.22.242.30.</p>
<p><span class="blueandbold">Corp1#</span><span class="pinkandbold">show running-config </span></p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/access_list_sim_show_running.jpg" border="0" alt="access_list_sim_show_running.jpg" width="312" height="318" /></p>
<p>We learn that interface FastEthernet0/1 is the interface connected to Server LAN network. It is the interface we will apply our access-list (for outbound direction).</p>
<p><span class="blueandbold">Corp1#</span><span class="pinkandbold">configure terminal</span></p>
<p>Our access-list needs to allow host C &#8211; 192.168.33.3 to the Finance Web Server 172.22.242.23 via web (port 80)</p>
<p><span class="blueandbold">Corp1(config)#</span><span class="pinkandbold">access-list 100 permit tcp host 192.168.33.3 host 172.22.242.23 eq 80</span></p>
<p>Deny other hosts access to the Finance Web Server via web</p>
<p><span class="blueandbold">Corp1(config)#</span><span class="pinkandbold">access-list 100 deny tcp any host 172.22.242.23 eq 80</span></p>
<p>All other traffic is permitted</p>
<p><span class="blueandbold">Corp1(config)#</span><span class="pinkandbold">access-list 100 permit ip any any</span></p>
<p>Apply this access-list to Fa0/1 interface (outbound direction)</p>
<p><span class="blueandbold">Corp1(config)#</span><span class="pinkandbold">interface fa0/1</span><br />
 <span class="blueandbold">Corp1(config-if)#</span><span class="pinkandbold">ip access-group 100 out</span></p>
<p>Notice: We have to apply the access-list to Fa0/1 interface (not Fa0/0 interface) so that the access-list can filter traffic coming from both the LAN and the Core networks. If we apply access list to the inbound interface we can only filter traffic from the LAN network.</p>
<p><strong>In the real exam</strong>, just click on host C and open its web browser. In the address box type <span class="pinkandbold">http://172.22.242.23</span> to check if you are allowed to access Finance Web Server or not. If your configuration is correct then you can access it.</p>
<p>Click on other hosts (A, B and D) and check to make sure you can&#8217;t access Finance Web Server from these hosts.</p>
<p>Finally, save the configuration</p>
<p><span class="blueandbold">Corp1(config-if)#</span><span class="pinkandbold">end</span><br />
 <span class="blueandbold">Corp1#</span><span class="pinkandbold">copy running-config startup-config</span></p>
<p>(This configuration only prevents hosts from accessing Finance Web Server via web but if this server supports other traffic &#8211; like FTP, SMTP&#8230; then other hosts can access it, too.)</p>
<p>Notice: In the real exam, you might be asked to allow other host (A, B or D) to access the Finance Web Server so please read the requirement carefully.</p>
<p><strong>Some modifications:</strong></p>
<table border="1">
<tbody>
<tr>
<td>permit host B from accessing finance server</td>
<td>access-list 100 permit ip host 192.168.33.2 host 172.22.242.23</td>
</tr>
<tr>
<td>deny host B from accessing the OTHER server (not the whole network)</td>
<td>access-list 100 deny ip host 192.168.33.2 172.22.242.16 0.0.0.15</td>
</tr>
<tr>
<td>permit everything else</td>
<td>permit ip any any</td>
</tr>
</tbody>
</table>
<table border="1">
<tbody>
<tr>
<td>Only allow Host C to to access the financial server</td>
<td>access-list 100 permit ip host 192.168.33.3 host 172.22.242.23</td>
</tr>
<tr>
<td>Not allow anyone else in any way communicate with the financial server</td>
<td>access-list 100 deny ip any host 172.22.242.23</td>
</tr>
<tr>
<td>Allow all other traffic</td>
<td>permit ip any any</td>
</tr>
</tbody>
</table>
<table border="1">
<tbody>
<tr>
<td>- Host C should be able to use a web browser(HTTP)to access the Finance Web Server</td>
<td>access-list 100 permit tcp host 192.168.33.3 host 172.22.242.23 eq 80</td>
</tr>
<tr>
<td>- Other types of access from host C to the Finance Web Server should be blocked<br />
 &#8211; All access from hosts in the Core or local LAN to the Finance Web Server should be blocked</td>
<td>access-list 100 deny ip any host 172.22.242.23<br />
 (because the requirement says we can not use more than 3 statements so we have to use &#8220;any&#8221; here for the hosts in the Core and hosts in local LAN)</td>
</tr>
<tr>
<td>- All hosts in the Core and local LAN should be able to access the Public Web Server *</td>
<td>access-list 100 permit ip any host &lt;IP of Public Web Server&gt;<br />
 (If the question asks this, surely it has to give you the IP of Public Web Server) but in the exam you should use &#8220;access-list 100 permit ip any any&#8221;
</td>
</tr>
</tbody>
</table>
<table border="1">
<tbody>
<tr>
<td>Host C should be able to use a web browser to access the financial web server</td>
<td>access-list 100 permit tcp host 192.168.33.3 host 172.22.242.23 eq 80</td>
</tr>
<tr>
<td>Other types of access from host C to the finance web server should be blocked</td>
<td>access-list 100 deny ip host 192.168.33.3 host 172.22.242.23</td>
</tr>
<tr>
<td>All hosts in the core and on the local LAN should be able to access the Public web server *</td>
<td>access-list 100 permit ip any host &lt;IP of Public Web Server&gt;<br />
 (The IP of Public Web Server will surely be given in this question) but in the exam you should use &#8220;access-list 100 permit ip any any&#8221;
</td>
</tr>
</tbody>
</table>
<p>* There are some reports about the command of &#8220;All hosts in the core and on the local LAN should be able to access the Public web server&#8221; saying that the correct command should be &#8220;access-list 100 permit ip any any&#8221;, not &#8220;access-list 100 permit ip any host (IP of Public Web Server)&#8221;. Although I believe the second command is better but maybe you should use the first command &#8220;access-list 100 permit ip any any&#8221; instead as some reports said they got 100% when using this command (even if the question gives you the IP address of Public Web Server). It is a bug in this sim.</p>
<p>(Note: Don&#8217;t forget to apply this access list to the suitable interface or you will lose points<br />
 <strong>interface fa0/1<br />
 ip access-group 100 out</strong></p>
<p>And in the exam, they may slightly change the requirements, for example host A, host B instead of host C&#8230; so make sure you read the requirement carefully and use the access-list correctly)</p>
<p>I created this sim in Packet Tracer v5.2.1 so you can practice with it. You will need new version of Packet Tracer to open it (v5.1+).</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/accesslist_sim2_packet_tracer.jpg" border="0" alt="accesslist_sim2_packet_tracer.jpg" width="619" height="369" /></p>
<p>Download this sim <a href="http://www.9tut.com/download/9tut.com_Access-list_sim2.pkt">here</a></p>
<p>Notice: After typing the commands above, if you make a &#8220;ping&#8221; from other hosts (PC0, PC1, PC3) then PC4 (Finance Web Server) can still reply because we just filter HTTP traffic, not ICMP traffic. To generate HTTP traffic, select &#8220;Web Browser&#8221; in the &#8220;Desktop&#8221; tab of these PCs. When a web browser opens, type the IP address of Finance Web Server and you can see how traffic flows in Simulation Mode.</p>
<p><img src="http://www.9tut.com/images/ccna/labsim/accesslist2_test_http.jpg" border="0" alt="accesslist2_test_http.jpg" width="1162" height="412" /></p>
<p>And notice that in the initial configuration of this sim the Core network can ping Finance Web Server. We have to create an access-list that can filter this traffic too.</p>
<p><!--adsense#MiddleContent--></p>
<p>Other lab-sims on this site:</p>
<p><a href="http://www.9tut.com/52-ccna-nat-sim-question">CCNA NAT SIM Question 1</a></p>
<p><a href="http://www.9tut.com/57-ccna-nat-sim-question-2">CCNA NAT SIM Question 2</a></p>
<p><a href="http://www.9tut.com/ccna-hotspot-questions">CCNA Frame Relay Sim</a></p>
<p><a href="http://www.9tut.com/59-ccna-configuration-sim-question"> CCNA Configuration SIM Question (RIPv2 SIM)</a></p>
<p><a href="http://www.9tut.com/80-ccna-vtp-sim-question">CCNA VTP SIM</a></p>
<p><a href="http://www.9tut.com/64-ccna-eigrp-lab-question">CCNA EIGRP LAB</a></p>
<p><a href="http://www.9tut.com/65-ccna-drag-and-drop-sim-question">CCNA Drag and Drop SIM</a></p>
<p><a href="http://www.9tut.com/66-ccna-implementation-sim">CCNA Implementation SIM</a></p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/78-ccna-access-list-sim-2/feed</wfw:commentRss>
		<slash:comments>1882</slash:comments>
		</item>
		<item>
		<title>Cisco Command Line Interface CLI</title>
		<link>http://www.9tut.com/cisco-command-line-interface-cli</link>
		<comments>http://www.9tut.com/cisco-command-line-interface-cli#comments</comments>
		<pubDate>Tue, 20 Dec 2011 04:21:36 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Knowledge]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=1024</guid>
		<description><![CDATA[In the previous tutorial we learned about the boot sequence of a Cisco router/switch. After that, the router will allow us to type commands but in different modes we can only used specific commands. So in this tutorial we will learn about the Command Line Interface (CLI) and different modes in a Cisco router/switch. Below [...]]]></description>
			<content:encoded><![CDATA[<p>In the previous tutorial we learned about the <a href="http://www.9tut.com/cisco-router-boot-sequence-tutorial" target="_blank">boot sequence of a Cisco router/switch</a>. After that, the router will allow us to type commands but in different modes we can only used specific commands. So in this tutorial we will learn about the Command Line Interface (CLI) and different modes in a Cisco router/switch.</p>
<p>Below lists popular modes in Cisco switch/router:</p>
<table border="1">
<tbody>
<tr>
<td>Router&gt;</td>
<td>User mode</td>
</tr>
<tr>
<td>Router#</td>
<td>Privileged mode</td>
</tr>
<tr>
<td>Router(config)#</td>
<td>Configuration mode</td>
</tr>
<tr>
<td>Router(config-if)#</td>
<td>Interface level (within configuration mode)</td>
</tr>
<tr>
<td>Router(config-router)#</td>
<td>Routing engine level (within configuration mode)</td>
</tr>
<tr>
<td>Router(config-line)#</td>
<td>Line level (vty, tty, async) within configuration mode</td>
</tr>
</tbody>
</table>
<p>Now let&#8217;s discuss each mode in more detail</p>
<p><!--adsense--></p>
<p><span id="more-1024"></span></p>
<p><span class="blueandbold">User mode (Unprivileged mode)</span><br />
 In most case this is the mode you will see on the screen after connecting to it. This mode provides limited access to the router. You are provided with a set of nondestructive commands that allow examination of certain router configuration parameters (mostly to view statistics). You cannot, however, make any changes to the router configuration.</p>
<p><span class="blueandbold">Privileged mode</span><br />
 Also known as the Enabled mode, this mode allows greater examination of the router and provides a more robust command set than the User mode. In Privileged mode, you have access to the configuration commands supplied in the Global Configuration mode, meaning you can edit the configuration for the router.</p>
<p><span class="blueandbold">Configuration mode</span><br />
 Also called the Global Configuration mode, this mode is entered from the Privileged mode and supplies the complete command set for configuring the router. In this mode you can access interface level, routing engine level, line level&#8230;</p>
<p class="blueandbold">Interface level</p>
<p>In some books, this level is also referred as &#8220;interface configuration mode&#8221; or &#8220;interface mode&#8221;. In fact, it is a level inside Configuration mode so you can see the &#8220;configuration&#8221; part in its prompt (config-if). This level can be accessed by typing a specific interface in Configuration mode. For example:</p>
<p><strong>Router(config)#interface fa0/0<br />
 Router(config-if)#</strong></p>
<p>But notice that the prompt doesn&#8217;t give you information about which interface is being configured so be careful with this level while you are configuring! This lack of information can make you configure wrong interface easily!</p>
<p class="blueandbold">Routing engine level</p>
<p>This is the level where we configure dynamic routing protocols (RIP, OSPF, EIGRP&#8230;). You will learn about them later in CCNA.</p>
<p class="blueandbold">Line level</p>
<p>In this level we can configure Telnet, Console, AUX port parameters. Also notice that the prompt (config-line) is used for all &#8220;lines&#8221; on the router so you must be careful about which line you are configuring!</p>
<p>Note: The &#8220;line&#8221; here can be a physical Console port or a virtual connection like Telnet.</p>
<p>The image below shows how to access each mode and popular levels inside Configuration mode:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/CLI/popular_modes.jpg" alt="popular_modes.jpg" width="410" height="160" /></p>
<p>Learning about modes is not difficult and you will get familiar with them while configuring routers &amp; switches. Just pay a little attention to them each time you practice and surely you can grasp them easily.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/cisco-command-line-interface-cli/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Cisco Router Boot Sequence Tutorial</title>
		<link>http://www.9tut.com/cisco-router-boot-sequence-tutorial</link>
		<comments>http://www.9tut.com/cisco-router-boot-sequence-tutorial#comments</comments>
		<pubDate>Fri, 16 Dec 2011 09:58:39 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Knowledge]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=1013</guid>
		<description><![CDATA[In this article we will learn about the main components of a Cisco router and how the boot process takes place. Types of memory Generally Cisco routers (and switches) contain four types of memory: Read-Only Memory (ROM): ROM stores the router’s bootstrap startup program, operating system software, and power-on diagnostic test programs (POST). Flash Memory: [...]]]></description>
			<content:encoded><![CDATA[<p>In this article we will learn about the main components of a Cisco router and how the boot process takes place.</p>
<p><span class="blueandbold">Types of memory</span></p>
<p>Generally Cisco routers (and switches) contain four types of memory:</p>
<p><strong>Read-Only Memory</strong> (ROM):  ROM stores the router’s bootstrap startup program, operating system software, and power-on diagnostic test programs (POST).</p>
<p><strong>Flash Memory</strong>: Generally referred to simply as “flash&#8221;, the IOS images are held here.  Flash is erasable and reprogrammable ROM. Flash memory content is retained by the router on reload.</p>
<p><strong>Random-Access Memory </strong>(RAM): Stores operational information such as routing tables and the running configuration file.  RAM contents are lost when the router is powered down or reloaded. By default, routers look here first for an Internetwork Operating System (IOS) file during boot.</p>
<p><strong>Non-volatile RAM</strong> (NVRAM): NVRAM holds the router’s startup configuration file.  NVRAM contents are not lost when the router is powered down or reloaded.</p>
<p><!--adsense--></p>
<p><span id="more-1013"></span></p>
<p>Some comparisons to help you remember easier:</p>
<p>+ RAM is a volatile memory so contents are lost on reload, where NVRAM and Flash contents are not.<br />
 + NVRAM holds the startup configuration file, where RAM holds the running configuration file.<br />
 + ROM contains a bootstrap program called ROM Monitor (or ROMmon). When a router is powered on, the bootstrap runs a hardware diagnostic called POST (Power-On Self Test).</p>
<p><span class="blueandbold">Router boot process</span></p>
<p><strong>The following details the router boot process:</strong><br />
 1. The router is powered on.<br />
 2. The bootstrap program (ROMmon) in ROM runs Power-On Self Test (POST)<br />
 3. The bootstrap checks the Configuration Register value to specify where to load the IOS. By default (the default value of Configuration Register is 2102, in hexadecimal), the router first looks for &#8220;boot system&#8221; commands in startup-config file. If it finds these commands, it will run boot system commands in order they appear in startup-config to locate the IOS. If not, the IOS image is loaded from Flash . If the IOS is not found in Flash, the bootstrap can try to load the IOS from TFTP server or from ROM (mini-IOS).<br />
 4. After the IOS is found, it is loaded into RAM.<br />
 5. The IOS attempts to load the configuration file (startup-config) from NVRAM to RAM. If the startup-config is not found in NVRAM, the IOS attempts to load a configuration file from TFTP. If no TFTP server responds, the router enters Setup Mode (Initial Configuration Mode).</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/Boot_Sequence/Cisco_Boot_Sequence.jpg" alt="Cisco_Boot_Sequence.jpg" width="446" height="520" /></p>
<p>And this is the process we can see on our screen when the router is turned on:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/Boot_Sequence/Cisco_router_boot_process.jpg" alt="Cisco_router_boot_process.jpg" width="580" height="902" /></p>
<p>In short, when powered on the router needs to do:</p>
<p>1. Run <span style="text-decoration: underline;">POST</span> to check hardware<br />
 2. Search for a <span style="text-decoration: underline;">valid IOS</span> (the Operating System of the router)<br />
 3. Search for a <span style="text-decoration: underline;">configuration file</span> (all the configurations applied to this router)</p>
<p><span class="blueandbold">Specify how much RAM, NVRAM and Flash of a router<br />
 </span></p>
<p>Also, from the information shown above, we can learn some information about router&#8217;s model, RAM, Flash, NVRAM memories as shown below:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/Boot_Sequence/RAM_ROM_Flash_memory.jpg" alt="RAM_ROM_Flash_memory.jpg" width="565" height="189" /></p>
<p>Note: The &#8220;show version&#8221; command also gives us this information.</p>
<p>All the above information is straight-forwarding except the information of RAM. In some series of routers, the RAM information is displayed by 2 parameters (in this case 60416K/5120K). The first parameter indicates how much RAM is in the router while the second parameter (5120K) indicates how much DRAM is being used for Packet memory. Packet memory is used for buffering packets.</p>
<p>So, from the output above we can learn:</p>
<p>Amount of RAM: 60416 + 5120 = 65536KB / 1024 = 64MB<br />
 Amount of NVRAM: 239KB<br />
 Amount of Flash: 62720KB</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/cisco-router-boot-sequence-tutorial/feed</wfw:commentRss>
		<slash:comments>64</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Basic Questions</title>
		<link>http://www.9tut.com/ccna-basic-questions</link>
		<comments>http://www.9tut.com/ccna-basic-questions#comments</comments>
		<pubDate>Sat, 12 Nov 2011 01:19:47 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=953</guid>
		<description><![CDATA[Here you will find answers to CCNA &#8211; Basic Questions Question 1 For which type of connection should a straight-through cable be used? A. switch to switch B. switch to hub C. switch to router D. hub to hub E. router to PC Answer: C Explanation To specify when we use crossover cable or straight-through [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to CCNA &#8211; Basic Questions</p>
<p><!--adsense--></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>For which type of connection should a straight-through cable be used?</p>
<p>A. switch to switch<br />
 B. switch to hub<br />
 C. switch to router<br />
 D. hub to hub<br />
 E. router to PC</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>C</p>
<p class="ccnaexplanation">Explanation</p>
<p>To specify when we use crossover cable or straight-through cable, we should remember:</p>
<p>Group 1: Router, Host, Server<br />
 Group 2: Hub, Switch<br />
 One device in group 1 + One device in group 2: use straight-through cable<br />
 Two devices in the same group: use crossover cable</p>
<p>In this case we can use straight-through cable to connect a switch to a router -&gt; C is correct.</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Which type of cable is used to connect the COM port of a host to the COM port of a router or switch?</p>
<p>A. crossover<br />
 B. straight-through<br />
 C. rolled<br />
 D. shielded twisted-pair</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>The correct question should be &#8220;Which type of cable is used to connect the COM port of a host to the CONSOLE port of a router or switch?&#8221; and the correct answer is rollover cable. But we can&#8217;t plug this rollover cable directly into our host because it will not work. We often use a RJ45 to DB9 Female cable converter as shown below:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Basic/rollover_db9cable.jpg" alt="rollover_db9cable.jpg" width="600" height="289" /></p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>What is the first 24 bits in a MAC address called?</p>
<p>A. NIC  <br />
 B. BIA  <br />
 C. OUI  <br />
 D. VAI</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>Organizational Unique Identifier (OUI) is the first 24 bits of a MAC address for a network device, which indicates the specific vendor for that device as assigned by the Institute of Electrical and Electronics Engineers, Incorporated (IEEE). This identifier uniquely identifies a vendor, manufacturer, or an organization.</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>In an Ethernet network, under what two scenarios can devices transmit? (Choose two)</p>
<p>A. when they receive a special token<br />
 B. when there is a carrier<br />
 C. when they detect no other devices are sending <br />
 D. when the medium is idle<br />
 E. when the server grants access</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C D</p>
<p class="ccnaexplanation">Explanation</p>
<p>Ethernet network is a shared environment so all devices have the right to access to the medium. If more than one device transmits simultaneously, the signals collide and can not reach the destination.</p>
<p>If a device detects another device is sending, it will wait for a specified amount of time before attempting to transmit.</p>
<p>When there is no traffic detected, a device will transmit its message. While this transmission is occurring, the device continues to listen for traffic or collisions on the LAN. After the message is sent, the device returns to its default listening mode.</p>
<p>So we can see C and D are the correct answers. But in fact &#8220;answer C &#8211; when they detect no other devices are sending&#8221; and &#8220;when the medium is idle&#8221; are nearly the same.</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Which two benefits are provided by using a hierarchical addressing network addressing scheme? (Choose two)</p>
<p>A. reduces routing table entries<br />
 B. auto-negotiation of media rates<br />
 C. efficient utilization of MAC addresses<br />
 D. dedicated communications between devices<br />
 E. ease of management and troubleshooting</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A E</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>When a host transmits data across a network to another host, which process does the data go through?</p>
<p>A. standardization<br />
 B. conversion<br />
 C. encapsulation<br />
 D. synchronization</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>C</p>
<p class="ccnaexplanation">Explanation</p>
<p>To transmit to another host, a host must go through the TCP/IP model (very similar to the OSI model). At each layer, the message is encapsulated with that layer&#8217;s header (and trailer if it has). This process is called encapsulation.</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>Which two Ethernet fiber-optic modes support distances of greater than 550 meters?</p>
<p>A. 1000BASE-CX<br />
 B. 100BASE-FX<br />
 C. 1000BASE-LX<br />
 D. 1000BASE-SX<br />
 E. 1000BASE-ZX</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C E</p>
<p class="ccnaexplanation">Explanation</p>
<p>Below lists the cabling standards mentioned above</p>
<table border="1">
<tbody>
<tr>
<td><strong>Standard</strong></td>
<td><strong>Cabling</strong></td>
<td><strong>Maximum length</strong></td>
</tr>
<tr>
<td>1000BASE-CX</td>
<td>Twinaxial cabling</td>
<td>25 meters</td>
</tr>
<tr>
<td>100BASE-FX</td>
<td>Two strands, multimode</td>
<td>400 m</td>
</tr>
<tr>
<td>1000BASE-LX</td>
<td>Long-wavelength laser, MM or<br />
 SM fiber</td>
<td>10 km (SM)<br />
 3 km (MM)</td>
</tr>
<tr>
<td>1000BASE-SX</td>
<td>Short-wavelength laser, MM fiber</td>
<td>220 m with 62.5-micron fiber; 550 m<br />
 with 50-micron fiber</td>
</tr>
<tr>
<td>1000BASE-ZX</td>
<td>Extended wavelength, SM fiber</td>
<td>100 km</td>
</tr>
</tbody>
</table>
<p>Note:</p>
<p>+ MM: Multimode<br />
 + SM: Single-mode</p>
<p>(Reference: The official self-study test preparation guide to the Cisco CCNA INTRO exam 640-821)</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>Refer to the exhibit. What type of connection would be supported by the cable diagram shown?</p>
<table border="1">
<tbody>
<tr style="background-color: #99ccff;">
<td><strong>Pin</strong></td>
<td><strong>Color</strong></td>
<td><strong>Function</strong></td>
<td><strong>Pin</strong></td>
<td><strong>Color</strong></td>
<td><strong>Function</strong></td>
</tr>
<tr>
<td style="text-align: center;">1</td>
<td>White/Green</td>
<td>TX+</td>
<td style="text-align: center;">1</td>
<td>White/Green</td>
<td>TX+</td>
</tr>
<tr>
<td style="text-align: center;">2</td>
<td>Green</td>
<td>TX-</td>
<td style="text-align: center;">2</td>
<td>Green</td>
<td>TX-</td>
</tr>
<tr>
<td style="text-align: center;">3</td>
<td>White/Orange</td>
<td>RX+</td>
<td style="text-align: center;">3</td>
<td>White/Orange</td>
<td>RX+</td>
</tr>
<tr>
<td style="text-align: center;">6</td>
<td>Orange</td>
<td>RX-</td>
<td style="text-align: center;">6</td>
<td>Orange</td>
<td>RX-</td>
</tr>
</tbody>
</table>
<p>A. PC to router<br />
 B. PC to switch<br />
 C. server to router<br />
 D. router to router</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B</p>
<p class="ccnaexplanation">Explanation</p>
<p>From the &#8220;Pin&#8221; and &#8220;Color&#8221; in the exhibit we know that this is a straight-through cable so it can be used to connect PC to switch.</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>Refer to the exhibit. What type of connection would be supported by the cable diagram shown?</p>
<table border="1">
<tbody>
<tr style="background-color: #99ccff;">
<td><strong>Pin</strong></td>
<td><strong>Color</strong></td>
<td><strong>Function</strong></td>
<td><strong>Pin</strong></td>
<td><strong>Color</strong></td>
<td><strong>Function</strong></td>
</tr>
<tr>
<td style="text-align: center;">1</td>
<td>White/Green</td>
<td>TX+</td>
<td style="text-align: center;">3</td>
<td>White/Green</td>
<td>RX+</td>
</tr>
<tr>
<td style="text-align: center;">2</td>
<td>Green</td>
<td>TX-</td>
<td style="text-align: center;">6</td>
<td>Green</td>
<td>RX-</td>
</tr>
<tr>
<td style="text-align: center;">3</td>
<td>White/Orange</td>
<td>RX+</td>
<td style="text-align: center;">1</td>
<td>White/Orange</td>
<td>TX+</td>
</tr>
<tr>
<td style="text-align: center;">6</td>
<td>Orange</td>
<td>RX-</td>
<td style="text-align: center;">2</td>
<td>Orange</td>
<td>TX-</td>
</tr>
</tbody>
</table>
<p>A. PC to router<br />
 B. PC to switch<br />
 C. server to switch<br />
 D. switch to router</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaexplanation">Explanation</p>
<p>This is a crossover cable so it can be used to connect PC and router.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Basic/rj45-crossover-cable.jpg" alt="rj45-crossover-cable.jpg" width="250" height="171" /></p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>Which two topologies are using the correct type of twisted-pair cables? (Choose two)</p>
<p>A. <img src="http://www.9tut.com/images/ccna/Basic/connection_pc_switch.jpg" alt="connection_pc_switch.jpg" width="347" height="110" /></p>
<p>B. <img src="http://www.9tut.com/images/ccna/Basic/connection_router_pc.jpg" alt="connection_router_pc.jpg" width="347" height="110" /></p>
<p>C. <img src="http://www.9tut.com/images/ccna/Basic/connection_switch_router.jpg" alt="connection_switch_router.jpg" width="347" height="110" /></p>
<p>D. <img src="http://www.9tut.com/images/ccna/Basic/connection_switch_pc.jpg" alt="connection_switch_pc.jpg" width="347" height="110" /></p>
<p>E. <img src="http://www.9tut.com/images/ccna/Basic/connection_switch_switch.jpg" alt="connection_switch_switch.jpg" width="347" height="110" /></p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D E</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-basic-questions/feed</wfw:commentRss>
		<slash:comments>693</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Basic Questions 2</title>
		<link>http://www.9tut.com/ccna-basic-questions-2</link>
		<comments>http://www.9tut.com/ccna-basic-questions-2#comments</comments>
		<pubDate>Fri, 11 Nov 2011 04:45:32 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=958</guid>
		<description><![CDATA[Here you will find answers to Basic Questions &#8211; Part 2 Question 1 What are some of the advantages of using a router to segment the network? (Choose two) A. Filtering can occur based on Layer 3 information. B. Broadcasts are eliminated. C. Routers generally cost less than switches. D. Broadcasts are not forwarded across [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to Basic Questions &#8211; Part 2</p>
<p><!--adsense--></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>What are some of the advantages of using a router to segment the network? (Choose two)</p>
<p>A. Filtering can occur based on Layer 3 information.<br />
 B. Broadcasts are eliminated.<br />
 C. Routers generally cost less than switches.<br />
 D. Broadcasts are not forwarded across the router.<br />
 E. Adding a router to the network decreases latency.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A D</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Which of the following statements describe the network shown in the graphic? (Choose two)</p>
<p style="text-align: center;"><img src="../images/ccna/Basic/collision_domain_broadcast_domain.jpg" alt="collision_domain_broadcast_domain.jpg" width="429" height="259" /></p>
<p>A. There are two broadcast domains in the network.<br />
 B. There are four broadcast domains in the network.<br />
 C. There are six broadcast domains in the network.<br />
 D. There are four collision domains in the network. <br />
 E. There are five collision domains in the network.<br />
 F. There are seven collision domains in the network.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A F</p>
<p class="ccnaexplanation">Explanation</p>
<p>Only router can break up broadcast domains so in the exhibit there are 2 broadcast domains: from e0 interface to the left is a broadcast domain and from e1 interface to the right is another broadcast domain -&gt; A is correct.</p>
<p>Both router and switch can break up collision domains so there is only 1 collision domain on the left of the router (because hub doesn&#8217;t break up collision domain) and there are 6 collision domains on the right of the router (1 collision domain from e1 interface to the switch + 5 collision domains for 5 PCs in Production) -&gt; F is correct.</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Refer to the exhibit. The two connected ports on the switch are not turning orange or green. What would be the most effective steps to troubleshoot this physical layer problem? (Choose three)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Basic/troubleshoot_physical_layer.jpg" alt="troubleshoot_physical_layer.jpg" width="182" height="284" /></p>
<p>A. Ensure that the Ethernet encapsulations match on the interconnected router and switch ports.<br />
 B. Ensure that cables A and B are straight-through cables.<br />
 C. Ensure cable A is plugged into a trunk port.<br />
 D. Ensure the switch has power.<br />
 E. Reboot all of the devices.<br />
 F. Reseat all cables.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B D F</p>
<p class="ccnaexplanation">Explanation</p>
<p>The ports on the switch are not up indicating it is a layer 1 (physical) problem so we should check cable type, power and how they are plugged in.</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>For what two purposes does the Ethernet protocol use physical addresses? (Choose two)</p>
<p>A. to uniquely identify devices at Layer 2<br />
 B. to allow communication with devices on a different network<br />
 C. to differentiate a Layer 2 frame from a Layer 3 packet<br />
 D. to establish a priority system to determine which device gets to transmit first<br />
 E. to allow communication between different devices on the same network<br />
 F. to allow detection of a remote device when its physical address is unknown</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A E</p>
<p class="ccnaexplanation">Explanation</p>
<p>Physical addresses or MAC addresses are used to identify devices at layer 2 -&gt; A is correct.</p>
<p>MAC addresses are only used to communicate on the same network. To communicate on different network we have to use Layer 3 addresses (IP addresses) -&gt; B is not correct; E is correct.</p>
<p>Layer 2 frame and Layer 3 packet can be recognized via headers. Layer 3 packet also contains physical address -&gt; C is not correct.</p>
<p>On Ethernet, each frame has the same priority to transmit by default -&gt; D is not correct.</p>
<p>All devices need a physical address to identify itself. If not, they can not communicate -&gt; F is not correct.</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Refer to the exhibit. Two buildings on the San Jose campus of a small company must be connected to use Ethernet with a bandwidth of at least 100 Mbps. The company is concerned about possible problems from voltage potential difference between the two buildings. Which media type should be used for the connection?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Basic/Fiber-optic.jpg" alt="Fiber-optic.jpg" width="315" height="140" /></p>
<p><br class="spacer_" /></p>
<p>A. UTP cable<br />
 B. STP cable<br />
 C. Coaxial cable<br />
 D. Fiber optic cable</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>D</p>
<p class="ccnaexplanation">Explanation</p>
<p>Because the company has problem about voltage potential difference between the two buildings so they should connect via fiber optic cable which uses light pulses to transmit information instead of using electronic pulses.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>Which command can be used from a PC to verify the connectivity between host that connect through path?</p>
<p>A. tracert address<br />
 B. ping address<br />
 C. arp address<br />
 D. traceroute address</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaexplanation">Explanation</p>
<p>To check the connectivity between a host and a destination (through some networks) we can use both &#8220;tracert&#8221; and &#8220;ping&#8221; commands. But the difference between these 2 commands is the &#8220;tracert&#8221; command can display a list of near-side router interfaces in the path between the source and the destination. Therefore the best answer in this case is A &#8211; tracert address.</p>
<p>Note: &#8220;traceroute&#8221; command has the same function of the &#8220;tracert&#8221; command but it is used on Cisco routers only, not on a PC.</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>Refer to the exhibit. A network engineer is troubleshooting an internet connectivity problem on the computer. What causing the problem?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Basic/ping_unreachable.jpg" alt="ping_unreachable.jpg" width="410" height="320" /><br class="spacer_" /></p>
<p>A. wrong DNS server<br />
 B. wrong default gateway<br />
 C. incorrect IP address<br />
 D. incorrect subnet mask</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>The IP address of the PC (192.168.11.2/24) is not on the same network with its gateway 192.168.1.1 -&gt; C is correct.</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>How many broadcast domains are shown in the graphic assuming only the default vlan is configured on the switches?</p>
<p style="text-align: center;"><img src="../images/ccna/Basic/broadcast_domains.jpg" alt="broadcast_domains.jpg" width="540" height="200" /></p>
<p>A. one<br />
 B. six<br />
 C. twelve<br />
 D. two</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A</p>
<p class="ccnaexplanation">Explanation</p>
<p>Only router can break up broadcast domains but in this exhibit no router is used so there is only 1 broadcast domain.</p>
<p>For your information, there are 7 collision domains in this exhibit (6 collision domains between hubs &amp; switches + 1 collision between the two switches).</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>Refer to the exhibit.</p>
<table style="background-color: #ccccff;" border="1">
<tbody>
<tr>
<td>
<p>PC&gt; tracert 10.16.176.23<br />
 Tracing route to 10.16.176.23 over a maximum of 30 hops</p>
<p>1 31 ms 31 ms 32ms 172.16.182.1<br />
 2 62 ms 62 ms 62 ms 192.1681.6<br />
 3 93 ms 92 ms 34 ms 192.168.1.10<br />
 4 125 ms 110ms 125ms 10.16.176.23</p>
<p>Trace complete.</p>
</td>
</tr>
</tbody>
</table>
<p>Host A has tested connectivity to a remote network. What is the default gateway for host A?</p>
<p>A. 172.16.182.1<br />
 B. 192.168.1.1<br />
 C. 10.16.176.1<br />
 D. 192.168.1.6</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A</p>
<p class="ccnaexplanation">Explanation</p>
<p>It will list all the routers (from nearest to farthest) it passes through until it reaches its destination so the first hop is its nearest IP. If we ping from a PC, it is also the default gateway for that PC -&gt; A is correct.</p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>What functions do routers perform in a network? (Choose two)</p>
<p>A. packet switching<br />
B. access layer security<br />
C. path selection<br />
D. VLAN membership assignment <br />
E. bridging between LAN segments<br />
F. microsegmentation of broadcast domains</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A C</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-basic-questions-2/feed</wfw:commentRss>
		<slash:comments>321</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Cisco IOS Questions</title>
		<link>http://www.9tut.com/ccna-cisco-ios-questions</link>
		<comments>http://www.9tut.com/ccna-cisco-ios-questions#comments</comments>
		<pubDate>Mon, 07 Nov 2011 16:55:27 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=994</guid>
		<description><![CDATA[Here you will find answers to Cisco IOS Questions Note: If you are not sure about the boot sequence of a router/switch, please read my Cisco Router Boot Sequence Tutorial. Question 1 How does using the service password encryption command on a router provide additional security? A. by encrypting all passwords passing through the router [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to Cisco IOS Questions</p>
<p><!--adsense--></p>
<p>Note: If you are not sure about the boot sequence of a router/switch, please read my <a href="http://www.9tut.com/cisco-router-boot-sequence-tutorial" target="_blank">Cisco Router Boot Sequence Tutorial</a>.</p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>How does using the service password encryption command on a router provide additional security?</p>
<p>A. by encrypting all passwords passing through the router<br />
 B. by encrypting passwords in the plain text configuration file<br />
 C. by requiring entry of encrypted passwords for access to the device<br />
 D. by configuring an MD5 encrypted key to be used by routing protocols to validate routing exchanges<br />
 E. by automatically suggesting encrypted passwords for use in configuring the router</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>By using this command, all the (current and future) passwords are encrypted. This command is primarily useful for keeping unauthorized individuals from viewing your password in your configuration file.</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Refer to the diagram. What is the largest configuration file that can be stored on this router?</p>
<table border="1">
<tbody>
<tr>
<td>
<p>R# show version<br />
 Cisco IOS Software. 1841 Software (C1841-IPBASE-M}, Version 12.4(1a), RELEASE SOFTWARE (fc2)<br />
 Technical Support: http://www.cisco.com/techsupport <br />
 Copyright (c) 1986*2005 by Cisco Systems, Inc.<br />
 Compiled Fri 27-May-0512:32 by hqluong</p>
<p>ROM: System Bootstrap. Version 12.3(8r)T8, RELEASE SOFTWARE (fc1)</p>
<p>N-East uptime is 5 days, 49 minutes<br />
 System returned to ROM by reload at 15:17:00 UTC Thu Jun 8 2006 <br />
 System image file is &#8220;flash:c1841-ipbase-mz.124-1a.bin&#8221;</p>
<p>Cisco 1841 (revision 5.0) with 114688K/16384K bytes of memory.<br />
 Processor board ID FTX0932W21Y<br />
 2 FastEthernet interfaces<br />
 2 Low-speed serial(sync/async) interfaces<br />
 DRAM configuration is 64 bits wide with parity disabled.<br />
 191K bytes of NVRAM.<br />
 31360K bytes of ATA CompactFlash (Read/Write)</p>
<p>Configuration register Is 0&#215;2102</p>
<p>R#</p>
</td>
</tr>
</tbody>
</table>
<p>A. 191K bytes<br />
 B. 16384K bytes<br />
 C. 31369K bytes<br />
 D. 114688K bytes</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A</p>
<p class="ccnaexplanation">Explanation</p>
<p>Non-volatile RAM (NVRAM) holds the router’s startup configuration file. NVRAM contents are not lost when the router is powered down or reloaded.</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Which command shows system hardware and software version information?</p>
<p>A. show configuration<br />
 B. show environment<br />
 C. show inventory<br />
 D. show platform<br />
 E. show version</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>E</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Refer to the exhibit. If number 2 is selected from the setup script, what happens when the user runs setup from a privileged prompt?</p>
<table border="1">
<tbody>
<tr>
<td>
<p>[0] Go to the IOS command prompt without saving this config.<br />
 [1] Return back to the setup without saving this config.<br />
 [2] Save this configuration to nvram and exit.</p>
<p>Enter your selection [2]:</p>
</td>
</tr>
</tbody>
</table>
<p>A. Setup is additive and any changes will be added to the config script.<br />
 B. Setup effectively starts the configuration over as if the router was booted for the first time.<br />
 C. Setup will not run if an enable secret password exists on the router.<br />
 D. Setup will not run, because it is only viable when no configuration exists on the router.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Which command shows your active Telnet connections?</p>
<p>A. show sessions <br />
 B. show cdp neighbors<br />
 C. show users <br />
 D. show queue</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>Which command can you use to determine the cisco ios feature set on a cisco router?</p>
<p>A. show version<br />
 B. dir flash:include ios<br />
 C. show environment<br />
 D. show diag<br />
 E. show inventory</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>A system administrator types the command to change the hostname of a router. Where on the Cisco IFS is that change stored?</p>
<p>A. NVRAM <br />
 B. RAM<br />
 C. FLASH <br />
 D. ROM<br />
 E. PCMCIA</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B</p>
<p class="ccnaexplanation">Explanation</p>
<p>The change is only reflected in the running-config on RAM. It can be lost if we reset the router without saving it.</p>
<p>Note: Cisco IFS means &#8220;Cisco IOS File System&#8221;</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>Before installing a new, upgraded version of the IOS, what should be checked on the router, and which command should be used to gather this information? (Choose two)</p>
<p>A. the amount of available ROM<br />
 B. the amount of available flash and RAM memory<br />
 C. the version of the bootstrap software present on the router<br />
 D. show version<br />
 E. show processes<br />
 F. show running-config</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B D</p>
<p class="ccnaexplanation">Explanation</p>
<p>When upgrading new version of the IOS we need to copy the IOS to the Flash so first we have to check if the Flash has enough memory or not. Also running the new IOS may require more RAM than the older one so we should check the available RAM too. We can check both with the &#8220;show version&#8221; command.</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>Refer to the exhibit. A network administrator configures a new router and enters the copy startup-config running-config on the router. The network administrator powers down the router and sets it up at a remote location. When the router starts, it enter the system configuration dialog as shown. What is the cause of the problem?</p>
<table border="1">
<tbody>
<tr>
<td>
<p>— System Configuration Dialog —<br />
 Would you like to enter the initial configuration dialog? [yes/no]: % Please answer yes&#8217; or &#8216;no&#8217;.<br />
 Would you like to enter the initial configuration dialog? [yes/ho]: n</p>
<p>Would you like to terminate autoinstall? [yes]:</p>
<p>Press RETURN to get started!</p>
</td>
</tr>
</tbody>
</table>
<p>A. The network administrator failed to save the configuration.<br />
 B. The configuration register is set to 0&#215;2100.<br />
 C. The boot system flash command is missing from the configuration.<br />
 D. The configuration register is set to 0&#215;2102.<br />
 E. The router is configured with the boot system startup command.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaexplanation">Explanation</p>
<p>The &#8220;System Configuration Dialog&#8221; appears only when no startup configuration file is found. The network administrator has made a mistake because the command &#8220;copy startup-config running-config&#8221; will copy the startup config (which is empty) over the running config (which is configured by the administrator). So everything configured was deleted.</p>
<p>Note: We can tell the router to ignore the start-up configuration on the next reload by setting the register to 0&#215;2142. This will make the &#8220;System Configuration Dialog&#8221; appear at the next reload.</p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>Refer to the exhibit. What can be determined about the router from the console output?</p>
<table border="1">
<tbody>
<tr>
<td>
<p>1 FastEthernet/IEEE 802.3 interface(s)<br />
 125K bytes of non-volatile configuration memory.<br />
 65536K bytes of ATA PCMCIA card at slot 0 (Sector size 512 bytes) . <br />
 8192K bytes of Flash internal SIMM (Sector size 256K).</p>
<p>&#8212;&#8212;&#8212;-System Configuration Dialog  &#8212;&#8212;&#8212;-</p>
<p>Would you like to enter the initial configuration dialog? [yes/no]:</p>
</td>
</tr>
</tbody>
</table>
<p>A. No configuration file was found in NVRAM.<br />
 B. No configuration file was found in flash.<br />
 C. No configuration file was found in the PCMCIA card.<br />
 D. Configuration file is normal and will load in 15 seconds.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaexplanation">Explanation</p>
<p>When no startup configuration file is found in NVRAM, the System Configuration Dialog will appear to ask if we want to enter the initial configuration dialog or not.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-cisco-ios-questions/feed</wfw:commentRss>
		<slash:comments>106</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Cisco IOS Questions 2</title>
		<link>http://www.9tut.com/ccna-cisco-ios-questions-2</link>
		<comments>http://www.9tut.com/ccna-cisco-ios-questions-2#comments</comments>
		<pubDate>Sun, 06 Nov 2011 03:08:38 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=1000</guid>
		<description><![CDATA[Here you will find answers to Cisco IOS &#8211; Part 2 Note: If you are not sure about the boot sequence of a router/switch, please read my Cisco Router Boot Sequence Tutorial. Question 1 When you are logged into a switch, which prompt indicates that you are in privileged mode? A. % B. @ C. [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to Cisco IOS &#8211; Part 2</p>
<p><!--adsense--></p>
<p>Note: If you are not sure about the boot sequence of a router/switch, please read my <a href="http://www.9tut.com/cisco-router-boot-sequence-tutorial" target="_blank">Cisco Router Boot Sequence Tutorial</a>.</p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>When you are logged into a switch, which prompt indicates that you are in privileged mode?</p>
<p>A. %<br />
 B. @<br />
 C. ><br />
 D. $<br />
 E. #</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> E</p>
<p class="ccnaexplanation">Explanation</p>
<p>The &#8220;#&#8221; (like Switch#) indicates you are in privileged mode while the &#8220;>&#8221; indicates you are in user mode.</p>
<p>Note: The &#8220;#&#8221; sign in &#8220;Switch(config)#&#8221; indicates this is only accessible at privileged EXEC mode. The &#8220;(config)#&#8221; part indicates we are in configuration mode.</p>
<p>Below lists popular modes in Cisco switch/router:</p>
<table border="1">
<tbody>
<tr>
<td>Router></td>
<td>User EXEC mode</td>
</tr>
<tr>
<td>Router#</td>
<td>Privileged EXEC mode</td>
</tr>
<tr>
<td>Router(config)#</td>
<td>Configuration mode</td>
</tr>
<tr>
<td>Router(config-if)#</td>
<td>Interface level (within configuration mode)</td>
</tr>
<tr>
<td>Router(config-router)#</td>
<td>Routing engine level (within configuration mode)</td>
</tr>
<tr>
<td>Router(config-line)#</td>
<td>Line level (vty, tty, async) within configuration mode</td>
</tr>
</tbody>
</table>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Which command is used to copy the configuration from RAM into NVRAM?</p>
<p>A. copy running-config startup-config<br />
 B. copy startup-config: running-config:<br />
 C. copy running config startup config<br />
 D. copy startup config running config<br />
 E. write terminal</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaexplanation">Explanation</p>
<p>The running-config is saved in RAM while the startup-config is saved in NVRAM. So in order to copy the configuration from RAM into NVRAM we use the command &#8220;copy running-config startup-config&#8221; (syntax: copy <from> <to>).</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Which command is used to load a configuration from a TFTP server and merge the configuration into RAM?</p>
<p>A. copy running-config: TFTP: <br />
 B. copy TFTP: running-config <br />
 C. copy TFTP: startup-config <br />
 D. copy startup-config: TFTP:</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>The syntax of the copy command is &#8220;copy <from> <to>&#8221; so to copy a configuration from a TFTP server into RAM we use the command &#8220;copy TFTP: running-config&#8221;.</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>There are no boot system commands in a router configuration in NVRAM. What is the fallback sequence that router will use to find an IOS during reload?</p>
<p>A. Flash, TFTP server, ROM<br />
 B. Flash, NVRAM, ROM<br />
 C. ROM, NVRAM, TFTP server<br />
 D. NVRAM, TFTP server, ROM<br />
 E. TFTP server, Flash, NVRAM</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaexplanation">Explanation</p>
<p>When you turn the router on, it runs through the following boot process.</p>
<p>The Power-On Self Test (POST) checks the router&#8217;s hardware. When the POST completes successfully, the System OK LED indicator comes on.<br />
 The router checks the configuration register to identify where to load the IOS image from. A setting of 0&#215;2102 means that the router will use information in the startup-config file to locate the IOS image. If the startup-config file is missing or does not specify a location, it will check the following locations for the IOS image:</p>
<p> 1. Flash (the default location)<br />
2. TFTP server<br />
3. ROM (used if no other source is found)</p>
<p> The router loads the configuration file into RAM (which configures the router). The router can load a configuration file from:</p>
<p> + NVRAM (startup-configuration file)<br />
 + TFTP server<br />
 If a configuration file is not found, the router starts in setup mode.</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>A Cisco router is booting and has just completed the POST process.It is now ready to find and load an IOS image. What function does the router perform next?</p>
<p>A. It checks the configuration register<br />
 B. It attempts to boot from a TFTP server<br />
 C. It loads the first image file in flash memory<br />
 D. It inspects the configuration file in NVRAM for boot instructions</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaexplanation">Explanation</p>
<p>Same as Question 4</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>Refer to the partial command output shown. Which two statements are correct regarding the router hardware? (Choose two)</p>
<table border="1">
<tbody>
<tr>
<td>
<p>system image file is &#8220;flash:c2600-do3s-mz.120-5.T1&#8243;</p>
<p>Cisco 2621 (MPC860) processor (revision 0&#215;600) with 53248K/12288K bytes of memory<br />
 Processor board ID JAD05280307 (3536592999)<br />
 M860 processor: part number 0, mask 49 <br />
 Bridging software.<br />
 X.25 software, version 3.0.0.<br />
 2 FastEthernet/IEEE 802.3 interface(s)<br />
 2 Serial(sync/async) network interface(s)<br />
 2 Low-speed serial(sync/async) network interface(s)<br />
 16 terminal line(s)</p>
<p>32K bytes of non-volatile configuration memory.<br />
 16384K bytes of processor board system flash (Read/Write)</p>
</td>
</tr>
</tbody>
</table>
<p>A. Total RAM size is 32 KB<br />
 B. Total RAM size is 16384 KB (16 MB)<br />
 C. Total RAM size is 65536 KB (64 MB)<br />
 D. Flash size is 32 KB<br />
 E. Flash size is 16384 KB (16 MB).<br />
 F. Flash size is 65536 KB (64 MB)</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C E</p>
<p class="ccnaexplanation">Explanation</p>
<p>The line &#8220;Cisco 2621 (MPC860) processor (revision 0&#215;600) with <strong>53248K/12288K</strong> bytes of memory&#8221; tells how much RAM in your router. The first parameter (53248) specifies how much Dynamic RAM (DRAM) in your router while the second parameter (12288K) indicates how much DRAM is being used for Packet memory (used by incoming and outgoing packets) in your router. Therefore you have to add both numbers to find the amount of DRAM available on your router -> C is correct.</p>
<p>Note: Cisco 4000, 4500, 4700, and 7500 routers have separate DRAM and Packet memory, so you only need to look at the first number to find out the DRAM in that router.</p>
<p>The flash size is straightforward from the line &#8220;16384K bytes of processor board system flash (Read/Write)&#8221; -> E is correct.</p>
<p>(Reference: <a href="http://www.cisco.com/en/US/products/sw/iosswrel/ps1834/products_tech_note09186a00800fb9d9.shtml" target="_blank">http://www.cisco.com/en/US/products/sw/iosswrel/ps1834/products_tech_note09186a00800fb9d9.shtml</a>)</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>Which router IOS commands can be used to troubleshoot LAN connectivity problems? (Choose three)</p>
<p>A. ping<br />
 B. tracert<br />
 C. ipconfig<br />
 D. show ip route<br />
 E. winipcfg<br />
 F. show interfaces</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A D F</p>
<p class="ccnaexplanation">Explanation</p>
<p>The ping command can be used to test if the local device can reach a specific destination -> A is correct.</p>
<p>&#8220;tracert&#8221; is not a valid command in Cisco IOS commands, the correct command should be &#8220;traceroute&#8221; -> B is not correct.</p>
<p>The ipconfig command is not a valid command in Cisco IOS too -> C is not correct.</p>
<p>The &#8220;show ip route&#8221; command can be used to view the routing table of the router. It is a very useful command to find out many connectivity problems (like directly connected networks, learned network via routing protocols&#8230;) -> D is correct.</p>
<p>&#8220;winipcfg&#8221; is an old tool in Windows 95/98 to view IP settings of the installed network interfaces. But it is not a valid command in Cisco IOS commands -> E is not correct.</p>
<p>The &#8220;show interfaces&#8221; command is used to check all the interfaces on the local device only. It has very limited information to trouble LAN connectivity problem but it is the most reasonable to choose -> F is acceptable.</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>Which two locations can be configured as a source for the IOS image in the boot system command? (Choose two)</p>
<p>A. RAM<br />
 B. NVRAM<br />
 C. flash memory<br />
 D. HTTP server<br />
 E. TFTP server<br />
 F. Telnet server</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C E</p>
<p class="ccnaexplanation">Explanation</p>
<p>The following locations can be configured as a source for the IOS image:</p>
<ol>
<li>+ Flash (the default location) </li>
<li>+ TFTP server </li>
<li>+ ROM (used if no other source is found)</li>
<li>(Please read the explanation of Question 4 for more information)</li>
</ol>
<p class="ccnaquestionsnumber">Question 9</p>
<p>Refer to the exhibit. Why is flash memory erased prior to upgrading the IOS image from the TFTP server?</p>
<table border="1">
<tbody>
<tr>
<td>
<p>Router# <strong>copy tftp flash</strong><br />
 Address or name of remote host []? 192.168.2.167 <br />
 Source filename []? c1600-k8sy-mz.123-16a.bin <br />
 Destination filename [c1600-k8sy-mz.123-16a.bin]?<br />
 Accessing tftp://192.168.2.167/ c1600-k8sy-mz.l23-16a.bin&#8230;<br />
 Erasing flash before copying? [confirm]<br />
 Erasing the flash filesystem will remove all files! continue? [confirm] <br />
 Erasing device    <br />
 Eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee <br />
 Eeeeeeeeeeeeeeeeeeeeeeeeeeeeeee &#8230;erased <br />
 Erase of flash: complete<br />
 Loading c1600-k8sy-mz.l23-16a.bin from 192.168.2.167 (via Ethernet0):<br />
 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!<br />
 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!<br />
 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!<br />
 [OK - 6888962/13777920 bytes]</p>
<p>verifying checksum&#8230; OK (0x7BF3)<br />
 6888962 bytes copied in 209.920 secs (32961 bytes/sec)<br />
 Router#</p>
</td>
</tr>
</tbody>
</table>
<p>A. The router cannot verify that the Cisco IOS image currently in flash is valid<br />
 B. Flash memory on Cisco routers can contain only a single IOS image.<br />
 C. Erasing current flash content is requested during the copy dialog.<br />
 D. In order for the router to use the new image as the default, it must be the only IOS image in flash.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>During the copy process, the router asked &#8220;Erasing flash before copying? [confirm]&#8221; and the administrator confirmed (by pressing Enter) so the flash was deleted.</p>
<p>Note: In this case, the flash has enough space to copy a new IOS without deleting the current one. The current IOS is deleted just because the administrator wants to do so. If the flash does not have enough space you will see an error message like this:</p>
<table border="1">
<tbody>
<tr>
<td>%Error copying tftp://192.168.2.167/ c1600-k8sy-mz.l23-16a.bin (Not enough space on device)</td>
</tr>
</tbody>
</table>
<p class="ccnaquestionsnumber">Question 10</p>
<p>Which command reveals the last method used to powercycle a router?</p>
<p>A. show reload<br />
 B. show boot<br />
 C. show running-config<br />
 D. show version</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation</p>
<p>The &#8220;show version&#8221; command can be used to show the last method to powercycle (reset) a router</p>
<p><img src="http://www.9tut.com/images/ccna/Cisco_IOS/show_version.gif" alt="show_version.gif" width="580" height="636" /></p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-cisco-ios-questions-2/feed</wfw:commentRss>
		<slash:comments>47</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Cisco IOS Questions 3</title>
		<link>http://www.9tut.com/ccna-cisco-ios-questions-3</link>
		<comments>http://www.9tut.com/ccna-cisco-ios-questions-3#comments</comments>
		<pubDate>Sat, 05 Nov 2011 12:40:09 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=1006</guid>
		<description><![CDATA[Here you will find answers to Cisco IOS Questions &#8211; Part 3 Note: If you are not sure about the boot sequence of a router/switch, please read my Cisco Router Boot Sequence Tutorial. Question 1 Refer to the exhibit. A router boots to the prompt shown in the exhibit. What does this signify, and how [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to Cisco IOS Questions &#8211; Part 3</p>
<p><!--adsense--></p>
<p>Note: If you are not sure about the boot sequence of a router/switch, please read my <a href="http://www.9tut.com/cisco-router-boot-sequence-tutorial" target="_blank">Cisco Router Boot Sequence Tutorial</a>.</p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Refer to the exhibit. A router boots to the prompt shown in the exhibit. What does this signify, and how should the network administrator respond?</p>
<table border="1">
<tbody>
<tr>
<td>rommon 1&gt;</td>
</tr>
</tbody>
</table>
<p>A. This prompt signifies that the configuration file was not found in NVRAM. The network administrator should follow the prompts to enter a basic configuration.<br />
 B. The prompt signifies that the configuration file was not found in flash memory. The network administrator should use TFTP to transfer a configuration file to the router.<br />
 C. The prompt signifies that the IOS image in flash memory is invalid or corrupted. The network administrator should use TFTP to transfer an IOS image to the router.<br />
 D. The prompt signifies that the router could not authenticate the user. The network administrator should modify the IOS image and reboot the router.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>If a Cisco router boots in ROMmon mode, it means:</p>
<p>+ The value of the configuration register is set to XXX<strong>0 </strong>(the boot field &#8211; fourth bit &#8211; is 0)<br />
 + The router is unable to locate a valid Cisco IOS software image (you can use the &#8220;dir flash:&#8221; command in ROMmon mode to look for the IOS in the Flash then try to boot that flash with the &#8220;boot flash:&lt;IOS image&gt;&#8221; command).</p>
<p>If the IOS image is invalid or corrupted, the fastest way to re-install a new Cisco IOS software image on the router is to copy a new one from TFTP (with &#8220;tftpdnld&#8221; command).</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>What should be done prior to backing up an IOS image to a TFTP server? (Choose three)</p>
<p>A. Make sure that the server can be reached across the network.<br />
 B. Check that authentication for TFTP access to the server is set.<br />
 C. Assure that the network server has adequate space for the IOS image.<br />
 D. Verify file naming and path requirements.<br />
 E. Make sure that the server can store binary files.<br />
 F. Adjust the TCP window size to speed up the transfer.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A C D</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Which two privileged mode cisco ios commands can be used to determine a cisco router chassis serial number? (choose two)</p>
<p>A. show inventory <br />
 B. show flash filesys<br />
 C. dir flash:|include chassis <br />
 D. show diag<br />
 E. show controllers</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A D</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Which command helps a network administrator to manage memory by displaying flash memory and NVRAM utilization?</p>
<p>A. show secure<br />
 B. show file systems<br />
 C. show flash<br />
 D. show version</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>A network administrator changes the configuration register to 0&#215;2142 and reboots the router. What are two results of making this change? (Choose two)</p>
<p>A. The IOS image will be ignored.<br />
 B. The router will prompt to enter initial configuration mode.<br />
 C. The router will boot to ROM.<br />
 D. Any configuration entries in NVRAM will be ignored.<br />
 E. The configuration in flash memory will be booted.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B D</p>
<p class="ccnaexplanation">Explanation</p>
<p>The router bypasses the startup configuration stored in NVRAM during its boot sequence so the router will enter initial configuration mode. This feature is normally used during a password recovery procedure.</p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>Refer to the exhibit. For what two reasons has the router loaded its IOS image from the location that is shown? (Choose two)</p>
<table border="1">
<tbody>
<tr>
<td>
<p>Router1&gt; show version<br />
 Cisco Internetwork Operating System Software<br />
 IOS &#8482; 7200 Software (C7200-J-M), Experimental Version 11.3tl997091S:1647S2) <br />
 [hampton-nitro-baseline 249]<br />
 Copyright (c) 1986-1997 by cisco Systems, Inc.<br />
 Compiled Wed 08-0ct-97 06:39 by hampton<br />
 Image text-base: 0&#215;60008900, data-base: 0x60B98000</p>
<p>ROM: System Bootstrap, Version 11.1(11855) [beta 2], INTERIM SOFTWARE <br />
 BOOTPLASH: 7200 Software (C7200-BOOT-M), Version 11.1(472), RELEASE  SOFTWARE (fcl)</p>
<p>Router1 uptime is 23 hours, 33 minutes<br />
 System restarted by abort at PC 0x6022322C at 10:50:SS PDT Tue Oct 21 1997  <br />
 System image file is  &#8220;tftp://112.16.1.129/hampton/nitro/c7200-j-mz&#8221;</p>
<p>cisco 7206 (NPE150) processor with 57344K/8192K bytes of memory.</p>
<p>&lt;output omitted&gt;</p>
<p>Configuration register is 0&#215;2102</p>
</td>
</tr>
</tbody>
</table>
<p>A. Router1 has specific boot system command that instruct it to load IOS from TFTP server.<br />
 B. Router1 is acting as a TFTP server for other routers.<br />
 C. Router1 cannot locate a valid IOS image in flash memory.<br />
 D. Router1 defaulted to ROMMON mode and loaded the IOS image from a TFTP sewer.<br />
 E. Cisco routers will first attempt to load a image from TFTP for management purposes.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A C</p>
<p class="ccnaexplanation">Explanation</p>
<p>When powered on, the router first checks its hardware via Power-On Self Test (POST). Then it checks the configuration register to identify where to load the IOS image from. In the output above we learn that the Configuration register value is 0&#215;2102 so the router will try to boot the system image from Flash memory first.</p>
<p>But we also see a line &#8220;System image file is &#8220;tftp://112.16.1.129/hampton/nitro/c7200-j-mz&#8221;. Please notice that this line tells us the image file that the device last started. In this case it is from a TFTP server. Therefore we can deduce that the router could not load the IOS image from the flash and the IOS image has been loaded from TFTP server.</p>
<p>Note:</p>
<p>If the startup-config file is missing or does not specify a location, it will check the following locations for the IOS image:</p>
<p>+ Flash (the default location)<br />
 + TFTP server<br />
 + ROM (used if no other source is found)</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-cisco-ios-questions-3/feed</wfw:commentRss>
		<slash:comments>52</slash:comments>
		</item>
		<item>
		<title>OSI Model Tutorial</title>
		<link>http://www.9tut.com/osi-model-tutorial</link>
		<comments>http://www.9tut.com/osi-model-tutorial#comments</comments>
		<pubDate>Wed, 02 Nov 2011 15:57:42 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Knowledge]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=912</guid>
		<description><![CDATA[Welcome to the most basic tutorial for networker! Understanding about OSI model is one of the most important tools to help you grasp how networking devices like router, switch, PC&#8230; work. Let&#8217;s take an example in our real life to demonstrate the OSI model. Maybe you have ever sent a mail to your friend, right? [...]]]></description>
			<content:encoded><![CDATA[<p>Welcome to the most basic tutorial for networker! Understanding about OSI model is one of the most important tools to help you grasp how networking devices like router, switch, PC&#8230; work.</p>
<p>Let&#8217;s take an example in our real life to demonstrate the OSI model. Maybe you have ever sent a mail to your friend, right? To do it, you have to follow these steps:</p>
<p>1. Write your letter<br />
 2. Insert it into an envelope<br />
 3. Write information about sender and receiver on that envelope<br />
 4. Stamp it<br />
 5. Go to the post office and drop it into a mail inbox</p>
<p>From the example above, I want to imply we have to go through some steps in a specific order to complete a task. It is also applied for two PCs to communicate with each other. They have to use a predefined model, named OSI, to complete each step. There are 7 steps in this model as listed below:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/OSI/OSI_Model.jpg" alt="OSI_Model.jpg" width="190" height="290" /></p>
<p>This is also the well-known table of the OSI model so you must take time to learn by heart. A popular way to remember this table is to create a fun sentence with the first letters of each layer. For example: <strong>A</strong>ll <strong>P</strong>eople <strong>S</strong>eem <strong>T</strong>o <strong>N</strong>eed <strong>D</strong>ata <strong>P</strong>rocessing or a more funny sentence sorted from layer 1 to layer 7: <strong>P</strong>lease <strong>D</strong>o <strong>N</strong>ot <strong>T</strong>hrow <strong>S</strong>ausage <strong>P</strong>izza <strong>A</strong>way.</p>
<p><span id="more-912"></span></p>
<p><!--adsense--></p>
<p>There are two notices about this table:</p>
<p>1. First, the table is arranged from top to bottom (numbering from 7 to 1). Each step is called a &#8220;layer&#8221; so we have 7 layers (maybe we usually call them &#8220;layers&#8221; to make them more&#8230; technical ^^).</p>
<p>When a device wants to send information to another one, its data must go from top to bottom layer. But when a device receives this information, it must go from bottom to top to &#8220;decapsulate&#8221; it. In fact, the reverse action at the other end is very natural in our life. It is very similar when two people communicate via mail. First, the writer must write the letter, insert it into an envelope while the receiver must first open the envelope and then read the mail. The picture below shows the whole process of sending and receiving information.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/OSI/OSI_Model_sending_receiving.jpg" alt="OSI_Model_sending_receiving.jpg" width="470" height="470" /></p>
<p>Note: The OSI model layers are often referred to by number than by name  (for example, we refer saying &#8220;layer 3&#8243; to  &#8220;network layer&#8221;) so you  should learn the number of each layer as well.</p>
<p>2. When the information goes down through layers (from top to bottom), a header is added to it. This is called encapsulation because it is like wrapping an object in a capsule. Each header can be understood only by the corresponding layer at the receiving side. Other layers only see that layer&#8217;s header as a part of data.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/OSI/OSI_Model_headers_added.jpg" alt="OSI_Model_headers_added.jpg" width="340" height="390" /><br class="spacer_" /></p>
<p>At the receiving side, corresponding header is stripped off in the same layer it was attached.</p>
<p class="blueandbold">Understand each layer</p>
<p><strong>Layer 7 &#8211; Application layer<br />
 </strong></p>
<p>This is the closest layer to the end user. It provides the interface between the applications we use and the underlying layers. But notice that the programs you are using (like a web browser &#8211; IE, Firefox or Opera&#8230;) do not belong to Application layer. Telnet, FTP, email client (SMTP), HyperText Transfer Protocol (HTTP) are examples of Application layer.</p>
<p><strong>Layer 6 &#8211; Presentation layer</strong></p>
<p>This layer ensures the presentation of data, that the communications passing through are in the appropriate form for the recipient. In general, it acts as a translator of the network. For example, you want to send an email and the Presentation will format your data into email format. Or you want to send photos to your friend, the Presentation layer will format your data into GIF, JPG or PNG&#8230; format.</p>
<p><strong>Layer 5 &#8211; Session layer</strong></p>
<p>Layer 5 establishes, maintains and ends communication with the receiving device.</p>
<p><strong>Layer 4 &#8211; Transport layer</strong></p>
<p>This layer maintains flow control of data and provides for error checking and recovery of data between the devices. The most common example of Transport layer is Transmission Control Protocol (TCP) and User Datagram Protocol (UDP).</p>
<p><strong>Layer 3 &#8211; Network layer</strong></p>
<p>This layer provides logical addresses which routers will use to determine the path to the destination. In most cases, the logic addresses here means the IP addresses (including source &amp; destination IP addresses).</p>
<p><strong>Layer 2 &#8211; Data Link Layer</strong></p>
<p>The Data Link layer formats the message into a <em>data frame</em>, and adds a header containing the hardware destination and source address to it. This header is responsible for finding the next destination device on a local network.</p>
<p>Notice that layer 3 is responsible for finding the path to the last destination (network) but it doesn&#8217;t care about who will be the next receiver. It is the Layer 2 that helps data to reach the next destination.</p>
<p>This layer is subdivide into 2 sub-layers: logical link control (LLC) and media access control (MAC).</p>
<p>The LLC functions include:<br />
 + Managing frames to upper and lower layers<br />
 + Error Control<br />
 + Flow control</p>
<p>The MAC sublayer carries the physical address of each device on the  network. This address is more commonly called a device&#8217;s MAC address. MAC address is a 48 bits address which is burned into the NIC card on the device by its manufacturer.</p>
<p><strong>Layer 1 &#8211; Physical layer</strong></p>
<p>The Physical Layer defines the physical characteristics of the network such as connections, voltage levels and timing.</p>
<p><!--adsense#MiddleContent--></p>
<p>To help you remember the functions of each layer more easily, I created a fun story in which Henry (English) wants to send a document to Charles (French) to demonstrate how the OSI model works.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/OSI/OSI_7_layers_fun.jpg" alt="OSI_7_layers_fun.jpg" width="750" height="1055" /><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>Lastly, I summarize all the important functions of each layer in the  below table (please remember them, they are very important knowledge you  need to know about OSI model):</p>
<table border="1">
<tbody>
<tr style="background-color: #33ff66;">
<td><strong>Layer</strong></td>
<td><strong>Description</strong></td>
<td><strong>Popular Protocols</strong></td>
<td><strong>Protocol Data Unit</strong></td>
<td><strong>Devices operate in this layer</strong></td>
</tr>
<tr>
<td><strong>Application</strong></td>
<td>+ User interface</td>
<td>HTTP, FTP, TFTP, Telnet, SNMP, DNS&#8230;</td>
<td>Data</td>
<td></td>
</tr>
<tr>
<td><strong>Presentation</strong></td>
<td>+ Data representation, encryption &amp; decryption</td>
<td>
<p>+ Video (WMV, AVI&#8230;)<br />
 + Bitmap (JPG, BMP, PNG&#8230;)<br />
 + Audio (WAV, MP3, WMA&#8230;)<br />
 &#8230;.</p>
</td>
<td>Data</td>
<td></td>
</tr>
<tr>
<td><strong>Session</strong></td>
<td>+ Set up, monitor &amp; terminate the connection session</td>
<td>+ SQL, RPC, NETBIOS names&#8230;</td>
<td>Data</td>
<td></td>
</tr>
<tr>
<td><strong>Transport</strong></td>
<td>+ Flow control (Buffering, Windowing, Congestion Avoidance) helps prevent the loss of segments on the network and the need for retransmission</td>
<td>+ TCP (Connection-Oriented, reliable )<br />
 + UDP (Connectionless, unreliable)</td>
<td>Segment</td>
<td></td>
</tr>
<tr>
<td><strong>Network</strong></td>
<td>+ Path determination<br />
 + Source &amp; Destination logical addresses</td>
<td>+ IP<br />
 + IPX<br />
 + AppleTalk</td>
<td>Packet/Datagram</td>
<td>Router</td>
</tr>
<tr>
<td><strong>Data Link</strong></td>
<td>
<p>+ Physical addresses</p>
<p>Includes 2 layers:<br />
 + Upper layer: Logical Link Control (LLC)<br />
 + Lower layer: Media Access Control (MAC)</p>
</td>
<td>+ LAN<br />
 + WAN (HDLC, PPP, Frame Relay&#8230;)</td>
<td>Frame</td>
<td>Switch, Bridge</td>
</tr>
<tr>
<td><strong>Physical</strong></td>
<td>
<p>Encodes and transmits data bits</p>
<p>+ Electric signals<br />
 + Radio signals</p>
</td>
<td>+ FDDI, Ethernet</td>
<td>Bit (0, 1)</td>
<td>Hub, Repeater&#8230;</td>
</tr>
</tbody>
</table>
<p>Note: In fact, OSI is just is a theoretical model of networking. The practical model used in modern networks is the TCP/IP model. You may think &#8220;Hm, it&#8217;s just theoretic and has no use in real life! I don&#8217;t care!&#8221; but believe me, you will use this model more often than the TCP/IP model so take time to grasp it, you will not regret &#8211; I promise :)</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/osi-model-tutorial/feed</wfw:commentRss>
		<slash:comments>74</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; OSI Model Questions</title>
		<link>http://www.9tut.com/ccna-osi-model-questions</link>
		<comments>http://www.9tut.com/ccna-osi-model-questions#comments</comments>
		<pubDate>Thu, 20 Oct 2011 13:09:24 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=899</guid>
		<description><![CDATA[Here you will find answers to OSI Questions Note: If you are not sure about OSI Model, please read my OSI tutorial. Question 1 Which of the following correctly describe steps in the OSI data encapsulation process? (Choose two) A. The transport layer divides a data stream into segments and may add reliability and flow [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to OSI Questions</p>
<p><!--adsense--></p>
<p>Note: If you are not sure about OSI Model, please read my <a href="http://www.9tut.com/osi-model-tutorial" target="_blank">OSI tutorial</a>.</p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Which of the following correctly describe steps in the OSI data encapsulation process? (Choose two)</p>
<p>A. The transport layer divides a data stream into segments and may add reliability and flow control information. <br />
 B. The data link layer adds physical source and destination addresses and an FCS to the segment.<br />
 C. Packets are created when the network layer encapsulates a frame with source and destination host addresses and protocol-related control information. <br />
 D. Packets are created when the network layer adds Layer 3 addresses and control information to a segment.<br />
 E. The presentation layer translates bits into voltages for transmission across the physical link.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A D</p>
<p class="ccnaexplanation">Explanation</p>
<p>The transport layer segments data into smaller pieces for transport. Each segment is assigned a sequence number, so that the receiving device can reassemble the data on arrival.</p>
<p>The transport layer also use flow control to maximize the transfer rate while minimizing the requirements to retransmit. For example, in TCP, basic flow control is implemented by acknowledgment by the receiver of the receipt of data; the sender waits for this acknowledgment before sending the next part.</p>
<p>-&gt; A is correct.</p>
<p>The data link layer adds physical source and destination addresses and  an Frame Check Sequence (FCS) to the packet (on Layer 3), not segment (on Layer 4) -&gt; B is not correct.</p>
<p>Packets are created when network layer encapsulates a segment (not frame) with source and destination host addresses and protocol-related control  information. Notice that the network layer encapsulates messages received from higher layers by placing them into datagrams (also called packets) with a network layer header -&gt; C is not correct.</p>
<p>The Network layer (Layer 3) has two key responsibilities. First, this layer controls the logical addressing of devices. Second, the network layer determines the best path to a particular destination network, and routes the data appropriately.</p>
<p>-&gt; D is correct.</p>
<p>The Physical layer (presentation layer) translates bits into voltages for transmission across the physical  link -&gt; E is not correct.</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Which layer of the OSI reference model uses the hardware address of a device to ensure message delivery to the proper host on a LAN?</p>
<p>A. physical<br />
 B. data link<br />
 C. network<br />
 D. transport</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>The hardware address of a device or the Media Access Control (MAC) address is added in the Data Link layer. An Ethernet MAC address is a 48-bit binary value expressed as 12 hexadecimal digits (for example: 00:15:A4:CB:03:CA).</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Which layer of the OSI reference model uses flow control, sequencing, and acknowledgments to ensure that reliable networking occurs?</p>
<p>A. data link<br />
 B. network<br />
 C. transport<br />
 D. presentation<br />
 E. physical</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>C</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Which layer in the OSI reference model is responsible for determining the availability of the receiving program and checking to see if enough resources exist for that communication?</p>
<p>A. transport<br />
 B. network<br />
 C. presentation<br />
 D. session<br />
 E. application</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> E</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Data transfer is slow between the source and destination. The quality of service requested by the transport layer in the OSI reference model is not being maintained. To fix this issue, at which layer should the troubleshooting process begin?</p>
<p>A. presentation<br />
 B. session<br />
 C. transport<br />
 D. network<br />
 E. physical</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>D</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>Which protocols are found in the network layer of the OSI reference model and are responsible for path determination and traffic switching?</p>
<p>A. LAN<br />
 B. routing<br />
 C. WAN<br />
 D. network</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>Refer to the exhibit. An administrator pings the default gateway at 10.10.10.1 and sees the output as shown. At which OSI layer is the problem?</p>
<table border="1">
<tbody>
<tr>
<td>C:\&gt; ping 10.10.10.1<br />
 Pinging 10.10.10.1 with 32 bytes of data:<br />
 Request  timed out.<br />
 Request timed out.<br />
 Request timed out.<br />
 Request timed  out.<br />
 Ping statistics for 10.10.10.1:<br />
 Packets: sent &#8211; 4, Received =  0, Lost &#8211; 4 (100% loss)</td>
</tr>
</tbody>
</table>
<p>A. data link layer<br />
 B. application layer<br />
 C. access layer<br />
 D. session layer<br />
 E. network layer</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> E</p>
<p class="ccnaexplanation">Explanation</p>
<p>The Network layer is responsible for network addressing and routing through the internetwork. So a ping fails, you may have an issue with the Network layer (although lower layers like Data Link &amp; Physical may cause the problem).</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>Which of the following are types of flow control? (Choose three)</p>
<p>A. buffering<br />
 B. cut-through<br />
 C. windowing<br />
 D. congestion avoidance <br />
 E. load balancing</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A C D</p>
<p class="ccnaexplanation">Explanation</p>
<p>Three types of flow control are buffering, windowing &amp; congestion avoidance:</p>
<p>+ <strong>Buffering</strong>: If a device receives packets too quickly for it to handle then it can store them in a memory section called a buffer and proceed them later.</p>
<p>+ <strong>Windowing</strong>: a window is the quantity of data segments that the transmitting device is allowed to send without receiving an acknowledgment for them. For example:</p>
<p>With the window size of 1, the sending device sends 1 segment and the receiving device must reply with 1 ACK before the sending device can send the next segment. This &#8220;waiting&#8221; takes some time.</p>
<p>By increasing the window size to 3, the sending device will send up to 3 segments before waiting an ACK -&gt; helps reduce the waiting time.</p>
<p>+ <strong>Congestion avoidance</strong>: lower-priority traffic can be discarded when the network is overloaded -&gt; minimize delays.</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>A network administrator is verifying the configuration of a newly installed host by establishing an FTP connection to a remote server. What is the highest layer of the protocol stack that the network administrator is using for this operation?</p>
<p>A. application<br />
 B. presentation<br />
 C. session<br />
 D. transport<br />
 E. internet<br />
 F. data link</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaexplanation">Explanation</p>
<p>FTP belongs to Application layer and it is also the highest layer of the OSI model.</p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>A receiving host computes the checksum on a frame and determines that the frame is damaged. The frame is then discarded. At which OSI layer did this happen?</p>
<p>A. session<br />
 B. network<br />
 C. physical<br />
 D. data link<br />
 E. transport</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation</p>
<p>When using the term &#8220;frame&#8221; we can easily recognize it belongs to the Data Link layer. In this layer, an Frame Check Sequence (FCS) field is added to the frame to verify that the frame data is received correctly.</p>
<p class="ccnaquestionsnumber">Question 11</p>
<p>As a frame leaves a Layer 3 device, the Layer 2 encapsulation  information is changed from what it was when it entered the device. For  what two reasons can this happen? (Choose two)</p>
<p>A. The data is moving from 10BASE-TX to 100BASE-TX.<br />
 B. The WAN encapsulation type has changed.<br />
 C. The data format has changed from analog to digital.<br />
 D. The source and destination hosts are in the same subnet.<br />
 E. The source and destination MAC addresses have changed.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B E</p>
<p class="ccnaquestionsnumber">Question 12</p>
<p>Acknowledgement, Sequencing, and Flow control are characteristics of which OSI layer?</p>
<p>A. Layer 2<br />
 B. Layer 3<br />
 C. Layer 4<br />
 D. Layer 5<br />
 E. Layer 6<br />
 F. Layer 7</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-osi-model-questions/feed</wfw:commentRss>
		<slash:comments>108</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; TCP/IP Model &amp; Operation</title>
		<link>http://www.9tut.com/ccna-tcpip-model-operation</link>
		<comments>http://www.9tut.com/ccna-tcpip-model-operation#comments</comments>
		<pubDate>Tue, 18 Oct 2011 15:41:42 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=1049</guid>
		<description><![CDATA[Here you will find answers to TCP/IP Model &#38; Operation Questions Question 1 An inbound access list has been configured on a serial interface to deny packet entry for TCP and UDP ports 21, 23 and 25. What types of packets will be permitted by this ACL? (Choose three) A. FTP B. Telnet C. SMTP [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to TCP/IP Model &amp; Operation Questions</p>
<p><!--adsense--></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>An inbound access list has been configured on a serial interface to  deny packet entry for TCP and UDP ports 21, 23 and 25. What types of  packets will be permitted by this ACL? (Choose three)</p>
<p>A. FTP<br />
 B. Telnet<br />
 C. SMTP<br />
 D. DNS<br />
 E. HTTP<br />
 F. POP3</p>
<p><br class="spacer_" /></p>
<p><span class="blueandbold">Answer:</span> D E F</p>
<p class="ccnaexplanation">Explanation</p>
<p>The access list denies packet entry for TCP &amp; UDP -&gt; all the services on ports 21, 23 and 25 are disabled. Services on these ports are FTP (port 21), Telnet (port 23), SMTP (port 25). Other services are allowed so D E F are the correct answers.</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>What are two characteristics of Telnet? (Choose two)</p>
<p>A. It sends data in clear text format.<br />
 B. It is no longer supported on Cisco network devices.<br />
 C. It is more secure than SSH.<br />
 D. It requires an enterprise license in order to be implemented.<br />
 E. It requires that the destination device be configured to support Telnet connections.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A E</p>
<p class="ccnaexplanation">Explanation</p>
<p>Telnet, part of the TCP/IP protocol suite, is a virtual terminal protocol that allows you to make connections to remote devices, gather information, and run programs. Telnet is considered insecure because it transfers all data in clear text -&gt; A is correct.</p>
<p>The destination device needs to support Telnet connection. For example, if a device doesn&#8217;t support TCP/IP protocol suit then maybe we can&#8217;t telnet to it.</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>An administrator issues the command ping 127.0.0.1 from the command  line prompt on a PC. If a reply is received, what does this confirm?</p>
<p>A. The PC has connectivity with a local host.<br />
 B. The PC has connectivity with a Layer 3 device.<br />
 C. The PC has a default gateway correctly configured<br />
 D. The PC has connectivity up to Layer 5 of the OSI model<br />
 E. The PC has the TCP/IP protocol stack correctly installed.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>E</p>
<p class="ccnaexplanation">Explanation</p>
<p>The address 127.0.0.1 is called loopback address. When we ping 127.0.0.1, in fact we are pinging the local network card and test the TCP/IP protocol suite on our device.</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Where does routing occur within the DoD TCP/IP reference model?</p>
<p>A. application <br />
 B. internet<br />
 C. network<br />
 D. transport</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B</p>
<p class="ccnaexplanation">Explanation</p>
<p>The picture below shows the comparison between TCP/IP model &amp; OSI model. Notice that the Internet Layer of TCP/IP is equivalent to the Network Layer which is responsible for routing decision.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/TCPIP/OSI_TCP_IP_Comparison.jpg" alt="OSI_TCP_IP_Comparison.jpg" width="296" height="299" /></p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>A host is attempting to send data to another host on a different  network. What is the first action that the sending host will take?</p>
<p>A. Drop the data.<br />
 B. Send the data frames to the default gateway.<br />
 C. Create an ARP request to get a MAC address for the receiving host.<br />
 D. Send a TCP SYN and wait for the SYN ACK with the IP address of the receiving host.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B</p>
<p class="ccnaexplanation">Explanation</p>
<p>Before sending data, the sending host checks if the destination host is inside or outside the local network. If it is outside the local network, the data will be sent to the default gateway.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>A TCP/IP Transfer is diagrammed in the exhibit.<br />
 A window size of three has been negotiated for this transfer. Which  message will be returned from the receiver to the sender as part of this  TCP/IP transfer?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/TCPIP/TCP_IP_Send_ACK.jpg" alt="TCP_IP_Send_ACK.jpg" width="420" height="250" /></p>
<p>A. Send ACK 1-3<br />
 B. Send ACK 3<br />
 C. Send ACK 4<br />
 D. Send ACK 4-6<br />
 E. Send ACK 6<br />
 F. Send ACK 7</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p><span class="ccnaexplanation">Explanation</span></p>
<p>In response, the receiver replies with an ACK. The acknowledgment number is set to one more than the received sequence number. The ACK means &#8220;I have got all messages up to sequence number n-1 so please send me the message for sequence number n&#8221;.</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>What is the purpose using the traceroute command?</p>
<p>A. to map all the devices on a network.<br />
 B. to display the current TCP/IP configuration values.<br />
 C. to see how a device MAC address is mapped to its IP address.<br />
 D. to see the path a packet will take when traveling to a specified destination.<br />
 E. to display the MTU values for each router in a specified network path from source to a destination.</p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>D</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>A network admin wants to know every hop the packets take when he accesses cisco.com. Which command is the most appropriate to use?</p>
<p>A. path cisco.com<br />
 B. debugcisco.com <br />
 C. trace cisco.com <br />
 D. traceroute cisco.com</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>D</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>Refer to the exhibit. Host A pings Host B. What source MAC address and source IP address are contained in the frame as the frame leaves R2 destined for host B?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/TCPIP/send_packets_source_MAC_IP.jpg" alt="send_packets_source_MAC_IP.jpg" width="500" height="260" /></p>
<p>A. abcd.abcd.a001<br />
 B. abcd.abcd.b002 <br />
 C. abcd.abcd.c003<br />
 D. 10.2.0.15<br />
 E. 10.0.64.1<br />
 F. 10.0.128.15</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B D</p>
<p class="ccnaexplanation">Explanation</p>
<p>When packets are sent from Host A to Host B, the source and destination IP addresses are never changed and they are the IP addresses of Host A &amp; Host B. Only the MAC addresses will be changed to reflect the device of the current network. In this case, when the frame leaves R2 destined for host B. It will have:</p>
<p>+ <strong>Source IP</strong>: IP of Host A -<strong> 10.2.0.15</strong> (never changed)<br />
 + Destination IP: IP of Host B &#8211; 10.0.128.15 (never changed)<br />
 + <strong>Source MAC</strong>: MAC of Fa0/0 of R2 &#8211; <strong>abcd.abcd.b002</strong><br />
 + Destination MAC: MAC of Host B &#8211; abcd.abcd.d004</p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>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)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/TCPIP/ICMP_Destination_Unreachable.jpg" alt="ICMP_Destination_Unreachable.jpg" width="425" height="160" /></p>
<p>A. Router C will use ICMP to inform Host 1 that Host 2 cannot be reached.<br />
 B. Router C will use ICMP to inform Router B that Host 2 cannot be reached.<br />
 C. Router C will use ICMP to inform Host 1, Router A, and Router B that Host 2 cannot be reached. <br />
 D. Router C will send a Destination Unreachable message type.<br />
 E. Router C will send a Router Selection message type.<br />
 F. Router C will send a Source Quench message type.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A D</p>
<p class="ccnaexplanation">Explanation</p>
<p>The last known good router will try to inform you that the destination cannot be reached (with a Destination Unreachable message type) so from that information you can learn how far your packets can travel to and where the problem is.</p>
<p class="ccnaquestionsnumber">Question 11</p>
<p>Refer to the exhibit. The switch in the graphic has a default configuration and the MAC table is fully populated. In addition, this network is operating properly. The graphic represents selected header information in a frame leaving host A. What can be concluded from this information?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/TCPIP/frame_header_information.jpg" alt="frame_header_information.jpg" width="560" height="240" /></p>
<p>A. The MAC address of host A is FFFF.FFFF.FFFF.<br />
 B. The router will forward the packet in this frame to the Internet.<br />
 C. The switch will only forward this frame to the attached router interface.<br />
 D. All devices in this LAN except host A will pass the packet to Layer 3.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>D</p>
<p class="ccnaexplanation">Explanation</p>
<p>This frame is leaving host A so host A is the source of this frame. In this frame, the MAC destination is FFFF.FFFF.FFFF which is a broadcast address so Sw1 will flood this frame out all its ports except the port it received the frame -&gt; Hosts B, C, D and the interface connected to Sw1 on R1 will receive this frame. When receiving this frame, they will pass the packet to Layer 3 (because they consider broadcast address &#8220;everyone, including me&#8221;). At Layer 3, the Destination IP will be checked and only the host (or the interface on the router) with correct IP will respond to Host A while others keep silence -&gt; D is correct.</p>
<p>Just for your information, maybe you can ask &#8220;this is a broadcast message so why router R1 doesn&#8217;t drop it?&#8221;. Suppose this is an ARP Request message. In fact, R1 drops that packet but it also learns that it is an ARP Request so R1 looks up its routing table to find a route to that destination. If it can find one, it will send an ARP Reply back for host A&#8221;.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-tcpip-model-operation/feed</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Show Command Questions</title>
		<link>http://www.9tut.com/ccna-show-command-questions</link>
		<comments>http://www.9tut.com/ccna-show-command-questions#comments</comments>
		<pubDate>Sat, 15 Oct 2011 09:05:57 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=1030</guid>
		<description><![CDATA[Here you will find answers to Basic Command Questions Question 1 Refer to the exhibit. What can be determined from the output? A. 192.168.1.2 is local to the router. B. 192.168.3.1 is local to the router. C. 192.168.1.2 will age out in less than 1 minute. D. 192.168.3.1 has aged out and is marked for [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to Basic Command Questions</p>
<p><!--adsense--></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Refer to the exhibit. What can be determined from the output?</p>
<p><img src="http://www.9tut.com/images/ccna/Show_commands/show_ip_arp.jpg" alt="show_ip_arp.jpg" width="520" height="100" /></p>
<p>A. 192.168.1.2 is local to the router.<br />
 B. 192.168.3.1 is local to the router.<br />
 C. 192.168.1.2 will age out in less than 1 minute.<br />
 D. 192.168.3.1 has aged out and is marked for deletion.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B</p>
<p class="ccnaexplanation">Explanation</p>
<p>The &#8220;Age&#8221; field in the &#8220;show ip arp&#8221; command is the age in minutes of the cache entry. A hyphen (-) means the address is local so in this case 192.168.1.1 &amp; 192.168.3.1 are local to this router -&gt; B is correct.</p>
<p>Note: The &#8220;Age 0&#8243; means that the address was cached less than 1 minute ago.</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Refer to the exhibit. What could be possible causes for the &#8220;Serial0/0 is down&#8221; interface status? (Choose two)</p>
<p><img src="http://www.9tut.com/images/ccna/Show_commands/show_interfaces_serial.jpg" alt="show_interfaces_serial.jpg" width="490" height="115" /></p>
<p>A. A Layer 1 problem exists.<br />
 B. The bandwidth is set too low.<br />
 C. A protocol mismatch exists.<br />
 D. An incorrect cable is being used.<br />
 E. There is an incorrect IP address on the Serial 0/0 interface.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A D</p>
<p class="ccnaexplanation">Explanation</p>
<p>The first part of the &#8220;Serial0/0 is down, line protocol is down&#8221; indicates a layer 1 problem while the second part indicates a layer 2 problem -&gt; A is correct.</p>
<p>Some popular layer 1 problems are listed below:</p>
<p>+ device power off<br />
 + device power unplugged<br />
 + loose network cable connection<br />
 + incorrect cable type<br />
 + faulty network cable</p>
<p>Answer B &#8220;The bandwidth is set too low&#8221; will not make a layer 1 problem.<br />
 Answer C is a layer 2 problem.<br />
 Answer E is a layer 3 problem.</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Which line from the output of the show ip interface command indicates a layer 1 problem?</p>
<p>A. Serial0/1 is up, line protocol is down<br />
 B. Serial0/1 is down, line protocol is down <br />
 C. Serial0/1 is up, line protocol is up <br />
 D. Serial0/1 is administratively down, line protocol is down</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B</p>
<p class="ccnaexplanation">Explanation</p>
<p>Same as question 2.</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Refer to the exhibit. What is the meaning of the output MTU 1500 bytes?</p>
<p><img src="http://www.9tut.com/images/ccna/Show_commands/show_interfaces_ethernet.jpg" alt="show_interfaces_ethernet.jpg" width="530" height="140" /></p>
<p>A. The maximum number of bytes that can traverse this interface per second is 1500.<br />
 B. The minimum segment size that can traverse this interface is 1500 bytes.<br />
 C. The maximum segment size that can traverse this interface is 1500 bytes.<br />
 D. The minimum packet size that can traverse this interface is 1500 bytes.<br />
 E. The maximum packet size that can traverse this interface is 1500 bytes.<br />
 F. The maximum frame size that can traverse this interface is 1500 bytes.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> E</p>
<p class="ccnaexplanation">Explanation</p>
<p>The Maximum Transmission Unit (MTU) defines the maximum Layer 3 packet (in bytes) that the layer can pass onwards.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>The network administrator normally establishes a Telnet session with the switch from host A. The administrator’s attempt to establish a connect via Telnet to the switch from host B fails, but pings from host B to other two hosts are successful. What is the issue for this problem?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Show_commands/show_ip_int_brief.jpg" alt="show_ip_int_brief.jpg" width="570" height="310" /></p>
<p>A. Host B and the switch need to be in the same subnet.<br />
 B. The switch needs an appropriate default gateway assigned.<br />
 C. The switch interface connected to the router is down.<br />
 D. Host B need to be assigned an IP address in vlan 1.</p>
<p class="ccnacorrectanswers"><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B</p>
<p class="ccnaexplanation">Explanation</p>
<p>Host A (172.19.1.1) and the management IP address of the Switch (172.19.1.250) are in the same subnet so telnet from host A to the switch can be successful even if a default gateway is not set on host A.</p>
<p>But host B (172.19.32.2) and the management IP address of the Switch (172.19.1.250) are not in the same subnet so host B needs a default gateway to telnet to the switch. The default gateway on host B should be 172.19.32.254.</p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>Which command displays CPU utilization?</p>
<p>A. show protocols<br />
 B. show process<br />
 C. show system<br />
 D. show version</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B</p>
<p class="ccnaexplanation">Explanation</p>
<p>The &#8220;show process&#8221; (in fact, the full command is &#8220;show processes&#8221;) command gives us lots of information about each process but in fact it is not easy to read. Below shows the output of this command (some next pages are omitted)</p>
<p><img src="http://www.9tut.com/images/ccna/Show_commands/show_process.jpg" alt="show_process.jpg " width="646" height="387" /></p>
<p>A more friendly way to check the CPU utilization is the command &#8220;show processes cpu history&#8221;, in which the total CPU usage on the router over a period of time: one minute, one hour, and 72 hours are clearly shown:</p>
<p><img src="http://www.9tut.com/images/ccna/Show_commands/show processes cpu history.jpg" alt="show processes cpu history.jpg" width="620" height="652" /></p>
<p>+ The Y-axis of the graph is the CPU utilization.<br />
 + The X-axis of the graph is the increment within the period displayed in the graph</p>
<p>For example, from the last graph (last 72 hours) we learn that the highest CPU utilization within 72 hours is 37% about six hours ago.</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>Refer to the exhibit. You are connected to the router as user Mike. Which command allows you to see output from the OSPF debug command?</p>
<p><img src="http://www.9tut.com/images/ccna/Show_commands/show_users.jpg" alt="show_users.jpg" width="385" height="155" /></p>
<p>A. terminal monitor<br />
 B. show debugging <br />
 C. show sessions <br />
 D. show ip ospf interface</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A</p>
<p class="ccnaexplanation">Explanation</p>
<p>By default, Cisco IOS does not send log messages to a terminal session over IP like Telnet, SSH but console connections do have logging feature enabled by default. To display debug command output and system error messages for Telnet or SSH session, use the &#8220;terminal monitor&#8221; command in privileged mode.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-show-command-questions/feed</wfw:commentRss>
		<slash:comments>85</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Protocols &amp; Services</title>
		<link>http://www.9tut.com/ccna-protocols-services</link>
		<comments>http://www.9tut.com/ccna-protocols-services#comments</comments>
		<pubDate>Sat, 01 Oct 2011 08:17:09 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=1045</guid>
		<description><![CDATA[Here you will find answers to CCNA &#8211; Protocols &#38; Services Questions Question 1 An administrator attempts a traceroute but receives a &#8220;Destination Unreachable&#8221; message. Which protocol is responsible for that message? A. RARP B. RUDP C. ICMP D. SNMP Answer: C Explanation The ICMP destination unreachable message is generated by a router (which is [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to CCNA &#8211; Protocols &amp; Services Questions</p>
<p><!--adsense--></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>An administrator attempts a traceroute but receives a &#8220;Destination  Unreachable&#8221; message. Which protocol is responsible for that message?</p>
<p>A. RARP <br />
 B. RUDP <br />
 C. ICMP <br />
 D. SNMP</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>C</p>
<p class="ccnaexplanation">Explanation</p>
<p>The ICMP destination unreachable message is generated by a router (which is reachable) to inform the source host that the destination unicast address is unreachable.</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>DNS servers provide what service?</p>
<p>A. They run a spell check on host names to ensure accurate routing <br />
 B. They convert domain names into IP address <br />
 C. Given an IP address.they determine the name of the host that is sought <br />
 D. They map individual hosts to their specific IP addresses</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B</p>
<p class="ccnaexplanation">Explanation</p>
<p>For example, when you open a web browser (IE, Firefox&#8230;) and type a domain (like google.com). This domain will be sent to a DNS server. The DNS server looks up this domain in its database and sends back a corresponding IP address which you can use to access that website.</p>
<p>Note: A DNS server can be a dedicated device for DNS service or integrated into a networking device (like router).</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Which of the following protocols uses both TCP and UDP ports?</p>
<p>A. SMTP <br />
 B. Telnet <br />
 C. FTP<br />
 D. DNS</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>D</p>
<p class="ccnaexplanation">Explanation</p>
<p>DNS can use either the User Datagram Protocol (UDP) or Transmission Control Protocol (TCP) with a destination port of 53.</p>
<p>Note:</p>
<p>+Simple Mail Transfer Protocol (<strong>SMTP</strong>) is specified for mail transport and uses TCP port 25.<br />
 + <strong>Telnet </strong>uses TCP on port 23.<br />
 + File Transfer Protocol (<strong>FTP</strong>) uses TCP on port 20, 21.<br />
 + Trivial File Transfer Protocol (<strong>TFTP</strong>) uses UDP on port 69.<br />
 + HTTP Secure (<strong>HTTPS</strong>) uses TCP on port 443.</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Which protocol should be used to establish a secure terminal connection to a remote network device?</p>
<p>A. ARP <br />
 B. SSH<br />
 C. Telnet<br />
 D. WEP<br />
 E. SNMPv1<br />
 F. SNMPv2</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>Secure Shell (SSH) protocols secure terminal session data across insecure environments such as the internet.</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>A network administrator issues the ping 192.168.2.5 command and   successfully tests connectivity to a host that has been newly connected   to the network. Which protocols were used during the test? (Choose two)</p>
<p>A. ARP<br />
 B. CDP<br />
 C. DHCP<br />
 D. DNS<br />
 E. ICMP</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A E</p>
<p class="ccnaexplanation">Explanation</p>
<p>In this question we are not sure the host 192.168.2.5 is in or outside the local network. But in both cases the ARP protocol are used to get the MAC address:</p>
<p>+ If host 192.168.2.5 is inside the local network, our device will broadcast an ARP Request to ask the MAC address of the host 192.168.2.5 (something like &#8220;If your IP is 192.168.2.5, please send me your MAC address&#8221;).<br />
 + If host 192.168.2.5 is outside the local network, our device will broadcast an ARP Request to ask the MAC address of the local port (the port in the same subnet with our device) of the default gateway. Notice that the IP of the default gateway has been already configured in our device.</p>
<p>-&gt; In both cases, our device must broadcast an ARP Request -&gt; A is correct.</p>
<p>After getting the ARP of the destination device, our device will use ICMP protocol to send the &#8220;ping&#8221; -&gt; E is correct.</p>
<p>Note: The question states &#8220;the host has been newly connected   to the network&#8221; which means our device hasn&#8217;t had the MAC address of this host in its ARP table -&gt; it needs to send ARP Request.</p>
<p>There is one situation which makes answer A incorrect: the newly connected host is outside the network but our device has already learned the MAC address of the default gateway -&gt; in this case no ARP Request will be sent. So I assume the question wants to imply the newly connected host is in the local network.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>Which network protocol does DNS use?</p>
<p>A. FTP <br />
 B. TFTP <br />
 C. TCP <br />
 D. UDP<br />
 E. SCP</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>D</p>
<p class="ccnaexplanation">Explanation</p>
<p>It is funny that in Question 3 I answered &#8220;DNS uses both TCP &amp; UDP&#8221; but in this question we can only choose one answer and it should be &#8220;DNS uses UDP&#8221;. So I wish to explain more:</p>
<p>Normally a client sends a DNS Query using UDP Protocol over Port 53. If it does not get response from a DNS Server, it must re-transmit the DNS Query using TCP after 3-5 seconds. So we can say DNS prefers using UDP to TCP -&gt; the answer should be UDP.</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>When two hosts are trying to communicate across a network, how does   the host originating the communication determine the hardware address of   the host that it wants to &#8220;talk&#8221; to?</p>
<p>A. RARP request<br />
 B. Show Network Address request<br />
 C. Proxy ARP request<br />
 D. ARP request<br />
 E. Show Hardware Address request</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation</p>
<p>The address resolution protocol (ARP) is a protocol used to map IP network addresses to the hardware addresses.</p>
<p>+ If the destination host is inside the local network, the originating host will  broadcast an ARP Request to ask the MAC address of that host.<br />
 + If the destination host is outside the local network, the originating host will  broadcast an ARP Request to ask the MAC address of the local port (the  port in the same subnet with our device) of the default gateway. Notice  that the IP of the default gateway has been already configured in our device.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-protocols-services/feed</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
		<item>
		<title>Subnetting Tutorial &#8211; Subnetting Made Easy</title>
		<link>http://www.9tut.com/subnetting-tutorial</link>
		<comments>http://www.9tut.com/subnetting-tutorial#comments</comments>
		<pubDate>Wed, 28 Sep 2011 06:47:59 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Knowledge]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=850</guid>
		<description><![CDATA[In this article, we will learn how to subnet and make subnetting an easy task. The table below summarizes the possible network numbers, the total number of each type, and the number of hosts in each Class A, B, and C network. Default subnet mask Range Class A 255.0.0.0 (/8) 1.0.0.0 &#8211; 126.255.255.255 Class B [...]]]></description>
			<content:encoded><![CDATA[<p>In this article, we will learn how to subnet and make subnetting an easy task.</p>
<p>The table below summarizes the possible network numbers, the total number of each type, and the number of hosts in each Class A, B, and C network.</p>
<table border="1">
<tbody>
<tr>
<td></td>
<td><strong>Default subnet mask</strong></td>
<td><strong>Range</strong></td>
</tr>
<tr>
<td><strong>Class A</strong></td>
<td>255.0.0.0 (/8)</td>
<td>1.0.0.0 &#8211; 126.255.255.255</td>
</tr>
<tr>
<td><strong>Class B</strong></td>
<td>255.255.0.0 (/16)</td>
<td>128.0.0.0 &#8211; 191.255.255.255</td>
</tr>
<tr>
<td><strong>Class C</strong></td>
<td>255.255.255.0 (/24)</td>
<td>192.0.0.0 &#8211; 223.255.255.255</td>
</tr>
</tbody>
</table>
<p><span style="font-size: x-small;">Table 1 &#8211; Default subnet mask &amp; range of each class</span></p>
<p>Class A addresses begin with a 0 bit. Therefore, all addresses from  1.0.0.0 to 126.255.255.255 belong to class A (1=<span style="text-decoration: underline;"><strong>0</strong></span>000 0001; 126 = <strong><span style="text-decoration: underline;">0</span></strong>111 1110).<br />
 The 0.0.0.0 address is  reserved for default routing and the 127.0.0.0 address is reserved for  loopback testing so they don&#8217;t belong to any class.<br />
 Class B addresses begin with a 1 bit and a 0 bit. Therefore, all addresses from 128.0.0.0 to 191.255.255.255 belong to class B (128=<span style="text-decoration: underline;"><strong>10</strong></span>00 0000; 191 = <span style="text-decoration: underline;"><strong>10</strong></span>11 1111). <br />
 Class C addresses begin with two 1 bits and a 0 bit. Class C addresses range from 192.0.0.0 to 223.255.255.255 (192 = <span style="text-decoration: underline;"><strong>110</strong></span>0 0000; 223 = <span style="text-decoration: underline;"><strong>110</strong></span>1 1111).</p>
<p>Class D &amp; E are used for Multicast and Research purposes and we are not allowed to subnet them so they are not mentioned here.</p>
<p>Note: The number behind the slash notation (/) specifies how many bits are turned on (bit 1). For example:</p>
<p>+ &#8220;/8&#8243; equals &#8220;1111 1111.0000 0000.0000 0000.0000 0000&#8243; -> 8 bits are turned on (bit 1)<br />
 + &#8220;/12&#8243; equals &#8220;1111 1111.1111 0000.0000 0000.0000 0000&#8243; -> 12 bits are turned on (bit 1)<br />
 + &#8220;/28&#8243; equals &#8220;1111 1111.1111 1111.1111 1111.1111 0000&#8243; -> 28 bits are turned on  (bit 1)<br />
 + &#8220;/32&#8243; equals &#8220;1111 1111.1111 1111.1111 1111.1111 1111&#8243; -> 32 bits are  turned on  (bit 1) and this is also the maximum value because all bits are turned on.</p>
<p>The slash notation (following with a number) is equivalent to a subnet mask. If you know the slash notation you can figure out the subnet mask and vice versa. For example, &#8220;/8&#8243; is equivalent to &#8220;255.0.0.0&#8243;; &#8220;/12&#8243; is equivalent to &#8220;255.240.0.0&#8243;; &#8220;/28&#8243; is equivalent to &#8220;255.255.240.0&#8243;; &#8220;/32&#8243; is equivalent to &#8220;255.255.255.255&#8243;.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/Subnet/Class_A_B_C_network_host_portions.jpg" alt="Class_A_B_C_network_host_portions.jpg" width="415" height="205" /></p>
<p style="text-align: center;"><span style="font-size: x-small;">The Network &amp; Host parts of each class by default</span></p>
<p style="text-align: left;">From the &#8220;default subnet mask&#8221; shown above, we can identify the network  and host part of each class. Notice that in the subnet mask, bit 1  represents for Network part while bit 0 presents for Host part (255  equals to 1111 1111 and 0 equals to 0000 0000 in binary form).</p>
<p><span id="more-850"></span></p>
<p><!--adsense--></p>
<p class="blueandbold">What is &#8220;subnetting&#8221;?</p>
<p>When changing a number in the Network part of an IP address we will be in a different network from the previous address. For example, the IP address 11.0.0.1 belongs to class A and has a default subnet mask of 255.0.0.0; if we change the number in the first octet (a block of 8 bits, the first octet is the leftmost 8 bits) we will create a different network. For example, <span style="text-decoration: underline;">12</span>.0.0.1 is in a different network from <span style="text-decoration: underline;">11</span>.0.0.1. But if we change a number in the Host part, we are still in the same Network. For example, 11.<span style="text-decoration: underline;">1</span>.0.1 is in the same network of 11.<span style="text-decoration: underline;">0</span>.0.1.</p>
<p>The problem here is if we want to create 300 networks how can we do that? In the above example, we can only create different networks when changing the first octet so we can create a maximum of 255 networks because the first octet can only range from 1 to 255 (in fact it is much smaller because class A only range from 1 to 126). Now we have to use a technique called &#8220;subnetting&#8221; to achieve our purpose.</p>
<p>&#8220;Subnetting&#8221; means we <strong>borrow some bits from the Host part to add to the Network part</strong>. This allows us to have more networks than using the default subnet mask. For example, we can borrow some bits in the next octet to make the address 11.1.0.1 belong to a different network from 11.0.0.1.</p>
<p><span class="blueandbold">How to subnet?</span></p>
<p>Do you remember that I said &#8220;in the subnet mask, bit 1 represents for Network part while bit 0 presents for Host part&#8221;? Well, this also means that we can specify how many bits we want to borrow by changing how many bit 0 to bit 1 in the subnet mask.</p>
<p><!--adsense#MiddleContent--></p>
<p>Let&#8217;s come back to our example with the IP 11.0.0.1, we will write all numbers in binary form to reveal what a computer really sees in an IP address.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/Subnet/Class_A_binary_form.jpg" alt="Class_A_binary_form.jpg" width="475" height="160" /></p>
<p>Now you can clearly see that the subnet mask will decide which is the Network part, which is the Host part. By borrowing 8 bits, our subnet mask will be like this:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/Subnet/Class_A_subnet_binary_form.jpg" alt="Class_A_subnet_binary_form.jpg" width="495" height="160" /></p>
<p>After changing the second octet of the subnet mask from all &#8220;0&#8243; to all &#8220;1&#8243;, the Network part is now extended. Now we can create new networks by changing number in the first or second  octet. This greatly increases the number of networks we can create. With this new subnet mask, IP 11.<span style="text-decoration: underline;">1</span>.0.1 is in different network from IP 11.<span style="text-decoration: underline;">0</span>.0.1 because &#8220;1&#8243; in the second octet now belongs to the Network part.</p>
<p>So, in conclusion we &#8220;subnet&#8221; by borrowing bit &#8220;0&#8243; in the Host portion and converting them to bit &#8220;1&#8243;. The number of borrowed bits is depended on how many networks we need.</p>
<p>Note: A rule of borrowing bits is we can only borrow bit 0 from the left to the right without skipping any bit 0. For example, you can borrow like this: &#8220;1111 1111. 1100 0000.0000 0000.0000 0000&#8243; but not this: &#8220;1111 1111. 1010 0000.0000 0000.0000 0000&#8243;. In general, just make sure all your bit &#8220;1&#8243;s are successive on the left and all your bit &#8220;0&#8243;s are successive on the right.</p>
<p>In part 2 we will learn how to calculate the number of sub-networks and hosts-per-subnet</p>
<p><!--adsense--></p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/subnetting-tutorial/feed</wfw:commentRss>
		<slash:comments>49</slash:comments>
		</item>
		<item>
		<title>Frame Relay Tutorial</title>
		<link>http://www.9tut.com/frame-relay-tutorial</link>
		<comments>http://www.9tut.com/frame-relay-tutorial#comments</comments>
		<pubDate>Wed, 07 Sep 2011 11:38:17 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Knowledge]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=817</guid>
		<description><![CDATA[Let&#8217;s start this article with the question: Why do we need Frame Relay? Let&#8217;s take a simple example. Suppose you are working in a big company and your company has just expanded to two new locations. The main site is connected to two branch offices, named Branch 1 &#38; Branch 2 and your boss wants [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s start this article with the question: Why do we need Frame Relay?</p>
<p>Let&#8217;s take a simple example. Suppose you are working in a big company and your company has just expanded to two new locations. The main site is connected to two branch offices, named Branch 1 &amp; Branch 2 and your boss wants these two branches can communicate with the main site. The most simple solution is to connect them directly (called a leased line) as shown below:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/Frame_Relay/Frame_Relay_before_using_Frame_Relay.jpg" alt="Frame_Relay_before_using_Frame_Relay.jpg" width="300" height="140" /></p>
<p>To connect to these two branches, the main site router, HeadQuarter, requires two serial interfaces which a router can provide. But what happens when the company expands to 10 branches, 50 branches? For each point-to-point line, HeadQuarter needs a separate physical serial interface (and maybe a separate CSU/DSU if it is not integrated into the WAN card). As you can imagine, it will need many routers with many interfaces and lots of rack space for the routers and CSU/DSUs. Maybe we should use another solution for this problem? Luckily, Frame Relay can do it!</p>
<p><span id="more-817"></span></p>
<p><!--adsense--></p>
<p>By using Frame Relay we only need one serial interface at the  HeadQuarter to connect to all branches. This is also true when we expand to 10 or 50 branches. Moreover, the cost is much lesser than using leased-lines.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/Frame_Relay/Frame_Relay_implement_Frame_Relay.jpg" alt="Frame_Relay_implement_Frame_Relay.jpg" width="405" height="130" /></p>
<p>Frame Relay is a high-performance WAN protocol that operates at the physical and data link layers of the OSI reference model. It offers lower-cost data transfer when compared to typical point-to-point applications, by using virtual connections within the frame relay network and by combining those connections into a single physical connection at each location.  Frame relay providers use a frame relay switch to route the data on each virtual circuit to the appropriate destination.</p>
<p>Maybe these terminologies of Frame Relay are difficult to understand so we will explain them in more detail in this article.</p>
<p class="blueandbold">DCE &amp; DTE</p>
<p>The first concept in Frame Relay you must grasp is about DTE &amp; DCE:</p>
<p>+ Data terminal equipment (DTE), which is actually the user device  and the logical Frame-relay end-system<br />
 + Data communication equipment (DCE, also called data  circuit-terminating equipment), which consists of modem and packet  switch</p>
<p>In general, the routers are considered DTE, and the Frame Relay switches are DCE. The purpose of DCE equipment is to provide clocking and switching  services in a network. In our example, HeadQuarter, Branch 1 &amp; Branch 2 are DTEs while Frame Relay switches are DCEs.</p>
<p><!--adsense#MiddleContent--></p>
<p><span class="blueandbold">Virtual Circuits</span></p>
<p>The logical connection through the Frame Relay network between two DTEs is called a virtual circuit (VC). The term &#8220;virtual&#8221; here means that the two DTEs are not connected directly but through a network. For example, the HeadQuarter &amp; Branch 1 (or Branch 2) can communicate with each other as if they were directly connected but in fact they are connected through a Frame Relay network with many Frame Relay switches between them.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/Frame_Relay/Frame_Relay_virtual_circuit.jpg" alt="Frame_Relay_virtual_circuit.jpg" width="405" height="130" /></p>
<p>There are two types of VCs<br />
 + <strong>switched virtual circuits (SVCs)</strong>: are temporary connections that are only used when there is sporadic data transfer between DTE devices across the Frame Relay network. SVC is set up dynamically when needed. SVC connections require call setup and termination for each connection.<br />
 + <strong>permanent virtual circuits (PVCs)</strong>: A predefined VC. A PVC can be equated to a leased line in concept.</p>
<p>Nowadays most service providers offer PVC service only to save additional costs for signaling and billing procedures.</p>
<p><!--adsense--></p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/frame-relay-tutorial/feed</wfw:commentRss>
		<slash:comments>39</slash:comments>
		</item>
		<item>
		<title>Wireless Tutorial</title>
		<link>http://www.9tut.com/wireless-tutorial</link>
		<comments>http://www.9tut.com/wireless-tutorial#comments</comments>
		<pubDate>Fri, 12 Aug 2011 07:52:16 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Knowledge]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=787</guid>
		<description><![CDATA[In this article we will discuss about Wireless technologies mentioned in CCNA. Wireless LAN (WLAN) is very popular nowadays. Maybe you have ever used some wireless applications on your laptop or cellphone. Wireless LANs enable users to communicate without the need of cable. Below is an example of a simple WLAN: Each WLAN network needs [...]]]></description>
			<content:encoded><![CDATA[<p>In this article we will discuss about Wireless technologies mentioned in CCNA.</p>
<p>Wireless LAN (WLAN) is very popular nowadays. Maybe you have ever used some wireless applications on your laptop or cellphone. Wireless LANs enable users to communicate without the need of cable. Below is an example of a simple WLAN:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/Wireless/Wireless_Applications.jpg" alt="Wireless_Applications.jpg" width="330" height="380" /></p>
<p>Each WLAN network needs a wireless Access Point (AP) to transmit and receive data from users. Unlike a wired network which operates at full-duplex (send and receive at the same time), a wireless network operates at half-duplex so sometimes an AP is referred as a Wireless Hub.</p>
<p><span id="more-787"></span></p>
<p><!--adsense--></p>
<p>The major difference between wired LAN and WLAN is WLAN transmits data by radiating energy waves, called radio waves, instead of transmitting electrical signals over a cable.</p>
<p>Also, WLAN uses CSMA/CA (Carrier Sense Multiple Access with Collision Avoidance) instead of CSMA/CD for media access. WLAN can&#8217;t use CSMA/CD as a sending device can&#8217;t transmit and receive data at the same time. CSMA/CA operates as follows:</p>
<p>+ Listen to ensure the media is free. If it is free, set a random time before sending data<br />
 + When the random time has passed, listen again. If the media is free, send the data. If not, set another random time again<br />
 + Wait for an acknowledgment that data has been sent successfully<br />
 + If no acknowledgment is received, resend the data</p>
<p class="blueandbold">IEEE 802.11 standards:</p>
<p>Nowadays there are three organizations influencing WLAN standards. They are:</p>
<p>+ ITU-R: is responsible for allocation of the RF bands<br />
 + IEEE: specifies how RF is modulated to transfer data<br />
 + Wi-Fi Alliance: improves the interoperability of wireless products among vendors</p>
<p>But the most popular type of wireless LAN today is based on the IEEE 802.11 standard, which is known informally as Wi-Fi.</p>
<p><strong>* 802.11a:</strong> operates in the 5.7 GHz ISM band. Maximum transmission speed is 54Mbps and approximate wireless range is 25-75 feet indoors.<br />
 <strong>* 802.11b:</strong> operates in the 2.4 GHz ISM band. Maximum transmission speed is 11Mbps and approximate wireless range is 100-200 feet indoors.<br />
 <strong>* 802/11g:</strong> operates in the 2.4 GHz ISM band. Maximum transmission speed is 54Mbps and approximate wireless range is 100-200 feet indoors.</p>
<p><strong>ISM Band</strong>: The ISM (Industrial, Scientific and Medical) band, which is controlled by the FCC in the US, generally requires licensing for various spectrum use. To accommodate wireless LAN&#8217;s, the FCC has set aside bandwidth for unlicensed use including the 2.4Ghz spectrum where many WLAN products operate.</p>
<p><strong>Wi-Fi</strong>: stands for Wireless Fidelity and is used to define any of the IEEE 802.11 wireless standards. The term Wi-Fi was created by the Wireless Ethernet Compatibility Alliance (WECA). Products certified as Wi-Fi compliant are interoperable with each other even if they are made by different manufacturers.</p>
<p><!--adsense#MiddleContent--></p>
<p>Access points can support several or all of the three most popular IEEE WLAN standards including 802.11a, 802.11b and 802.11g.</p>
<p class="blueandbold">WLAN Modes:</p>
<p>WLAN has two basic modes of operation:</p>
<p><strong>* Ad-hoc mode: </strong>In this mode devices send data directly to each other without an AP.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/Wireless/Wireless_Ad-hoc_mode.jpg" alt="Wireless_Ad-hoc_mode.jpg" width="245" height="160" /></p>
<p><strong>* Infrastructure mode:</strong> Connect to a wired LAN, supports two modes (service sets):</p>
<p>+ Basic Service Set (BSS): uses only a single AP to create a WLAN<br />
 + Extended Service Set (ESS): uses more than one AP to create a WLAN, allows roaming in a larger area than a single AP. Usually there is an overlapped area between two APs to support roaming. The overlapped area should be more than 10% (from 10% to 15%) to allow users moving between two APs without losing their connections (called roaming). The two adjacent APs should use non-overlapping channels to avoid interference. The most popular non-overlapping channels are channels 1, 6 and 11 (will be explained later).</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/Wireless/Wireless_Infrastructure_mode.jpg" alt="Wireless_Infrastructure_mode.jpg" width="405" height="340" /></p>
<p>Roaming: The ability to use a wireless device and be able to move from one access point&#8217;s range to another without losing the connection.</p>
<p>When configuring ESS, each of the APs should be configured with the same Service Set Identifier (SSID) to support roaming function. SSID is the unique name shared among all devices on the same wireless network. In public places, SSID is set on the AP and broadcasts to all the wireless devices in range. SSIDs are case sensitive text strings and have a maximum length of 32 characters. SSID is also the minimum requirement for a WLAN to operate. In most Linksys APs (a product of Cisco), the default SSID is &#8220;linksys&#8221;.</p>
<p>In the next part we will discuss about Wireless Encoding, popular Wireless Security Standard and some sources of wireless interference.</p>
<p><!--adsense--></p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/wireless-tutorial/feed</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Frame Relay &#8211; GNS3 Lab</title>
		<link>http://www.9tut.com/frame-relay-gns3-lab</link>
		<comments>http://www.9tut.com/frame-relay-gns3-lab#comments</comments>
		<pubDate>Sat, 30 Jul 2011 10:51:10 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[Practice CCNA GNS3 Labs]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=775</guid>
		<description><![CDATA[In this article we will create a Frame Relay in GNS3 to learn how to configure Frame-Relay. First we create 4 routers and link them as follows: IOS used in this lab: c2600-bin-mz.123-6f.bin Configure IP addresses First we will assign IP addresses for all relevant interfaces. Notice that R1 will be Frame-Relay switch in this [...]]]></description>
			<content:encoded><![CDATA[<p>In this article we will create a Frame Relay in GNS3 to learn how to configure Frame-Relay.</p>
<p>First we create 4 routers and link them as follows:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/Frame_Relay_Topology.jpg" alt="Frame_Relay_Topology.jpg" width="564" height="260" /></p>
<p>IOS used in this lab: <strong>c2600-bin-mz.123-6f.bin</strong></p>
<p><span id="more-775"></span></p>
<p><!--adsense--></p>
<p class="blueandbold"><strong> </strong>Configure IP addresses</p>
<p>First we will assign IP addresses for all relevant interfaces. Notice that R1 will be  Frame-Relay switch in this lab so its interfaces don&#8217;t need IP addresses.</p>
<p>On R0:</p>
<p><strong>R0#configure terminal<br />
 R0(config)#interface s0/0<br />
 R0(config-if)#ip address 192.168.1.1 255.255.255.0<br />
 R0(config-if)#no shutdown</strong></p>
<p>On R2<strong>:<br />
 </strong></p>
<p><strong>R2#configure terminal<br />
 R2(config)#interface s0/0<br />
 R2(config-if)#ip address 192.168.1.2 255.255.255.0<br />
 R2(config-if)#no shutdown</strong></p>
<p>On R3:</p>
<p><strong>R3#configure terminal<br />
 R3(config)#interface s0/0<br />
 R3(config-if)#ip address 192.168.1.3 255.255.255.0<br />
 R3(config-if)#no shutdown</strong></p>
<p class="blueandbold">Configure Frame-Relay</p>
<p>To configure Frame-Relay on R0, R2 and R3 we need to enable Frame-Relay encapsulation and specify a type of LMI (ansi &#8211; in this case)</p>
<p><strong>R0,R2,R3(config)#interface s0/0<br />
 R0,R2,R3(config-if)#encapsulation frame-relay<br />
 R0,R2,R3(config-if)#frame-relay lmi-type ansi</strong></p>
<p class="blueandbold">Configure R1 as a Frame-Relay switch</p>
<p>In this lab R1 will be configured as a Frame-relay switch so no IP  address is required.</p>
<p>Turn on Frame-Relay switching feature on R1:<br />
 <strong>R1(config)#frame-relay switching</strong></p>
<p>On each interface we must specify how the frame will be proceeded. In practical, the Frame-Relay switch (R1) is placed at the ISP side so  its interfaces should be set to DCE.</p>
<p><strong>R1(config)# interface s0/0<br />
 R1(config-if)#encapsulation  frame-relay<br />
 R1(config-if)#encapsulation  lmi-type ansi<br />
 R1(config-if)#encapsulation  lmi-type dce<br />
 R1(config-if)#clock rate 64000<br />
 R1(config-if)#frame-relay route 102 interface Serial0/1 201 </strong>(will be explained later)<strong><br />
 R1(config-if)#frame-relay route 103 interface Serial0/2 301</strong></p>
<p>The command <span class="blueandbold">frame-relay route 102 interface Serial0/1 201</span> means  frame-relay traffic come to R1 which has a DLCI of 102 will be sent to interface  Serial0/1 with a DLCI of 201.</p>
<p>Note: Data link connection identifiers (DLCIs) are numbers that refer to paths through the Frame Relay network. They are only locally significant.</p>
<p>Continue configuring s0/1 &amp; s0/2 interfaces (same as s0/0)</p>
<p><strong>R1(config)# interface s0/1<br />
 R1(config-if)#encapsulation  frame-relay<br />
 R1(config-if)#encapsulation  lmi-type ansi<br />
 R1(config-if)#encapsulation  lmi-type dce<br />
 R1(config-if)#clock rate 64000<br />
 R1(config-if)#frame-relay route 201 interface Serial0/0 102</strong></p>
<p><strong>R1(config)# interface s0/2<br />
 R1(config-if)#encapsulation  frame-relay<br />
 R1(config-if)#encapsulation  lmi-type ansi<br />
 R1(config-if)#encapsulation  lmi-type dce<br />
 R1(config-if)#clock rate 64000<br />
 R1(config-if)#frame-relay route 301 interface Serial0/0 103</strong></p>
<p>Use the <span class="blueandbold">show frame-relay map</span> command to display the current map entries for static and dynamic routes</p>
<p><strong>R0#show frame-relay map</strong></p>
<p><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/Frame_Relay_R0_show_frame-relay_map.jpg" alt="Frame_Relay_R0_show_frame-relay_map.jpg" width="505" height="75" /></p>
<p>By default, Cisco uses Inverse ARP to map remote IP address of the PVC  with the DLCI of the local interface as we can see here. Fraom the output above we learn that DLCI 102 is set on Serial0/0 of R0 and mapped with  192.168.1.2. The status of this connection is &#8220;dynamic&#8221; and &#8220;active&#8221;, which means it is operating correctly.</p>
<p><!--adsense#MiddleContent--></p>
<p>Below are the outputs of this command on other routers:</p>
<p><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/Frame_Relay_R2_show_frame-relay_map.jpg" alt="Frame_Relay_R2_show_frame-relay_map.jpg" width="501" height="47" /></p>
<p><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/Frame_Relay_R3_show_frame-relay_map.jpg" alt="Frame_Relay_R3_show_frame-relay_map.jpg" width="510" height="49" /></p>
<p>Notice that you will only see the &#8220;map&#8221; at two ends. If we issue this command on Frame-Relay switch (R1 is this case) it will show nothing.<br class="spacer_" /></p>
<p>The <span class="blueandbold">show frame-relay pvc</span> command is used to display the status of all configured connections, traffic statistics, BECN and FECN packets received by the router.</p>
<p><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/Frame_Relay_R0_show_frame-relay_pvc.jpg" alt="Frame_Relay_R0_show_frame-relay_pvc.jpg" width="608" height="405" /></p>
<p><img src="../images/GNS3Labs/BasicLabs/Frame_Relay_R1_show_frame-relay_pvc_1.jpg" alt="Frame_Relay_R1_show_frame-relay_pvc_1.jpg" width="619" height="593" /></p>
<p><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/Frame_Relay_R1_show_frame-relay_pvc_2.jpg" alt="Frame_Relay_R1_show_frame-relay_pvc_2.jpg" width="619" height="499" /></p>
<p><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/Frame_Relay_R2_show_frame-relay_pvc.jpg" alt="Frame_Relay_R2_show_frame-relay_pvc.jpg" width="615" height="254" /></p>
<p><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/Frame_Relay_R3_show_frame-relay_pvc.jpg" alt="Frame_Relay_R3_show_frame-relay_pvc.jpg" width="613" height="252" /></p>
<p>Use the <span class="blueandbold">show frame-relay lmi</span> to display LMI traffic statistics (including LMI type, status messages sent and invalid LMI messages)</p>
<p><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/Frame_Relay_R0_show_frame-relay_lmi.jpg" alt="Frame_Relay_R0_show_frame-relay_lmi.jpg" width="580" height="147" /></p>
<p><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/Frame_Relay_R1_show_frame-relay_lmi.jpg" alt="Frame_Relay_R1_show_frame-relay_lmi.jpg" width="583" height="353" /></p>
<p><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/Frame_Relay_R2_show_frame-relay_lmi.jpg" alt="Frame_Relay_R2_show_frame-relay_lmi.jpg" width="584" height="146" /></p>
<p><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/Frame_Relay_R3_show_frame-relay_lmi.jpg" alt="Frame_Relay_R3_show_frame-relay_lmi.jpg" width="581" height="145" /></p>
<p>Pings from R0 to R2 &amp; R3 are successful.</p>
<p><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/Frame_Relay_R0_ping_R2.jpg" alt="Frame_Relay_R0_ping_R2.jpg" width="589" height="84" /></p>
<p><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/Frame_Relay_R0_ping_R3.jpg" alt="Frame_Relay_R0_ping_R3.jpg" width="587" height="85" /></p>
<p>However ping from R2 to R3 is unsuccessful. It means that customers cannot see each other. This is because the split horizon rule: &#8220;A router never sends information about a route back in same direction which is original information came&#8221;. To overcome this problem we can configure subinterfaces on R0.</p>
<p><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/Frame_Relay_R2_ping_R3.jpg" alt="Frame_Relay_R2_ping_R3.jpg" width="548" height="85" /></p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/frame-relay-gns3-lab/feed</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>Virtual Local Area Network VLAN Tutorial</title>
		<link>http://www.9tut.com/virtual-local-area-network-vlan-tutorial</link>
		<comments>http://www.9tut.com/virtual-local-area-network-vlan-tutorial#comments</comments>
		<pubDate>Wed, 20 Jul 2011 11:23:37 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Knowledge]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=711</guid>
		<description><![CDATA[VLAN Introduction &#8220;A virtual LAN (VLAN) is a group of networking devices in the same broadcast domain&#8221; It is the concept of VLAN that most of the books are using but it doesn&#8217;t help us understand the benefits of VLANs. If you ask &#8220;What is a LAN?&#8221; you will receive the same answer: it is [...]]]></description>
			<content:encoded><![CDATA[<p><strong>VLAN Introduction</strong></p>
<p>&#8220;A virtual LAN (VLAN) is a group of networking devices in the same broadcast domain&#8221;</p>
<p>It is the concept of VLAN that most of the books are using but it doesn&#8217;t help us understand the benefits of VLANs. If you ask &#8220;What is a LAN?&#8221; you will receive the same answer: it is also a group of networking devices in the same broadcast domain!</p>
<p>To make it clearer, I expanded the above statement into a bit longer statement :)</p>
<p>&#8220;A virtual LAN (VLAN) is a group of networking devices in the same broadcast domain, logically&#8221;</p>
<p>It means that the devices in the same VLAN may be widely separated in the network, both by geography and location. VLANs logically segment the network into different broadcast domains so that packets are only switched between ports that are designated for the same VLAN.</p>
<p>Let&#8217;s take an example to understand the benefits of VLAN. Suppose you are working in a big company with many departments, some of them are SALES and TECHNICAL departments. You are tasked to separate these departments so that each of them can only access specific resources in the company.</p>
<p>This task is really easy, you think. To complete this task, you just need to use different networks for these departments and use access-list to allow/deny that network to a specific resource. For example, you assign network 192.168.1.0/24 for SALES and 192.168.2.0/24 for TECH. At the &#8220;Company router&#8221; you apply an access-list to filter traffic from these networks. Below is the topology of your network without VLANs:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/VLAN/VLAN_need.jpg" alt="VLAN_need.jpg" width="570" height="200" /></p>
<p><!--adsense--></p>
<p><span id="more-711"></span></p>
<p>Everything looks good and you implement this design to your company. But after one month you receive many complaints from both your colleagues and leaders.</p>
<p>+ First, your department leaders need to access to additional private resources which employees are not allowed. <br />
 + Second, the company has just recruited some new SALES employees but now the SALES room is full so they have to sit at the 1st floor (in the TECH area). They want to access to SALES resources but they can only access to the TECH resources because they are connecting to TECH switch.</p>
<p>To solve the first problem maybe you will create a new and more powerful network for your leaders. But notice that each leader sits at different floor so you will need to link all of them to a switch -&gt; what a mess!</p>
<p>The second problem is more difficult than the first one. Maybe you have to create another network at the TECH area and apply the same policy as the SALES department for these hosts -&gt; another mess in management!</p>
<p>Maybe you will be glad to know VLAN can solve all these problems. VLAN helps you group users together according to their function rather than  their physical  location. This means you can use the same network for hosts in different floors (of course they can communicate with each other).</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/VLAN/VLAN_problem_solved.jpg" alt="VLAN_problem_solved.jpg" width="555" height="220" /></p>
<p>In this design:</p>
<p>+ you can logically create a new network with additional permissions for your leaders (LEADER network) by adding another VLAN.<br />
 + employees can sit anywhere to access the resources in their departments, provided that you allow them to do so.<br />
 + computers in the same department can communicate with each other although they are at different floors.</p>
<p><!--adsense#MiddleContent--></p>
<p>If these departments expand in the future you can still use the same network in any other floor. For example, SALES needs to have 40 more employees -&gt; you can use 4th floor for this expansion without changing the current network.</p>
<p>But wait&#8230; maybe you recognize something strange in the above design? How can 2 computers connecting to 2 different switches communicate? If one computer sends a broadcast packet will it be flooded to other departments as switch doesn&#8217;t break up broadcast domains?<br class="spacer_" /></p>
<p>The answer is &#8220;Yes, they can!&#8221; and it is the beauty of VLAN. Hosts in the same VLAN can communicate normally even they are connecting to 2 or more different switches. This makes the management much more simple.</p>
<p>Although layer 2 switches can only break up collision domains but VLANs can be used to break up broadcast domains. So if a computer in SALES broadcasts, only computers in SALES will receive that frame.</p>
<p>So we don&#8217;t need a router, right? The answer is &#8220;we still need a router&#8221; to enable different VLANs to communicate with each other. Without a router, the computers within each VLAN can communicate with each other but not with  any other computers in another VLAN. For example, we need a router to transfer file from LEADER to TECH. This is called &#8220;interVLAN routing&#8221;.</p>
<p>When using VLANs in networks that have multiple interconnected switches,  you need to use <strong>VLAN trunking between the switches</strong>. With VLAN trunking, the switches tag each frame sent between switches so that the receiving switch knows which VLAN the frame belongs to. This tag is known as a VLAN ID. A VLAN ID is a number which is used to identify a VLAN.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/VLAN/VLAN_ID.jpg" alt="VLAN_ID.jpg" width="420" height="135" /></p>
<p>Notice that the tag is only added and removed by the switches when frames are sent out on the trunk links. Hosts don&#8217;t know about this tag because it is added on the first switch and removed on the last switch. The picture below describes the process of a frame sent from PC A to PC B.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/VLAN/VLAN_tag_added_removed.jpg" alt="VLAN_tag_added_removed.jpg" width="550" height="260" /></p>
<p>Note: Trunk link does not belong to a specific VLAN, rather it is a  conduit for VLANs between switches and routers.</p>
<p>To allow interVLAN routing you need to configure <strong>trunking on the link between router and switch</strong>.</p>
<p>Therefore in our example we need to configure 3 links as &#8220;trunk&#8221;.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/VLAN/VLAN_problem_trunking.jpg" alt="VLAN_problem_trunking.jpg" width="555" height="220" /><br class="spacer_" /></p>
<p>Cisco switches support two different trunking protocols, <strong>Inter-Switch  Link (ISL)</strong> and <strong>IEEE 802.1q</strong>. Cisco created ISL before the IEEE standardized trunking protocol.  Because ISL is Cisco proprietary, it can be used only between two Cisco switches -&gt; 802.1q is usually used in practical.</p>
<p>In 802.1q encapsulation, there is a concept called native VLAN that was created for backward compatibility with old devices that don’t support VLANs. Native VLAN works as follows:</p>
<p>+ Frame belonging to the native VLAN is not tagged when sent out on the trunk links<br />
 + Frame received untagged on the trunk link is set to the native VLAN.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/VLAN/VLAN_native_VLAN.jpg" alt="VLAN_native_VLAN.jpg" width="550" height="260" /></p>
<p>So if an old switch doesn&#8217;t support VLAN it can still  &#8220;understand&#8221; that frame and continue sending it (without dropping it).</p>
<p>Every port belongs to at least one VLAN. If a switch receives untagged frames on a trunkport, they are assumed to be part of the native vlan. By default, VLAN 1 is the default and native VLAN but this can be changed on a per port basis by configuration.</p>
<p><!--adsense--></p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/virtual-local-area-network-vlan-tutorial/feed</wfw:commentRss>
		<slash:comments>62</slash:comments>
		</item>
		<item>
		<title>VLAN Trunking Protocol VTP Tutorial</title>
		<link>http://www.9tut.com/vlan-trunk-protocol-vtp-tutorial</link>
		<comments>http://www.9tut.com/vlan-trunk-protocol-vtp-tutorial#comments</comments>
		<pubDate>Sun, 10 Jul 2011 13:20:26 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Knowledge]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=697</guid>
		<description><![CDATA[This topic describes the features that VLAN Trunking Protocol (VTP) offers to support VLANs. To help you understand the basic concept, this is a summary of what VTP is: &#8220;VTP allows a network manager to configure a switch so that it will propagate VLAN configurations to other switches in the network&#8221; VTP minimizes misconfigurations and [...]]]></description>
			<content:encoded><![CDATA[<p>This topic describes the features that VLAN Trunking Protocol (VTP) offers to support VLANs. To help you understand the basic concept, this is a summary of what VTP is:</p>
<p><strong>&#8220;VTP allows a network manager to configure a switch so that it will  propagate VLAN configurations to other switches in the network&#8221;</strong></p>
<p>VTP minimizes misconfigurations and configuration inconsistencies that can cause problems, such as duplicate VLAN names or incorrect VLAN-type specifications. VTP helps you simplify management of the VLAN database across multiple switches.</p>
<p>VTP is a Cisco-proprietary protocol and is available on most of the Cisco switches.</p>
<p><strong>Why we need VTP?</strong></p>
<p>To answer this question, let&#8217;s discuss a real and popular network topology.</p>
<p>Suppose you are working in a medium company in a 5-floor office. You assigned each floor to a switch for easy management and of course they can be assigned to different VLANs. For example, your bosses can sit in any floor and still access Manage VLAN (VLAN 7). Your technical colleagues can sit anywhere on the floors to access Technical VLAN (VLAN 4). This is the best design because each person&#8217;s permission is not limited by the physical location.</p>
<p><br class="spacer_" /></p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/VTP/VTP_building_needed.jpg" alt="VTP_building_needed.jpg" width="550" height="370" /></p>
<p><span id="more-697"></span></p>
<p><!--adsense--></p>
<p>Now let&#8217;s discuss about VTP role in this topology! Suppose VTP is not running on these switches. One day, your boss decides to add a new department to your office, the Support Department, and you are tasked to add a new SUPPORT VLAN for this department. How will you do that? Well, without VTP you have to go to each switch to enable this new VLAN. Fortunately your office only has 5 floors so you can finish this task in some hours :)</p>
<p>But just imagine if your company was bigger with 100-floor office and some VLANs needed to be added every month! Well, it will surely become a daunting task to add a new VLAN like this. Luckily, Cisco always &#8220;thinks big&#8221; to create a method for you to just sit at the &#8220;Main Sw&#8221;, adding your new VLANs and magically, other switches automatically learn about this VLAN, sweet, right? It is not a dream, it is what VTP does for you!</p>
<p><strong>How VTP Works</strong></p>
<p>To make switches exchange their VLAN information with each other, they need to be configured in the same <strong>VTP domain</strong>. Only switches belonging to the same domain share their VLAN information. When a change is made to the VLAN database, it is propagated to all switches via <strong>VTP advertisements</strong>.</p>
<p>To maintain domain consistency, only one switch should be allowed to create (or delete, modify) new VLAN. This switch is like the &#8220;master&#8221; of the whole VTP domain and it is operated in <strong>Server mode</strong>. This is also the default mode.</p>
<p>Other switches are only allowed to receive and forward updates from the &#8220;server&#8221; switch. They are operated in <strong>Client mode</strong>.</p>
<p style="text-align: center;"><img src="../images/ccna_self_study/VTP/VTP_modes.jpg" alt="VTP_modes.jpg" width="460" height="210" /></p>
<p>In some cases, the network manager doesn&#8217;t want a switch to learn VTP information from other switches. He can set it to <strong>Transparent mode</strong>. In this mode, a switch maintains its own VLAN database and never learn VTP information from other switches (even the server). However, it still forwards VTP advertisements from the server to other switches (but doesn’t read that update). A transparent switch can add, delete and modify VLAN database locally.</p>
<p>Now return to the example above, we can configure any switches as the  &#8220;server&#8221; but for our convenience, the &#8220;Main Sw&#8221; should be assigned this  function and we should place it in a safe place.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/VTP/VTP_modes_assigned.jpg" alt="VTP_modes_assigned.jpg" width="380" height="370" /></p>
<p style="text-align: left;">As said above, VTP advertisements bring VLAN information to all the switches in a VTP domain. Each VTP advertisement is sent with a <strong>Revision number</strong>. This  number is used in order to determine whether the VTP advertisement is  more recent than the current version of that switch. Because each time  you make a VLAN change in a switch, the configuration revision is  incremented by one. So the higher the revision number, the better your  VTP advertisement.</p>
<p style="text-align: left;">For example, the first time the Main Sw sends a VTP advertisement, its  Revision number is 1. When you add a new VLAN to the Main Sw, it will  send a VTP advertisement with the Revision number of 2. Client switches  first receive the VTP advertisement with the Revision number of 1, which  is bigger than its current Revision number (0) so it updates its VLAN  database. Next it receives the VTP advertisement with the Revision  number of 2, it continues comparing with its current Revision number (1)  -&gt; it continues update its VLAN database.</p>
<p><!--adsense#MiddleContent--></p>
<p style="text-align: left;">One important thing you must know is when a switch receives a better VTP  advertisement, it deletes its whole VTP information and copy the new  information from the better VTP advertisement to its VLAN database. A  switch does not try to compare its own VLAN database with information  from the received VTP advertisements to find out and update the  difference!</p>
<p style="text-align: left;">Note: VTP advertisements are sent as multicast frames and all neighbors in that domain receive the frames.</p>
<p><strong>The &#8220;show vtp status&#8221; command analysis</strong></p>
<p>The most important command to view the status of VTP on Cisco switches that each CCNA learners must grasp is the &#8220;show vtp status&#8221; command. Let&#8217;s have a look at the output of this command:</p>
<p><img src="http://www.9tut.com/images/ccna_self_study/VTP/show vtp status.jpg" alt="show vtp status.jpg " /></p>
<p>+ VTP Version: displays the VTP version the switch is running. By default, the switch runs version 1 but can be set to version 2. Within a domain, the two VTP versions are not interoperable so make sure to configure the same VTP version on every switch in a domain.<br />
 + Configuration Revision: current Revision number on this switch.<br />
 + Maximum VLANs Supported Locally: maximum number of VLANs supported locally.<br />
 + Number of Existing VLANs: Number of existing VLANs.<br />
 + VTP Operating Mode: can be server, client, or transparent.<br />
 + VTP Domain Name: name that identifies the administrative domain for the switch.</p>
<p>By default, a switch operates in VTP Server mode with a NULL (blank)   domain name with no password configured (the password field is not   listed in the output)</p>
<p>+ VTP Pruning Mode: displays whether pruning is enabled or disabled. We will discuss about VTP Pruning later.<br />
 + VTP V2 Mode: displays if VTP version 2 mode is enabled. VTP version 2 is disabled by default.<br />
 + VTP Traps Generation: displays whether VTP traps are sent to a network management station.<br />
 + MD5 Digest: a 16-byte checksum of the VTP configuration.<br />
 + Configuration Last Modified: date and time of the last configuration modification. Displays the IP address of the switch that caused the configuration change to the database.</p>
<p><strong>VTP Pruning</strong></p>
<p>To understand what VTP Pruning is, let&#8217;s see an example:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/VTP/VTP_Pruning_example.jpg" alt="VTP_Pruning_example.jpg" width="500" height="340" /></p>
<p>When PC A sends a broadcast frame on VLAN 10, it travels across all trunk links in the VTP domain. Switches Server, Sw2, and Sw3 all receive broadcast frames from PC A. But only Sw3 has user on VLAN 10 and it is a waste of bandwidth on Sw2. Moreover, that broadcast traffic also consumes processor time on Sw2. The link between switches Server and Sw2 does not carry any VLAN 10 traffic so it can be &#8220;pruned&#8221;.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/VTP/VTP_Pruning_Enabled.jpg" alt="VTP_Pruning_Enabled.jpg" width="500" height="340" /><br class="spacer_" /></p>
<p>VTP Pruning makes more efficient use of trunk bandwidth by forwarding broadcast and unknown unicast frames on a VLAN only if the switch on the receiving end of the trunk has ports in that VLAN. In the above example, Server switch doesn&#8217;t send broadcast frame to Sw2 because Sw2 doesn&#8217;t have ports in VLAN 10.</p>
<p>When a switch has a port associated with a VLAN, the switch sends an advertisement to its neighbors to inform that it has active ports on that VLAN. For example, Sw3 sends an advertisement to Server switch to inform that it has active port for VLAN 10. Sw2 has not advertised about VLAN 10 so Server switch will prune VLAN 10 on the trunk to Sw2.</p>
<p>You only need to enable pruning on one VTP server switch in the domain.</p>
<p>VTP Configuration</p>
<p><strong>Main Sw(config)#vtp version 2<br />
 Main Sw(config)#vtp domain 9tut<br />
 Main Sw(config)#vtp mode server<br />
 Main Sw(config)#vtp password keepitsecret</strong></p>
<p>On client switches</p>
<p><strong>Client(config)#vtp version 2<br />
 Client(config)#vtp domain 9tut<br />
 Client(config)#vtp password keepitsecret<br />
 Client(config)#vtp mode client</strong></p>
<p>Notice: Before configuring VTP make sure the links between your switches are trunk links. Your trunk link can automatically be formed if both of your switches are not 2960 or 3560 because ports on the 2960 and 3560 switches are set to dynamic auto by default. If both sides are set to dynamic auto, the link will remain in access mode. To configure trunk between these ports, use these commands:</p>
<p><strong>Client(config)#interface fa0/1</strong> (or the interface on the link you want to be trunk)<br />
 <strong>Client(config-if)#switchport mode trunk</strong></p>
<p>These commands only need to be used on one of two switches to form the trunk.</p>
<p><strong>Below summaries important notes about VTP:</strong></p>
<p>+ Whenever a change occurs in the VLAN database, the VTP server increments its configuration revision number and then advertises the new revision throughout the VTP domain via VTP advertisements.<br />
 + VTP operates in one of three modes: server, transparent, or client.</p>
<p>VTP modes:</p>
<p>* Server: The default mode. When you make a change to the VLAN configuration on a VTP server, the change is propagated to all switches in the VTP domain. VTP messages are transmitted out of all the trunk connections. In Server mode we can create, modify, delete VLANs.</p>
<p>* Client: cannot make changes to the VLAN configuration when in this  mode; however, a VTP client can send any VLANs currently listed in its  database to other VTP switches. VTP client also forwards VTP  advertisements (but cannot create VTP advertisements).</p>
<p>* Transparent: When you make a change to the VLAN configuration in this mode, the change affects only the local switch and does not propagate to other switches in the VTP domain. VTP transparent mode does forward VTP advertisements that it receives within the domain.</p>
<p>VTP Pruning makes more efficient use of trunk bandwidth by forwarding  broadcast and unknown unicast frames on a VLAN only if the switch on the  receiving end of the trunk has ports in that VLAN.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/vlan-trunk-protocol-vtp-tutorial/feed</wfw:commentRss>
		<slash:comments>104</slash:comments>
		</item>
		<item>
		<title>CCNA Access List Sim</title>
		<link>http://www.9tut.com/70-ccna-access-list-sim</link>
		<comments>http://www.9tut.com/70-ccna-access-list-sim#comments</comments>
		<pubDate>Sun, 10 Jul 2011 10:37:45 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Lab Sim]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=39</guid>
		<description><![CDATA[Question An administrator is trying to ping and telnet from Switch to Router with the results shown below: Switch&#62; Switch&#62; ping 10.4.4.3 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.4.4.3,timeout is 2 seconds: .U.U.U Success rate is 0 percent (0/5) Switch&#62; Switch&#62; telnet 10.4.4.3 Trying 10.4.4.3 &#8230; % Destination unreachable; gateway [...]]]></description>
			<content:encoded><![CDATA[<p class="ccnaquestionsnumber">Question</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/accesslist_sim.jpg" border="0" alt="accesslist_sim" width="400" height="250" /></p>
<p>An administrator is trying to ping and telnet from Switch to Router with the results shown below:</p>
<p>Switch&gt;<br />
 Switch&gt; ping 10.4.4.3<br />
 Type escape sequence to abort.<br />
 Sending 5, 100-byte ICMP Echos to 10.4.4.3,timeout is 2 seconds:<br />
 .U.U.U<br />
 Success rate is 0 percent (0/5) <br />
 Switch&gt;<br />
 Switch&gt; telnet 10.4.4.3 <br />
 Trying 10.4.4.3 &#8230;<br />
 % Destination unreachable; gateway or host down<br />
 Switch&gt;</p>
<p>Click the console connected to Router and issue the appropriate commands to answer the questions.</p>
<p><span class="ccnaexplanation">Answer and Explanation</span></p>
<p><!--adsense--></p>
<p><span id="more-39"></span></p>
<p>Note: If you are not sure about Access-list, please read my <a href="http://www.9tut.com/access-list-tutorial" target="_blank">Access-list tutorial</a>. You can also download this sim to practice (open with Packet Tracer) here: <a href="http://www.9tut.com/download/9tut.com_CCNA_Access_List_Sim.pkt" target="_blank">http://www.9tut.com/download/9tut.com_CCNA_Access_List_Sim.pkt</a></p>
<p>For this question we only need to use the <span class="pinkandbold">show running-config</span> command to answer all the questions below</p>
<p><span class="blueandbold">Router&gt;</span><span class="pinkandbold">enable</span><br />
 <span class="blueandbold">Router#</span><span class="pinkandbold">show running-config</span></p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/accesslist_sim_showrun1.jpg" border="0" alt="accesslist_sim_showrun1" width="323" height="854" /></p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/accesslist_sim_showrun2.jpg" border="0" alt="accesslist_sim_showrun2" width="323" height="456" /></p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/accesslist_sim_showrun3.jpg" border="0" alt="accesslist_sim_showrun3" width="336" height="594" /></p>
<p><span class="ccnaquestionsnumber">Question 1:</span></p>
<p>Which will fix the issue and allow ONLY ping to work while keeping telnet disabled?</p>
<p>A &#8211; Correctly assign an IP address to interface fa0/1<br />
 B &#8211; Change the ip access-group command on fa0/0 from &#8220;in&#8221; to &#8220;out&#8221;<br />
 C &#8211; Remove <em>access-group 106 in</em> from interface fa0/0 and add access-group 115 in. <br />
 D &#8211; Remove access-group 102 out from interface s0/0/0 and add access-group 114 in <br />
 E &#8211; Remove access-group 106 in from interface fa0/0 and add access-group 104 in</p>
<p><br class="spacer_" /></p>
<p><span class="blueandbold">Answer: </span>E</p>
<p><br class="spacer_" /></p>
<p class="ccnaexplanation">Explanation:</p>
<p>Let&#8217;s have a look at the access list 104:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/accesslist_sim_answer1.jpg" border="0" alt="accesslist_sim_answer1" width="302" height="118" /></p>
<p>The question does not ask about ftp traffic so we don&#8217;t care about the two first lines. The 3rd line denies all telnet traffic and the 4th line allows icmp traffic to be sent (ping). Remember that the access list 104 is applied on the inbound direction so the 5th line &#8220;access-list 104 deny icmp any any echo-reply&#8221; will not affect our icmp traffic because the &#8220;echo-reply&#8221; message will be sent over the outbound direction.</p>
<p class="ccnaquestionsnumber">Question 2:</p>
<p>What would be the effect of issuing the command <em>ip access-group 114 in</em> to the fa0/0 interface?</p>
<p>A &#8211; Attempts to telnet to the router would fail<br />
 B &#8211; It would allow all traffic from the 10.4.4.0 network<br />
 C &#8211; IP traffic would be passed through the interface but TCP and UDP traffic would not<br />
 D &#8211; Routing protocol updates for the 10.4.4.0 network would not be accepted from the fa0/0 interface</p>
<p><br class="spacer_" /></p>
<p><span class="blueandbold">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation:</p>
<p>From the output of access-list 114: <strong>access-list 114 permit ip 10.4.4.0 0.0.0.255</strong> any we can easily understand that this access list allows all traffic (ip) from 10.4.4.0/24 network</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 3:</p>
<p>What would be the effect of issuing the command <em>access-group 115 in</em> on the s0/0/1 interface?</p>
<p>A &#8211; No host could connect to Router through s0/0/1<br />
 B &#8211; Telnet and ping would work but routing updates would fail. <br />
 C &#8211; FTP, FTP-DATA, echo, and www would work but telnet would fail<br />
 D &#8211; Only traffic from the 10.4.4.0 network would pass through the interface</p>
<p><br class="spacer_" /></p>
<p><span class="blueandbold">Answer:</span> A</p>
<p class="ccnaexplanation">Explanation:</p>
<p>First let&#8217;s see what was configured on interface S0/0/1:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/accesslist_sim_answer3.jpg" border="0" alt="accesslist_sim_answer3" width="254" height="76" /></p>
<p><span style="font-size: 9pt; line-height: 115%; font-family: 'Arial','sans-serif';">Recall that each interface only accepts one access-list, so when using the command “ip access-group 115 in” on the s0/0/1 interface it will overwrite the initial access-list 102. Therefore any telnet connection will be accepted (so we can eliminate answer C). <br />
 B is not correct because if telnet and ping can work then routing updates can, too. <br />
 D is not correct because access-list 115 does not mention about 10.4.4.0 network. So the most reasonable answer is A.</span></p>
<p style="font-size: 9pt; line-height: 115%; font-family: 'Arial','sans-serif';">But here raise a question…</p>
<p style="font-size: 9pt; line-height: 115%; font-family: 'Arial','sans-serif';">The wildcard mask of access-list 115, which is 255.255.255.0, means that only host with ip addresses in the form of x.x.x.0 will be accepted. But we all know that x.x.x.0 is likely to be a network address so the answer A: “no host could connect to Router through s0/0/1” seems right…</p>
<p style="font-size: 9pt; line-height: 115%; font-family: 'Arial','sans-serif';">But what will happen if we don’t use a subnet mask of 255.255.255.0? For example we can use an ip address of 10.45.45.0 255.255.0.0, such a host with that ip address exists and we can connect to the router through that host. Now answer A seems incorrect!</p>
<p style="font-size: 9pt; line-height: 115%; font-family: 'Arial','sans-serif';">Please comment if you have any idea for this sim!</p>
<p><!--adsense--></p>
<p>Other lab-sims on this site:</p>
<p><a href="http://www.9tut.com/52-ccna-nat-sim-question">CCNA NAT SIM Question 1</a></p>
<p><a href="http://www.9tut.com/57-ccna-nat-sim-question-2">CCNA NAT SIM Question 2</a></p>
<p><a href="http://www.9tut.com/ccna-hotspot-questions">CCNA Frame Relay Sim</a></p>
<p><a href="http://www.9tut.com/59-ccna-configuration-sim-question"> CCNA Configuration SIM Question (RIPv2 SIM)</a></p>
<p><a href="http://www.9tut.com/80-ccna-vtp-sim-question">CCNA VTP SIM</a></p>
<p><a href="http://www.9tut.com/64-ccna-eigrp-lab-question">CCNA EIGRP LAB</a></p>
<p><a href="http://www.9tut.com/65-ccna-drag-and-drop-sim-question">CCNA Drag and Drop SIM</a></p>
<p><a href="http://www.9tut.com/66-ccna-implementation-sim">CCNA Implementation SIM</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/70-ccna-access-list-sim/feed</wfw:commentRss>
		<slash:comments>273</slash:comments>
		</item>
		<item>
		<title>CCNA NAT SIM Question 2</title>
		<link>http://www.9tut.com/57-ccna-nat-sim-question-2</link>
		<comments>http://www.9tut.com/57-ccna-nat-sim-question-2#comments</comments>
		<pubDate>Tue, 05 Jul 2011 10:35:21 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Lab Sim]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=35</guid>
		<description><![CDATA[Question You work as a network technician at 9tut.com. Study the exhibit carefully. You are required to perform configurations to enable Internet access. The Router ISP has given you six public IP addresses in the 198.18.32.65 198.18.32.70/29 range. 9tut.com has 62 clients that needs to have simultaneous internet access. These local hosts use private IP [...]]]></description>
			<content:encoded><![CDATA[<p><span class="ccnaquestionsnumber">Question</span></p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_nat_sim_lab3.jpg" border="0" alt="ccna_nat_sim_lab_3" width="598" height="182" /></p>
<table style="background-color: #dddbde;" border="0">
<tbody>
<tr>
<td style="font-size: 12px;">You work as a network technician at 9tut.com. Study the exhibit carefully. You are required to perform configurations to enable Internet access. The Router ISP has given you six public IP addresses in the 198.18.32.65 198.18.32.70/29 range.<br />
 9tut.com has 62 clients that needs to have simultaneous internet access. These local hosts use private IP addresses in the 192.168.6.65 &#8211; 192.168.6.126/26 range.<br />
 You need to configure Router1 using the PC1 console.<br />
 You have already made basic router configuration. You have also configured the appropriate NAT interfaces; NAT inside and NAT outside respectively.<br />
 Now you are required to finish the configuration of Router1.</td>
</tr>
</tbody>
</table>
<p class="ccnaexplanation">Solution</p>
<p><span id="more-35"></span></p>
<p><!--adsense--></p>
<p>Note: If you are not sure how NAT &amp; PAT work, please read my <a href="http://www.9tut.com/network-address-translation-nat-tutorial" target="_blank">Network  Address Translation NAT Tutorial</a>. You can download a similar sim to practice here: <a href="http://www.9tut.com/download/9tut.com_CCNA_NAT_sim_question.zip" target="_blank">http://www.9tut.com/download/9tut.com_CCNA_NAT_sim_question.zip</a></p>
<p>The company has 62 hosts that need to access the internet simultaneously but we just have 6 public IP addresses from 198.18.32.65 to 198.18.32.70/29 =&gt; we have to use NAT overload (or PAT)</p>
<p>Double click on PC1 to access Router1&#8242;s command line interface</p>
<p><span class="blueandbold">Router1&gt;</span><span class="pinkandbold">enable</span><br />
 <span class="blueandbold">Router1#</span><span class="pinkandbold">configure terminal</span></p>
<p>Create a NAT pool of global addresses to be allocated with their netmask (notice that /29 = 248)</p>
<p><span class="blueandbold">Router1</span><span class="blueandbold">(config)#</span><span class="pinkandbold">ip nat pool mypool 198.18.32.65 198.18.32.70 netmask 255.255.255.248</span></p>
<p>Create a standard access control list that permits the addresses that are to be translated</p>
<p><span class="blueandbold">Router1</span><span class="blueandbold">(config)#</span><span class="pinkandbold">access-list 1 permit 192.168.6.64 0.0.0.63</span></p>
<p>Establish dynamic source translation, specifying the access list that was defined in the prior step</p>
<p><span class="blueandbold">Router1</span><span class="blueandbold">(config)#</span><span class="pinkandbold">ip nat inside source list 1 pool mypool overload </span></p>
<p>This command translates all source addresses that pass access list 1, which means a source address from 192.168.6.65 to 192.168.6.126, into an address from the pool named mypool (the pool contains addresses from 198.18.32.65 to 198.18.32.70)</p>
<p><strong>Overload</strong> keyword allows to map multiple IP addresses to a single registered IP address (many-to-one) by using different ports</p>
<p>The question said that appropriate interfaces have been configured for NAT inside and NAT outside statements.</p>
<p>This is how to configure the NAT inside and NAT outside, just for your understanding:</p>
<p><span class="blueandbold">Router1</span><span class="blueandbold">(config)#</span><span class="pinkandbold">interface fa0/0</span><br />
 <span class="blueandbold">Router1</span><span class="blueandbold">(config-if)#</span><span class="pinkandbold">ip nat inside</span></p>
<p><span class="blueandbold">Router1</span><span class="blueandbold">(config-if)#</span><span class="pinkandbold">exit</span></p>
<p><span class="blueandbold">Router1</span><span class="blueandbold">(config)#</span><span class="pinkandbold">interface s0/0</span><br />
 <span class="blueandbold">Router1</span><span class="blueandbold">(config-if)#</span><span class="pinkandbold">ip nat outside</span></p>
<p>Before leaving Router1, you should save the configuration:</p>
<p><span class="blueandbold">Router1(config)#</span><span class="pinkandbold">end</span> (or <span class="blueandbold">Router1(config-if)#</span><span class="pinkandbold">end</span>)<br />
 <span class="blueandbold">Router1#</span><span class="pinkandbold">copy running-config startup-config</span></p>
<p>Check your configuration by going to PC2 and type:</p>
<p><span class="blueandbold">C:\&gt;</span><span class="pinkandbold">ping 192.0.2.114</span></p>
<p>The ping should work well and you will be replied from 192.0.2.114</p>
<p><!--adsense--></p>
<p>Other lab-sims on this site:</p>
<p><a href="http://www.9tut.com/70-ccna-access-list-sim">CCNA Access List Sim</a></p>
<p><a href="http://www.9tut.com/52-ccna-nat-sim-question">CCNA NAT SIM Question 1</a></p>
<p><a href="http://www.9tut.com/ccna-hotspot-questions">CCNA Frame Relay Sim</a></p>
<p><a href="http://www.9tut.com/59-ccna-configuration-sim-question"> CCNA Configuration SIM Question (RIPv2 SIM)</a></p>
<p><a href="http://www.9tut.com/80-ccna-vtp-sim-question">CCNA VTP SIM</a></p>
<p><a href="http://www.9tut.com/64-ccna-eigrp-lab-question">CCNA EIGRP LAB</a></p>
<p><a href="http://www.9tut.com/65-ccna-drag-and-drop-sim-question">CCNA Drag and Drop SIM</a></p>
<p><a href="http://www.9tut.com/66-ccna-implementation-sim">CCNA Implementation SIM</a></p>
<p><br class="spacer_" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/57-ccna-nat-sim-question-2/feed</wfw:commentRss>
		<slash:comments>250</slash:comments>
		</item>
		<item>
		<title>Practice Real CCNA Labs with Packet Tracer Simulator</title>
		<link>http://www.9tut.com/69-practice-real-ccna-labs-with-packet-tracer-simulator</link>
		<comments>http://www.9tut.com/69-practice-real-ccna-labs-with-packet-tracer-simulator#comments</comments>
		<pubDate>Sat, 02 Jul 2011 10:35:52 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Lab Sim]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=37</guid>
		<description><![CDATA[Well, the title said it all. Here are some screenshots about the labs in Packet Tracer Simulator: CCNA Drag And Drop SIM: CCNA EIGRP SIM: Configuration SIM: Please say thanks to Runiya, who created these lab-sim questions on Packet Tracer. Now you can practice with real labs in your CCNA exam! The lab file includes: [...]]]></description>
			<content:encoded><![CDATA[<p>Well, the title said it all. Here are some screenshots about the labs in Packet Tracer Simulator:</p>
<p><a href="http://www.9tut.com/65-ccna-drag-and-drop-sim-question" target="_blank">CCNA Drag And Drop SIM:</a></p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/packet_tracer_CCNA_lab1.jpg" border="0" alt="packet_tracer_CCNA_lab1" width="377" height="329" /></p>
<p><span id="more-37"></span></p>
<p><!--adsense--></p>
<p><a href="http://www.9tut.com/64-ccna-eigrp-lab-question" target="_blank">CCNA EIGRP SIM:</a></p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/packet_tracer_CCNA_lab2.jpg" border="0" alt="packet_tracer_CCNA_lab2" /></p>
<p><a href="http://www.9tut.com/59-ccna-configuration-sim-question" target="_blank">Configuration SIM: </a></p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/packet_tracer_CCNA_lab3.jpg" border="0" alt="packet_tracer_CCNA_lab3" width="528" height="190" /></p>
<p>Please say thanks to <span class="pinkandbold">Runiya</span>, who created these lab-sim questions on Packet Tracer. Now you can practice with real labs in your CCNA exam!</p>
<p>The lab file includes:</p>
<p>+ CCNA Implementation sim<br />
 + CCNA drag and drop sim<br />
 + CCNA EIGRP sim<br />
 + CCNA NAT sim<br />
 + CCNA RIP Configuration sim<br />
 + CCNA Access-list sim<br />
 + CCNA Access-list sim 2<br />
 + CCNA VTP sim</p>
<p>Link to download these labs</p>
<p><a href="http://www.9tut.com/download/CCNA_DragDrop_EIGRP_RIP_NAT_and_implementation_LabsInPacketTracer.zip">Download lab files from 9tut</a></p>
<p>You will need <strong>Packet Tracer version 5.3 or above</strong> to open these files. It&#8217;s totally free! You can <a href="http://cisco.netacad.net/cnams/content/packetTracer/PTCache.jsp" target="_blank">download this software</a> but you need to <a href="http://tools.cisco.com/RPF/register/register.do" target="_blank">register</a> first or you can find a mirror download with <a href="http://www.google.com/" target="_blank">google</a> (with keyword &#8220;download packet tracer&#8221;)</p>
<p>Please notice that in real exam, you have to click on host (PC) to access command-line-interface of the router, not the router itself.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/69-practice-real-ccna-labs-with-packet-tracer-simulator/feed</wfw:commentRss>
		<slash:comments>301</slash:comments>
		</item>
		<item>
		<title>CCNA Implementation SIM</title>
		<link>http://www.9tut.com/66-ccna-implementation-sim</link>
		<comments>http://www.9tut.com/66-ccna-implementation-sim#comments</comments>
		<pubDate>Fri, 01 Jul 2011 10:34:51 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Lab Sim]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=33</guid>
		<description><![CDATA[This topology contains 3 routers and 1 switch. Complete the topology. Drag the appropriate device icons to the labeled Device Drag the appropriate connections to the locations labeled Connections. Drag the appropriate IP addresses to the locations labeled IP address (Hint: use the given host addresses and Main router information) To remove a device or [...]]]></description>
			<content:encoded><![CDATA[<p>This topology contains 3 routers and 1 switch. Complete the topology.</p>
<p><strong>Drag the appropriate device icons to the labeled Device<br />
 Drag the appropriate connections to the locations labeled Connections.<br />
 Drag the appropriate IP addresses to the locations labeled IP address </strong></p>
<p>(Hint: use the given host addresses and Main router information)<br />
 To remove a device or connection, drag it away from the topology.</p>
<p><strong>Use information gathered from the Main router to complete the configuration of any additional routers</strong>. No passwords are required to access the Main router. The config terminal command has been disabled for the HQ router. The router does not require any configuration.</p>
<p>Configure each additional router with the following:</p>
<p>Configure the interfaces with the correct IP address and enable the interfaces.<br />
 Set the password to allow console access to <strong>consolepw</strong><br />
 Set the password to allow telnet access to <strong>telnetpw</strong><br />
 Set the password to allow privilege mode access to <strong>privpw</strong></p>
<p><strong>Note: Because routes are not being added to the configurations, you will not be able to ping through the internetwork.</strong><br />
 All devices have cable autosensing capabilities disabled.<br />
 All hosts are PC’s</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/assigncableandip.jpg" border="0" alt="assigncableandip" width="507" height="464" /></p>
<p class="ccnaexplanation">Answer and explanation</p>
<p><br class="spacer_" /></p>
<p><span id="more-33"></span></p>
<p><!--adsense--></p>
<p>Note: You can download this sim to practice here: <a href="http://www.9tut.com/download/9tut.com_CCNA_Implementation_question.zip" target="_blank">http://www.9tut.com/download/9tut.com_CCNA_Implementation_question.zip</a></p>
<p><span class="blueandbold">Specify appropriate devices and drag them on the &#8220;Device&#8221; boxes</span></p>
<p>For the device at the bottom-right box, we notice that it has 2 interfaces Fa0/2 and Fa0/4; moreover the link connects the PC on the right with the device on the bottom-right is a straight-through link -&gt; it is a switch</p>
<p>The question stated that this topology contains 3 routers and 1 switch -&gt; two other devices are routers</p>
<p>Place them on appropriate locations as following:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_implementation_1.jpg" border="0" alt="ccna_implementation_1" width="502" height="275" /></p>
<p>(Host D and host E will be automatically added after placing two routers. Click on them to access neighboring routers)</p>
<p class="blueandbold">Specify appropriate connections between these devices:</p>
<p>+ The router on the left is connected with the Main router through FastEthernet interfaces: use a <strong>crossover cable</strong><br />
 + The router on the right  is connected with the Main router through Serial interfaces: use a <strong>serial cable</strong><br />
 + The router on the right and the Switch: use a <strong>straight-through cable<br />
 </strong>+ The router on the left and the computer: use a <strong>crossover cable</strong></p>
<p>(To remember which type of cable you should use, follow these tips:</p>
<p>- To connect <strong>two serial interfaces</strong> of 2 routers we use <strong>serial cable</strong><br />
 &#8211; To specify when we use crossover cable or straight-through cable, we should remember:<br />
 <strong>Group 1:</strong> Router, Host, Server<br />
 <strong>Group 2:</strong> Hub, Switch<br />
 One device in group 1 + One device in group 2: use <strong>straight-through cable</strong><br />
 Two devices in the same group: use <strong>crossover cable</strong></p>
<p>For example: we use straight-through cable to connect switch to router, switch to host, hub to host, hub to server&#8230; and we use crossover cable to connect switch to switch, switch to hub, router to router, host to host&#8230; )</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_implementation_2.jpg" border="0" alt="ccna_implementation_2" width="485" height="263" /></p>
<p>Assign appropriate IP addresses for interfaces:</p>
<p>From Main router, use <span class="pinkandbold">show running-config</span> command:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_implementation_3.jpg" border="0" alt="ccna_implementation_3" width="280" height="161" /></p>
<p><em>(Notice that you may see different IP addresses in the real CCNA exam, the ones shown above are just used for demonstration)</em></p>
<p>From the output we learned that the ip address of Fa0/0 interface of the Main router is 192.168.152.177/28. This address belongs to a subnetwork which has:</p>
<p><span class="blueandbold">Increment:</span> 16 (/28 = 255.255.255.240 or 1111 1111.1111 1111.1111 1111.111<strong>1</strong> 0000)<br />
 <span class="blueandbold">Network address</span>: 192.168.152.176 (because 176 = 16 * 11 and 176 &lt; 177)<br />
 <span class="blueandbold">Broadcast address:</span> 192.168.152.191 (because 191 = 176 + 16 &#8211; 1)</p>
<p>And we can pick up an ip address from the list that belongs to this subnetwork: <strong>192.168.152.190</strong> and assign it to the Fa0/0 interface the router on the left</p>
<p>Use the same method for interface Serial0/0 with an ip address of 192.168.152.161</p>
<p><span class="blueandbold">Increment:</span> 16<br />
 <span class="blueandbold">Network address:</span> 192.168.152.160 (because 160 = 16 * 10 and 160 &lt; 161)<br />
 <span class="blueandbold">Broadcast address:</span> 192.168.152.175 (because 176 = 160 + 16 &#8211; 1)</p>
<p>-&gt; and we choose <strong>192.168.152.174</strong> for Serial0/0 interface of the router on the right</p>
<p class="ccnaexplanation">Interface Fa0/1 of the router on the left</p>
<p>IP (of the computer on the left) : 192.168.152.129/28</p>
<p><span class="blueandbold">Increment:</span> 16<br />
 <span class="blueandbold">Network address:</span> 192.168.152.128 (because 128 = 16 * 8 and 128 &lt; 129)<br />
 <span class="blueandbold">Broadcast address:</span> 192.168.152.143 (because 143 = 128 + 16 &#8211; 1)</p>
<p>-&gt; we choose <strong>192.168.152.142</strong> from the list</p>
<p class="ccnaexplanation">Interface Fa0/0 of the router on the right</p>
<p>IP (of the computer on the left) : 192.168.152.225/28</p>
<p><span class="blueandbold">Increment:</span> 16<br />
 <span class="blueandbold">Network address:</span> 192.168.152.224 (because 224 = 16 * 14 and 224 &lt; 225)<br />
 <span class="blueandbold">Broadcast address:</span> 192.168.152.239 (because 239 = 224 + 16 &#8211; 1)</p>
<p>-&gt; we choose <strong>192.168.152.238</strong> from the list</p>
<p>Let&#8217;s have a look at the picture below to summarize</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_implementation_4.jpg" border="0" alt="ccna_implementation_4" width="507" height="464" /></p>
<p>Configure two routers on the left and right with these commands:</p>
<p>Router1 = router on the left</p>
<p><span class="blueandbold">Assign appropriate IP addresses to Fa0/0 &amp; Fa0/1 interfaces:</span></p>
<p><span class="blueandbold">Router1&gt;</span><span class="pinkandbold">enable</span><br />
 <span class="blueandbold">Router1#</span><span class="pinkandbold">configure terminal</span><br />
 <span class="blueandbold">Router1(config)#</span><span class="pinkandbold">interface fa0/0</span><br />
 <span class="blueandbold">Router1(config-if)#</span><span class="pinkandbold">ip address 192.168.152.190 255.255.255.240</span><br />
 <span class="blueandbold">Router1(config-if)#</span><span class="pinkandbold">no shutdown</span></p>
<p><span class="blueandbold">Router1(config-if)#</span><span class="pinkandbold">interface fa0/1</span><br />
 <span class="blueandbold">Router1(config-if)#</span><span class="pinkandbold">ip address 192.168.152.142 255.255.255.240</span><br />
 <span class="blueandbold">Router1(config-if)#</span><span class="pinkandbold">no shutdown</span></p>
<p>Set passwords (configure on two routers)</p>
<p>+ <span class="ccnaexplanation">Console password:</span></p>
<p><span class="blueandbold">Router1(config-if)#</span><span class="pinkandbold">exit</span><br />
 <span class="blueandbold">Router1(config)#</span><span class="pinkandbold">line console 0</span><br />
 <span class="blueandbold">Router1(config-line)#</span><span class="pinkandbold">password consolepw</span><br />
 <span class="blueandbold">Router1(config-line)#<span class="pinkandbold">login</span><br />
 Router1(config-line)#</span><span class="pinkandbold">exit </span></p>
<p>+ <span class="ccnaexplanation">Telnet password:</span></p>
<p><span class="blueandbold">Router1(config)#</span><span class="pinkandbold">line vty 0 4</span><br />
 <span class="blueandbold">Router1(config-line)#</span><span class="pinkandbold">password telnetpw</span><br />
 <span class="blueandbold">Router1(config-line)#</span><span class="pinkandbold">login</span><br />
 <span class="blueandbold">Router1(config-line)#</span><span class="pinkandbold">exit</span></p>
<p>+ <span class="ccnaexplanation">Privilege mode password:</span></p>
<p><span class="blueandbold">Router1(config)#</span><span class="pinkandbold">enable password privpw </span></p>
<p class="ccnaexplanation">Save the configuration:</p>
<p><span class="blueandbold">Router1(config)#<span class="pinkandbold">exit</span><br />
 </span><span class="blueandbold">Router1#<span class="pinkandbold">copy running-config startup-config</span></span></p>
<p>Configure IP addresses of Router2 (router on the right)</p>
<p><span class="blueandbold">Router2&gt;</span><span class="pinkandbold">enable</span><br />
 <span class="blueandbold">Router2#</span><span class="pinkandbold">configure terminal</span><br />
 <span class="blueandbold">Router2(config)#</span><span class="pinkandbold">interface fa0/0</span><br />
 <span class="blueandbold">Router2(config-if)#</span><span class="pinkandbold">ip address 192.168.152.238 255.255.255.240</span><br />
 <span class="blueandbold">Router2(config-if)#</span><span class="pinkandbold">no shutdown</span></p>
<p><span class="blueandbold">Router2(config-if)#</span><span class="pinkandbold">interface serial0/0</span><br />
 <span class="blueandbold">Router2(config-if)#</span><span class="pinkandbold">ip address 192.168.152.174 255.255.255.240</span><br />
 <span class="blueandbold">Router2(config-if)#</span><span class="pinkandbold">no shutdown</span></p>
<p>and set console, telnet and privilege mode passwords for Router2 as we did for Router1, remember to save the configuration when you finished</p>
<p><!--adsense--></p>
<p>Other lab-sims on this site:</p>
<p><a href="http://www.9tut.com/70-ccna-access-list-sim">CCNA Access List Sim</a></p>
<p><a href="http://www.9tut.com/52-ccna-nat-sim-question">CCNA NAT SIM Question 1</a></p>
<p><a href="http://www.9tut.com/57-ccna-nat-sim-question-2">CCNA NAT SIM Question 2</a></p>
<p><a href="http://www.9tut.com/ccna-hotspot-questions">CCNA Frame Relay Sim</a></p>
<p><a href="http://www.9tut.com/59-ccna-configuration-sim-question"> CCNA Configuration SIM Question (RIPv2 SIM)</a></p>
<p><a href="http://www.9tut.com/80-ccna-vtp-sim-question">CCNA VTP SIM</a></p>
<p><a href="http://www.9tut.com/64-ccna-eigrp-lab-question">CCNA EIGRP LAB</a></p>
<p><a href="http://www.9tut.com/65-ccna-drag-and-drop-sim-question">CCNA Drag and Drop SIM</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/66-ccna-implementation-sim/feed</wfw:commentRss>
		<slash:comments>120</slash:comments>
		</item>
		<item>
		<title>CCNA EIGRP LAB Question</title>
		<link>http://www.9tut.com/64-ccna-eigrp-lab-question</link>
		<comments>http://www.9tut.com/64-ccna-eigrp-lab-question#comments</comments>
		<pubDate>Fri, 01 Jul 2011 10:33:41 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Lab Sim]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=29</guid>
		<description><![CDATA[Question After adding R3 router, no routing updates are being exchanged between R3 and the new location. All other inter connectivity and Internet access for the existing locations of the company are working properly. The task is to identify the fault(s) and correct the router configuration to provide full connectivity between the routers. Access to [...]]]></description>
			<content:encoded><![CDATA[<p class="ccnaquestionsnumber">Question</p>
<p>After adding R3 router, no routing updates are being exchanged between R3 and the new location. All other inter connectivity and Internet access for the existing locations of the company are working properly.</p>
<p>The task is to identify the fault(s) and correct the router configuration to provide full connectivity between the routers.</p>
<p>Access to the router CLI can be gained by clicking on the appropriate host. All passwords on all routers are cisco.</p>
<p>IP addresses are listed in the chart below.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_eigrp_sim.jpg" border="0" alt="ccna_eigrp_sim" width="450" height="338" /></p>
<table style="background-color: #ffffff;" border="1" cellspacing="3" cellpadding="3" align="center">
<tbody>
<tr>
<td>
<p><strong>R1 </strong></p>
<p><strong>Fa0/0:</strong> 192.168.77.33</p>
<p><strong>S1/0:</strong> 198.0.18.6</p>
<p><strong>S0/1:</strong> 192.168.60.25</p>
</td>
<td>
<p><strong>R2</strong></p>
<p><strong>Fa0/0:</strong> 192.168.60.97</p>
<p><strong>Fa0/1:</strong> 192.168.60.113</p>
<p><strong>S0/0:</strong> 192.168.36.14</p>
</td>
</tr>
<tr>
<td>
<p><strong>R3</strong></p>
<p><strong>Fa0/0:</strong> 192.168.77.34</p>
<p><strong>Fa0/1:</strong> 192.168.60.65</p>
<p><strong>Fa1/0:</strong> 192.168.60.81</p>
</td>
<td>
<p><strong>R4</strong></p>
<p><strong>Fa0/0:</strong> 192.168.60.129</p>
<p><strong>Fa0/1:</strong> 192.168.60.145</p>
<p><strong>S0/1:</strong> 192.168.60.26</p>
</td>
</tr>
</tbody>
</table>
<p class="ccnaexplanation">Answer and explanation</p>
<p><span id="more-29"></span></p>
<p><!--adsense--></p>
<p>(Note: If you are not sure how EIGRP works, please read my EIGRP tutorial: <a href="http://www.9tut.com/eigrp-routing-protocol-tutorial" target="_blank">http://www.9tut.com/eigrp-routing-protocol-tutorial</a>. Note: You can download this sim to practice here: <a href="http://www.9tut.com/download/9tut.com_CCNA_EIGRP_sim_question.zip" target="_blank">http://www.9tut.com/download/9tut.com_CCNA_EIGRP_sim_question.zip</a>)</p>
<p>We should check the configuration of the new added router first because it does not function properly while others work well. From the command line interface of R3 router, enter the <strong>show running-config</strong> command</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_eigrp_sim_show_run.jpg" border="0" alt="ccna_eigrp_sim_show_run" width="288" height="340" /></p>
<p>From the output above, we know that this router was wrongly configured with an autonomous number (AS) of 22. When the AS numbers among routers are mismatched, no adjacency is formed.</p>
<p>(You should check the AS numbers on other routers for sure)</p>
<p>To solve this problem, we simply re-configure router R3 with the following commands:</p>
<p><span class="blueandbold">R3&gt;</span><span class="pinkandbold">enable </span>(you have to enter <strong>cisco</strong> as its password here)</p>
<p><span class="blueandbold">R3#</span><span class="pinkandbold">configure terminal</span></p>
<p><span class="blueandbold">R3(config)#</span><span class="pinkandbold">no router eigrp 22 </span></p>
<p><span class="blueandbold">R3(config)#</span><span class="pinkandbold">router eigrp 212 </span></p>
<p><span class="blueandbold">R3(config-router)#</span><span class="pinkandbold">network 192.168.60.0 </span></p>
<p><span class="blueandbold">R3(config-router)#</span><span class="pinkandbold">network 192.168.77.0</span></p>
<p><span class="blueandbold">R3(config-router)#</span><span class="pinkandbold">no auto-summary</span></p>
<p><span class="pinkandbold"><span class="blueandbold">R3(config-router)#</span>end</span></p>
<p><span class="blueandbold">R3#</span><span class="pinkandbold">copy running-config startup-config</span></p>
<p>Check R1 router with the <strong>show running-config</strong> command:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_eigrp_sim_show_run_2.jpg" border="0" alt="ccna_eigrp_sim_show_run_2" width="174" height="246" /></p>
<p>Notice that it is missing a definition to the network R3. Therefore we have to add it so that it can recognize R3 router</p>
<p><span class="blueandbold">R1&gt;</span><span class="pinkandbold">enable</span> (you have to enter <strong>cisco</strong> as its password here)</p>
<p><span class="blueandbold">R1#</span><span class="pinkandbold">configure terminal</span></p>
<p><span class="blueandbold">R1(config)#</span><span class="pinkandbold">router eigrp 212</span></p>
<p><span class="blueandbold">R1(config-router)#</span><span class="pinkandbold">network 192.168.77.0</span></p>
<p><span class="blueandbold">R1(config-router)#</span><span class="pinkandbold">end</span></p>
<p><span class="blueandbold">R1#</span><span class="pinkandbold">copy running-config startup-config</span></p>
<p>Now the whole network will work well. You should check again with <strong>ping</strong> command from router R3 to other routers!</p>
<p><strong>Modifications:</strong></p>
<p>Maybe in this EIGRP Sim you will see the “passive-interface &#8230;” command somewhere in R1 configuration. If the link between R1 to R2 (or R3, r4) routers has the “passive  interface” then we have to remove it with the &#8220;no passive-interface &#8230;&#8221; command because it prevents EIGRP update  from being sent on that interface. But if the “passive interface” is applied  to the link between R1 and ISP router then we just leave it. <strong>Don&#8217;t use the &#8220;no passive-interface s1/0&#8243; on R1</strong> because the link between R1  &amp; ISP doesn&#8217;t need EIGRP to run on it. A static route from R1 to ISP  &amp; &#8220;ip default-network&#8221; command in R1 are the correct  answers.</p>
<p>(Note: The &#8220;ip default-network&#8221; command in R1 will advertise  the static route of R1 (to go to the Internet) to other routers  (R2,R3,R4) so that they can access the Internet too). In the exam you will see these lines in R1 configuration:</p>
<p>!<br />
 ip default-network 198.0.18.0<br />
 ip route 0.0.0.0 0.0.0.0 198.0.18.5<br />
 !</p>
<p>If you want to learn more about &#8220;ip default-network&#8221; command please read: <a href="http://www.cisco.com/en/US/tech/tk365/technologies_tech_note09186a0080094374.shtml" target="_blank">http://www.cisco.com/en/US/tech/tk365/technologies_tech_note09186a0080094374.shtml</a></p>
<p>I read recent comments and realized that you will see the &#8220;passive-interface&#8221; in the link between R1 &amp; ISP so just leave it.</p>
<p><!--adsense#MiddleContent--></p>
<p>Other lab-sims on this site:</p>
<p><a href="http://www.9tut.com/70-ccna-access-list-sim">CCNA Access List Sim</a></p>
<p><a href="http://www.9tut.com/52-ccna-nat-sim-question">CCNA NAT SIM Question 1</a></p>
<p><a href="http://www.9tut.com/57-ccna-nat-sim-question-2">CCNA NAT SIM Question 2</a></p>
<p><a href="http://www.9tut.com/ccna-hotspot-questions">CCNA Frame Relay Sim</a></p>
<p><a href="http://www.9tut.com/59-ccna-configuration-sim-question"> CCNA Configuration SIM Question (RIPv2 SIM)</a></p>
<p><a href="http://www.9tut.com/80-ccna-vtp-sim-question">CCNA VTP SIM</a></p>
<p><a href="http://www.9tut.com/65-ccna-drag-and-drop-sim-question">CCNA Drag and Drop SIM</a></p>
<p><a href="http://www.9tut.com/66-ccna-implementation-sim">CCNA Implementation SIM</a></p>
<p><br class="spacer_" /></p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/64-ccna-eigrp-lab-question/feed</wfw:commentRss>
		<slash:comments>1176</slash:comments>
		</item>
		<item>
		<title>IPv6 Tutorial</title>
		<link>http://www.9tut.com/ipv6-tutorial</link>
		<comments>http://www.9tut.com/ipv6-tutorial#comments</comments>
		<pubDate>Fri, 24 Jun 2011 17:01:33 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Knowledge]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=681</guid>
		<description><![CDATA[Internet has been growing extremely fast so the IPv4 addresses are quickly approaching complete depletion. Although many organizations already use Network Address Translators (NATs) to map multiple private address spaces to a single public IP address but they have to face with other problems from NAT (the use of the same private address, security&#8230;). Moreover, [...]]]></description>
			<content:encoded><![CDATA[<p>Internet has been growing extremely fast so the IPv4 addresses are quickly approaching complete depletion. Although many organizations already use Network Address Translators (NATs) to map multiple private address spaces to a single public IP address but they have to face with other problems from NAT (the use of the same private address, security&#8230;). Moreover, many other devices than PC &amp; laptop are requiring an IP address to go to the Internet. To solve these problems in long-term, a new version of the IP protocol &#8211; version 6 (IPv6) was created and developed.</p>
<p>IPv6 was created by the Internet Engineering Task Force (IETF), a standards body, as a replacement to IPv4 in 1998. So what happened with IPv5? IP Version 5 was defined for experimental reasons and never was deployed.</p>
<p>While IPv4 uses 32 bits to address the IP (provides approximately 2<sup>32</sup> = 4,294,967,296 unique addresses &#8211; but in fact about 3.7 billion addresses are assignable because the IPv4  addressing system separates the addresses into classes and reserves  addresses for multicasting, testing, and other specific uses), IPv6 uses up to 128 bits which provides 2<sup>128</sup> addresses or approximately 3.4 * 10<sup>38</sup> addresses. Well, maybe we should say it is extremely extremely extremely huge :)</p>
<p><span id="more-681"></span></p>
<p><!--adsense--></p>
<p><strong>IPv6 Address Types</strong></p>
<table border="1">
<tbody>
<tr>
<td><strong>Address Type</strong></td>
<td><strong>Description </strong></td>
</tr>
<tr>
<td>Unicast</td>
<td>One to One (Global, Link local, Site local)<br />
 + An address destined for a single interface.</td>
</tr>
<tr>
<td>Multicast</td>
<td>One to Many<br />
 + An address for a set of interfaces<br />
 + Delivered to a group of interfaces identified by that address.<br />
 + Replaces IPv4 “broadcast”</td>
</tr>
<tr>
<td>Anycast</td>
<td>One to Nearest (Allocated from Unicast)<br />
 + Delivered to the closest interface as determined by the IGP</td>
</tr>
</tbody>
</table>
<p>A single interface may be assigned multiple IPv6 addresses of any type (unicast, anycast, multicast)</p>
<p><strong>IPv6 address format</strong></p>
<p>Format:</p>
<p><strong>x:x:x:x:x:x:x:x</strong> &#8211; where <strong>x</strong> is a 16 bits hexadecimal field and <strong>x</strong> represents four hexadecimal digits.<br />
 An example of IPv6:  <strong><br />
 2001:0000:5723:0000:0000:D14E:DBCA:0764</strong></p>
<p>There are:<br />
 + 8 groups of 4 hexadecimal digits. <br />
 + Each group represents 16 bits (4 hexa digits * 4 bit)<br />
 + Separator is “:”  <br />
 + Hex digits are not case sensitive, so &#8220;<strong>DBCA</strong>&#8221; is same as &#8220;dbca&#8221; or &#8220;DBca&#8221;&#8230;</p>
<p>IPv6 (128-bit) address contains two parts: <br />
 + The first 64-bits is known as the prefix. The prefix includes the network and subnet address. Because addresses are allocated based on physical location, the prefix also includes global routing information. The 64-bit prefix is often referred to as the global routing prefix. <br />
 + The last 64-bits is the interface ID. This is the unique address assigned to an interface.</p>
<p>Note: Addresses are assigned to interfaces (network connections), not to the host. Each interface can have more than one IPv6 address.</p>
<p><!--adsense#MiddleContent--></p>
<p><strong>Rules for abbreviating IPv6 Addresses:</strong></p>
<p>+ Leading zeros in a field are optional</p>
<p>2001:<strong>0DA8</strong>:E800:<strong>0000</strong>:<strong>0260</strong>:3EFF:FE47:<strong>0001</strong> can be written as</p>
<p>2001:<strong>DA8</strong>:E800:<strong>0</strong>:<strong>260</strong>:3EFF:FE47:<strong>1</strong></p>
<p>+ Successive fields of 0 are represented as ::, but only once in an address:</p>
<p>2001:0DA8:E800:<strong>0000:0000:0000:0000:0001</strong> -&gt; 2001:DA8:E800<strong>::1</strong></p>
<p>Other examples:<br />
 – FF02:0:0:0:0:0:0:1 =&gt; FF02::1<br />
 &#8211; 3FFE:0501:0008:0000:0260:97FF:FE40:EFAB  =  3FFE:501:8:0:260:97FF:FE40:EFAB = 3FFE:501:8::260:97FF:FE40:EFAB<br />
 – 0:0:0:0:0:0:0:1 =&gt; ::1<br />
 – 0:0:0:0:0:0:0:0 =&gt; ::</p>
<p><strong>IPv6 Addressing In Use</strong></p>
<p>IPv6 uses the “/” notation to denote how many bits in the IPv6 address represent the subnet.</p>
<p>The full syntax of IPv6 is</p>
<table border="1">
<tbody>
<tr>
<td><strong>ipv6-address</strong>/<strong>prefix-length</strong></td>
</tr>
</tbody>
</table>
<p>where<br />
 + <strong>ipv6-address</strong> is the 128-bit IPv6 address<br />
 + /<strong>prefix-length</strong> is a decimal value representing how many of the left most contiguous bits of the address comprise the prefix.</p>
<p>Let&#8217;s analyze an example: <br />
 <span class="blueandbold">2001:C:7:ABCD</span><span class="pinkandbold">::1</span>/64 is really <br />
 <span class="blueandbold">2001:000C:0007:ABCD</span>:<span class="pinkandbold">0000:0000:0000:0001</span>/64<br />
 + The first 64-bits <span class="blueandbold">2001:000C:0007:ABCD</span> is the address prefix<br />
 + The last 64-bits <span class="pinkandbold">0000:0000:0000:0001</span> is the interface ID<br />
 + /64 is the prefix length (/64 is well-known and also the prefix length in most cases)</p>
<p><!--adsense--></p>
<p>In the next part, we will understand more about each prefix of an IPv6 address.</p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ipv6-tutorial/feed</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
		<item>
		<title>CCNA Drag and Drop SIM Question</title>
		<link>http://www.9tut.com/65-ccna-drag-and-drop-sim-question</link>
		<comments>http://www.9tut.com/65-ccna-drag-and-drop-sim-question#comments</comments>
		<pubDate>Wed, 15 Jun 2011 10:34:22 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Lab Sim]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=31</guid>
		<description><![CDATA[Question You have been hired by Specialty Hardware Incorporated to document the layout of the network. Complete the following tasks: Complete the network topology shown in the graphic by dragging the labels below with the appropriate router types, interface types, and IP addresses to the graphic . Find the information you need by using the [...]]]></description>
			<content:encoded><![CDATA[<p class="ccnaquestionsnumber">Question</p>
<p>You have been hired by Specialty Hardware Incorporated to document the layout of the network. Complete the following tasks: Complete the network topology shown in the graphic by dragging the labels below with the appropriate router types, interface types, and IP addresses to the graphic . Find the information you need by using the router console attached to the R-CENTER router.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_configuration_topology.jpg" border="0" alt="ccna_configuration_topology" width="441" height="260" /></p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_configuration_topology_2.jpg" border="0" alt="ccna_configuration_topology_2" width="369" height="211" /></p>
<p class="ccnaexplanation">Answer and explanation</p>
<p><span id="more-31"></span></p>
<p><!--adsense--></p>
<p>Note: You can download this sim to practice here: <a href="http://www.9tut.com/download/9tut.com_CCNA_drag_and_drop_sim_question.pkt" target="_blank">http://www.9tut.com/download/9tut.com_CCNA_drag_and_drop_sim_question.pkt</a></p>
<p>This is the simplest lab question in four labs you see in the real CCNA exam. First we should identify the types of these routers by using the <strong>show cdp neighbors</strong> command:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_configuration_show_cdp_neighbors.jpg" border="0" alt="ccna_configuration_show_cdp_neighbors" width="541" height="150" /></p>
<p>There are 3 columns we should pay more attention to:</p>
<p>+ <strong>Local Interface:</strong> the interface on the device you are using &#8220;show cdp neighbors&#8221; command. In this case it is the interface of R-CENTER router</p>
<p>+ <strong>Platform:</strong> the platform of neighbor device</p>
<p>+ <strong>Port ID:</strong> the neighbor device&#8217;s port or interface on which the CDP packets are multicast</p>
<p>From the exhibit, the &#8220;Local Interface&#8221;, &#8220;Platform&#8221; and &#8220;Port ID&#8221; columns, we can identify where these four routers should be placed and their corresponding associated ports</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_configuration_topology_answers_1.jpg" border="0" alt="ccna_configuration_topology_answers_1" width="450" height="272" /></p>
<p>Finally, use the show running-config command to find out the ip addresses of four interfaces on R-CENTER</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_configuration_show_run.jpg" border="0" alt="ccna_configuration_show_run" width="328" height="330" /></p>
<p>And we can easily assign corresponding ip addresses to four neighbor routers, which are on the same network with R-CENTER router&#8217;s interfaces</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna_configuration_topology_answers_2.jpg" border="0" alt="ccna_configuration_topology_answers_2" width="450" height="271" /></p>
<p>Please remember in the real CCNA Exam the routers&#8217; types, ip addresses and interfaces may be different! So make sure you understand how it works.</p>
<p><!--adsense#MiddleContent--></p>
<p>Other lab-sims on this site:</p>
<p><a href="http://www.9tut.com/70-ccna-access-list-sim">CCNA Access List Sim</a></p>
<p><a href="http://www.9tut.com/52-ccna-nat-sim-question">CCNA NAT SIM Question 1</a></p>
<p><a href="http://www.9tut.com/57-ccna-nat-sim-question-2">CCNA NAT SIM Question 2</a></p>
<p><a href="http://www.9tut.com/ccna-hotspot-questions">CCNA Frame Relay Sim</a></p>
<p><a href="http://www.9tut.com/59-ccna-configuration-sim-question"> CCNA Configuration SIM Question (RIPv2 SIM)</a></p>
<p><a href="http://www.9tut.com/80-ccna-vtp-sim-question">CCNA VTP SIM</a></p>
<p><a href="http://www.9tut.com/64-ccna-eigrp-lab-question">CCNA EIGRP LAB</a></p>
<p><a href="http://www.9tut.com/66-ccna-implementation-sim">CCNA Implementation SIM</a></p>
<p><br class="spacer_" /></p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/65-ccna-drag-and-drop-sim-question/feed</wfw:commentRss>
		<slash:comments>206</slash:comments>
		</item>
		<item>
		<title>CCNA Configuration SIM Question</title>
		<link>http://www.9tut.com/59-ccna-configuration-sim-question</link>
		<comments>http://www.9tut.com/59-ccna-configuration-sim-question#comments</comments>
		<pubDate>Wed, 15 Jun 2011 10:32:45 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Lab Sim]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=25</guid>
		<description><![CDATA[Question: To configure the router (R2-RC) click on the console host icon that is connected to a router by a serial console cable (shown in the diagram as a dashed black line) CCNA Training Company recently installed a new router in their office. Complete the network installation by performing the initial router configurations and configuring [...]]]></description>
			<content:encoded><![CDATA[<p class="ccnaquestionsnumber">Question:</p>
<p>To configure the router (R2-RC) click on the console host icon that is connected to a router by a serial console cable (shown in the diagram as a dashed black line)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/ccna__configuration_sim_lab4.jpg" border="0" alt="ccna__configuration_sim_lab_4" width="600" height="169" /></p>
<p>CCNA Training Company recently installed a new router in their office. Complete the network installation by performing the initial router configurations and configuring RIPV2 routing using the router command line interface (CLI) on the R2-RC.</p>
<p>Name of the router is <strong>R2-RC</strong><br />
 Enable-secret password is <strong>cisco1</strong><br />
 The password to access user EXEC mode using the console is <strong>cisco2</strong><br />
 The password to allow telnet access to the router is <strong>cisco3</strong><br />
 IPV4 addresses must be configured as follows:<br />
 Ethernet network <strong>209.165.202.128/27</strong> &#8211; router has last assignable host address in subnet<br />
 Serial network is <strong>192.0.2.16/28</strong> &#8211; router has last assignable host address in the subnet. Interfaces should be enabled.<br />
 Router protocol is <strong>RIP V2</strong></p>
<table style="font-size: 12px; background-color: #c0c0c0;" border="0">
<tbody>
<tr>
<td>Attention :<br />
 In practical examinations, please note the following, the actual information will prevail.<br />
 1. Name of the router is xxx<br />
 2. Enable-secret password is xxx<br />
 3. Password to access user EXEC mode using the console is xxx<br />
 4. The password to allow telnet access to the router is xxx<br />
 5. IP information</td>
</tr>
</tbody>
</table>
<p class="ccnaexplanation">Solution</p>
<p><span id="more-25"></span></p>
<p><!--adsense--></p>
<p>(Note: If you are not sure how RIP works, please read my RIP tutorial: <a href="http://www.9tut.com/rip-routing-protocol-tutorial" target="_blank">http://www.9tut.com/rip-routing-protocol-tutorial</a>. Note: You can download this sim to practice here: <a href="http://www.9tut.com/download/9tut.com_CCNA_RIP_Configuration.zip" target="_blank">http://www.9tut.com/download/9tut.com_CCNA_RIP_Configuration.zip</a>)</p>
<p><strong>1) Name the router:</strong></p>
<p><span class="blueandbold">Router&gt;</span><span class="pinkandbold">enable</span><br />
 <span class="blueandbold">Router#</span><span class="pinkandbold">configure terminal</span><br />
 <span class="blueandbold">Router(config)#</span><span class="pinkandbold">hostname R2-RC</span></p>
<p><strong>2) Set secret password:</strong></p>
<p><span class="blueandbold">R2-RC(config)#</span> <span class="pinkandbold">enable secret cisco1</span></p>
<p><strong>3) Set password for the console:</strong></p>
<p><span class="blueandbold">R2-RC(config)#</span><span class="pinkandbold">line console 0</span><br />
 <span class="blueandbold">R2-RC(config-line)#</span><span class="pinkandbold">password cisco2</span><br />
 <span class="blueandbold">R2-RC(config-line)#</span><span class="pinkandbold">login</span><br />
 <span class="blueandbold">R2-RC(config-line)#</span><span class="pinkandbold">exit</span></p>
<p><strong>4) Set the Telnet password:</strong></p>
<p><span class="blueandbold">R2-RC(config)#</span><span class="pinkandbold">line vty 0 4</span><br />
 <span class="blueandbold">R2-RC(config-line)#</span><span class="pinkandbold">password cisco3</span><br />
 <span class="blueandbold">R2-RC(config-line)#</span><span class="pinkandbold">login</span><br />
 <span class="blueandbold">R2-RC(config-line)#</span><span class="pinkandbold">exit</span></p>
<p><strong>5) Assign IP address for Ethernet interface (Fa0/0): </strong></p>
<p>The Ethernet network <strong>209.165.202.128/27 </strong>has<strong>:</strong></p>
<p><strong>Increment</strong>:32 (/27 = 255.255.255.224 or 1111 1111.1111 1111.1111 1111.11<strong>1</strong>0 0000)<br />
 <strong>Network address</strong>: 209.165.202.128<br />
 <strong>Broadcast address</strong>: 209.165.202.159 (because 128 + 32 &#8211; 1 = 159)</p>
<p>Therefore the last assignable host address in this subnet is <strong>209.165.202.158</strong> and we will assign it to Fa0/0 interface with these commands:</p>
<p><span class="blueandbold">R2-RC(config)#</span> <span class="pinkandbold">interface fa0/0</span><br />
 <span class="blueandbold">R2-RC(config-if)#</span><span class="pinkandbold">ip address 209.165.202.158 255.255.255.224</span><br />
 <span class="blueandbold">R2-RC(config-if)#</span><span class="pinkandbold">no shutdown</span><br />
 <span class="blueandbold">R2-RC(config-if)#</span><span class="pinkandbold">exit</span></p>
<p><strong>6)  Assign IP address for Serial interface (S0/0/0): </strong></p>
<p>Serial network <strong>192.0.2.16/28 </strong>has:</p>
<p><strong>Increment</strong>:16 (/28 = 255.255.255.240 or 1111 1111.1111 1111.1111 1111.111<strong>1</strong> 0000)<br />
 <strong>Network address: 192.0.2.16<br />
 Broadcast address</strong>: 192.0.2.31 (because 16 + 16 &#8211; 1 = 31)</p>
<p>So the last assignable host address in this subnet is <strong>192.0.2.30</strong>. Finally we assign it to s0/0/0 interface:</p>
<p><span class="blueandbold">R2-RC(config)#</span> <span class="pinkandbold">interface s0/0/0</span><br />
 <span class="blueandbold">R2-RC(config-if)#</span><span class="pinkandbold">ip address 192.0.2.30 255.255.255.240</span><br />
 <span class="blueandbold">R2-RC(config-if)#</span><span class="pinkandbold">no shutdown</span><br />
 <span class="blueandbold">R2-RC(config-if)#</span><span class="pinkandbold">exit</span></p>
<p><strong>7) Configure RIP v2 routing protocol:</strong></p>
<p><span class="blueandbold">R2-RC(config)#</span><span class="pinkandbold">router rip</span><br />
 <span class="blueandbold">R2-RC(config-router)#</span><span class="pinkandbold">version 2</span><br />
 <span class="blueandbold">R2-RC(config-router)#</span><span class="pinkandbold">network 209.165.202.0</span><br />
 <span class="blueandbold">R2-RC(config-router)#</span><span class="pinkandbold">network 192.0.2.0</span><br />
 <span class="blueandbold">R2-RC(config-router)#</span><span class="pinkandbold">end</span><br />
 <span class="blueandbold">R2-RC#</span><span class="pinkandbold">copy running-config startup-config</span></p>
<p>Note: We should use classful networks (209.165.202.0 &#038; 192.0.2.0) when configuring RIP. If we use detailed networks (209.165.202.128 &#038; 192.0.2.16) the router will automatically convert them into classful networks.</p>
<p><!--adsense#MiddleContent--></p>
<div>
<p>Other lab-sims on this site:</p>
<p><a href="http://www.9tut.com/70-ccna-access-list-sim">CCNA Access List Sim</a></p>
<p><a href="http://www.9tut.com/52-ccna-nat-sim-question">CCNA NAT SIM Question 1</a></p>
<p><a href="http://www.9tut.com/57-ccna-nat-sim-question-2">CCNA NAT SIM Question 2</a></p>
<p><a href="http://www.9tut.com/ccna-hotspot-questions">CCNA Frame Relay Sim</a></p>
<p><a href="http://www.9tut.com/80-ccna-vtp-sim-question">CCNA VTP SIM</a></p>
<p><a href="http://www.9tut.com/64-ccna-eigrp-lab-question">CCNA EIGRP LAB</a></p>
<p><a href="http://www.9tut.com/65-ccna-drag-and-drop-sim-question">CCNA Drag and Drop SIM</a></p>
<p><a href="http://www.9tut.com/66-ccna-implementation-sim">CCNA Implementation SIM</a></p>
</div>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/59-ccna-configuration-sim-question/feed</wfw:commentRss>
		<slash:comments>190</slash:comments>
		</item>
		<item>
		<title>CCNA NAT SIM Question 1</title>
		<link>http://www.9tut.com/52-ccna-nat-sim-question</link>
		<comments>http://www.9tut.com/52-ccna-nat-sim-question#comments</comments>
		<pubDate>Wed, 15 Jun 2011 10:32:22 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Lab Sim]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=23</guid>
		<description><![CDATA[Question A network associate is configuring a router for the CCNA Training company to provide internet access. The ISP has provided the company six public IP addresses of 198.18.184.105 198.18.184.110. The company has 14 hosts that need to access the internet simultaneously. The hosts in the CCNA Training company LAN have been assigned private space [...]]]></description>
			<content:encoded><![CDATA[<p class="ccnaquestionsnumber">Question</p>
<p>A network associate is configuring a router for the CCNA Training company to provide internet access. The ISP has provided the company six public IP addresses of 198.18.184.105 198.18.184.110. The company has 14 hosts that need to access the internet simultaneously. The hosts in the CCNA Training company LAN have been assigned private space addresses in the range of 192.168.100.17 – 192.168.100.30.</p>
<p>The task is to complete the NAT configuration using all IP addresses assigned by the ISP to provide Internet access for the hosts in the Weaver LAN. Functionality can be tested by clicking on the host provided for testing.</p>
<p>Configuration information<br />
 router name &#8211; Weaver<br />
 inside global addresses &#8211; 198.18.184.105 198.18.184.110/29 <br />
 inside local addresses &#8211; 192.168.100.17 &#8211; 192.168.100.30/28 <br />
 number of inside hosts &#8211; 14</p>
<table style="background-color: #dddbde;" border="0" cellpadding="2">
<tbody>
<tr>
<td style="font-size: 12px;">
<p>The following have already been configured on the router：</p>
<p>- The basic router configuration</p>
<p>- The appropriate interfaces have been configured for NAT inside and NAT outside</p>
<p>- The appropriate static routes have also been configured (since the company will be a stub network, no routing protocol will be required.)</p>
<p>- All passwords have been temporarily set to &#8220;cisco&#8221;</p>
</td>
</tr>
</tbody>
</table>
<p><img src="http://www.9tut.com/images/ccna/labsim/ccna_nat_sim_lab1.jpg" border="0" alt="ccna_nat_sim_lab1" width="548" height="113" /></p>
<p><img src="http://www.9tut.com/images/ccna/labsim/ccna_nat_sim_lab2.jpg" border="0" alt="ccna_nat_sim_lab2" width="548" height="292" /></p>
<p class="ccnaexplanation">Solution</p>
<p><span id="more-23"></span></p>
<p><!--adsense--></p>
<p>Note: If you are not sure how NAT &amp; PAT work, please read my <a href="http://www.9tut.com/network-address-translation-nat-tutorial" target="_blank">Network Address Translation NAT Tutorial</a>. You can download this sim to practice here: <a href="http://www.9tut.com/download/9tut.com_CCNA_NAT_sim_question.zip" target="_blank">http://www.9tut.com/download/9tut.com_CCNA_NAT_sim_question.zip</a></p>
<p>The CCNA Training company has 14 hosts that need to access the internet simultaneously but we just have 6 public IP addresses from 198.18.184.105 to 198.18.184.110/29. Therefore we have to use NAT overload (or PAT)</p>
<p>Double click on the Weaver router to open it</p>
<p><span class="blueandbold">Router&gt;</span><span class="pinkandbold">enable</span><br />
 <span class="blueandbold">Router#</span><span class="pinkandbold">configure terminal</span></p>
<p>First you should change the router&#8217;s name to Weaver</p>
<p><span class="blueandbold">Router(config)#</span><span class="pinkandbold">hostname Weaver</span></p>
<p>Create a NAT pool of global addresses to be allocated with their netmask (/29 = 255.255.255.248). There were reports that the simulator in the real exam did not accept &#8220;prefix-length&#8221; keryword so you should use &#8220;netmask&#8221; keyword.</p>
<p><span class="blueandbold">Weaver(config)#</span><span class="pinkandbold">ip nat pool mypool 198.18.184.105 198.18.184.110 netmask 255.255.255.248</span></p>
<p>Create a standard access control list that permits the addresses that are to be translated</p>
<p><span class="blueandbold">Weaver(config)#</span><span class="pinkandbold">access-list 1 permit 192.168.100.16 0.0.0.15</span></p>
<p>Establish dynamic source translation, specifying the access list that was defined in the prior step</p>
<p><span class="blueandbold">Weaver(config)#</span><span class="pinkandbold">ip nat inside source list 1 pool mypool overload </span></p>
<p>This command translates all source addresses that pass access list 1, which means a source address from 192.168.100.17 to 192.168.100.30, into an address from the pool named mypool (the pool contains addresses from 198.18.184.105 to 198.18.184.110)</p>
<p><strong>Overload</strong> keyword allows to map multiple IP addresses to a single registered IP address (many-to-one) by using different ports</p>
<p>The question said that appropriate interfaces have been configured for NAT inside and NAT outside statements.</p>
<p>This is how to configure the NAT inside and NAT outside, just for your understanding:</p>
<p><span class="blueandbold">Weaver(config)#</span><span class="pinkandbold">interface fa0/0</span><br />
 <span class="blueandbold">Weaver(config-if)#</span><span class="pinkandbold">ip nat inside</span></p>
<p><span class="blueandbold">Weaver(config-if)#</span><span class="pinkandbold">exit</span></p>
<p><span class="blueandbold">Weaver(config)#</span><span class="pinkandbold">interface s0/0</span><br />
 <span class="blueandbold">Weaver(config-if)#</span><span class="pinkandbold">ip nat outside</span><br />
 <span class="blueandbold">Weaver(config-if)#<span class="pinkandbold">end</span></span></p>
<p>Finally, we should save all your work with the following command:</p>
<p class="blueandbold">Weaver#<span class="pinkandbold">copy running-config startup-config</span></p>
<p>Check your configuration by going to &#8220;Host for testing&#8221; and type:</p>
<p><span class="blueandbold">C:\&gt;</span><span class="pinkandbold">ping 192.0.2.114</span></p>
<p>The ping should work well and you will be replied from 192.0.2.114</p>
<p><!--adsense#MiddleContent--></p>
<p>Other lab-sims on this site:</p>
<p><a href="http://www.9tut.com/52-ccna-nat-sim-question">CCNA NAT SIM Question 1</a></p>
<p><a href="http://www.9tut.com/57-ccna-nat-sim-question-2">CCNA NAT SIM Question 2</a></p>
<p><a href="http://www.9tut.com/ccna-hotspot-questions">CCNA Frame Relay Sim</a></p>
<p><a href="http://www.9tut.com/59-ccna-configuration-sim-question"> CCNA Configuration SIM Question (RIPv2 SIM)</a></p>
<p><a href="http://www.9tut.com/80-ccna-vtp-sim-question">CCNA VTP SIM</a></p>
<p><a href="http://www.9tut.com/64-ccna-eigrp-lab-question">CCNA EIGRP LAB</a></p>
<p><a href="http://www.9tut.com/65-ccna-drag-and-drop-sim-question">CCNA Drag and Drop SIM</a></p>
<p><a href="http://www.9tut.com/66-ccna-implementation-sim">CCNA Implementation SIM</a></p>
<p><br class="spacer_" /></p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/52-ccna-nat-sim-question/feed</wfw:commentRss>
		<slash:comments>204</slash:comments>
		</item>
		<item>
		<title>Rapid Spanning Tree Protocol RSTP Tutorial</title>
		<link>http://www.9tut.com/rapid-spanning-tree-protocol-rstp-tutorial</link>
		<comments>http://www.9tut.com/rapid-spanning-tree-protocol-rstp-tutorial#comments</comments>
		<pubDate>Sun, 05 Jun 2011 15:52:58 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Knowledge]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=623</guid>
		<description><![CDATA[Note: Before reading this article you should understand how STP works. So if you are not sure about STP, please read my article about Spanning Tree Protocol tutorial first. Rapid Spanning Tree Protocol (RSTP) One big disadvantage of STP is the low convergence which is very important in switched network. To overcome this problem, in [...]]]></description>
			<content:encoded><![CDATA[<p>Note: Before reading this article you should understand how STP works. So if you are not sure about STP, please read my article about <a href="http://www.9tut.com/spanning-tree-protocol-stp-tutorial" target="_blank">Spanning Tree Protocol tutorial</a> first.</p>
<p>Rapid Spanning Tree Protocol (RSTP)</p>
<p>One big disadvantage of STP is the low convergence which is very important in switched network. To overcome this problem, in 2001, the IEEE with document 802.1w introduced an evolution of the  Spanning Tree Protocol: Rapid Spanning Tree Protocol (RSTP), which significantly reduces the convergence time after a topology change  occurs in the network. While  STP can take 30 to 50 seconds to transit from a blocking state to a forwarding state, RSTP is  typically able to respond less than 10 seconds of a physical link  failure.</p>
<p>RSTP works by adding an alternative port and a backup port compared to STP. These  ports are allowed to immediately enter the forwarding state rather than  passively wait for the network to converge.</p>
<p>RSTP bridge port roles:</p>
<p><strong>* Root port</strong> &#8211; A forwarding port that is the closest to the root bridge in terms of path cost<br />
 <strong>* Designated port</strong> &#8211; A forwarding port for every LAN segment<br />
 <strong>* Alternate port</strong> &#8211; A best alternate path to the root bridge. This path is  different than using the root port. The alternative port moves to the forwarding state if there is a failure on the designated port for the segment.<br />
 <strong>* Backup port</strong> &#8211; A backup/redundant path to a segment where another bridge  port already connects. The backup port applies only when a single switch has two links to the same  segment (collision domain). To have two links to the same collision  domain, the switch must be attached to a hub.<br />
 <strong>* Disabled port</strong> &#8211; Not strictly part of STP, a network administrator can  manually disable a port</p>
<p>Now let&#8217;s see an example of three switches below:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/RSTP/RSTP_port_roles_initial.jpg" alt="RSTP_port_roles_initial.jpg" width="350" height="330" /></p>
<p><span id="more-623"></span></p>
<p><!--adsense--></p>
<p>Suppose all the switches have the same bridge priority so the switch with lowest MAC address will become root bridge -&gt; Sw1 is the root bridge and therefore all of its ports will be Designated ports (forwarding).</p>
<p>Two ports fa0/0 on Sw2 &amp; Sw3 are closest to the root bridge (in terms of path cost) so they will become root ports.</p>
<p>On the segment between Sw2 and Sw3, because Sw2 has lower MAC than Sw3 so it will advertise better BPDU on this segment -&gt; fa0/1 of Sw2 will be Designated port and fa0/1 of Sw3 will be Alternative port.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/RSTP/RSTP_port_roles_middle.jpg" alt="RSTP_port_roles_middle.jpg" width="350" height="330" /></p>
<p>Now for the two ports connecting to the hub, we know that there will have only one Designated port for each segment (notice that the two ports fa0/2 &amp; fa0/3 of Sw2 are on the same segment as they are connected to a hub). The other port will be Backup port according to the definition of Backup port above. But how does Sw2 select its Designated and Backup port? The decision process involves the following parameters inside the BPDU:</p>
<p>* Lowest path cost to the Root<br />
 * Lowest Sender Bridge ID (BID)<br />
 * Lowest Port ID</p>
<p>Well, both fa0/2 &amp; fa0/3 of Sw2 has the same &#8220;path cost to the root&#8221; and &#8220;sender bridge ID&#8221; so the third parameter &#8220;lowest port ID&#8221; will be used. Because fa0/2 is inferior to fa0/3, Sw2 will select fa0/2 as its Designated port.</p>
<p><br class="spacer_" /></p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/RSTP/RSTP_port_roles.jpg" alt="RSTP_port_roles.jpg" width="350" height="330" /><br class="spacer_" /></p>
<p>Note: Alternative Port and Backup Port are in discarding state.</p>
<p>RSTP Port States:</p>
<p>There are only three port states left in RSTP that correspond to the three possible operational states. The 802.1D disabled, blocking, and listening states are merged into the 802.1w discarding state.</p>
<p><strong>* Discarding</strong> &#8211; the port does not forward frames, process received frames, or learn MAC addresses &#8211; but it does listen for BPDUs (like the STP blocking state)<br />
 <strong>* Learning</strong> &#8211;  receives and transmits BPDUs and learns MAC addresses but does not yet forward frames (same as STP).<br />
 <strong>* Forwarding</strong> &#8211; receives and sends data, normal operation, learns MAC address, receives and transmits BPDUs (same as STP).</p>
<table border="1">
<tbody>
<tr>
<td><strong>STP State (802.1d)</strong></td>
<td><strong>RSTP State (802.1w)</strong></td>
</tr>
<tr>
<td>Blocking</td>
<td>Discarding</td>
</tr>
<tr>
<td>Listening</td>
<td>Discarding</td>
</tr>
<tr>
<td>Learning</td>
<td>Learning</td>
</tr>
<tr>
<td>Forwarding</td>
<td>Forwarding</td>
</tr>
<tr>
<td>Disabled</td>
<td>Discarding</td>
</tr>
</tbody>
</table>
<p>Although the learning state is also used in RSTP but it only takes place for a short time as compared to STP. RSTP converges with all ports either in forwarding state or discarding  state.</p>
<p><strong>RSTP Quick Summary:</strong></p>
<p>RSTP provides faster convergence than 802.1D STP when topology changes occur.<br />
 * RSTP defines three port states: discarding, learning, and forwarding.<br />
 * RSTP defines five port roles: root, designated, alternate, backup, and disabled.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/rapid-spanning-tree-protocol-rstp-tutorial/feed</wfw:commentRss>
		<slash:comments>39</slash:comments>
		</item>
		<item>
		<title>9tut.net for ICND 1 &amp; ICND 2 has been launched!</title>
		<link>http://www.9tut.com/9tut-net-for-icnd-1-icnd-2-has-been-launched</link>
		<comments>http://www.9tut.com/9tut-net-for-icnd-1-icnd-2-has-been-launched#comments</comments>
		<pubDate>Wed, 01 Jun 2011 21:25:32 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[Network Resources]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=65</guid>
		<description><![CDATA[Today, I am happy to announce the launch of 9tut.net website which is built mainly for CCNA candidates who get the CCNA certification by taking two exams ICND 1 and ICND 2. In 9tut.net you will find the OSPF lab sim that many readers here debate about its existence in the CCNA 640-802 exam. The [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I am happy to announce the launch of <a href="http://9tut.net">9tut.net</a> website which is built mainly for CCNA candidates who  get the CCNA certification by taking two exams ICND 1 and ICND 2. In 9tut.net you will find the <a href="http://www.9tut.net/icnd2/icnd2-labsim/ospf-sim" target="_blank">OSPF lab sim</a> that many readers here debate about its existence in the CCNA 640-802 exam. The answer is no, you will only see it in the ICND 2 exam.</p>
<p><span id="more-65"></span></p>
<p><!--adsense--></p>
<p>Some labs and questions in ICND1 &amp; ICND2 are similar to the composite CCNA exam so it is a good way to test yourself with different IP addresses and subnet masks on both sites. I also added some new CCNA 640-802 questions in this site. Hope you will enjoy this new site and good luck to all in your exam!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/9tut-net-for-icnd-1-icnd-2-has-been-launched/feed</wfw:commentRss>
		<slash:comments>63</slash:comments>
		</item>
		<item>
		<title>Spanning Tree Protocol STP Tutorial</title>
		<link>http://www.9tut.com/spanning-tree-protocol-stp-tutorial</link>
		<comments>http://www.9tut.com/spanning-tree-protocol-stp-tutorial#comments</comments>
		<pubDate>Wed, 01 Jun 2011 09:54:13 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Knowledge]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=611</guid>
		<description><![CDATA[To provide for fault tolerance, many networks implement redundant paths between devices using multiple switches. However, providing redundant paths between segments causes packets to be passed between the redundant paths endlessly. This condition is known as a bridging loop. (Note: the terms bridge, switch are used interchangeably when discussing STP) To prevent bridging loops, the [...]]]></description>
			<content:encoded><![CDATA[<p>To provide for fault tolerance, many networks implement redundant paths between devices using multiple switches. However, providing redundant paths between segments causes packets to be passed between the redundant paths endlessly. This condition is known as a bridging loop.</p>
<p>(Note: the terms bridge, switch are used interchangeably when discussing STP)</p>
<p>To prevent bridging loops, the IEEE 802.1d committee defined a standard called the spanning tree algorithm (STA), or spanning tree protocol (STP). Spanning-Tree Protocol is a link management protocol that provides path  redundancy while preventing undesirable loops in the network. For an  Ethernet network to function properly, only one active path can exist  between two stations.</p>
<p><strong> </strong> Let&#8217;s see a situation when there is no loop-avoidance process in operation. Suppose you have two switches connected with redundant links. One switch connected to PC A and the other switch connected to PC B.</p>
<p>Now PC A wants to talk to PC B. It then sends a broadcast, say an Address Resolution Protocol (ARP) to find out where the location of PC B, the green arrow shows a broadcast frame sent by PC A.</p>
<p>When the switch A receives a broadcast frame, it forwards that frame to  all ports except the port where it receives the request -&gt; SwA  forwards that ARP frame out of fa0/0 and fa0/1 ports.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/STP/STP_broadcast_storm.jpg" alt="STP_broadcast_storm.jpg" width="460" height="110" /></p>
<p><span id="more-611"></span></p>
<p><!--adsense--></p>
<p>Suppose SwB receives the broadcast frame from fa0/0 first then it will forward that frame to the two other links ( fa0/1 and fa0/5 of SwB).</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/STP/STP_broadcast_storm_receive_broadcast_frame.jpg" alt="STP_broadcast_storm_receive_broadcast_frame.jpg" width="460" height="110" /></p>
<p>The other broadcast frame from SwA comes to fa0/1 of SwB so SwB forwards it to fa0/0 and fa0/5.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/STP/STP_broadcast_storm_receive_broadcast_frame_second.jpg" alt="STP_broadcast_storm_receive_broadcast_frame_second.jpg" width="460" height="110" /></p>
<p>As you can see, SwA has sent 2 broadcast frames out of its fa0/0 and fa0/1, SwB receives each of them, creates 2 copies and sends one of them back to SwA (the other is sent to PC B).</p>
<p>When SwA receives these broadcast frames it continues broadcasting them again to its other interfaces, this will keep going on forever until you shutdown the network. This phenomenon is called a <strong>broadcast storm.</strong><strong></p>
<p> </strong></p>
<p>Broadcast storm consumes entire bandwidth and denies bandwidth for normal network traffic. Broadcast storm is a serious network problem and can shut down entire network in seconds.</p>
<p>Other problems:</p>
<p><strong>Multiple frame transmission: </strong>Multiple copies of unicast frames may be  delivered to destination stations. Many protocols expect to receive only a single  copy of each transmission. Multiple copies of the same frame can cause unrecoverable  errors. In the above example, if the first frame is not a ARP broadcast but a unicast and SwA and SwB haven&#8217;t learned about the destination in that frame yet then they flood the frame on all ports except the originating port. The same phenomenon occurs and PC B will receive more than one copy of that frame.</p>
<p><strong>MAC Database Instability:</strong> MAC database instability results when multiple copies of a frame arrive on different ports of a switch. We can see it in the above example too when the two ports on SwB (fa0/0 and fa0/1) receive the same frame.</p>
<p>Now you learned about problems when there is no looping-avoidance mechanism running on the network. All of these problems can be solved with the Spanning Tree Protocol (STP)</p>
<p>STP prevents loop by blocking one of switch&#8217;s port. For example, by blocking port fa0/0 of SwA, no data traffic is sent on this link and the loop in the network is eliminated.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/STP/STP_blocking_port.jpg" alt="STP_blocking_port.jpg" width="460" height="110" /></p>
<p><!--adsense--></p>
<p>But how STP decides which port should be blocked. The whole process is more complex than what is shown above. We will learn it in the next part.</p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/spanning-tree-protocol-stp-tutorial/feed</wfw:commentRss>
		<slash:comments>45</slash:comments>
		</item>
		<item>
		<title>Configure NAT &#8211; GNS3 Lab</title>
		<link>http://www.9tut.com/configure-nat-gns3-lab</link>
		<comments>http://www.9tut.com/configure-nat-gns3-lab#comments</comments>
		<pubDate>Tue, 24 May 2011 15:24:28 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[Practice CCNA GNS3 Labs]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=578</guid>
		<description><![CDATA[In this article we will demonstrate how to configure NAT using GNS3 Note: If you are not sure about NAT, please read my Network Address Translation NAT Tutorial To configure static NAT we need to complete these tasks: * Define the router’s interfaces as inside or outside: R0uter(config-if)#ip nat inside (or ip nat outside) * [...]]]></description>
			<content:encoded><![CDATA[<p>In this article we will demonstrate how to configure NAT using GNS3</p>
<p>Note: If you are not sure about NAT, please read my <a href="http://www.9tut.com/network-address-translation-nat-tutorial" target="_blank">Network Address Translation NAT Tutorial</a></p>
<p>To configure static NAT we need to complete these tasks:<br />
 * Define the router’s interfaces as inside or outside:<strong> <br />
 </strong><strong>R0uter(config-if)#</strong><strong>ip nat inside </strong>(or<strong> ip nat outside</strong>)</p>
<p>* Define static mapping between the inside address and the outside address: <strong><br />
 </strong><strong>R0uter(config)#</strong><strong>ip nat inside source static</strong> <em> </em></p>
<p><strong>+ Static NAT:</strong></p>
<p>To make everything clear, we will configure static NAT in GNS3. Open your GNS3 and build a topology like this:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/NAT/GNS3_NAT_topology.jpg" alt="GNS3_NAT_topology.jpg" width="445" height="72" /></p>
<p style="text-align: center;">(IOS used: c2600-bin-mz.123-6f.bin but you can use other versions)</p>
<p>We should use 3 routers in this topology but I want to save some RAM and demonstrate how to ping from the loopback interface so I only use two :) Therefore we should configure the loopback interface of R0 as the source IP address and the fa0/0 interface of R0 as the &#8220;outgoing static NAT&#8221; address.</p>
<p><!--adsense--></p>
<p><span id="more-578"></span><strong>R0#configure terminal<br />
 R0(config)#int loopback0<br />
 R0(config-if)#ip address 10.0.0.1 255.0.0.0<br />
 R0(config-if)#ip nat inside</strong></p>
<p><strong>R0(config-if)#int f0/0<br />
 R0(config-if)#ip address 200.0.0.1 255.255.255.0<br />
 R0(config-if)#no shutdown<br />
 R0(config-if)#ip nat outside<br />
 R0(config-if)#exit</strong></p>
<p>Finally, we have to tell the router to translate my private IP <strong>10.0.0.1</strong> to public IP <strong>200.0.0.2</strong> so that I can go to the Internet!<strong><br />
 </strong></p>
<p><strong>R0(config)#ip nat inside source static 10.0.0.1 200.0.0.2</strong></p>
<p>In R1 we just assign the IP address and no shut its interface.</p>
<p><strong>R1#config terminal<br />
 R1(config)#int f0/0<br />
 R1(config-if)#ip address 200.0.0.10 255.255.255.0<br />
 R1(config-if)#no shutdown</strong></p>
<p>Check if all things are right or not:</p>
<p><strong>R0#show ip nat translations</strong></p>
<p><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/NAT/GNS3_NAT_show_ip_nat_translations.jpg" alt="GNS3_NAT_show_ip_nat_translations.jpg" width="602" height="49" /></p>
<p>In this article we don&#8217;t use a host attached to R0 so if we want to test our NAT configuration we have to ping from R0&#8242;s loopback interface by using the ping extended command:</p>
<p>We can use the extended ping command by typing only &#8220;ping&#8221; at the privileged mode, specify the &#8220;target IP address&#8221; and type &#8220;y&#8221; at the &#8220;Extended commands&#8221; and specify the &#8220;source address or interface&#8221; at shown below:</p>
<p><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/NAT/GNS3_NAT_ping_extended_nat_static.jpg" alt="GNS3_NAT_ping_extended_nat_static.jpg" width="572" height="241" /></p>
<p>To approve NAT works well we can disable static NAT with the following command</p>
<p><strong>R0(config)#no ip nat inside source static 10.0.0.1 200.0.0.2</strong></p>
<p>Now if we use the extended ping command (without NAT configured):</p>
<p><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/NAT/GNS3_NAT_ping_extended_no_nat.jpg" alt="GNS3_NAT_ping_extended_no_nat.jpg" width="537" height="241" /></p>
<p>-&gt; We can&#8217;t ping from the loopback interface.</p>
<p>Download static NAT configuration: <a href="http://www.9tut.com/download/NAT_static_CCNA_self_study.zip" target="_blank">http://www.9tut.com/download/NAT_static_CCNA_self_study.zip</a></p>
<p><strong>+ Dynamic NAT:</strong></p>
<p>To configure dynamic NAT we need to complete these tasks:</p>
<p>* Define a pool of addresses (public IP) to be used for dynamic NAT allocation</p>
<p><strong>Router(config)#ip nat pool</strong> <em>pool_name</em> <em>start_ip</em> <em>end_ip</em> { <strong>netmask</strong> <em>netmask</em> | <strong>prefix-length</strong> <em>prefix-length</em> }</p>
<p>* Configure a standard access control list to define what internal traffic will be translated</p>
<p><strong>Router(config)#access-list</strong> <em>access-list-number</em> <strong>permit</strong> <em>source</em> [<em>source-wildcard</em>]</p>
<p>Link the access list to the NAT pool</p>
<p><strong>Router(config)#ip nat inside source list</strong> <em>access-list-number</em> <strong>pool</strong> <em>pool_name</em></p>
<div>Define interfaces as either inside and outside</div>
<p><strong>Router(config-if)# ip nat inside</strong> (on fa0/0, for example)<strong><br />
 Router(config-if)#ip nat outside </strong> (on fa0/1, for example)</p>
<p>* Dynamic NAT configuration example:</p>
<p><strong>RouterA(config)# access-list 1 permit 192.168.0.0 0.0.0.255<br />
 RouterA(config)# ip nat pool PoolforNAT 200.23.123.6 </strong><strong>200.23.123</strong><strong>.10 netmask 255.255.255.0<br />
 RouterA(config)# ip nat inside source list 1 pool PoolforNAT</strong></p>
<p>Note: In the above command, the word &#8220;inside&#8221; means &#8220;I want to NAT from inside to outside&#8221;; &#8220;list 1&#8243; means &#8220;the source IP addresses to NAT are included in Access-list 1&#8243;; &#8220;pool PoolforNAT&#8221; means &#8220;NAT to the IP addresses specified in PoolforNAT&#8221;.</p>
<p><strong>RouterA(config)# int loopback0<br />
 RouterA(config-if)# ip nat inside</strong></p>
<p><strong>RouterA(config-if)# int fa0/0<br />
 RouterA(config-if)# ip nat outside</strong></p>
<p>Configure PAT (NAT Overload)</p>
<p>* Configure a standard access list to define what internal traffic will be translated<br />
 * Link the access list to the interface to be used for PAT<br />
 * Define interfaces as either inside or outside</p>
<p>PAT router commands<br />
 <strong>RouterA(config)# access-list 1 permit 192.168.0.0 0.0.0.255<br />
 RouterA(config)# ip nat inside source list 1 interface fa0/0 overload</strong></p>
<p>(Notice the &#8220;interface fa0/0&#8243; means &#8220;NAT out of this interface&#8221; and the keyword <strong>overload</strong> for PAT in the above command)</p>
<p><strong>RouterA(config)# interface fa0/0<br />
 RouterA(config-if)# ip nat outside</strong></p>
<p><strong>RouterA(config-if)# interface loopback0<br />
 RouterA(config-if)# ip nat inside</strong></p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/configure-nat-gns3-lab/feed</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Network Address Translation NAT Tutorial</title>
		<link>http://www.9tut.com/network-address-translation-nat-tutorial</link>
		<comments>http://www.9tut.com/network-address-translation-nat-tutorial#comments</comments>
		<pubDate>Sun, 22 May 2011 12:04:25 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Knowledge]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=511</guid>
		<description><![CDATA[To go to the Internet we need to get an public IP address and it is unique all over the world. If each host in the world required a unique public IP address, we would have run out of IP address years ago. But by using Network Address Translation (NAT) we can save tons of [...]]]></description>
			<content:encoded><![CDATA[<p>To go to the Internet we need to get an public IP address and it is unique all over the world. If each host in the world required a unique public IP address, we would have run out of IP address years ago. But by using Network Address Translation (NAT) we can save tons of IP addresses for later uses. We can understand NAT like this:</p>
<p>&#8220;NAT allows a host that does not have a valid registered IP address to communicate with other hosts through the Internet&#8221;</p>
<p>For example your computer is assigned a private IP address of 10.0.0.9 and of course this address can not be routed on the internet but you can still access the internet. This is because your router (or modem) translates this address into a public IP address, 123.12.23.1 for example, before routing your data into the internet.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/NAT/NAT_Basic.jpg" alt="NAT_Basic.jpg" width="330" height="140" /></p>
<p><span id="more-511"></span></p>
<p><!--adsense--></p>
<p>Of course when your router receives a reply packet destined for 123.12.23.1 it will convert back to your private IP 10.0.0.9 before sending that packet to you.</p>
<p>Maybe you will ask &#8220;hey, I don&#8217;t see any difference of using NAT to save tons of IP addresses because you still need a public IP address for each host to access the Internet and it doesn&#8217;t save you anything, why you need to use NAT?&#8221;</p>
<p>Ok, you are right :), in the above example we don&#8217;t see its usefulness but you now understand the fundamental of NAT!</p>
<p>Let&#8217;s take another example!</p>
<p>Suppose your company has 500 employees but your Internet Service Provider (ISP) only gives you 50 public IP addresses. It means that you can only allow 50 hosts to access the internet at the same time. Here NAT comes to save your life!</p>
<p>One thing you should notice that in real life, not all of your employees uses internet at the same time. Say, maybe 50 of them use internet to read newspaper at the morning; 50 others use internet at noon for checking mail&#8230; By using NAT you can dynamically assign these 50 public IP addresses to those who really need them at that time. This is called <strong>dynamic NAT</strong>.</p>
<p>But the above NAT solution does not solve our problem completely because in some days there can be more than 50 people surfing web at the morning. In this case, only the first 50 people can access internet, others must wait to their turns.</p>
<p>Another problem is, in fact, your ISP only gives you much lesser IP addresses than the number 50 because each public IP is very precious now.</p>
<p>To solve the two problems above, another feature of NAT can be used: <strong>NAT Overload</strong> or sometimes called <strong>Port Address Translation</strong> (PAT)</p>
<p>PAT permits multiple devices on a local area network (LAN) to be mapped to a single public IP address with different port numbers. Therefore, it’s also known as  port address translation (PAT). When using PAT, the router maintains unique source port numbers on the<strong> inside global</strong> IP address to distinguish between translations. In the below example, each host is assigned to the same public IP address 123.1.1.1 1 but with different port numbers (from 1000 to 1002).</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/NAT/PAT_Basic.jpg" alt="PAT_Basic.jpg" width="380" height="240" /></p>
<p>Note: Cisco uses the term <strong>inside local</strong> for the private IP  addresses and <strong>inside global</strong> for the public IP addresses replaced  by the router.</p>
<p>The outside host IP address can also be changed with NAT. The <strong>outside  global</strong> address represents the outside host with a public IP address  that can be used for routing in the public Internet.</p>
<p>The last  term, <strong>outside local</strong> address, is a private address of an external  device as it is referred to by devices on its local network. You can  understand outside local address as the inside local address of the  external device which lies at the other end of the Internet.</p>
<p>Maybe you will ask how many ports can we use for each IP? Well, because the port number ﬁeld has 16 bits, PAT can support about 2<sup>16</sup> ports, which is more than 64,000 connections using one public IP address.</p>
<p>Now you has learned all the most useful features of NAT but we should summary all features of NAT:</p>
<p>There are two types of NAT translation: dynamic and static.</p>
<p><strong>Static NAT</strong>: Designed to allow one-to-one mapping between local and  global addresses. This flavor requires you to have one real Internet IP address for every host  on your network.</p>
<p><strong>Dynamic NAT:</strong> Designed to map an unregistered IP address to a  registered IP address from a pool of registered IP addresses. You don’t have to statically  configure your router to map an inside to an outside address as in static NAT, but you do have to have  enough real IP addresses for everyone who wants to send packets through the Internet. With dynamic NAT, you can configure the NAT router with more IP  addresses in the inside local address list than in the inside global  address pool. When being defined in the inside global address pool, the  router allocates registered public IP addresses from the pool until all  are allocated. If all the public IP addresses are already allocated, the  router discards the packet that requires a public IP address.</p>
<p><strong>PAT (NAT Overloading):</strong> is also a kind of dynamic NAT that maps multiple private IP addresses to a single public IP address (many-to-one) by using different ports. Static NAT and Dynamic NAT both require a one-to-one mapping from the  inside local to the inside global address. By using PAT, you can have thousands of users  connect to the Internet using only one real global IP address. PAT is the technology that helps us not run out of public IP address on the Internet. This is the most popular type of NAT.</p>
<p>Besides NAT gives you the option to advertise only a single address for your entire network to the outside world. Doing this effectively hides the internal network from the public world really well, giving you some additional security for your network.</p>
<p>NAT terms:</p>
<p><strong>* Inside local address</strong> – The IP address assigned to a host on the inside network. The address is usually not an IP address assigned by the Internet Network Information Center (InterNIC) or service provider. This address is likely to be an RFC 1918 private address.  <br />
 <strong>* Inside global address</strong> – A legitimate IP address assigned by the InterNIC or service provider that represents one or more inside local IP addresses to the outside world.  <br />
 <strong>* Outside local address</strong> – The IP address of an outside host as it is known to the hosts on the inside network.  <br />
 <strong>* Outside global address</strong> – The IP address assigned to a host on the outside network. The owner of the host assigns this address.</p>
<p>To learn how to configure NAT please read my <a href="http://www.9tut.com/configure-nat-gns3-lab" target="_blank">Configure NAT GNS3 Lab tutorial</a></p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/network-address-translation-nat-tutorial/feed</wfw:commentRss>
		<slash:comments>53</slash:comments>
		</item>
		<item>
		<title>Privacy-Policy</title>
		<link>http://www.9tut.com/privacy-policy</link>
		<comments>http://www.9tut.com/privacy-policy#comments</comments>
		<pubDate>Fri, 13 May 2011 14:53:30 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[Policy]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=401</guid>
		<description><![CDATA[All of the articles on 9tut.com are copyright its respective owner. You are allowed to use them anywhere with a link back to its original article on this site. Privacy Policy: Google, as a third party vendor, uses cookies to serve ads on your site. Google&#8217;s use of the DART cookie enables it to serve [...]]]></description>
			<content:encoded><![CDATA[<p>All of the articles on 9tut.com are copyright its respective owner. You are allowed to use them anywhere with a link back to its original article on this site.</p>
<p>Privacy Policy:</p>
<ul>
<li>Google, as a third party vendor, uses cookies to serve ads on your site. </li>
<li>Google&#8217;s use of the DART cookie enables it to serve ads to your users based on their visit to your sites and other sites on the Internet. </li>
<li>Users may opt out of the use of the DART cookie by visiting the <a href="http://www.google.com/privacy_ads.html" target="_blank">Google ad and content network privacy policy. </a></li>
</ul>
<p>We respect your privacy and we are committed to safeguarding your privacy while online at our site The following discloses the information gathering and dissemination practices for this Web site.</p>
<p>Log  Files</p>
<p>Like most standard Web site servers we use log files. This includes internet protocol (IP) addresses, browser type, internet service provider (ISP), referring/exit pages, platform type, date/time stamp, and number of clicks to analyze trends, administer the site, track user’s movement in the aggregate, and gather broad demographic information for aggregate use. IP addresses, etc. are not linked to personally identifiable information.</p>
<p>Cookies</p>
<p>A cookie is a piece of data stored on the user’s computer tied to information about the user. Our site don’t use cookies. However, Some of our business partners use cookies on our site (for example, advertisers). However, we have no access to or control over these cookies, once we have given permission for them to set cookies for advertising.</p>
<p>Links</p>
<p>This Web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every Web site that collects personally identifiable information. This privacy statement applies solely to information collected by this Web site.</p>
<p>Advertisers</p>
<p>We use outside ad companies to display ads on our site. These ads may contain cookies and are collected by our ad companies, and we do not have access to this information. We work with the ad companies: Google Adsense. Please check their websites for respective privacy policies.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/privacy-policy/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Access List Questions</title>
		<link>http://www.9tut.com/ccna-access-list</link>
		<comments>http://www.9tut.com/ccna-access-list#comments</comments>
		<pubDate>Sun, 01 May 2011 21:23:41 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=61</guid>
		<description><![CDATA[Here you will find answers to CCNA Access list questions Note: If you are not sure about how to use Access list, please read my Access list tutorial Question 1 Your boss is learning a CCNA training course, refer to the exhibit. The access list has been configured on the S0/0 interface of router RTB [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to CCNA Access list questions</p>
<p><!--adsense--></p>
<p>Note: If you are not sure about how to use Access list, please read my <a href="http://www.9tut.com/access-list-tutorial" target="_blank">Access list tutorial</a></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Your boss is learning a CCNA training course, refer to the exhibit. The access list has been configured on the S0/0 interface of router RTB in the outbound direction. Which two packets, if routed to the interface, will be denied? (Choose two)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/accesslist/accesslist1.jpg" border="0" alt="accesslist1" width="450" height="240" /></p>
<p><span class="pinkandbold">access-list 101 deny tcp 192.168.15.32 0.0.0.15 any eq telnet<br />
 access-list 101 permit ip any any</span></p>
<p>A. source ip address: 192.168.15.5; destination port: 21<br />
 B. source ip address: 192.168.15.37 destination port: 21<br />
 C. source ip address: 192.168.15.41 destination port: 21<br />
 D. source ip address: 192.168.15.36 destination port: 23<br />
 E. source ip address: 192.168.15.46; destination port: 23<br />
 F. source ip address: 192.168.15.49 destination port: 23</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer: D E</p>
<p class="ccnaexplanation">Explanation</p>
<p>First we notice that telnet uses port 23 so only D, E &amp; F can satisfy this requirement.</p>
<p>The purpose of this access-list is to deny traffic from network 192.168.15.32 255.255.255.240 (to find out the subnet mask just convert all bit &#8220;0&#8243; to &#8220;1&#8243; and all bit &#8220;1&#8243; to &#8220;0&#8243; of the wildcard mask) to telnet to any device. So we need to figure out the range of this network to learn which ip address will be denied.</p>
<p><strong>Increment:</strong> 16<br />
<strong>Network address: </strong>192.168.15.32<br />
<strong>Broadcast address: </strong>192.168.15.47</p>
<p>-&gt; Only 192.168.15.36 (Answer D) &amp; 192.168.15.46 (Answer E) belong to this range so they are the correct answer.</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Refer to the graphic. It has been decided that PC1 should be denied access to Server. Which of the following commands are required to prevent only PC1 from accessing Server1 while allowing all other traffic to flow normally? (Choose two)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/accesslist/accesslist2.jpg" border="0" alt="accesslist2" width="450" height="96" /></p>
<p>A &#8211; Router(config)# interface fa0/0<br />
 Router(config-if)# ip access-group 101 out <br />
 B &#8211; Router(config)# interface fa0/0<br />
 Router(config-if)# ip access-group 101 in<br />
 C &#8211; Router(config)# access-list 101 deny ip host 172.16.161.150 host 172.16.162.163<br />
 Router(config)# access-list 101 permit ip any any<br />
 D &#8211; Router(config)# access-list 101 deny ip 172.16.161.150 0.0.0.255 172.16.162.163 0.0.0.0<br />
 Router(config)# access-list 101 permit ip any any</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer: B C</p>
<p><br class="spacer_" /></p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Refer to the exhibit. Why would the network administrator configure RA in this manner?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/accesslist/accesslist3.jpg" border="0" alt="accesslist3" width="392" height="308" /></p>
<p>A. to give students access to the Internet<br />
 B. to prevent students from accessing the command prompt of RA<br />
 C. to prevent administrators from accessing the console of RA<br />
 D. to give administrators access to the Internet<br />
 E. to prevent students from accessing the Internet<br />
 F. to prevent students from accessing the Admin network</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer: B</p>
<p class="ccnaexplanation">Explanation</p>
<p>Although the access-list is used to &#8220;permit&#8221; network 10.1.1.0/24 but the best answer here is &#8220;to prevent students from accessing the command prompt of RA&#8221;. From the picture above, we know that 10.1.1.0/24 is the &#8220;Admin&#8221; network. This access list is applied to &#8220;line vty 0 4&#8243; so it will permit only Telnet traffic from &#8220;Admin&#8221; to RA while drop all other traffic (because of the implicit &#8220;deny all&#8221; command at the end of the access list). Therefore we can deduce that it will &#8220;prevent students from accessing the command prompt of RA&#8221;.</p>
<p>This access list only filters Telnet traffic (because it is applied to vty line) so it will not prevent or allow anyone to access the Internet -&gt; A, D, E are not correct.</p>
<p>C is not correct as this access list allows administrators to access the console of RA.</p>
<p>F is not correct as this access list does not proceed TCP, UDP or IP traffic so the students still access the Admin network.</p>
<p>(Notice that the &#8220;command prompt&#8221; here implies telnet as telnet is the only way to remotely access RA)</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>An access list was written with the four statements shown in the graphic. Which single access list statement will combine all four of these statements into a single statement that will have exactly the same effect?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/accesslist/accesslist4.jpg" border="0" alt="accesslist4" width="360" height="63" /></p>
<p>A. access-list 10 permit 172.29.16.0 0.0.0.255<br />
 B. access-list 10 permit 172.29.16.0 0.0.1.255<br />
 C. access-list 10 permit 172.29.16.0 0.0.3.255<br />
 D. access-list 10 permit 172.29.16.0 0.0.15.255<br />
 E. access-list 10 permit 172.29.0.0 0.0.255.255</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer: C</p>
<p class="ccnaexplanation">Explanation</p>
<p>Four statements above allow 4 networks (from 172.29.16.0/24 to 172.29.19.0/24) to go through so we can summary them as network 172.29.16.0/22.</p>
<p>/22 = 255.255.252.0 so it equals 0.0.3.255 when converting into wildcard mask -&gt; C is correct.</p>
<p>A, B, D are not correct as their wildcard masks are false. For example:<br />
 Answer A allows from 172.29.16.0 to 172.29.16.255<br />
 Answer B allows from 172.29.16.0 to 172.29.17.255<br />
 Answer D allows from 172.29.16.0 to 172.29.31.255</p>
<p>Both the network address and wildcard mask of answer E are false as it allows the whole major network 172.29.0.0/16 to go through.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>A network administrator  wants to add a line to an access list that will block only Telnet  access by the hosts on subnet 192.168.1.128/28 to the server at  192.168.1.5. What command should be issued to accomplish this task?</p>
<p>A  &#8211; access-list 101 deny tcp 192.168.1.128 0.0.0.15 192.168.1.5 0.0.0.0  eq 23 <br />
 access-list 101 permit ip any any<br />
 B &#8211; access-list 101  deny tcp 192.168.1.128 0.0.0.240 192.168.1.5 0.0.0.0 eq 23<br />
 access-list 101 permit ip any any<br />
 C &#8211; access-list 1 deny tcp  192.168.1.128 0.0.0.255 192.168.1.5 0.0.0.0 eq 21<br />
 access-list 1  permit ip any any<br />
 D &#8211; access-list 1 deny tcp 192.168.1.128 0.0.0.15  host 192.168.1.5 eq 23 <br />
 access-list 1 permit ip any any</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaexplanation">Explanation:</p>
<p>First the question asks to  block only Telnet access so the port we have to use is 23 -&gt; C is not  correct.</p>
<p>Next we need to block traffic from hosts on the subnet  192.168.1.128/28, which is 192.168.1.128 0.0.0.15 if we convert to  wildcard mask (just invert all bits of the subnet mask,from 0 to 1 and  from 1 to 0 we will get the equivalent wildcard mask of that subnet  mask) -&gt; so B is incorrect</p>
<p>In this case, we have to use  extended access list because we need to specify which type of traffic  (TCP) and which port (23) we want to block -&gt; so D is incorrect  because it uses standard access list.</p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>As a network administrator, you have been instructed to  prevent all traffic originating on the LAN from entering the R2 router.  Which the following command would implement the access list on the  interface of the R2 router?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/accesslist/accesslist_blocktraffic.jpg" border="0" alt="accesslist_blocktraffic" width="360" height="113" /></p>
<p><br class="spacer_" /></p>
<p>A  &#8211; access-list 101 in<br />
 B &#8211; access-list 101 out<br />
 C &#8211; ip access-group  101 in<br />
 D &#8211; ip access-group 101 out</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>The following access list  below was applied outbound on the E0 interface connected to the  192.169.1.8/29 LAN:</p>
<p>access-list 135 deny tcp 192.169.1.8 0.0.0.7  eq 20 any <br />
 access-list 135 deny tcp 192.169.1.8 0.0.0.7 eq 21 any</p>
<p>How  will the above access lists affect traffic?</p>
<p>A &#8211; FTP traffic from  192.169.1.22 will be denied<br />
 B &#8211; No traffic, except for FTP traffic  will be allowed to exit E0<br />
 C &#8211; FTP traffic from 192.169.1.9 to any  host will be denied<br />
 D &#8211; All traffic exiting E0 will be denied<br />
 E &#8211;  All FTP traffic to network 192.169.1.9/29 will be denied</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation:</p>
<p>There is always an implicit  &#8220;deny all&#8221; command at the end of every access list, so if an access list  doesn&#8217;t have any &#8220;permit&#8221; command, it will block all the traffic. If we  use the command &#8220;access-list 135 permit ip any any&#8221; at the end of this  access list then the answer should be C &#8211; FTP traffic from 192.169.1.9  to any host will be denied.</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>The access control list shown in the graphic has been applied  to the Ethernet interface of router R1 using the ip access-group 101 in  command. Which of the following Telnet sessions will be blocked by this  ACL? (Choose two)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/accesslist/accesslist.jpg" border="0" alt="accesslist" /></p>
<p>A &#8211; from host PC1 to host  5.1.1.10<br />
 B &#8211; from host PC1 to host 5.1.3.10<br />
 C &#8211;  from host PC2 to  host 5.1.2.10<br />
 D &#8211;  from host PC2 to host 5.1.3.8</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B D</p>
<p class="ccnaexplanation">Explanation</p>
<p>Below is the simple syntax of  an extended access list:</p>
<p>access-list access-list-number {deny |  permit} {ip|tcp|udp|icmp} source [source-mask] dest [dest-mask] [eq  dest-port]</p>
<p>Notice that this access list is applied to the  Ethernet interface of R1 in the &#8220;in direction&#8221; so in this case, it will  filter all the packets originated from E1 network (host PC1 and PC2)  with these parameters:</p>
<p><strong>Source network:</strong> 5.1.1.8 0.0.0.3  which means 5.1.1.8/252 (just invert all the wildcard bits to get the  equivalent subnet mask) -&gt; Packets from 5.1.1.8 to 5.1.1.11 will be  filtered.</p>
<p><strong>Destination network:</strong> 5.1.3.0 0.0.0.255 which  means 5.1.3.0/24-&gt; Packets to 5.1.3.0/24 will be filtered</p>
<p>Therefore  packets originated from 5.1.1.8 to 5.1.1.11 and have the destination to  the host 5.1.3.x (via Telnet) will be denied.</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>The following  configuration line was added to router R1</p>
<p>Access-list 101 permit  ip 10.25.30.0 0.0.0.255 any</p>
<p>What is the effect of this access list  configuration?<br />
 A &#8211; permit all packets matching the first three  octets of the source address to all destinations<br />
 B &#8211; permit all  packet matching the last octet of the destination address and accept all  source addresses <br />
 C &#8211; permit all packet matching the host bits in  the source address to all destinations<br />
 D &#8211; permit all packet from the  third subnet of the network address to all destinations</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-access-list/feed</wfw:commentRss>
		<slash:comments>792</slash:comments>
		</item>
		<item>
		<title>CCNA – Access List Questions 2</title>
		<link>http://www.9tut.com/ccna-%e2%80%93-access-list-questions-2</link>
		<comments>http://www.9tut.com/ccna-%e2%80%93-access-list-questions-2#comments</comments>
		<pubDate>Sat, 30 Apr 2011 10:03:01 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=981</guid>
		<description><![CDATA[Here you will find answers to Access list Questions &#8211; Part 2 Note: If you are not sure about Access list, please read my Access list tutorial. Question 1 Refer to the exhibit. What will happen to HTTP traffic coming from the Internet that is destined for 172.16.12.10 if the traffic is processed by this [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to Access list Questions &#8211; Part 2</p>
<p><!--adsense--></p>
<p>Note: If you are not sure about Access list, please read my <a href="http://www.9tut.com/access-list-tutorial" target="_blank">Access list tutorial</a>.</p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Refer to the exhibit. What will happen to HTTP traffic coming from   the Internet that is destined for 172.16.12.10 if the traffic is   processed by this ACL?</p>
<table border="1">
<tbody>
<tr>
<td><strong>router#show access-lists </strong><br />
 Extended IP access list 110<br />
 10 deny tcp 172.16.0.0 0.0.255.255 any eq telnet <br />
 20 deny tcp 172.16.0.0 0.0.255.255 any eq smtp <br />
 30 deny tcp 172.16.0.0 0.0.255.255 any eq http <br />
 40 permit tcp 172.16.0.0 0.0.255.255 any</td>
</tr>
</tbody>
</table>
<p>A. Traffic will be dropped per line 30 of the ACL.<br />
 B. Traffic will be accepted per line 40 of the ACL.<br />
 C. Traffic will be dropped, because of the implicit deny all at the end of the ACL.<br />
 D. Traffic will be accepted, because the source address is not covered by the ACL.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>The syntax of an extended access list is:</p>
<p><strong>access-list</strong> <em>access-list-number</em> {permit | deny} <em>protocol</em> source {source-mask} destination {destination-mask} [eq destination-port]</p>
<p>Notice that in our access list, the network 172.16.0.0 0.0.255.255 is specified as the source but the question asks about &#8220;HTTP traffic coming from   the Internet that is destined for 172.16.12.10&#8243;, which means 172.16.0.0 0.0.255.255 is the destination network. So in this case there is no match in our access list and the traffic will be dropped because of the implicit deny all at the end of the ACL. It is surely a tricky question!</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Refer  to the exhibit. Which statement describes the effect that the  Router1  configuration has on devices in the 172.16.16.0 subnet when  they try to  connect to SVR-A using Telnet or SSH?</p>
<p><img src="http://www.9tut.com/images/ccna/accesslist/extended_access_list.jpg" alt="extended_access_list.jpg" width="551" height="383" /></p>
<p>A. Devices will not be able to use Telnet or SSH.<br />
 B. Devices will be able to use SSH, but not Telnet.<br />
 C. Devices will be able to use Telnet, but not SSH.<br />
 D. Devices will be able to use Telnet and SSH.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>Let&#8217;s analyze the access list 100:</p>
<p>+ 10 permit tcp 172.16.16.0 0.0.0.15 host 172.16.48.63 eq 22: allows TCP traffic from network 172.16.16.0/28 to access host 172.16.48.63 with a destination port of 22 (SSH)<br />
 + 20 permit tcp 172.16.16.0 0.0.0.15 eq telnet host 172.16.48.63: allows TCP traffic from network 172.16.16.0/28 with a <span style="text-decoration: underline;">source port</span> of 23 (telnet) to access host 172.16.48.63</p>
<p>Notice that if a device wants to telnet (or SSH) to SVR-A server it must use the destination port of 23 (or 22), not a source port of 23 (or 22).</p>
<p>Access list 100 is applied on the inbound direction of Fa0/0 so it will only filter traffic from 172.16.16.0 subnet to the SVR-A server.</p>
<p>Access list 101 is very similar to access list 100 but it is applied on the inbound direction of Fa0/1 so it will filter traffic from SVR-A server to 172.16.16.0 subnet. In ACL 101:</p>
<p>+ 10 permit tcp host 172.16.48.63 eq 22 172.16.16.0 0.0.0.15: allows TCP traffic from host 172.16.48.63 with a source port of 22 (SSH) to access network 172.16.16.0/28.<br />
 + 20 permit tcp host 172.16.48.63 172.16.16.0 0.0.0.15 eq telnet: allows TCP traffic from host 172.16.48.63 to access network 172.16.16.0/28 with a destination port of telnet.</p>
<p>Notice that the returned traffic from SVR-A to network 172.16.16.0/28 (resulting from telnet or SSH session) will have a source port of 23 (Telnet) or 22 (SSH)</p>
<p>In conclusion, the first statements of each ACL will allow devices to &#8220;SSH&#8221; to SVR-A. But they can&#8217;t telnet because of the implicit deny all at the end of the ACL.</p>
<p>In this question, the second statements of each ACL can be considered &#8220;wrong&#8221; if we intend to filter telnet or SSH traffic and they have no effect on the Telnet or SSH traffic.</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Refer to the exhibit. Which three variables (router, protocol port, and router ACL direction) apply to an extended ACL that will prevent student 01 from securely browsing the internet?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/accesslist/Apply_acess_list.jpg" alt="Apply_acess_list.jpg" width="500" height="335" /></p>
<p>A. OUT<br />
 B. Router 3<br />
 C. HTTPS<br />
 D. IN<br />
 E. Router 1</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B C D</p>
<p class="ccnaexplanation">Explanation</p>
<p>There are 3 routers we can place this access list: Router 1, Router Main and Router 3 but in theory, an extended access list should be placed close to the source -&gt; Router 3 is the best choice -&gt; B is correct.</p>
<p>The traffic we need to filter here is &#8220;securely browsing the internet&#8221; so it is HTTPS -&gt; C is correct.</p>
<p>Finally we should apply this access list to the inbound direction so that Router 3 will filter this traffic before making routing decision. It helps save processing resources on Router 3 -&gt; D is correct.</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Which two statements apply to dynamic access lists? (choose two)</p>
<p>A. they offer simpler management in large internetworks.<br />
 B. you can control logging messages.<br />
 C. they allow packets to be filtered based on upper-layer session information.<br />
 D. you can set a time-based security policy.<br />
 E. they provide a level of security against spoofing.<br />
 F. they are used to authenticate individual users.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A F</p>
<p class="ccnaexplanation">Explanation</p>
<p>Dynamic ACLs have the following security benefits over standard and static extended ACLs:<br />
+ Use of a challenge mechanism to authenticate individual users<br />
+ Simplified management in large internetworks<br />
+ In many cases, reduction of the amount of router processing that is required for ACLs<br />
+ Reduction of the opportunity for network break-ins by network hackers<br />
+ Creation of dynamic user access through a firewall, without compromising other configured security restrictions
</p>
<p>(Reference: CCNA Exploration 4 &#8211; Dynamic ACLs)</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Which command shows if an access list is assigned to an interface?</p>
<p>A. show ip interface [interface] access-lists<br />
 B. show ip access-lists interface [interface]<br />
 C. show ip interface [interface]<br />
 D. show ip access-lists [interface]</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>The output of &#8220;show ip interface [interface]&#8221; command is shown below:</p>
<p><img src="http://www.9tut.com/images/ccna/accesslist/show_ip_interface.jpg" alt="show_ip_interface.jpg" width="432" height="589" /></p>
<p>In the output we can see the access list 1 is applied to this interface on inbound direction.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>Which item represents the standard IP ACL?</p>
<p>A. access-list 50 deny 192.168.1.1 0.0.0.255<br />
 B. access-list 110 permit ip any any<br />
 C. access-list 2500 deny tcp any host 192.168.1.1 eq 22<br />
 D. access-list 101 deny tcp any host 192.168.1.1</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A</p>
<p class="ccnaexplanation">Explanation</p>
<p>The standard access lists are ranged from 1 to 99 and from 1300 to 1999 so only access list 50 is a standard access list.</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>Which statement about access lists that are applied to an interface is true?</p>
<p>A. you can apply only one access list on any interface<br />
 B. you can configure one access list, per direction, per layer 3 protocol<br />
 C. you can place as many access lists as you want on any interface<br />
 D. you can configure one access list, per direction, per layer 2 protocol</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B</p>
<p class="ccnaexplanation">Explanation</p>
<p>We can have only 1 access list per protocol, per direction and per interface. It means:</p>
<p>+ We<span style="text-decoration: underline;"> can not</span> have 2 inbound access lists on an interface<br />
 + We <span style="text-decoration: underline;">can</span> have 1 inbound and 1 outbound access list on an interface</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>A network engineer wants to allow a temporary entry for a remote user with a specific username and password so that the user can access the entire network over the internet. Which ACL can be used?</p>
<p>A. reflexive<br />
 B. extended<br />
 C. standard<br />
 D. dynamic</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>D</p>
<p class="ccnaexplanation">Explanation</p>
<p>We can use a dynamic access list to authenticate a remote user with a specific username and password. The authentication process is done by the router or a central access server such as a TACACS+ or RADIUS server. The configuration of dynamic ACL can be read here: <a href="http://www.cisco.com/en/US/tech/tk583/tk822/technologies_tech_note09186a0080094524.shtml" target="_blank">http://www.cisco.com/en/US/tech/tk583/tk822/technologies_tech_note09186a0080094524.shtml</a></p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>Which parameter standard access list takes into consideration for traffic filtering decisions?</p>
<p>A. Source MAC address <br />
 B. Destination IP address <br />
 C. Destination MAC address <br />
 D. Source IP address</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>In which solution is a router ACL used?</p>
<p>A. protecting a server from unauthorized access<br />
 B. controlling path selection, based on the route metric<br />
 C. reducing router CPU utilization<br />
 D. filtering packets that are passing through a router</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p><br class="spacer_" /></p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-%e2%80%93-access-list-questions-2/feed</wfw:commentRss>
		<slash:comments>126</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; WAN</title>
		<link>http://www.9tut.com/ccna-wan</link>
		<comments>http://www.9tut.com/ccna-wan#comments</comments>
		<pubDate>Fri, 15 Apr 2011 09:57:43 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=4</guid>
		<description><![CDATA[Here you will find answers to WAN Questions If you are not sure about Frame Relay, please read my Frame Relay tutorial. Question 1 The command frame-relay map ip 10.121.16.8 102 broadcast was entered on the router. Which of the following statements is true concerning this command? A: This command should be executed from the [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to WAN Questions</p>
<p><!--adsense--></p>
<p>If you are not sure about Frame Relay, please read my <a href="http://www.9tut.com/frame-relay-tutorial" target="_blank">Frame Relay tutorial</a>.</p>
<p><span class="ccnaquestionsnumber">Question 1</span></p>
<p>The <span class="t_tag">command</span> <strong>frame-relay map ip 10.121.16.8 102 <span class="t_tag">broadcast</span></strong> was entered on the <span class="t_tag">router</span>. Which of the following statements is true concerning this <span class="t_tag">command</span>?</p>
<p>A: This command should be executed from the global configuration mode.</p>
<p>B: The IP <span class="t_tag">address</span> 10.121.16.8 is the local router port used to forward data.</p>
<p>C: 102 is the remote <span class="t_tag">DLCI</span> that will receive the information.</p>
<p>D: This command is required for all Frame Relay configurations.</p>
<p>E: The broadcast option allows packets, such as <span class="t_tag">RIP</span> <span class="t_tag">update</span>s, to be forwarded across the PVC.</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Correct Answers:  E</p>
<p><span class="ccnaexplanation">Explanation:</span></p>
<p>The command <strong>frame-relay map ip 10.121.16.8 102 broadcast</strong> means to mapping the distal IP 10.121.16.8 102<strong> </strong>to the local DLCI 102. When the &#8220;broadcast&#8221; keyword is included, it turns Frame Relay network as a broadcast network, which can forward broadcasts</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Refer to the exhibit. Which statement describes DLCI 17?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/wanquestions/wandlciunderstand1.jpg" border="0" alt="wandlciunderstand1.jpg" width="309" height="193" /></p>
<p>A: DLCI 17 describes the ISDN circuit between R2 and R3.</p>
<p>B: DLCI 17 describes a PVC on R2. It cannot be used on R3 or R1.</p>
<p>C: DLCI 17 is the Layer 2 address used by R2 to describe a PVC to R3.</p>
<p>D: DLCI 17 describes the dial-up circuit from R2 and R3 to the service provider.</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Correct Answers:  C</p>
<p class="ccnaexplanation">Explanation:</p>
<p>DLCI stands for Data Link Connection Identifier. DLCI values are used on Frame Relay interfaces to distinguish between different virtual circuits. DLCIs have local significance because the identifier references the point between the local router and the local Frame Relay switch to which the DLCI is connected.</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>A default Frame Relay WAN is classified as what type of physical network?</p>
<p>A: point-to-point</p>
<p>B: broadcast multi-access</p>
<p>C: nonbroadcast multi-access</p>
<p>D: nonbroadcast multipoint</p>
<p>E: broadcast point-to-multipoint</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Correct Answer: C</p>
<p class="ccnaexplanation">Explanation:</p>
<p>Non-Broadcast Multi-Access (NBMA) networks are types such as Frame Relay, X.25, and Asynchronous Transfer Mode (ATM). These networks allow for multi-access, but have no broadcast ability like Ethernet</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Which of the following are key characteristics of PPP? (Choose three.)</p>
<p>A: can be used over analog circuits</p>
<p>B: maps Layer 2 to Layer 3 address</p>
<p>C: encapsulates several routed protocols</p>
<p>D: supports IP only</p>
<p>E: provides error correction</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Correct Answers: A C E</p>
<p class="ccnaexplanation">Explanation</p>
<p>Below is some more information about PPP:</p>
<p>PPP (Point-to-Point Protocol) allows authentication such as Password Authentication Protocol (PAP) and Challenge Handshake Authentication Protocol (CHAP) and multilink connections (allow several separate physical paths to appear to be one logical path at layer 3) and can be run over asynchronous and synchronous links.</p>
<p>PPP can work with numerous network layer protocols, including Internet Protocol (IP), Novell&#8217;s Internetwork Packet Exchange (IPX), NBF and AppleTalk.</p>
<p>PPP only supports error detection, not error correction so answer E should be understood as &#8220;provides error detection&#8221;. It is a mistake of this question.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Which three Layer 2 encapsulation types would be used on a WAN rather than a LAN? (Choose three)</p>
<p>A: HDLC</p>
<p>B: Ethernet</p>
<p>C: Token Ring</p>
<p>D: PPP</p>
<p>E: FDDI</p>
<p>F: Frame Relay</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Correct Answer: A D F</p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>Refer to the exhibit. What is the meaning of the term <strong>dynamic</strong> as displayed in the output of the show frame-relay map command shown?</p>
<p><img src="http://www.9tut.com/images/ccna/wanquestions/wandlciunderstand2.jpg" border="0" alt="wandlciunderstand2.jpg" width="385" height="55" /></p>
<p>A: The Serial0/0 interface is passing traffic.</p>
<p>B: The DLCI 100 was dynamically allocated by the router</p>
<p>C: The Serial0/0 interface acquired the IP address of 172.16.3.1 from a DHCP server</p>
<p>D: The DLCI 100 will be dynamically changed as required to adapt to changes in the Frame Relay cloud</p>
<p>E: The mapping between DLCI 100 and the end station IP address 172.16.3.1 was learned through Inverse ARP</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Correct Answer: E</p>
<p class="ccnaexplanation">Explanation</p>
<p>The term dynamic indicates that the DLCI number and the remote router IP address 172.16.3.1 are learned via the Inverse ARP process.</p>
<p>Inverse ARP is a technique by which dynamic mappings are constructed in a network, allowing a device such as a router to locate the logical network address and associate it with a permanent virtual circuit (PVC).</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>Which of the following describes the roles of devices in a WAN? (Choose three.)</p>
<p>A: A CSU/DSU terminates a digital local loop</p>
<p>B: A modem terminates a digital local loop</p>
<p>C: A CSU/DSU terminates an analog local loop</p>
<p>D: A modem terminates an analog local loop</p>
<p>E: A router is commonly considered a DTE device</p>
<p>F: A router is commonly considered a DCE device</p>
<p><span class="ccnacorrectanswers">Correct Answers: A D E</span></p>
<p class="ccnaexplanation">Explanation</p>
<p>The idea behind a WAN is to be able to connect two DTE networks together through a DCE network. The network’s DCE device (includes CSU/DSU) provides clocking to the DTE-connected interface (the router’s serial interface).</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/wanquestions/wandlciunderstand4.jpg" border="0" alt="wan_dlci_understand" width="423" height="210" /></p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>How should a router that is being used in a Frame Relay network be configured to avoid split horizon issues from preventing routing updates?</p>
<p>A: Configure a separate sub-interface for each PVC with a unique DLCI and subnet assigned to the sub-interface</p>
<p>B: Configure each Frame Relay circuit as a point-to-point line to support multicast and broadcast traffic</p>
<p>C: Configure many sub-interfaces on the same subnet</p>
<p>D: Configure a single sub-interface to establish multiple PVC connections to multiple remote router interfaces</p>
<p><span class="ccnacorrectanswers">Correct Answer: A</span></p>
<p class="ccnaexplanation">Explanation</p>
<p>Look at the figure below:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/wanquestions/wandlciunderstand5.jpg" border="0" alt="wandlciunderstand5" width="376" height="222" /></p>
<p>In the figure, router R1 has two point-to-point subinterfaces. The s0.1 subinterface connects to router R3 and the s0.2 subinterface connects to router R2. Each subinterface is on a different subnet.</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>What can a network administrator utilize by using PPP Layer 2 encapsulation? (Choose three.)</p>
<p>A: VLAN support</p>
<p>B: compression</p>
<p>C: authentication</p>
<p>D: sliding windows</p>
<p>E: multilink support</p>
<p>F: quality of service</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Correct Answers: B C E</p>
<p class="ccnaexplanation">Explanation</p>
<p>Same as question 4</p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>The Frame Relay network in the diagram is not functioning properly. What is the cause of the problem?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/wanquestions/wandlciunderstand3.jpg" border="0" alt="wandlciunderstand3" width="386" height="292" /></p>
<p>A: The Gallant router has the wrong LMI type configured</p>
<p>B: Inverse ARP is providing the wrong PVC information to the Gallant router</p>
<p>C: The S3 interface of the Steele router has been configured with the frame-relay encapsulation ietf command</p>
<p>D: The frame-relay map statement in the Attalla router for the PVC to Steele is not correct</p>
<p>E: The IP address on the serial interface of the Attalla router is configured incorrectly</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Correct Answer: D</p>
<p class="ccnaexplanation">Explanation</p>
<p>At Attalla router, we find a deleted status but the next map statement indicates an active status, which if for Gallant. Therefore we can deduce the map statement for the PVC from Attalla to Steele is incorrect. Incorrect DLCI assignments that are configured normally shown up as &#8220;deleted&#8221; in the frame relay maps.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-wan/feed</wfw:commentRss>
		<slash:comments>299</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; WAN 2</title>
		<link>http://www.9tut.com/ccna-wan-2</link>
		<comments>http://www.9tut.com/ccna-wan-2#comments</comments>
		<pubDate>Thu, 14 Apr 2011 04:09:09 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=801</guid>
		<description><![CDATA[Here you will find answers to WAN Questions &#8211; Part 2 If you are not sure about Frame Relay, please read my Frame Relay tutorial. Question 1 Users have been complaining that their Frame Relay connection to the corporate site is very slow. The network administrator suspects that the link is overloaded. Based on the [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to WAN Questions &#8211; Part 2</p>
<p><!--adsense--></p>
<p>If you are not sure about Frame Relay, please read my <a href="http://www.9tut.com/frame-relay-tutorial" target="_blank">Frame Relay tutorial</a>.</p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Users have been complaining that their Frame Relay connection to the corporate site is very slow. The network administrator suspects that the link is overloaded. Based on the partial output of the <strong>Router#show frame relay pvc</strong> command shown in the graphic, which output value indicates to the local router that traffic sent to the corporate site is experiencing congestion?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/wanquestions/BECN.jpg" alt="BECN.jpg" width="375" height="261" /></p>
<p>A. DLCI=100<br />
 B. last time PVC status changed 00:25:40<br />
 C. in BECN packets 192<br />
 D. in FECN packets 147<br />
 E. in DF packets 0</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>First we should grasp the concept of BECN &amp; FECN through an example:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/wanquestions/BECN_FECN.jpg" alt="BECN_FECN.jpg" width="450" height="145" /></p>
<p>Suppose Router A wants to send data to Router B through a Frame Relay network. If the network is congested, Switch 1 (a DCE device) will set the FECN bit value of that frame to 1, indicating that frame experienced congestion in the path from source to destination. This frame is forwarded to Switch 2 and to Router B (with the FECN bit = 1).</p>
<p>Switch 1 knows that the network is congesting so it also sends frames back to Router A with BECN bit set to 1 to inform that path through the network is congested.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/wanquestions/BECN_FECN_2.jpg" alt="BECN_FECN_2.jpg" width="450" height="145" /></p>
<p>In general, BECN is used on frames traveling away from the congested area to warn source devices that congestion has occurred on that path while FECN is used to alert receiving devices if the frame experiences congestion.</p>
<p>BECN also informs the transmitting devices to slow down the traffic a bit until the network returns to normal state.</p>
<p>The question asks &#8220;which output value indicates to the local router that traffic sent to  the corporate site is experiencing congestion&#8221; which means it asks about the returned parameter which indicates congestion -&gt; BECN.</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>When troubleshooting a Frame Relay connection, what is the first step when performing a loopback test?</p>
<p>A. Set the encapsulation of the interface to HDLC.<br />
 B. Place the CSU/DSU in local-loop mode.<br />
 C. Enable local-loop mode on the DCE Frame Relay router.<br />
 D. Verify that the encapsulation is set to Frame Relay.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaexplanation">Explanation</p>
<p>The first thing when performing a loopback test on a Frame Relay connection is to reconfigure the encapsulation of the interface to HDLC protocol instead of Frame Relay protocol. The main reason is Frame Relay requires a pair of DCE/DTE which cannot be used in a loopback test.</p>
<p>For more information about steps of trouble shooting Frame Relay, please read: <a href="http://www.cisco.com/en/US/tech/tk713/tk237/technologies_tech_note09186a008014f8a7.shtml#topic20" target="_blank">http://www.cisco.com/en/US/tech/tk713/tk237/technologies_tech_note09186a008014f8a7.shtml#topic20</a></p>
<p>For your information, below is a paragraph quoted from the above link:</p>
<p><strong>&#8220;Serial0 is down, line protocol is down&#8221;</strong></p>
<p>This output means you have a problem with the cable, channel service unit/data service unit (CSU/DSU), or the serial line. You need to troubleshoot the problem with a loopback test. To do a loopback test, follow the steps below:</p>
<p><strong>1. Set the serial line encapsulation to HDLC and keepalive to 10 seconds. To do so, issue the commands encapsulation hdlc and keepalive 10 under the serial interface.</strong><br />
 2. Place the CSU/DSU or modem in local loop mode. If the line protocol comes up when the CSU, DSU or modem is in local loopback mode (indicated by a &#8220;line protocol is up (looped)&#8221; message), it suggests that the problem is occurring beyond the local CSU/DSU. If the status line does not change states, there is possibly a problem in the router, connecting cable, CSU/DSU or modem. In most cases, the problem is with the CSU/DSU or modem.<br />
 3. Ping your own IP address with the CSU/DSU or modem looped. There should not be any misses. An extended ping of 0&#215;0000 is helpful in resolving line problems since a T1 or E1 derives clock from data and requires a transition every 8 bits. B8ZS ensures that. A heavy zero data pattern helps to determine if the transitions are appropriately forced on the trunk. A heavy ones pattern is used to appropriately simulate a high zero load in case there is a pair of data inverters in the path. The alternating pattern (0&#215;5555) represents a &#8220;typical&#8221; data pattern. If your pings fail or if you get cyclic redundancy check (CRC) errors, a bit error rate tester (BERT) with an appropriate analyzer from the telco is needed.<br />
 4. When you are finished testing, make sure you return the encapsulation to Frame Relay.</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>What occurs on a Frame Relay network when the CIR is exceeded?</p>
<p>A. All TCP traffic is marked discard eligible.<br />
 B. All UDP traffic is marked discard eligible and a BECN is sent.<br />
 C. All TCP traffic is marked discard eligible and a BECN is sent.<br />
 D. All traffic exceeding the CIR is marked discard eligible.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation</p>
<p>Committed information rate (CIR): The minimum guaranteed data transfer rate agreed to by the Frame Relay switch. Frames that are sent in excess of the CIR are marked as discard eligible (DE) which means they can be dropped if the congestion occurs within the Frame Relay network.</p>
<p>Note: In the Frame Relay frame format, there is a bit called Discard eligible (DE) bit that is used to identify frames that are first to be dropped when the CIR is exceeded.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>What are two characteristics of Frame Relay point-to-point subinterfaces? (Choose two)</p>
<p>A. They create split-horizon issues.<br />
 B. They require a unique subnet within a routing domain.<br />
 C. They emulate leased lines.<br />
 D. They are ideal for full-mesh topologies.<br />
 E. They require the use of NBMA options when using OSPF.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B C</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>The output of the show frame-relay pvc command shows ”PVC STATUS=INACTIVE”. What does this mean?</p>
<p>A. The PVC is configured correctly and is operating normally,but no data packets have been detected for more than five minutes.<br />
 B. The PVC is configured correctly, is operating normally and is no longer actively seeking the address the remote route,<br />
 C. The PVC is configured correctly, is operating normally and is waiting for interesting to trigger a call to the remote router.<br />
 D. The PVC is configured correctly on the local switch, but there is a problem on the remote end of the PVC.<br />
 E. The PVC is not configured on the switch.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation</p>
<p>The PVC STATUS displays the status of the PVC. The DCE device creates and sends the report to the DTE devices. There are 4 statuses:</p>
<p>+ ACTIVE: the PVC is operational and can transmit data<br />
 + INACTIVE: the connection from the local router to the switch is working, but the connection to the remote router is not available<br />
 + DELETED: the PVC is not present and no LMI information is being received from the Frame Relay switch<br />
 + STATIC: the Local Management Interface (LMI) mechanism on the interface is disabled (by using the &#8220;no keepalive&#8221; command). This status is rarely seen so it is ignored in some books.</p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>Which encapsulation type is a Frame Relay encapsulation type that is supported by Cisco routers?</p>
<p>A. Q933-A Annex A<br />
 B. IETF<br />
 C. ANSI Annex D<br />
 D. HDLC</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B</p>
<p class="ccnaexplanation">Explanation</p>
<p>Cisco supports two Frame Relay encapsulation types: the <strong>Cisco encapsulation</strong> and the <strong>IETF Frame Relay encapsulation</strong>, which is in conformance with RFC 1490 and RFC 2427. The former is often used to connect two Cisco routers while the latter is used to connect a Cisco router to a non-Cisco router. You can test with your Cisco router when typing the command Router(config-if)#<strong>encapsulation frame-relay ? </strong>on a WAN link. Below is the output of this command (notice Cisco is the default encapsulation so it is not listed here, just press Enter to use it).</p>
<p><img src="http://www.9tut.com/images/ccna/wanquestions/Frame_Relay_encapsulation_type.jpg" alt="Frame_Relay_encapsulation_type.jpg" width="335" height="47" /></p>
<p>Note: Three LMI options are supported by Cisco routers are ansi, Cisco, and Q933a. They represent the ANSI Annex D, Cisco, and ITU Q933-A (Annex A) LMI types, respectively.</p>
<p>HDLC is a WAN protocol same as Frame-Relay and PPP so it is not a Frame Relay encapsulation type.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-wan-2/feed</wfw:commentRss>
		<slash:comments>83</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; IP Address Questions</title>
		<link>http://www.9tut.com/ccna-ip-address-questions</link>
		<comments>http://www.9tut.com/ccna-ip-address-questions#comments</comments>
		<pubDate>Wed, 13 Apr 2011 05:22:32 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=875</guid>
		<description><![CDATA[Here you will find answers to IP Address Questions Question 1 Which IP address can be assigned to an Internet interface? A. 10.180.48.224 B. 9.255.255.10 C. 192.168.20.223 D. 172.16.200.18 Answer: B Explanation The IP address which can be assigned to an Internet interface is a public IP address. Private IP address are found in the [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to IP Address Questions</p>
<p><!--adsense--></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Which IP address can be assigned to an Internet interface?</p>
<p>A. 10.180.48.224  <br />
 B. 9.255.255.10  <br />
 C. 192.168.20.223  <br />
 D. 172.16.200.18</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B</p>
<p class="ccnaexplanation">Explanation</p>
<p>The IP address which can be assigned to an Internet interface is a public IP address. Private IP address are found in the following ranges:</p>
<p>* From 10.0.0.0 to 10.255.255.255<br />
 * From 172.16.0.0 to 172.31.255.255<br />
 * From 192.168.0.0 to 192.168.255.255</p>
<p>Also some special IP addresses (like the local loopback address 127.0.0.1, multicast addresses&#8230;) can&#8217;t be assigned to an Internet interface.</p>
<p>In this question only answer B doesn&#8217;t belong to the range of private IP address -> B is the correct answer.</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>What will happen if a private IP address is assigned to a public  interface connected to an ISP?</p>
<p>A. Addresses in a private range will be not routed on the Internet  backbone.<br />
 B. Only the ISP router will have the capability to access the public  network.<br />
 C. The NAT process will be used to translate this address in a valid IP  address.<br />
 D. Several automated methods will be necessary on the private network.<br />
 E. A conflict of IP addresses happens, because other public routers can  use the same range.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>When is it necessary to use a public IP address on a routing interface?</p>
<p>A. Connect a router on a local network.<br />
 B. Connect a router to another router.<br />
 C. Allow distribution of routes between networks.<br />
 D. Translate a private IP address.<br />
 E. Connect a network to the Internet.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> E</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>When a DHCP server is configured, which two IP addresses should never be assignable to hosts? (Choose two)</p>
<p>A. network or subnetwork IP address <br />
 B. broadcast address on the network<br />
 C. IP address leased to the LAN<br />
 D. IP address used by the interfaces<br />
 E. manually assigned address to the clients <br />
 F. designated IP address to the DHCP server</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A B</p>
<p class="ccnaexplanation">Explanation</p>
<p>Network or subnetwork IP address (for example 11.0.0.0/8 or 13.1.0.0/16) and broadcast address (for example 23.2.1.255/24) should never be assignable to hosts. When try to assign these addresses to hosts, you will receive an error message saying that they can&#8217;t be assignable.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>The network administrator has asked you to check the status of the workstation&#8217;s IP stack by pinging the loopback address. Which address would you ping to perform this task?</p>
<p>A. 10.1.1.1  <br />
 B. 127.0.0.1  <br />
 C. 192.168.0.1  <br />
 D. 239.1.1.1</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B</p>
<p class="ccnaexplanation">Explanation</p>
<p>The IP address of 127.0.0.1 is the well-known loopback IP address on a computer. When try pinging this address, you are testing if the TCP/IP stack is working or not.</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>Which command is used to see the path taken by packets across an IP network?</p>
<p>A. show ip route<br />
 B. show route<br />
 C. traceroute<br />
 D. trace ip route</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>C</p>
<p class="ccnaexplanation">Explanation</p>
<p>Notice that &#8220;traceroute&#8221; is the command used on a Cisco router while the &#8220;tracert&#8221; is the command used in MSDOS of Windows. They have the same purpose of finding the path that packets use to reach a destination network.</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>Refer to the exhibit. Which value will be configured for Default Gateway of the Local Area Connection?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/IP_Address/IP_default_gateway.jpg" alt="IP_default_gateway.jpg" width="417" height="464" /></p>
<p>A. 10.0.0.0<br />
 B. 10.0.0.254<br />
 C. 192.223.129.0<br />
 D. 192.223.129.254</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>The default gateway IP address must be on the same network with the configured host&#8217;s IP address and not is the network or broadcast address -> B is correct.</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>Which of the following describe private IP addresses? (Choose two)</p>
<p>A. addresses chosen by a company to communicate with the Internet <br />
 B. addresses that cannot be routed through the public Internet<br />
 C. addresses that can be routed through the public Internet<br />
 D. a scheme to conserve public addresses<br />
 E. addresses licensed to enterprises or ISPs by an Internet registry organization</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B D</p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>Refer to the exhibit. A network technician is asked to design a small network with redundancy. The exhibit represents this design, with all hosts configured in the same VLAN. What conclusions can be made about this design?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/IP_Address/IP_Address_wrong_assignment.jpg" alt="IP_Address_wrong_assignment.jpg" width="503" height="259" /></p>
<p>A. The design will function as intended<br />
 B. Spanning-tree will need to be used.<br />
 C. The router will not accept the addressing scheme.<br />
 D. The connection between switches should be a trunk.<br />
 E. The router interfaces must be encapsulated with the 802.1Q protocol.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>Each interface on a router must be in a different network. If two interfaces are in the same network, the router will not accept it and show error when the administrator assigns it.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-ip-address-questions/feed</wfw:commentRss>
		<slash:comments>123</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; IP Routing Questions</title>
		<link>http://www.9tut.com/ccna-ip-routing-questions</link>
		<comments>http://www.9tut.com/ccna-ip-routing-questions#comments</comments>
		<pubDate>Thu, 07 Apr 2011 11:38:55 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=963</guid>
		<description><![CDATA[Here you will find answers to IP Routing Questions Question 1 Refer to the exhibit. Assume that the routing protocol referenced in each choice below is configured with its default settings and the given routing protocol is running on all the routers. Which two conditional statements accurately state the path that will be chosen between [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to IP Routing Questions</p>
<p><!--adsense--></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Refer to the exhibit. Assume that the routing protocol referenced in each choice below is configured with its default settings and the given routing protocol is running on all the routers. Which two conditional statements accurately state the path that will be chosen between networks 10.1.0.0 and 10.3.2.0 for the routing protocol mentioned? (Choose two)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/IP_Routing/multiple_routing_protocols.jpg" alt="multiple_routing_protocols.jpg" width="449" height="210" /></p>
<p>A. If OSPF is the routing protocol, the path will be from R1 to R3 to R4 to R5.<br />
 B. If OSPF is the routing protocol, the path will be from R1 to R2 to R5.<br />
 C. If OSPF is the routing protocol, the path will be from R1 to R5.<br />
 D. If RIPv2 is the routing protocol, the path will be from R1 to R3 to R4 to R5.<br />
 E. If RIPv2 is the routing protocol, the path will be from R1 to R5.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A E</p>
<p class="ccnaexplanation">Explanation</p>
<p>First we need to know the speed of these links:</p>
<p>+ T1: 1.544 Mbps<br />
 + 10BaseT: 10 Mbps<br />
 + 100BaseT (often referred to as FastEthernet): 100Mbps</p>
<p>OSPF chooses the best path via bandwidth while RIP only uses hop count (the sum of routers to reach the destination).</p>
<p>Therefore if OSPF is used, it will choose the path R1 -&gt; R3 -&gt; R4 -&gt; R5 because these links have much higher speed than other paths -&gt; A is correct.</p>
<p>But if RIP is used it only counts the number of routers to reach the destination (the less the better) so it will choose path R1 -&gt; R5 (hop count: 1) -&gt; E is correct.</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Refer to the exhibit. Which three statements are true about how router JAX will choose a path to the 10.1.3.0/24 network when different routing protocols are configured? (Choose three)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/IP_Routing/EIGRP_OSPF_RIP.jpg" alt="EIGRP_OSPF_RIP.jpg" width="281" height="336" /></p>
<p>A. By default, if RIPv2 is the routing protocol, only the path JAX-ORL will be installed into the routing table.<br />
 B. The equal cost paths JAX-CHI-ORL and JAX- NY-ORL will be installed in the routing table if RIPv2 is the routing protocol.<br />
 C. When EIGRP is the routing protocol, only the path JAX-ORL will be installed in the routing table by default.<br />
 D. When EIGRP is the routing protocol, the equal cost paths JAX-CHI-ORL, and JAX-NY-ORL will be installed in the routing table by default.<br />
 E. With EIGRP and OSPF both running on the network with their default configurations, the EIGRP paths will be installed in the routing table. <br />
 F. The OSPF paths will be installed in the routing table, if EIGRP and OSPF are both running on the network with their default configurations.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A D E</p>
<p class="ccnaexplanation">Explanation</p>
<p>First we need to know the speed of these links:</p>
<p>+ T1: 1.544 Mbps<br />
 + T3: 45 Mbps (each T3 line consists of 28 T1 lines)</p>
<p>RIP chooses the path with minimum hop count to reach the destination so it will choose JAX-ORL path -&gt; A is correct.</p>
<p>EIGRP, by default, calculates metric via bandwidth &amp; delay (metric = bandwidth + delay). Delay parameter can be ignored in this case so EIGRP will choose the path via metric. Both the path JAX-CHI-ORL and JAX- NY-ORL have the same metric (each includes two T3 lines) so EIGRP will use these paths -&gt; D is correct.</p>
<p>EIGRP has lower Administrative Distance than OSPF (EIGRP: 90 &lt; OSPF: 110) which is better -&gt; EIGRP will be preferred to OSPF -&gt; E is correct.</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Refer to the exhibit. The network administrator must establish a route by which London workstations can forward traffic to the Manchester workstations. What is the simplest way to accomplish this?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/IP_Routing/simple_routing.jpg" alt="simple_routing.jpg" width="660" height="387" /></p>
<p>A. Configure a dynamic routing protocol on London to advertise all routes to Manchester.<br />
 B. Configure a dynamic routing protocol on London to advertise summarized routes to Manchester.<br />
 C. Configure a dynamic routing protocol on Manchester to advertise a default route to the London router.<br />
 D. Configure a static default route on London with a next hop of 10.1.1.1.<br />
 E. Configure a static route on London to direct all traffic destined for 172.16.0.0/22 to 10.1.1.2.<br />
 F. Configure Manchester to advertise a static default route to London.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> E</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Which command is used to configure a default route?</p>
<p>A. ip route 172.16.1.0 255.255.255.0 0.0.0.0<br />
 B. ip route 172.16.1.0 255.255.255.0 172.16.2.1<br />
 C. ip route 0.0.0.0 255.255.255.0 172.16.2.1<br />
 D. ip route 0.0.0.0 0.0.0.0 172.16.2.1</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation</p>
<p>The simple syntax of static route:</p>
<p><strong>ip route destination-network-address subnet-mask {next-hop-IP-address | exit-interface}<br />
 </strong>+<strong> destination-network-address: </strong>destination network address of the remote network<strong><br />
 </strong>+<strong> subnet mask: </strong>subnet mask of the destination network<strong><br />
 </strong>+<strong> next-hop-IP-address: </strong>the IP address of the receiving interface on the next-hop router<strong><br />
 </strong>+<strong> exit-interface: </strong>the local interface of this router where the packets will go out<strong> </strong></p>
<p>In the statement &#8220;ip route 0.0.0.0 0.0.0.0 172.16.2.1&#8243;:</p>
<p>+ 0.0.0.0 0.0.0.0: refer to any network<br />
 + 172.16.2.1: the next-hop-IP-address</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>If IP routing is enabled, which two commands set the gateway of last resort to the default gateway? (Choose two)</p>
<p>A. ip default-gateway 0.0.0.0<br />
 B. ip route 172.16.2.1 0.0.0.0 0.0.0.0<br />
 C. ip default-network 0.0.0.0<br />
 D. ip default-route 0.0.0.0 0.0.0.0 172.16.2.1<br />
 E. ip route 0.0.0.0 0.0.0.0 172.16.2.1</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>C E</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>What must be set correctly when configuring a serial interface so that higher-level protocols calculate the best route?</p>
<p>A. bandwidth<br />
 B. delay<br />
 C. load<br />
 D. reliability</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A</p>
<p><span class="ccnaexplanation">Explanation</span></p>
<p>Higher-level protocols (OSPF, EIGRP) calculate the best route mainly based on bandwidth so it must be set correctly -&gt; A is correct.</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>Which destination addresses will be used by Host A to send data to Host C? (Choose two)</p>
<p style="text-align: center;"><img src="../images/ccna/IP_Routing/destination_addresses.jpg" alt="destination_addresses.jpg" width="283" height="224" /></p>
<p>A. the IP address of Switch 1<br />
 B. the MAC address of Switch 1<br />
 C. the IP address of Host C<br />
 D. the MAC address of Host C<br />
 E. the IP address of the router&#8217;s E0 interface<br />
 F. the MAC address of the router&#8217;s E0 interface</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C F</p>
<p class="ccnaexplanation">Explanation</p>
<p>While transferring data through many different networks, the source and destination IP addresses are not changed. Only the source and destination MAC addresses are changed. So in this case Host A will use the IP address of Host C and the MAC address of E0 interface to send data. When the router receives this data, it replaces the source MAC address with it own E1 interface&#8217;s MAC address and replaces the destination MAC address with Host C&#8217;s MAC address before sending to Host C -&gt; C and F are correct.</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>Which routing protocols can be used within the enterprise network shown in the diagram? (Choose three)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/IP_Routing/routing_protocols.jpg" alt="routing_protocols.jpg" width="495" height="195" /></p>
<p>A.  RIPv1<br />
 B.  RIP v2<br />
 C.  IGRP<br />
 D.  OSPF<br />
 E.  BGP<br />
 F.  EIGRP</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B D F</p>
<p class="ccnaexplanation">Explanation</p>
<p>RIPv1 &amp; IGRP can not be used in this network because they do not support Variable Length Subnet Masking (VLSM) -&gt; A and C are not correct.</p>
<p>BGP is a complicated routing protocol between different network (usually very big) or different Autonomous System. For example BGP can be used between two Internet Service Providers (ISP). The above network is very small in an enterprise so BGP is not a suitable choice -&gt; E is not correct.</p>
<p>RIPv2 supports VLSM and can be used in networks which have less than 15 routers -&gt; B is correct.</p>
<p>OSPF and EIGRP can be always used in most of enterprise networks -&gt; D F are correct.</p>
<p>(But notice that EIGRP is a Cisco-proprietary routing protocol so it can be used in Cisco routers only)</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>Which routing protocols will support the following IP addressing scheme? (Choose three)</p>
<p>Network 1 &#8211; 192.168.10.0 /26<br />
 Network 2 &#8211; 192.168.10.64 /27<br />
 Network 3 &#8211; 192.168.10.96 /27<br />
 Network 4 &#8211; 192.168.10.128 /30<br />
 Network 5 &#8211; 192.168.10.132 /30</p>
<p>A. RIP version 1<br />
 B. RIP version 2<br />
 C. IGRP<br />
 D. EIGRP<br />
 E. OSPF</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B D E</p>
<p class="ccnaexplanation">Explanation</p>
<p>RIPv2, OSPF and EIGRP are classless routing protocol which support VLSM.</p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>Refer to the graphic. A static route to the 10.5.6.0/24 network is to be configured on the HFD router. Which commands will accomplish this? (Choose two)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/IP_Routing/static_route.jpg" alt="static_route.jpg" width="363" height="192" /></p>
<p>A. HFD (config) #ip route 10.5.6.0 0.0.0.255 fa0/0<br />
 B. HFD(config)# ip route 10.5.6.0 0.0.0.255 10.5.4.6<br />
 C. HFD(config)# ip route 10.5.6.0 255.255.255.0 fa0/0<br />
 D. HFD(config)# ip route 10.5.6.0 255.255.255.0 10.5.4.6<br />
 E. HFD(config)# ip route 10.5.4.6 0.0.0.255 10.5.6.0<br />
 F. HFD(config)# ip route 10.5.4.6 255.255.255.0 10.5.6.0</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C D</p>
<p class="ccnaexplanation">Explanation</p>
<p>The simple syntax of static route:</p>
<p><strong>ip route destination-network-address subnet-mask {next-hop-IP-address | exit-interface}<br />
 </strong>+<strong> destination-network-address: </strong>destination network address of the remote network<strong><br />
 </strong>+<strong> subnet mask: </strong>subnet mask of the destination network<strong><br />
 </strong>+<strong> next-hop-IP-address: </strong>the IP address of the receiving interface on the next-hop router<strong><br />
 </strong>+<strong> exit-interface: </strong>the local interface of this router where the packets will go out<strong> </strong></p>
<p>In the statement &#8220;ip route 10.5.6.0 255.255.255.0 fa0/0&#8243;:</p>
<p>+ 10.5.6.0 255.255.255.0: the destination network<br />
 +fa0/0: the exit-interface</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-ip-routing-questions/feed</wfw:commentRss>
		<slash:comments>92</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; IP Routing Questions 2</title>
		<link>http://www.9tut.com/ccna-ip-routing-questions-2</link>
		<comments>http://www.9tut.com/ccna-ip-routing-questions-2#comments</comments>
		<pubDate>Wed, 06 Apr 2011 11:41:04 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=965</guid>
		<description><![CDATA[Here you will find answers to IP Routing Questions &#8211; Part 2 Question 1 Refer to the exhibit. Host A is to send data to Host B. How will Router1 handle the data frame received from Host A? (Choose three) A. Router1 will strip off the source MAC address and replace it with the MAC [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to IP Routing Questions &#8211; Part 2</p>
<p><!--adsense--></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Refer to the exhibit. Host A is to send data to Host B. How will  Router1 handle the data frame received from Host A? (Choose three)</p>
<p style="text-align: center;"><img src="../images/ccna/IP_Routing/send_data_frame.jpg" alt="send_data_frame.jpg" width="396" height="314" /></p>
<p>A. Router1 will strip off the source MAC address and replace it with the MAC address on the forwarding FastEthernet interface.<br />
 B. Router1 will strip off the source IP address and replace it with the IP address on the forwarding FastEthernet interface.<br />
 C. Router1 will strip off the destination MAC address and replace it with the MAC address of Host B.<br />
 D. Router1 will strip off the destination IP address and replace it with the IP address of Host B.<br />
 E. Router1 will forward the data frame out interface FastEthernet0/1.<br />
 F. Router1 will forward the data frame out interface FastEthernet0/2.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A C F</p>
<p class="ccnaexplanation">Explanation</p>
<p>While transferring data through many different networks, the source and  destination IP addresses are not changed. Only the source and  destination MAC addresses are changed. So in this case, Host A will use  the IP address of Host B and the MAC address of Fa0/0 interface to send  data. When the router receives this data, it replaces the source MAC  address with it own Fa0/2 interface&#8217;s MAC address and replaces the  destination MAC address with Host B&#8217;s MAC address before sending to Host B  -&gt; A, C and F are correct.</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>What is an appropriate use of a default route?</p>
<p>A. to provide routing to a local web server<br />
 B. to provide routing from an ISP to a stub network<br />
 C. to provide routing that will override the configured dynamic routing protocol<br />
 D. to provide routing to a destination that is not specified in the routing table and which is outside the local network</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>D</p>
<p class="ccnaexplanation">Explanation</p>
<p>Default routes are used to direct packets addressed to networks not explicitly listed in the routing table. An example of default route is:</p>
<p><strong>Router(config)#ip route 0.0.0.0 0.0.0.0 192.168.1.1</strong></p>
<p>(Notice that the network address of default route is 0.0.0.0 0.0.0.0)</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>A medium-sized company has a Class C IP address. It has two Cisco routers and one non-Cisco router.<br />
 All three routers are using RIP version 1.<br />
 The company network is using the block of 198.133.219.0/24.<br />
 The company has decided it would be a good idea to split the network into three smaller subnets and create the option of conserving addresses with VLSM.</p>
<p>What is the best course of action if the company wants to have 40 hosts in each of the three subnets?</p>
<p>A. Convert all the routers to EIGRP and use 198.133.219.32/27, 198.133.219.64/27, and 198.133.219.92/27 as the new subnetworks.<br />
 B. Maintain the use of RIP version 1 and use 198.133.219.32/27, 198.133.219.64/27, and 198.133.219.92/27 as the new subnetworks.<br />
 C. Convert all the routers to EIGRP and use 198.133.219.64/26, 198.133.219.128/26, and 198.133.219.192/26 as the new subnetworks.<br />
 D. Convert all the routers to RIP version 2 and use 198.133.219.64/26, 198.133.219.128/26, and 198.133.219.192/26 as the new subnetworks.<br />
 E. Convert all the routers to OSPF and use 198.133.219.16/28, 198.133.219.32/28, and 198.133.219.48/28 as the new subnetworks.<br />
 F. Convert all the routers to static routes and use 198.133.219.16/28, 198.133.219.32/28, and 198.133.219.48/28 as the new subnetworks.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation</p>
<p>RIP version 1 does not support VLSM so we have to convert into RIPv2, OSPF or EIGRP -&gt; B is not correct.</p>
<p>But EIGRP is a Cisco-proprietary routing protocol so it can not be used in a non-Cisco router -&gt; A and C are not correct.</p>
<p>To support 40 hosts per subnet we need a subnet mask of /26 or lower (which leaves 6 bits 0 and 2<sup>6</sup> = 64 &gt; 40 hosts). Therefore a subnet mask of /28 is not suitable in this case -&gt; E &amp; F are not correct.</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Refer to the exhibit. Which command will created a default route on RouterB to reach all networks beyond RouterA?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/IP_Routing/default_route.jpg" alt="default_route.jpg" width="430" height="220" /></p>
<p>A. ip route 0.0.0.0 0.0.0.0 192.168.2.2<br />
 B. ip route 192.168.1.0 255.255.255.0 192.168.2.1<br />
 C. ip route 192.168.1.0 255.255.255.0 s0/0/0<br />
 D. ip route 10:0.0.0 255.255.255.0 s0/0/0<br />
 E. ip route 0.0.0.0 255.255.255.0 192.168.2.2</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A</p>
<p class="ccnaexplanation">Explanation</p>
<p>Notice that in the static (or default) route we need to specify the exit-interface (local on that router) or the next-hop IP address (of a directly connected router) -&gt; A is correct.</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Refer to the exhibit. S0/0 on R1 is configured as a multipoint interface to communicate with R2 and R3 in the hub-and-spoke Frame Relay topology. While testing this configuration, a technician notes that pings are successfully from hosts on the 172.16.1.0/24 network to hosts on both the 172.16.2.0/25 and 172.16.0.2.128/25 networks. However, pings between hosts on the 172.16.2.0/25 and 172.16.2.128/25 network are not successful. What could explain this connectivity problem?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/IP_Routing/hub-and-spoke_problem.jpg" alt="hub-and-spoke_problem.jpg" width="477" height="207" /></p>
<p>A. The ip subnet-zero command has been issued on the R1 router.<br />
 B. The RIPv2 dynamic routing protocol cannot be used across a Frame Relay network.<br />
 C. Split horizon is preventing R2 from learning about the R3 networks and R3 from learning about R2 networks.<br />
 D. The 172.16.2.0/25 and 172.16.2.128/25 networks are overlapping networks that can be seen by R1, but not between R2 and R3.<br />
 E. The 172.16.3.0/29 network used on the Frame Relay links is creating a discontiguous network between the R2 and R3 router subnetworks.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>The split horizon rule states &#8220;a router never sends information about a route back in same direction which is original information came&#8221;. In this case it means whenR3 sends update to R1 via s0/0, R1 does not send any update for same network out of interface s0/0. To solve this problem we can configure sub-interfaces on s0/0 or explicitly allow the update to be sent back on the same interface.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>S0/0 on R1 is configured as a multipoint interface to communicate with R2 and R3 in the hub-and-spoke Frame Relay topology shown in the exhibit. Originally, static routes were configured between these routers to successfully route traffic between the attached networks. What will need to be done in order to use RIPv2 in place of the static routes?</p>
<p style="text-align: center;"><img src="../images/ccna/IP_Routing/hub-and-spoke_problem.jpg" alt="hub-and-spoke_problem.jpg" width="477" height="207" /></p>
<p>A. Configure the no ip subnet-zero command on R1, R2, and R3.<br />
 B. Dynamic routing protocols such as RIPv2 cannot be used across Frame Relay networks.<br />
 C. Configure the S0/0 interface on R1 as two subinterfaces and configure point-to-point links to R2 and R3.<br />
 D. Change the 172.16.2.0/25 and 172.16.2.128/25 subnetworks so that at least two bits are borrowed from the last octet.<br />
 E. Change the network address configuration to eliminate the discontiguous 172.16.2.0/25 and 172.16.2.128/25 subnetwork.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>C</p>
<p class="ccnaexplanation">Explanation</p>
<p>Same as Question 5</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>Refer to the exhibit. A network associate has configured the internetwork that is shown in the exhibit, but has failed to configure routing properly.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/IP_Routing/static_route2.jpg" alt="static_route2.jpg" width="494" height="149" /></p>
<p>Which configuration will allow the hosts on the Branch LAN to access resources on the HQ LAN with the least impact on router processing and WAN bandwidth?</p>
<p>A. <br />
 HQ(config)# ip route 192.168.1.0 255.255.255.0 192.168.2.5<br />
 Branch(config) # ip route 172.16.25.0 255.255.255.0 192.168.2.6</p>
<p>B. <br />
 HQ(config)# router rip<br />
 HQ(config-router)# network 192.168.2.0 <br />
 HQ(config-router)# network 172.16.0.0 <br />
 Branch(config)# router rip <br />
 Branch(config-router) # network 192.168.1.0 <br />
 Branch(config-router)# network 192.168.2.0</p>
<p>C. <br />
 HQ(config)# router eigrp 56<br />
 HQ(config-router)# network 192.168.2.4 <br />
 HQ(config-router)# network 172.16.25.0 <br />
 Branch(config)# router eigrp 56 <br />
 Branch(config-router)# network 192.168.1.0 <br />
 Branch(config-router) # network 192.168.2.4</p>
<p>D. <br />
 HQ(config)# router ospf 1<br />
 HQ(config-router)# network 192.168.2.4 0.0.0.3 area 0 <br />
 HQ(config-router)# network 172.16.25.0 0.0.0.255 area 0<br />
 Branch(config)# router ospf 1<br />
 Branch(config-router)# network 192.168.1.0 0.0.0.255 area 0</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A</p>
<p class="ccnaexplanation">Explanation</p>
<p>By configuring static route, we can minimize the router processing and WAN bandwidth.</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>Refer to the exhibit. The network administrator requires easy configuration options and minimal routing protocol traffic. Which two options provide adequate routing table information for traffic that passes between the two routers and satisfy the requests of the network administrator?(choose two)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/IP_Routing/easy_routing_traffic.jpg" alt="easy_routing_traffic.jpg" width="570" height="310" /></p>
<p>A. a dynamic routing protocol on InternetRouter to advertise summarized routers to CentralRouter.<br />
 B. a dynamic routing protocol on CentralRouter to advertise summarized routers to InternetRouter.<br />
 C. a static route on InternetRouter to direct traffic that is destined for 172.16.0.0/16 to CentralRouter.<br />
 D. a dynamic routing protocol on InternetRouter to advertise all routes to CentralRouer.<br />
 E. a dynamic routing protocol on CentralRouer to advertise all routes to InternetRouter<br />
 F. a static, default route on CentralRouter that directs traffic to InternetRouter.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C F</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>A router receives information about network 192.168.10.0/24 from multiple sources. What will the router consider the most reliable information about the path to that network?</p>
<p>A. an OSPF update for network 192.168.0.0/16<br />
 B. a static router to network 192.168.10.0/24<br />
 C. a static router to network 192.168.10.0/24 with a local serial interface configured as the next hop<br />
 D. a RIP update for network 192.168.10.0/24<br />
 E. a directly connected interface with an address of 192.168.10.254/24<br />
 F. a default route with a next hop address of 192.168.10.1</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> E</p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>Which parameter can be tuned to affect the selection of a static route as a backup when a dynamic protocol is also being used?</p>
<p>A. link bandwidth<br />
 B. hop count<br />
 C. link cost<br />
 D. administrative distance<br />
 E. link delay</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>D</p>
<p class="ccnaquestionsnumber">Question 11</p>
<p>Which statement is true, as relates to classful or classless routing?</p>
<p>A. RIPV1 and OSPF are classless routing protocols.<br />
 B. Classful routing protocols send the subnet mask in routing updates.<br />
 C. Automatic summarization at classful boundaries can cause problems on discontiguous networks.<br />
 D. EIGRP and OSPF are classful routing protocols and summarize routes by default.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>C</p>
<p class="ccnaquestionsnumber">Question 12</p>
<p>Which two are advantages of static routing when compared to dynamic routing? (choose two)</p>
<p>A. Security increases because only the network administrator may change the routing tables. <br />
 B. Configuration complexity decreases as network size increases.<br />
 C. Routing updates are automatically sent to neighbors.<br />
 D. Route summarization is computed automatically by the router.<br />
 E. Routing traffic load is reduced when used in stub network links.<br />
 F. An efficient algorithm is used to build routing tables using automatic updates.<br />
 G. Routing tables adapt automatically to topology changes.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A E</p>
<p class="ccnaquestionsnumber">Question 13</p>
<p>The speed of all serial links is E1 and the speed of the all other links is 100Mb/s. A static route will be established on the Manchester router to direct traffic toward to the internet over the most direct path available. What configuration of the Manchester router will establish a route toward to the internet for traffic from workstation on the Manchester LAN?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/IP_Routing/static_route_config.jpg" alt="static_route_config.jpg" width="670" height="340" /></p>
<p>A. ip route 0.0.0.0 255.255.255.0 172.16.100.2<br />
 B. ip route 0.0.0.0 255.255.255.252 128.107.1.1<br />
 C. ip route 0.0.0.0 0.0.0.0 128.107.1.1<br />
 D. ip route 0.0.0.00.0:0:0 172.16.100.1<br />
 E. ip route 0.0.0.0 255.255.255.255 172.16.100.2<br />
 F. ip route 0.0.0.0 0.0.0.0 172.16.100.2</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>F</p>
<p class="ccnaexplanation">Explanation</p>
<p>Maybe &#8220;the most direct path available&#8221; here means via R2 because it is directly connected with the Internet while the London path needs to go through R1. So we need a command to send traffic to R2 and the correct command is &#8220;ip route 0.0.0.0 0.0.0.0 172.16.100.2&#8243;.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-ip-routing-questions-2/feed</wfw:commentRss>
		<slash:comments>49</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; RIP Questions</title>
		<link>http://www.9tut.com/ccna-rip-questions</link>
		<comments>http://www.9tut.com/ccna-rip-questions#comments</comments>
		<pubDate>Fri, 01 Apr 2011 02:02:42 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=661</guid>
		<description><![CDATA[Here you will find answers to RIP Questions Note: If you are not sure about RIP, please read my RIP tutorial. Question 1 Which statement about RIPng is true? A. RIPng allows for routes with up to 30 hops. B. RIPng is enabled on each interface separately. C. RIPng uses broadcasts to exchange routes. D. [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to RIP Questions</p>
<p><!--adsense--></p>
<p>Note: If you are not sure about RIP, please read my <a href="http://www.9tut.com/rip-routing-protocol-tutorial" target="_blank">RIP tutorial</a>.</p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Which statement about RIPng is true?</p>
<p>A. RIPng allows for routes with up to 30 hops.<br />
 B. RIPng is enabled on each interface separately.<br />
 C. RIPng uses broadcasts to exchange routes.<br />
 D. There can be only one RIPng process per router.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>RIPng is similar to RIPv2 but is used for IPv6. But unlike RIPv1 and RIPv2, RIPng is enabled on each interface separately. For example:</p>
<p><strong>Router(config)#ipv6 unicast-routing</strong> (Enables the forwarding of IPv6 unicast datagrams globally on the router)<br />
 <strong>Router(config)#interface fa0/0</strong><br />
 <strong>Router(config-if)#ipv6 rip 9tut enable</strong> (9tut is the process name of this RIPng)</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>What are two characteristics of RIPv2? (Choose two)</p>
<p>A. classful routing protocol<br />
 B. variable-length subnet masks<br />
 C. broadcast addressing<br />
 D. manual route summarization<br />
 E. uses SPF algorithm to compute path</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B D</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Refer to the exhibit. Which (config-router) command will allow  the network represented on the interface to be advertised by RIP?</p>
<table border="1">
<tbody>
<tr>
<td>router rip<br />
 version 2<br />
 no auto summary<br />
 !<br />
 interface ethernet0<br />
 ip address 10.12.6.1 255.255.0.0</td>
</tr>
</tbody>
</table>
<p>A. redistribute ethernet0<br />
 B. network ethernet0<br />
 C. redistribute 10.12.0.0<br />
 D. network 10.12.0.0</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Refer to the exhibit. What information can be gathered from the  output?</p>
<table border="1">
<tbody>
<tr>
<td>RouterA#debug ip rip<br />
 RIP protocol debugging is on00:34:32:    RIP:    sending v2 flash update to 224.0.0.9 via   FastEthernet8/0 (172.16.1.1)<br />
 00:34:32:    RIP:    build flash update entries<br />
 00:34:32:               10.10.1.0/24 via 0.0.0.6, metric 1, tag 0<br />
 00:34:32:    RIP:    sending v2 flash update to 224.0.0.9 via Loopback   (10.10.1.1)<br />
 00:34:32:    RIP:    build flash update entries<br />
 00:34:32:              10.0.0.0/8 via  0.6.0.0, metric 2, tag 0<br />
 00:34:32:              172.16.1.0/24 via 0.0.0.0, metric 1,  tag 0<br />
 00:34:32:    RIP:    ignored v2 packet from 16.10.1.1 (sourced from one   of our addresses)<br />
 06:34:33:    RIP:    received v2 update from 172.16.1.2 on   FastEthernet0/6<br />
 66:34:33:              16.6.0.0/8 via 6.0.6.6 in 1 hops<br />
 66:34:44:    RIP:    sending v2 update to 224.6.6.9 via FastEthernet0/0   (172.16.1.1)<br />
 66:34:44:    RIP:    build update entries<br />
 66:34:44:    10.10.1.0/24 via 0.0.0.0, metric 1, tag 0</td>
</tr>
</tbody>
</table>
<p>A. One router is running RIPv1.<br />
 B. RIP neighbor is 224.0.0.9.<br />
 C. The network contains a loop.<br />
 D. Network 10.10.1.0 is reachable.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Which series of commands will configure router R1 for LAN-to-LAN  communication with router R2? The enterprise network address is  192.1.1.0/24 and the routing protocol in use is RIP. (Choose three)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/RIP/RIP_config.jpg" alt="RIP_config.jpg" width="408" height="149" /></p>
<p>A.<br />
 R1 (config)# interface ethernet 0<br />
 R1 (config-if)# ip address 192.1.1.129 255.255.255.192<br />
 R1 (config-if)# no shutdown<br />
 B.<br />
 R1 (config)# interface ethernet 0<br />
 R1(config-if)#ip address 192.1.1.97 255.255.255.192<br />
 R1 (config-if)# no shutdown<br />
 C.<br />
 R1 (config)# interface serial 0<br />
 R1 (config-if)# ip address 192.1.1.4 255.255.255.252<br />
 R1 (config-if)# clock rate 56000<br />
 D.<br />
 R1 (config)# interface serial 0<br />
 R1(config-if)#ip address 192.1.1.6 255.255.255.252<br />
 R1 (config-it)# no shutdown<br />
 E.<br />
 R1 (config)# router rip<br />
 R1 (config-router)# network 192.1.1.4<br />
 R1 (config-router)# network 192.1.1.128<br />
 F.<br />
 R1 (config)# router rip<br />
 R1 (config-router)# version 2<br />
 R1 (config-router)# network 192.1.1.0</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A D F</p>
<p class="ccnaexplanation">Explanation</p>
<p>First we notice that the ip address of the E0 interface of R2 is 192.1.1.65/26, which has:</p>
<p>+ Increment: 64 (/26 = 1111 1111.1111 1111.1111 1111.1<strong>1</strong>00 0000)<br />
 + Network address: <strong>192.1.1.64</strong><br />
 + Broadcast address: <strong>192.1.1.127</strong></p>
<p>Therefore, the ip address of the E0 interface of R1 cannot belong to this range or the network cannot operate correctly.</p>
<p>In answer A, the ip address of E0 interface of R1 is 192.1.1.129, which does not belong in this range -&gt; A is correct.<br />
 In answer B, E0 interface of R1 has the ip address of 192.1.1.97, which belongs in this range -&gt; B is not correct.</p>
<p>The s0 interface of R1 must belong to the same network of s0 interface of R2, which has:</p>
<p>+ Increment: 4 (/30 = 1111 1111.1111 1111.1111 1111.1111 1<strong>1</strong>00) <br />
 + Network address: 192.1.1.4<br />
 + Broadcast address: 192.1.1.7</p>
<p>The ip 192.1.1.5 has been used by s0 of R2 so the only suitable ip address of s0 of R1 is 192.1.1.6 -&gt; C is wrong but D is correct.</p>
<p>Now the last thing we must do is enabling RIP. Because e0 interface of R1 and e0 interface of R2 have the same major network (192.1.1.0/24) so we must use RIP version 2 to support discontiguous network -&gt; F is correct.</p>
<p>For answer E, if we configure 2 networks<br />
 R1 (config-router)# network 192.1.1.4<br />
 R1 (config-router)# network 192.1.1.128<br />
 then these networks will be automatically summarized as 192.1.1.0 network.</p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>Refer to the exhibit. Two routers have just been configured by a  new technician. All interfaces are up. However, the routers are not  sharing their routing tables. What is the problem?</p>
<p><img style="border: 0pt none;" src="http://www.9tut.com/images/ccna/RIP/debug_ip_rip.jpg" alt="debug_ip_rip.jpg" width="598" height="169" /></p>
<p>A. Split horizon is preventing Router2 from receiving routing  information from Router1.<br />
 B. Router1 is configured for RIP version 2, and Router2 is configured  for RIP version 1.<br />
 C. Router1 has an ACL that is blocking RIP version 2.<br />
 D. There is a physical connectivity problem between Router1 and Router2.<br />
 E. Router1 is using authentication and Router2 is not.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B</p>
<p class="ccnaexplanation">Explanation</p>
<p>As we can see from the output, Router2 is sending v1 update and ignoring v2 update from neighbor so we can conclude Router2 is running RIPv1. Its neighbor, Router1 (ip address of 192.168.2.1), is running RIPv2.</p>
<p>Notice that router running RIPv2 can &#8220;understand&#8221; RIPv1 update but router running RIPv1 cannot understand RIPv2 update.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>What is the default routing update period for RIPv2?<br />
 A. 15 seconds<br />
 B. 30 Seconds<br />
 C. 180 Seconds<br />
 D. 240 Seconds</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>Refer to the exhibit. The network manager is evaluating the  efficiency of the current network design. RIPv2 is enabled on all Layer 3  devices in the network. What network devices participate in passing  traffic from the PC at 10.10.1.7 to File Server at 10.20.1.6 in the  order that they will forward traffic from source to destination?</p>
<p style="text-align: center;"><img style="border: 0pt none;" src="http://www.9tut.com/images/ccna/RIP/VLAN_RIP.jpg" alt="VLAN_RIP.jpg" /></p>
<p>A. Switch, Switch2<br />
 B. Switch, Switch2, Router2, Switch2<br />
 C. Switch1, Router1, Switch1, Switch2<br />
 D. Switch1, Router1, Router2, Switch2</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation</p>
<p>The PC and File Server are in different VLANs so surely traffic from PC to File Server must go through Router1 but which path will the packet go next, through Router 2 or Switch1? Well, it is a hard question to answer.</p>
<p>As many comments said &#8220;the connection between R1 and Switch is Blue, so that means its under Vlan 10, and R2 to Switch 2 is red. The two routers do not have subinterfaces and are not running router on a stick basing on the color of the links&#8221; so D should be the correct answer.</p>
<p>Just for your information, I keep this explanation (which supports answer C) but in the exam you should choose D as your answer!</p>
<p>I haven&#8217;t had tested it yet but I guess that because there is a VLAN 20 on Switch 1 so Router1 will try to send that packet back to Switch1. If the link between Switch1 and Switch2 is a trunk link then the returned packet will also be sent to this link. Switch 2 receives that packet and it sends to the File Server at VLAN20. So the path will be Switch1 -&gt; Router1 -&gt; Switch1 -&gt; Switch2.</p>
<p>There are some debates about this question but if the routers are properly configured then the packets can go from Switch1 -&gt; Router1 -&gt; Router2 -&gt; Switch2 (D answer) so D can be a correct answer.</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>Refer to the exhibit. Router A has interfaces with addresses  192.168.1.1 and 172.16.1.1. Router B, which is connected to router A  over a serial link, has interfaces with address 172.16.1.2 and 10.1.1.2.</p>
<p style="text-align: center;"><img style="border: 0pt none;" src="http://www.9tut.com/images/ccna/RIP/RIP_configuration.jpg" alt="RIP_configuration.jpg" width="328" height="145" /></p>
<p>Which  sequence of commands will configure RIPv2 on router B?</p>
<p>A.<br />
 B( config)# router rip<br />
 B(config-router)#version 2<br />
 B(config-router)# network 172.16.0.0<br />
 B(config-router)# network 10.0.0.0<br />
 B(config-router)# end</p>
<p>B.<br />
 B(config)# router rip 2<br />
 B(config-router)# network 172.16.0.0<br />
 B(config-router)# network 10.0.0.0<br />
 B(config-router)# end</p>
<p>C.<br />
 B(config)# router rip<br />
 B(config-router)#version 2<br />
 B(config-router)# network 172.16.0.0<br />
 B(config-router)#network 192.168.1.0<br />
 B(config-router)#end</p>
<p>D.<br />
 B(config)# router rip version 2<br />
 B(config-router)# network 172.16.0.0<br />
 B(config-router)# network 10.0.0.0<br />
 B(config-router)#end</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>Refer to the exhibit. S0/0 on R1 is configured as a multipoint  interface to communicate with R2 and R3 in this hub-and-spoke Frame  Relay topology.<br />
 While testing this configuration, a technician notes that pings are  successful from hosts on the 172.16.1.0/24 network to hosts on both the  172.16.2.0/25 and 172.16.2.128/25 networks. However, pings between hosts  on the 172.16.2.0/25 and 172.16.2.128/25 networks are not successful.  What could explain this connectivity problem?</p>
<p style="text-align: center;"><img style="border: 0pt none;" src="http://www.9tut.com/images/ccna/RIP/RIP_split_horizon.jpg" alt="RIP_split_horizon.jpg" /></p>
<p>A. The ip subnet-zero command has been issued on the R1 router.<br />
 B. The RIP v2 dynamic routing protocol cannot be used across a Frame  Relay network.<br />
 C. Split horizon is preventing R2 from learning about the R3 networks  and R3 from learning about the R2 networks.<br />
 D. The 172.16.2.0/25 and 172.16.2.128/25 networks are overlapping  networks that can be seen by R1, but not between R2 and R3.<br />
 E. The 172.16.3.0/29 network used on the Frame Relay links is creating a  discontiguous network between the R2 and R3 router subnetworks.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>The &#8220;ip subnet-zero&#8221; allows the use of the first subnet but it doesn&#8217;t cause this problem and we don&#8217;t have that first subnet (like 172.16.0.0/24) so we can&#8217;t confirm if the &#8220;ip subnet-zero&#8221; was used or not -&gt; A is not correct.</p>
<p>Frame-Relay can use RIPv2 with no problem if we configure it correctly -&gt; B is not correct.</p>
<p>In the exhibit above we notice that the s0/0 interface of R1 has not been divided into sub-interfaces so the split horizon will prevent updates from R2 to R3 and vice versa. The split horizon rule states &#8220;A router never sends information about a route back in same direction which is original information came&#8221;. In this case R2 send an update to S0/0 of R1 so R1 cannot send that update back on S0/0 -&gt; R3 will not learn about networks of R2 (and vice versa) -&gt; C is correct.</p>
<p>172.16.2.0/25 and 172.16.2.128/25 networks are not overlapping networks. They are two different sub-networks -&gt; D is not correct.</p>
<p>RIPv2 is a classless routing protocol so it supports VLSM and discontiguous networks -&gt; E is not correct.</p>
<p class="ccnaquestionsnumber">Question 11</p>
<p>Refer to the exhibit. After a RIP route is marked invalid on  Router_1, how much time will elapse before that route is removed from  the routing table?</p>
<table border="1">
<tbody>
<tr>
<td>Router_1# <strong>show ip protocols</strong><br />
 Routing Protocol is &#8220;rip&#8221;<br />
 Sending updates every 30 seconds, next due in 8 seconds<br />
 Invalid after  180 seconds, hold down 180, flushed after 240<br />
 Outgoing update filter list foe all interfaces is not set<br />
 Incoming update filter list for all interfaces is not set<br />
 Router 1#</td>
</tr>
</tbody>
</table>
<p>A. 30 seconds<br />
 B. 60 seconds<br />
 C. 90 seconds<br />
 D. 180 seconds<br />
 E. 240 seconds</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaquestionsnumber">Question 12</p>
<p>Refer to the graphic. Host 1 cannot receive packets from Host 2.  Assuming that RIP v1 is the routing protocol in use, what is wrong with  the IP configuration information shown? (Choose two)</p>
<p style="text-align: center;"><img style="border: 0pt none;" src="http://www.9tut.com/images/ccna/RIP/wrong_RIP_configuration.jpg" alt="wrong_RIP_configuration.jpg" width="378" height="263" /></p>
<p>A. The fa0/1 interface of router R2 has been assigned a broadcast  address.<br />
 B. The fa0/1 network on router R2 overlaps with the LAN attached to R1.<br />
 C. Host 2 has been assigned the incorrect subnet mask.<br />
 D. Host 1 has been configured with the 255.255.248.0 subnet mask.<br />
 E. Host 2 on router R2 is on a different subnet than its gateway.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B C</p>
<p class="ccnaexplanation">Explanation</p>
<p>The fa0/1 interface of R2 is assigned an IP address of 10.1.40.255/20. It seems to be a broadcast address but it is not. If we calculate the range of this network we will understand why:</p>
<p>Network 10.1.40.255/20<br />
 <strong>Increment: </strong>16 (/20 = 1111 1111.1111 1111.111<strong>1</strong> 0000.0000 0000)<br />
 <strong>Network address:</strong> 10.1.32.0<br />
 <strong>Broadcast address:</strong> 10.1.47.255</p>
<p>-&gt; 10.1.40.255/20 is an usable host address -&gt; A is not correct.</p>
<p>The IP address of host 1 (10.1.32.48) belongs to the range of interface fa0/1 on R2 as shown above -&gt; B is correct.</p>
<p>In the topology above, all subnet masks are /20 (255.255.240.0) excepting the subnet mask of Host 2 (255.255.252.0)  so C can be incorrect.</p>
<p>The subnet mask of Host 1 is 255.255.240.0, not 255.255.248.0 -&gt; D is not correct.</p>
<p>Host 2 is not on a different subnet than its gateway even if the subnet mask 255.255.252.0 is used. Let&#8217;s analyze the range of Host 2 network:</p>
<p>Network 10.1.40.96/22<br />
Increment: 4<br />
Network address: 10.1.40.0<br />
Broadcast address: 10.1.43.255</p>
<p>Its gateway (10.1.40.255) is still belongs to this range -&gt; E is not correct.</p>
<p>Note: In this question, C is the best suitable answer after eliminating A, D, E answers. But in fact Host 2 can ping its gateway because they are on the same subnet.</p>
<p class="ccnaquestionsnumber">Question 13</p>
<p>What two things will a router do when running a distance vector  routing protocol? (Choose two)</p>
<p>A. Send periodic updates regardless of topology changes.<br />
 B. Send entire routing table to all routers in the routing domain.<br />
 C. Use the shortest-path algorithm to the determine best path.<br />
 D. Update the routing table based on updates from their neighbors.<br />
 E. Maintain the topology of the entire network in its database.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A D</p>
<p class="ccnaquestionsnumber">Question 14</p>
<p style="text-align: center;"><img style="border: 0pt none;" src="http://www.9tut.com/images/ccna/RIP/RIP_update.jpg" alt="RIP_update.jpg" width="398" height="384" /></p>
<p>Use the  output from the router shown in the graphic above to determine  which of  the following are correct. (Choose two)</p>
<p>A. Router  John uses a link-state routing protocol.<br />
 B. Router John will receive routing updates on the Serial0/0 interface.<br />
 C. Router John will receive routing updates on the Serial0/1 interface.<br />
 D. Router John will send routing updates out the Serial0/0 interface.<br />
 E. Router John will send routing updates out the FastEthernet0/0  interface.<br />
 F. Router John will send routing updates out the Serial0/1 interface.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B D</p>
<p class="ccnaquestionsnumber">Question 15</p>
<p>What can be determined from the line of show ip route output  shown in the exhibit? (Choose two)</p>
<p><strong>R 10.10.10.8 [120/2] via 10.10.10.6,00:00:25, Serial0/1</strong></p>
<p>A. The next routing update can be expected in 35 seconds.<br />
 B. The IP address 10.10.10.6 is configured on S0/1.<br />
 C. The IP address 10.10.10.8 is configured on S0/1.<br />
 D. This route is using the default administrative distance.<br />
 E. The 10.10.10.8 network is two hops away from this router.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D E</p>
<p class="ccnaexplanation">Explanation</p>
<p>From the output, we can see 2 parameters [120/2]. The first is the administrative distance of the routing protocol being used. In this case it is RIP (symbolized by the letter &#8220;R&#8221;). Because 120 is also the default administrative distance value of RIP -&gt; D is correct.</p>
<p>In RIP, the metric is hop count so &#8220;2&#8243; means the network 10.10.10.8 is two hops (routers) away from this router.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-rip-questions/feed</wfw:commentRss>
		<slash:comments>375</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; OSPF Questions</title>
		<link>http://www.9tut.com/ccna-ospf-questions</link>
		<comments>http://www.9tut.com/ccna-ospf-questions#comments</comments>
		<pubDate>Sun, 20 Mar 2011 10:10:22 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=15</guid>
		<description><![CDATA[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 &#8211; It is an optional parameter required only if [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to OSPF Questions</p>
<p><!--adsense--></p>
<p>Note: If you are not sure about OSPF, please read my<a href="http://www.9tut.com/ospf-routing-protocol-tutorial" target="_blank"> OSPF tutorial</a></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Which of the following statements below best describe the process identifier that is used to run OSPF on a router? (Choose two)</p>
<p>A &#8211; It is an optional parameter required only if multiple OSPF processes are running on the router<br />
 B &#8211; It is locally significant<br />
 C &#8211; It is needed to identify a unique instance of an OSPF database<br />
 D &#8211; All routers in the same OSPF area must have the same process ID if they are to exchange routing information</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B C</p>
<p class="ccnaquestionsnumber">Question 2:</p>
<p>Why R1 can&#8217;t establish an OSPF neighbor relationship with R3 according to the following graphic? (Choose two)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/OSPF/OSPFneighbor.jpg" border="0" alt="OSPFneighbor" width="449" height="207" /></p>
<p>A &#8211; Configure EIGRP on these routers with a lower administrative distance<br />
 B &#8211; All routers should be configured for backbone Area 1<br />
 C &#8211; R1 and R3 have been configured in different areas<br />
 D &#8211; The hello and dead interval timers are not configured the same values on R1 and R3</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C D</p>
<p class="ccnaexplanation">Explanation:</p>
<p>A is not correct because configure EIGRP on these routers (with a lower administrative distance) will force these routers to run EIGRP, not OSPF.</p>
<p>B is not correct because the backbone area of OSPF is always Area 0.</p>
<p>C and D are correct because these entries must match on neighboring routers:</p>
<p>- <strong>Hello and dead intervals</strong><br />
 &#8211; <strong>Area ID</strong> (Area 0 in this case)<br />
 &#8211; Authentication password<br />
 &#8211; Stub area flag</p>
<p class="ccnaquestionsnumber">Question 3:</p>
<p>Which items are correct about the routing protocol OSPF? (Choose three)</p>
<p>A &#8211; Support VLSM<br />
 B &#8211; Increase routing overhead on the network<br />
 C &#8211; Confine network instability to one area of the network<br />
 D &#8211; Allow extensive control of routing updates</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A C D</p>
<p class="ccnaexplanation">Explanation:</p>
<p>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<strong> reduce routing overhead</strong> 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).</p>
<p class="ccnaquestionsnumber">Question 4:</p>
<p>Which three features are of OSPF routing protocol? (Choose three)</p>
<p>A &#8211; Converge quickly<br />
 B &#8211; OSPF is a classful routing protocol<br />
 C &#8211; Identify the best route by use of cost<br />
 D &#8211; Before exchanging routing information, OSPF routers find out neighbors</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A C D</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 5:</p>
<p>OSPF routing uses the concept of areas. What are the characteristics of OSPF areas? (Chose three)</p>
<p>A &#8211; Each OSPF area requires a loopback interface to be configured<br />
 B &#8211; Areas may be assigned any number from 0 to 65535<br />
 C &#8211; Area 0 is called the backbone area<br />
 D &#8211; Hierarchical OSPF networks do not require multiple areas<br />
 E &#8211; Multiple OSPF areas must connect to area 0<br />
 F &#8211; Single area OSPF networks must be configured in area 1</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B C E</p>
<p class="ccnaexplanation">Explanation:</p>
<p>I used to think the answers should be C D E and here is my explanation:</p>
<p>OSPF can use an active interface for its router ID, so a loopback interface is not a must -&gt; A is incorrect.</p>
<p>OSPF Area is a 32-bit number so we can use up to 2<sup>32</sup> &#8211; 1 = 4294967296 &#8211; 1 (since Area 0 is the first area). Remember that only process ID is a 16-bit number and ranges from 1 to 65535 -&gt; B is incorrect.</p>
<p>F is incorrect too because single area OSPF netwoks must be configured in Area 0, which is called the backbone area.</p>
<p>For answer D, it is a bit hard to guess what they want to say about &#8220;hierarchical&#8221; but we should understand &#8220;Hierarchical OSPF networks&#8221; as &#8220;OSPF networks&#8221;. D is correct bercause we can only have one area (area 0 &#8211; the backbone area) for our networks.</p>
<p><strong>But <span class="pinkandbold">TT</span> commented on 01-11-2010:</strong></p>
<p>Especially to note on choice B, D, and E:</p>
<p>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 &#8216;area&#8217; (be aware, it&#8217;s not saying &#8216;process id), there is no reason to say that we cannot assign numbers from 0 to 65535 for area # (it is using &#8216;may be&#8217;, not &#8216;have to be&#8217; or &#8216;ought to be&#8217;). Hence, we do not worry about assigning &#8217;0&#8242;.</p>
<p>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.</p>
<p>Choice D: when it specifies &#8216;Hierarchical&#8217;, at least 2 areas should be required to form such topology (of course that includes Area 0)</p>
<p>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 &#8216;area&#8217;, not &#8216;process id&#8217;, so &#8217;0&#8242; can be included. Finally, it would be meaningless to call OSPF a hierarchical network if no more than one area is present.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>I reviewed the question and think it is a more suitable solution with choice B than choice D, surely it is a tricky question!</p>
<p class="ccnaquestionsnumber">Question 6:</p>
<p>Part of the OSPF network is shown below:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/OSPF/OSPF_Routing.jpg" border="0" alt="OSPF_Routing" width="571" height="271" /></p>
<p>Configuration exhibit:</p>
<p><strong>R1 routing commands:</strong></p>
<p>ip route 0.0.0.0 0.0.0.0 serial0/0<br />
 router ospf 1<br />
 network 172.16.100.0 0.0.0.3 area 0<br />
 network 172.16.100.64 0.0.0.63 area 0<br />
 network 172.16.100.128 0.0.0.31 area 0<br />
 default-information originate</p>
<p>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?</p>
<p>A &#8211; Any packet destined for a network that is not directly connected to router R2 will be dropped immediately<br />
 B &#8211; Any packet destined for a network that is not directly connected to router R1 will be dropped<br />
 C &#8211; 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<br />
 D &#8211; 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.<br />
 E &#8211; 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</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> E</p>
<p class="ccnaexplanation">Explanation:</p>
<p>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.</p>
<p>The default route configured on R1 &#8220;ip route 0.0.0.0 0.0.0.0 serial0/0&#8243; will send any packet whose destination network is not referenced in the routing table of router R1 to R2, it doesn&#8217;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 &#8220;OSPF has been correctly configured on router R2&#8243;, so network directly connected to router R2 can communicate with those three subnetworks.</p>
<p>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.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-ospf-questions/feed</wfw:commentRss>
		<slash:comments>317</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; OSPF Questions 2</title>
		<link>http://www.9tut.com/ccna-ospf-questions-2</link>
		<comments>http://www.9tut.com/ccna-ospf-questions-2#comments</comments>
		<pubDate>Tue, 15 Mar 2011 15:26:30 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=835</guid>
		<description><![CDATA[Here you will find answers to OSPF Questions &#8211; 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) A. It ensures that data will be forwarded by [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to OSPF Questions &#8211; Part 2</p>
<p><!--adsense--></p>
<p>Note: If you are not sure about OSPF, please read my<a href="http://www.9tut.com/ospf-routing-protocol-tutorial" target="_blank"> OSPF tutorial</a></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Refer to the exhibit. Which two statements are true about the loopback address that is configured on RouterB? (Choose two)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/OSPF/OSPF_loopback.jpg" alt="OSPF_loopback.jpg" width="402" height="292" /></p>
<p>A. It ensures that data will be forwarded by RouterB.<br />
 B. It provides stability for the OSPF process on RouterB.<br />
 C. It specifies that the router ID for RouterB should be 10.0.0.1.<br />
 D. It decreases the metric for routes that are advertised from RouterB.<br />
 E. It indicates that RouterB should be elected the DR for the LAN.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B C</p>
<p class="ccnaexplanation">Explanation</p>
<p>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.</p>
<p>The router-ID is chosen in the order below:</p>
<p>+ The highest IP address assigned to a loopback (logical) interface.<br />
 + If a loopback interface is not defined, the highest IP address of all active router’s physical interfaces will be chosen.</p>
<p>-> The loopback interface will be chosen as the router ID of RouterB -> C is correct.</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Which characteristics are representative of a link-state routing protocol? (Choose three)</p>
<p>A. provides common view of entire topology <br />
 B. exchanges routing tables with neighbors<br />
 C. calculates shortest path<br />
 D. utilizes event-triggered updates<br />
 E. utilizes frequent periodic updates</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A C D</p>
<p class="ccnaexplanation">Explanation</p>
<p>Each of routers running link-state routing protocol learns paths to all the destinations in its &#8220;area&#8221; so we can say A is correct although it is a bit unclear.</p>
<p>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.</p>
<p>Link-state routing protocol like OSPF uses Dijkstra algorithm to calculate the shortest path -> C is correct.</p>
<p>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.</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/OSPF/OSPF_DR_elect.jpg" alt="OSPF_DR_elect.jpg" width="430" height="390" /></p>
<p>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.</p>
<p>As part of examining the router resources the OSPF DRs need to be known.</p>
<p>All the router OSPF priorities are at the default and the router IDs are shown with each router.</p>
<p>Which routers are likely to have been elected as DR? (Choose two)</p>
<p>A. Corp-1<br />
 B. Corp-2<br />
 C. Corp-3<br />
 D. Corp4<br />
 E. Branch-1<br />
 F. Branch-2</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D F</p>
<p class="ccnaexplanation">Explanation</p>
<p>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.</p>
<p>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:</p>
<p>+ The highest IP address assigned to a loopback (logical) interface.</p>
<p>+ If a loopback interface is not defined, the highest IP address of all active router’s physical interfaces will be chosen.</p>
<p>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) &amp; Branch-2 (10.2.20.20) have highest “active” IP addresses so they will become DRs.</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p><img src="http://www.9tut.com/images/ccna/OSPF/OSPF_show_ip_interface_brief.jpg" alt="OSPF_show_ip_interface_brief.jpg" width="559" height="242" /></p>
<p>A network associate has configured OSPF with the command:<br />
 City(config-router)# network 192.168.12.64 0.0.0.63 area 0</p>
<p>After completing the configuration, the associate discovers that not all the interfaces are participating in OSPF.<br />
 Which three of the interfaces shown in the exhibit will participate in OSPF according to this configuration statement? (Choose three)</p>
<p>A. FastEthernet0/0<br />
 B. FastEthernet0/1<br />
 C. Serial0/0<br />
 D. Serial0/1.102<br />
 E. Serial0/1.103<br />
 F. Serial0/1.104</p>
<p><span class="ccnacorrectanswers">Answer: </span>B C D</p>
<p class="ccnaexplanation">Explanation</p>
<p>The “network 192.168.12.64 0.0.0.63″ equals to network 192.168.12.64/26. This network has:<br />
 + Increment: 64 (/26= 1111 1111.1111 1111.1111 1111.1100 0000)<br />
 + Network address: 192.168.12.64<br />
 + Broadcast address: 192.168.12.127<br />
 Therefore all interface in the range of this network will join OSPF -> B C D are correct.</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>When running OSPF, what would cause router A not to form an adjacency with router B?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/OSPF/OSPF_adjacency.jpg" alt="OSPF_adjacency.jpg" width="270" height="120" /></p>
<p>A. The loopback addresses are on different subnets.<br />
 B. The values of the dead timers on the routers are different.<br />
 C. Route summarization is enabled on both routers.<br />
 D. The process identifier on router A is different than the process identifier on router</p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>To form an adjacency (become neighbor), router A &amp; B must have the same Hello interval, Dead interval and AREA number.</p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>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?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/OSPF/OSPF_routing_table.jpg" alt="OSPF_routing_table.jpg" width="540" height="375" /></p>
<p>A. 208.149.23.64[110/13] via 190.173.23.10, 00:00:00:07, FastEthernet0/0<br />
 208.149.23.96[110/13] via 190.173.23.10, 00:00:00:16, FastEthernet0/0</p>
<p>B. 208.149.23.64[110/1] via 190.173.23.10, 00:00:00:07, Serial1/0<br />
 208.149.23.96[110/3] via 190.173.23.10, 00:00:00:16, FastEthernet0/0</p>
<p>C. 208.149.23.64[110/13] via 190.173.23.10, 00:00:00:07, Serial1/0<br />
 208.149.23.96[110/13] via 190.173.23.10, 00:00:00:16, Serial1/0 <br />
 208.149.23.96[110/13] via 190.173.23.10, 00:00:00:16, FastEthernet0/0</p>
<p>D. 208.149.23.64[110/13] via 190.173.23.10, 00:00:00:07, Serial1/0<br />
 208.149.23.96[110/13] via 190.173.23.10, 00:00:00:16, Serial1/0</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaexplanation">Explanation</p>
<p>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 10<sup>8</sup> / Bandwidth. For FastEthernet it is 10<sup>8</sup> / 100 Mbps = 10<sup>8</sup> / 10,000,000,000 = 1. Therefore the cost is <strong>12</strong> (learned from Router_A) <strong>+ 1</strong> = <strong>13</strong> for both subnets -> B is not correct.</p>
<p>The cost through T1 link is much higher than through T3 link (T1 cost = 10<sup>8</sup> / 1.544 Mbps = 64; T3 cost = 10<sup>8 </sup>/ 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 &amp; D are not correct.</p>
<p>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.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>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?</p>
<p><strong>RouterD# show ip interface brief</strong></p>
<p><img src="http://www.9tut.com/images/ccna/OSPF/show_ip_interface_brief.jpg" alt="show_ip_interface_brief.jpg" width="651" height="97" /></p>
<p><br class="spacer_" /></p>
<p>A. 10.1.1.2<br />
 B. 10.154.154.1<br />
 C. 172.16.5.1<br />
 D. 192.168.5.316</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>The highest IP address of all loopback interfaces will be chosen -> Loopback 0 will be chosen as the router ID.</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>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)</p>
<p>A. Router(config)#router ospf 1 <br />
 B. Router(config)#router ospf 0<br />
 C. Router(config)#router ospf area 0<br />
 D. Router(config-router)#network 192.168.16.0 0.0.0.255 area 0<br />
 E. Router(config-router)#network 192.168.16.0 0.0.0.255 0<br />
 F. Router(config-router)#network 192.168.16.0 255.255.255.0 area 0</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A D</p>
<p class="ccnaexplanation">Explanation</p>
<p>In the router ospf</p>
<process id> command, the</p>
<process id> ranges from 1 to 65535 so o is an invalid number -> A is correct but B is not correct.</p>
<p>To configure OSPF, we need a wildcard in the &#8220;network&#8221; statement, not a subnet mask. We also need to assgin an area to this process -> D is correct.</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>Which parameter or parameters are used to calculate OSPF cost in Cisco routers?</p>
<p>A. Bandwidth, Delay and MTU<br />
 B. Bandwidth<br />
 C. Bandwidth and MTU<br />
 D. Bandwidth, MTU, Reliability, Delay and Load</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p>The well-known formula to calculate OSPF cost is</p>
<p>Cost = 10<sup>8</sup> / Bandwidth</p>
<p>so B is the correct answer.</p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>Refer to the exhibit. Why are two OSPF designated routers identified on Core-Router?</p>
<table border="0">
<tbody>
<tr>
<td>Neighbor_ID</td>
<td>Pri</td>
<td>State</td>
<td>Dead Time</td>
<td>Address</td>
<td>Interface</td>
</tr>
<tr>
<td>208.149.23.194</td>
<td>1</td>
<td>Full/DR</td>
<td>00:00:33</td>
<td>190.172.32.10</td>
<td>Ethernet1</td>
</tr>
<tr>
<td>208.149.23.60</td>
<td>1</td>
<td>Full/BDR</td>
<td>00:00:33</td>
<td>190.172.32.10</td>
<td>Ethernet0</td>
</tr>
<tr>
<td>208.149.23.130</td>
<td>1</td>
<td>Full/DR</td>
<td>00:00:39</td>
<td>190.172.32.10</td>
<td>Ethernet0</td>
</tr>
</tbody>
</table>
<p>A. Core-Router is connected more than one multi-access network<br />
 B. The router at 208.149.23.130 is a secondary DR in case the primary fails.<br />
 C. Two router IDs have the same OSPF priority and are therefore tied for DR election<br />
 D. The DR election is still underway and there are two contenders for the role.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaexplanation">Explanation</p>
<p>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.</p>
<p class="ccnaquestionsnumber">Question 11</p>
<p>What is the default maximum number of equal-cost paths that can be placed into the routing of a Cisco OSPF router?</p>
<p>A. 16<br />
 B. 2<br />
 C. unlimited<br />
 D. 4</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation</p>
<p>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 &#8220;maximum-paths&#8221; command:</p>
<p>Router(config-router)#maximum-paths 2</p>
<p>Note: Cisco routers support up to 6 equal-cost paths</p>
<p class="ccnaquestionsnumber">Question 12</p>
<p>What is the OSPF default frequency, in seconds, at which a Cisco router sends hello packets on a multiaccess network?</p>
<p>A. 10  <br />
 B. 40  <br />
 C. 30  <br />
 D. 20</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaexplanation">Explanation</p>
<p>On broadcast multiacess and point-to-point links, the default is 10 seconds. On NBMA, the default is 30 seconds.</p>
<p class="ccnaquestionsnumber">Question 13</p>
<p>What is the default administrative distance of OSPF?<br />
 A. 120<br />
 B. 100<br />
 C. 90<br />
 D. 110</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaquestionsnumber">Question 14</p>
<p>What information does a router running a link-state protocol use to  build and maintain its topological database? (Choose two)</p>
<p>A. hello packets<br />
 B. SAP messages sent by other routers <br />
 C. LSAs from other routers <br />
 D. beacons received on point-to-point links <br />
 E. routing tables received from other link-state routers <br />
 F. TTL packets from designated routers</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A C</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-ospf-questions-2/feed</wfw:commentRss>
		<slash:comments>128</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; EIGRP Questions</title>
		<link>http://www.9tut.com/ccna-eigrp-questions</link>
		<comments>http://www.9tut.com/ccna-eigrp-questions#comments</comments>
		<pubDate>Thu, 10 Mar 2011 21:24:10 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=63</guid>
		<description><![CDATA[Here you will find answers to EIGRP Questions Note: If you are not sure about EIGRP, please read my EIGRP tutorial Question 1 Refer to the exhibit, when running EIGRP what is required for R1 to exchange routing updates with R3? A &#8211; AS numbers must be changed to match on all the routers B [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to EIGRP Questions</p>
<p><!--adsense--></p>
<p>Note: If you are not sure about EIGRP, please read my <a href="http://www.9tut.com/eigrp-routing-protocol-tutorial" target="_blank">EIGRP tutorial</a></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Refer to the exhibit, when running EIGRP what is required for R1 to exchange routing updates with R3?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/EIGRP/EIGRP_AS_number.jpg" border="0" alt="EIGRP_AS_number" /></p>
<p>A &#8211; AS numbers must be changed to match on all the routers<br />
 B &#8211; Loopback interfaces must be configured so a DR is elected<br />
 C &#8211; The no auto-summary command is needed on R1 and R3<br />
 D &#8211; R2 needs to have two network statements, one for each connected network</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaquestionsnumber">Question 2:</p>
<p>As a Cisco technician, you need to know EIGRP protocol very well. Which of the following is true about EIGRP successor routes? (Choose two)</p>
<p>A &#8211; A successor route is used by EIGRP to forward traffic to a destination<br />
 B &#8211; Successor routes are stored in the neighbor table following the discovery process <br />
 C &#8211; Successor routes are flagged as &#8220;active&#8221; in the routing table<br />
 D &#8211; A successor route may be backed up by a feasible successor route<br />
 E &#8211; Successor routes are stored in the neighbor table following the discovery process.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A D</p>
<p class="ccnaexplanation">Explanation:</p>
<p>B is not correct because neighbor table only contains a list of directly connected EIGRP routers that have an adjacency with this router, it doesn&#8217;t contain successor routes.</p>
<p>C is not correct because successor routes are not flagged as &#8220;active&#8221;, they are always the best route to reach remote networks and are always used to send packets.</p>
<p>A and D are correct because successor route is the best and primary route to a remote network. It is stored in the routing table and topology table. If this route fails, a backup route (called feasible successor route) in the topology table will be used to route traffic to a destination.</p>
<p class="ccnaquestionsnumber">Question 3:</p>
<p>Which two statements are true regarding EIGRP? (Choose two)</p>
<p>A &#8211; Passive routes are in the process of being calculated by DUAL<br />
 B &#8211; EIGRP supports VLSM, route summarization, and routing update authentication<br />
 C &#8211; EIGRP exchanges full routing table information with neighboring routers with every update<br />
 D &#8211; If the feasible successor has a higher advertised distance than the successor route, it becomes the primary route<br />
 E &#8211; A query process is used to discover a replacement for a failed route if a feasible successor is not identified from the current routing information</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B E</p>
<p class="ccnaexplanation">Explanation:</p>
<p>Diffusing Update Algorithm (DUAL) is the algorithm for selecting and maintaining the best path to each remote network. DUAL tracks all the routes advertised by neighbors and selects routes based on feasible successors. It inserts lowest cost paths into the routing table (these routes are known as primary routes or successor routes) -&gt; A is not correct.</p>
<p>EIGRP is still a distance-vector protocol, but has certain features that belong to link-state algorithms (like OSPF) than distance-vector algorithms. For example, EIGRP sends a partial routing table update, which includes just routes that have been changed, not the full routing table like distance-vector algorithms -&gt; C is not correct.</p>
<p>The feasible successor route will become the primary route when its advertised distance is lower than the feasible distance of the successor route. The feasible successor route can be used in the event that the successor route goes down. Notice that the feasible successor route does not get installed in the routing table but is kept in the topology table as a backup route -&gt; D is not correct.</p>
<p>&#8220;Support VLSM, route summarization, and routing update authentication&#8221; are the features of EIGRP -&gt; B is correct.</p>
<p>When a route fails and has no feasible successor, EIGRP uses a distributed algorithm called Diffusing Update Algorithm (DUAL) to discover a replacement for a failed route. When a new route is found, DUAL adds it to the routing table -&gt; E is correct.</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Which type of EIGRP route entry describes a feasible successor?</p>
<p>A. a primary route,stored in the routing table <br />
 B. a backup route,stored in the routing table<br />
 C. a backup route,stored in the topology table <br />
 D. a primary route,stored in the topology table</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>C</p>
<p class="ccnaexplanation">Explanation</p>
<p>Feasible successor is a route whose Advertised Distance is less than the Feasible Distance of the current best path. A feasible successor is a backup route, which is not stored in the routing table but stored in the topology table.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Refer to the exhibit. Given the output from the show ip eigrp topology command, which router is the feasible successor?</p>
<table border="1">
<tbody>
<tr>
<td>router#<strong> show ip eigrp topology 10.0.0.5 255.255.255.255</strong><br />
 IP-EIGRP topology entry for 10.0.0.5/32 State is Passive, Query <br />
 origin flag is 1, 1 Successor(s), FD is 41152000</td>
</tr>
</tbody>
</table>
<p>A.</p>
<table border="1">
<tbody>
<tr>
<td>10.1.0.1 (Serial0), from 10.1.0.1, Send flag is 0&#215;0<br />
 Composite metric is (46152000/41640000), Route is Internal <br />
 Vector metric:<br />
 Minimum bandwidth is 64 Kbit <br />
 Total delay is 45000 Microseconds <br />
 Reliability is 255/255 <br />
 Load is 1/255 <br />
 Minimum MTU is 1500 <br />
 Hop count is 2</td>
</tr>
</tbody>
</table>
<p>B.</p>
<table border="1">
<tbody>
<tr>
<td>10.0.0.2 (Serial0.1), from 10.0.0.2, Send flag is 0&#215;0<br />
 Composite metric is (53973248/128256), Route is Internal <br />
 Vector Metric:<br />
 Minimum bandwidth is 48 Kbit <br />
 Total delay is 25000 Microseconds <br />
 Reliability is 255/255 <br />
 Load is 1/255 <br />
 Minimum MTU is 1500 <br />
 Hop count is 1</td>
</tr>
</tbody>
</table>
<p>C.</p>
<table border="1">
<tbody>
<tr>
<td>10.1.0.3 (Serial0), from 10.1.0.3, Send flag is 0&#215;0<br />
 Composite metric is (46866176/46354176), Route is Internal <br />
 Vector metric:<br />
 Minimum bandwidth is 56 Kbit<br />
 Total delay is 45000 microseconds<br />
 Reliability is 255/255<br />
 Load is 1/255<br />
 Minimum MTU is 1500<br />
 Hop count is 2</td>
</tr>
</tbody>
</table>
<p>D.</p>
<table border="1">
<tbody>
<tr>
<td>10.1.1.1 (Serial0.1), from 10.1.1.1, Send flag is 0&#215;0<br />
 Composite metric is (46763776/46251776), Route is External <br />
 Vector metric:<br />
 Minimum bandwidth is 56 Kbit<br />
 Total delay is 41000 microseconds<br />
 Reliability is 255/255<br />
 Load is 1/255<br />
 Minimum MTU is 1500<br />
 Hop count is 2</td>
</tr>
</tbody>
</table>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B</p>
<p class="ccnaexplanation">Explanation</p>
<p>To be the feasible successor, the Advertised Distance (AD) of that route must be less than the Feasible Distance (FD) of the successor. From the output of the &#8220;show ip eigrp topology 10.0.0.5 255.255.255.255&#8243; we learn that the FD of the successor is 41152000.</p>
<p>Now we will mention about the answers, in the &#8220;Composite metric is (&#8230;/&#8230;)&#8221; statement the first parameter is the FD while the second parameter is the AD of that route. So we need to find out which route has the second parameter (AD) less than 41152000 -&gt; only answer B satisfies this requirement with an AD of 128256.</p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>A network administrator is troubleshooting an EIGRP problem on a router and needs to confirm the IP addresses of the devices with which the router has established adjacency. The retransmit interval and the queue counts for the adjacent routers also need to be checked. What command will display the required information?</p>
<p>A. Router# show ip eigrp adjacency<br />
 B. Router# show ip eigrp topology<br />
 C. Router#show ip eigrp interfaces<br />
 D. Router#show ip eigrp neighbors</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation</p>
<p>Below is an example of the <strong>show ip eigrp neighbors </strong>command. The retransmit interval (Smooth Round Trip   Timer &#8211; SRTT) and the queue counts (Q count, which shows the number of queued EIGRP packets) for the adjacent routers are listed:</p>
<p><img src="http://www.9tut.com/images/ccna/EIGRP/EIGRP_show_ip_eigrp_neighbors_command.jpg" alt="EIGRP_show_ip_eigrp_neighbors_command.jpg" width="432" height="72" /></p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>Refer to the exhibit. How many paths can the EIGRP routing process use to forward packets from HQ_Router to a neighbor router?</p>
<table border="1">
<tbody>
<tr>
<td>HQ_Router# <strong>show ip protocols</strong><br />
 Routing Protocol is “eigrp 109″<br />
 Outgoing update filter list for all interfaces is not set<br />
 Incoming update filter list for all interfaces is not set<br />
 Default networks flagged in outgoing updates<br />
 Default networks accepted from incoming updates<br />
 EIGRP metric weight K1=1, K2=0, K3=1, K4=0, K5=0<br />
 EIGRP maximum hopcount 100<br />
 EIGRP maximum metric variance 3<br />
 Redistributing: eigrp 109<br />
 EIGRP NSF-aware route hold timer is 240s<br />
 Automatic network summarization is not in effect<br />
 Maximum path: 4<br />
 Routing for Networks:<br />
 20.10.10.0/24<br />
 172.30.10.0/24<br />
 192.168.1.0<br />
 Routing Information Sources:<br />
 Gateway Distance Last Update<br />
 20.10.10.2 90 00:13:12<br />
 172.30.10.2 90 01:13:06<br />
 Distance: internal 90 external 170<br />
 HQ_Router#</td>
</tr>
</tbody>
</table>
<p>A. two equal-cost paths<br />
 B. two unequal-cost paths<br />
 C. three equal-cost paths<br />
 D. three unequal-cost paths<br />
 E. four equal-cost paths<br />
 F. four unequal-cost paths</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>F</p>
<p class="ccnaexplanation">Explanation</p>
<p>The &#8220;Maximum path: 4&#8243; means EIGRP can use up to 4 equal-cost paths to forward packets from HQ_Router to a neighbor router. But here the variance is set to 3 which allows unequal-cost paths. Therefore in this case EIGRP can use up to four unequal-cost paths.</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>IP address and routing for the network are configured as shown in the exhibit. The network administrator issues the show ip eigrp neighbors command from Router1 and receives the output shown below the topology. Which statement is true?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/EIGRP/EIGRP_show_ip_eigrp_neighbors.jpg" alt="EIGRP_show_ip_eigrp_neighbors.jpg" width="670" height="400" /></p>
<p>A. It is normal for Router1 to show one active neighbor at a time to prevent routing loops.<br />
 B. Routing is not completely configured on Router3.<br />
 C. The IP addresses are not configured properly on the Router1 and Router3 interfaces.<br />
 D. The no auto-summary command configured on the routers prevents Router1 and Router2 from forming a neighbor relationship.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>From the output of Router1, we learn that Router1 has not established neighborship with R3 yet. Also from the &#8220;show running-config&#8221; on Router3 we notice that the &#8220;network 192.168.3.0&#8243; statement is missing -&gt; the configuration on Router3 is not complete.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-eigrp-questions/feed</wfw:commentRss>
		<slash:comments>334</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; EIGRP Questions 2</title>
		<link>http://www.9tut.com/ccna-eigrp-questions-2</link>
		<comments>http://www.9tut.com/ccna-eigrp-questions-2#comments</comments>
		<pubDate>Wed, 09 Mar 2011 07:40:54 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=1078</guid>
		<description><![CDATA[Here you will find answers to EIGRP Questions &#8211; Part 2 Note: If you are not sure about EIGRP, please read my EIGRP tutorial. Question 1 A router has learned three possible routes that could be used to reach a destination network. One route is from EIGRP and has a composite metric of 20514560. Another [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to EIGRP Questions &#8211; Part 2</p>
<p><!--adsense--></p>
<p>Note: If you are not sure about EIGRP, please read my <a href="http://www.9tut.com/eigrp-routing-protocol-tutorial" target="_blank">EIGRP tutorial</a>.</p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>A router has learned three possible routes that could be used to reach a destination network. One route is from EIGRP and has a composite metric of 20514560. Another route is from OSPF with a metric of 782. The last is from RIPv2 and has a metric of 4. Which route or routes will the router install in the routing table?</p>
<p>A. the OSPF route <br />
 B. the EIGRP route <br />
 C. the RIPv2 route <br />
 D. all three routes <br />
 E. the OSPF and RIPv2 routes</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>When one route is advertised by more than one routing protocol, the router will choose to use the routing protocol which has lowest Administrative Distance. The Administrative Distances of popular routing protocols are listed below:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/EIGRP/EIGRP_Administrative Distances_popular_routing_protocols.jpg" alt="EIGRP_Administrative Distances_popular_routing_protocols.jpg" width="365" height="178" /></p>
<p><span class="ccnaquestionsnumber">Question 3</span></p>
<p>Refer to the exhibit. Based on the exhibited routing table, how will packets from a host within the 192.168.10.192/26 LAN be forwarded to 192.168.10.1?</p>
<p style="text-align: left;"><img src="http://www.9tut.com/images/ccna/EIGRP/EIGRP_show_ip_route.jpg" alt="EIGRP_show_ip_route.jpg" width="510" height="430" /></p>
<p>A. The router will forward packets from R3 to R2 to R1 <br />
 B. The router will forward packets from R3 to R1<br />
 C. The router will forward packets from R3 to R1 to R2<br />
 D. The router will forward packets from R3 to R2 to R1 AND from R3 to R1</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>D</p>
<p class="ccnaexplanation">Explanation</p>
<p>From the routing table we learn that network 192.168.10.0/30 is learned via 2 equal-cost paths (192.168.10.9 &amp;192.168.10.5) -> traffic to this network will be load-balancing.</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Refer to the exhibit. The company uses EIGRP as the routing protocol. What path will packets take from a host on 192.168.10.192/26 network to a host on the LAN attached to router R1?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/EIGRP/EIGRP_show_ip_route_2.jpg" alt="EIGRP_show_ip_route_2.jpg" width="350" height="250" /></p>
<p><strong>R3# show ip route<br />
 Gateway of last resort is not set<br />
 192 168.10.0/24 is variably subnetted, 6 subnets, 2 masks<br />
 D 192.168.10.64/26 [90/2195456] via 192.168.10.9, 00:03:31, Serial0/0<br />
 D 192.168.10.0/30 [90/2681856] via 192.168.10.9, 00:03:31, Serial0/0<br />
 C 192.168.10.4/30 is directly connected, Serial0/1<br />
 C 192.168.10.8/30 is directly connected, Serial0/0<br />
 C 192.168.10.192/26 is directly connected, FastEthernet0/0<br />
 D 192.168.10.128/26 [90/2195456] via 192.168.10.5,00:03:31, Serial0/1</strong></p>
<p>A. The path of the packets will be R3 to R2 to R1.<br />
 B. The path of the packets will be R3 to R1 to R2.<br />
 C. The path of the packets will be both R3 to R2 to R1 and R3 to R1.<br />
 D. The path of the packets will be R3 to R1</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>D</p>
<p class="ccnaexplanation">Explanation</p>
<p>Host on the LAN attached to router R1 belongs to 192.168.10.64/26 subnet. From the output of the routing table of R3 we learn this network can be reach via 192.168.10.9, which is an IP address in 192.168.10.8/30 network (the network between R1 &amp; R3) -> packets destined for 192.168.10.64 will be routed from R3 -> R1 -> LAN on R1.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Refer to the exhibit. A packet with a source IP address of 192.168.2.4 and a destination IP address of 10.1.1.4 arrives at the HokesB router. What action does the router take?</p>
<p><img src="http://www.9tut.com/images/ccna/EIGRP/EIGRP_show_ip_route_ICMP.jpg" alt="EIGRP_show_ip_route_ICMP.jpg" width="500" height="330" /></p>
<p>A. forwards the received packet out the Serial0/0 interface<br />
 B. forwards a packet containing an EIGRP advertisement out the Serial0/1 interface<br />
 C. forwards a packet containing an ICMP message out the FastEthemet0/0 interface<br />
 D. forwards a packet containing an ARP request out the FastEthemet0/1 interface</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>When a packet with destination IP address of 10.1.1.4 arrives at HokesB, it will look up in the routing table to find the most specific path. In this case no path is found so HokesB must inform to the source host that the destination is unreachable on the interface it has received this packet (it is Fa0/0 because the network 192.168.2.0/28 is learned from this interface). So the best answer here should be C &#8211; send an ICMP message out of Fa0/0.</p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>The EIGRP configuration in the Glencoe router uses a single network statement. From the output shown in the graph would advertise these networks in EIGRP?</p>
<p><img src="http://www.9tut.com/images/ccna/EIGRP/EIGRP_show_ip_protocol_network_advertised.jpg" alt="EIGRP_show_ip_protocol_network_advertised.jpg" width="400" height="250" /></p>
<p>A. network 172.26.168.0 area 478<br />
 B. network 172.26.0.0<br />
 C. network 172.26.168.128 0.0.0.127<br />
 D. network 172.26.168.128 area 478</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B</p>
<p class="ccnaexplanation">Explanation</p>
<p>The single &#8220;network &#8230;&#8221; statement used to advertise network 172.26.168.128/26 &amp; 172.26.169.0/26 must  cover both of them -> it is &#8220;network 172.26.0.0&#8243;. Notice the &#8220;network 172.26.168.128 0.0.0.127&#8243; command is valid but it only covers from 172.26.168.128 to 172.26.168.255.</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>Refer to the exhibit. From RouterA, a network administrator is able to ping the serial interface of RouterB but unable to ping any of the subnets attached to RouterB. Based on the partial outputs in the exhibit, what could be the problem?</p>
<p><img src="http://www.9tut.com/images/ccna/EIGRP/EIGRP_show_ip_protocl_show_ip_route.jpg" alt="EIGRP_show_ip_protocl_show_ip_route.jpg" width="570" height="610" /></p>
<p>A. EIGRP does not support VLSM.<br />
 B. The EIGRP network statements are incorrectly configured.<br />
 C. The IP addressing on the serial interface of RouterA is incorrect.<br />
 D. The routing protocol has summarized on the classful boundary.<br />
 E. EIGRP has been configured with an invalid autonomous system number.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>D</p>
<p class="ccnaexplanation">Explanation</p>
<p>From the output of &#8220;show ip route&#8221; command on RouterB, we learn that RouterB does not learn any networks in RouterA. Also the &#8220;172.16.0.0/26 is a summary, 00:00:03, Null0&#8243; line tells us this netwok is summarized.</p>
<p>Note: EIGRP performs auto-summarization each time it crosses a border between two major networks. For example, RouterA has networks of 172.16.x.x. It will perform auto-summarization when sending over network 10.1.1.0/30, which is in different major network (172.16.0.0/16 and 10.0.0.0/8 are called major networks in this case).</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-eigrp-questions-2/feed</wfw:commentRss>
		<slash:comments>41</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Security Questions</title>
		<link>http://www.9tut.com/ccna-security-questions</link>
		<comments>http://www.9tut.com/ccna-security-questions#comments</comments>
		<pubDate>Mon, 07 Mar 2011 03:20:43 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=976</guid>
		<description><![CDATA[Here you will find answers to Security Questions Question 1 Which component of VPN technology ensures that data can be read only by its intended recipient? A. data integrity B. encryption C. key exchange D. authentication Answer: D Explanation First you need to understand what these terms mean: Data integrity: verifying that the packet was [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to Security Questions</p>
<p><!--adsense--></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Which component of VPN technology ensures that data can be read only by its intended recipient?</p>
<p>A. data integrity<br />
 B. encryption<br />
 C. key exchange<br />
 D. authentication</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>D</p>
<p class="ccnaexplanation">Explanation</p>
<p>First you need to understand what these terms mean:</p>
<p>Data integrity: verifying that the packet was not changed as the packet transited the Internet</p>
<p>Encryption: conversion of data into a form, called a ciphertext, that cannot be easily understood by unauthorized people</p>
<p>Authentication: the process of determining whether someone or something is, in fact, who or what it is declared to be. Authentication can take place at both sides, the sender and the receiver.</p>
<p>Key exchange: is any method in cryptography by which cryptographic keys are exchanged between users, allowing use of a cryptographic algorithm.</p>
<p>So in this question we realize that only authentication involves in the end user while others are about processing data -&gt; D is correct.</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>What can be done to secure the virtual terminal interfaces on a router? (Choose two)</p>
<p>A. Administratively shut down the interface.<br />
 B. Physically secure the interface.<br />
 C. Create an access list and apply it to the virtual terminal interfaces with the access-group command.<br />
 D. Configure a virtual terminal password and login process.<br />
 E. Enter an access list and apply it to the virtual terminal interfaces using the access-class command.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>D E</p>
<p class="ccnaexplanation">Explanation</p>
<p>It is a waste to administratively shut down the interface. Moreover, someone can still access the virtual terminal interfaces via other interfaces -&gt; A is not correct.</p>
<p>We can not physically secure a virtual interface because it is &#8220;virtual&#8221; -&gt; B is not correct.</p>
<p>To apply an access list to a virtual terminal interface we must use the &#8220;access-class&#8221; command. The &#8220;access-group&#8221; command is only used to apply an access list to a physical interface -&gt; C is not correct; E is correct.</p>
<p>The most simple way to secure the virtual terminal interface is to configure a username &amp; password to prevent unauthorized login -&gt; D is correct.</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>The enable secret command is used to secure access to which CLI mode?</p>
<p>A. user EXEC mode <br />
 B. global configuration mode <br />
 C. privileged EXEC mode <br />
 D. auxiliary setup mode</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>C</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Which type of attack is characterized by flood of packet that requesting a TCP connection to a server?</p>
<p>A. denial of service<br />
 B. brute force<br />
 C. reconnaissance<br />
 D. Trojan horse</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Which IPsec security protocol should be used when confidentiality is required?</p>
<p>A. AH<br />
 B. MD5<br />
 C. PSK<br />
 D. ESP</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>D</p>
<p class="ccnaexplanation">Explanation</p>
<p>IPsec is a pair of protocols, Encapsulating Security Payload (ESP) and Authentication Header (AH), which provide security services for IP datagrams.</p>
<p>ESP can provide the properties authentication, integrity, replay protection, and confidentiality of the data (it secures everything in the packet that follows the IP header).</p>
<p>AH provides authentication, integrity, and replay protection (but not confidentiality) of the sender.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>What algorithm technology must be used for ensuring data integrity when dataflow goes over VPN tunnel? (Choose two)</p>
<p>A. RSA<br />
 B. DH-1<br />
 C. DH-2<br />
 D. HMAC-MD5<br />
 E. HMAC-SHA1</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>D E</p>
<p class="ccnaexplanation">Explanation</p>
<p>Data integrity ensures data has not been altered in the transmission. A data-integrity algorithm adds a hash to the message to guarantee the integrity of the message.</p>
<p>A Hashed Message Authentication Code (HMAC) is a data-integrity algorithm that ensures the integrity of the message. Two popular algorithms a VPN gateway uses for verifying integrity of data are HMAC-Message Digest 5 (HMAC-MD5) and HMAC-Secure Hash Algorithm 1 (HMAC-SHA1)</p>
<p>+ <strong>HMAC-MD5</strong> uses a 128-bit shared-secret key of any size. The variable-length message and shared-secret key are combined and run through the HMAC-MD5 hash algorithm. The output is a 128-bit hash. The hash is appended to the original message and is forwarded to the remote end.</p>
<p>+ <strong>HMAC-SHA-1</strong> uses a secret key of any size. The variable-length message and the shared-secret key are combined and run through the HMAC-SHA-1 hash algorithm. The output is a 160-bit hash. The hash is appended to the original message and is forwarded to the remote end.</p>
<p>Diffie-Hellman Group 1 (DH-1) &amp; Diffie-Hellman Group 2 (DH-2) are two encryption algorithms for VPN, not data integrity algorithms.</p>
<p>RSA is also an encryption algorithm, not data integrity algorithm.</p>
<p>(Reference: Implementing Cisco IOS Network Security IINS)</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>What are two security appliances that can be installed in a network? (Choose two)</p>
<p>A. ATM<br />
 B. IDS<br />
 C. IOS<br />
 D. IOX<br />
 E. IPS<br />
 F. SDM</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B E</p>
<p class="ccnaexplanation">Explanation</p>
<p>Intrusion detection system (IDS) and intrusion prevention system (IPS) solutions form an integral part of a robust network defense solution.</p>
<p>IDS monitors network and system activities for malicious activities or policy violations and produces reports to a Management Station.</p>
<p>IPS provides policies and rules for network traffic along with an intrusion detection system for alerting system or network administrators to suspicious traffic, but allows the administrator to provide the action upon being alerted.</p>
<p>The key to differentiating an IDS from an IPS is that an IPS responds immediately and does not allow any malicious traffic to pass, whereas an IDS allows malicious traffic to pass before it can respond.</p>
<p>(Reference: Implementing Cisco IOS Network Security IINS)</p>
<p>Note: Asynchronous Transfer Mode (ATM) is a layer 2 WAN transport protocol. It encodes data into small, fixed-sized cells consisting of 48 bytes of payload and 5 bytes of cell header -&gt; A is not correct</p>
<p>Cisco Router and Security Device Manager (SDM) is a Web-based device-management tool for Cisco routers that can help you configure a router via a web browser -&gt; In general, it only helps simplify the network management, router configuration so it is not a security appliance -&gt; F is not correct.</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>Which device might be installed at a branch office to enable and manage an IPsec site-to-site VPN?</p>
<p>A. Cisco IOS IPsec/SSL VPN client <br />
 B. Cisco VPN Client <br />
 C. ISDN terminal adapter <br />
 D. Cisco Adaptive Security Appliance</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation</p>
<p>An example of IPsec site-to-site VPN is your corporation has departments in many countries which need to communicate with each other. A popular solution is site-to-site (LAN-to-LAN) VPN to create private networks through the Internet. But as we know, Internet is not a safe environment for important data to be transferred. That is the reason why we need IPsec, a protocol suite for securing Internet Protocol (IP) communications by authenticating and encrypting each IP packet of a communication session.</p>
<p>Cisco Adaptive Security Appliance (ASA) supports IPsec, that&#8217;s all I can say! If you wish to learn more about the configuration, please read <a href="http://www.cisco.com/en/US/products/ps5855/products_configuration_example09186a0080a9a7a3.shtml" target="_blank">http://www.cisco.com/en/US/products/ps5855/products_configuration_example09186a0080a9a7a3.shtml</a></p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>Refer to the exhibit. What is the result of setting the no login command?</p>
<table border="1">
<tbody>
<tr>
<td><strong>Router#config t<br />
 Router(config)#line vty 0 4 <br />
 Router(config-line)#password c1sc0<br />
 Router(config-line)#no login</strong></td>
</tr>
</tbody>
</table>
<p>A. This is a virtually limitless supply of IP addresses<br />
 B. Telnet access requires a new password at first login<br />
 C. Telnet access requires a password<br />
 D. Telnet access is denied</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> No correct answer</p>
<p class="ccnaexplanation">Explanation</p>
<p>There is a mistake in this question because this configuration will let someone telnet to that router without the password (so the line &#8220;password c1sco&#8221; is not necessary).</p>
<p>If we want to deny telnet we can configure like this:</p>
<p><strong>Router(config)#line vty 0 4<br />
 Router(config-line)#no password (if the password is set before)<br />
 Router(config-line)#login</strong></p>
<p>With this configuration, when someone tries to telnet to this router, a message &#8220;Password required, but none set&#8221; is displayed.</p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>What is the effect of using the service password-encryption command?</p>
<p>A. Only passwords configured after the command has been entered will be encrypted.<br />
 B. Only the enable password will be encrypted.<br />
 C. Only the enable secret password will be encrypted<br />
 D. It will encrypt the secret password and remove the enable secret password from the configuration.<br />
 E. It will encrypt all current and future passwords.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> E</p>
<p class="ccnaexplanation">Explanation</p>
<p>The secret password (configured by the command &#8220;enable secret <em> </em>&#8220;) is always encrypted even if the &#8220;service password-encryption&#8221; command is not used. Moreover, the secret password is not removed from the configuration with this command, we still see it in encrypted form in the running-config -&gt; D is not correct.</p>
<p>The &#8220;enable password <em> </em>&#8221; does not encrypt the password and can be viewed in clear text in the running-config. By using the &#8220;service password-encryption&#8221; command, that password is encrypted (both current and future passwords) -&gt; A is not correct, E is correct.</p>
<p>Answer B &#8211; Only the enable password will be encrypted seems to be correct but it implies the secret password will not be encrypted and stay in clear text, which is not correct.</p>
<p>For your information, the secret password is encrypted with MD5 one-way hash algorithm which is harder to break than the encryption algorithm used by the &#8220;service password-encryption&#8221; command.</p>
<p class="ccnaquestionsnumber">Question 11</p>
<p>Which command sets and automatically encrypts the privileged enable mode password?</p>
<p>A. enable password c1sco<br />
 B. secret enable c1sco<br />
 C. password enable c1sco<br />
 D. enable secret c1sco</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-security-questions/feed</wfw:commentRss>
		<slash:comments>98</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; DHCP Questions</title>
		<link>http://www.9tut.com/ccna-dhcp-questions</link>
		<comments>http://www.9tut.com/ccna-dhcp-questions#comments</comments>
		<pubDate>Wed, 02 Mar 2011 05:50:59 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=879</guid>
		<description><![CDATA[Here you will find answers to DHCP Questions Question 1 Refer to the exhibit. Which rule does the DHCP server use when there is an IP address conflict? A. The address is removed from the pool until the conflict is resolved. B. The address remains in the pool until the conflict is resolved. C. Only [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to DHCP Questions</p>
<p><!--adsense--></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Refer to the exhibit. Which rule does the DHCP server use when there is an IP address conflict?</p>
<p><img src="http://www.9tut.com/images/ccna/DHCP/show_ip_dhcp_conflict.jpg" alt="show_ip_dhcp_conflict.jpg" width="435" height="96" /></p>
<p>A. The address is removed from the pool until the conflict is resolved.<br />
 B. The address remains in the pool until the conflict is resolved.<br />
 C. Only the IP detected by Gratuitous ARP is removed from the pool.<br />
 D. Only the IP detected by Ping is removed from the pool.<br />
 E. The IP will be shown, even after the conflict is resolved.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>How dose a DHCP server dynamically assign IP address to host?</p>
<p>A. Addresses are allocated after a negotiation between the server and the host to determine the length of the agreement.<br />
 B. Addresses are assigned for a fixed period of time. At the end of period, a new quest for an address must be made, and another address is then assigned.  <br />
 C. Addresses are leased to host. A host will usually keep the same address by periodically contacting the DHCP sever to renew the lease.  <br />
 D. Addresses are permanently assigned so that the host uses the same address at all times.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Which two tasks does the Dynamic Host Configuration Protocol perform?  (Choose two)</p>
<p>A. Set the IP gateway to be used by the network.<br />
 B. Perform host discovery used DHCPDISCOVER message.<br />
 C. Configure IP address parameters from DHCP server to a host.<br />
 D. Provide an easy management of layer 3 devices.<br />
 E. Monitor IP performance using the DHCP server.<br />
 F. Assign and renew IP address from the default pool.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C F</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Which statement is correct regarding the operation of DHCP?</p>
<p>A. A DHCP client uses a ping to detect address conflicts.<br />
 B. A DHCP server uses a gratuitous ARP to detect DHCP clients.<br />
 C. A DHCP client uses a gratuitous ARP to detect a DHCP server.<br />
 D. If an address conflict is detected, the address is removed from the pool and an administrator must resolve the conflict.<br />
 E. If an address conflict is detected, the address is removed from the pool for an amount of time configurable by the administrator.<br />
 F. If an address conflict is detected, the address is removed from the pool and will not be reused until the server is rebooted.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation</p>
<p>An address conflict occurs when two hosts use the same IP address. During address assignment, DHCP checks for conflicts using ping and gratuitous ARP. If a conflict is detected, the address is removed from the pool. The address will not be assigned until the administrator resolves the conflict.</p>
<p>(Reference: <a href="http://www.cisco.com/en/US/docs/ios/12_1/iproute/configuration/guide/1cddhcp.html" target="_blank">http://www.cisco.com/en/US/docs/ios/12_1/iproute/configuration/guide/1cddhcp.html</a>)</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-dhcp-questions/feed</wfw:commentRss>
		<slash:comments>41</slash:comments>
		</item>
		<item>
		<title>DHCP Group of Four Questions</title>
		<link>http://www.9tut.com/dhcp-group-of-four-questions</link>
		<comments>http://www.9tut.com/dhcp-group-of-four-questions#comments</comments>
		<pubDate>Tue, 01 Mar 2011 10:25:53 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[Hotspot]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=49</guid>
		<description><![CDATA[Refer to the exhibit. Using the information shown, answer the question Question 1: All hosts in the networks have been operational for several hours when the DHCP server goes down. What happens to the hosts that have obtained service from the DHCP server? A &#8211; The hosts will not be able to communicate with any [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/labsim/DHCP.jpg" border="0" alt="DHCP" width="450" height="300" /></p>
<p>Refer to the exhibit. Using the information shown, answer the question</p>
<p><span id="more-49"></span></p>
<p><!--adsense--></p>
<p><span class="ccnaquestionsnumber">Question 1:</span></p>
<p>All hosts in the networks have been operational for several hours when the DHCP server goes down. What happens to the hosts that have obtained service from the DHCP server?</p>
<p>A &#8211; The hosts will not be able to communicate with any other hosts.<br />
 B &#8211; The hosts will continue to communicate normally for a period of time.<br />
 C &#8211; The hosts will be able to communicate with hosts outsides their own network<br />
 D &#8211; The hosts will only be able to communicate with other hosts by IP address not by hostname</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation:</p>
<p>DHCP often uses dynamic allocation mechanism to save IP addresses, which assigns an IP address to a client for a limited period of time. So when the DHCP server goes down, that client can still use the allocated IP address for a period of time</p>
<p><span class="ccnaquestionsnumber">Question 2:</span></p>
<p>What is the purpose of the DHCP server?</p>
<p>A &#8211; to provide storage for email<br />
 B &#8211; to translate URLs to IP addresses<br />
 C &#8211; to translate IPv4 addresses to MAC addresses<br />
 D &#8211; to provide an IP configuration information to hosts</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p><span class="ccnaexplanation">Explanation:</span></p>
<p>The main purpose of the DHCP server is to provide IP configuration parameters to hosts such as the default gateway, domain name, Domain Name System (DNS) server&#8230;</p>
<p><!--adsense#MiddleContent--></p>
<p><span class="ccnaquestionsnumber">Question 3:</span></p>
<p>How is the message sent from a PC2 when is first powers on and attempts to contact the DHCP Server?</p>
<p>A &#8211; Layer 3 unicast<br />
 B &#8211; Layer 3 broadcast<br />
 C &#8211; Layer 3 multicast<br />
 D &#8211; Without any Layer 3 encapsulation</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation:</p>
<p>When a client boots up for the first time, it transmits a DHCPDISCOVER message on its local physical subnet. Because the client has no way of knowing the subnet to which it belongs, the DHCPDISCOVER is an all-subnets broadcast (destination IP address of 255.255.255.255, which is a layer 3 broadcast address). The client does not have a configured IP address, so the source IP address of 0.0.0.0 is used.</p>
<p><span class="ccnaquestionsnumber">Question 4:</span></p>
<p>What is the default behavior of R1 when PC1 requests service from DHCP server?</p>
<p>A &#8211; Drop the request<br />
 B &#8211; Broadcast the request to R2 and R3<br />
 C &#8211; Forward the request to R2<br />
 D &#8211; Broadcast the request to R2, R3 and ISP</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaexplanation">Explanation:</p>
<p>When PC1 requests service from DHCP server (for example, it requests an IP address), it sends a broadcast packet. But R1 router, by default, will not forward broadcast packet and drop it.</p>
<p>For your information, if you want to use the DHCP server from another network (like in this case) you can use the <em>ip helper-address</em> command which will make the router forward UDP broadcasts.</p>
<p><br class="spacer_" /></p>
<p>In the real exam you will be taken to a LAB simulation environment but it is, in fact, just a group of 4 multi-choice questions!</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/dhcp-group-of-four-questions/feed</wfw:commentRss>
		<slash:comments>276</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; NAT &amp; PAT Questions</title>
		<link>http://www.9tut.com/ccna-nat-pat-questions</link>
		<comments>http://www.9tut.com/ccna-nat-pat-questions#comments</comments>
		<pubDate>Mon, 28 Feb 2011 10:23:39 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=892</guid>
		<description><![CDATA[Here you will find answers to NAT &#38; PAT Questions Note: If you are not sure about NAT &#38; PAT, please read my NAT tutorial. Question 1 Refer to the exhibit. What does the (*) represent in the output? 02:16:29: NAT: s=10.10.0.2-&#62;1.2.4.2, d=1.2.4.1 [51607] 02:16:29: NAT: s=1.2.4.1, d=1.2.4.2-&#62;10.10.0.2 [55227] 62:16:29: NAT*: s=10.10.0.2-&#62;1.2.4.2, d=1.2.4.1 [51608] 02:16:29: [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to NAT &amp; PAT Questions</p>
<p><!--adsense--></p>
<p>Note: If you are not sure about NAT &amp; PAT, please read my <a href="http://www.9tut.com/network-address-translation-nat-tutorial" target="_blank">NAT tutorial</a>.</p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Refer to the exhibit. What does the (*) represent in the output?</p>
<table border="1">
<tbody>
<tr>
<td>02:16:29: NAT: s=10.10.0.2-&gt;1.2.4.2, d=1.2.4.1 [51607]<br />
 02:16:29: NAT: s=1.2.4.1, d=1.2.4.2-&gt;10.10.0.2 [55227]<br />
 62:16:29: NAT*: s=10.10.0.2-&gt;1.2.4.2, d=1.2.4.1 [51608]<br />
 02:16:29: NAT*: s=10.10.0.2-&gt;1.2.4.2, d=1.2.4.1 [51609]</td>
</tr>
</tbody>
</table>
<p>A. Packet is destined for a local interface to the router.<br />
 B. Packet was translated, but no response was received from the distant device.<br />
 C. Packet was not translated, because no additional ports are available.<br />
 D. Packet was translated and fast switched to the destination.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation</p>
<p>The above output is from the &#8220;debug ip nat&#8221; command. In this output, the first two lines show the Domain Name System (DNS) request and reply debugging output.</p>
<p>In the first line (DNS request):</p>
<p>s=10.10.0.2-&gt;1.2.4.2: source of the IP address (10.10.0.2) and how it is being translated (to 1.2.4.2)<br />
 d=1.2.4.1: destination address of the packet<br />
 [51607]: the IP identification number of the packet</p>
<p>In the second line (DNS reply):</p>
<p>s=1.2.4.1: source of the reply<br />
 d=1.2.4.2-&gt;10.10.0.2: how the destination is being translated</p>
<p>The remaining lines show debugging output from a Telnet connection from a host on the inside of the network to a host on the outside of the network. All Telnet packets, except for the first packet, were translated in the fast path, as indicated by the asterisk (*).</p>
<p>Note: If the connection is already established, the security appliance does not need to re-check packets and the packets are sent to the Fast Path.</p>
<p>(Reference: <a href="http://www.cisco.com/en/US/docs/ios/12_3t/debug/command/reference/dbg_i2gt.html" target="_blank">http://www.cisco.com/en/US/docs/ios/12_3t/debug/command/reference/dbg_i2gt.html</a>)</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Refer to the exhibit. What command sequence will enable PAT from the inside to outside network?</p>
<table border="1">
<tbody>
<tr>
<td>ip nat pool isp-net 1.2.4.10 1.2.4.240 netmask 255.255.255.0<br />
 !<br />
 interface ethernet 1 <br />
 description ISP Connection <br />
 ip address 1.2.4.2 255.255.255.0 <br />
 ip nat outside<br />
 !<br />
 interface ethernet 0 <br />
 description Ethernet to Firewall eth0 <br />
 ip address 10.10.0.1 255.255.255.0 <br />
 ip nat inside<br />
 !<br />
 access-list 1 permit 10.0.0.0 0.255.255.255</td>
</tr>
</tbody>
</table>
<p>A. (config)# ip nat pool isp-net 1.2.4.2 netmask 255.255.255.0 overload<br />
 B. (config-if)# ip nat outside overload<br />
 C. (config)# ip nat inside source list 1 interface ethernet1 overload<br />
 D. (config-if)# ip nat inside overload</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>The command &#8220;ip nat inside source list 1 interface ethernet1 overload&#8221; means:</p>
<p>+ &#8220;ip nat&#8221;: use NAT<br />
 + &#8220;inside&#8221;: NAT from inside to outside<br />
 + &#8220;source list 1&#8243;: the source addresses can be found in access list 1<br />
 + &#8220;interface ethernet1&#8243;: NAT out of this interface<br />
 + &#8220;overload&#8221;: use NAT overload (PAT)</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Refer to the exhibit. A junior network engineer has prepared the exhibited configuration file. What two statements are true of the planned configuration for interface fa0/1? (Choose two)</p>
<p><img src="http://www.9tut.com/images/ccna/NAT_PAT/DMZ_nat_inside.jpg" alt="DMZ_nat_inside.jpg" width="633" height="438" /></p>
<p>A. The two FastEthernet interfaces will require NAT configured on two outside serial interfaces.<br />
 B. Address translation on fa0/1 is not required for DMZ Devices to access the Internet. <br />
 C. The fa0/1 IP address overlaps with the space used by s0/0.<br />
 D. The fa0/1 IP address is invalid for the IP subnet on which it resides.<br />
 E. Internet hosts may not initiate connections to DMZ Devices through the configuration that is shown.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B E</p>
<p class="ccnaexplanation">Explanation</p>
<p>Both inside FastEthernet interfaces can use only one outside interface to go to the Internet -&gt; A is not correct.</p>
<p>DMZ devices use IP addresses in the range of 128.107.1.128/25 which are public IP addresses so they don&#8217;t need address translation to access the Internet -&gt; B is correct.</p>
<p>The fa0/1 interface&#8217;s IP address is 128.107.1.254 255.255.255.128 (range from 128.107.1.128 to 128.107.1.255) while the IP address of s0/0 is 128.107.1.1 255.255.255.252 (ranges from 128.107.1.0 to 128.107.1.4) so they are not overlapped with each other -&gt; C is not correct.</p>
<p>DMZ devices are in the range of 128.107.1.128/25 (from 128.107.1.128 to 128.107.1.255) and fa0/1 IP address (128.107.1.254) is a valid IP address on this subnet -&gt; D is not correct.</p>
<p>DMZ devices (and other internal hosts) are using dynamic PAT, which is a type of dynamic NAT. With dynamic NAT, translations do not exist in the NAT table until the router receives traffic that requires translation. In other words, if DMZ devices communicate with outside hosts first, dynamic translation works fine. But if outside hosts communicate with DMZ devices first, no translation is created in NAT table and the packets will be dropped. This is the reason why &#8220;Internet hosts may not initiate connections to DMZ Devices through the  configuration that is shown&#8221; -&gt; E is correct.</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Refer to the exhibit. What statement is true of the configuration for this network?</p>
<p><img src="http://www.9tut.com/images/ccna/NAT_PAT/DMZ_nat_inside.jpg" alt="DMZ_nat_inside.jpg" width="633" height="438" /></p>
<p>A. The configuration that is shown provides inadequate outside address space for translation of the number of inside addresses that are supported.<br />
 B. Because of the addressing on interface FastEthernet0/1, the Serial0/0 interface address will not support the NAT configuration as shown.<br />
 C. The number 1 referred to in the ip nat inside source command references access-list number 1.<br />
 D. ExternalRouter must be configured with static routers to network 172.16.2.0/24</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>The &#8220;list 1&#8243; refers to the access-list number 1.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>What are two benefits of using NAT? (choose two)</p>
<p>A. NAT protects network security because private networks are not advertised.<br />
 B. NAT accelerates the routing process because no modifications are made on the packets. <br />
 C. Dynamic NAT facilitates connections from the outside of the network.<br />
 D. NAT facilitates end-to-end communication when IPsec is enable.<br />
 E. NAT eliminates the need to re-address all host that require external access.<br />
 F. NAT conserves addresses through host MAC-level multiplexing.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A E</p>
<p class="ccnaexplanation">Explanation</p>
<p>By not reveal the internal Ip addresses, NAT adds some security to the inside network -&gt; A is correct.</p>
<p>NAT has to modify the source IP addresses in the packets -&gt; B is not correct.</p>
<p>Connection from the outside of the network through a &#8220;NAT&#8221; network is more difficult than a more network because IP addresses of inside hosts are hidden -&gt; C is not correct.</p>
<p>In order for IPsec to work with NAT we need to allow  additional protocols, including Internet Key Exchange (IKE), Encapsulating Security Payload (ESP) and Authentication Header (AH) -&gt; more complex -&gt; D is not correct.</p>
<p>By allocating specific public IP addresses to inside hosts, NAT eliminates the need to re-address the inside hosts -&gt; E is correct.</p>
<p>NAT does conserve addresses but not through host MAC-level multiplexing. It conserves addresses by allowing many private IP addresses to use the same public IP address to go to the Internet -&gt; F is not correct.</p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>Which two statements about static NAT translations are true? (choose two)</p>
<p>A. They are always present in the NAT table.<br />
 B. They allow connection to be initiated from the outside.<br />
 C. They can be configured with access lists, to allow two or more connections to be initiated from the outside.<br />
 D. They require no inside or outside interface markings because addresses are statically defined.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A B</p>
<p class="ccnaexplanation">Explanation</p>
<p>With static NAT, translations exist in the NAT translation table as soon as you configure static NAT command(s), and they remain in the translation table until you delete the static NAT command(s).</p>
<p>With dynamic NAT, translations do not exist in the NAT table until the router receives traffic that requires translation. Dynamic translations have a timeout period after which they are purged from the translation table.</p>
<p>-&gt; A is correct.</p>
<p>Because static NAT translations are always present in the NAT table so outside hosts can initiate the connection without being dropped -&gt; B is correct.</p>
<p>Static translations can not be configured with access lists. To configure static NAT, we only need to specify source IP, NAT IP, inside interface &amp; outside interface.</p>
<p>-&gt; C is not correct.</p>
<p>We have to specify which is the inside and outside interface -&gt; D is not correct.</p>
<p>For your information, below is an example of configuring static NAT:</p>
<p>R0(config)#int f0/0<br />
 R0(config-if)#ip nat inside</p>
<p>R0(config-if)#int f0/1<br />
 R0(config-if)#ip nat outside</p>
<p>R0(config)#ip nat inside source static 10.0.0.1 200.0.0.2</p>
<p>(Reference: <a href="http://www.cisco.com/en/US/tech/tk648/tk361/technologies_tech_note09186a0080093f31.shtml" target="_blank">http://www.cisco.com/en/US/tech/tk648/tk361/technologies_tech_note09186a0080093f31.shtml</a>)</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>Refer to the exhibit. Which statement about packet addresses are true during data exchange when host A makes Web-request to WWW Server, considering that there is NAT overload scheme for data passing from Corp LAN hosts to outside networks in use?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/NAT_PAT/NAT_Overload.jpg" alt="NAT_Overload.jpg" width="450" height="390" /></p>
<p>A. Source 234.15.27.226:3015 and destination 234.15.27.225:80<br />
 B. Source 200.15.239.128:3015 and destination 192.168.10.34:80<br />
 C. Destination 192.168.10.11:3015 and source 200.15.239.128:80<br />
 D. Source 192.168.10.34:80 and destination 192.168.10.254:3015<br />
 E. Destination 234.15.27.225:3015 and source 200.15.239.128:80</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> E</p>
<p class="ccnaexplanation">Explanation</p>
<p>From A to Corp router: <br />
 + Source: 192.168.10.34: 3015 &amp; Destination: 200.15.239.128:80<br />
 From Corp to WWW Server:<br />
 + Source: 234.15.27.225:3015 &amp; Destination: 200.15.239.128:80<br />
 From WWW Server to Corp:<br />
 + <strong>Source: 200.15.239.128:80 &amp; Destination: 234.15.27.225:3015</strong><br />
 From Corp to Host A:<br />
 + Source: 200.15.239.128:80 &amp; Destination: 192.168.10.34:3015</p>
<p>So the only correct answer is E (from WWW server to Corp)</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-nat-pat-questions/feed</wfw:commentRss>
		<slash:comments>93</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Drag and Drop 1</title>
		<link>http://www.9tut.com/ccna-drag-and-drop-questions</link>
		<comments>http://www.9tut.com/ccna-drag-and-drop-questions#comments</comments>
		<pubDate>Sun, 27 Feb 2011 10:25:21 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=53</guid>
		<description><![CDATA[Here you will find answers to drag and drop Questions Question 1: A dental firm is redesigning the network that connects its three locations. The administrator gave the networking team 192.168.164.0 to use for addressing the entire netwok. After subnetting the address, the team is ready to assign the addresses. The administrator plans to configure [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to drag and drop Questions</p>
<p><!--adsense--></p>
<p class="ccnaquestionsnumber">Question 1:</p>
<p>A dental firm is redesigning the network that connects its three locations. The administrator gave the networking team 192.168.164.0 to use for addressing the entire netwok. After subnetting the address, the team is ready to assign the addresses. The administrator plans to configure ip subnet-zero and use RIP v2 as the routing protocol. As a member of the networking team, you must address the network and at the same time conserver unused addresses for future growth. With those goals in mind, drag the host addresses on the left to the correct router interface. Once of the routers is partially configured. Move your mouse over a router to view its configuration. Not all of the host addresses on the left are necessary.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/vlsm1.jpg" border="0" alt="vlsm1" width="500" height="155" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/vlsm1_solution.jpg" border="0" alt="vlsm1_solution" width="500" height="155" /></p>
<p class="ccnaexplanation">Explanation:</p>
<p>In short, we should start calculating from the biggest network (with 16 hosts) to the smallest one using the formula 2<sup>n</sup> &#8211; 2 (n is the number of bits we need to borrow).Therefore:</p>
<p>16 hosts &lt; 2<sup>5</sup> &#8211; 2 (we need to borrow 5 bits -&gt; /27)</p>
<p>11 hosts &lt; 2<sup>4</sup> &#8211; 2 (borrow 4 bits -&gt; /28)</p>
<p>5 hosts &lt; 2<sup>3</sup> &#8211; 2 (borrow 3 bits -&gt; /29)</p>
<p>From the available ip addresses, we see that each of them has only one suitable solution (they are 192.168.164.149/27,192.168.164.166/28 and 192.168.164.178/29)</p>
<p>The smallest network is the Floss S0/0 which only requires 2 hosts = 2<sup>2</sup> &#8211; 2 (need to borrow 2 bits -&gt;/30). There are 2 suitable answers: 192.168.164.189/30 and 192.168.164.188/30 but notice that 192.168.164.188/30 is the network address so we can not use it (because 188 = 4 * 47) -&gt; we have to choose 192.168.164.189 as the correct solution.</p>
<p>In fact, it is not the formal way to solve a VLSM question so I recommend you to review your CCNA book if you haven&#8217;t grasped it well yet.</p>
<p class="ccnaquestionsnumber">Question 2:</p>
<p>In order to complete a basic switch configuration, drag each switch IOS command on the left to its purpose on the right</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/commanddragdrop.jpg" border="0" alt="commanddragdrop" width="500" height="280" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p>1) enable</p>
<p>2) configure terminal</p>
<p>3) hostname</p>
<p>4) Interface vlan 1</p>
<p>5) no shutdown</p>
<p>6) ip address</p>
<p>7) ip default-gateway</p>
<p class="ccnaquestionsnumber">Question 3:</p>
<p>The Missouri branch office router is connected through its s0 interface to the Alabama Headquarters router s1 interface. The Alabama router has two LANs. Missouri users obtain Internet access through the Headquarters router. The network interfaces in the topology are addressed as follows: <strong>Missouri</strong>: <strong>e0 &#8211; 192.168.35.17/28</strong>; <strong>s0 &#8211; 192.168.35.33/28</strong>; <strong>Alabama</strong>: <strong>e0 &#8211; 192.168.35.49/28</strong>; <strong>e1 &#8211; 192.168.35.65/28</strong>; <strong>s1 &#8211; 192.168.35.34/28</strong>. The accounting server has the address of <strong>192.168.35.66/28</strong>. Match the access list conditions on the left with the goals on the right. (Not all options on the left are used.)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/accesslist1.jpg" border="0" alt="accesslist1" width="500" height="182" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p>1) deny ip 192.168.35.16 0.0.0.15 host 192.168.35.66</p>
<p>2) deny ip 192.168.35.55 0.0.0.0 host 192.168.35.66</p>
<p>3) permit ip 192.168.35.0 0.0.0.255 host 192.168.35.66</p>
<p class="ccnaexplanation">Explanation:</p>
<p>1) The wildcard mask of the command &#8220;deny ip 192.168.35.16 0.0.0.15 host 192.16.35.66&#8243; is 0.0.0.15, which is equal to network mask of 255.255.255.240 = /28. So the access list will deny all traffic from network 192.168.35.16/28 from accessing host 192.16.35.66, which is the IP address of accounting server.</p>
<p>2) The command &#8220;deny ip 192.168.35.55 0.0.0.0 host 192.168.35.66&#8243; will deny host 192.168.35.55, which is a user and belongs to interface e0 of Alabama router (192.168.35.49/28) from accessing accounting server.</p>
<p>3) Because there is an implicit &#8220;deny all&#8221; command at the end of each access list so the command &#8220;permit ip 192.168.35.0 0.0.0.255 host 192.168.35.66&#8243; will only let network 192.168.35.0/24 access accounting server whilst prevent traffic from other networks.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 4:</p>
<p>A host with the address of 192.168.125.34/27 needs to be denied access to all hosts outside its own subnet. To accomplish this, complete the command in brackets, <strong>[access-list 100 deny <em>protocol</em> <em>address</em> <em>mask</em> any]</strong>, by dragging the appropriate options on the left to their correct placeholders on the right.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/accesslist2.jpg" border="0" alt="accesslist2" width="500" height="230" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p>1) ip</p>
<p>2) 192.168.125.34</p>
<p>3) 0.0.0.0</p>
<p>Full command: <span class="pinkandbold">access-list 100 deny ip 192.168.125.34 0.0.0.0</span></p>
<p class="ccnaquestionsnumber">Question 5:</p>
<p>Drag and drop the network user application to the appropriate description of its primary use (not all options are used)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/networkapplication.jpg" border="0" alt="networkapplication" width="550" height="298" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p>1) web browser</p>
<p>2) instant message</p>
<p>3) e-mail</p>
<p>4) database</p>
<p>5) collaboration</p>
<p class="ccnaquestionsnumber">Question 6:</p>
<p>This topology contains 3 routers and 1 switch. Complete the topology.</p>
<table style="background-color: #c0c0c0;" border="0">
<tbody>
<tr style="height: 11px;">
<td style="text-align: left;">Drag the appropriate device icons to the labeled Device</p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>Drag the appropriate connections to the locations labeled Connections.</p>
<p>Drag the appropriate IP addresses to the locations labeled IP address</p>
</td>
</tr>
</tbody>
</table>
<p>(Hint: use the given host addresses and Main router information)</p>
<p>To remove a device or connection, drag it away from the topology.</p>
<p><strong>Use information gathered from the Main router to complete the configuration of any additional routers</strong>. No passwords are required to access the Main router . The config terminal command has been disabled for the HQ router. The router does not require any configuration.</p>
<p>Configure each additional router with the following</p>
<table style="background-color: #a9a9a9;" border="0">
<tbody>
<tr>
<td>Configure the interfaces with the correct IP address and enable the interfaces.</p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>Set the password to allow console access to <strong>consolepw</strong></p>
<p>Set the password to allow telnet access to <strong>telnetpw</strong></p>
<p>Set the password to allow privilege mode access to <strong>privpw</strong></p>
</td>
</tr>
</tbody>
</table>
<p>Note: Because routes are not being added to the configurations, you will not be able to ping through the internetwork.</p>
<p>All devices have cable autosensing capabilities disabled.</p>
<p>All hosts are PC’s</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/assigncableandip.jpg" border="0" alt="assigncableandip" width="507" height="464" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/networkapplication_solution.jpg" border="0" alt="networkapplication_solution" width="507" height="464" /></p>
<p>View full explanation of this question <a href="http://www.9tut.com/66-ccna-implementation-sim" target="_blank">here</a></p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-drag-and-drop-questions/feed</wfw:commentRss>
		<slash:comments>139</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Drag and Drop 2</title>
		<link>http://www.9tut.com/ccna-drag-and-drop-2</link>
		<comments>http://www.9tut.com/ccna-drag-and-drop-2#comments</comments>
		<pubDate>Sat, 26 Feb 2011 10:24:43 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=55</guid>
		<description><![CDATA[Here you will find answers to CCNA Drag and Drop Questions &#8211; Part 2 Question 1 The left describes OSI layers, while the right provides some terms. Drag the items on the right to the proper locations. Answer: Network Layer: 1) IP addresses 2) packets 3) routing Transport Layer: 1) windowing 2) UDP 3) segments [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to CCNA Drag and Drop Questions &#8211; Part 2</p>
<p><!--adsense--></p>
<p><span class="ccnaquestionsnumber">Question 1</span></p>
<p>The left describes OSI layers, while the right provides some terms. Drag the items on the right to the proper locations.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/OSILayers.jpg" border="0" alt="OSILayers.jpg" width="500" height="351" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p><strong>Network Layer:</strong></p>
<p>1) IP addresses<br />
 2) packets<br />
 3) routing</p>
<p><strong>Transport Layer:</strong></p>
<p>1) windowing<br />
 2) UDP<br />
 3) segments</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>The above describes some categories, while the below provides their corresponding router output lines. Drag the above items to the proper locations.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/Layer_Problems%20copy.jpg" border="0" alt="Layer_Problems copy.jpg" width="500" height="295" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p>1) Port operational: Serial0/1 is up, line protocol is up<br />
 2) Layer 2 problem: Serial0/1 is up, line protocol is down<br />
 3) Layer 1 problem: Serial0/1 is down, line protocol is down<br />
 4) Port disabled: Serial0/1 is administrator down, line protocol is down</p>
<p class="ccnaexplanation">Explanation:</p>
<p>A simple way to find out which layer is having problem is to remember this rule: &#8220;the first statement is for Layer 1, the last statement is for Layer 2 and if Layer 1 is down then surely Layer 2 will be down too&#8221;, so you have to check Layer 1 before checking Layer 2. For example, from the output &#8220;Serial0/1 is up, line protocol is down&#8221; we know that it is a layer 2 problem because the first statement (Serial0/1 is up) is good while the last statement (line protocol is down) is bad. For the statement &#8220;Serial0/1 is down, line protocol is down&#8221;, both layers are down so the problem belongs to Layer 1.</p>
<p>There is only one special case with the statement &#8220;&#8230;. is administrator down, line protocol is down&#8221;. In this case, we know that the port is currently disabled and shut down by the administrators.</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>A user is unable to connect to the Internet. Based on the layered approach to troubleshooting and beginning with the lowest layer. Follow the guide and drag the contents to relevant modules.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/Layered_Trobleshooting.jpg" border="0" alt="Layered_Trobleshooting.jpg" width="500" height="192" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p>1) Verify Ethernet cable connection: Step 1<br />
 2) Verify NIC operation: Step 2<br />
 3) Verify IP configuration: Step 3<br />
 4) Verify URL: Step 4</p>
<p class="ccnaexplanation">Explanation:</p>
<p>The question asks us to &#8220;begin with the lowest layer&#8221; so we have to begin with Layer 1: verify physical connection; in this case an Ethernet cable connection. For your information, &#8220;verify Ethernet cable connection&#8221; means that we check if the type of connection (crossover, straight-through, rollover&#8230;) is correct, the RJ45 headers are plugged in, the signal on the cable is acceptable&#8230;</p>
<p>Next we &#8220;verify NIC operation&#8221;. We do this by simply making a ping to the loopback interface 127.0.0.1. If it works then the NIC card (layer 1,2) and TCP/IP stack (layer 3) are working properly.</p>
<p>Verify IP configuration belongs to layer 3. For example, checking if the IP can be assignable for host, the PC&#8217;s IP is in the same network with the gateway&#8230;</p>
<p>Verifying the URL by typing in your browser some popular websites like google.com, microsoft.com to assure that the far end server is not down (it sometimes make we think we can&#8217;t access to the Internet). We are using a URL so this step belongs to layer 7 of the OSI model.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>The left describes the types of cables, while the right describes the purposes of the cables. Drag the items on the left to the proper locations. (Not all items can be used).</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/TypesOfCables.jpg" border="0" alt="TypesOfCables.jpg" width="500" height="128" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p>1) straight-through: switch access port to router<br />
 2) crossover: switch to switch<br />
 3) rollover: PC COM port to switch</p>
<p class="ccnaexplanation">Explanation:</p>
<p>To remember which type of cable you should use, follow these tips:</p>
<p>- To connect <strong>two serial interfaces</strong> of 2 routers we use <strong>serial cable</strong><br />
 &#8211; To specify when we use crossover cable or straight-through cable, we should remember:<br />
 <strong>Group 1:</strong> Router, Host, Server<br />
 <strong>Group 2:</strong> Hub, Switch<br />
 One device in group 1 + One device in group 2: use <strong>straight-through cable</strong><br />
 Two devices in the same group: use <strong>crossover cable</strong></p>
<p>For example: we use straight-through cable to connect switch to router, switch to host, hub to host, hub to server&#8230; and we use crossover cable to connect switch to switch, switch to hub, router to router, host to host&#8230; )</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>The left describes the types of switch ports, while the right describes the features. Drag the options on the right to the proper locations.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/AccessPort_TrunkPort.jpg" border="0" alt="AccessPort_TrunkPort.jpg" width="500" height="351" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p><strong>Access Port:</strong></p>
<p>- Carries traffic for a single VLAN <br />
 &#8211; Uses a straight-through cable to connect a device<br />
 &#8211; Connects an end-user workstation to a switch</p>
<p><strong>Trunk Port:</strong></p>
<p>- Carries traffic for a multiple VLAN <br />
 &#8211; Uses 802.1q to identify traffic from different VLANs<br />
 &#8211; Facilitates interVLAN communications when connected to a Layer 3 device</p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>The above describes the Spanning-Tree Protocol port states, while the below describes their functions. Drag the above items to the proper locations.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/STP_Port_States.jpg" border="0" alt="STP_Port_States.jpg" width="500" height="295" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p>- Learning: populating the MAC address table but not forwarding data frames <br />
 &#8211; Forwarding: sending and receiving data frames<br />
 &#8211; Listening: preparing to forward data frames without populating the MAC address table<br />
 &#8211; Blocking: preventing the use of looped paths</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-drag-and-drop-2/feed</wfw:commentRss>
		<slash:comments>48</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Drag and Drop 3</title>
		<link>http://www.9tut.com/ccna-drag-and-drop-3</link>
		<comments>http://www.9tut.com/ccna-drag-and-drop-3#comments</comments>
		<pubDate>Thu, 24 Feb 2011 10:23:01 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=57</guid>
		<description><![CDATA[Here you will find answers to CCNA Drag and Drop Questions &#8211; Part 3 Question 1 Drag the security features on the left to the specific security risks they help protect against on the right. (Not all options are used) Answer: 1) VTY password: remote access to device console 2) console password: access to the [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to CCNA Drag and Drop Questions &#8211; Part 3</p>
<p><!--adsense--></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Drag the security features on the left to the specific security risks they help protect against on the right. (Not all options are used)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/SecurityFeatures.jpg" border="0" alt="SecurityFeatures.jpg" width="500" height="260" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p>1) VTY password: remote access to device console<br />
 2) console password: access to the console 0 line<br />
 3) access-group: access to connected networks or resources<br />
 4) service password-encryption: viewing of passwords<br />
 5) enable secret: access to privileged mode</p>
<p>The unselected left-box &#8211; CHAP &#8211; is used to <span class="content">verify the identity of the peer by means 	 of a three-way handshake.</span></p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Refer to the exhibit. PC-A is sending packets to the FTP server. Consider the packets as they leave RA interface Fa0/0 forwards RB. Drag the correct frame and packet address to their places in the table.</p>
<p><img src="http://www.9tut.com/images/ccna/draganddrop/ip_mac.jpg" border="0" alt="ip_mac.jpg" width="750" height="434" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p>Source MAC: 0000.0C93.9999<br />
 Destination MAC: 0000.0C89.3333<br />
 Source IP: 172.16.21.7<br />
 Destination IP: 172.16.34.250</p>
<p class="ccnaexplanation">Explanation</p>
<p>Remember these rules:</p>
<p>The IP addresses (of source and destination) of a packet never change during the transportation through the network. For example if PC-A wants to send a packet to PC-Z then the source and destination IP addresses of the packet will be the IP addresses of PC-A and PC-Z no matter how many devices they go through.</p>
<p>The MAC addresses, conversely, will change while passing the devices. The source MAC address is the address of the last sender and the destination MAC address is the address of the next device.</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>As a network administrator, you are required to configure the network security policy. And the policy requires that only one host be permitted to attach dynamically to each switch interface. If that policy is violated, the interface should shut down. Which two commands must the network administrator configure on the 2950 Catalyst switch to meet this policy? Please choose appropriate commands and drag the items to the proper locations.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/switch_port_security.jpg" border="0" alt="switch_port_security.jpg" width="450" height="450" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p>Appropriate commands:</p>
<p>SW(config-if)# switchport port-security maximum 1<br />
 SW(config-if)# switchport port-security violation shutdown</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>The left describes boot sequence, while the right describes the orders. Drag the items on the left to the proper locations.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/BootSequence.jpg" border="0" alt="BootSequence.jpg" width="550" height="226" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p>1) Step 1: The power on self test executes. <br />
 2) Step 2: The bootstrap loader in ROM executes.<br />
 3) Step 3: The IOS is located and loaded based on boot system commands in NVRAM.<br />
 4) Step 4: The configuration file is loaded from NVRAM.<br />
 5) Step 5: If no configuration file is located, the setup dialog initiates.</p>
<p class="ccnaexplanation">Explanation</p>
<p>When a router boots up, it performs a series of steps, called the boot sequence, to test the hardware and load the necessary software. The boot sequence consists of the following steps:</p>
<p>1) Power on self test (POST): tests the hardware to verify that all components of the device are operational and present.<br />
 2) The bootstrap loader in ROM executes: The bootstrap loader is a program in ROM that is used to find where a valid Cisco IOS image is located. <br />
 3) If a valid Cisco IOS image is located, it is loaded.<br />
 4) IOS loads configuration file. Once the IOS image is loaded, it will search for a valid startup configuration in NVRAM.<br />
 5) If a valid startup configuration file cannot be found, the router will load the System Configuration Dialog (sometimes called setup mode). This mode allows you to perform the initial configuration of the router.</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Drag and Drop question. Drag the items to the proper locations.</p>
<p>Routing has been configured on the local router with these commands:<br />
 Local(config)# ip route 0.0.0.0 0.0.0.0 192.168.1.1<br />
 Local(config)# ip route 10.1.0.0 255.255.255.0 192.168.2.2<br />
 Local(config)# ip route 10.1.0.0 255.255.0.0 192.168.3.3</p>
<p>Drag each destination IP address on the top to its correct next hop address at the bottom.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/ip_route.jpg" border="0" alt="ip_route.jpg" width="550" height="509" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p><strong>Next hop 192.168.1.1: </strong><br />
 + 10.2.1.3<br />
 + 10.6.8.4</p>
<p><strong>Next hop 192.168.2.2:</strong><br />
 + 10.1.0.14<br />
 + 10.1.0.123</p>
<p><strong>Next hop 192.168.3.3: </strong><br />
 + 10.1.1.10<br />
 + 10.1.4.6</p>
<p class="ccnaexplanation">Explanation</p>
<p>If we have many entries matching for next hop ip address then the router will choose the one with most specific path to send the packet. This is called the &#8220;longest match&#8221; rule, the route with the most bits in the mask set to &#8220;1&#8243; will be chosen to route packet.</p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>If a Cisco router has learned about network 10.1.1.0 from multiple sources, the router will select and install only one entry into the routing table. Indicate the order of preference that the router will use by dragging the routes on the left to the order of preference category on the right.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/Routing_Priority.jpg" border="0" alt="Routing_Priority.jpg" width="550" height="226" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p>1) <strong>First preference:</strong> S 10.1.1.0 is directly connected, Serial1 <br />
 2)<strong> Second preference</strong>: S 10.1 1.0/24 [1/0] via 10.1.2.2<br />
 3) <strong>Third preference: </strong>D 10.1.1.0/24 [90/2172416] via 10.1.5.5, Serial0<br />
 4) <strong>Fourth preference:</strong> O 10.1.1.0/24 [ 110/789] via 10.1.3.1, Serial0<br />
 5) <strong>Fifth preference:</strong> R 10.1.1.0/24 [120/3] via 10.1.3.1, Senal0</p>
<p class="ccnaexplanation">Explanation</p>
<p>Administrative distance is the first criterion that a router uses to determine    which routing protocol to use if two protocols provide route information for    the same destination. It is a measure of the trustworthiness of the source of    the routing information. The smaller the administrative distance value, the more reliable    the protocol.</p>
<p>In this question, notice that the destination of all routes is 10.1.1.0/24 so we need to use Administrative distance of each routing protocol to specify the priority of each route. Below lists the Administrative Distance default values of popular routing protocols:</p>
<p>+ Directly connected: 0<br />
 + Static route: 1<br />
 + EIGRP (symbolize by &#8220;D&#8221;): 90<br />
 + OSPF (symbolize by &#8220;O&#8221;): 110<br />
 + RIP (symbolize by &#8220;R&#8221;): 120</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-drag-and-drop-3/feed</wfw:commentRss>
		<slash:comments>69</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Drag and Drop 4</title>
		<link>http://www.9tut.com/ccna-drag-and-drop-4</link>
		<comments>http://www.9tut.com/ccna-drag-and-drop-4#comments</comments>
		<pubDate>Wed, 23 Feb 2011 10:22:23 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=59</guid>
		<description><![CDATA[Here you will find answers to CCNA Drag and Drop Questions &#8211; Part 4 Question 1 Drag the function on the left to the matching security appliance or application on the right. (Not all functions are used) Answer: 1) antispyware: detects software designed to capture sensitive information and removes it from the computer 2) antivirus: [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to CCNA Drag and Drop Questions &#8211; Part 4</p>
<p><!--adsense--></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Drag the function on the left to the matching security appliance or application on the right. (Not all functions are used)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/SecurityAppliance.jpg" border="0" alt="SecurityAppliance.jpg" width="500" height="205" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p>1) antispyware: detects software designed to capture sensitive information and removes it from the computer<br />
 2) antivirus: prevents known malicious programs from being installed on workstations<br />
 3) IDS: identifies malicious network traffic and alerts network personnel<br />
 4) firewall: filters traffic based on source and destination IP address or traffic type</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Drag the Frame Relay acronym on the left to match its definition on the right. (Not all acronyms are used)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/FrameRelayAcronym.jpg" border="0" alt="FrameRelayAcronym.jpg" width="500" height="290" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p>1) a router is this type of device: DTE<br />
 2) the most common type of virtual circuit: PVC<br />
 3) provides status messages between DTE and DCE devices: LMI<br />
 4) identifies the virtual connection between the DTE and the switch: DLCI</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>The left describes  some types of connections while the right describes some types of  cables. Drag the items on the left to the proper locations.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/cabletypes.jpg" border="0" alt="cabletypes" /></p>
<p class="ccnacorrectanswers"> </p>
<p class="ccnacorrectanswers">Answer:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/ccna_cabletypes_answer.jpg" border="0" alt="ccna_cabletypes_answer" width="550" height="290" /></p>
<p class="ccnaexplanation">Explanation:</p>
<p>To specify when we use  crossover cable or straight-through cable, we should remember:<br />
 <strong>Group  1:</strong> Router, Host(PC), Server<br />
 <strong>Group 2:</strong> Hub, Switch<br />
 One  device in group 1 + One device in group 2: use <strong>straight-through  cable</strong><br />
 Two devices in the same group: use <strong>crossover cable</strong></p>
<p>For  example: we use straight-through cable to connect switch to router,  switch to host, hub to host, hub to server&#8230; and we use crossover cable  to connect switch to switch, switch to hub, router to router, host to  host&#8230; ).</p>
<p>+ We can connect a modem to router auxiliary port using  <span class="content">a rollover cable. Recall that the</span> purpose  of the router&#8217;s auxiliary port is for connecting to a modem and most  Cisco routers have a second port on the back called the auxiliary port.  We can use this port in case of a far-away router goes down, the  administrator can have someone in the area go to the router, plug in a  modem and access to the router remotely (if using the console port, we  have to go to the site to work with that router).</p>
<p>+ We can connect  a PC serial port to a switch/router console port through the RJ-45 to  DB-9 or RJ-45 to DB-25 adapter (at the PC end), depending on the  computer.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>The above provides some  descriptions, while the below provides some routing protocols. Drag the  above items to the proper locations.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/ccna_EIGRP_OSPF.jpg" border="0" alt="ccna_EIGRP_OSPF" width="550" height="349" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/ccna_EIGRP_OSPF_answer.jpg" border="0" alt="ccna_EIGRP_OSPF_answer" /></p>
<p><br class="spacer_" /></p>
<p class="ccnaexplanation">Explanation:</p>
<p>Enhanced Interior Gateway  Routing Protocol (EIGRP) is a Cisco proprietary routing protocol, so it  is vendor-specific. By default, EIGRP internal routes have an  administrative distance value of 90.</p>
<p>OSPF uses cost as its metric.  By default, the cost of an interface is calculated based on bandwidth  with the formula cost= 10000 0000/bandwith (in bps). OSPF elects a DR on  each broadcast and nonbroadcast multiaccess networks (like Ethernet and  Frame Relay environments, respectively). It doesn&#8217;t elect a DR on  point-to-point link (like a serial WAN).</p>
<p><span class="ccnaquestionsnumber">Question 5</span></p>
<p>As a CCNA  candidate, you are required to have a firm understanding of the OSI  model. At which layers of the OSI model do Wide Area Networks operate  in? Please drag the items to the proper locations.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/WANOSI.jpg" border="0" alt="WANOSI.jpg" width="448" height="315" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/WANOSI_answer.jpg" border="0" alt="WANOSI_answer.jpg" width="448" height="315" /></p>
<p class="ccnaexplanation">Explanation</p>
<p>WAN  operates in the two lowest layers which are Data Link and Physical  layers.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-drag-and-drop-4/feed</wfw:commentRss>
		<slash:comments>56</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Drag and Drop 5</title>
		<link>http://www.9tut.com/ccna-drag-and-drop-5</link>
		<comments>http://www.9tut.com/ccna-drag-and-drop-5#comments</comments>
		<pubDate>Wed, 23 Feb 2011 10:21:58 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=567</guid>
		<description><![CDATA[Here you will find answers to Drag and Drop Questions &#8211; Part 5 Question 1 Drag the Cisco default administrative distance to the appropriate routing protocol or route (Not all options are used) Answer: + RIP: 120 + OSPF: 110 + static route referencing IP address of next hop: 1 + internal EIGRP route: 90 [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to Drag and Drop Questions &#8211; Part 5</p>
<p><!--adsense--></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Drag the Cisco default administrative distance to the appropriate routing protocol or route (Not all options are used)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/Default_Administrative_Distance.jpg" alt="Default_Administrative_Distance.jpg" width="550" height="350" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p>+ RIP: 120<br />
 + OSPF: 110<br />
 + static route referencing IP address of next hop: 1<br />
 + internal EIGRP route: 90<br />
 + directly connected network: 0</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Drag the term on the left to its definition on the right (not all options are used)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/some_rules.jpg" alt="some_rules.jpg" width="650" height="266" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p>+ <strong>poison reverse</strong>: A router learns from its neighbor  that a route is down and the router sends an update back to the neighbor  with an infinite metric to that route<br />
 + <strong>LSA</strong>: The packets flooded when a topology change  occurs, causing network routers to update their topological databases  and recalculate routes<br />
 + <strong>split horizon</strong>: This prevents sending information  about a routeback out the same interface that originally learned about  the route<br />
 +<strong> holddown timer</strong>: For a given period, this causes the  router to ignore any updates with poorer metrics to a lost network</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Drag the description on the left to the correct router mode on the right</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/Cisco_router_modes copy.jpg" alt="Cisco_router_modes copy.jpg" width="550" height="226" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p>+ user EXEC mode:  limited to basic monitoring commands<br />
 + privileged EXEC mode: provide access to all other router commands<br />
 + global configuration mode: commands that affect the entire system<br />
 + specific configuration mode: commands that affect interfaces/processes only<br />
 + setup mode: interactive configuration dialog</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Drag each definition on the left to the matching term on the right</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/draganddrop/Cisco_metric_parameters.jpg" alt="Cisco_metric_parameters.jpg" width="550" height="266" /></p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer:</p>
<p>+ cost: a configurable value based by default on the bandwidth of the interface<br />
 + load: the amount of activity on a network resource<br />
 + bandwidth: the data capacity of a link<br />
 + hop count: the number of point-to-point links in a transmission path<br />
 + reliability: usually refers to the bit error rate of each network link<br />
 + delay: the amount of time required to move a packet from source to destination</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-drag-and-drop-5/feed</wfw:commentRss>
		<slash:comments>52</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Switch Questions</title>
		<link>http://www.9tut.com/ccna-switch-questions</link>
		<comments>http://www.9tut.com/ccna-switch-questions#comments</comments>
		<pubDate>Tue, 22 Feb 2011 16:32:23 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=926</guid>
		<description><![CDATA[Here you will find answers about Switch Questions &#8211; Part 1 Question 1 Which two commands can be used to verify a trunk link configuration status on a Cisco switch? (choose two) A. show interfaces trunk B. show interfaces switchport C. show ip interface brief D. show interfaces vlan Answer: A B Explanation The &#8220;show [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers about Switch Questions &#8211; Part 1</p>
<p><!--adsense--></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Which two commands can be used to verify a trunk link configuration status on a Cisco switch? (choose two)</p>
<p>A. show interfaces trunk<br />
 B. show interfaces switchport<br />
 C. show ip interface brief<br />
 D. show interfaces vlan</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A B</p>
<p class="ccnaexplanation">Explanation</p>
<p>The &#8220;show interfaces trunk&#8221; command and &#8220;show interfaces switchport&#8221; command can be used to verify the status of an interface (trunking or not). The outputs of these commands are shown below (port Ethernet 1/0 has been configured as trunk):</p>
<p style="text-align: left;"><img src="http://www.9tut.com/images/ccna/Switch/Switch_show_interfaces_trunk.jpg" alt="Switch_show_interfaces_trunk.jpg" width="595" height="157" /></p>
<p style="text-align: left;"><img src="http://www.9tut.com/images/ccna/Switch/show_interfaces_switchport.jpg" alt="show_interfaces_switchport.jpg" width="404" height="256" /></p>
<p>The &#8220;show ip interface brief&#8221; command only gives us information about the IP address, the status (up/down) of an interface:</p>
<p><img src="http://www.9tut.com/images/ccna/Switch/show_ip_interface_brief.jpg" alt="show_ip_interface_brief.jpg" width="642" height="136" /></p>
<p>The &#8220;show interfaces vlan&#8221; command only gives us information about that VLAN, not about which ports are the trunk links:</p>
<p><img src="http://www.9tut.com/images/ccna/Switch/show_interfaces_vlan.jpg" alt="show_interfaces_vlan.jpg" width="571" height="267" /></p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Refer to the exhibit. The following commands are executed on interface fa0/1 of 2950Switch.</p>
<p>2950Switch(config-if)#switchport port-security<br />
 2950Switch(config-if)#switchport port-security mac-address sticky<br />
 2950Switch(config-if)#switchport port-security maximum 1</p>
<p>The Ethernet frame that is shown arrives on interface fa0/1. What two functions will occur when this frame is received by 2950Switch? (Choose two)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Switch/switch_port_security.jpg" alt="switch_port_security.jpg" width="600" height="332" /></p>
<p>A. The MAC address table will now have an additional entry of fa0/1 FFFF.FFFF.FFFF.<br />
 B. Only host A will be allowed to transmit frames on fa0/1.<br />
 C. This frame will be discarded when it is received by 2950Switch.<br />
 D. All frames arriving on 2950Switch with a destination of 0000.00aa.aaaa will be forwarded out fa0/1.<br />
 E. Hosts B and C may forward frames out fa0/1 but frames arriving from other switches will not be forwarded out fa0/1.<br />
 F. Only frames from source 0000.00bb.bbbb, the first learned MAC address of 2950Switch, will be forwarded out fa0/1.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B D</p>
<p class="ccnaexplanation">Explanation</p>
<p>Please read the explanation at<a href="http://www.9tut.net/icnd2/icnd2-operations" target="_blank"> http://www.9tut.net/icnd2/icnd2-operations</a></p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Which Cisco Catalyst feature automatically disables the port in an operational PortFast upon receipt of a BPDU?</p>
<p>A. BackboneFast<br />
 B. UplinkFast<br />
 C. Root Guard<br />
 D. BPDU Guard<br />
 E. BPDU Filter</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation</p>
<p>We only enable PortFast feature on access ports (ports connected to end stations). But if someone does not know he can accidentally plug that port to another switch and a loop may occur when BPDUs are being transmitted and received on these ports.</p>
<p>With BPDU Guard, when a PortFast receives a BPDU, it will be shut down to prevent a loop -> D is correct.</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Why will a switch never learn a broadcast address?</p>
<p>A. Broadcast frames are never sent to switches.<br />
 B. Broadcast addresses use an incorrect format for the switching table.<br />
 C. A broadcast address will never be the source address of a frame.<br />
 D. Broadcasts only use network layer addressing.<br />
 E. A broadcast frame is never forwarded by a switch.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Which three statements accurately describe layer 2 Ethernet switches? (choose three)</p>
<p>A. Microsegmentation decreases the number of collisions on the network.<br />
 B. If a switch receives a frame for an unknown destination.it uses ARP to resolve the address.<br />
 C. Spanning Tree Protocol allows switches to automatically share vlan information.<br />
 D. In a property functioning network with redundant switched paths, each switched segment will contain one root bridge with all its ports in the forwarding state. All other switches in that broadcast domain will have only one root port.<br />
 E. Establishing vlans increases the number of broadcast domains.<br />
 F. Switches that are configured with vlans make forwarding decisions based on both layer 2 and layer 3 address information.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A D E</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>Switch ports operating in which two roles will forward traffic according to the IEEE 802.1w standard? (Choose two)</p>
<p>A. alternate <br />
 B. backup<br />
 C. designated<br />
 D. disabled<br />
 E. root</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>C E</p>
<p class="ccnaexplanation">Explanation</p>
<p>IEEE 802.1w is the standard of Rapid Spanning Tree Protocol (RSTP). There are 5 port roles in this standard: Root port, Designated port, Alternative port, Backup port and Disabled port. In these 5 port roles, only Root port and Designated port can forward traffic.</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>Select the action that results from executing these commands:</p>
<p>Switch(config-if)# switchport port-security <br />
 Switch(config-if)# switchport port-security mac-address sticky</p>
<p>A. A dynamically learned MAC address is saved in the startup-configuration file.<br />
 B. A dynamically learned MAC address is saved in the running-configuration file.<br />
 C. A dynamically learned MAC address is saved in the VLAN database.<br />
 D. Statically configured MAC addresses are saved in the startup-configuration file if frames from that address are received.<br />
 E. Statically configured MAC addresses are saved in the running-configuration file if frames from that address are received.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>The full syntax of the second command is:</p>
<p><strong>switchport port-security mac-address sticky [MAC]</strong></p>
<p>If we don&#8217;t specify the MAC address (like in this question) then the switch will dynamically learn the attached MAC Address and place it into your running-configuration -> B is correct.</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>What is valid reason for a switch to deny port access to new devices when port security is enabled?</p>
<p>A. The denied MAC addresses have already been learned or configured on another secure interface in the same VLAN.<br />
 B. The denied MAC address are statically configured on the port.<br />
 C. The minimum MAC threshold has been reached.<br />
 D. The absolute aging times for the denied MAC addresses have expired.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A</p>
<p class="ccnaexplanation">Explanation</p>
<p>A security violation occurs in either of these situations:</p>
<p>* When the maximum number of secure MAC addresses is reached on a secure port and the source MAC address of the ingress traffic is different from any of the identified secure MAC addresses, port security applies the configured violation mode.</p>
<p>* If traffic with a secure MAC address that is configured or learned on one secure port attempts to access another secure port in the same VLAN, applies the configured violation mode.</p>
<p>From the second statement we can figure out A is the correct answer. But for your information we will discuss other answers as well.</p>
<p>Answer B is not correct because we can&#8217;t configured which MAC address will be denied. We can only configure which MAC is allowed.</p>
<p>We can only configure the maximum MAC threshold, not the minimum threshold -> C is not correct.</p>
<p>The aging times are only configured for allowed MAC addresses, not for denied MAC -> D is correct.</p>
<p>For your information about aging time:</p>
<p>When the aging type is configured with the absolute keyword, all the dynamically learned secure addresses age out when the aging time expires</p>
<p>This is how to configure the secure MAC address aging type on the port:</p>
<p><strong>Router(config-if)# switchport port-security aging type absolute</strong></p>
<p>and configure the aging time (aging time = 120 minutes)</p>
<p><strong>Router(config-if)# switchport port-security aging time 120 </strong></p>
<p>When this command is used, all the dynamically learned secure addresses age out when the aging time expires</p>
<p>(Reference: <a href="http://www.cisco.com/en/US/docs/switches/lan/catalyst6500/ios/12.2SX/configuration/guide/port_sec.html" target="_blank">http://www.cisco.com/en/US/docs/switches/lan/catalyst6500/ios/12.2SX/configuration/guide/port_sec.html</a>)</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>A network administrator needs to configure port security on a switch. Which two statements are true? (Choose two)</p>
<p>A. The network administrator can apply port security to dynamic access ports<br />
 B. The network administrator can configure static secure or sticky secure mac addresses in the voice vlan.<br />
 C. The sticky learning feature allows the addition of dynamically learned addresses to the running configuration.<br />
 D. The network administrator can apply port security to EtherChannels.<br />
 E. When dynamic mac address learning is enabled on an interface, the switch can learn new addresses up to the maximum defined.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C E</p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>Refer to the exhibit. Which statement is true?</p>
<p><img src="http://www.9tut.com/images/ccna/Switch/show_spanning-tree_vlan_20.jpg" alt="show_spanning-tree_vlan_20.jpg" width="635" height="320" /></p>
<p>A. The Fa0/11 role confirms that SwitchA is the root bridge for VLAN 20.<br />
 B. VLAN 20 is running the Per VLAN Spanning Tree Protocol.<br />
 C. The MAC address of the root bridge is 0017.596d.1580.<br />
 D. SwitchA is not the root bridge, because not all of the interface roles are designated.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation</p>
<p>Only non-root bridge can have root port. Fa0/11 is the root port so we can confirm this switch is not the root bridge -> A is not correct.</p>
<p>From the output we learn this switch is running Rapid STP, not PVST -> B is not correct.</p>
<p>0017.596d.1580 is the MAC address of this switch, not of the root bridge. The MAC address of the root bridge is 0017.596d.2a00 -> C is not correct.</p>
<p>All of the interface roles of the root bridge are designated. SwitchA has one Root port and 1 Alternative port so it is not the root bridge -> D is correct.</p>
<p class="ccnaquestionsnumber">Question 11</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Switch/Switch_remote_access.jpg" alt="Switch_remote_access.jpg" width="380" height="230" /></p>
<p>A technician has installed SwithchB and needs to configure it for remote access from the management workstation connected SwitchA. Which set of commands is required to accomplish this task?</p>
<p>A. <br />
 SwitchB(config)#interface FastEthernet 0/1<br />
 SwitchB(config)#ip address 192.168.8.252 255.255.255.0 <br />
 SwitchB(config)#no shutdown</p>
<p>B. <br />
 SwitchB(config)#ip default-gateway 192.168.8.254 <br />
 SwitchB(config)#interface vlan 1 <br />
 SwitchB(config)#ip address 192.168.8.252 255.255.255.0 <br />
 SwitchB(config)#no shutdown</p>
<p>C. <br />
 SwitchB(config)#interface vlan 1<br />
 SwitchB(config)#ip address 192.168.8.252 255.255.255.0 <br />
 SwitchB(config)#ip default-gateway 192.168.8.254 255.255.255.0 <br />
 SwitchB(config)#no shutdown</p>
<p>D. <br />
 SwitchB(config)#ip default-network 192.168.8.254 <br />
 SwitchB(config)#interface vlan 1 <br />
 SwitchB(config)#ip address 192.168.8.252 255.255.255.0 <br />
 SwitchB(config)#no shutdown</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>To remote access to SwitchB, it must have a management IP address on a VLAN on that switch. Traditionally, we often use VLAN 1 as the management VLAN (but in fact it is not secure).</p>
<p>In the exhibit, we can recognize that the Management Workstation is in a different subnet from the SwitchB. For intersubnetwork communication to occur, you must configure at least one default gateway. This default gateway is used to forward traffic originating from the switch only, not to forward traffic sent by devices connected to the switch.</p>
<p class="ccnaquestionsnumber">Question 12</p>
<p>A network administrator wants to ensure that only the server can connect to port Fa0/1 on a Catalyst switch. The server is plugged into the switch Fa0/1 port and the network administrator is about to bring the server online. What can the administrator do to ensure that only the MAC address of the server is allowed by switch port Fa0/1? (Choose two)</p>
<p>A. Configure port Fa0/1 to accept connections only from the static IP address of the server.<br />
 B. Employ a proprietary connector type on Fa0/1 that is incompatible with other host connectors.<br />
 C. Configure the MAC address of the server as a static entry associated with port Fa0/1.<br />
 D. Bind the IP address of the sewer to its MAC address on the switch to prevent other hosts from spoofing the server IP address. <br />
 E. Configure port security on Fa0/1 to reject traffic with a source MAC address other than that of the server.<br />
 F. Configure an access list on the switch to deny server traffic from entering any port other than Fa0/1.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C E</p>
<p class="ccnaexplanation">Explanation</p>
<p>We can&#8221;configure the MAC address of the server as a static entry associated with port Fa0/1&#8243; with this command:</p>
<p><span class="blueandbold">Switch(config-if)#</span><span class="pinkandbold">switchport port-security mac-address sticky 0000.00AA.AAAA.AAAA</span></p>
<p>and &#8220;configure port security on Fa0/1 to reject traffic with a source MAC address other than that of the server&#8221; with these commands:</p>
<p><span class="blueandbold">Switch(config-if)#</span><span class="pinkandbold">switchport port-security maximum 1</span> (only allow 1 MAC address and that is the static MAC address)</p>
<p>Also we often define what will the switch do if the security is violated:</p>
<p><span class="blueandbold">Switch(config-if)#</span><span class="pinkandbold">switchport port-security violation shutdown</span></p>
<p class="ccnaquestionsnumber">Question 13</p>
<p>The network security policy requires that only one host be permitted to attach dynamically to each switch interface. If that policy is violated, the interface should shut down. Which two commands must the network administrator configure on the 2950 Catalyst switch to meet this policy? (Choose two)</p>
<p>A. Switch1(config-if)#switchport port-security maximum 1<br />
 B. Switch1(config)#mac-address-table secure<br />
 C. Switch1(config)#access-list 10 permit ip host<br />
 D. Switch1(config-if)#switchport port-security violation shutdown<br />
 E. Switch1(config-if)#ip access-group 10</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A D</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-switch-questions/feed</wfw:commentRss>
		<slash:comments>116</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Switch Questions 2</title>
		<link>http://www.9tut.com/ccna-switch-questions-2</link>
		<comments>http://www.9tut.com/ccna-switch-questions-2#comments</comments>
		<pubDate>Tue, 22 Feb 2011 16:30:39 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=936</guid>
		<description><![CDATA[Here you will find answers to Switch Questions &#8211; Part 2 Question 1 In which circumstance are multiple copies of the same unicast frame likely to be transmitted in a switched LAN? A. after broken links are re-established B. in an improperly implemented redundant topology C. when upper-layer protocols require high reliability D. during high [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to Switch Questions &#8211; Part 2</p>
<p><!--adsense--></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>In which circumstance are multiple copies of the same unicast frame likely to be transmitted in a switched LAN?</p>
<p>A. after broken links are re-established <br />
 B. in an improperly implemented redundant topology <br />
 C. when upper-layer protocols require high reliability <br />
 D. during high traffic periods <br />
 E. when a dual ring topology is in use</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B</p>
<p class="ccnaexplanation">Explanation</p>
<p>If we connect two switches via 2 or more links and do not enable STP on these switches then a loop (which creates multiple copies of the same unicast frame) will occur. It is an example of an improperly implemented redundant topology.</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>An administrator would like to configure a switch over a virtual terminal connection from locations outside of the local LAN. Which of the following are required in order for the switch to be configured from a remote location? (Choose two)</p>
<p>A. The switch must be configured with an IP address, subnet mask, and default gateway.<br />
 B. The switch must be connected to a router over a VLAN trunk.<br />
 C. The switch must be reachable through a port connected to its management VLAN.<br />
 D. The switch console port must be connected to the Ethernet LAN.<br />
 E. The switch management VLAN must be created and have a membership of at least one switch port. <br />
 F. The switch must be fully configured as an SNMP agent.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A C</p>
<p class="ccnaexplanation">Explanation</p>
<p>In order to remote access to a switch from outside of the local LAN (in a different subnet) we have to:</p>
<p>+ Configure an IP address on a VLAN on that switch, this VLAN is known as the management VLAN (it is usually VLAN 1)<br />
 + Specify the default gateway for that switch so that it can send traffic to this gateway</p>
<p>Below shows an example of configuring remote access for a switch (suppose the management VLAN on the switch is 192.168.1.10/24 and the default-gateway IP address is 192.168.1.254)</p>
<p>Switch(config)#ip default-gateway 192.168.1.254<br />
 Switch(config)#interface vlan 1<br />
 Switch(config)#ip address 192.168.1.10 255.255.255.0<br />
 Switch(config)#no shutdown</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Refer to the exhibit. A junior network administrator was given the task of configuring port security on SwitchA to allow only PC_A to access the switched network through port fa0/1. If any other device is detected, the port is to drop frames from this device. The administrator configured the interface and tested it with successful pings from PC_A to RouterA, and then observes the output from these two show commands.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Switch/show_port-security_interface_fa0_1.jpg" alt="show_port-security_interface_fa0_1.jpg" width="589" height="437" /></p>
<p>Which two of these changes are necessary for SwitchA to meet the requirements? (Choose two)</p>
<p>A. Port security needs to be globally enabled.<br />
 B. Port security needs to be enabled on the interface.<br />
 C. Port security needs to be configured to shut down the interface in the event of a violation.<br />
 D. Port security needs to be configured to allow only one learned MAC address.<br />
 E. Port security interface counters need to be cleared before using the show command.<br />
 F. The port security configuration needs to be saved to NVRAM before it can become active.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B D</p>
<p class="ccnaexplanation">Explanation</p>
<p>As we see in the output, the &#8220;Port Security&#8221; is in &#8220;Disabled&#8221; state (line 2 in the output). To enable Port security feature, we must enable it on that interface first with the command:</p>
<p><span class="blueandbold">SwitchA(config-if)#</span><span class="pinkandbold">switchport port-security</span></p>
<p>-&gt; B is correct.</p>
<p>Also from the output, we learn that the switch is allowing 2 devices to connect to it (switchport port-security maximum 2) but the question requires allowing only PC_A to access the network so we need to reduce the maximum number to 1 -&gt; D is correct.</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>A company implements video conferencing over IP on their Ethernet LAN. The users notice that the network slows down, and the video either stutters or foils completely. What is the most likely reason for this?</p>
<p>A. minimum cell rate (MCR)<br />
 B. quality of service (QoS)<br />
 C. modulation<br />
 D. packet switching exchange (PSE)<br />
 E. reliable transport protocol (RTP)</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>If the QoS is not configured correctly on the network (for example configure your network&#8217;s bandwidth below the bandwidth assigned by your ISP) can slow down all your traffic.</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Computer 1 is consoles into switch A. Telnet connections and pings run from the command prompt on switch A fail. Which of the following could cause this problem?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Switch/Switch_show_run.jpg" alt="Switch_show_run.jpg" width="290" height="270" /></p>
<p>A. switch A does not have a cdp entry for switch B or router JAX <br />
 B. switch A does not have an IP address<br />
 C. port 1 on switch A should be an access port rather than a trunk port<br />
 D. switch A is not directly connected to router JAX<br />
 E. switch A does not have a default gateway assigned</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>It&#8217;s a hard question to answer although it looks simple! From the output above we are sure that switch A does not have an IP address (on both Fa0/1 and on VLAN 1) so it can not ping or telnet to any other device -&gt; B is correct.</p>
<p>Another answer seems to be correct is answer E &#8211; switch A does not have a default gateway assigned. We know that Switch A can not telnet to other device outside its subnet without having a default gateway. But the question only says &#8220;Telnet connections and pings run from the command prompt on switch A fail&#8221; without telling us where Switch A is trying to telnet or ping to. If it tries to connect to the outside network then E is correct. If it only want to connect to a device inside its subnet then a default gateway is not necessary.</p>
<p>So the best answer for this question is B!</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>Refer to the exhibit. Give this output for SwitchC, what should the network administrator&#8217;s next action be?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Switch/Switch_show_interface.jpg" alt="Switch_show_interface.jpg" width="425" height="410" /></p>
<p>A. Check the trunk encapsulation mode for SwitchC&#8217;s fa0/1 port.<br />
 B. Check the duplex mode for SwitchC’s fa0/1 port.<br />
 C. Check the duplex mode for SwitchA’s fa0/2 port.<br />
 D. Check the trunk encapsulation mode for SwitchA’s fa0/2 port.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>C</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>Refer to the graphic</p>
<p style="text-align: center;"><img src="../images/ccna/Switch/Switch_host_connection.jpg" alt="Switch_host_connection.jpg" width="350" height="180" /></p>
<p>A host is connected to switch port Fa0/3 with a crossover cable.  However, the port indicator on switch port Fa0/3 is not on, and the host  can not communicate with hosts that belong to VLAN2 on the same switch.  Based on the information given, where is the problem?</p>
<p>A. The switch has been assigned an incorrect subnet mask T1 <br />
 B. Switch port Fa0/3 is not configured as a trunk port <br />
 C. Switch port Fa0/3 has been blocked by STP <br />
 D. The switch and the hosts must be in the same subnet <br />
 E. The cable type is wrong</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> E</p>
<p class="ccnaexplanation">Explanation</p>
<p>To specify when we use crossover cable or straight-through cable, we should remember:<br />
 <strong>Group 1:</strong> Router, Host, Server<br />
 <strong>Group 2:</strong> Hub, Switch<br />
 One device in group 1 + One device in group 2: use <strong>straight-through</strong> cable<br />
 Two devices in the same group: use <strong>crossover </strong>cable</p>
<p>In this case we connect a switch and a host so we need a straight-through cable -&gt; E is correct.</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>Refer to the exhibit. Some 2950 series switches are connected to the conference area of the corporate headquarters network. The switches provide two to three jacks per conference room to host laptop connections for employees who visit the headquarters office. When large groups of employees come from other locations, the network administrator often finds that hubs have been connected to wall jacks in the conference area although the ports on the access layer switches were not intended to support multiple workstations.</p>
<p>What action could the network administrator take to prevent access by multiple laptops through a single switch port and still leave the switch functional for its intended use?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Switch/access_layer_switches.jpg" alt="access_layer_switches.jpg" width="538" height="369" /></p>
<p>A. Configure static entries in the switch MAC address table to include the range of addresses used by visiting employees.<br />
 B. Configure an ACL to allow only a single MAC address to connect to the switch at one time.<br />
 C. Use the mac-address-table 1 global configuration command to limit each port to one source MAC address.<br />
 D. Implement Port Security on all interfaces and use the port-security maximum 1 command to limit port access to a single MAC address<br />
 E. Implement Port Security on all interfaces and use the port-security mac-address sticky command to limit access to a single MAC address<br />
 F. Implement Port Security at global configuration mode and use the port-security maximum 1 command to allow each switch only one attached hub</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation</p>
<p>The Port Security filters frames based on its MAC so it can effectively prevent people connecting to the switch via hubs.</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>Which of the following statements are true regarding bridges and switches? (Choose 3)</p>
<p>A. Switches are primarily software based while bridges are hardware based.<br />
 B. Both bridges and switches forward Layer 2 broadcasts.<br />
 C. Bridges are frequently faster than switches.<br />
 D. Switches have a higher number of ports than most bridges.<br />
 E. Bridges define broadcast domains while switches define collision domains.<br />
 F. Both bridges and switches make forwarding decisions based on Layer 2 addresses.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B D F</p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>A network administrator must configure 200 switch ports to accept  traffic from only the currently attached host devices. What would be the  most efficient way to configure MAC-level security on all these ports?</p>
<p>A. Visually verify the MAC addresses and then telnet to the switches to enter the switchport-port security mac-address command.<br />
 B. Have end users e-mail their MAC addresses. Telnet to the switch to enter the switchport-port security mac-address command.<br />
 C. Use the switchport port-security MAC address sticky command on all the switch ports that have end devices connected to them.<br />
 D. Use show mac-address-table to determine the addresses that are  associated with each port and then enter the commands on each switch for  MAC address port-security.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>We can use the &#8220;interface range&#8221; command (for example &#8220;interface range FastEthernet 0/1 &#8211; 48&#8243;) to configure many ports as the same time and use the &#8220;port-security MAC address sticky&#8221; command (without a specific MAC address) to dynamically learn the attached MAC Address and place it into the switch&#8217;s running-configuration -&gt; C is correct.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-switch-questions-2/feed</wfw:commentRss>
		<slash:comments>75</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Switch Questions 3</title>
		<link>http://www.9tut.com/ccna-switch-questions-3</link>
		<comments>http://www.9tut.com/ccna-switch-questions-3#comments</comments>
		<pubDate>Tue, 22 Feb 2011 02:55:30 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=944</guid>
		<description><![CDATA[Here you will find answers to Switch Questions &#8211; Part 3 Question 1 Which of the following are true regarding bridges and switches? (Choose two) A. Bridges are faster than switches because they have fewer ports. B. A switch is a multiport bridge. C. Bridges and switches learn MAC addresses by examining the source MAC [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to Switch Questions &#8211; Part 3</p>
<p><!--adsense--></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Which of the following are true regarding bridges and switches? (Choose two)</p>
<p>A. Bridges are faster than switches because they have fewer ports.<br />
 B. A switch is a multiport bridge.<br />
 C. Bridges and switches learn MAC addresses by examining the source MAC address of each frame received.<br />
 D. A bridge will forward a broadcast but a switch will not.<br />
 E. Bridges and switches increase the size of a collision domain.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B C</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Which two commands correctly verily whether port security has been  configured on port FastEthernet 0/12 on a switch? (Choose two)</p>
<p>A. SW1# show switchport port-security interface FastEthernet 0/12<br />
 B. SW1# show switchport port-secure interface FastEthernet 0/12<br />
 C. SW1# show port-security interface FastEthernet 0/12<br />
 D. SW1# show running-config</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>C D</p>
<p class="ccnaexplanation">Explanation</p>
<p>We can verify whether port security has been configured by using the &#8220;show running-config&#8221; or &#8220;show port-security interface <em>&lt;interface&gt;</em>&#8221; for more detail. An example of the output of &#8220;show port-security interface &lt;interface&gt;&#8221; command is shown below:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Switch/show_port-security_interface.jpg" alt="show_port-security_interface.jpg" width="382" height="226" /></p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Assuming the default switch configuration which vlan range can be added modified and removed on a Cisco switch?</p>
<p>A. 2 through 1001 <br />
 B. 1 through 1001 <br />
 C. 1 through 1002 <br />
 D. 2 through 1005</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaexplanation">Explanation</p>
<p>VLAN 1 is the default VLAN on Cisco switch. It always exists and can not be added, modified or removed.</p>
<p>VLANs 1002-1005 are default VLANs for FDDI &amp; Token Ring and they can&#8217;t be deleted or used for Ethernet.</p>
<p><img src="http://www.9tut.com/images/ccna/Switch/show_vlan.jpg" alt="show_vlan.jpg" width="560" height="348" /></p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Refer to the exhibit. This command is executed on 2960Switch:</p>
<p>2960Switch(config)# mac-address-table static 0000.00aa.aaaa vlan 10 interface fa0/1</p>
<p>Which two of these statements correctly identify results of executing the command? (Choose two)</p>
<p style="text-align: center;"><img src="../images/ccna/Switch/Switch_mac-address-table_static.jpg" alt="Switch_mac-address-table_static.jpg" width="450" height="170" /></p>
<p>A. Port security is implemented on the fa0/1 interface.<br />
 B. MAC address 0000.00aa.aaaa does not need to be learned by this switch.<br />
 C. Only MAC address0000.00aa.aaaa can source frames on the fa0/1 segment.<br />
 D. Frames with a Layer 2 source address of 0000.00aa.aaaa will be forwarded out fa0/1.<br />
 E. MAC address 0000.00aa.aaaa will be listed in the MAC address table for interface fa0/1 only.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B E</p>
<p class="ccnaexplanation">Explanation</p>
<p>The above command adds the MAC address 0000.00aa.aaaa to the MAC address table of the switch. This is called static MAC address. Static addresses have the following characteristics:</p>
<p>* Static addresses will not be removed from the address table when a given interface link is down.<br />
 * Static addresses are bound to the assigned interface and will not be moved. When a static address is seen on another interface, the address will be ignored and will not be written to the address table.<br />
 * A static address cannot be learned on another port until the address is removed with the no form of this command.</p>
<p>Static MAC address is not a Port Security feature -&gt; A is not correct.</p>
<p>If the MAC address 0000.00aa.aaaa is seen again (on fa0/1 or other ports), it does not need to be learned because it already exists in the MAC address table of the switch -&gt; B is correct.</p>
<p>Although configured with a static MAC address, switch can still learn other MAC addresses dynamically -&gt; C is not correct.</p>
<p>Frames with a Layer 2 <span style="text-decoration: underline;">destination</span> address (not source address) of 0000.00aa.aaaa will be forwarded out fa0/1 -&gt; D is not correct.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Which set of commands is recommended to prevent the use of a hub in the access layer?</p>
<p>A. <br />
 switch(config-if)#switchport mode trunk<br />
 switch(config-if)#switchport port-security maximum 1</p>
<p>B. <br />
 switch(config-if)#switchport mode trunk<br />
 switch(config-if)#switchport port-security mac-address 1</p>
<p>C. <br />
 switch(config-if)#switchport mode access<br />
 switch(config-if)#switchport port-security maximum 1</p>
<p>D.<br />
 switch(config-if)#switchport mode access<br />
 switch(config-if)#switchport port-security mac-address 1</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>Port security is only used on access port (which connects to hosts) so we need to set that port to &#8220;access&#8221; mode, then we need to specify the maximum number of hosts which are allowed to connect to this port -&gt; C is correct.</p>
<p>Note: If we want to allow a fixed MAC address to connect, use the  &#8220;switchport port-security mac-address &lt;MAC address&gt;&#8221; command.</p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>A Catalyst 2950 needs to be reconfigured. What steps will ensure that the old configuration is erased? (Choose three)</p>
<p>A. Erase flash.<br />
 B. Restart the switch.<br />
 C. Delete the VLAN database.<br />
 D. Erase the running configuration.<br />
 E. Erase the startup configuration.<br />
 F. Modify the configuration register.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B C E</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>The network administrator has discovered that the power supply has  failed on a switch in the company LAN and that the switch has stopped  functioning. It has been replaced with a Cisco Catalyst 2950 series  switch. What must be done to ensure that this new switch becomes the  root bridge on the network?</p>
<p>A. Lower the bridge priority number.<br />
 B. Change the MAC address of the switch.<br />
 C. Increase the VTP revision number for the domain.<br />
 D. Lower the root path cost on the switch ports.<br />
 E. Assign the switch an IP address with the lowest value.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>Which two of these are characteristics of the 802.1Q protocol? (Choose two)</p>
<p>A. It is a layer 2 messaging protocol which maintains vlan configurations across network.<br />
 B. It includes an 8-bit field which specifies the priority of a frame.<br />
 C. It is used exclusively for tagging vlan frames and dose not address  network reconvergence following switched network topology changes.<br />
 D. It modifies the 802.3 frame header and thus requires that the FCS be recomputed.<br />
 E. It is a trunking protocol capable of earring untagged frames.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D E</p>
<p class="ccnaexplanation">Explanation</p>
<p>IEEE 802.1Q is the networking standard that supports Virtual LANs (VLANs) on an Ethernet network. It is a protocol that allows VLANs to communicate with one another using a router. 802.1Q trunks support tagged and untagged frames.</p>
<p>If a switch receives untagged frames on a trunk port, it believes that frame is a part of the native VLAN. Also, frames from a native VLAN are not tagged when exiting the switch via a trunk port.</p>
<p>The 802.1q frame format is same as 802.3. The only change is the addition of 4 bytes fields. That additional header includes a field with which to identify the VLAN number. Because inserting this header changes the frame, 802.1Q encapsulation forces a recalculation of the original FCS field in the Ethernet trailer.</p>
<p>Note: Frame Check Sequence (FCS) is a four-octet field used to verify that the frame was received without loss or error. FCS is based on the contents of the entire frame.</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>What are two advantages of Layer 2 Ethernet switches over hubs? (Choose two)</p>
<p>A. decreasing the number of collision domains<br />
 B. filtering frames based on MAC addresses<br />
 C. allowing simultaneous frame transmissions<br />
 D. increasing the size of broadcast domains<br />
 E. increasing the maximum length of UTP cabling between devices</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B C</p>
<p class="ccnaexplanation">Explanation</p>
<p>Hub is considered a layer 1 device. When a packet arrives at one port, it is copied to the other ports without checking the content of that packet.</p>
<p>Switch operates at layer 2. When a packet arrives at one port, it checks in its database (based on MAC address) to see which port it should forward that packet out -&gt; B is correct.</p>
<p>Remember that hubs can only communicate in half duplex mode, which means that a computer can only send data when it is not receiving. Switches can run in full duplex mode, which allows data to be sent and received at the same time. Switches effectively double the speed of the network when compared to hubs -&gt; C is correct.</p>
<p>Switch increases the number of collision domains (which is better) -&gt; A is not correct.</p>
<p>Switch does not have any effect on the size of broadcast domains. When using switch, the size of broadcast domains remain the same -&gt; D is not correct.</p>
<p>Both hub and switch increase the maximum length of UTP cabling between devices so it is not an advantage of switch over hub -&gt; E is not correct.</p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>Which command will show the MAC addresses of stations connected to switch ports?</p>
<p>A. show mac-address<br />
 B. show arp<br />
 C. show table<br />
 D.  show switchport</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>There is no “show mac-address” command. But notice the “show mac-address-table” and “show mac address-table” do exist.</p>
<p>If option A is “show mac-address-table” then both A &#038; B are correct!</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-switch-questions-3/feed</wfw:commentRss>
		<slash:comments>65</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; VLAN Questions</title>
		<link>http://www.9tut.com/ccna-vlan-questions</link>
		<comments>http://www.9tut.com/ccna-vlan-questions#comments</comments>
		<pubDate>Mon, 21 Feb 2011 10:59:16 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=767</guid>
		<description><![CDATA[Here you will find answers to VLAN Questions If you are not sure about VLAN, please read my VLAN tutorial. Question 1 Refer to the exhibit. A network associate needs to configure the switches and router in the graphic so that the hosts in VLAN3 and VLAN4 can communicate with the enterprise server in VLAN2. [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to VLAN Questions</p>
<p><!--adsense--></p>
<p>If you are not sure about VLAN, please read my <a href="http://www.9tut.com/virtual-local-area-network-vlan-tutorial" target="_blank">VLAN tutorial</a>.</p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Refer to the exhibit. A network associate needs to configure the switches and router in the graphic so that the hosts in VLAN3 and VLAN4 can communicate with the enterprise server in VLAN2. Which two Ethernet segments would need to be configured as trunk links? (Choose two)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/VLAN/VLAN_trunking.jpg" alt="VLAN_trunking.jpg" width="435" height="253" /></p>
<p>A. A<br />
 B. B<br />
 C. C<br />
 D. D<br />
 E. E<br />
 F. F</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C F</p>
<p class="ccnaexplanation">Explanation</p>
<p>The link between the switches and the link between switch &amp; router should be configured as trunks. Other links (connected to hosts) should be configured as access links.</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Which three statements are typical characteristics of VLAN arrangements? (Choose three)</p>
<p>A. A new switch has no VLANs configured.<br />
 B. Connectivity between VLANs requires a Layer 3 device.<br />
 C. VLANs typically decrease the number of collision domains.<br />
 D. Each VLAN uses a separate address space.<br />
 E. A switch maintains a separate bridging table for each VLAN.<br />
 F. VLANs cannot span multiple switches.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B D E</p>
<p class="ccnaexplanation">Explanation</p>
<p>By default, all ports on a new switch belong to VLAN 1 (default &amp; native VLAN). There are also some well-known VLANs (for example: VLAN 1002 for fddi-default; VLAN 1003 for token-ring&#8230;) configured by default -&gt; A is not correct.</p>
<p>To communicate between two different VLANs we need to use a Layer 3 device like router or Layer 3 switch -&gt; B is correct.</p>
<p>VLANs don&#8217;t affect the number of collision domains, they are the same -&gt; C is not correct. Typically, VLANs increase the number of broadcast domains.<br />
 We must use a different network (or sub-network) for each VLAN. For example we can use 192.168.1.0/24 for VLAN 1, 192.168.2.0/24 for VLAN 2 -&gt; D is correct.</p>
<p>A switch maintains a separate bridging table for each VLAN so that it can send frame to ports on the same VLAN only. For example, if a PC in VLAN 2 sends a frame then the switch look-ups its bridging table and only sends frame out of its ports which belong to VLAN 2 (it also sends this frame on trunk ports) -&gt; E is correct.</p>
<p>We can use multiple switches to expand VLAN -&gt; F is not correct.</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>By default, each port in a Cisco Catalyst switch is assigned to VLAN1. Which two recommendations are key to avoid unauthorized management access? (Choose two)</p>
<p>A. Create an additional ACL to block the access to VLAN 1.<br />
 B. Move the management VLAN to something other than default.<br />
 C. Move all ports to another VLAN and deactivate the default VLAN.<br />
 D. Limit the access in the switch using port security configuration.<br />
 E. Use static VLAN in trunks and access ports to restrict connections.<br />
 F. Shutdown all unused ports in the Catalyst switch.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B F</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Which two benefits are provided by creating VLANs? (Choose two)<br />
 A. added security<br />
 B. dedicated bandwidth<br />
 C. provides segmentation<br />
 D. allows switches to route traffic between subinterfaces<br />
 E. contains collisions</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A C</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Which two link protocols are used to carry multiple VLANs over a single link? (Choose two)</p>
<p>A. VTP <br />
 B. 802.1q <br />
 C. IGP <br />
 D. ISL <br />
 E. 802.3u</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B D</p>
<p class="ccnaexplanation">Explanation</p>
<p>Cisco switches support two trunking protocols 802.1q &amp; ISL. 802.1q is an open standard and is thus compatible between most vendors&#8217; equipment while Inter-Switch Link (ISL) is Cisco proprietary.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>A switch is configured with all ports assigned to vlan 2 with full duplex FastEthernet to segment existing departmental traffic. What is the effect of adding switch ports to a new VLAN on the switch?</p>
<p>A. More collision domains will be created.<br />
 B. IP address utilization will be more efficient.<br />
 C. More bandwidth will be required than was needed previously.<br />
 D. An additional broadcast domain will be created.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>Which two statements about the use of VLANs to segment a network are true? (Choose two)</p>
<p>A. VLANs increase the size of collision domains.<br />
 B. VLANs allow logical grouping of users by function.<br />
 C. VLANs simplify switch administration.<br />
 D. VLANs enhance network security.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B D</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>Cisco Catalyst switches CAT1 and CAT2 have a connection between them using ports Fa0/13. An 802.1Q trunk is configured between the two switches. On CAT1, VLAN 10 is chosen as native, but on CAT2 the native VLAN is not specified. What will happen in this scenario?</p>
<p>A. 802.1Q giants frames could saturate the link.<br />
 B. VLAN 10 on CAT1 and VLAN 1 on CAT2 will send untagged frames.<br />
 C. A native VLAN mismatch error message will appear.<br />
 D. VLAN 10 on CAT1 and VLAN 1 on CAT2 will send tagged frames.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>A “native VLAN mismatch” error will appear by CDP if there is a native VLAN mismatch on an 802.1Q link. &#8220;VLAN mismatch&#8221; can cause traffic  from one vlan to leak into another vlan.</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>Which two statements describe the Cisco implementation of VLANs? (Choose two)</p>
<p>A. VLAN 1 is the default Ethernet VLAN.<br />
 B. CDP advertisements are only sent on VLAN 1002.<br />
 C. By default, the management VLAN is VLAN 1005.<br />
 D. By default, the switch IP address is in VLAN 1005.<br />
 E. VLANs 1002 through 1005 are automatically created and cannot be deleted.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A E</p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>What are three advantages of VLANs? (Choose three)</p>
<p>A. VLANs establish broadcast domains in switched networks.<br />
 B. VLANs utilize packet filtering to enhance network security.<br />
 C. VLANs provide a method of conserving IP addresses in large networks.<br />
 D. VLANs provide a low-latency internetworking alternative to routed networks.<br />
 E. VLANs allow access to network services based on department, not physical location.<br />
 F. VLANs can greatly simplify adding, moving, or changing hosts on the network.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A E F</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-vlan-questions/feed</wfw:commentRss>
		<slash:comments>129</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; VLAN Questions 2</title>
		<link>http://www.9tut.com/ccna-vlan-questions-2</link>
		<comments>http://www.9tut.com/ccna-vlan-questions-2#comments</comments>
		<pubDate>Sun, 20 Feb 2011 10:56:18 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=764</guid>
		<description><![CDATA[Here you will find answers to VLAN Questions &#8211; Part 2 Question 1 Which of the following are benefits of VLANs? (Choose three) A. They increase the size of collision domains. B. They allow logical grouping of users by function. C. They can enhance network security. D. They increase the size of broadcast domains while [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to VLAN Questions &#8211; Part 2</p>
<p><!--adsense--></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Which of the following are benefits of VLANs? (Choose three)</p>
<p>A. They increase the size of collision domains.<br />
 B. They allow logical grouping of users by function.<br />
 C. They can enhance network security.<br />
 D. They increase the size of broadcast domains while decreasing the number of collision domains.<br />
 E. They increase the number of broadcast domains while decreasing the size of the broadcast domains.<br />
 F. They simplify switch administration.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B C E</p>
<p class="ccnaexplanation">Explanation</p>
<p>When using VLAN the number and size of collision domains remain the same -&gt; A is not correct.</p>
<p>VLANs allow to group users by function, not by location or geography -&gt; B is correct.</p>
<p>VLANs help minimize the incorrect configuration of VLANs so it enhances the security of the network -&gt; C is correct.</p>
<p>VLAN increases the size of broadcast domains but does not decrease the number of collision domains -&gt; D is not correct.</p>
<p>VLANs increase the number of broadcast domains while decreasing the size of the broadcast domains which increase the utilization of the links. It is also a big advantage of VLAN -&gt; E is correct.</p>
<p>VLANs are useful but they are more complex and need more administration -&gt; F is not correct.</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Refer to the diagram. All hosts have connectivity with one another. Which statements describe the addressing scheme that is in use in the network? (Choose three)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/VLAN/VLAN_address_scheme.jpg" alt="VLAN_address_scheme.jpg" width="412" height="231" /></p>
<p>A. The subnet mask in use is 255.255.255.192.<br />
 B. The subnet mask in use is 255.255.255.128.<br />
 C. The IP address 172.16.1.25 can be assigned to hosts in VLAN1<br />
 D. The IP address 172.16.1.205 can be assigned to hosts in VLAN1<br />
 E. The LAN interface of the router is configured with one IP address.<br />
 F. The LAN interface of the router is configured with multiple IP addresses.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B C F</p>
<p class="ccnaexplanation">Explantion</p>
<p>First we should notice that different VLANs must use different sub-networks. In this case Host A (172.16.1.126) and Host B (172.16.1.129) are in different VLANs and must use different sub-networks. But in this question, both answer A and B can separate VLAN 1 and VLAN 2 into different sub-networks . In particular, if the subnet mask is 255.255.255.192 we have </p>
<p>
+ Sub-network 1: 172.16.1.0 -&gt; 172.16.1.63<br />
+ Sub-network 2: 172.16.1.64 -&gt; 172.16.1.127 (assigned to VLAN 1)<br />
+ Sub-network 3: 172.16.1.128 -&gt; 172.16.1.192 (assigned to VLAN 2)<br />
+ Sub-network 4: 172.16.1.192 -&gt; 172.16.1.255 
</p>
<p>If the subnet mask is 255.255.255.128 we have 2 sub-networks:</p>
<p>+ Sub-network 1: 172.16.1.0 -&gt; 172.16.1.127 (assigned to VLAN 1)<br />
+ Sub-network 2: 172.16.1.128 -&gt; 172.16.1.255 (assigned to VLAN 2)</p>
<p>But we should notice about the host part of each subnet mask. With 255.255.255.192 we have 2^6 &#8211; 2 = 62 hosts per subnet, which is smaller than the requirements of VLAN 1 (84 hosts) and VLAN 2 (114 hosts).<br />
WIth 255.255.255.128 we have 2^7 &#8211; 2 = 126 hosts per subnet -> big enough for VLAN 1 &#038; 2</p>
<p>-&gt; B is correct.</p>
<p>The IP address 172.16.1.25, which is in the same sub-network with host A so it can be assigned to VLAN 1 -&gt; C is correct.</p>
<p>To make different VLANs communicate with each other we can configure sub-interfaces (with a different IP address on each interface) on the LAN interface of the router -&gt; F is correct.</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>A network associate is trying to understand the operation of the FLD Corporation by studying the network in the exhibit. The associate knows that the server in VLAN 4 provides the necessary resources to support the user hosts in the other VLANs. The associate needs to determine which interfaces are access ports. Which interfaces are access ports? (Choose three)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/VLAN/VLAN_access_ports.jpg" alt="VLAN_access_ports.jpg" width="566" height="239" /></p>
<p>A. Switch1 &#8211; Fa0/2<br />
 B. Switch1 &#8211; Fa0/9<br />
 C. Switch2 &#8211; Fa0/3<br />
 D. Switch2 &#8211; Fa0/4<br />
 E. Switch2 &#8211; Fa0/8<br />
 F. Router &#8211; Fa1/0</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A C D</p>
<p class="ccnaexplanation">Explanation</p>
<p>Access ports are switch&#8217;s ports which are connected to hosts.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>What are three valid reasons to assign ports to VLANs on a switch? (Choose three)</p>
<p>A. to make VTP easier to implement<br />
 B. to isolate broadcast traffic<br />
 C. to increase the size of the collision domain<br />
 D. to allow more devices to connect to the network<br />
 E. to logically group hosts according to function<br />
 F. to increase network security</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B E F</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Which statement is correct about the internetwork shown in the diagram?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/VLAN/VLAN_interrouting.jpg" alt="VLAN_interrouting.jpg" width="417" height="211" /></p>
<p>A. Switch 2 is the root bridge.<br />
 B. Spanning Tree is not running.<br />
 C. Host D and Server 1 are in the same network.<br />
 D. No collisions can occur in traffic between Host B and Host C.<br />
 E. If Fa0/0 is down on Router1, Host A cannot access Server1.<br />
 F. If Fa0/1 is down on Switch3, Host C cannot access Server2.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>E</p>
<p class="ccnaexplanation">Explanation</p>
<p>Switch 2 cannot be the root bridge because all ports of root bridges are designated ports. In the diagram switch 2 has one blocked port -&gt; It is not the root bridge -&gt; A is not correct.</p>
<p>Because Switch 2 has a blocked port so surely Spanning Tree Protocol is running -&gt; B is not correct.</p>
<p>Host D belongs to VLAN 2 while Server 1 belongs to VLAN 3 so they are not in the same network  -&gt; C is not correct.</p>
<p>Host B &amp; host C are connected through a hub so they are in the same collision domain and collision can occur -&gt; D is not correct.</p>
<p>We need a router to allow different VLANs to communicate with each other. This router is called &#8220;router on a stick&#8221;. In this case it is Router1. The link between Router1 and Switch1 is configured as trunk link. If this link is down, different VLANs cannot communicate with each other -&gt; E is correct.</p>
<p>If Fa0/1 is down on Switch3, Spanning Treel Protocol will &#8220;open&#8221; the blocked port on Switch 2 can Host C can access Server 2 through HostC -&gt; Hub1 -&gt; Switch2 -&gt; Switch1 -&gt; Router1-&gt; Switch1 -&gt; Server2 (notice that it must go through Router1 because they are in different VLANs). So F is not correct.</p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>Refer to the exhibit. Which of these statements correctly describes the state of the switch once the boot process has been completed?</p>
<p><img src="http://www.9tut.com/images/ccna/VLAN/VLAN_VLAN1_down.jpg" alt="VLAN_VLAN1_down.jpg" width="853" height="432" /></p>
<p>A. As FastEthernet0/12 will be the last to come up, it will not be blocked by STP.<br />
 B. Remote access management of this switch will not be possible without configuration change.<br />
 C. More VLANs will need to be created for this switch.<br />
 D. The switch will need a different IOS code in order to support VLANs and STP.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>From the output we notice that the administrator has just shut down Interface Vlan1, which is the default VLAN so no one can access it remotely (like telnet) -&gt; B is correct.</p>
<p>Answer A is not correct as STP calculation does not depend on which port comes up first or last. STP recalculates when there is a change in the network.</p>
<p>A normal switch can operate without VLAN -&gt; C is not correct.</p>
<p>This IOS does support VLAN because it has VLAN 1 on it -&gt; D is not correct.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-vlan-questions-2/feed</wfw:commentRss>
		<slash:comments>72</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; VTP Questions</title>
		<link>http://www.9tut.com/ccna-vtp-questions</link>
		<comments>http://www.9tut.com/ccna-vtp-questions#comments</comments>
		<pubDate>Thu, 17 Feb 2011 10:22:18 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=722</guid>
		<description><![CDATA[Here you will find answers to VTP Questions If you are not sure about VTP, please read my VTP tutorial Question 1 Refer to the exhibit. After SwitchB was added to the network, VLAN connectivity problems started to occur. What caused this problem? A. Both switches are in server mode in the same domain. B. [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to VTP Questions</p>
<p><!--adsense--></p>
<p>If you are not sure about VTP, please read my <a href="http://www.9tut.com/vlan-trunk-protocol-vtp-tutorial" target="_blank">VTP tutorial</a></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Refer to the exhibit. After SwitchB was added to the network, VLAN connectivity problems started to occur. What caused this problem?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/VTP/show_vtp_status.jpg" alt="show_vtp_status.jpg" width="597" height="194" /></p>
<p>A. Both switches are in server mode in the same domain.<br />
 B. The revision number of SwitchB was higher than the revision number of SwitchA.<br />
 C. SwitchA was not rebooted prior to adding SwitchB to the network.<br />
 D. V2-mode is not enabled.<br />
 E. VTP pruning is not activated, so the new paths in the network have not been recalculated.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>SwitchB has the same VTP Domain Name with SwitchA and it has a higher Configuration Revision number (7 &gt; 1) so it will overwrite VLAN information of SwitchA. Because SwitchB is a new switch so its VLAN information is different from SwitchA -&gt; VLAN connectivity problem occurs.</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>A network administrator is explaining VTP configuration to a new technician. What should the network administrator tell the new technician about VTP configuration? (Choose three)</p>
<p>A. A switch in the VTP client mode cannot update its local VLAN database.<br />
 B. A trunk link must be configured between the switches to forward VTP updates.<br />
 C. A switch in the VTP server mode can update a switch in the VTP transparent mode.<br />
 D. A switch in the VTP transparent mode will forward updates that it receives to other switches.<br />
 E. A switch in the VTP server mode only updates switches in the VTP client mode that have a higher VTP revision number.<br />
 F. A switch in the VTP server mode will update switches in the VTP client mode regardless of the configured VTP domain membership.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A B D</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>What are two benefits of using VTP in a switching environment? (Choose two)</p>
<p>A.It allows switches to read frame tags.<br />
 B. It allows ports to be assigned to VLANs automatically.<br />
 C. It maintains VLAN consistency across a switched network.<br />
 D. It allows frames from multiple VLANs to use a single interface.<br />
 E. It allows VLAN information to be automatically propagated throughout the switching environment.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C E</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>What is the name of the VTP mode of operation that enables a switch to forward only VTP advertisements while still permitting the editing of local VLAN information?</p>
<p>A. server<br />
 B. client<br />
 C. tunnel<br />
 D.transparent</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Which VTP mode is capable of creating only local VLANs and does not synchronize with other switches in the VTP domain?</p>
<p>A. client<br />
 B. dynamic<br />
 C. server<br />
 D. static<br />
 E. transparent</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> E</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>An administrator is unsuccessful in adding VLAN 50 to a switch. While troubleshooting the problem, the administrator views the output of the <strong>show vtp status</strong> command, which is displayed in the graphic. What commands must be issued on this switch to add VLAN 50 to the database? (Choose two)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/VTP/show_vtp_status_add_VLAN.jpg" alt="show_vtp_status_add_VLAN.jpg" width="387" height="204" /></p>
<p>A. Switch(config-if)# switchport access vlan 50<br />
 B. Switch(vlan)#vtp server<br />
 C. Switch(config)# config-revision 20<br />
 D. Switch(config)#vlan 50 name Tech<br />
 E. Switch(vlan)# vlan 50<br />
 F. Switch(vlan)# switchport trunk vlan 50</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B E</p>
<p class="ccnaexplanation">Explanation</p>
<p>First we notice that the &#8220;VTP Operating Mode&#8221; of this switch is &#8220;Client&#8221;. In this mode we can&#8217;t add new VLAN so we must change to &#8220;Server&#8221; mode -&gt; B is correct.</p>
<p>Now we can add a new VLAN, E is the correct configuration for adding a new VLAN.</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>To configure the VLAN trunking protocol to communicate VLAN information between two switches, what two requirements must be met? (Choose two)</p>
<p>A. Each end of the trunk line must be set to IEEE 802.1E encapsulation.<br />
 B. The VTP management domain name of both switches must be set the same.<br />
 C. All ports on both the switches must be set as access ports.<br />
 D. One of the two switches must be configured as a VTP server.<br />
 E. A rollover cable is required to connect the two switches together.<br />
 F. A router must be used to forward VTP traffic between VLANs.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B D</p>
<p class="ccnaexplanation">Explanation</p>
<p>In Cisco switches there are two encapsulations: 802.1q and ISL so we can set two ends to ISL instead -&gt; A is not correct.</p>
<p>The ports between two switches must be set to trunk ports so that they can exchange VLAN information through VTP -&gt; C is not correct.</p>
<p>To connect two switches we can use cross-over cable or straight-through cable (because modern Cisco switches can &#8220;auto-sense&#8221;) but not rollover cable -&gt; E is not correct.</p>
<p>To forward traffic in the same VLAN (between two or more switches) we can use switches only. If we want to forward VTP traffic between different VLANs we can use either a router or a Layer 3 switch -&gt; F is not correct.</p>
<p>Two switches can only communicate when they are set to the same VTP domain name (and the same VTP password) -&gt; B is correct.</p>
<p>One of the two switches must be set to VTP Server so that it can create VTP updates and advertise its VLAN information.</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>Which statements describe two of the benefits of VLAN Trunking Protocol? (Choose two)</p>
<p>A. VTP allows routing between VLANs.<br />
 B. VTP allows a single switch port to carry information to more than one VLAN.<br />
 C. VTP allows physically redundant links while preventing switching loops.<br />
 D. VTP simplifies switch administration by allowing switches to automatically share VLAN configuration information.<br />
 E. VTP helps to limit configuration errors by keeping VLAN naming consistent across the VTP domain.<br />
 F. VTP enhances security by preventing unauthorized hosts from connecting to the VTP domain.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D E</p>
<p class="ccnaexplanation">Explanation</p>
<p>The main purposes of VTP are to simplify switch administration and limit VLAN configuration errors by allowing switches to automatically share VLAN configuration information. It doesn&#8217;t require the administrator to go to every switch to configure VLANs.</p>
<p>Maybe you will feel F is also a correct answer but it is not true because VTP only enhances security by preventing unauthorized <strong>switches </strong>(not hosts) from connecting to the VTP domain (by configuring a VTP domain name &amp; VTP password). An unauthorized host can easily use the network cable of an authorized host to access the network.</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>What are two results of entering the <strong>Switch(config)#vtp mode client</strong> command on a Catalyst switch? (Choose two)</p>
<p>A. The switch will ignore VTP summary advertisements. <br />
 B. The switch will forward VTP summary advertisements.<br />
 C. The switch will process VTP summary advertisements. <br />
 D. The switch will originate VTP summary advertisements. <br />
 E. The switch will create, modify and delete VLANs for the entire VTP domain.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B C</p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>Refer to the exhibit. The <strong>show vtp status</strong> command is executed at a switch that is generating the exhibited output. Which statement is true for this switch?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/VTP/show_vtp_status_2.jpg" alt="show_vtp_status_2.jpg" width="381" height="186" /></p>
<p>A. The switch forwards its VLAN database to other switches in the ICND VTP domain.<br />
 B. The configuration revision number increments each time the VLAN database is updated,<br />
 C. The switch forwards VTP updates that are sent by other switches in the ICND domain,<br />
 D. The VLAN database is updated when VTP information is received from other switches.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>In Transparent mode switch just forwards update sent by other switches without reading it. It doesn&#8217;t update its VLAN database so the Configuration Revision doesn&#8217;t increase.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-vtp-questions/feed</wfw:commentRss>
		<slash:comments>159</slash:comments>
		</item>
		<item>
		<title>Access List Tutorial</title>
		<link>http://www.9tut.com/access-list-tutorial</link>
		<comments>http://www.9tut.com/access-list-tutorial#comments</comments>
		<pubDate>Sun, 13 Feb 2011 14:52:41 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Knowledge]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=458</guid>
		<description><![CDATA[In this tutorial we will learn about access list. Access control lists (ACLs) provide a means to filter packets by allowing a user to permit or deny IP packets from crossing specified interfaces. Just imagine you come to a fair and see the guardian checking tickets. He only allows people with suitable tickets to enter. [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial we will learn about access list.</p>
<p>Access control lists (ACLs) provide a means to filter packets by allowing a user to permit or deny IP packets from crossing specified interfaces. Just imagine you come to a fair and see the guardian checking tickets. He only allows people with suitable tickets to enter. Well, an access list&#8217;s function is same as that guardian.</p>
<p>Access lists filter network traffic by controlling whether packets are forwarded or blocked at the router&#8217;s interfaces based on the criteria you specified within the access list.</p>
<p>To use ACLs, the system administrator must first configure ACLs and then apply them to specific interfaces. There are 3 popular types of ACL: Standard, Extended and Named ACLs.</p>
<p><span id="more-458"></span></p>
<p><!--adsense--></p>
<p class="blueandbold">Standard IP Access List</p>
<p>Standard IP lists (1-99) only check source  addresses of all IP packets.</p>
<p><strong>Configuration Syntax</strong></p>
<table border="1">
<tbody>
<tr>
<td><strong>access-list</strong> <em>access-list-number</em> {permit | deny} <em>source</em> {source-mask}</td>
</tr>
</tbody>
</table>
<p>Apply ACL to an interface</p>
<table border="1">
<tbody>
<tr>
<td><strong>ip access-group</strong> <em>access-list-number</em> {in | out}</td>
</tr>
</tbody>
</table>
<p>Example of Standard IP Access List</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/Access_list/Standard_ACL_Example1.jpg" alt="Standard_ACL_Example1.jpg" width="370" height="230" /></p>
<p>Configuration:</p>
<p>In this example we will define a standard access list that will only allow network 10.0.0.0/8 to access the server (located on the Fa0/1 interface)</p>
<p class="codesnippet"><strong>Define which source is allowed to pass:</strong></p>
<p>Router(config)#<span class="pinkandbold">access-list 1 permit 10.0.0.0 0.255.255.255</span></p>
<p>(there is always an implicit deny all other traffic at the end of each ACL so we don&#8217;t need to define forbidden traffic)</p>
<p class="codesnippet"><strong>Apply this ACL to an interface:</strong></p>
<p>Router(config)#<span class="pinkandbold">interface Fa0/1</span></p>
<p>Router(config-if)#<span class="pinkandbold">ip access-group 1 out</span></p>
<p>The ACL 1 is applied to permit only packets from 10.0.0.0/8 to go out of Fa0/1 interface while deny all other traffic. So can we apply this ACL to other interface, Fa0/2 for example? Well we can but shouldn&#8217;t do it because users can access to the server from other interface (s0 interface, for example). So we can understand why an standard access list should be applied close to the destination.</p>
<p>Note: The &#8220;0.255.255.255&#8243; is the wildcard mask part of network &#8220;10.0.0.0&#8243;. We will learn how to use wildcard mask later.</p>
<p class="blueandbold">Extended IP Access List</p>
<p>Extended IP lists (100-199) check both source and destination  addresses, specific UDP/TCP/IP protocols, and destination ports.</p>
<p><strong>Configuration Syntax</strong></p>
<table border="1">
<tbody>
<tr>
<td><strong>access-list</strong> <em>access-list-number</em> {permit | deny} <em>protocol</em> source {source-mask} destination {destination-mask} [eq destination-port]</td>
</tr>
</tbody>
</table>
<p>Example of Extended IP Access List</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/Access_list/Extended_ACL_Example1.jpg" alt="Extended_ACL_Example1.jpg" width="370" height="230" /></p>
<p>In this example we will create an extended ACL that will deny FTP traffic from network 10.0.0.0/8 but allow other traffic to go through.</p>
<p>Note: FTP uses TCP on port 20 &amp; 21.</p>
<p class="codesnippet"><strong>Define which protocol, source, destination and port are denied:</strong></p>
<p>Router(config)#<span class="pinkandbold">access-list 101 deny tcp 10.0.0.0 0.255.255.255 187.100.1.6 0.0.0.0 eq 21</span></p>
<p>Router(config)#<span class="pinkandbold">access-list 101 deny tcp 10.0.0.0 0.255.255.255 187.100.1.6  0.0.0.0 eq 20</span></p>
<p>Router(config)#<span class="pinkandbold">access-list 101 permit ip any any</span></p>
<p class="codesnippet"><strong>Apply this ACL to an interface:</strong></p>
<p>Router(config)#<span class="pinkandbold">interface Fa0/1</span></p>
<p>Router(config-if)#<span class="pinkandbold">ip access-group 101 out</span></p>
<p>Notice that we have to explicit allow other traffic (access-list 101 permit ip any any) as there is an &#8220;deny all&#8221; command at the end of each ACL.</p>
<p>As we can see, the destination of above access list is &#8220;187.100.1.6 0.0.0.0&#8243; which specifies a host. We can use &#8220;host 187.100.1.6&#8243; instead. We will discuss wildcard mask later.</p>
<p>In summary, below is the range of standard and extended access list<br class="spacer_" /></p>
<table border="1">
<tbody>
<tr>
<td><strong>Access list type</strong></td>
<td><strong>Range</strong></td>
</tr>
<tr>
<td>Standard</td>
<td>1-99, 1300-1999</td>
</tr>
<tr>
<td>Extended</td>
<td>100-199, 2000-2699</td>
</tr>
</tbody>
</table>
<p><!--adsense--></p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/access-list-tutorial/feed</wfw:commentRss>
		<slash:comments>110</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Hotspot</title>
		<link>http://www.9tut.com/ccna-hotspot-questions</link>
		<comments>http://www.9tut.com/ccna-hotspot-questions#comments</comments>
		<pubDate>Thu, 10 Feb 2011 10:20:29 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=47</guid>
		<description><![CDATA[Here you will find answers to CCNA hotspot Questions Hotspot Routing Question Question 1: If the router R1 has a packet with a destination address 192.168.1.255, what describes the operation of the network? A &#8211; R1 will forward the packet out all interfaces B &#8211; R1 will drop this packet because it is not a [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to CCNA hotspot Questions</p>
<p><!--adsense--></p>
<h1>
<p>Hotspot Routing Question</p>
</h1>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/hotspot/hotspotquestion1a.jpg" border="0" alt="hotspotquestion1a" width="491" height="272" /></p>
<p><img src="http://www.9tut.com/images/ccna/hotspot/hotspotquestion1.jpg" border="0" alt="hotspotquestion1" width="550" height="274" /></p>
<p class="ccnaquestionsnumber">Question 1:</p>
<p>If the router R1 has a packet with a destination address 192.168.1.255, what describes the operation of the network?</p>
<p>A &#8211; R1 will forward the packet out all interfaces<br />
 B &#8211; R1 will drop this packet because it is not a valid IP address<br />
 C &#8211; As R1 forwards the frame containing this packet, Sw-A will add 192.168.1.255 to its MAC table<br />
 D &#8211; R1 will encapsulate the packet in a frame with a destination MAC address of FF-FF-FF-FF-FF-FF<br />
 E &#8211; As R1 forwards the frame containing this packet, Sw-A will forward it ti the device assigned the IP address of 192.168.1.255</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaquestionsnumber">Question 2:</p>
<p>Users on the 192.168.1.0/24 network must access files located on the Server 1. What route could be configured on router R1 for file requests to reach the server?</p>
<p>A &#8211; ip route 0.0.0.0 0.0.0.0 s0/0/0<br />
 B &#8211; ip route 0.0.0.0 0.0.0.0 209.165.200.226<br />
 C &#8211; ip route 209.165.200.0 255.255.255.0 192.168.1.250<br />
 D &#8211; ip route 192.168.1.0 255.255.255.0 209.165.100.250</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaquestionsnumber">Quetion 3:</p>
<p>When a packet is sent from Host 1 to Server 1, in how many different frames will the packet be encapsulated as it is sent across the internetwork?</p>
<p>A &#8211; 0<br />
 B &#8211; 1<br />
 C &#8211; 2<br />
 D &#8211; 3<br />
 E &#8211; 4</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C or D(depending on your understand, please read the comments to understand why)</p>
<p class="ccnaquestionsnumber">Question 4:</p>
<p>What must be configured on the network in order for users on the Internet to view web pages located on Web Server 2?</p>
<p>A &#8211; On router R2,configure a default static route to the 192.168.1.0 network<br />
 B &#8211; On router r2, configure DNS to resolve the URL assigned to Web Server 2 to the 192.168.1.10 address<br />
 C &#8211; On router R1, configure NAT to translate an address on the 209.165.100.0/24 network to 192.168.1.10<br />
 D &#8211; On router R1, configure DHCP to assign a registered IP address on the 209.165.100.0/24 network to Web Server 2</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaquestionsnumber">Question 5:</p>
<p>The router address 192.168.1.250 is the default gateway for both the Web Server 2 and Host 1. What is the correct subnet mask for this network?</p>
<p>A &#8211; 255.255.255.0<br />
 B &#8211; 255.255.255.192<br />
 C &#8211; 255.255.255.250<br />
 D &#8211; 255.255.255.252</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<h1>Hotspot Frame-relay Question</h1>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/hotspot/hotspotquestion2.jpg" border="0" alt="hotspotquestion2" width="524" height="273" /></p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/hotspot/hotspotquestion2b.jpg" border="0" alt="hotspotframerelay" width="403" height="606" /></p>
<p>(In the old days, this question was a multi-choice question but Cisco upgraded it into a lab-sim question. Therefore, instead of listing all the configuration as above, you have to type <span class="pinkandbold">show frame-relay map</span> and <span class="pinkandbold">show running-config</span> to get its configuration)</p>
<p>Note: If you are not sure about Frame-Relay, please read my <a href="http://www.9tut.com/frame-relay-tutorial" target="_blank">Frame Relay tutorial</a>.</p>
<p class="ccnaquestionsnumber">Question 1:</p>
<p>What destination Layer 2 address will be used in the frame header containing a packet for host 172.30.0.4?</p>
<p>A &#8211; 704<br />
 B &#8211; 196<br />
 C &#8211; 702<br />
 D &#8211; 344</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaquestionsnumber">Question 2:</p>
<p>A static map to the S-AMER location is required. Which command should be used to create this map?</p>
<p>A &#8211; frame-relay map ip 172.30.0.3 704 broadcast<br />
 B &#8211; frame-relay map ip 172.30.0.3 196 broadcast<br />
 C &#8211; frame-relay map ip 172.30.0.3 702 broadcast<br />
 D &#8211; frame-relay map ip 172.30.0.3 344 broadcast</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaquestionsnumber">Question 3:</p>
<p>Which connection uses the default encapsulation for serial interfaces on Cisco routers?</p>
<p>A &#8211; The serial connection to the MidEast branch office <br />
 B &#8211; The serial connection to the DeepSouth branch office<br />
 C &#8211; The serial connection to the NorthCentral branch office<br />
 D &#8211; The serial connection to the Multinational Core</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 4:</p>
<p>If required, what password should be configured on the router in the MidEast branch office to allow a connection to be established with the Dubai router?</p>
<p>A &#8211; No password is required<br />
 B &#8211; Enable<br />
 C &#8211; Scr<br />
 D &#8211; Telnet<br />
 E &#8211; Console</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A or D (because maybe there are 2 versions of this question, depending on the output of &#8220;show running-config&#8221; command, please read the explanation below)</p>
<p><span class="ccnaexplanation">Explanation</span></p>
<p>This question is not clear for a long time but now maybe the trick was solved. What Cisco wants to ask is the word used as password, not the type of connection, so in the exam you might see some strange words for answers like &#8220;En8ble&#8221;, &#8220;T1net&#8221;, &#8220;C0nsole&#8221;. All you have to do is to use the command &#8220;show running-config&#8221; as wx4 mentioned below to find the answer.</p>
<p><span class="pinkandbold">wx4</span> commented:</p>
<p>Q4: if password required which?<br />
 in my example it was connection to North!</p>
<p>How to figure out which pw is required?</p>
<p>#show running-config</p>
<p>1. check the interface to the router you need connection to. If there is &#8220;ppp authentication&#8221; you need a password!</p>
<p>2. you will find the password on the top of your running-config output</p>
<p>check the area:</p>
<p>username North password c0nsole<br />
 username xxxxx yyyyy<br />
 username&#8230;</p>
<p>in my case it was c0nsole, in your case it can be no password needed or a different password.</p>
<p>If you are still not clear, please read <span class="pinkandbold">anton</span>&#8216;s comment:</p>
<p>A big question I noticed here was about the FR Lab regarding the password. You have to perform a show running-config and look for USERNAME and PASSWORD.<br />
 i.e.<br />
 username South_Router password c0nsol3<br />
 username North_Router password t31net</p>
<p>Obviously this has to be en PPP encapsulation, if asked for a posible password for SOUTH_ROUTER you pick c0nsol3, and for NORTH_ROUTER you pick t31net. If you&#8217;re running HDLC, i would pick &#8220;no password is required&#8221;.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-hotspot-questions/feed</wfw:commentRss>
		<slash:comments>317</slash:comments>
		</item>
		<item>
		<title>RIP Tutorial</title>
		<link>http://www.9tut.com/rip-routing-protocol-tutorial</link>
		<comments>http://www.9tut.com/rip-routing-protocol-tutorial#comments</comments>
		<pubDate>Thu, 03 Feb 2011 12:15:35 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Knowledge]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=443</guid>
		<description><![CDATA[In this tutorial we will learn about RIP routing protocol Routing Information Protocol (RIP) is a distance-vector routing protocol. RIP sends the complete routing table out to all active interfaces every 30 seconds. RIP only uses hop count (the number of routers) to determine the best way to a remote network. Note: RIP v1 is [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial we will learn about RIP routing protocol</p>
<p>Routing Information Protocol (RIP) is a distance-vector routing protocol. RIP sends the complete routing table out to all active interfaces every 30 seconds. RIP only uses hop count (the number of routers) to determine the best way to a remote network.</p>
<p>Note: RIP v1 is a classful routing protocol but RIP v2 is a classless routing protocol.</p>
<p>Classful routing protocols do not include the subnet mask with the network address in routing updates, which can cause problems with discontiguous subnets or networks that use Variable-Length Subnet Masking (VLSM). Fortunately, RIPv2 is a classless routing protocol so subnet masks are included in the routing updates, making RIPv2 more compatible with modern routing environments.</p>
<p>Distance vector protocols advertise routing information by sending messages, called routing updates, out the interfaces on a router</p>
<p><span id="more-443"></span>Key points:</p>
<p><!--adsense--></p>
<p>+ RIP uses hop counts to calculate optimal routes (a hop is a router). <br />
 + RIP routing is limited to 15 hops to any location (16 hops indicates the network is unreachable). <br />
 + RIP uses the split horizon with poison reverse method to prevent the count-to-infinity problem. <br />
 + RIP uses only classful routing, so it uses full address classes, not subnets. <br />
 + RIP broadcasts updates to the entire network. <br />
 + RIP can maintain up to six multiple paths to each network, but only if the cost is the same. <br />
 + RIP supports load balancing over same-cost paths. <br />
 + The update interval default is 30, the invalid timer default is 180, the holddown timer default is 180, and the flush timer default is 240.</p>
<p><br class="spacer_" /></p>
<p>A big problem with distance vector routing protocol is routing loop</p>
<p>A common problem that could occur with routing protocol is that a routing loop. Let&#8217;s take a look at how a routing loop occurs.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Here we have routers A, B and C. Notice that at the beginning (when a routing protocol is not turned on) there are only directly connected networks in the routing tables of these routers. For example, in the routing table of router A, <strong>network 1.0.0.0</strong> has already been known because it is directly connected through <strong>interface E0</strong> and the <strong>metric</strong> (of a directly connected network) is <strong>0</strong> (these 3 parameters are shown in the routing tables below).</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/RIP/RIP_Distance_Vector_Protocol_Initial.jpg" alt="RIP_Distance_Vector_Protocol_Initial.jpg" width="485" height="164" /></p>
<p>Also B knows networks <strong>2.0.0.0</strong> &amp; <strong>3.0.0.0</strong> with a <strong>metric of 0</strong>.<br />
 Also C knows networks <strong>3.0.0.0</strong> &amp; <strong>4.0.0.0</strong> with a <strong>metric of 0</strong>.</p>
<p><br class="spacer_" /></p>
<p>Now we turn on RIP on these routers (we will discuss the configuration later. In the rest of this article, we will call network 1.0.0.0 network 1, 2.0.0.0 network 2 and so on).</p>
<p>RIP sends update every 30  seconds so  after 30 sec goes by, A sends a copy of its routing table to B, B  already knew about network 2 but now B learns about network 1  as well. Notice the metric we have here for directly connected  networks, since we&#8217;re using RIP, we&#8217;re using a metric of hop count.  Remember a hop count (or a hop) is how many routers that these packets  will have to go through to reach the destination. For example, from router A to  network 1 &amp; 2 (which are directly connected) it goes to 0 hop, router B has now learned about network 1  from A via E0 interface so the metric now will be 1 hop.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/RIP/RIP_Distance_Vector_Protocol_First_Update.jpg" alt="RIP_Distance_Vector_Protocol_First_Update.jpg" width="485" height="310" /></p>
<p>Each router receives a routing table from its direct neighbor. For example, Router B receives information from Router A about network 1 and 2. It then adds a distance vector metric (such as the number of hops), increasing the distance vector of these routes by 1.</p>
<p>B also exchanges its routing table with A about network 2 and 3.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/RIP/RIP_Distance_Vector_Protocol_Second_Update.jpg" alt="RIP_Distance_Vector_Protocol_Second_Update.jpg" width="485" height="310" /></p>
<p>B then passes the routing table to its other neighbor, Router C.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/RIP/RIP_Distance_Vector_Protocol_Third_Update.jpg" alt="RIP_Distance_Vector_Protocol_Third_Update.jpg" width="485" height="330" /></p>
<p style="text-align: left;">C also sends its update to B and B sends it to A.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/RIP/RIP_Distance_Vector_Protocol_Four_Update.jpg" alt="RIP_Distance_Vector_Protocol_Four_Update.jpg" width="485" height="330" /></p>
<p style="text-align: left;">Now the network is converged.</p>
<p style="text-align: left;">Now let&#8217;s assume network 4 down suddenly.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/RIP/RIP_Distance_Vector_Protocol_Network_Down.jpg" alt="RIP_Distance_Vector_Protocol_Network_Down.jpg" width="485" height="210" /></p>
<p>When network 4 fails, Router C detects the failure and stops routing packets out its E1 interface. However, Routers A and B have not yet received notification of the failure. Router A still believes it can access 4.0.0.0 through Router B. The routing table of Router A still refects a path to network 10.4.0.0 with a distance of 2 and router B has a path with a distance of 1.</p>
<p>There will be no problem if C sends an update earlier than B and inform that network is currently down but if B sends its update first, C will see B has a path to network 4 with a metric of 1 so it updates its routing table, thinking that &#8220;if B can go to network 4 by 1 hop than I can go to network 4 by 2 hops&#8221; but of course this is totally wrong.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/RIP/RIP_Distance_Vector_Protocol_Network_Down_2.jpg" alt="RIP_Distance_Vector_Protocol_Network_Down_2.jpg" width="485" height="240" /></p>
<p>The problem does not stop here. In turn, C sends an update to B and informs it can access network 4 by 2 hops. B learns this and think &#8220;if C can access network 4 by 2 hops than I can access by 3 hops&#8221;.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/RIP/RIP_Distance_Vector_Protocol_Network_Down_3.jpg" alt="RIP_Distance_Vector_Protocol_Network_Down_3.jpg" width="485" height="240" /></p>
<p>This same process occurs when B continually sends its update to C and the metric will increase to infinity so this phenomenon is called &#8220;counting to infinity&#8221;.</p>
<p>Below lists some methods to prevent this phenomenon:</p>
<p><strong>SPLIT HORIZON:</strong><br />
 A router never sends information about a route back in same direction  which is original information came, routers keep track of where the  information about a route came from. Means when router A sends update  to router B about any failure network, router B does not send  any update for same network to router A in same direction.</p>
<p><strong>ROUTE POISONING:</strong><br />
 Router consider route advertised with an infinitive metric to have  failed ( metric=16) instead of marking it down. For example, when  network 4 goes down, router C starts route poisoning by advertising the  metric (hop count) of this network as 16, which indicates an unreachable  network.</p>
<p><strong>POISON REVERSE:</strong></p>
<p>The poison reverse rule overwrites split horizon rule. For example,  if router B receives a route poisoning of network 4 from router C then  router B will send an update back to router C (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.</p>
<p>Notice that every router performs poison reverse when learning about a  downed network. In the above example, router A also performs poison  reverse when learning about the downed network from B.</p>
<p><strong>HOLD DOWN TIMERS:</strong></p>
<p>After hearing a route poisoning, router starts a hold-down timer for  that route. If it gets an update with a better metric than the  originally recorded metric within the hold-down timer period, the  hold-down timer is removed and data can be sent to that network. Also  within the hold-down timer, if an update is received from a different  router than the one who performed route poisoning with an equal or  poorer metric, that update is ignored. During the hold-down timer, the  &#8220;downed&#8221; route appears as &#8220;possibly down&#8221; in the routing table.</p>
<p>For example, in the above example, when B receives a route poisoning  update from C, it marks network 4 as &#8220;possibly down&#8221; in its routing  table and starts the hold-down timer for network 4. In this period if it  receives an update from C informing that the network 4 is recovered  then B will accept that information, remove the hold-down timer and  allow data to go to that network. But if B receives an update from A  informing that it can reach network by 1 (or more) hop, that update will  be ignored and the hold-down timer keeps counting.</p>
<p>Note: The default hold-down timer value = 180 second.</p>
<p><strong>TRIGGERED UPDATE :</strong><br />
 When any route failed in network ,do not wait for the next periodic update instead send an immediate update listing the poison route.</p>
<p><strong>COUNTING TO INFINITY:</strong><br />
 Maximum count 15 hops after it will not be reachable.</p>
<p><strong>Configuring RIP</strong></p>
<table border="1">
<tbody>
<tr>
<td>Router(config)#router rip</td>
<td>Enter router RIP configuration mode</td>
</tr>
<tr>
<td>Router(config-router)#network <em>&lt;address&gt;</em></td>
<td>Identify networks that will participate in the router protocol. Notice that you identify networks, and not interfaces.</td>
</tr>
</tbody>
</table>
<p>NOTE: You need to advertise only the classful network number, not a  subnet:<br />
 Router(config-router)#network 172.16.0.0<br />
 not<br />
 Router(config-router)#network 172.16.10.0</p>
<p>If you advertise a subnet, you will not receive an error message,  because the router will automatically convert the subnet to the classful  network address.</p>
<p>To learn more about configuring RIP, please read my <a href="http://www.9tut.com/configuring-rip-gns3-lab" target="_blank">Configuring RIP GNS3 Lab tutorial</a></p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/rip-routing-protocol-tutorial/feed</wfw:commentRss>
		<slash:comments>39</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; STP Questions</title>
		<link>http://www.9tut.com/ccna-stp-questions</link>
		<comments>http://www.9tut.com/ccna-stp-questions#comments</comments>
		<pubDate>Tue, 01 Feb 2011 10:20:10 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=600</guid>
		<description><![CDATA[Here you will find answers to Spanning Tree Protocol Questions Note: If you are not sure how STP and RSTP work, please read my STP tutorial and RSTP tutorial. Question 1 Which three statements about RSTP are true? (choose three) A. RSTP significantly reduces topology reconverging time after a link failure. B. RSTP expends the [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to Spanning Tree Protocol Questions</p>
<p>Note: If you are not sure how STP and RSTP work, please read my <a href="http://www.9tut.com/spanning-tree-protocol-stp-tutorial" target="_blank">STP tutorial</a> and <a href="http://www.9tut.com/rapid-spanning-tree-protocol-rstp-tutorial" target="_blank">RSTP tutorial</a>.</p>
<p><!--adsense--></p>
<p><span class="ccnaquestionsnumber">Question 1</span></p>
<p>Which three statements about RSTP are true? (choose three)</p>
<p>A. RSTP significantly reduces topology reconverging time after a link failure. <br />
 B. RSTP expends the STP port roles by adding the alternate and backup roles. <br />
 C. RSTP port states are blocking, discarding, learning, or forwarding. <br />
 D. RSTP also uses the STP proposal-agreement sequence. <br />
 E. RSTP use the same timer-based process as STP on point-to-point links. <br />
 F. RSTP provides a faster transition to the forwarding state on point-to-point links than STP does.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A B F</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Which two states are the port states when RSTP has converged? (choose two)</p>
<p>A. blocking<br />
 B. learning <br />
 C. disabled <br />
 D. forwarding <br />
 E. listening</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A D</p>
<p class="ccnaexplanation">Explanation</p>
<p>RSTP only has 3 port states that are discarding, learning and forwarding. When RSTP has converged there are only 2 port states left: discarding and forwarding but the answers don’t mention about discarding state so blocking state (answer A) may be considered the best alternative answer.</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Which command enables RSTP on a switch?</p>
<p>A. spanning-tree mode rapid-pvst <br />
 B. spanning-tree uplinkfast <br />
 C. spanning-tree backbonefast <br />
 D. spanning-tree mode mst</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>At which layer of the OSI model is RSTP used to prevent loops?</p>
<p>A. data link <br />
 B. network <br />
 C. physical <br />
 D. transport</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Refer to the exhibit. Given the  output shown from this Cisco Catalyst 2950, what is the most likely reason that interface FastEthernet 0/10 is not the root port for VLAN 2?</p>
<p><strong>Switch# show spanning-tree interface fastethernet0/10</strong></p>
<p style="text-align: left;"><img src="http://www.9tut.com/images/ccna/STP/STP_show_spanning_tree_interface.jpg" alt="STP_show_spanning_tree_interface.jpg" width="447" height="105" /></p>
<p>A. This switch has more than one interface connected to the root network segment in VLAN 2. <br />
 B. This switch is running RSTP while the elected designated switch is running 802.1d Spanning Tree. <br />
 C. This switch interface has a higher path cost to the root bridge than another in the topology. <br />
 D. This switch has a lower bridge ID for VLAN 2 than the elected designated switch.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>Which two of these statements regarding RSTP are correct? (Choose two)</p>
<p>A. RSTP cannot operate with PVST+. <br />
 B. RSTP defines new port roles. <br />
 C. RSTP defines no new port states. <br />
 D. RSTP is a proprietary implementation of IEEE 802.1D STP. <br />
 E. RSTP is compatible with the original IEEE 802.1D STP.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>B E</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>Refer to the exhibit. Each of these four switches has been configured with a hostname, as well as being configured to run RSTP. No other configuration changes have been made. Which three of these show the correct RSTP port roles for the indicated switches and interfaces? (Choose three)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/STP/RSPT_port_states.jpg" alt="RSPT_port_states.jpg" width="340" height="300" /></p>
<p>A. SwitchA, Fa0/2, designated <br />
 B. SwitchA, Fa0/1, root <br />
 C. SwitchB, Gi0/2, root <br />
 D. SwitchB, Gi0/1, designated <br />
 E. SwitchC, Fa0/2, root <br />
 F. SwitchD, Gi0/2, root</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A B F</p>
<p class="ccnaexplanation">Explanation</p>
<p>The question says &#8220;no other configuration changes have been made&#8221; so we can understand these switches have the same bridge priority. Switch C has lowest MAC address so it will become root bridge and 2 of its ports (Fa0/1 &amp; Fa0/2) will be designated ports -&gt; E is incorrect.</p>
<p>Because SwitchC is the root bridge so the 2 ports nearest SwitchC on SwitchA (Fa0/1) and SwitchD (Gi0/2) will be root ports -&gt; B and F are correct.</p>
<p>Now we come to the most difficult part of this question: SwitchB must have a root port so which port will it choose? To answer this question we need to know about STP cost and port cost.</p>
<p>In general, &#8220;cost&#8221; is calculated based on bandwidth of the link. The higher the bandwidth on a link, the lower the value of its cost. Below are the cost values you should memorize:</p>
<table border="1">
<tbody>
<tr>
<td><strong>Link speed</strong></td>
<td><strong>Cost</strong></td>
</tr>
<tr>
<td>10Mbps</td>
<td>100</td>
</tr>
<tr>
<td>100Mbps</td>
<td>19</td>
</tr>
<tr>
<td>1 Gbps</td>
<td>4</td>
</tr>
</tbody>
</table>
<p>SwitchB will choose the interface with lower cost to the root bridge as the root port so we must calculate the cost on interface Gi0/1 &amp; Gi0/2 of SwitchB to the root bridge. This can be calculated from the &#8220;cost to the root bridge&#8221; of each switch because<strong> a switch always advertises its cost to the root bridge</strong> in its BPDU. The receiving switch will <strong>add its local port cost value to the cost</strong> in the BPDU.</p>
<p>One more thing to notice is that a root bridge always advertises the cost to the root bridge (itself) with an initial value of 0.</p>
<p>Now let&#8217;s have a look at the topology again</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/STP/RSPT_port_states_explanation.jpg" alt="RSPT_port_states_explanation.jpg" width="420" height="380" /></p>
<p>SwitchC advertises its cost to the root bridge with a value of 0. Switch D adds 4 (the cost value of 1Gbps link) and advertises this value (4) to SwitchB. SwitchB adds another 4 and learns that it can reach SwitchC via Gi0/1 port with a total cost of 8. The same process happens for SwitchA and SwitchB learns that it can reach SwitchC via Gi0/2 with a total cost of 23 -&gt; Switch B chooses Gi0/1 as its root port -&gt; D is not correct.</p>
<p>Now our last task is to identify the port roles of the ports between SwitchA &amp; SwitchB. It is rather easy as the MAC address of SwitchA is lower than that of SwitchB so Fa0/2 of SwitchA will be designated port while Gi0/2 of SwitchB will be alternative port -&gt; A is correct but C is not correct.</p>
<p>Below summaries all the port roles of these switches:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/STP/RSPT_port_roles.jpg" alt="RSPT_port_roles.jpg" width="340" height="300" /></p>
<p>+ DP: Designated Port (forwarding state)<br />
 + RP: Root Port (forwarding state)<br />
 + AP: Alternative Port (blocking state)</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>Which two protocols are used by bridges and/or switches to prevent loops in a layer 2 network? (Choose two)</p>
<p>A. 802.1d <br />
 B. VTP <br />
 C. 802.1q <br />
 D. STP <br />
 E. SAP</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A D</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>Which switch would STP choose to become the root bridge in the selection process?</p>
<p>A. 32768: 11-22-33-44-55-66 <br />
 B. 32768: 22-33-44-55-66-77 <br />
 C. 32769: 11-22-33-44-55-65 <br />
 D. 32769: 22-33-44-55-66-78</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>Refer to the topology shown in the exhibit. Which ports will be STP designated ports if all the links are operating at the same bandwidth? (Choose three)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/STP/STP_designated_port.jpg" alt="STP_designated_port.jpg" width="350" height="260" /></p>
<p>A. Switch A &#8211; Fa0/0 <br />
 B. Switch A &#8211; Fa0/1 <br />
 C. Switch B &#8211; Fa0/0 <br />
 D. Switch B &#8211; Fa0/1 <br />
 E. Switch C &#8211; Fa0/0 <br />
 F. Switch C &#8211; Fa0/1</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B C D</p>
<p class="ccnaexplanation">Explanation</p>
<p>First by comparing their MAC addresses we learn that switch B will be root bridge as it has lowest MAC. Therefore all of its ports are designated ports -&gt; C &amp; D are correct.</p>
<p>On the link between switch A &amp; switch C there must have one designated port and one non-designated (blocked) port. We can figure out which port is designated port by comparing their MAC address again. A has lower MAC so Fa0/1 of switch A will be designated port while Fa0/1 of switch C will be blocked -&gt;  B is correct.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-stp-questions/feed</wfw:commentRss>
		<slash:comments>207</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; STP Questions 2</title>
		<link>http://www.9tut.com/ccna-stp-questions-2</link>
		<comments>http://www.9tut.com/ccna-stp-questions-2#comments</comments>
		<pubDate>Sun, 30 Jan 2011 05:14:15 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=922</guid>
		<description><![CDATA[Here you will find answers to STP Questions &#8211; Part 2 Note: If you are not sure about STP, please read my STP tutorial and RSTP tutorial. Question 1 Which term describes a spanning-tree network that has all switch ports in either the blocking or forwarding state? A. redundant B. spanned C. provisioned D. converged [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to STP Questions &#8211; Part 2</p>
<p><!--adsense--></p>
<p>Note: If you are not sure about STP, please read my <a href="http://www.9tut.com/spanning-tree-protocol-stp-tutorial" target="_blank">STP tutorial</a> and <a href="http://www.9tut.com/rapid-spanning-tree-protocol-rstp-tutorial" target="_blank">RSTP tutorial</a>.</p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Which term describes a spanning-tree network that has all switch ports in either the blocking or forwarding state?</p>
<p>A. redundant<br />
 B. spanned<br />
 C. provisioned<br />
 D. converged</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation</p>
<p>Spanning Tree Protocol convergence (Layer 2 convergence) happens when bridges and switches have transitioned to either the forwarding or blocking state. When layer 2 is converged, root bridge is elected and all port roles (Root, Designated and Non-Designated) in all switches are selected.</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Which two values are used by Spanning Tree Protocol to elect a root bridge? (Choose two)</p>
<p>A. amount of RAM<br />
 B. bridge priority<br />
 C. IOS version<br />
 D. IP address<br />
 E. MAC address<br />
 F. speed of the links</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B E</p>
<p class="ccnaexplanation">Explanation</p>
<p>Bridge ID = Bridge Priority + MAC Address</p>
<p>For example:</p>
<p>+ The bridge priority of SwA is 32768 and its MAC address is 0000.0000.9999 -&gt; the bridge ID of SwA is 32768:0000.0000.9999<br />
 + The bridge priority of SwB is 32768 and its MAC address is 0000.0000.1111 -&gt; the bridge ID of SwB is 32768:0000.0000.1111</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Which command enhances the 802.1D convergence time on ports that are connected to hosts?</p>
<p>A. spanning-tree backbonefast<br />
 B. spanning-tree uplinkfast<br />
 C. spanning-tree portfast<br />
 D. spanning-tree cost512</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>C</p>
<p class="ccnaexplanation">Explanation</p>
<p>By using PortFast feature, the port won&#8217;t spend 50 seconds to move from blocking (20sec), listening (15sec), learning (15sec) and finally forwarding but will jump directly to the forwarding state. This feature should be used on ports connected to hosts only because hosts surely don&#8217;t send BPDU. An example of configuring PortFast on an interface is shown below:</p>
<p>Sw(config)#interface FastEthernet0/1<br />
 Sw(config-if)#spanning-tree portfast</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Which two of these are used by bridges and switches to prevent loops in a layer 2 network? (Choose two)</p>
<p>A. 802.1D<br />
 B. VTP<br />
 C. 802.1Q<br />
 D. STP<br />
 E. SAP</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A D</p>
<p class="ccnaexplanation">Explanation</p>
<p>Both 802.1D and STP are referred to the STP standard which is used by bridges and switches to prevent loops in a layer 2 network.</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Refer to the exhibit. The output that is shown is generated at a switch. Which three of these statements are true? (Choose three)</p>
<p><img src="http://www.9tut.com/images/ccna/STP/show_spanning-tree_vlan_30.jpg" alt="show_spanning-tree_vlan_30.jpg" width="503" height="303" /></p>
<p>A. All ports will be in a state of discarding, learning or forwarding.<br />
 B. Thirty VLANs have been configured on this switch.<br />
 C. The bridge priority is lower than the default value for spanning tree. <br />
 D. All interfaces that are shown are on shared media.<br />
 E. All designated ports are in a forwarding state.<br />
 F. The switch must be the root bridge for all VLANs on this switch.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A C E</p>
<p class="ccnaexplanation">Explanation</p>
<p>From the output, we see that all ports are in Designated role (forwarding state) -&gt; A and E are correct.</p>
<p>The command &#8220;show spanning-tree vlan 30&#8243; only shows us information about VLAN 30. We don&#8217;t know how many VLAN exists in this switch -&gt; B is not correct.</p>
<p>The bridge priority of this switch is 24606 which is lower than the default value bridge priority 32768 -&gt; C is correct.</p>
<p>All three interfaces on this switch have the connection type &#8220;p2p&#8221;, which means Point-to-point environment &#8211; not a shared media -&gt; D is not correct.</p>
<p>The only thing we can specify is this switch is the root bridge for VLAN 3o but we can not guarantee it is also the root bridge for other VLANs -&gt; F is not correct.<br class="spacer_" /></p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>What is one benefit of PVST+?</p>
<p>A. PVST+ reduces the CPU cycles for all the switches in the network.<br />
 B. PVST+ automatically selects the root bridge location, to provide optimization.<br />
 C. PVST+ allows the root switch location to be optimized per vlan. <br />
 D. PVST+ supports Layer 3 load balancing without loops.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>Per VLAN Spanning Tree (PVST) maintains a spanning tree instance for each VLAN configured in the network. It means a switch can be the root bridge of a VLAN while another switch can be the root bridge of other VLANs in a common topology. For example, Switch 1 can be the root bridge for Voice data while Switch 2 can be the root bridge for Video data. If designed correctly, it can optimize the network traffic.</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>Which IEEE standard protocol is initiated as a result of successful DTP completion in a switch over FastEthernet?</p>
<p>A. 802.3ad<br />
 B. 802.1w<br />
 C. 802.1Q<br />
 D. 802.1d</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>Dynamic Trunking Protocol (DTP) is a Cisco proprietary protocol for negotiating trunking on a link between two devices and for negotiating the type of trunking encapsulation (802.1Q) to be used.</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>What value is primarily used to determine which port becomes the root port on each non-root switch in a spanning-tree topology?</p>
<p>A. lowest port MAC address<br />
 B. port priority number and MAC address.<br />
 C. VTP revision number <br />
 D. highest port priority number.<br />
 E. path cost</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> E</p>
<p class="ccnaexplanation">Explanation</p>
<p>The path cost to the root bridge is the most important value to determine which port will become the root port on each non-root switch. In particular, the port with lowest cost to the root bridge will become root port (on non-root switch).</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>When PVST+ in work on VLAN1 of the switch, what will affect on selection of one of switches in the VLAN as root-bridge?</p>
<p>A. Lowest IP address <br />
 B. Highest MAC address <br />
 C. Lowest MAC address <br />
 D. Highest IP address</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>The two values used to select the root bridge are Bridge Priority &amp; MAC address (the lower is better) -&gt; C is correct.</p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>Refer to the exhibit. A network administrator wants Switch3 to be the   root bridge. What could be done to ensure Switch3 will be the root?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/STP/Switch_root_bridge.jpg" alt="Switch_root_bridge.jpg" width="400" height="200" /></p>
<p>A. Configure the IP address on Switch3 to be higher than the IP addresses of Switch1 and Switch2.<br />
 B. Configure the priority value on Switch3 to be higher than the priority values of Switch 1 and Switch2.<br />
 C. Configure the BID on Switch3 to be lower than the BIDs of Switch1 and Switch2.<br />
 D. Configure the MAC address on Switch3 to be higher than the Switch1 and Switch2 MAC addresses.<br />
 E. Configure a loopback interface on Switch3 with an IP address lower than any IP address on Switch1 and Switch2.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>C</p>
<p class="ccnaexplanation">Explanation</p>
<p>To become root bridge, a switch must have lower Bridge ID (BID) than  that of the others. The Bridge ID = Bridge Priority + MAC address; but  MAC address is a fixed value so we can only change the BID by changing  the Bridge Priority of that switch.</p>
<p><span class="ccnaquestionsnumber">Question 11</span></p>
<p>Which port state is introduced by Rapid-PVST?</p>
<p>A. learning<br />
 B. listening<br />
 C. discarding<br />
 D. forwarding</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>C</p>
<p class="ccnaexplanation">Explanation</p>
<p>PVST+ is based on IEEE802.1D Spanning Tree Protocol (STP). But PVST+  has only 3 port states (discarding, learning and forwarding) while STP  has 5 port states (blocking, listening, learning, forwarding and  disabled). So discarding is a new port state in PVST+.</p>
<p><span class="ccnaquestionsnumber">Question 12</span></p>
<p>At which layer of the OSI model is RSTP used to prevent loops?</p>
<p>A. data link<br />
 B. network<br />
 C. physical <br />
 D. transport</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaexplanation">Explanation</p>
<p>RSTP and STP operate on switches and are based on the exchange of  Bridge Protocol Data Units (BPDUs) between switches. One of the most  important fields in BPDUs is the Bridge Priority in which the MAC  address is used to elect the Root Bridge -&gt; RSTP operates at Layer 2 &#8211;  Data Link layer -&gt; A is correct.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-stp-questions-2/feed</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; IPv6 Questions</title>
		<link>http://www.9tut.com/ccna-ipv6</link>
		<comments>http://www.9tut.com/ccna-ipv6#comments</comments>
		<pubDate>Thu, 20 Jan 2011 10:19:19 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=45</guid>
		<description><![CDATA[Here you will find answer to CCNA &#8211; IPv6 questions If you are not sure about IPv6, please read my IPv6 tutorial Question 1 As a CCNA candidate, you must have a firm understanding of the IPv6 address structure. Refer to IPv6 address, could you tell me how many bits are included in each filed? [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answer to CCNA &#8211; IPv6 questions</p>
<p><!--adsense--></p>
<p>If you are not sure about IPv6, please read my <a href="http://www.9tut.com/ipv6-tutorial" target="_blank">IPv6 tutorial</a></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>As a CCNA candidate, you must have a firm understanding of the IPv6 address structure. Refer to IPv6 address, could you tell me how many bits are included in each filed?</p>
<p>A &#8211; 24 <br />
 B &#8211; 4<br />
 C &#8211; 3<br />
 D &#8211; 16</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation:</p>
<p>The format of a IPv6 address is X:X:X:X:X:X:X:X where X is a 16-bit hexadecimal field. For example: 110A:0192:190F:0000:0000:082C:875A:132c</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>In practical IPv6 application, a technology encapsulates IPv6 packets inside IPv4 packets, this technology is called what?</p>
<p>A &#8211; tunneling <br />
 B &#8211; hashing <br />
 C &#8211; routing <br />
 D &#8211; NAT</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Internet Protocol version 6 (IPv6) is the next-generation Internet Protocol version designated as the successor to IPv4 because IPv4 address space is being exhausted. Which one of the following descriptions about IPv6 is correct?</p>
<p>A &#8211; Addresses are not hierarchical and are assigned at random. <br />
 B &#8211; Broadcasts have been eliminated and replaced with multicasts. <br />
 C &#8211; There are 2.7 billion available addresses.<br />
 D &#8211; An interface can only be configured with one IPv6 address.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Which two of these statements are true of IPv6 address representation? (Choose two)</p>
<p>A &#8211; The first 64 bits represent the dynamically created interface ID.<br />
 B &#8211; A single interface may be assigned multiple IPV6 addresses of any type. <br />
 C &#8211; Every IPV6 interface contains at least one loopback address.<br />
 D &#8211; Leading zeros in an IPV6 16 bit hexadecimal field are mandatory.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B C</p>
<p class="ccnaexplanation">Explanation:</p>
<p>Leading zeros in IPv6 are optional do that 05C7 equals 5C7 and 0000 equals 0 -&gt; D is not corect.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Which three of the following are IPv6 transition mechanisms? (Choose three)</p>
<p>A &#8211; 6to4 tunneling<br />
 B &#8211; GRE tunneling<br />
 C &#8211; ISATAP tunneling<br />
 D &#8211; Teredo tunneling<br />
 E &#8211; VPN tunneling<br />
 F &#8211; PPP tunneling</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A C D</p>
<p class="ccnaexplanation">Explanation:</p>
<p>Below is a summary of IPv6 transition technologies:</p>
<p><strong>6 to 4 tunneling: </strong>This mechanism allows IPv6 sites to communicate with each other over the IPv4 network without explicit tunnel setup. The main advantage of this technology is that it requires no end-node reconfiguration and minimal router configuration but it is not intended as a permanent solution.</p>
<p><strong>ISATAP tunneling</strong> (Intra-Site Automatic Tunnel Addressing Protocol):  is a mechanism for transmitting IPv6 packets over IPv4 network. The word &#8220;automatic&#8221; means that once an ISATAP server/router has been set up, only the clients must be configured to connect to it.</p>
<p><strong>Teredo tunneling:</strong> This mechanism tunnels IPv6 datagrams within IPv4 UDP datagrams, allowing private IPv4 address and IPv4 NAT traversal to be used.</p>
<p>In fact, GRE tunneling is also a IPv6 transition mechanism but is not mentioned in CCNA so we shouldn&#8217;t choose it (there are 4 types of IPv6 transition mechanisms mentioned in CCNA; they are: manual, 6-to-4, Teredo and ISATAP).</p>
<p><br class="spacer_" /></p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>Which two descriptions are correct about characteristics of IPv6 unicast addressing? (Choose two)</p>
<p>A &#8211; Global addresses start with 2000::/3.<br />
 B &#8211; Link-local addresses start with FF00::/10.<br />
 C &#8211; Link-local addresses start with FE00:/12.<br />
 D &#8211; There is only one loopback address and it is ::1.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A D</p>
<p class="ccnaexplanation">Explanation:</p>
<p>Below is the list of common kinds of IPv6 addresses:</p>
<table border="1" align="center">
<tbody>
<tr>
<td><strong>Loopback address</strong></td>
<td>::1</td>
</tr>
<tr>
<td><strong>Link-local address</strong></td>
<td>FE80::/10</td>
</tr>
<tr>
<td><strong>Site-local address</strong></td>
<td>FEC0::/10</td>
</tr>
<tr>
<td><strong>Global address</strong></td>
<td>2000::/3</td>
</tr>
<tr>
<td><strong>Multicast address</strong></td>
<td>FF00::/8</td>
</tr>
</tbody>
</table>
<p><br class="spacer_" /></p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>Select the valid IPv6 addresses. (Choose all apply)</p>
<p>A &#8211; ::192:168:0:1<br />
 B &#8211; 2002:c0a8:101::42<br />
 C &#8211; 2003:dead:beef:4dad:23:46:bb:101<br />
 D &#8211; ::<br />
 E &#8211; 2000::<br />
 F &#8211; 2001:3452:4952:2837::</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A B C D F</p>
<p class="ccnaexplanation">Explanation:</p>
<p>Answers A B C are correct because A and B are the short form of 0:0:0:0:192:168:0:1 and  2002:c0a8:0101:0:0:0:0:0042 while C are normal IPv6 address.</p>
<p>Answer D is correct because &#8220;::&#8221; is named the &#8220;unspecified&#8221; address and is typically used in the source field of a datagram that is sent by a device that seeks to have its IP address configured.</p>
<p>Answer E is not correct because a global-unicast IPv6 address is started with binary 001, denoted as 2000::/3 in IPv6 and it also known as an aggregatable global <span style="font-size: x-small;">unicast</span> address.The 2000:: (in particular, 2000::/3) is just a prefix and is not a valid IPv6 address.</p>
<p>The entire global-unicast IPv6 address range is from 2000::/128 to 3FFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF/128, resulting in a total usable space of over 42,535,295,865,117,307,932,921,825,928,971,000,000 addresses, which is only 1/8th of the entire IPv6 address space!</p>
<p><br class="spacer_" /></p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>What is the Multicast for all-router muticast access ?</p>
<p>A &#8211; FF02::4<br />
 B &#8211; FF02::3<br />
 C &#8211; FF02::2<br />
 D &#8211; FF02::1</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-ipv6/feed</wfw:commentRss>
		<slash:comments>222</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Subnetting</title>
		<link>http://www.9tut.com/ccna-subnetting</link>
		<comments>http://www.9tut.com/ccna-subnetting#comments</comments>
		<pubDate>Mon, 10 Jan 2011 10:09:50 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=13</guid>
		<description><![CDATA[Here you will find answers to CCNA Subnetting Questions Note: If you are not sure about subnetting, please read my Subnetting tutorial. Question 1 Given a subnet mask of 255.255.255.224, which of the following addresses can be assigned to network hosts? (Choose three) A &#8211; 15.234.118.63 B &#8211; 92.11.178.93 C &#8211; 134.178.18.56 D &#8211; 192.168.16.87 [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to CCNA Subnetting Questions</p>
<p><!--adsense--></p>
<p>Note: If you are not sure about subnetting, please read my <a href="http://www.9tut.com/subnetting-tutorial" target="_blank">Subnetting tutorial</a>.</p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Given a subnet mask of 255.255.255.224, which of the following addresses can be assigned to network hosts? (Choose three)</p>
<p>A &#8211; 15.234.118.63<br />
 B &#8211; 92.11.178.93<br />
 C &#8211; 134.178.18.56<br />
 D &#8211; 192.168.16.87<br />
 E &#8211; 201.45.116.159<br />
 F &#8211; 217.63.12.192</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B C D</p>
<p class="ccnaexplanation">Explanation</p>
<p>A subnet mask of 255.255.255.224 has an increment of 32 (the binary form of the last octet is 11<strong>1</strong>0 0000) so we can&#8217;t use numbers which are the multiples of 32 because they are sub-network addresses. Besides, we can&#8217;t use broadcast addresses of these sub-networks (the broadcast address of the previous subnet is calculated by subtracting 1 from the network address). For example the network address of the 2nd subnet is x.x.x.32 then the broadcast address of the 1st subnet is 32 &#8211; 1 = 31 (means x.x.x.31).</p>
<p>By this method we can calculate the unusable addresses, which are (notice that these are the 4th octets of the IP addresses only):</p>
<p>+ Network addresses: 0, 32, 64, 96, 128, 160, <strong>192</strong>, 224.<br />
 + Broadcast addresses: 31,<strong> 63</strong>, 95, 127,<strong>159</strong>, 191, 223.</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Which of the following host addresses are members of networks that can be routed across the public Internet? (Choose three)</p>
<p>A &#8211; 10.172.13.65<br />
 B &#8211; 172.16.223.125<br />
 C &#8211; 172.64.12.29<br />
 D &#8211; 192.168.23.252<br />
 E &#8211; 198.234.12.95<br />
 F &#8211; 212.193.48.254</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C E F</p>
<p class="ccnaexplanation">Explanation</p>
<p>Addresses that can be routed accross the public Internet are called public IP addresses. These addresses belong to class A, B or C only and are not private addresses.</p>
<p>Note:</p>
<p>Private class A IP addresses: 10.0.0.0 to 10.255.255.255<br />
 Private class B IP addresses: 172.16.0.0 to 172.31.255.255<br />
 Private class C IP addresses: 192.168.0.0 to 192.168.255.255</p>
<p>Class D addresses are reserved for IP multicast addresses and can&#8217;t be routed across the Internet (their addresses begin with 224.0.0.0 address).</p>
<p>Also we can&#8217;t use 127.x.x.x address because the number 127 is reserved for loopback and is used for internal testing on the local machine.</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>A national retail chain needs to design an IP addressing scheme to support a nationwide network. The company needs a minimum of 300 sub-networks and a maximum of 50 host addresses per subnet. Working with only one Class B address, which of the following subnet masks will support an appropriate addressing scheme? (Choose two)</p>
<p>A &#8211; 255.255.255.0<br />
 B &#8211; 255.255.255.128<br />
 C &#8211; 255.255.252.0<br />
 D &#8211; 255.255.255.224<br />
 E &#8211; 255.255.255.192<br />
 F &#8211; 255.255.248.0</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B E</p>
<p class="ccnaexplanation">Explanation</p>
<p>We need to remember the default subnet mask of class B is 255.255.0.0. Next, the company requires a minimum of 300 sub-networks so we have to use at least 512 sub-networks (because 512 is the minimum power of 2 and greater than 300). Therefore we need to get 9 bits for network mask (2<sup>9</sup>=512), leaving 7 bits for hosts which is 2<sup>7</sup>-2 = 126 &gt; 50 hosts per subnet.This scheme satisfies the requirement -&gt; B is correct.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Subnetting/take9bits.jpg" border="0" alt="take9bits.jpg" width="500" height="110" /></p>
<p>We can increase the sub-networks to 1024 ( 1024 = 2<sup>10</sup>), leaving 6 bits for hosts that is 2<sup>6</sup>= 64 &gt; 50 hosts. This scheme satisfies the requirement, too -&gt; E is correct.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Subnetting/take10bits.jpg" border="0" alt="take10bits.jpg" width="500" height="110" /></p>
<p>Notice: The question asks &#8220;The company needs a minimum of 300 sub-networks and a maximum of 50 host addresses per subnet&#8221; but this is a typo, you should understand it as &#8220;&#8221;The company needs a minimum of 300 sub-networks and a minimum of 50 host addresses per subnet&#8221;.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Which of the following IP addresses fall into the CIDR block of 115.64.4.0/22? (Choose three)</p>
<p>A &#8211; 115.64.8.32<br />
 B &#8211; 115.64.7.64<br />
 C &#8211; 115.64.6.255<br />
 D &#8211; 115.64.3.255<br />
 E &#8211; 115.64.5.128<br />
 F &#8211; 115.64.12.128</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B C E</p>
<p class="ccnaexplanation">Explanation</p>
<p>CIDR stands for Classless In4ter-Domain Routing, the difference between CIDR and VLSM is slim and those terms are interchangeable at CCNA level.</p>
<p>To specify which IP addresses fall into the CIDR block of 115.64.4.0/22 we need to write this IP address and its subnet mask in binary form, but we only care 3rd octet of this address because its subnet mask is /22.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Subnetting/CIDR.jpg" border="0" alt="CIDR.jpg" width="480" height="110" /></p>
<p>(x means &#8220;don&#8217;t care&#8221;)</p>
<p>Next, we have to write the 3rd octets of the above answers in binary form to specify which numbers have the same &#8220;prefixes&#8221; with 4.</p>
<p>4 = <strong>0000 01</strong>00<br />
 8 = 0000 1000<br />
 7 = <strong>0000 01</strong>11<br />
 6 = <strong>0000 01</strong>10<br />
 3 = 0000 0011<br />
 5 = <strong>0000 01</strong>01<br />
 12=0000 1100</p>
<p>We can see only 7, 6 and 5 have the same &#8220;prefixes&#8221; with 4 so B C E are the correct answers.</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Refer to the diagram. All hosts have connectivity with one another. Which statements describe the addressing scheme that is in use in the network? (Choose three)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Subnetting/VLAN_IP_Assignment.jpg" border="0" alt="VLAN_IP_Assignment.jpg" width="430" height="280" /></p>
<p>A &#8211; The subnet mask in use is 255.255.255.192.<br />
 B &#8211; The subnet mask in use is 255.255.255.128.<br />
 C &#8211; The IP address 172.16.1.25 can be assigned to hosts in VLAN1.<br />
 D &#8211; The IP address 172.16.1.205 can be assigned to hosts in VLAN1.<br />
 E &#8211; The LAN interface of the router is configured with one IP address.<br />
 F &#8211; The LAN interface of the router is configured with multiple IP addresses.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B C F</p>
<p class="ccnaexplanation">Explanation</p>
<p>VLAN 2 has 114 hosts so we need to leave 7 bits 0 for the host addresses (2<sup>7</sup> &#8211; 2 = 126 &gt; 114). Notice that we are working with class B (both Host A and Host B belong to class B) and the default subnet mask of class B is /16 so we need to use 16 &#8211; 7 = 9 bits 1 for the sub-network mask, that means the subnet mask should be 255.255.255.128 -&gt; B is correct.</p>
<p>By using above scheme, C is correct because the IP 172.16.1.25 belongs to the sub-network of VLAN 1 (172.16.1.0/25) and can be assigned to hosts in VLAN 1.</p>
<p>For communication between VLAN 1 and VLAN 2, the LAN interface of the router should be divided into multiple sub-interfaces with multiple IP addresses -&gt; F is correct.</p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>The network 172.25.0.0 has been divided into eight equal subnets. Which of the following IP addresses can be assigned to hosts in the third subnet if the ip subnet-zero command is configured on the router? (Choose three)</p>
<p>A &#8211; 172.25.78.243<br />
 B &#8211; 172.25.98.16<br />
 C &#8211; 172.25.72.0<br />
 D &#8211; 172.25.94.255<br />
 E &#8211; 172.25.96.17 <br />
 F. 172.25.100.16</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A C D</p>
<p class="ccnaexplanation">Explanation</p>
<p>If the &#8220;ip subnet-zero&#8221; command is configured then the first subnet is 172.25.0.0. Otherwise the first subnet will be 172.25.32.0 (we will learn how to get 32 below).</p>
<p>The question stated that the network 172.25.0.0 is divided into eight equal subnets therefore the increment is 256 / 8 = 32 and its corresponding subnet mask is /19 (1111 1111.1111 1111.11<strong>1</strong>0 0000).</p>
<p>First subnet: 172.25.0.0/19<br />
 Second subnet: 172.25.32.0/19<br />
 Third subnet: 172.25.64.0/19<br />
 4th subnet: 172.25.96.0/19<br />
 5th subnet: 172.25.128.0/19<br />
 6th subnet: 172.25.160.0/19<br />
 7th subnet: 172.25.192.0/19<br />
 8th subnet: 172.25.224.0/19</p>
<p>In fact, we only need to specify the third subnet as the question requested. The third subnet ranges from 172.25.64.0/19 to 172.25.95.255/19 so A C D are the correct answers.</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>Refer to the exhibit. In this VLSM addressing scheme, what summary address would be sent from router A?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Subnetting/VLSM_summary.jpg" alt="VLSM_summary.jpg" width="469" height="283" /></p>
<p>A. 172.16.0.0/16<br />
 B. 172.16.0.0/20<br />
 C. 172.16.0.0/24<br />
 D. 172.32.0.0/16<br />
 E. 172.32.0.0/17<br />
 F. 172.64.0.0/16</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaexplanation">Explanation</p>
<p>Router A receives 3 subnets: 172.16.64.0/18, 172.16.32.0/24 and 172.16.128.0/18.</p>
<p>All these 3 subnets have the same form of 172.16.x.x so our summarized subnet must be also in that form -&gt; Only A, B or C is correct.</p>
<p>The smallest subnet mask of these 3 subnets is /18 so our summarized subnet must also have its subnet mask equal or smaller than /18.</p>
<p>-&gt; Only answer A has these 2 conditions -&gt; A is correct.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-subnetting/feed</wfw:commentRss>
		<slash:comments>462</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Subnetting Questions 2</title>
		<link>http://www.9tut.com/ccna-subnetting-questions-2</link>
		<comments>http://www.9tut.com/ccna-subnetting-questions-2#comments</comments>
		<pubDate>Sun, 09 Jan 2011 15:55:56 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=864</guid>
		<description><![CDATA[Here you will find answers to Subnetting Questions &#8211; Part 2 Question 1 Refer to the exhibit. Which VLSM mask will allow for the appropriate number of host addresses for Network A? A. /25 B. /26 C. /27 D. /28 Answer: A Explanation We need 66 hosts &#60; 128 = 27 -&#62; We need 7 [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to Subnetting Questions &#8211; Part 2</p>
<p><!--adsense--></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Refer to the exhibit. Which VLSM mask will allow for the appropriate number of host addresses for Network A?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Subnetting/subnetting_wan.jpg" alt="subnetting_wan.jpg" width="577" height="143" /></p>
<p>A. /25<br />
 B. /26<br />
 C. /27<br />
 D. /28</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaexplanation">Explanation</p>
<p>We need 66 hosts &lt; 128 = 2<sup>7</sup> -&gt; We need 7 bits 0 -&gt; The subnet mask should be 1111 1111.1111 1111.1111 1111.1<span style="text-decoration: underline;">000 0000</span> -&gt; /25</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Refer to the exhibit. Which subnet mask will place all hosts on Network B in the same subnet with the least amount of wasted addresses?</p>
<p style="text-align: center;"><img src="../images/ccna/Subnetting/subnetting_wan.jpg" alt="subnetting_wan.jpg" width="577" height="143" /></p>
<p>A. 255.255.255.0<br />
 B. 255.255.254.0<br />
 C. 255.255.252.0<br />
 D. 255.255.248.0</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>310 hosts &lt; 512 = 2<sup>9</sup> -&gt; We need a subnet mask of 9 bits 0 -&gt; 1111 1111.1111 1111.1111 111<span style="text-decoration: underline;">0.0000 0000</span> -&gt; 255.255.254.0</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Refer to the exhibit. Which mask is correct to use for the WAN link between the routers that will provide connectivity while wasting the least amount of addresses?</p>
<p style="text-align: center;"><img src="../images/ccna/Subnetting/subnetting_wan.jpg" alt="subnetting_wan.jpg" width="577" height="143" /></p>
<p>A. /23<br />
 B. /24<br />
 C. /25<br />
 D. /30</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation</p>
<p>For WAN link we only need 2 usable host addresses for 2 interfaces on the routers. The subnet mask of /30 gives us 2<sup>2</sup> &#8211; 2 = 2 usable host addresses. Also remember that &#8220;/30&#8243; is famous for point-to-point connection because it wastes the least amount of addresses.</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Refer to the exhibit. What is the most appropriate summarization for these routes?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Subnetting/subnetting_summarize.jpg" alt="subnetting_summarize.jpg" width="188" height="81" /></p>
<p>A. 10.0.0.0/21<br />
 B. 10.0.0.0/22<br />
 C. 10.0.0.0/23<br />
 D. 10.0.0.0/24</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>We need to summarize 4 subnets so we have to move left 2 bits (2<sup>2</sup> = 4). In this question we can guess the initial subnet mask is /24 because 10.0.0.0, 10.0.1.0, 10.0.2.0, 10.0.3.0 belong to different networks. So &#8220;/24&#8243; moves left 2 bits -&gt; /22.</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>On the network 131.1.123.0/27, what is the last IP address that can be assigned to a host?</p>
<p>A. 131.1.123.30<br />
 B. 131.1.123.31<br />
 C. 131.1.123.32<br />
 D. 131.1.123.33</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaexplanation">Explanation</p>
<p>Increment: 32<br />
 Network address: 131.1.123.0 &amp; 131.1.123.32<br />
 Broadcast address: 131.1.123.31</p>
<p>Both 131.1.123.30 &amp; 131.1.123.33 can be assigned to host but the question asks about the &#8220;last IP address&#8221; so A is the correct answer.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>The ip subnet zero command is not configured on a router. What would be the IP address of Ethernet0/0 using the first available address from the sixth subnet of the network 192.168.8.0/29?</p>
<p>A. 192.168.8.25<br />
 B. 192.168.8.41<br />
 C. 192.168.8.49<br />
 D. 192.168.8.113</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>The &#8220;ip subnet zero&#8221; is not configured so the first subnet will start at 192.168.8.8 (ignoring 192.168.8.0).</p>
<p>Increment: 8<br />
 1<sup>st</sup> subnet: 192.168.8.8<br />
 2<sup>nd</sup> subnet: 192.168.8.16<br />
 3<sup>rd</sup> subnet: 192.168.8.24<br />
 4<sup>th</sup> subnet: 192.168.8.32<br />
 5<sup>th</sup> subnet: 192.168.8.40<br />
 6<sup>th</sup> subnet: 192.168.8.48 -&gt; The first usable IP address of 6<sup>th</sup> subnet is 192.168.8.49</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>For the network 192.0.2.0/23, which option is a valid IP address that can be assigned to a host?</p>
<p>A. 192.0.2.0<br />
 B. 192.0.2.255<br />
 C. 192.0.3.255<br />
 D. 192.0.4.0</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>Increment: 2</p>
<p>Network address: 192.0.2.0, 192.0.4.0<br />
 Broadcast address: 192.0.3.255</p>
<p>-&gt; 192.0.2.255 is not a broadcast address, it is an usable IP address.</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>How many addresses for hosts will the network 124.12.4.0/22 provide?</p>
<p>A. 510  <br />
 B. 1022  <br />
 C. 1024  <br />
 D. 2048</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>/22 gives us 10 bits 0 -&gt; 2<sup>10</sup> &#8211; 2 = 1022. Notice that the formula to calculate the number of host is: 2<sup>k</sup> &#8211; 2.</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>The network default gateway applying to a host by  DHCP is 192.168.5.33/28. Which option is the valid IP address of this  host?</p>
<p>A. 192.168.5.55<br />
 B. 192.168.5.47<br />
 C. 192.168.5.40<br />
 D. 192.168.5.32<br />
 E. 192.168.5.14</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>Which two addresses can be assigned to a host with a subnet mask of 255.255.254.0? (Choose two)</p>
<p>A. 113.10.4.0<br />
 B. 186.54.3.0<br />
 C. 175.33.3.255<br />
 D. 26.35.2.255<br />
 E. 17.35.36.0</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B D</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-subnetting-questions-2/feed</wfw:commentRss>
		<slash:comments>59</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Subnetting Questions 3</title>
		<link>http://www.9tut.com/ccna-subnetting-questions-3</link>
		<comments>http://www.9tut.com/ccna-subnetting-questions-3#comments</comments>
		<pubDate>Sat, 08 Jan 2011 03:40:13 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=869</guid>
		<description><![CDATA[Here you will find answers to Subnetting Questions &#8211; Part 3 Note: If you are not sure about Subnetting, please read my Subnetting tutorial. Question 1 Workstation A has been assigned an IP address of 192.0.2.24/28. Workstation B has been assigned an IP address of 192.0.2.100/28. The two workstations are connected with a straight-through cable. [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to Subnetting Questions &#8211; Part 3</p>
<p><!--adsense--></p>
<p>Note: If you are not sure about Subnetting, please read my <a href="http://www.9tut.com/subnetting-tutorial" target="_blank">Subnetting tutorial</a>.</p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>Workstation A has been assigned an IP address of 192.0.2.24/28. Workstation B has been assigned an IP address of 192.0.2.100/28. The two workstations are connected with a straight-through cable. Attempts to ping between the hosts are unsuccessful. What two things can be done to allow communications between the hosts? (Choose two)</p>
<p>A. Replace the straight-through cable with a crossover cable.<br />
 B. Change the subnet mask of the hosts to /25.<br />
 C. Change the subnet mask of the hosts to /26.<br />
 D. Change the address of Workstation A to 192.0.2.15.<br />
 E. Change the address of Workstation B to 192.0.2.111.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A B</p>
<p class="ccnaexplanation">Explanation</p>
<p>To specify when we use crossover cable or straight-through cable, we should remember:<br />
 <strong>Group 1:</strong> Router, Host, Server<br />
 <strong>Group 2:</strong> Hub, Switch<br />
 One device in group 1 + One device in group 2: use straight-through cable<br />
 Two devices in the same group: use crossover cable</p>
<p>-> To connect two hosts we must use crossover cable -> A is correct.</p>
<p>With the subnet mask of /28, 192.0.2.24 &amp; 192.0.2.100 will be in different subnets (192.0.2.24 belongs to subnet 192.0.2.16/28; 192.0.2.100 belongs to subnet 192.0.2.96). To make them in the same subnet we need more space for host. Because 100 < 128 so we the suitable subnet should be /25.</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Your ISP has given you the address 223.5.14.6/29 to assign to your router&#8217;s interface. They have also given you the default gateway address of 223.5.14.7. After you have configured the address, the router is unable to ping any remote devices. What is preventing the router from pinging remote devices?</p>
<p>A. The default gateway is not an address on this subnet.<br />
 B. The default gateway is the broadcast address for this subnet.<br />
 C. The IP address is the broadcast address for this subnet.<br />
 D. The IP address is an invalid class D multicast address.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>For the network 223.5.14.6/29:</p>
<p>Increment: 8<br />
 Network address: 223.5.14.0<br />
 Broadcast address: 223.5.14.7</p>
<p>-> The default gateway IP address is the broadcast address of this subnet -> B is correct.</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Refer to the exhibit. According to the routing table, where will the  router send a packet destined for 10.1.5.65?</p>
<table border="1">
<tbody>
<tr>
<td><strong>Network</strong></td>
<td><strong>Interface</strong></td>
<td><strong>Next-hop</strong></td>
</tr>
<tr>
<td>10.1.1.0/24</td>
<td>e0</td>
<td>directly connected</td>
</tr>
<tr>
<td>10.1.2.0/24</td>
<td>e1</td>
<td>directly connected</td>
</tr>
<tr>
<td>10.1.3.0/25</td>
<td>s0</td>
<td>directly connected</td>
</tr>
<tr>
<td>10.1.4.0/24</td>
<td>s1</td>
<td>directly connected</td>
</tr>
<tr>
<td>10.1.5.0/24</td>
<td>e0</td>
<td>10.1.1.2</td>
</tr>
<tr>
<td>10.1.5.64/28</td>
<td>e1</td>
<td>10.1.2.2</td>
</tr>
<tr>
<td>10.1.5.64/29</td>
<td>s0</td>
<td>10.1.3.3</td>
</tr>
<tr>
<td>10.1.5.64/27</td>
<td>s1</td>
<td>10.1.4.4</td>
</tr>
</tbody>
</table>
<p>A. 10.1.1.2<br />
 B. 10.1.2.2<br />
 C. 10.1.3.3<br />
 D. 10.1.4.4</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>The destination IP address 10.1.5.65 belongs to 10.1.5.64/28, 10.1.5.64/29 &amp; 10.1.5.64/27 subnets but the &#8220;longest prefix match&#8221; algorithm will choose the most specific subnet mask -> the prefix &#8220;/29&#8243; will be chosen to route the packet. Therefore the next-hop should be 10.1.3.3 -> C is correct.</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Refer to the exhibit. The user at Workstation B reports that Server A cannot be reached. What is preventing Workstation B from reaching Server A?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Subnetting/subnetting_gateway.jpg" alt="subnetting_gateway.jpg" width="353" height="228" /></p>
<p>A. The IP address for Server A is a broadcast address.<br />
 B. The IP address for Workstation B is a subnet address.<br />
 C. The gateway for Workstation B is not on the same subnet.<br />
 D. The gateway for Server A is not on the same subnet.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Given the address 192.168.20.19/28, which of the following are valid host addresses on this subnet? (Choose two)</p>
<p>A. 192.168.20.29<br />
 B. 192.168.20.16<br />
 C. 192.168.20.17<br />
 D. 192.168.20.31<br />
 E. 192.168.20.0</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A C</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>Which of the following IP addresses fall into the CIDR block of 115.64.4.0/22? (Choose three)</p>
<p>A. 115.64.8.32<br />
 B. 115.64.7.64<br />
 C. 115.64.6.255<br />
 D. 115.64.3.255<br />
 E. 115.64.5.128<br />
 F. 115.64.12.128</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B C E</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>The Ethernet networks connected to router R1 in the graphic have been summarized for router R2 as 192.1.144.0/20. Which of the following packet destination addresses will R2 forward to R1, according to this summary? (Choose two)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Subnetting/IP_summarize.jpg" alt="IP_summarize.jpg" width="426" height="170" /></p>
<p>A. 192.1.159.2<br />
 B. 192.1.160.11<br />
 C. 192.1.138.41<br />
 D. 192.1.151.254<br />
 E. 192.1.143.145<br />
 F. 192.1.1.144</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A D</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>Refer to the exhibit. All of the routers in the network are configured with the ip subnet-zero command. Which network addresses should be used for Link A and Network A? (Choose two)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Subnetting/Subnetting_divide_hosts.jpg" alt="Subnetting_divide_hosts.jpg" width="512" height="251" /></p>
<p>A. Network A &#8211; 172.16.3.48/26<br />
 B. Network A &#8211; 172.16.3.128/25<br />
 C. Network A &#8211; 172.16.3.192/26<br />
 D. Link A &#8211; 172.16.3.0/30<br />
 E. Link A &#8211; 172.16.3.40/30<br />
 F. Link A &#8211; 172.16.3.112/30</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B D</p>
<p class="ccnaexplanation">Explanation</p>
<p>Network A needs 120 hosts < 128 = 2<sup>7</sup> -> Need a subnet mask of 7 bit 0s -> &#8220;/25&#8243;.</p>
<p>Because the ip subnet-zero command is used, network 172.16.3.0/30 can be used.</p>
<p>Answer E &#8220;Link A &#8211; 172.16.3.40/30&#8243; is not correct because this subnet belongs to MARKETING subnet (172.16.3.32/27).<br />
 Answer F &#8220;Link A &#8211; 172.16.3.112/30&#8243; is not correct because this subnet  belongs to ADMIN subnet (172.16.3.96/27).</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>Which two subnetworks would be included in the summarized address of 172.31.80.0/20? (Choose two)</p>
<p>A. 172.31.17.4/30<br />
 B. 172.31.51.16 /30<br />
 C. 172.31.64.0/18<br />
 D. 172.31.80.0/22<br />
 E. 172.31.92.0/22<br />
 F. 172.31.192.0/18</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D E</p>
<p class="ccnaexplanation">Explanation</p>
<p>From the summarized address of 172.31.80.0/20, we find the range of this summarized network:</p>
<p>Increment: 16<br />
 Network address: 172.31.80.0<br />
 Broadcast address: 172.31.95.255</p>
<p>-> Answer D &amp; E belong to this range so they are the correct answers.</p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>Which three IP addresses can be assigned to hosts if the subnet mask is /27 and subnet zero is usable? (Choose three)</p>
<p>A. 10.15.32.17<br />
 B. 17.15.66.128<br />
 C. 66.55.128.1<br />
 D. 135.1.64.34<br />
 E. 129.33.192.192<br />
 F. 192.168.5.63</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A C D</p>
<p class="ccnaexplanation">Explanation</p>
<p>First we need to find out the forms of network addresses and broadcast addresses when the subnet mask of /27 is used:</p>
<p>Increment: 32<br />
 Network address: In the form of x.x.x.(0,32,64,96,128,160,192,224)<br />
 Broadcast address: In the form of x.x.x.(31,63,95,127,159,191,223)<br />
So we only need to check the fourth octets of the IP addresses above. If they are not in the form of network addresses or broadcast addresses then they can be assigned to hosts.</p>
<p> Notice that the IP 66.55.128.1 belongs to the subnet zero and the question says subnet zero is usable so it is valid.</p>
<p class="ccnaquestionsnumber">Question 11</p>
<p>Which of the following IP addresses can be assigned to the host devices? (Choose two)</p>
<p>A. 205.7.8.32/27<br />
 B. 191.168.10.2/23<br />
 C. 127.0.0.1<br />
 D. 224.0.0.10<br />
 E. 203.123.45.47/28<br />
 F. 10.10.0.0/13</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B F</p>
<p class="ccnaexplanation">Explanation</p>
<p>This is a time-consuming question (but not hard ^^) because we have to calculate the range of each sub-network separately (excepting answer C is the local loopback address &amp; answer D is a multicast address) so make sure you can do subnet quickly. After solving above questions I believe you can find out the result so I don&#8217;t explain this question in detail.</p>
<p class="ccnaquestionsnumber">Question 12</p>
<p>How many subnets can be gained by subnetting 172.17.32.0/23 into a /27 mask, and how many usable host addresses will there be per subnet?</p>
<p>A. 8 subnets, 31 hosts<br />
 B. 8 subnets, 32 hosts<br />
 C. 16 subnets, 30 hosts<br />
 D. 16 subnets, 32 hosts<br />
 E. A Class B address cant be subnetted into the fourth octet.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>Subnetting from /23 to /27 gives us 27 &#8211; 23 = 4 bits -> 2<sup>4</sup> = 16 subnets.</p>
<p>/27 has 5 bit 0s so it gives 2<sup>5</sup> &#8211; 2 = 30 hosts-per-subnet.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-subnetting-questions-3/feed</wfw:commentRss>
		<slash:comments>89</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Subnetting Questions 4</title>
		<link>http://www.9tut.com/ccna-subnetting-questions-4</link>
		<comments>http://www.9tut.com/ccna-subnetting-questions-4#comments</comments>
		<pubDate>Fri, 07 Jan 2011 04:23:51 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=872</guid>
		<description><![CDATA[Here you will find answers to Subnetting Questions &#8211; Part 4 Note: If you are not sure about Subnetting, please read my Subnetting tutorial. Question 1 You are working in a data center environment and are assigned the address range 10.188.31.0/23. You are asked to develop an IP addressing plan to allow the maximum number [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to Subnetting Questions &#8211; Part 4</p>
<p><!--adsense--></p>
<p>Note: If you are not sure about Subnetting, please read my <a href="http://www.9tut.com/subnetting-tutorial" target="_blank">Subnetting tutorial</a>.</p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>You are working in a data center environment and are assigned the address range 10.188.31.0/23. You are asked to develop an IP addressing plan to allow the maximum number of subnets with as many as 30 hosts each.Which IP address range meets these requirements?</p>
<p>A. 10.188.31.0/27<br />
 B. 10.188.31.0/26<br />
 C. 10.188.31.0/29<br />
 D. 10.188.31.0/28<br />
 E. 10.188.31.0/25</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaexplanation">Explanation</p>
<p>Each subnet has 30 hosts < 32 = 2<sup>5</sup> so we need a subnet mask which has at least 5 bit 0s -> /27. Also the question requires the maximum number of subnets (which minimum the number of hosts-per-subnet) so /27 is the best choice -> A is correct.</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>Refer to the exhibit. The Lakeside Company has the internetwork in the exhibit. The Administrator would like to reduce the size of the routing table to the Central Router. Which partial routing table entry in the Central router represents a route summary that represents the LANs in Phoenix but no additional subnets?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Subnetting/subnetting_1.jpg" alt="subnetting_1.jpg" width="491" height="330" /></p>
<p>A. 10.0.0.0 /22 is subnetted, 1 subnet<br />
 D 10.0.0.0 [90/20514560] via 10.2.0.2 6w0d, serial 0/1</p>
<p>B. 10.0.0.0 /28 is subnetted, 1 subnet<br />
 D 10.2.0.0 [90/20514560] via 10.2.0.2 6w0d, serial 0/1</p>
<p>C. 10.0.0.0 /30 is subnetted, 1 subnet<br />
 D 10.2.2.0 [90/20514560] via 10.2.0.2 6w0d, serial 0/1</p>
<p>D. 10.0.0.0 /22 is subnetted, 1 subnet<br />
 D 10.4.0.0 [90/20514560] via 10.2.0.2 6w0d, serial 0/1</p>
<p>E. 10.0.0.0 /28 is subnetted, 1 subnet<br />
 D 10.4.4.0 [90/20514560] via 10.2.0.2 6w0d, serial 0/1</p>
<p>F. 10.0.0.0 /30 is subnetted, 1 subnet<br />
 D 10.4.4.4 [90/20514560] via 10.2.0.2 6w0d, serial 0/1</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation</p>
<p>All the above networks can be summarized to 10.0.0.0 network but the question requires to &#8220;represent the LANs in Phoenix but no additional subnets&#8221; so we must summarized to 10.4.0.0 network. The Phoenix router has 4 subnets so we need to &#8220;move left&#8221; 2 bits of &#8220;/24&#8243;-> /22 is the best choice -> D is correct.</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Which address range efficiently summarizes the routing table of the addresses for router main?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Subnetting/Subnetting_Efficient_Summary.jpg" alt="Subnetting_Efficient_Summary.jpg" width="455" height="260" /></p>
<p>A. 172.16.0.0/18<br />
 B. 172.16.0.0/16<br />
 C. 172.16.0.0/20<br />
 D. 172.16.0.0/21</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>To summarize these networks efficiently we need to find out a network that &#8220;covers&#8221; from 172.16.1.0 -> 172.16.13.0 (including 13 networks < 16). So we need to use 4 bits (2<sup>4</sup> = 16). Notice that we have to move the borrowed bits to the left (not right) because we are summarizing.</p>
<p>The network 172.16.0.0 belongs to class B with a default subnet mask of /16 but in this case it has been subnetted with a subnet mask of /24 (we can guess because 172.16.1.0, 172.16.2.0, 172.16.3.0&#8230; are different networks).</p>
<p>Therefore &#8220;move 4 bits to the left&#8221; of &#8220;/24&#8243; will give us &#8220;/20&#8243; -> C is the correct answer.</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Refer to the exhibit. A new subnet with 60 hosts has been added to the network. Which subnet address should this network use to provide enough usable addresses while wasting the fewest addresses?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Subnetting/Subnetting_Assign_Subnet_Mask.jpg" alt="Subnetting_Assign_Subnet_Mask.jpg" width="440" height="120" /></p>
<p>A. 192.168.1.56/27<br />
 B. 192.168.1.64/26<br />
 C. 192.168.1.64/27<br />
 D. 192.168.1.56/26</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>60 hosts < 64 = 2<sup>6</sup> -> we need a subnet mask of at least 6 bit 0s -> &#8220;/26&#8243;. The question requires &#8220;wasting the fewest addresses&#8221; which means we have to allow only 62 hosts-per-subnet -> B is correct.</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>The network technician is planning to use the 255.255.255.224 subnet mask on the network. Which three valid IP addresses can the technician use for the hosts? (Choose three)</p>
<p>A. 172.22.243.127<br />
 B. 172.22.243.191<br />
 C. 172.22.243.190<br />
 D. 10.16.33.98<br />
 E. 10.17.64.34<br />
 F. 192.168.1.160</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C D E</p>
<p class="ccnaexplanation">Explanation</p>
<p>From the subnet mask of 255.255.255.224 we learn:</p>
<p>Increment: 32<br />
 Network address: In the form of x.x.x.(0,32, 64, 96, 128, 160, 192, 224)<br />
 Broadcast address: In the form of x.x.x.(31,63,95,127,159,191,223)</p>
<p>-> All IP addresses not in the above forms are usable for host -> C D E are correct answers.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>In the implementation of VLSM techniques on a network using a single Class C IP address, which subnet mask is the most efficient for point-to-point serial links?</p>
<p>A. 255.255.255.240  <br />
 B. 255.255.255.254  <br />
 C. 255.255.255.252  <br />
 D. 255.255.255.0  <br />
 E. 255.255.255.248</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>The subnet mask of 255.255.255.252 gives only 2 usable host addresses because it has only 2 bit 0s (2<sup>2</sup> &#8211; 2 = 2) so it is the most efficient subnet mask for point-to-point serial links (and you should remember it).</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>Refer to the exhibit. HostA cannot ping HostB. Assuming routing is properly configured, what could be the cause of this problem?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/Subnetting/subnetting_2.jpg" alt="subnetting_2.jpg" width="458" height="283" /></p>
<p>A. HostA is not on the same subnet as its default gateway.<br />
 B. The address of SwitchA is a subnet address.<br />
 C. The Fa0/0 interface on RouterA is on a subnet that can’t be used.<br />
 D. The serial interfaces of the routers are not on the same subnet.<br />
 E. The Fa0/0 interface on RouterB is using a broadcast address.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation</p>
<p>Now let&#8217;s find out the range of the networks on serial link:</p>
<p>For the network 192.168.1.62/27:</p>
<p>Increment: 32<br />
 Network address: 192.168.1.32<br />
 Broadcast address: 192.168.1.63</p>
<p>For the network 192.168.1.65/27:</p>
<p>Increment: 32<br />
 Network address: 192.168.1.64<br />
 Broadcast address: 192.168.1.95</p>
<p>-> These two IP addresses don&#8217;t belong to the same network and they can&#8217;t see each other -> D is the correct answer.</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>The network administrator is asked to configure 113 point-to-point links. Which IP addressing scheme best defines the address range and subnet mask that meet the requirement and waste the fewest subnet and host addresses?</p>
<p>A. 10.10.0.0/18 subnetted with mask 255.255.255.252<br />
 B. 10.10.0.0/25 subnetted with mask 255.255.255.252<br />
 C. 10.10.0.0/24 subnetted with mask 255.255.255.252<br />
 D. 10.10.0.0/23 subnetted with mask 255.255.255.252<br />
 E. 10.10.0.0/16 subnetted with mask 255.255.255.252</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation</p>
<p>We need 113 point-to-point links which equal to 113 sub-networks < 128 so we need to borrow 7 bits (because 2^7 = 128).</p>
<p>The network used for point-to-point connection should be /30.<br />
 So our initial network should be 30 – 7 = 23.</p>
<p>So 10.10.0.0/23 is the correct answer.</p>
<p>You can understand it more clearly when writing it in binary form:</p>
<p>/23 = 1111 1111.1111 1110.0000 0000<br />
 /30 = 1111 1111.1111 111<span style="text-decoration: underline;">1.1111 11</span>00 (borrow 7 bits)</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>If an Ethernet port on a router was assigned an IP address of 172.1.1.1/20, what is the maximum number of hosts allowed on this subnet?</p>
<p>A. 4094  <br />
 B. 1024  <br />
 C. 8190  <br />
 D. 2046  <br />
 E. 4096</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaexplanation">Explanation</p>
<p>In the prefix /20 we have 12 bit 0s so the number of hosts-per-subnet is 2<sup>12</sup> &#8211; 2 = 4094.</p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>A network administrator receives an error message while trying to configure the Ethernet interface of a router with IP address 10.24.24.24/29. Which statement explains the reason for it?</p>
<p>A. The address is a broadcast address<br />
 B. The Ethernet interface is faulty<br />
 C. VLSM-capable routing protocols must be enable first on the router.<br />
 D. This address is a network address.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-subnetting-questions-4/feed</wfw:commentRss>
		<slash:comments>91</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Operations 1</title>
		<link>http://www.9tut.com/ccna-operations</link>
		<comments>http://www.9tut.com/ccna-operations#comments</comments>
		<pubDate>Wed, 05 Jan 2011 10:10:52 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=17</guid>
		<description><![CDATA[Here you will find answers to Operations Questions (Part 1) Question 1: What are two reasons that a network administrator would use access lists? (Choose two.) A. to control vty access into a router B. to control broadcast traffic through a router C. to filter traffic as it passes through a router D. to filter [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to Operations Questions (Part 1)</p>
<p><!--adsense--></p>
<p class="ccnaquestionsnumber">Question 1:</p>
<p>What are two reasons that a network administrator would use access lists? (Choose two.)</p>
<p>A. to control vty access into a router<br />
 B. to control broadcast traffic through a router<br />
 C. to filter traffic as it passes through a router<br />
 D. to filter traffic that originates from the router<br />
 E. to replace passwords as a line of defense against security incursions</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answers: A C</p>
<p class="ccnaquestionsnumber">Question 2:</p>
<p>A single 802.11g access point has been configured and installed in the center of a square office. A few wireless users are experiencing slow performance and drops while most users are operating at peak efficiency. What are three likely causes of this problem? (Choose three.)</p>
<p>A. mismatched TKIP encryption<br />
 B. null SSID<br />
 C. cordless phones<br />
 D. mismatched SSID<br />
 E. metal file cabinets<br />
 F. antenna type or direction</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answers: C E F</p>
<p class="ccnaquestionsnumber">Question 3:</p>
<p>Refer to the exhibit. How many broadcast domains exist in the exhibited topology?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/troubleshooting1/vlanbroadcastdomain.jpg" border="0" alt="vlanbroadcastdomain" width="326" height="256" /></p>
<p>A. one<br />
 B. two<br />
 C. three<br />
 D. four<br />
 E. five<br />
 F. six</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer: C</p>
<p class="ccnaquestionsnumber">Question 4:</p>
<p>Which type of attack is characterized by a flood of packets that are requesting a TCP connection to a server?<br />
 A. denial of service<br />
 B. brute force<br />
 C. reconnaissance<br />
 D. Trojan horse</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer: A</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 5:</p>
<p>Refer to the exhibit.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/troubleshooting1/intervlan1.jpg" border="0" alt="intervlan1" width="503" height="316" /></p>
<p>The network administrator has created a new VLAN on Switch1 and added host C and host D. The administrator has properly configured switch interfaces FastEthernet0/13 through FastEthernet0/24 to be members of the new VLAN. However, after the network administrator completed the configuration, host A could communicate with host B, but host A could not communicate with host C or host D. Which commands are required to resolve this problem?</p>
<p>A. Router(config)# interface fastethernet 0/1.3<br />
 Router(config-if)# encapsulation dot1q 3<br />
 Router(config-if)# ip address 192.168.3.1 255.255.255.0</p>
<p>B. Router(config)# router rip<br />
 Router(config-router)# network 192.168.1.0<br />
 Router(config-router)# network 192.168.2.0<br />
 Router(config-router)# network 192.168.3.0</p>
<p>C. Switch1# vlan database<br />
 Switch1(vlan)# vtp v2-mode<br />
 Switch1(vlan)# vtp domain cisco<br />
 Switch1(vlan)# vtp server</p>
<p>D. Switch1(config)# interface fastethernet 0/1<br />
 Switch1(config-if)# switchport mode trunk<br />
 Switch1(config-if)# switchport trunk encapsulation isl</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer: A</p>
<p class="ccnaexplanation">Explanation:</p>
<p>Communication between host A and host B on the same VLAN does not need a router but communication between host A and host C (or host D) need a layer 3 device, in this case Router1, which is called a &#8220;router on a stick&#8221;. From the output of Router1, we notice that there is not any route to the new network 192.168.3.0/24 which host C and host D belong to. Therefore, we need to configure a subinterface for this network.</p>
<p class="ccnaquestionsnumber">Question 6:</p>
<p>Refer to the exhibit. What is the most efficient summarization that R1 can use to advertise its networks to R2?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/troubleshooting1/autosummarize.jpg" border="0" alt="autosummarize" width="372" height="202" /></p>
<p>A. 172.1.0.0/22</p>
<p>B. 172.1.0.0/21</p>
<p>C. 172.1.4.0/22</p>
<p>D. 172.1.4.0/24<br />
 172.1.5.0/24<br />
 172.1.6.0/24<br />
 172.1.7.0/24</p>
<p>E. 172.1.4.0/25<br />
 172.1.4.128/25<br />
 172.1.5.0/24<br />
 172.1.6.0/24<br />
 172.1.7.0/24</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer: C</p>
<p class="ccnaexplanation">Explanation:</p>
<p>Network 172.1.4.0/25 and network 172.1.4.128/25 can be grouped to a single network 172.1.4.0/24</p>
<p>Network 172.1.4.0/24 + Network 172.1.5.0/24 + Network 172.1.6.0/24 + Network 172.1.7.0/24 can be grouped to a single network 172.1.4.0/22 because we have all 4 subnetworks so we can move left 2 bits (2<sup>2</sup>=4)</p>
<p class="ccnaquestionsnumber">Question 7:</p>
<p>Which spread spectrum technology does the 802.11b standard define for operation?</p>
<p>A. IR<br />
 B. DSSS<br />
 C. FHSS<br />
 D. DSSS and FHSS<br />
 E. IR, FHSS, and DSSS</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer: B</p>
<p><span class="ccnaquestionsnumber">Question 8:</span></p>
<p>A network interface port has collision detection and carrier sensing enabled on a shared twisted pair network. From this statement, what is known about the network interface port?</p>
<p>A. This is a 10 Mb/s switch port.<br />
 B. This is a 100 Mb/s switch port.<br />
 C. This is an Ethernet port operating at half duplex.<br />
 D. This is an Ethernet port operating at full duplex.<br />
 E. This is a port on a network interface card in a PC.</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer: C</p>
<p class="ccnaexplanation">Explanation:</p>
<p> Modern Ethernet networks built with switches and full-duplex connections no longer utilize CSMA/CD. CSMA/CD is only used in obsolete shared media Ethernet (which uses repeater or hub).</p>
<p class="ccnaquestionsnumber">Question 9:</p>
<p>Refer to the topology and router configuration shown in the graphic. A host on the LAN is accessing an FTP server across the Internet. Which of the following addresses could appear as a source address for the packets forwarded by the router to the destination server?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/troubleshooting1/natpool.jpg" border="0" alt="natpool" width="554" height="276" /></p>
<p>A. 10.10.0.1<br />
 B. 10.10.0.2<br />
 C. 199.99.9.33<br />
 D. 199.99.9.57<br />
 E. 200.2.2.17<br />
 F. 200.2.2.18</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer: D</p>
<p><span class="ccnaquestionsnumber">Question 10:</span></p>
<p>Which routing protocol by default uses bandwidth and delay as metrics?<br />
 A. RIP<br />
 B. BGP<br />
 C. OSPF<br />
 D. EIGRP</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer: D</p>
<p class="ccnaquestionsnumber">Question 11:</p>
<p>Refer to the exhibit. The networks connected to router R2 have been summarized as a 192.168.176.0/21 route and sent to R1. Which two packet destination addresses will R1 forward to R2? (Choose two)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/troubleshooting1/autosummarize2.jpg" border="0" alt="autosummarize2" width="353" height="231" /></p>
<p>A. 192.168.194.160<br />
 B. 192.168.183.41<br />
 C. 192.168.159.2<br />
 D. 192.168.183.255<br />
 E. 192.168.179.4<br />
 F. 192.168.184.45</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer: B E</p>
<p class="ccnaexplanation">Explanation:</p>
<p>From the subnet mask of /21, we can specify the network address and broadcast address of this subnetwork:</p>
<p><span class="blueandbold">Increment:</span> 8 of the third octet(/21 = 255.255.248.0 or 1111 1111.1111 1111. 1111 <strong>1</strong>000.0000 0000)<br />
 <span class="blueandbold">Network address:</span> 192.168.176.0<br />
 <span class="blueandbold">Broadcast address:</span> 192.168.183.255 (183 = 176 + 8 &#8211; 1)</p>
<p>Therefore all the destination addresses in this range will be forwarded to R2 -&gt; <strong>B</strong> and <strong>E</strong> lie in this range and their packages will be forwarded to R2. Please notice that D is an incorrect answer because it is a broadcast address and R1 will drop its packages.</p>
<p class="ccnaquestionsnumber">Question 12:</p>
<p>Refer to the exhibit. Which switch provides the spanning-tree designated port role for the network segment that services the printers?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/troubleshooting1/switchpriority.jpg" border="0" alt="switchpriority" width="542" height="342" /></p>
<p>A. Switch1<br />
 B. Switch2<br />
 C. Switch3<br />
 D. Switch4</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer: C</p>
<div class="ccnaexplanation">Explanation:</div>
<div>First, the question asks what switch services the printers, so it can be Switch 3 or Switch 4 which is connected directly to the Printers.</div>
<div>Next, by comparing the MAC address of Switch 3 and Switch 4 we found that the MAC of Switch 3 is smaller. Therefore the interface connected to the Printers of Switch 3 will become designated interface and the interface of Switch 4 will be blocked</div>
<div><em>(Please notice that Switch 1 will become the root bridge because of its lowest priority, not Switch 3) </em></div>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-operations/feed</wfw:commentRss>
		<slash:comments>108</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Operations 2</title>
		<link>http://www.9tut.com/ccna-operations-2</link>
		<comments>http://www.9tut.com/ccna-operations-2#comments</comments>
		<pubDate>Tue, 04 Jan 2011 10:09:11 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=19</guid>
		<description><![CDATA[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 [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to Operations Questions (part 2)</p>
<p><!--adsense--></p>
<p class="ccnaquestionsnumber">Question 1</p>
<p>On a network of one department, there are four PCs connected to a switch, as shown in the following figure:</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/operations2/switchoperation1.jpg" border="0" alt="switchoperation1" width="482" height="190" /></p>
<p>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?</p>
<p>A. Switch1 will add 192.168.23.12 to the switching table.<br />
 B. Switch1 will add 192.168.23.4 to the switching table.<br />
 C. Switch1 will add 000A.8A47.E612 to the switching table.<br />
 D. None of the above</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer: C</p>
<p class="ccnaexplanation">Explanation</p>
<p>When Switch1 receives the first frame from Host A, it will write Host A&#8217;s MAC address into its MAC address table (including the corresponding port Fa0/4) and flood the frame to all other ports.</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p>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?</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/operations2/arptable.jpg" border="0" alt="arptable" width="526" height="194" /></p>
<p>A. send a unicast ARP packet to the DSL modem/router<br />
 B. send unicast ICMP packets to the DSL modem/router<br />
 C. send Layer 3 broadcast packets to which the DSL modem/router responds<br />
 D. send a Layer 2 broadcast that is received by Host2, the switch, and the DSL modem/router</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer: B</p>
<p class="ccnaexplanation">Explanation</p>
<p>Because Host1 has already had information about DSL modem so it doesn&#8217;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.</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Which two values are used by Spanning Tree Protocol to elect a root bridge? (Choose two)</p>
<p>A. amount of RAM<br />
 B. bridge priority<br />
 C. IOS version<br />
 D. IP address<br />
 E. MAC address<br />
 F. speed of the links</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer: B E</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>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.)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/operations2/hostcommunication.jpg" border="0" alt="hostcommunication" width="410" height="186" /></p>
<p>A. Router C will use ICMP to inform Host 1 that Host 2 cannot be reached.<br />
 B. Router C will use ICMP to inform Router B that Host 2 cannot be reached.<br />
 C. Router C will use ICMP to inform Host 1, Router A, and Router B that Host 2 cannot be reached.<br />
 D. Router C will send a Destination Unreachable message type.<br />
 E. Router C will send a Router Selection message type.<br />
 F. Router C will send a Source Quench message type.</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer: A D</p>
<p class="ccnaexplanation">Explanation</p>
<p>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.</p>
<p>Also notice that the Destination Unreachable message is an ICMP message.</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>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)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/operations2/routingpoison.jpg" border="0" alt="routingpoison" width="550" height="82" /></p>
<p>A. All routers will reference their topology database to determine if any backup routes to the 192.168.1.0 network are known.<br />
 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.<br />
 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.<br />
 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.<br />
 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.</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer: C D</p>
<p class="ccnaexplanation">Explanation</p>
<p>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 &#8220;a router never sends information about a route back in same direction which is original information came&#8221;. 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 -&gt; C is correct.</p>
<p>But maybe you will ask &#8220;Why answer D is also correct when it seems contradictory to answer C?&#8221; Yes, it is really contradictory! This is called the &#8220;Poison Reverse&#8221; rule:</p>
<p>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.</p>
<p>Notice that the &#8220;Poison Reverse&#8221; doesn&#8217;t send erroneous information to R1 but just only one message to make sure R1 is working correctly.</p>
<p>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.</p>
<p>For more information about RIP, please read my <a href="http://www.9tut.com/rip-routing-protocol-tutorial" target="_blank">RIP tutorial</a>.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 6</p>
<p>Which of the following describe the process identifier that is used to run OSPF on a router? (Choose two.)<br />
 A. It is locally significant.<br />
 B. It is globally significant.<br />
 C. It is needed to identify a unique instance of an OSPF database.<br />
 D. It is an optional parameter required only if multiple OSPF processes are running on the router.<br />
 E. All routers in the same OSPF area must have the same process ID if they are to exchange routing information.</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer: A C</p>
<p class="ccnaexplanation">Explanation</p>
<p>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 -&gt; A is correct.</p>
<p>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 -&gt; C is correct.</p>
<p>Process identifier is a &#8220;must&#8221; parameter even if we only run only one OSPF process -&gt; D is not correct.</p>
<p>Routers in the same OSPF area can have different process identifier (process ID) because it is only locally significant -&gt; E is not correct.</p>
<p class="ccnaquestionsnumber">Question 7</p>
<p>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)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/operations2/lansecurity.jpg" border="0" alt="lansecurity" width="477" height="216" /></p>
<p>A. access lists<br />
 B. encrypted router passwords<br />
 C. STP<br />
 D. VLANs<br />
 E. VTP<br />
 F. wireless LANs</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: A D</span></p>
<p class="ccnaexplanation">Explanation</p>
<p>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.</p>
<p>We don&#8217;t need to encrypt router password because it only helps prevent unauthorized access to the router, not Payroll server -&gt; B is not &#8220;totally&#8221; correct ^^.</p>
<p class="ccnaquestionsnumber">Question 8</p>
<p>Which two statements are true about the command ip route 172.16.3.0 255.255.255.0 192.168.2.4? (Choose two.)</p>
<p>A. It establishes a static route to the 172.16.3.0 network.<br />
 B. It establishes a static route to the 192.168.2.0 network.<br />
 C. It configures the router to send any traffic for an unknown destination to the 172.16.3.0 network.<br />
 D. It configures the router to send any traffic for an unknown destination out the interface with the address 192.168.2.4.<br />
 E. It uses the default administrative distance.<br />
 F. It is a route that would be used last if other routes to the same destination exist.</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer: A E</p>
<p class="ccnaexplanation">Explanation</p>
<p>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.<br />
 The syntax of static route is:<br />
 <strong>ip route</strong> <em>&lt;destination-network-address&gt;</em> &lt;<em>subnet-mask</em>&gt; &lt;<em>next-hop-IP-address | exit-interface</em>&gt; [metric]<br />
 + destination-network-address: destination network address of the remote network<br />
 + subnet mask: subnet mask of the destination network<br />
 + next-hop-IP-address: the IP address of the receiving interface on the next-hop router<br />
 + exit-interface: the local interface of this router where the packets will go out<br />
 + metric: the distance metric for this route. If not specified, it uses the default administrative distance of 1</p>
<p class="ccnaquestionsnumber">Question 9</p>
<p>Which three statements are correct about RIP version 2? (Choose three)</p>
<p>A. It has the same maximum hop count as version 1.<br />
 B. It uses broadcasts for its routing updates.<br />
 C. It is a classless routing protocol.<br />
 D. It has a lower default administrative distance than RIP version 1.<br />
 E. It supports authentication.<br />
 F. It does not send the subnet mask in updates.</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer: A C E</p>
<p class="ccnaexplanation">Explanation</p>
<p>A and E are correct according to the theory of RIP.</p>
<p>RIP version 1 updates are broadcasts, and RIP version 2 updates are multicast to 224.0.0.9 -&gt; B is not correct.</p>
<p>RIP v1 is a classful routing protocol but RIP v2 is a classless routing protocol -&gt; C is correct.</p>
<p>RIPv1 and RIPv2 have the same default administrative distance of 120 -&gt; D is not correct.</p>
<p>RIPv2 is a classless routing protocol so it does send the subnet mask in updates -&gt; F is not correct.</p>
<p class="ccnaquestionsnumber">Question 10</p>
<p>How should a router that is being used in a Frame Relay network be configured to avoid split horizon issues from preventing routing updates?</p>
<p>A. Configure a separate sub-interface for each PVC with a unique DLCI and subnet assigned to the sub-interface.<br />
 B. Configure each Frame Relay circuit as a point-to-point line to support multicast and broadcast traffic.<br />
 C. Configure many sub-interfaces on the same subnet.<br />
 D. Configure a single sub-interface to establish multiple PVC connections to multiple remote router interfaces.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: A</span></p>
<p class="ccnaexplanation">Explanation</p>
<p>In Frame Relay, one router&#8217;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.</p>
<p class="ccnaquestionsnumber">Question 11</p>
<p>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)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/operations2/switchpriority.jpg" border="0" alt="switchpriority" width="482" height="198" /></p>
<p>A. Configure the priority value of the Fa0/0 interface of RouterB to a higher value than any other interface on the Ethernet network.<br />
 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.<br />
 C. Configure a loopback interface on RouterB with an IP address higher than any IP address on the other routers.<br />
 D. Change the priority value of the Fa0/0 interface of RouterB to zero.<br />
 E. Change the priority values of the Fa0/0 interfaces of RouterA and RouterC to zero.<br />
 F. No further configuration is necessary.</p>
<p><br class="spacer_" /></p>
<p class="ccnacorrectanswers">Answer: A C E</p>
<p class="ccnaexplanation">Explanation</p>
<p>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 -&gt; A is correct.</p>
<p>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:</p>
<p>+ The highest IP address assigned to a loopback (logical) interface.<br />
 + If a loopback interface is not defined, the highest IP address of all active router’s physical interfaces will be chosen.<br />
 + The router ID can be manually assigned</p>
<p>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 -&gt; B is not correct.</p>
<p>C is correct as mentioned above.</p>
<p>A priority value of zero indicates an interface will not be elected as DR or BDR. So:</p>
<p>+ If we &#8220;change the priority value of the Fa0/0 interface of RouterB to zero&#8221;, RouterB will never be elected as DR -&gt; D is not correct.<br />
 + If we &#8220;change the priority values of the Fa0/0 interfaces of RouterA and RouterC to zero&#8221;, router A and RouterC will not be elected as DR for that segment -&gt; E is correct.</p>
<p>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.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-operations-2/feed</wfw:commentRss>
		<slash:comments>67</slash:comments>
		</item>
		<item>
		<title>CCNA &#8211; Operations 3</title>
		<link>http://www.9tut.com/ccna-operations-3</link>
		<comments>http://www.9tut.com/ccna-operations-3#comments</comments>
		<pubDate>Mon, 03 Jan 2011 10:08:44 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=21</guid>
		<description><![CDATA[Here you will find answers to Operations Questions Question 1: Your company wants to reconfigure a Catalyst 2950. which actions must be taken to erase the old configuration? (Choose three) A &#8211; Erase flash B &#8211; Restart the switch C &#8211; Delete the VLAN database D &#8211; Erase the startup configuration Answer: B C D [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to Operations Questions</p>
<p><!--adsense--></p>
<p class="ccnaquestionsnumber">Question 1:</p>
<p>Your company wants to reconfigure a Catalyst 2950. which actions must be taken to erase the old configuration? (Choose three)</p>
<p>A &#8211; Erase flash<br />
 B &#8211; Restart the switch<br />
 C &#8211; Delete the VLAN database<br />
 D &#8211; Erase the startup configuration</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B C D</p>
<p class="ccnaquestionsnumber">Question 2:</p>
<p>If the subnet mask is 255.255.255.224, which of the following addresses can be assigned to network hosts? (Choose three)</p>
<p>A &#8211; 15.234.118.63<br />
 B &#8211; 92.11.178.93<br />
 C &#8211; 134.178.18.56<br />
 D &#8211; 192.168.16.87</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B C D</p>
<p class="ccnaexplanation">Explanation:</p>
<p>The addresses can be assigned to network hosts are the addresses that satisfy these conditions:</p>
<p>+ They don&#8217;t belong to network addresses<br />
 + They don&#8217;t belong to broadcast addresses</p>
<p>The last octet of the subnet mask is 224, which is 11<strong>1</strong>0 0000 in binary form, so the increment is 32. This is the value we need to find out the network addresses and broadcast addresses when using the 255.255.255.224 subnet mask.</p>
<p>Network addresses: x.x.x.0, x.x.x.32,x.x.x.64,x.x.x.96,x.x.x.128,x.x.x.160,x.x.x.192,x.x.x.224</p>
<p>Broadcast addresses: x.x.x.31, <strong>x.x.x.63</strong>, x.x.x.95, x.x.x.127, x.x.x.159, x.x.x.191, x.x.x.223</p>
<p>(Notice we don&#8217;t care about the first three octets because the first three octets of the subnet mask are all 255)</p>
<p>From that we learn 15.234.118.63 is one of the broadcast addresses. Other answers are correct because they are neither network addresses nor broadcast addresses.</p>
<p class="ccnaquestionsnumber">Question 3:</p>
<p>An administrator issues the command &#8220;ping 127.0.0.1&#8243; from the command line prompt on a PC host named PC1. If an ICMP reply is received, what does this confirm?</p>
<p>A &#8211; The PC host PC1 has connectivity with a local host<br />
 B &#8211; The PC host PC1 has connectivity with a Layer 3 device<br />
 C &#8211; The PC host PC1 has a default gateway correctly configured<br />
 D &#8211; The PC host PC1 has connectivity up to Layer 5 of the OSI model<br />
 E &#8211; The PC host PC1 has the TCP/IP protocol stack correctly installed</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> E</p>
<p class="ccnaexplanation">Explanation:</p>
<p>If you are having problems with your network then issue the command &#8220;ping 127.0.0.1&#8243; to prove the network card and the TCP/IP software is working correctly. Address 127.0.0.1 is reserved for the test loop back purpose.</p>
<p class="ccnaquestionsnumber">Question 4:</p>
<p>Study the exhibit carefully, can you tell which three description are correct about the ways used by the router R1 to choose a path to the 10.1.3.0/24 network when different routing protocols are deployed? (Choose three)</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna/operations3/selectRoutingProtocol.jpg" border="0" alt="selectRoutingProtocol" width="357" height="295" /></p>
<p>A &#8211; When RIPv2 is the routing protocol, only the path R1-R4 is to be installed into the routing table by default<br />
 B &#8211; When RIPv2 is the routing protocol, the equal cost paths R1-R3-R4 and R1-R2-R4 are to be installed in the routing table<br />
 C &#8211; If both EIGRP and OSPF are working on the network with their default configurations, the EIGRP paths will be installed in the routing table<br />
 D &#8211; By default, if EIGRP is the routing protocol, the equal cost paths R1-R3-R4 and R1-R2-R4 will be installed in the routing table</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>A C D</p>
<p class="ccnaexplanation">Explanation:</p>
<p>RIP is a distance vector routing protocol and it uses hop count as the metric for path selection so only the path R1-R4 (with only 2 hops) will be installed into the routing table.</p>
<p>If both EIGRP and OSPF are used, the EIGRP paths will be installed in the routing table because the default administrative distance of EIGRP is 90 while that of OSPF is 110. Therefore these routers will choose EIGRP because it has lower administrative distance value (Notice that a lower value for the administrative distance indicates the more reliable route).</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 5:</p>
<p>Which two statements describe characteristics of IPv6 unicast addressing? (Choose two)</p>
<p>A. Global addresses start with 2000::/3<br />
 B. Link-local addresses start with FE00:/12<br />
 C. Link-local addresses start with FF00::/10<br />
 D. There is only one loopback address and it is ::1<br />
 E. If a global address is assigned to an interface, then that is the only allowable address for the interface.</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A D</p>
<p class="ccnaexplanation">Explanation:</p>
<p>Below is the list of common kinds of IPv6 addresses:</p>
<table border="1" align="center">
<tbody>
<tr>
<td><strong> Loopback address</strong></td>
<td>::1</td>
</tr>
<tr>
<td><strong> Link-local address</strong></td>
<td>FE80::/10</td>
</tr>
<tr>
<td><strong> Site-local address</strong></td>
<td>FEC0::/10</td>
</tr>
<tr>
<td><strong> Global address</strong></td>
<td>2000::/3</td>
</tr>
<tr>
<td><strong> Multicast address</strong></td>
<td>FF00::/8</td>
</tr>
</tbody>
</table>
<p>From the above table, we learn that A and D are correct while B and C are incorrect. Notice that the IPv6 unicast loopback address is equivalent to the IPv4 loopback address, 127.0.0.1. The IPv6 loopback address is 0:0:0:0:0:0:0:1, or ::1.</p>
<p>E is not correct because of anycast addresses which are indistinguishable from normal unicast addresses. You can think of anycast addresses like this: &#8220;send it to nearest one which have this address&#8221;. An anycast address can be assigned to many interfaces and the first interface receives the packet destined for this anycast address will proceed the packet. A benefit of anycast addressing is the capability to share load to multiple hosts. An example of this benefit is if you are a Television provider with multiple servers and you want your users to use the nearest server to them then you can use anycast addressing for your servers. When the user initiates a connection to the anycast address, the packet will be routed to the nearest server (the user does not have to specify which server they want to use).</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-operations-3/feed</wfw:commentRss>
		<slash:comments>57</slash:comments>
		</item>
		<item>
		<title>EIGRP Tutorial</title>
		<link>http://www.9tut.com/eigrp-routing-protocol-tutorial</link>
		<comments>http://www.9tut.com/eigrp-routing-protocol-tutorial#comments</comments>
		<pubDate>Fri, 03 Dec 2010 02:27:03 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Knowledge]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=380</guid>
		<description><![CDATA[In this article we will mention about the EIGRP protocol. Enhanced Interior Gateway Routing Protocol (EIGRP) is a Cisco-proprietary routing protocol. EIGRP is a classless routing protocol, meaning that it sends the subnet mask of its interfaces in routing updates, which use a complex metric based on bandwidth and delay. EIGRP is referred to as [...]]]></description>
			<content:encoded><![CDATA[<p>In this article we will mention about the EIGRP protocol.</p>
<p>Enhanced   Interior Gateway Routing Protocol (EIGRP) is a Cisco-proprietary   routing protocol. EIGRP is a classless routing protocol, meaning that it   sends the subnet mask of its interfaces in routing updates, which use a   complex metric based on bandwidth and delay.</p>
<p>EIGRP is referred  to  as a <strong>hybrid routing protocol</strong> because it has the  characteristics  of both distance-vector and link-state protocols but now Cisco refers it as an advanced distance vector protocol.</p>
<p>Notice: the term &#8220;hybrid&#8221; is misleading because EIGRP is not a hybrid between distance vector and link-state routing protocols. It is a distance vector routing protocol with enhanced features.</p>
<p>EIGRP is a powerful  routing  protocol and it is really standout from its ancestor IGRP. The  main  features are listed below:</p>
<p>+ Support <strong>VLSM and discontiguous networks</strong><br />
 + <strong>Use Reliable   Transport Protocol</strong> (RTP) to delivery and reception of EIGRP packets<br />
 + Use the best path selection   <strong>Diffusing Update Algorithm (DUAL)</strong>, guaranteeing loop-free paths and backup paths throughout the routing domain<br />
 + <strong>Discover neighboring devices  using periodic Hello messages</strong> to discover and monitor connection status with its neighbors<br />
 + Exchange the full routing table at startup and send <strong>partial* triggered updates</strong> thereafter (not  full updates like distance-vector protocols) and the triggered updates  are only sent to routers that need the information. This behavior is  different from the link-state protocol in which an update will be sent  to all the link-state routers within that area. For example, EIGRP will send updates when a new link comes up or a link becoming unavailable<br />
 + <strong>Supports multiple protocols</strong>: EIGRP can exchange routes for IPv4, IPv6, AppleTalk and  IPX/SPX networks<br />
 + <strong>Load balancing</strong>: EIGRP supports unequal metric load balancing, which allows administrators to better distribute traffic flow in their networks.</p>
<p>* Notice: The term &#8220;partial&#8221; means that the update only includes  information about the route changes.</p>
<p><span id="more-380"></span></p>
<p><!--adsense--></p>
<p>EIGRP use metrics composed of bandwidth, delay, reliability, and load. By default, EIGRP uses only bandwidth and delay.</p>
<p>EIGRP use five types of packets to communicate:</p>
<p>+ <strong>Hello:</strong> used to identify neighbors. They are sent as periodic multicasts<br />
 + <strong>Update:</strong> used to advertise routes, only sent as multicasts when something is changed<br />
 + <strong>Ack:</strong> acknowledges receipt of an update. In fact, Ack is Hello packet without data. It is always unicast and uses UDP.<br />
 + <strong>Query:</strong> used to find alternate paths when all paths to a destination have failed<br />
 + <strong>Reply:</strong> is sent in response to query packets to instruct the originator not to recompute the route because feasible successors exist. Reply packets are always unicast to the originator of the query</p>
<p>EIGRP sends every Query and Reply message using RTP, so every message is acknowledged using an EIGRP ACK message.</p>
<p><strong>EIGRP Route Discovery</strong></p>
<p>Suppose that our network has 2 routers and they are configured to use EIGRP. Let&#8217;s see what will happen when they are turned on.</p>
<p>Firstly, the router will try to establish a neighboring relationships by sending &#8220;Hello&#8221; packets to others running EIGRP. The destination IP address is 224.0.0.10 which is the multicast address of EIGRP. By this way, other routers running EIGRP will receive and proceed these multicast packets. These packets are sent over TCP.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/EIGRP/EIGRP_initial_route_discovery.jpg" border="0" alt="EIGRP_initial_route_discovery.jpg" width="340" height="230" /></p>
<p>After hearing &#8220;Hello&#8221; from R1, R2 will respond with another &#8220;Hello&#8221; packet.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/EIGRP/EIGRP_initial_route_discovery_2.jpg" border="0" alt="EIGRP_initial_route_discovery_2.jpg" width="340" height="230" /></p>
<p style="text-align: left;">R2 will also send its routing table to R1 by &#8220;Update&#8221; packets. Remember that R2 will send its complete routing table for the first time.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/EIGRP/EIGRP_initial_route_discovery_3.jpg" border="0" alt="EIGRP_initial_route_discovery_3.jpg" width="340" height="230" /></p>
<p>R1 confirms it has received the Update packet by an &#8220;ACK&#8221; message.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/EIGRP/EIGRP_initial_route_discovery_4.jpg" border="0" alt="EIGRP_initial_route_discovery_4.jpg" width="340" height="230" /></p>
<p>R1 will also send to R2 all of its routing table for the first time</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/EIGRP/EIGRP_initial_route_discovery_5.jpg" border="0" alt="EIGRP_initial_route_discovery_5.jpg" width="340" height="230" /></p>
<p style="text-align: left;">R2 sends a message saying it has received R1&#8242;s routing table.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/EIGRP/EIGRP_initial_route_discovery_6.jpg" border="0" alt="EIGRP_initial_route_discovery_6.jpg" width="340" height="230" /></p>
<p>Now both R1 &amp; R2 learn all the paths of the neighbor and the <strong>network is converged</strong>. But there are some notices you should know:<br />
 + After the network converged, &#8220;Hello&#8221; messages will still be sent to indicate that the it is still alive.<br />
 + When something in the network changes, routers will only send partial updates to routers which need that information.<br />
 + Hellos are sent as periodic multicasts and are not acknowledged directly.<br />
 + The first hellos are used to build a list of neighbors; thereafter, hellos indicate that the neighbor is still alive</p>
<p>To become a neighbor, the following conditions must be met:<br />
 + The router must hear a Hello packet from a neighbor. <br />
 + The EIGRP autonomous system must be the same.<br />
 + K-values must be the same.</p>
<p>EIGRP builds and maintains three tables: <br />
 + Neighbor table: lists directly connected routers running EIGRP with which this router has an adjacency<br />
 + Topology table: lists all routes learned from each EIGRP neighbor<br />
 + Routing table: lists all best routes from the EIGRP topology table and other routing processes</p>
<p><strong>Configuring EIGRP </strong></p>
<table border="1">
<tbody>
<tr>
<td valign="top">Router(config)#<strong>router eigrp 1</strong></td>
<td>
<p>Syntax: <strong>router eigrp &lt;AS number&gt;<br />
 </strong></p>
<p>Turn on the EIGRP process</p>
<p>1 is the Autonomous System (AS) number. It can be from 1 to 65535.</p>
<p>All routers in the same network must use the same AS number.</p>
</td>
</tr>
<tr>
<td>Router(config-router)#<strong>network 192.168.1.0 </strong></td>
<td>
<p>Router will turn on EIGRP 1 process on all the interfaces belonging to 192.168.1.0/24 network.</p>
</td>
</tr>
</tbody>
</table>
<p>In the next part we will learn about the Feasible Distance &amp; Administrative Distance of EIGRP</p>
<p><!--adsense--></p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/eigrp-routing-protocol-tutorial/feed</wfw:commentRss>
		<slash:comments>99</slash:comments>
		</item>
		<item>
		<title>OSPF Tutorial</title>
		<link>http://www.9tut.com/ospf-routing-protocol-tutorial</link>
		<comments>http://www.9tut.com/ospf-routing-protocol-tutorial#comments</comments>
		<pubDate>Fri, 03 Dec 2010 02:16:30 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[CCNA Knowledge]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=374</guid>
		<description><![CDATA[In this article we will learn about the OSPF Routing Protocol Open-Shortest-Path-First (OSPF) is the most widely used interior gateway protocol routing protocol on the world because it is a public (non-proprietary) routing protocol while its biggest rival, EIGRP, is a Cisco proprietary protocol so other vendors can&#8217;t use it. OSPF is a complex link-state [...]]]></description>
			<content:encoded><![CDATA[<p>In this article we will learn about the OSPF Routing Protocol</p>
<p>Open-Shortest-Path-First (OSPF) is the most widely used interior gateway protocol routing protocol on the world because it is a public (non-proprietary) routing protocol while its biggest rival, EIGRP, is a Cisco proprietary protocol so other vendors can&#8217;t use it. OSPF is a complex link-state routing protocol. Link-state routing protocols generate routing updates only when a change occurs in the network topology. When a link changes state, the device that detected the change creates a link-state advertisement (LSA) concerning that link and sends to all neighboring devices using a special multicast address. Each routing device takes a copy of the LSA, updates its link-state database (LSDB), and forwards the LSA to all neighboring devices.</p>
<p>Note:</p>
<p>+ OSPF routers use LSA (Link State Advertisement)to describe its link state. LSDB stores all LSAs.</p>
<p>+ A router uses Router LSA to describe its interface IP addresses.</p>
<p>+ After OSPF is started on a router, it creates LSDB that contains one entry: this router&#8217;s Router LSA.</p>
<p>There are five types of OSPF Link-State Packets (LSPs).</p>
<p style="text-align: center;"><img style="border: 0px none currentColor;" src="http://www.9tut.com/images/ccna_self_study/OSPF/OSPF_example.jpg" alt="OSPF_example.jpg" width="440" height="300" /></p>
<p><span id="more-374"></span></p>
<p><!--adsense--></p>
<p>+ <strong>Hello</strong>: are used to establish and maintain adjacency with other OSPF routers. They are also used to elect the Designated Router (DR) and Backup Designated Router (BDR) on multiaccess networks (like Ethernet or Frame Relay).</p>
<p>+ <strong>Database Description</strong> (DBD or DD): contains an abbreviated list of the sending router&#8217;s link-state database and is used by receiving routers to check against the local link-state database</p>
<p>+ <strong>Link-State Request</strong> (LSR): used by receiving routers to request more information about any entry in the DBD</p>
<p>+ <strong>Link-State Update</strong> (LSU): used to reply to LSRs as well as to announce new information. LSUs contain seven different types of Link-State Advertisements (LSAs)</p>
<p>+ <strong>Link-State Acknowledgement</strong> (LSAck): sent to confirm receipt of an LSU message</p>
<p><br class="spacer_" /></p>
<p>Key points</p>
<p>+ Is a public (non-proprietary) routing protocol.</p>
<p>+ Is the only link-state routing protocol you learn in CCNA</p>
<p>+ This works by using the Dijkstra algorithm</p>
<p>+ Information about its neighbors (local connectivity) is sent to the entire network using multicasting</p>
<p>+ The entire routing table is transmitted once every 30 minutes</p>
<p>+ Routing information is shared through Link-state updates (LSAs)</p>
<p>+ HELLO messages are used to maintain adjacent neighbors. By default, OSPF routers send Hello packets every 10 seconds on multiaccess and point-to-point segments and every 30 seconds on non-broadcast multiaccess (NBMA) segments (like Frame Relay, X.25, ATM).</p>
<p>+ Is a classless routing protocol because it does not assume the default subnet masks are used. It sends the  subnet mask in the routing update.</p>
<p>+ Supports VLSM and route summarization</p>
<p>+ Uses COST as a metric which CISCO defines as the inverse of the bandwidth</p>
<p>+ Uses AREAs to subdivide large networks, providing a hierarchical structure and limit the multicast LSAs within routers of the same area — Area 0 is called <strong>backbone area</strong> and all other areas connect directly to it. All OSPF networks must have a backbone area</p>
<p>+ Only support IP but it&#8217;s not bad as we are all using IP, right? :)</p>
<p>Area Border Routers (ABR) are any routers that have one interface in one area and another interface in another area</p>
<p>Let&#8217;s see an example of OSPF</p>
<p>Suppose OSPF has just been enabled on R1 &amp; R2. Both R1 and R2 are very eager to discover if they have any neighbors nearby but before sending Hello messages they must first choose an OSPF router identifier (router-id) to tell their neighbors who they are. The Router ID (RID) is an IP address used to identify the router and is chosen using the following sequence:</p>
<p>+ The highest IP address assigned to a loopback  (logical) interface.</p>
<p>+ If a loopback interface is not defined, the  highest IP address of all active router&#8217;s physical interfaces will be  chosen.</p>
<p>+ The router ID can be manually assigned</p>
<p>In this example, suppose R1 has 2 loopback interfaces &amp; 2 physical interfaces:</p>
<p>+ Loopback 0: 10.0.0.1</p>
<p>+ Loopback 1: 12.0.0.1</p>
<p>+ Fa0/0: 192.168.1.1</p>
<p>+ Fa0/1: 200.200.200.1</p>
<p>As said above, the loopback interfaces are preferred to physical interfaces (because they are never down) so the highest IP address of the loopback interfaces is chosen as the router-id -&gt; Loopback 1 IP address is chosen as the router-id.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/OSPF/OSPF_choose_router_id.jpg" border="0" alt="OSPF_choose_router_id.jpg" width="340" height="280" /></p>
<p>Suppose R2 doesn&#8217;t have any loopback interfaces but it has 2 physical interfaces:</p>
<p>+ Fa0/0: 210.0.0.1 but it is shut down</p>
<p>+ Fa0/1: 192.168.1.2 (is active)</p>
<p>Although Fa0/0 has higher IP address but it is shutdown so R1 will choose Fa0/1 as its router-id.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/ccna_self_study/OSPF/OSPF_choose_router_id_2.jpg" border="0" alt="OSPF_choose_router_id_2.jpg" width="340" height="230" /></p>
<p>Now both the routers have the router-id so they will send Hello packets on all  OSPF-enabled interfaces to determine if there are any neighbors on those  links. The information in the OSPF Hello includes the OSPF Router ID of  the router sending the Hello packet.</p>
<p><!--adsense--></p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ospf-routing-protocol-tutorial/feed</wfw:commentRss>
		<slash:comments>59</slash:comments>
		</item>
		<item>
		<title>Configure Static Route – GNS3 Lab</title>
		<link>http://www.9tut.com/configure-static-route-gns3-lab</link>
		<comments>http://www.9tut.com/configure-static-route-gns3-lab#comments</comments>
		<pubDate>Fri, 03 Dec 2010 02:12:14 +0000</pubDate>
		<dc:creator>9tutq</dc:creator>
				<category><![CDATA[Practice CCNA GNS3 Labs]]></category>

		<guid isPermaLink="false">http://www.9tut.com/?p=372</guid>
		<description><![CDATA[In this tutorial we will connect two routers via static route with GNS3. Static route and Dynamic route Static route tells the device exactly where to send traffic, no matter what. Static route is often used when your network has only a few routers or there is only one route from a source to a [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial we will connect two routers via static route with GNS3.</p>
<p><strong>Static route and Dynamic route</strong></p>
<p>Static route tells the device exactly where to send traffic, no matter what. Static route is often used when your network has only a few routers or there is only one route from a source to a destination. Dynamic routes, on the other hand, use a routing protocol to determine  the best path and the routes can be changed depending on specific parameters (like bandwidth, delay, cost&#8230;). With dynamic routes, routers can communicate with each other to exchange routing information. In ROUTE 642-902 you will learn about dynamic routing protocols such as OSPF, EIGRP and BGP (RIP is also a dynamic routing protocol but it is not mentioned in ROUTE).</p>
<p>The simple syntax of static route:</p>
<p><strong>ip route destination-network-address subnet-mask {next-hop-IP-address | exit-interface}<br />
</strong>+<strong> destination-network-address: </strong>destination network address of the remote network<strong><br />
</strong>+<strong> subnet mask: </strong>subnet mask of the destination network<strong><br />
</strong>+<strong> next-hop-IP-address: </strong>the IP address of the receiving interface on the next-hop router<strong><br />
</strong>+<strong> exit-interface: </strong>the local interface of this router where the packets will go out<strong><br />
 </strong></p>
<p>Now we consider a real-world example of static routing. Suppose that your company has 2 branches located in New York and Chicago. As the administrator of the network, you are tasked to connect them so that employees in the two LANs can communicate with each other. After careful consideration you decided to connect them via static route.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/Configure_Static_Route_topology.jpg" border="0" alt="Configure_Static_Route_topology.jpg" /></p>
<p><!--adsense--></p>
<p><span id="more-372"></span></p>
<p>In GNS3, place 2 routers and connect them as the image below, I used IOS <strong>c2600-bin-mz.123-6f.bin </strong>to save some RAM (only require 64MB/router). We will use two loopback interfaces to simulate two Ethernet LANs.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/Configure_Static_Route_topology_gns3.jpg" border="0" alt="Configure_Static_Route_topology_gns3.jpg" width="321" height="126" /></p>
<p><strong>Configuring interfaces on R0</strong></p>
<p><span class="blueandbold">R0(config)#</span><span class="pinkandbold">interface s0/0</span><br />
 <span class="blueandbold">R0(config-if)#</span><span class="pinkandbold">ip address 12.12.12.1 255.255.255.0</span><br />
 <span class="blueandbold">R0(config-if)#</span><span class="pinkandbold">no shutdown</span><br />
 <span class="blueandbold">R0(config-if)#</span><span class="pinkandbold">interface lo0</span><br />
 <span class="blueandbold">R0(config-if)#</span><span class="pinkandbold">ip address 10.0.0.1 255.0.0.0</span><br />
 <span class="blueandbold">R0(config-if)#</span><span class="pinkandbold">exit</span></p>
<p><strong>Configuring interfaces on R1</strong></p>
<p><span class="blueandbold">R0(config)#</span><span class="pinkandbold">interface s0/0</span><br />
 <span class="blueandbold">R0(config-if)#</span><span class="pinkandbold">ip address 12.12.12.2 255.255.255.0</span><br />
 <span class="blueandbold">R0(config-if)#</span><span class="pinkandbold">no shutdown</span><br />
 <span class="blueandbold">R0(config-if)#</span><span class="pinkandbold">interface lo0</span><br />
 <span class="blueandbold">R0(config-if)#</span><span class="pinkandbold">ip address 172.16.0.1 255.255.0.0</span><br />
 <span class="blueandbold">R0(config-if)#</span><span class="pinkandbold">exit</span></p>
<p>Now if we check the routing table of R0 &amp; R1 by the command <strong>show ip route</strong> on both R0 and R1</p>
<p>On R0:<br />
 <span class="blueandbold">R0#</span> <span class="pinkandbold">show ip route</span></p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/Configure_Static_Route_show_ip_routeR0.jpg" border="0" alt="Configure_Static_Route_show_ip_routeR0.jpg" width="669" height="361" /></p>
<p>The letter &#8220;C&#8221; means &#8220;connected&#8221; or &#8220;directly connected&#8221;. So there are 2 networks that are directly connected to R0: 10.0.0.0/8 and 12.12.12.0</p>
<p>On R1</p>
<p><span class="blueandbold">R1#</span> <span class="pinkandbold">show ip route</span></p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/Configure_Static_Route_show_ip_routeR1.jpg" border="0" alt="Configure_Static_Route_show_ip_routeR1.jpg" width="669" height="337" /></p>
<p><strong>Configuring static route on R0</strong></p>
<p><span class="blueandbold">R0(config)#</span><span class="pinkandbold">ip route 172.16.0.0 255.255.0.0 12.12.12.2</span></p>
<p><strong>Configuring static route on R1</strong></p>
<p><span class="blueandbold">R1(config)#</span><span class="pinkandbold">ip route 10.0.0.0 255.0.0.0 12.12.12.1</span></p>
<p>Notice that static route works one-way. It means we have to add static route to both R0 and R1 so that R0 and R1 can communicate.</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/Configure_Static_Route_show_ip_routeR0_static.jpg" border="0" alt="Configure_Static_Route_show_ip_routeR0_static.jpg" width="669" height="229" /></p>
<p><br class="spacer_" /></p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/Configure_Static_Route_show_ip_routeR1_static.jpg" border="0" alt="Configure_Static_Route_show_ip_routeR1_static.jpg" width="669" height="229" /></p>
<p style="text-align: left;">Now try to ping each far end network</p>
<p style="text-align: center;"><img src="http://www.9tut.com/images/GNS3Labs/BasicLabs/Configure_Static_Route_ping.jpg" border="0" alt="Configure_Static_Route_ping.jpg" width="669" height="337" /></p>
<p style="text-align: left;">(Note: In fact, R0 can successfully ping R1 right after adding the static route to R0)</p>
<p style="text-align: left;"><strong>Administrative distance of a static route.<br />
 </strong></p>
<p style="text-align: left;">After adding two static routes in R0 &amp; R1 routers, the routing tables of two routers contain these lines:</p>
<p style="text-align: left;">S    10.0.0.0/8 [1/0] via 12.12.12.1 (on R1)<br />
 S    172.16.0.0/16 [1/0] via 12.12.12.2 (on R0)</p>
<p style="text-align: left;">The &#8220;S&#8221; letter tells us this is a static route. The networks 10.0.0.0/8 and 172.16.0.0/16 are the destinations of this static route and if the routers want to reach them they must send packets to 12.12.12.1 (on R1) and 12.12.12.2 (on R2). These parameters are straightforward and easy to understand. But what is [1/0]? Well, 1 is the <strong>administrative distance</strong> (AD) and 0 is the <strong>metric </strong>of that static route.</p>
<p style="text-align: left;">The administrative distance is a measure of trustworthiness where lower numbers are considered to be more trustworthy than higher numbers. The route with the lowest administrative distance value is the preferred route that the router selects. Administrative distance is the value from 0 to 255.</p>
<p style="text-align: left;">Directly connected routes have an administrative distance of 0. Static routes have an administrative distance <br />
 of 1 so in the outputs above you will see the administrative distance of both static routes are 1.</p>
<p style="text-align: left;">The router treats a static route pointing to an interface the same as a   connected interface so the its AD is 0. If you configure a static route pointing to an exiting interface (for example: &#8220;ip route 172.16.0.0 255.255.0.0 <strong>s0/0</strong>&#8221;  on R0) then the AD will not be shown.</p>
<p style="text-align: left;">(For your information, EIGRP has an administrative distance of 90. IGRP has an administrative distance of 100. OSPF has an administrative distance of 110. And RIP has an administrative distance of 120)</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/configure-static-route-gns3-lab/feed</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
	</channel>
</rss>

