<?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>Wed, 22 Feb 2012 09:44:09 +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-subif)#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>0</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>4</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>31</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>300</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>149</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>49</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>20</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>29</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>47</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>77</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>4</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 1.</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>39</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>6</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>28</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><!--adsense--></p>
<p><span id="more-817"></span></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>26</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><!--adsense--></p>
<p><span id="more-787"></span></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>17</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>19</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>Thu, 21 Jul 2011 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><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>1892</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>55</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>Fri, 15 Jul 2011 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>1495</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>70</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>237</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>213</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>97</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>868</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>35</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>175</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>169</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>167</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>35</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>51</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>36</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>16</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>34</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>2</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>732</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>85</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>259</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>52</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>88</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>51</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>31</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>298</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>289</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>94</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</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><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.9tut.com/ccna-eigrp-questions/feed</wfw:commentRss>
		<slash:comments>290</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>63</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>25</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>227</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: 192.168.10.254: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>61</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>113</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>42</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>58</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>48</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>43</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
