<?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>ROUTE 642-902 Training</title>
	<atom:link href="http://www.digitaltut.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.digitaltut.com</link>
	<description>A site devoted for learning ROUTE Exam 642-902 with answers and explanations</description>
	<lastBuildDate>Mon, 20 May 2013 01:37:08 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>Auto and Manual Summary Routes to Null0 with EIGRP</title>
		<link>http://www.digitaltut.com/auto-and-manual-summary-routes-to-null0-with-eigrp</link>
		<comments>http://www.digitaltut.com/auto-and-manual-summary-routes-to-null0-with-eigrp#comments</comments>
		<pubDate>Sun, 21 Oct 2012 05:51:53 +0000</pubDate>
		<dc:creator>digitaltut</dc:creator>
				<category><![CDATA[Basic Labs]]></category>

		<guid isPermaLink="false">http://www.digitaltut.com/?p=533</guid>
		<description><![CDATA[In this small lab we are going to see and learn about the Null0 when a summarized route is created. The topology is simple with only two routers. The purpose of this lab is to summarize all Loopback interfaces on R2 via auto and manual summarization and advertise it to R1. In this topology R2 [...]]]></description>
			<content:encoded><![CDATA[<p>In this small lab we are going to see and learn about the Null0 when a summarized route is created. The topology is simple with only two routers.</p>
<p style="text-align: left;"><img class="aligncenter" src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/Auto_Manual_Summary_Routes_Null0_topology.jpg" alt="Auto_Manual_Summary_Routes_Null0_topology.jpg" width="460" height="184" />The purpose of this lab is to summarize all Loopback interfaces on R2 via auto and manual summarization and advertise it to R1.</p>
<p style="text-align: left;"><span id="more-533"></span></p>
<p style="text-align: left;">In this topology R2 has three loopback interfaces. Instead of advertising all we will summarize these loopback interfaces before sending out to R1. And we will test the effect with auto summarization and manual summarization on R2.</p>
<p style="text-align: left;">First I listed the initial configuration on both routers, including IP address assignments and EIGRP configuration:</p>
<table border="1">
<tbody>
<tr>
<td>
<p>R1(config)#int f0/0<br />
 R1(config-if)#ip address 192.168.1.1 255.255.255.0<br />
 R1(config-if)#no shut<br />
 R1(config-if)#exit<br />
 R1(config)#router eigrp 100<br />
 R1(config-router)#network 192.168.1.0</p>
</td>
<td>R2(config)#int f0/0<br />
 R2(config-if)#ip address 192.168.1.2 255.255.255.0<br />
 R2(config-if)#int lo0<br />
 R2(config-if)#ip address 10.1.0.1 255.255.0.0<br />
 R2(config-if)#int lo1<br />
 R2(config-if)#ip address 10.2.0.1 255.255.0.0<br />
 R2(config-if)#int lo2<br />
 R2(config-if)#ip address 10.3.0.1 25.255.0.0<br />
 R2(config-if)#exit<br />
 R2(config)#router eigrp 100<br />
 R2(config-router)#network 10.0.0.0<br />
 R2(config-router)#network 192.168.1.0</td>
</tr>
</tbody>
</table>
<p style="text-align: left;"><span class="blueandbold">Auto summarization</span></p>
<p style="text-align: left;">By default, the &#8220;auto-summary&#8221; command is enabled on R2 so R2 will summarize the loopback interfaces&#8217; networks and advertise to R1 as 10.0.0.0/8 because it goes cross a different major network 192.168.1.0/24. Therefore in the routing table of R1 we only see 1 summarized route:</p>
<p style="text-align: left;"><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/Auto_Manual_Summary_Routes_Null0_init_R1_show_ip_route.jpg" alt="Auto_Manual_Summary_Routes_Null0_init_R1_show_ip_route.jpg" width="629" height="207" /></p>
<p style="text-align: left;">Now on R2 we can see the Null0 has been created:</p>
<p style="text-align: left;"><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/Auto_Manual_Summary_Routes_Null0_init_R2_show_ip_route.jpg" alt="Auto_Manual_Summary_Routes_Null0_init_R2_show_ip_route.jpg" width="629" height="271" /></p>
<p style="text-align: left;">So, why is a route to Null0 created? Now let&#8217;s take an example to understand the importance of this route. We suppose the &#8220;10.0.0.0/8 is a summary&#8230; Null0&#8243; line does not exist in the routing table of R2 and R1 needs to send traffic to 10.4.0.1. It looks up its routing table and see that the route to 10.0.0.0/8 is advertised via Fa0/0 (from R2) so it just forwards packets to R2. Although R2 advertised a summary of 10.0.0.0/8 but it does not have a route to 10.4.0.1 and R2 will drop this packet. That&#8217;s the lucky circumstance.</p>
<p style="text-align: left;">Suppose R1 is the only router connecting to the Internet so maybe on R2 the administrator wants to add a default route to R1 for Internet traffic. Something like this:</p>
<p style="text-align: left;">R2(config)#ip route 0.0.0.0 0.0.0.0 192.168.1.1</p>
<p style="text-align: left;">(or a more preferred way is to configure the &#8220;<strong>ip default-network</strong> <em>network-connected-to-Internet</em>&#8221; command on R1)</p>
<p style="text-align: left;">Now, if R2 receives traffic to 10.4.0.1 it will forward that traffic to the default network. That means the 10.4.0.1 traffic will go back to R1 and a routing loop occurs! This is the time when the &#8220;Null0&#8243; interface comes into play!</p>
<p style="text-align: left;">With the summarized route 10.0.0.0/8 pointed to Null0, traffic to 10.4.0.1 will not be sent back to R1, it is sent to Null0 interface instead. And packets sent to Null0 are simply dropped without creating a routing loop.</p>
<p style="text-align: left;">Well, you understood why the Null0 interface is created and its purpose. Now we will explore how to create the Null0 interface with a summary route.</p>
<p style="text-align: left;">In fact, in the above configuration you saw a summary route pointed to Null0 created with the auto-summary feature of EIGRP. To make sure that route is created via &#8220;auto-summary&#8221;, we will try turning it off.</p>
<p style="text-align: left;">R2(config)#router eigrp 100<br />
 R2(config-router)#no auto-summary</p>
<p style="text-align: left;">After the neighbor relationship of R1 &amp; R2 is reset, the summarized route to Null0 disappears.</p>
<p style="text-align: left;"><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/Auto_Manual_Summary_Routes_Null0_R2_no_auto_summary_show_ip_route.jpg" alt="Auto_Manual_Summary_Routes_Null0_R2_no_auto_summary_show_ip_route.jpg" width="628" height="253" /></p>
<p style="text-align: left;">Of course, if we enable &#8220;auto-summary&#8221; and shut down all three loopback interfaces, the summarized route to Null0 will not exist in the routing table of R2 and it will not be advertised to R1 either (even we do have a &#8220;network 10.0.0.0&#8243; under EIGRP mode).</p>
<p class="blueandbold" style="text-align: left;">Manual summarization</p>
<p style="text-align: left;">First we must turn off the auto summarization with the &#8220;no auto summary&#8221; command on R2 so that it will not cause any effect on the manual summarization.</p>
<p style="text-align: left;">R2(config-router)#no auto-summary</p>
<p style="text-align: left;">Also, if you turned off loopback interfaces, make sure to turn it on again.</p>
<p style="text-align: left;">Next, add the manual summarization command under Fa0/0 interface of R2:</p>
<p style="text-align: left;">R2(config-router)#exit<br />
 R2(config)#int f0/0<br />
 R2(config-if)#ip summary-address eigrp 100 10.0.0.0 255.0.0.0</p>
<p style="text-align: left;">Let&#8217;s check the routing table of R2 now:</p>
<p style="text-align: left;"><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/Auto_Manual_Summary_Routes_Null0_ip_summary-address_R2_show_ip_route.jpg" alt="Auto_Manual_Summary_Routes_Null0_ip_summary-address_R2_show_ip_route.jpg" width="630" height="271" /></p>
<p style="text-align: left;">A summarized route is also created like in the case of Auto Summarization for preventing routing loop. R1 also receives the summarized route to 10.0.0.0/8 only.</p>
<p style="text-align: left;">So now if we turn off all the loopback interfaces, will the summarized route exist in the routing table of R2? The answer is no.</p>
<p style="text-align: left;"><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/Auto_Manual_Summary_Routes_Null0_manual_summary_turn_off_loopbacks_R2_show_ip_route.jpg" alt="Auto_Manual_Summary_Routes_Null0_manual_summary_turn_off_loopbacks_R2_show_ip_route.jpg" width="628" height="192" /></p>
<p style="text-align: left;">R2 will not advertise the summarized route to R1 either so R1&#8242;s routing table does not have this route:</p>
<p style="text-align: left;"><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/Auto_Manual_Summary_Routes_Null0_manual_summary_turn_off_loopbacks_R1_show_ip_route.jpg" alt="Auto_Manual_Summary_Routes_Null0_manual_summary_turn_off_loopbacks_R1_show_ip_route.jpg" width="628" height="210" /></p>
<p style="text-align: left;">In conclusion, a summarized route to Null0 interface is created along with the summarization of that route. If the summarizing router does not have a specific route for a subnet of that summarized route, it will send packets to Null0, sometimes called a &#8220;black hole&#8221;. This helps prevent routing loop and reduce unnecessary traffic. We can summarize a route via auto or manual summarization. Both methods require at least one related route of the summarized route to exist in the routing table before the summarized route is advertised.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltut.com/auto-and-manual-summary-routes-to-null0-with-eigrp/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Privacy Policy</title>
		<link>http://www.digitaltut.com/privacy-policy</link>
		<comments>http://www.digitaltut.com/privacy-policy#comments</comments>
		<pubDate>Wed, 03 Oct 2012 17:09:56 +0000</pubDate>
		<dc:creator>digitaltut</dc:creator>
				<category><![CDATA[Privacy Policy]]></category>

		<guid isPermaLink="false">http://www.digitaltut.com/?p=249</guid>
		<description><![CDATA[All of the articles on digitaltut.com are copyright its respective owner. You are allowed to use them anywhere with a link back to its original article on this site.]]></description>
			<content:encoded><![CDATA[<p>All of the articles on digitaltut.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>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltut.com/privacy-policy/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>OSPF EIGRP Redistribute Lab</title>
		<link>http://www.digitaltut.com/ospf-eigrp-redistribute-lab</link>
		<comments>http://www.digitaltut.com/ospf-eigrp-redistribute-lab#comments</comments>
		<pubDate>Mon, 01 Oct 2012 06:13:01 +0000</pubDate>
		<dc:creator>digitaltut</dc:creator>
				<category><![CDATA[Basic Labs]]></category>

		<guid isPermaLink="false">http://www.digitaltut.com/?p=475</guid>
		<description><![CDATA[In this GNS3 lab we will learn how to redistribute from EIGRP into OSPF and vice versa. Below is the topology used in this lab: The purposes of this sim are: + Redistribute from EIGRP to OSPF and vice versa. + Traffic from R1 to R4 must go through the best path (after redistribution, traffic [...]]]></description>
			<content:encoded><![CDATA[<p>In this GNS3 lab we will learn how to redistribute from EIGRP into OSPF and vice versa. Below is the topology used in this lab:</p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/OSPF_EIGRP_Redistribute_topology.jpg" alt="OSPF_EIGRP_Redistribute_topology.jpg" width="430" height="351" /></p>
<p>The purposes of this sim are:<br />
 + Redistribute from EIGRP to OSPF and vice versa.<br />
 + Traffic from R1 to R4 must go through the best path (after redistribution, traffic from R1 will go R1 -&gt; R2 -&gt; R4; this is not the most optimal path as it must go through 2 serial links. The best path is R1 -&gt; R2 -&gt; R3 -&gt; R4 and we have to configure the routers to complete this task.)</p>
<p><strong>Initial Configurations </strong>(which have not had the redistribute command yet):</p>
<table border="1">
<tbody>
<tr>
<td>R1(config)#interface s0/0<br />
 R1(config-if)#ip address 192.168.1.1 255.255.255.0<br />
 R1(config-if)#no shut<br />
 R1(config-if)#exit<br />
 R1(config)#router eigrp 100<br />
 R1(config-router)#network 192.168.1.0</td>
<td>R2(config)#interface s0/1<br />
 R2(config-if)#ip address 192.168.1.2 255.255.255.0<br />
 R2(config-if)#no shut<br />
 R2(config-if)#interface f1/0<br />
 R2(config-if)#ip address 192.168.2.2 255.255.255.0<br />
 R2(config-if)#no shut<br />
 R2(config-if)#interface s0/0<br />
 R2(config-if)#ip address 192.168.3.2 255.255.255.0<br />
 R2(config-if)#no shut<br />
 R2(config-if)#exit<br />
 R2(config)#router eigrp 100<br />
 R2(config-router)#network 192.168.1.0<br />
 R2(config-router)#network 192.168.2.0<br />
 R2(config-router)#exit<br />
 R2(config)#router ospf 1<br />
 R2(config-router)#network 192.168.3.0 0.0.0.255 area 24</td>
</tr>
<tr>
<td>R3(config)#interface f0/0<br />
 R3(config-if)#ip address 192.168.2.3 255.255.255.0<br />
 R3(config-if)#no shut<br />
 R3(config-if)#interface f1/0<br />
 R3(config-if)#ip address 192.168.4.3 255.255.255.0<br />
 R3(config-if)#no shut<br />
 R3(config-if)#exit<br />
 R3(config)#router eigrp 100<br />
 R3(config-router)#network 192.168.2.0<br />
 R3(config-router)#exit<br />
 R3(config)#router ospf 1<br />
 R3(config-router)#network 192.168.4.0 0.0.0.255 area 34</td>
<td>
<p>R4(config)#interface s0/0<br />
 R4(config-if)#ip address 192.168.3.4 255.255.255.0<br />
 R3(config-if)#interface f1/0<br />
 R3(config-if)#ip address 192.168.4.4 255.255.255.0<br />
 R4(config-if)#no shut<br />
 R3(config-if)#interface loopback0<br />
 R3(config-if)#ip address 172.16.100.1 255.255.255.0<br />
 R4(config-if)#exit<br />
 R4(config)#router ospf 1<br />
 R4(config-router)#network 192.168.3.0 0.0.0.255 area 24<br />
 R4(config-router)#network 192.168.4.0 0.0.0.255 area 34<br />
 R4(config-router)#network 172.16.100.0 0.0.0.255 area 0</p>
</td>
</tr>
</tbody>
</table>
<p>After finishing the initial commands above, the routing tables of each router are shown below:</p>
<p><span id="more-475"></span>R1:<br />
 <img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/OSPF_EIGRP_Redistribute_init_R1_show_ip_route.jpg" alt="OSPF_EIGRP_Redistribute_init_R1_show_ip_route.jpg" width="630" height="207" /></p>
<p>R2:<br />
 <img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/OSPF_EIGRP_Redistribute_init_R2_show_ip_route.jpg" alt="OSPF_EIGRP_Redistribute_init_R2_show_ip_route.jpg" width="627" height="271" /></p>
<p>R3:<br />
 <img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/OSPF_EIGRP_Redistribute_init_R3_show_ip_route.jpg" alt="OSPF_EIGRP_Redistribute_init_R3_show_ip_route.jpg" width="627" height="270" /></p>
<p>R4:<br />
 <img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/OSPF_EIGRP_Redistribute_init_R4_show_ip_route.jpg" alt="OSPF_EIGRP_Redistribute_init_R4_show_ip_route.jpg" width="629" height="237" /></p>
<p>First on R2 we will redistribute routes from EIGRP to OSPF:</p>
<p>R2(config)#<strong>router ospf 1</strong><br />
 R2(config-router)#<strong>redistribute eigrp 100 metric-type 1 subnets</strong></p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/OSPF_EIGRP_Redistribute_EIGRP_to_OSPF_R4_show_ip_route.jpg" alt="OSPF_EIGRP_Redistribute_EIGRP_to_OSPF_R4_show_ip_route.jpg" width="628" height="270" /></p>
<p>We can see two &#8220;O E1&#8243; routes that are being redistributed into OSPF. Now we will redistribute OSPF to EIGRP on R2:</p>
<p>R2(config)#<strong>router eigrp 100</strong><br />
 R2(config-router)#<strong>redistribute ospf 1 metric 1544 2000 255 1 1500</strong></p>
<p>The routing table of R1 is now learned routes to networks 172.16.100.0/24, 192.168.4.0/24 &amp; 192.168.3.0/24 which are advertised by OSPF:</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/OSPF_EIGRP_Redistribute_OSPF_to_EIGRP_R1_show_ip_route.jpg" alt="OSPF_EIGRP_Redistribute_OSPF_to_EIGRP_R1_show_ip_route.jpg" width="627" height="268" /></p>
<p>Note: The routing table of R3 is still the same because R3 had all routes advertised by OSPF. Also, R1 can now ping 172.168.100.1 successfully.</p>
<p>Let&#8217;s do redistribution on R3:</p>
<p>Redistribute EIGRP to OSPF on R3:</p>
<p>R3(config)#<strong>router ospf 1</strong><br />
 R3(config-router)#<strong>redistribute eigrp 100 metric-type 1 subnets</strong></p>
<p>Now the routing table of R4 changes a bit:</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/OSPF_EIGRP_Redistribute_EIGRP_to_OSPF_on_R3_R4_show_ip_route.jpg" alt="OSPF_EIGRP_Redistribute_EIGRP_to_OSPF_on_R3_R4_show_ip_route.jpg" width="629" height="269" /></p>
<p>As you can see, now the external routes 192.168.1.0 &amp; 192.168.2.0 are learned via 192.168.4.3, not 192.168.3.2.</p>
<p>The last thing we do is to redistribute OSPF to EIGRP on R3:</p>
<p>R3(config)#<strong>router eigrp 100</strong><br />
 R3(config-router)#<strong>redistribute ospf 1 metric 10000 100 255 1 1500</strong></p>
<p>Now R2 (and R1) will use which route to go to 172.16.100.1? Let&#8217;s check the routing table of R2:</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/OSPF_EIGRP_Redistribute_OSPF_to_EIGRP_R2_show_ip_route.jpg" alt="OSPF_EIGRP_Redistribute_OSPF_to_EIGRP_R2_show_ip_route.jpg" width="628" height="270" /></p>
<p>So R2 still sends traffic to 172.16.100.1 via the serial link between R4 &amp; R2. This link is less optimal than the Ethernet link between R2 and R3. If we wish R2 to send traffic via the Ethernet link between R2 and R3, use this command:</p>
<p>R2(config-router)#<strong>distance eigrp 90 105</strong></p>
<p>This command sets the Administrative Distance of EIGRP external route to 105, which is smaller than an OSPF route (110) so the Ethernet link between R2 and R3 will be preferred to the link between R2 &amp; R4.</p>
<p>After that, the route to 172.16.100.1 is re-learned via 192.168.2.3 as an EIGRP external route.</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/OSPF_EIGRP_Redistribute_R2_distance_eigrp_show_ip_route.jpg" alt="OSPF_EIGRP_Redistribute_R2_distance_eigrp_show_ip_route.jpg" width="632" height="269" /></p>
<p>A traceroute command on R1 also confirms this:</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/OSPF_EIGRP_Redistribute_R1_traceroute.jpg" alt="OSPF_EIGRP_Redistribute_R1_traceroute.jpg" width="317" height="126" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltut.com/ospf-eigrp-redistribute-lab/feed</wfw:commentRss>
		<slash:comments>47</slash:comments>
		</item>
		<item>
		<title>We want to write more!</title>
		<link>http://www.digitaltut.com/we-want-to-write-more</link>
		<comments>http://www.digitaltut.com/we-want-to-write-more#comments</comments>
		<pubDate>Mon, 01 Oct 2012 03:54:28 +0000</pubDate>
		<dc:creator>digitaltut</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.digitaltut.com/?p=418</guid>
		<description><![CDATA[Dear our readers, First we really want to say thanks to all who are reading digitaltut.com. Thank for the time you spent with us, your comments and opinions. Our team had a conversation about digitaltut.com. We all love to write tutorials, explanations and answer questions from our readers. We love to support you to achieve [...]]]></description>
			<content:encoded><![CDATA[<p>Dear our readers,</p>
<p>First we really want to say thanks to all who are reading digitaltut.com. Thank for the time you spent with us, your comments and opinions.</p>
<p>Our team had a conversation about digitaltut.com. We all love to write tutorials, explanations and answer questions from our readers. We love to support you to achieve your targets but our time is limited. So recently new questions, tutorials have not been added to digitaltut. It is sad to say but if we keep this situation, digitaltut cannot develop anymore. After that talk, we decide that digitaltut should have a premium membership part to fully support you.</p>
<p>We really hope to continue bringing you amazing stuffs in the networking field. But without the fund, digitaltut and other sites cannot operate. With your support, we can continue offering ROUTE tutorials and questions more frequently. We also try our best to keep the fee as small as possible (currently $9 a month) while bringing you our best support.</p>
<p>Become premium member allows you to access:</p>
<p>+ Flash-based questions to check your knowledge before each topic of ROUTE.<br />
 + Flash-based questions on all topics of ROUTE to help you fully prepare for the ROUTE exam. <a href="http://www.digitaltut.com/download/Example_Quiz/quiz.html" target="_blank">See example</a>.<br />
 + Popular lab Simulators<br />
 We wish you to understand our situation now.</p>
<p>If you have any questions, don&#8217;t hesitate to comment here or contact us at support@digitaltut.com.</p>
<p>Thanks and regards,</p>
<p>Digitaltut team.</p>
<p>Note: The Premium Membership on this site is dedicated for the ROUTE exam.</p>
<p style="text-align: center;"><a href="http://www.digitaltut.com/member/signup"><img src="http://www.digitaltut.com/images/Join_tut.png" alt="button" width="154" height="40" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltut.com/we-want-to-write-more/feed</wfw:commentRss>
		<slash:comments>57</slash:comments>
		</item>
		<item>
		<title>BGP Route map and MED &#8211; GNS3 Lab</title>
		<link>http://www.digitaltut.com/bgp-route-map-and-med-gns3-lab</link>
		<comments>http://www.digitaltut.com/bgp-route-map-and-med-gns3-lab#comments</comments>
		<pubDate>Wed, 21 Mar 2012 17:08:24 +0000</pubDate>
		<dc:creator>digitaltut</dc:creator>
				<category><![CDATA[Basic Labs]]></category>

		<guid isPermaLink="false">http://www.digitaltut.com/?p=390</guid>
		<description><![CDATA[In this lab we will learn how to use Route map to set MED attribute to tell which path the neighbor should choose to a specific network. Topology: IOS used in this lab: c3640-jk9s-mz.124-16.bin Tasks in this lab: 1) Set up basic IBGP &#38; EBGP 2) Advertise loopback 1 &#38; loopback 10 on R1 3) [...]]]></description>
			<content:encoded><![CDATA[<p>In this lab we will learn how to use Route map to set MED attribute to tell which path the neighbor should choose to a specific network.</p>
<p>Topology:</p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_Route_map_MED_topology.jpg" alt="BGP_Route_map_MED_topology.jpg" width="589" height="374" /><br class="spacer_" /></p>
<p>IOS used in this lab: <strong>c3640-jk9s-mz.124-16.bin</strong></p>
<p><strong>Tasks in this lab:</strong></p>
<p>1) Set up basic IBGP &amp; EBGP<br />
 2) Advertise loopback 1 &amp; loopback 10 on R1 <br />
 3) Use route-maps on R2 &amp; R3 to set MED for only 192.168.1.0, verify on R6 and will R6 see network 192.168.10.0?</p>
<p><span id="more-390"></span></p>
<p><!--adsense--></p>
<p><strong>Basic Configuration &#8211; IP Assignment</strong>s</p>
<table border="1">
<tbody>
<tr>
<td>R1:<br />
 interface f0/0<br />
 ip address 12.12.12.1 255.255.255.0<br />
 no shut<br />
 interface f1/0<br />
 ip address 13.13.13.1 255.255.255.0<br />
 no shut<br />
 interface loopback0<br />
 ip address 1.1.1.1 255.255.255.255<br />
 interface loopback1<br />
 ip address 192.168.1.1 255.255.255.0<br />
 interface loopback10<br />
 ip address 192.168.10.1 255.255.255.0</td>
<td>R4:<br />
 interface f1/0<br />
 ip address 46.46.46.4 255.255.255.0<br />
 no shut<br />
 interface s0/0<br />
 ip address 24.24.24.4 255.255.255.0<br />
 no shut</td>
</tr>
<tr>
<td>R2:<br />
 interface f0/0<br />
 ip address 12.12.12.2 255.255.255.0<br />
 no shut<br />
 interface s1/0<br />
 ip address 24.24.24.2 255.255.255.0<br />
 no shut<br />
 interface loopback0<br />
 ip address 2.2.2.2 255.255.255.255<br />
 interface loopback1<br />
 ip address 192.168.2.1 255.255.255.0</td>
<td>R5:<br />
 interface f1/0<br />
 ip address 56.56.56.5 255.255.255.0<br />
 no shut<br />
 interface s0/0<br />
 ip address 35.35.35.5 255.255.255.0<br />
 no shut</td>
</tr>
<tr>
<td>R3:<br />
 interface f0/0<br />
 ip address 13.13.13.3 255.255.255.0<br />
 no shut<br />
 interface s1/0<br />
 ip address 35.35.35.3 255.255.255.0<br />
 no shut<br />
 interface loopback0<br />
 ip address 3.3.3.3 255.255.255.255<br />
 interface loopback1<br />
 ip address 192.168.3.1 255.255.255.0</td>
<td>R6:<br />
 interface f0/0<br />
 ip address 46.46.46.6 255.255.255.0<br />
 no shut<br />
 interface f1/0<br />
 ip address 56.56.56.6 255.255.255.0<br />
 no shut</td>
</tr>
</tbody>
</table>
<p><strong>1) Set up IBGP &amp; EBGP connections</strong></p>
<table border="1">
<tbody>
<tr>
<td>R1:<br />
 router bgp 123<br />
 neighbor 2.2.2.2 remote-as 123<br />
 neighbor 2.2.2.2 update-source loopback0<br />
 neighbor 3.3.3.3 remote-as 123<br />
 neighbor 3.3.3.3 update-source loopback0<br />
 exit<br />
 ip route 2.2.2.2 255.255.255.255 12.12.12.2<br />
 ip route 3.3.3.3 255.255.255.255 13.13.13.3<br />
 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
 Note: R1 establishes BGP neighbor relationships <br />
 with R2 &amp; R3 via their loopback interfaces but R1<br />
 does not know how to reach there (and neighbor <br />
 relationship can not be established) so the most <br />
 simple way is to use a static route.</td>
<td>R4:<br />
 router bgp 456<br />
 neighbor 24.24.24.2 remote-as 123<br />
 neighbor 46.46.46.6 remote-as 456<br />
 neighbor 46.46.46.6 next-hop-self<br />
 neighbor 56.56.56.5 remote-as 456<br />
 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
 Note: the &#8220;next-hop-self&#8221; feature is used <br />
 so that networks learned from R2 will be<br />
 advertised to R6 with R5&#8242;s next-hop IP address. If not<br />
 the networks learned from R2 would be marked<br />
 as &#8220;inaccessible&#8221; on R6 (because R4 would advertise with<br />
 R2&#8242;s IP address but R6 can not reach the next-hop 24.24.24.2)</td>
</tr>
<tr>
<td>R2:<br />
 router bgp 123<br />
 neighbor 1.1.1.1 remote-as 123<br />
 neighbor 1.1.1.1 update-source loopback0<br />
 neighbor 3.3.3.3 remote-as 123<br />
 neighbor 3.3.3.3 update-source loopback0<br />
 neighbor 24.24.24.4 remote-as 456<br />
 exit<br />
 ip route 1.1.1.1 255.255.255.255 12.12.12.1<br />
 ip route 3.3.3.3 255.255.255.255 12.12.12.1</td>
<td>R5:<br />
 router bgp 456<br />
 neighbor 46.46.46.4 remote-as 456<br />
 neighbor 56.56.56.6 remote-as 456<br />
 neighbor 56.56.56.6 next-hop-self<br />
 neighbor 35.35.35.3 remote-as 123</td>
</tr>
<tr>
<td>R3:<br />
 router bgp 123<br />
 neighbor 1.1.1.1 remote-as 123<br />
 neighbor 1.1.1.1 update-source loopback0<br />
 neighbor 2.2.2.2 remote-as 123<br />
 neighbor 2.2.2.2 update-source loopback0<br />
 neighbor 35.35.35.5 remote-as 456<br />
 exit<br />
 ip route 2.2.2.2 255.255.255.255 13.13.13.1<br />
 ip route 1.1.1.1 255.255.255.255 13.13.13.1</td>
<td>R6:<br />
 router bgp 456<br />
 neighbor 46.46.46.4 remote-as 456<br />
 neighbor 56.56.56.5 remote-as 456</td>
</tr>
</tbody>
</table>
<p>Note: The use of a loopback interface to define neighbors is common with iBGP, but is not common with eBGP. Normally, you use the loopback interface to make sure that the IP address of the neighbor stays up and is independent of hardware that functions properly. In the case of eBGP, peer routers frequently have direct connection, and loopback does not apply.</p>
<p><!--adsense#MiddleContent--></p>
<p><strong>2) Advertise networks 192.168.1.0 &amp; 192.168.10.0 on R1:</strong></p>
<p>On R1 we advertise two networks 192.168.1.0/24 &amp; 192.168.10.0/24:</p>
<table style="width: 290px; height: 108px;" border="1">
<tbody>
<tr>
<td>R1:<br />
 router bgp 123<br />
 network 192.168.1.0 mask 255.255.255.0<br />
 network 192.168.10.0 mask 255.255.255.0<br />
 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
 In fact we don&#8217;t need the &#8220;mask 255.255.255.0&#8243; because it is the default mask value for class C IP address.</td>
</tr>
</tbody>
</table>
<p>Now check on both R2 &amp; R3 to see both networks are advertised</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_Route_map_MED_R2_init_show_ip_bgp.jpg" alt="BGP_Route_map_MED_R2_init_show_ip_bgp.jpg" width="636" height="143" /></p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_Route_map_MED_R3_init_show_ip_bgp.jpg" alt="BGP_Route_map_MED_R3_init_show_ip_bgp.jpg" width="636" height="143" /></p>
<p>Also on EBGP neighbors, these networks are also advertised (you have to wait a moment for BGP updates)</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_Route_map_MED_R4_init_show_ip_bgp.jpg" alt="BGP_Route_map_MED_R4_init_show_ip_bgp.jpg" width="633" height="144" /></p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_Route_map_MED_R5_init_show_ip_bgp.jpg" alt="BGP_Route_map_MED_R5_init_show_ip_bgp.jpg" width="637" height="143" /></p>
<p>On R6 networks 192.168.1.0 &amp; 192.168.10.0 are learned via both R4 &amp; R5:</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_Route_map_MED_R6_init_show_ip_bgp.jpg" alt="BGP_Route_map_MED_R6_init_show_ip_bgp.jpg" width="634" height="175" /></p>
<p>Note: the path via R4 (46.46.46.4) are chosen for both networks as the best path because of lower router-ID on R4)</p>
<p>3) Use route-maps on R2 &amp; R3 to set MED for 192.168.1.0 to 150 &amp; 170, respectively:</p>
<table border="1">
<tbody>
<tr>
<td>R2:<br />
 router bgp 123<br />
 neighbor 24.24.24.4 route-map MED_to_456 out<br />
 exit<br />
 access-list 1 permit 192.168.1.0 0.0.0.255<br />
 route-map MED_to_456 permit 10<br />
 match ip address 1<br />
 set metric 170</td>
<td>R3:<br />
 router bgp 123<br />
 neighbor 35.35.35.5 route-map MED_to_456 out<br />
 exit<br />
 access-list 1 permit 192.168.1.0 0.0.0.255<br />
 route-map MED_to_456 permit 10<br />
 match ip address 1<br />
 set metric 150</td>
</tr>
</tbody>
</table>
<p>Now R6 only receives updates about 192.168.1.0. The metric advertised by R3 is lower so it is chosen as the best path to 192.168.1.0 (marked with &#8220;>&#8221;).</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_Route_map_MED_R6_show_ip_bgp.jpg" alt="BGP_Route_map_MED_R6_show_ip_bgp.jpg" width="636" height="144" /><br class="spacer_" /></p>
<p>Notice that updates for 192.168.10.0 have been filtered out because there is an  implicit &#8220;deny all&#8221; statement at the end of each access-list.</p>
<p><!--adsense#AfterContent--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltut.com/bgp-route-map-and-med-gns3-lab/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>BGP Summary Route</title>
		<link>http://www.digitaltut.com/bgp-summary-route</link>
		<comments>http://www.digitaltut.com/bgp-summary-route#comments</comments>
		<pubDate>Sun, 04 Mar 2012 09:10:12 +0000</pubDate>
		<dc:creator>digitaltut</dc:creator>
				<category><![CDATA[Basic Labs]]></category>

		<guid isPermaLink="false">http://www.digitaltut.com/?p=373</guid>
		<description><![CDATA[In this lab we will learn how to aggregate (summarize) small networks into a bigger one. Below is the topology used in this GNS3 lab. IOS used: c3640-jk9s-mz.124-16.bin Task: Summary networks 10.10.10.0/24 &#38; 10.10.20.0/24 into 10.10.0.0/16 Basic IP address Assignments R1(config)#interface f0/0 R1(config-if)#ip address 13.13.13.1 255.255.255.0 R1(config-if)#no shutdown R1(config-if)#interface loopback0 R1(config-if)#ip address 10.10.10.1 255.255.255.0 R3(config)#interface [...]]]></description>
			<content:encoded><![CDATA[<p>In this lab we will learn how to aggregate (summarize) small networks into a bigger one. Below is the topology used in this GNS3 lab.</p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_aggregate_topology.jpg" alt="BGP_aggregate_topology.jpg" width="591" height="269" /></p>
<p style="text-align: left;">IOS used: c3640-jk9s-mz.124-16.bin</p>
<p style="text-align: left;">Task: Summary networks 10.10.10.0/24 &amp; 10.10.20.0/24 into 10.10.0.0/16</p>
<p><span id="more-373"></span></p>
<p><!--adsense--></p>
<p><strong>Basic IP address Assignments</strong></p>
<table border="1">
<tbody>
<tr>
<td>R1(config)#interface f0/0<br />
 R1(config-if)#ip address 13.13.13.1 255.255.255.0<br />
 R1(config-if)#no shutdown<br />
 R1(config-if)#interface loopback0<br />
 R1(config-if)#ip address 10.10.10.1 255.255.255.0</td>
<td>R3(config)#interface f0/0<br />
 R3(config-if)#ip address 13.13.13.3 255.255.255.0<br />
 R3(config-if)#no shutdown<br />
 R3(config-if)#interface f1/0<br />
 R3(config-if)#ip address 23.23.23.3 255.255.255.0<br />
 R3(config-if)#no shutdown<br />
 R3(config-if)#interface f2/0<br />
 R3(config-if)#ip address 34.34.34.3 255.255.255.0<br />
 R3(config-if)#no shutdown</td>
</tr>
<tr>
<td>R2(config)#interface f0/0<br />
 R2(config-if)#ip address 23.23.23.2 255.255.255.0<br />
 R2(config-if)#no shutdown<br />
 R2(config-if)#interface loopback0<br />
 R2(config-if)#ip address 10.10.20.1 255.255.255.0</td>
<td>R4(config)#interface f0/0<br />
 R4(config-if)#ip address 34.34.34.4 255.255.255.0<br />
 R4(config-if)#no shutdown</td>
</tr>
</tbody>
</table>
<p><strong>Establish BGP neighbors</strong></p>
<table border="1">
<tbody>
<tr>
<td>R1(config)#router bgp 1<br />
 R1(config-router)#neighbor 13.13.13.3 remote-as 3</td>
<td>R3(config)#router bgp 3<br />
 R3(config-router)#neighbor 13.13.13.1 remote-as 1<br />
 R3(config-router)#neighbor 23.23.23.2 remote-as 2<br />
 R3(config-router)#neighbor 34.34.34.4 remote-as 4</td>
</tr>
<tr>
<td>R2(config)#router bgp 2<br />
 R2(config-router)#neighbor 23.23.23.3 remote-as 3</td>
<td>R4(config)#router bgp 4<br />
 R4(config-router)#neighbor 34.34.34.3 remote-as 3</td>
</tr>
</tbody>
</table>
<p>Notice that the BGP tables are still empty now.</p>
<p><strong>Advertise loopback0 interfaces on R1 &amp; R2</strong></p>
<table border="1">
<tbody>
<tr>
<td>R1(config)#router bgp 1<br />
 R1(config-router)#network 10.10.10.0 mask 255.255.255.0</td>
<td>R2(config)#router bgp 2<br />
 R2(config-router)#network 10.10.20.0 mask 255.255.255.0</td>
</tr>
</tbody>
</table>
<p>Check the BGP table to see our loopback interfaces have been advertised<br class="spacer_" /></p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_aggregate_advertised_R1_show_ip_bgp.jpg" alt="BGP_aggregate_advertised_R1_show_ip_bgp.jpg" width="632" height="143" /></p>
<p>On R1 we see the next hop of 10.10.10.0/24 is 0.0.0.0 -> the network originated by a &#8220;network&#8221; command has the next-hop of 0.0.0.0.</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_aggregate_advertised_R4_show_ip_bgp.jpg" alt="BGP_aggregate_advertised_R4_show_ip_bgp.jpg" width="636" height="143" /></p>
<p>Now we want to summary two networks 10.10.10.0/24 &amp; 10.10.20.0/24 into one network 10.10.0.0/16</p>
<table border="1">
<tbody>
<tr>
<td>R3(config-router)#aggregate-address 10.10.0.0 255.255.0.0</td>
</tr>
</tbody>
</table>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_aggregate_address_R3_show_ip_bgp.jpg" alt="BGP_aggregate_address_R3_show_ip_bgp.jpg" width="635" height="159" /></p>
<p>Notice that after being summarized, the &#8220;Next Hop&#8221; of summarized network is 0.0.0.0 -> the network originated via an &#8220;aggregate&#8221; command will have a next hop of 0.0.0.0.</p>
<p>Also a rule of aggregation is &#8220;Aggregation applies only to routes that exist in the BGP routing table. An aggregated route is forwarded if at least one more specific route of the aggregation exists in the BGP routing table&#8221;. That means the aggregated network 10.10.0.0/16 is only forwarded if the BGP table of R3 has at least 10.10.10.0/24 or 10.10.20.0/24.</p>
<p>Check the BGP table of R4 to see our aggregated network has been advertised.</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_aggregate_address_R4_show_ip_bgp.jpg" alt="BGP_aggregate_address_R4_show_ip_bgp.jpg" width="633" height="159" /></p>
<p>Although the summarized network was created but two more specific  networks are still there. If you want to advertise the summarized  network only, use the command:</p>
<table border="1">
<tbody>
<tr>
<td>R3(config-router)#aggregate-address 10.10.0.0 255.255.0.0<strong> summary-only</strong></td>
</tr>
</tbody>
</table>
<p>The BGP table of R3 still shows these routes but they are marked as suppressed (s>)</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_aggregate_summary-only_R3_show_ip_bgp.jpg" alt="BGP_aggregate_summary-only_R3_show_ip_bgp.jpg" width="636" height="177" /></p>
<p>Now R3 only advertises summarized route so the BGP table of R4 does not display these suppressed networks</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_aggregate_summary-only_R4_show_ip_bgp.jpg" alt="BGP_aggregate_summary-only_R4_show_ip_bgp.jpg" width="635" height="145" /></p>
<p>But let&#8217;s check the BGP table of R1 or R2.</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_aggregate_advertised_R2_show_ip_bgp.jpg" alt="BGP_aggregate_advertised_R2_show_ip_bgp.jpg" width="631" height="161" /></p>
<p>Wow! The summarized route is also advertised back to R2 as if it were learned from R3 (next hop 23.23.23.3). So if R2 receives a packet destined to a subnet of 10.10.0.0/16 (10.10.30.0 for example) it will send to R3 but R3 does not have more specific route -> it will drop that packet, this creates a black hole. To avoid this problem, append the keyword &#8220;as-set&#8221; to ask the router to send the information about all the Autonomous Systems it has passed:</p>
<table border="1">
<tbody>
<tr>
<td>R3(config-router)#aggregate-address 10.10.0.0 255.255.0.0 summary-only <strong>as-set</strong></td>
</tr>
</tbody>
</table>
<p>Now the path information in R4 changes to 3 {1,2}. This set indicates the aggregate route summarizes routes that have passed through AS 1 &amp; AS 2 and is advertised through AS 3.</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_aggregate_summary-only_as-set_R4_show_ip_bgp.jpg" alt="BGP_aggregate_summary-only_as-set_R4_show_ip_bgp.jpg" width="634" height="127" /></p>
<p>The as-set information is very important in the avoidance of routing loops. Let&#8217;s see the BGP table of R2:</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_aggregate_summary-only_as-set_R2_show_ip_bgp.jpg" alt="BGP_aggregate_summary-only_as-set_R2_show_ip_bgp.jpg" width="634" height="143" /></p>
<p>When receiving this advertisement, R2 will not accept this route anymore because R2 sees its AS in the AS-Path. Notice before the &#8220;as-set&#8221; keyword is used, R2 only sees this advertisement comes from AS 3 and accepts it.</p>
<p>Note: If you wish to ping from R4 to loopback of R1 (or R2), you have to advertise the network 34.34.34.0 on R4 so that the ICMP Reply from R1 knows where to go (use the &#8220;network 34.34.34.0 mask 255.255.255.0 on R4).</p>
<p><!--adsense#AfterContent--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltut.com/bgp-summary-route/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Use Distribute-list to filter Routing Updates in BGP</title>
		<link>http://www.digitaltut.com/use-distribute-list-to-filter-routing-updates-in-bgp</link>
		<comments>http://www.digitaltut.com/use-distribute-list-to-filter-routing-updates-in-bgp#comments</comments>
		<pubDate>Fri, 02 Mar 2012 06:03:16 +0000</pubDate>
		<dc:creator>digitaltut</dc:creator>
				<category><![CDATA[Basic Labs]]></category>

		<guid isPermaLink="false">http://www.digitaltut.com/?p=370</guid>
		<description><![CDATA[In this lab we will learn how to use distribute-list to filter unwanted routes in BGP. Below is the topology of this lab: IOS used in this lab: c3640-jk9s-mz.124-16.bin Objectives of this lab: + Task 1: Configure EBGP on AS 1, AS 23, AS 4 and configure IBGP between R2 &#38; R3 (AS23), also advertise [...]]]></description>
			<content:encoded><![CDATA[<p>In this lab we will learn how to use distribute-list to filter unwanted routes in BGP. Below is the topology of this lab:</p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_topology.jpg" alt="BGP_community_topology.jpg" width="603" height="262" /></p>
<p>IOS used in this lab: c3640-jk9s-mz.124-16.bin</p>
<p><strong>Objectives of this lab:</strong><br />
 + Task 1: Configure EBGP on AS 1, AS 23, AS 4 and configure IBGP between R2 &amp; R3 (AS23), also advertise loopback 0 interface on R1 so that all the routers learn about this network.<br />
 + Task 2: Use a distribute-list to filter out network 1.1.1.0</p>
<p>Let&#8217;s start our lab!</p>
<p><span id="more-370"></span></p>
<p><!--adsense--></p>
<p><strong>Task 1</strong> has been mentioned in detail in <a href="http://www.digitaltut.com/bgp-next-hop-self-community-no-export-send-community-gns3-lab" target="_blank">BGP next-hop-self, community no-export &amp; send-community Lab</a> so I just post the configuration here:</p>
<p><strong>Configure IP addresses on all interfaces</strong></p>
<table border="1">
<tbody>
<tr>
<td>R1(config)#interface f0/0<br />
 R1(config-if)#ip address 12.12.12.1 255.255.255.0<br />
 R1(config-if)#no shutdown</td>
<td>R3(config)#interface f0/0<br />
 R3(config-if)#ip address 23.23.23.3 255.255.255.0<br />
 R3(config-if)#no shutdown<br />
 R3(config)#interface f1/0<br />
 R3(config-if)#ip address 34.34.34.3 255.255.255.0<br />
 R3(config-if)#no shutdown</td>
</tr>
<tr>
<td>R2(config)#interface f0/0<br />
 R2(config-if)#ip address 12.12.12.2 255.255.255.0<br />
 R2(config-if)#no shutdown<br />
 R2(config)#interface f1/0<br />
 R2(config-if)#ip address 23.23.23.2 255.255.255.0<br />
 R2(config-if)#no shutdown</td>
<td>R4(config)#interface f0/0<br />
 R4(config-if)#ip address 34.34.34.4 255.255.255.0<br />
 R4(config-if)#no shutdown</td>
</tr>
</tbody>
</table>
<p><strong>Configure EBGP &amp; IBGP</strong></p>
<table border="1">
<tbody>
<tr>
<td>R1(config)#router bgp 1<br />
 R1(config-router)#neighbor 12.12.12.2 remote-as 23</td>
<td>R3(config)#router bgp 23<br />
 R3(config-router)#neighbor 23.23.23.3 remote-as 23<br />
 R3(config-router)#neighbor 34.34.34.4 remote-as 4<br />
 R3(config-router)#neighbor 23.23.23.2 next-hop-self</td>
</tr>
<tr>
<td>R2(config)#router bgp 23<br />
 R2(config-router)#neighbor 12.12.12.1 remote-as 1<br />
 R2(config-router)#neighbor 23.23.23.3 remote-as 23<br />
 R2(config-router)#neighbor 23.23.23.3 next-hop-self</td>
<td>R4(config)#router bgp 4<br />
 R4(config-router)#neighbor 34.34.34.3 remote-as 23</td>
</tr>
</tbody>
</table>
<p><strong>Advertise loopback0 on R1 to other routers<br />
 </strong></p>
<table border="1">
<tbody>
<tr>
<td>R1(config)#interface loopback0<br />
 R1(config-if)#ip address 1.1.1.1 255.255.255.0<br />
 R1(config-if)#exit<br />
 R1(config)#router bgp 1<br />
 R1(config-router)#network 1.1.1.0 mask 255.255.255.0</td>
</tr>
</tbody>
</table>
<p>Now we can see 1.1.1.0/24 on all routers. For example on R4 we see:</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_Distribute-list_lo0_init_R4_show_ip-bgp.jpg" alt="BGP_Distribute-list_lo0_init_R4_show_ip-bgp.jpg" width="635" height="145" /></p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_Distribute-list_lo0_init_R4_show_ip_route.jpg" alt="BGP_Distribute-list_lo0_init_R4_show_ip_route.jpg" width="630" height="255" /></p>
<p><strong>Task 2: </strong>Use distribute-list to filter out network 1.1.1.0</p>
<p>On R2 configure an access-list and apply it in the distribute-list under BGP mode.</p>
<table border="1">
<tbody>
<tr>
<td>R2(config)#access-list 1 deny 1.1.1.0 0.0.0.255<br />
 R2(config)#access-list 1 permit any<br />
 R2(config)#router bgp 23<br />
 R2(config-router)#neighbor 12.12.12.1 distribute-list 1 in</td>
</tr>
</tbody>
</table>
<p>Now network 1.1.1.0 disappears in both BGP routing table and routing table of R4</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_Distribute-list_lo0_R4_show_ip_route_show_ip_bgp.jpg" alt="BGP_Distribute-list_lo0_R4_show_ip_route_show_ip_bgp.jpg" width="634" height="289" /></p>
<p>You can check to see the access-list 1 has been matched with the &#8220;show access-list 1&#8243; command:</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_Distribute-list_lo0_R2_show_access-list_1.jpg" alt="BGP_Distribute-list_lo0_R2_show_access-list_1.jpg" width="449" height="80" /></p>
<p>Another way to complete this task is to apply the distribute-list on R3</p>
<table border="1">
<tbody>
<tr>
<td>R3(config)#access-list 1 deny 1.1.1.0 0.0.0.255<br />
 R3(config)#access-list 1 permit any<br />
 R3(config)#router bgp 23<br />
 R3(config-router)#neighbor 34.34.34.4 distribute-list 1 out</td>
</tr>
</tbody>
</table>
<p>In practical we should apply the distribute-list on R2 so that routers in our company don&#8217;t need to learn about that route.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltut.com/use-distribute-list-to-filter-routing-updates-in-bgp/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>BGP next-hop-self, community no-export &amp; send-community &#8211; GNS3 Lab</title>
		<link>http://www.digitaltut.com/bgp-next-hop-self-community-no-export-send-community-gns3-lab</link>
		<comments>http://www.digitaltut.com/bgp-next-hop-self-community-no-export-send-community-gns3-lab#comments</comments>
		<pubDate>Wed, 29 Feb 2012 15:16:59 +0000</pubDate>
		<dc:creator>digitaltut</dc:creator>
				<category><![CDATA[Basic Labs]]></category>

		<guid isPermaLink="false">http://www.digitaltut.com/?p=364</guid>
		<description><![CDATA[In this GNS3 lab we will learn how to establish neighborship between routers running BGP and use BGP attributes to control how a route is advertised to its neighbors. In this lab I wish to show how to create a basic &#8220;BGP network&#8221; and explain about next-hop-self, community no-export &#38; send-community features in BGP. Below [...]]]></description>
			<content:encoded><![CDATA[<p>In this GNS3 lab we will learn how to establish neighborship between routers running BGP and use BGP attributes to control how a route is advertised to its neighbors. In this lab I wish to show how to create a basic &#8220;BGP network&#8221; and explain about next-hop-self, community no-export &amp; send-community features in BGP. Below is the topology of this lab:</p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_topology.jpg" alt="BGP_community_topology.jpg" width="603" height="262" /></p>
<p>IOS used in this lab: c3640-jk9s-mz.124-16.bin</p>
<p><strong>Objectives of this lab:</strong><br />
 + Task 1: Configure EBGP on AS 1, AS 23, AS 4 and configure IBGP between R2 &amp; R3 (AS23)<br />
 + Task 2: Advertise loopback0 on R1 to R4 and make sure R4 can ping to that loopback interface (AS23 becomes a transit AS)<br />
 + Task 3: Make AS 23 not a transit AS by using the feature &#8220;community no-export&#8221;</p>
<p><span id="more-364"></span></p>
<p><!--adsense--></p>
<p>First we will configure all IP addresses of this lab and turn on all the interfaces: <br class="spacer_" /></p>
<p><strong>Configure IP addresses on all interfaces</strong></p>
<table border="1">
<tbody>
<tr>
<td>R1(config)#interface f0/0<br />
 R1(config-if)#ip address 12.12.12.1 255.255.255.0<br />
 R1(config-if)#no shutdown</td>
<td>R3(config)#interface f0/0<br />
 R3(config-if)#ip address 23.23.23.3 255.255.255.0<br />
 R3(config-if)#no shutdown<br />
 R3(config)#interface f1/0<br />
 R3(config-if)#ip address 34.34.34.3 255.255.255.0<br />
 R3(config-if)#no shutdown</td>
</tr>
<tr>
<td>R2(config)#interface f0/0<br />
 R2(config-if)#ip address 12.12.12.2 255.255.255.0<br />
 R2(config-if)#no shutdown<br />
 R2(config)#interface f1/0<br />
 R2(config-if)#ip address 23.23.23.2 255.255.255.0<br />
 R2(config-if)#no shutdown</td>
<td>R4(config)#interface f0/0<br />
 R4(config-if)#ip address 34.34.34.4 255.255.255.0<br />
 R4(config-if)#no shutdown</td>
</tr>
</tbody>
</table>
<p><strong>Task 1: Configure EBGP &amp; IBGP</strong></p>
<table border="1">
<tbody>
<tr>
<td>R1(config)#router bgp 1<br />
 R1(config-router)#neighbor 12.12.12.2 remote-as 23</td>
<td>R3(config)#router bgp 23<br />
 R3(config-router)#neighbor 23.23.23.3 remote-as 23<br />
 R3(config-router)#neighbor 34.34.34.4 remote-as 4</td>
</tr>
<tr>
<td>R2(config)#router bgp 23<br />
 R2(config-router)#neighbor 12.12.12.1 remote-as 1<br />
 R2(config-router)#neighbor 23.23.23.3 remote-as 23</td>
<td>R4(config)#router bgp 4<br />
 R4(config-router)#neighbor 34.34.34.3 remote-as 23</td>
</tr>
</tbody>
</table>
<p>Now we should check to make sure each BGP speaker (router running BGP) learn about their neighbors with the &#8220;show ip bgp summary&#8221; command:</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_R1_init_show_ip_bgp_summary.jpg" alt="BGP_community_R1_init_show_ip_bgp_summary.jpg" width="643" height="94" /></p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_R2_init_show_ip_bgp_summary.jpg" alt="BGP_community_R2_init_show_ip_bgp_summary.jpg" width="643" height="109" /></p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_R3_init_show_ip_bgp_summary.jpg" alt="BGP_community_R3_init_show_ip_bgp_summary.jpg" width="645" height="110" /></p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_R4_init_show_ip_bgp_summary.jpg" alt="BGP_community_R4_init_show_ip_bgp_summary.jpg" width="645" height="95" /></p>
<p>Note: At this time, the &#8220;show ip bgp&#8221; commands on all routers show nothing and the &#8220;show ip route&#8221; commands only show directly connected networks. For example on R4:</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_R4_show_ip_route.jpg" alt="BGP_community_R4_show_ip_route.jpg" width="630" height="207" /></p>
<p><strong>Task 2: Advertise loopback0 on R1 to R4 and make sure R4 can ping to that loopback interface</strong></p>
<p>First, create loopback 1.1.1.1/24 on R1 and advertise it</p>
<table border="1">
<tbody>
<tr>
<td>R1(config)#interface loopback0<br />
 R1(config-if)#ip address 1.1.1.1 255.255.255.0<br />
 R1(config-if)#exit<br />
 R1(config)#router bgp 1<br />
 R1(config-router)#network 1.1.1.0 mask 255.255.255.0</td>
</tr>
</tbody>
</table>
<p>Now we can see that route in both the routing table and BGP routing table of R2.</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_lo0_R2_show_ip_route.jpg" alt="BGP_community_lo0_R2_show_ip_route.jpg" width="629" height="272" /></p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_lo0_R2_show_ip_bgp.jpg" alt="BGP_community_lo0_R2_show_ip_bgp.jpg" width="637" height="128" /></p>
<p>By the way, let&#8217;s have a look of the output of the &#8220;show ip bgp&#8221; command on R3 at this time</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_lo0_R3_show_ip_bgp.jpg" alt="BGP_community_lo0_R3_show_ip_bgp.jpg" width="637" height="127" /></p>
<p>Please notice the &#8220;Next Hop&#8221; field from the output above. We can see that although the loopback0 of R1 is learned from R2 (so the next hop field should be the fa1/0 interface of R2) but here the &#8220;Next Hop&#8221; field here is an interface on R1 (12.12.12.1). The reason is:<br />
 &#8220;For EBGP, the next hop is always the IP address of the neighbor specified in the neighbor command. For IBGP, the protocol states that the <strong>next hop advertised by EBGP should be carried into IBGP</strong>&#8220;. In this case, the next hop of EBGP (R1 on AS 1) will be installed into BGP of R3.</p>
<p><!--adsense#MiddleContent--></p>
<p>Therefore R3 needs an IGP (like OSPF, EIGRP&#8230;) to reach that EBGP router, if not it will drop all packets destined for network 1.1.1.0/24. In this case no IGP has been configured so a ping to 1.1.1.1 from R3 will surely fail because R3 doesn&#8217;t know how to reach 12.12.12.1.</p>
<p>Also, we can see that R3 can&#8217;t reach 1.1.1.0/24 with the &#8220;show ip bgp 1.1.1.0/24&#8243; command</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_lo0_R3_show_ip_bgp_network1.jpg" alt="BGP_community_lo0_R3_show_ip_bgp_network1.jpg" width="473" height="128" /></p>
<p>This route is &#8220;inaccessible&#8221; so R3 will not advertise this route to R4 -> no network 1.1.1.0/24 is installed in the BGP routing table of R4</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_lo0_R4_show_ip_bgp_empty.jpg" alt="BGP_community_lo0_R4_show_ip_bgp_empty.jpg" width="447" height="51" /></p>
<p>To overcome this problem, we can declare the &#8220;next-hop-self&#8221; on the edge router (R2). With this command, R2 will send its own IP address as the next hop instead of sending the EBGP next hop.</p>
<table border="1">
<tbody>
<tr>
<td>R2(config-router)#neighbor 23.23.23.3 next-hop-self</td>
</tr>
</tbody>
</table>
<p>Now the Next Hop field will be an interface on R2 (23.23.23.2):</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_lo0_R3_show_ip_bgp_next-hop-self.jpg" alt="BGP_community_lo0_R3_show_ip_bgp_next-hop-self.jpg" width="636" height="127" /></p>
<p>And network 1.1.1.0/24 is also installed in the BGP routing table of R4 because the route is now accessible and R3 advertises it to R4</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_lo0_R4_show_ip_bgp.jpg" alt="BGP_community_lo0_R4_show_ip_bgp.jpg" width="636" height="127" /></p>
<p>Notice that although the network 1.1.1.0/24 exists in the BGP routing table but R4 still can&#8217;t ping to it</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_lo0_R4_ping_loopback_fail.jpg" alt="BGP_community_lo0_R4_ping_loopback_fail.jpg" width="517" height="96" /></p>
<p>Check the BGP routing table of R1 we will see that R1 does not know how to reach 34.34.34.0 network -> R1 does not know how to send the &#8220;ping reply&#8221; (ICMP response)  to R4.</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_lo0_R1_show_ip_bgp.jpg" alt="BGP_community_lo0_R1_show_ip_bgp.jpg" width="635" height="128" /></p>
<p>To make a successful ping from R4, we must advertise network 34.34.34.0 on R4.</p>
<table border="1">
<tbody>
<tr>
<td>R4(config-router)#network 34.34.34.0 mask 255.255.255.0</td>
</tr>
</tbody>
</table>
<p>Now R1 has learned about network 34.34.34.0/24</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_lo0_R1_show_ip_bgp_advertised_network34.jpg" alt="BGP_community_lo0_R1_show_ip_bgp_advertised_network34.jpg" width="634" height="142" /></p>
<p>Maybe we can now ping from R4 to loopback0? The answer is still no! Although the ping can reach loopback0 but the reply packets can&#8217;t reach R4 because there is a mistake on the BGP routing table of R2</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_net34_R2_show_ip_bgp.jpg" alt="BGP_community_net34_R2_show_ip_bgp.jpg" width="637" height="146" /></p>
<p>As you can guess, the same problem &#8220;next hop advertised by EBGP should be carried into IBGP&#8221; occurs so we need to use the command:</p>
<table border="1">
<tbody>
<tr>
<td>R3(config-router)#neighbor 23.23.23.2 next-hop-self</td>
</tr>
</tbody>
</table>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_net34_R2_show_ip_bgp_next-hop-self.jpg" alt="BGP_community_net34_R2_show_ip_bgp_next-hop-self.jpg" width="635" height="145" /></p>
<p>Now we can ping from R4 to loopback0 on R1</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_lo0_R4_ping_lo0.jpg" alt="BGP_community_lo0_R4_ping_lo0.jpg" width="578" height="97" /></p>
<p><strong>Task 3: Make AS 23 not a transit AS</strong></p>
<p>This is an important problem in real life. Suppose your company (with R2 &amp; R3 routers) wants the connection to the Internet must be available in any time so your administrators hired two internet lines from two separate ISPs (R1 &amp; R4). But improper configuration can make traffic flow from R1 -> R2 -> R3 -> R4 and your company becomes a transit AS. Surely your company does not want to receive this traffic as it takes much bandwidth of the company. We need to filter out this type of traffic.</p>
<p>The purpose of this task is opposite to task 2. We will make AS 23 not a transit AS by not advertising network 1.1.1.0 to R4. To do this, we will create a route-map for 1.1.1.0/24 and set the &#8220;no-export&#8221; attribute to this route:</p>
<table border="1">
<tbody>
<tr>
<td>
<p>R3(config)#access-list 1 permit 1.1.1.0 0.0.0.255<br />
 R3(config)#route-map NOEXPORT permit 10<br />
 R3(config-route-map)#match ip address 1<br />
 R3(config-route-map)#set community no-export  <br />
 R3(config)#router bgp 23<br />
 R3(config-router)#neighbor 23.23.23.2 route-map NOEXPORT in</p>
</td>
</tr>
</tbody>
</table>
<p>The &#8220;no-export&#8221; means &#8220;do not advertise this route to any EBGP peers&#8221; and this attribute is set to network 1.1.1.0/24 before entering R3 (because we apply this route-map on inbound direction to R3). Therefore R3 will understand &#8220;do not advertise 1.1.1.0/24 to any EBGP neighbor&#8221;, in this case EBGP neighbor is R4.</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_lo0_R3_show_ip_bgp_no-export.jpg" alt="BGP_community_lo0_R3_show_ip_bgp_no-export.jpg" width="644" height="160" /></p>
<p>Also on R4 the 1.1.1.0/24 network disappears.</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_lo0_R4_show_ip_bgp_no_export.jpg" alt="BGP_community_lo0_R4_show_ip_bgp_no_export.jpg" width="639" height="147" /></p>
<p>Another way to achieve the same result as above is configuring a route-map and apply it on the outbound direction of R2 (to R3):</p>
<table border="1">
<tbody>
<tr>
<td>R2(config)#access-list 1 permit 1.1.1.0 0.0.0.255<br />
 R2(config)#route-map NOEXPORT permit 10<br />
 R2(config-route-map)#match ip address 1<br />
 R2(config-route-map)#set community no-export  <br />
 R2(config)#router bgp 23<br />
 R2(config-router)#neighbor 23.23.23.3 route-map NOEXPORT out</td>
</tr>
</tbody>
</table>
<p>For your information, we can use the &#8220;community no-export&#8221; on R1 on outbound direction to achieve the same result but notice you have to add the &#8220;send-community&#8221; feature so that the community attribute on R1 is sent to R2 because even if you set the community attribute on R1, this attribute does not transmit to BGP neighbors by default.</p>
<table border="1">
<tbody>
<tr>
<td>R1(config)#access-list 1 permit 1.1.1.0 0.0.0.255<br />
 R1(config)#route-map NOEXPORT permit 10<br />
 R1(config-route-map)#match ip address 1<br />
 R1(config-route-map)#set community no-export  <br />
 R1(config)#router bgp 1<br />
 R1(config-router)#neighbor 12.12.12.2 route-map NOEXPORT out<br />
 R1(config-router)#neighbor 12.12.12.2 send-community</td>
</tr>
</tbody>
</table>
<p>Now on R2 you will see</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_lo0_R2_show_ip_bgp_no-export.jpg" alt="BGP_community_lo0_R2_show_ip_bgp_no-export.jpg" width="638" height="160" /></p>
<p>Also add &#8220;neighbor &#8230; send-community&#8221; command on R2 to propagate community attribute to R3</p>
<table border="1">
<tbody>
<tr>
<td>R2(config)#router bgp 23<br />
 R2(config-router)#neighbor 23.23.23.3 send-community</td>
</tr>
</tbody>
</table>
<p>Now both R2 &amp; R3 receive community attribute on R1</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_lo0_R3_show_ip_bgp_send-community.jpg" alt="BGP_community_lo0_R3_show_ip_bgp_send-community.jpg" width="637" height="145" /></p>
<p>R3 knows network 1.1.1.0/24 is not allowed to advertise to R4 (R4 is an EBGP) so R4 does not have this route in its BGP routing table (note: we don&#8217;t need to set the &#8220;send-community&#8221; on R3 because R3 understands this route should &#8220;not be advertised to any peer&#8221;).<br class="spacer_" /></p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/BGP_community_lo0_R4_show_ip_bgp-send-community.jpg" alt="BGP_community_lo0_R4_show_ip_bgp-send-community.jpg" width="634" height="145" /></p>
<p>This is the end of this lab. I don&#8217;t upload the configuration files because I wish you to do it by yourself (I am sorry).</p>
<p><!--adsense#AfterContent--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltut.com/bgp-next-hop-self-community-no-export-send-community-gns3-lab/feed</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>EIGRP OSPF Redistribution Sim</title>
		<link>http://www.digitaltut.com/route-eigrp-ospf-redistribution-sim</link>
		<comments>http://www.digitaltut.com/route-eigrp-ospf-redistribution-sim#comments</comments>
		<pubDate>Sun, 26 Feb 2012 20:19:00 +0000</pubDate>
		<dc:creator>digitaltut</dc:creator>
				<category><![CDATA[LabSim]]></category>

		<guid isPermaLink="false">http://www.digitaltut.com/?p=26</guid>
		<description><![CDATA[Question: (Hope someone will contribute the detailed requirement of this sim!) Some information I have gathered so far: R2 is an ASBR for EIGRP 100 and OSPF AREA 24 R3 is an ASBR for EIGRP 100 and OSPF AREA 34 [note: so there are TWO separate areas on TWO separate ASBRS thus you need to [...]]]></description>
			<content:encoded><![CDATA[<p><span class="ccnaquestionsnumber">Question:</span> (Hope someone will contribute the detailed requirement of this sim!)</p>
<p>Some information I have gathered so far:</p>
<p>R2 is an ASBR for EIGRP 100 and OSPF AREA 24</p>
<p>R3 is an ASBR for EIGRP 100 and OSPF AREA 34</p>
<p>[note: so there are TWO separate areas on TWO separate ASBRS</p>
<p>thus you need to do redistribution on R2 and R3</p>
<p>R1 is ONLY in EIGRP 100, and is THE ONLY router you can ping from. R4 has a loopback interface that must be pinged from R1.</p>
<p>R4 is running OSPF and has redundant link to EIGRP network over R3 router.</p>
<p>The requirement of this sim is traffic from R1 should go to the most optimal route to reach 172.16.100.0/24 network</p>
<p>Notice: You should make a ping from R1 to 172.16.100.1 network to make sure everything is working correctly.</p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/ROUTE/LabSim/OSPF_EIGRP_Redistribution.jpg" alt="OSPF_EIGRP_Redistribution.jpg" width="600" height="386" border="0" /></p>
<p class="ccnaexplanation">Answer and Explanation:</p>
<p><!--adsense--></p>
<p><span id="more-26"></span>Thanks to <span class="pinkandbold">POONAM</span> who send us the topology and configuration. She got 100% on EIGRP-OSPF lab so this solution is perfect! Please say thank to him and others who contribute this lab-sim!</p>
<p>SOLUTION from <span class="pinkandbold">POONAM</span></p>
<p>First we need to find out 5 parameters (Bandwidth, Delay, Reliability, Load, MTU) of the s0/0/0 interface (the interface of R2 connected to R4) for redistribution :</p>
<p><span class="blueandbold">R2#</span><span class="pinkandbold">show interface s0/0/0 </span></p>
<p>Write down these 5 parameters, notice that we have to divide the Delay by 10 because the metric unit is in tens of microsecond. For example, we get Bandwidth=1544 Kbit, Delay=20000 us, Reliability=255, Load=1, MTU=1500 bytes then we would redistribute as follows:</p>
<p><span class="blueandbold">R2#</span><span class="pinkandbold">config terminal</span></p>
<p><span class="blueandbold">R2(config)#</span> <span class="pinkandbold">router ospf 1</span></p>
<p><span class="blueandbold">R2(config-router)#</span> <span class="pinkandbold">redistribute eigrp 100 metric-type 1 subnets</span></p>
<p><span class="blueandbold">R2(config-router)#</span><span class="pinkandbold">exit</span></p>
<p><span class="blueandbold">R2(config-router)#</span><span class="pinkandbold">router eigrp 100</span></p>
<p><span class="blueandbold">R2(config-router)#</span><span class="pinkandbold">redistribute ospf 1 metric 1544 2000 255 1 1500</span><strong></strong></p>
<p>&nbsp;</p>
<p>(Notice: In fact, these parameters are just used for reference and we can use other parameters with no problem. Also, a candidate said that the simulator didn&#8217;t accept the Bandwidth of 1544; in that case, we can use a lower value, like 128.</p>
<p>If the delay is 20000us then we need to divide it by 10, that is 20000 / 10 = 2000)</p>
<p><strong>Note</strong>: &#8220;usec&#8221; here does not mean microsecond (which is 1/1000 milliseconds) but means millisecond. In short usec = msec. I don&#8217;t know why they use the word &#8220;usec&#8221; here but just think it is &#8220;msec&#8221; (According to this link: <a href="http://www.cisco.com/en/US/tech/tk365/technologies_white_paper09186a0080094cb7.shtml#eigrpmetrics" target="_blank">http://www.cisco.com/en/US/tech/tk365/technologies_white_paper09186a0080094cb7.shtml#eigrpmetrics</a>: &#8220;The delay as shown in the <strong>show ip eigrp topology</strong> or <strong>show interface</strong> commands is in microseconds&#8221;)</p>
<p>For R3 we use the show interface fa0/0 to get 5 parameters too</p>
<p><span class="blueandbold">R3#</span><span class="pinkandbold">show interface fa0/0 </span></p>
<p>For example we get Bandwidth=10000 Kbit, Delay=1000 us, Reliability=255, Load=1, MTU=1500 bytes</p>
<p><span class="blueandbold">R3#</span><span class="pinkandbold">config terminal</span></p>
<p><span class="blueandbold">R3(config)#</span><span class="pinkandbold">router ospf 1</span></p>
<p><span class="blueandbold">R3(config-router)#</span><span class="pinkandbold">redistribute eigrp 100 metric-type 1 subnets</span></p>
<p><span class="blueandbold">R3(config)#</span><span class="pinkandbold">exit</span></p>
<p><span class="blueandbold">R3(config-router)#</span><span class="pinkandbold">router eigrp 100</span></p>
<p><span class="blueandbold">R3(config-router)#</span><span class="pinkandbold">redistribute ospf 1 metric 10000 100 255 1 1500 </span></p>
<p>Finally you should try to &#8220;show ip route&#8221; to see the 172.16.100.1 network (the network behind R4) in the routing table of R1 and make a ping from R1 to this network.</p>
<p>Note: If the link between R2 and R3 is FastEthernet link, we must put the command below under EIGRP process to make traffic from R1 to go through R3 (R1 -&gt; R2 -&gt; R3 -&gt; R4), which is better than R1 -&gt; R2 -&gt; R4.</p>
<p><span class="blueandbold">R2(config-router)#</span> <span class="pinkandbold">distance eigrp 90 105</span></p>
<p>This command sets the Administrative Distance of all EIGRP internal routes to 90 and all EIGRP external routes to 105, which is smaller than the Administrative Distance of OSPF (110) -&gt; the link between R2 &amp; R3 will be preferred to the serial link between R2 &amp; R4.</p>
<p>Maybe the &#8220;copy running-config startup-config&#8221; command will not work in this lab so don&#8217;t worry, just skip it.</p>
<p><strong>Note</strong>: Please check the OSPF process numbers first before typing these commands. Maybe they are not &#8220;ospf 1&#8243; like above.</p>
<p>If you want to have a closer look at this sim and understand more about the &#8220;distance eigrp&#8221; command, please read my<a href="http://www.digitaltut.com/ospf-eigrp-redistribute-lab" target="_blank"> OSPF EIGRP Redistribute Lab in GNS3</a>.</p>
<p>&nbsp;</p>
<p>Other lab-sims on this site:</p>
<p><a href="http://www.digitaltut.com/route-eigrp-stub-sim" target="_blank">EIGRP Stub Sim</a></p>
<p><a href="http://www.digitaltut.com/route-ospf-sim" target="_blank">OSPF Sim </a></p>
<p><a href="http://www.digitaltut.com/route-ipv6-ospf-virtual-link-sim" target="_blank">IPv6 OSPF Virtual Link Sim</a></p>
<p><a href="http://www.digitaltut.com/route-eigrp-simlet" target="_blank">EIGRP Simlet</a></p>
<p><a href="http://www.digitaltut.com/route-policy-based-routing-sim" target="_blank">Policy Based Routing Sim</a></p>
<p><!--adsense#AfterContent--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltut.com/route-eigrp-ospf-redistribution-sim/feed</wfw:commentRss>
		<slash:comments>1782</slash:comments>
		</item>
		<item>
		<title>Policy Based Routing Sim</title>
		<link>http://www.digitaltut.com/route-policy-based-routing-sim</link>
		<comments>http://www.digitaltut.com/route-policy-based-routing-sim#comments</comments>
		<pubDate>Mon, 20 Feb 2012 08:40:45 +0000</pubDate>
		<dc:creator>digitaltut</dc:creator>
				<category><![CDATA[LabSim]]></category>

		<guid isPermaLink="false">http://www.digitaltut.com/?p=28</guid>
		<description><![CDATA[Question Company Acan has two links which can take it to the Internet. The company policy demands that you use web traffic to be forwarded only to Frame Relay link if available and other traffic can go through any links. No static or default routing is allowed. &#160; Answer and Explanation: Notice: The answer and [...]]]></description>
			<content:encoded><![CDATA[<p class="ccnaquestionsnumber">Question</p>
<p>Company Acan has two links which can take it to the Internet. The company policy demands that you use web traffic to be forwarded only to Frame Relay link if available and other traffic can go through any links. No static or default routing is allowed.</p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/ROUTE/LabSim/BGP_Policy_Based_Routing_Sim.jpg" alt="BGP_Policy_Based_Routing_Sim.jpg" width="680" height="350" border="0" /></p>
<p>&nbsp;</p>
<p class="ccnaexplanation">Answer and Explanation:</p>
<p><!--adsense--></p>
<p><span id="more-28"></span><strong>Notice: The answer and explanation below are from</strong> <span class="pinkandbold">PeterPan</span> and <span class="pinkandbold">Helper</span>.Please say thank to them!</p>
<p>All the HTTP traffic from the EIGRP Network should go through Frame Relay link if available and all the other traffic should go through either link.<br />
 The only router you are able to administrate is the Border Router, from the EIGRP Network you may only send HTTP traffic. As the other people mentioned, actually it is not a BGP lab. You are not able to execute the command &#8220;router bgp 65001&#8243;</p>
<p><strong>1) Access list that catches the HTTP traffic:</strong><br />
 <span class="blueandbold">BorderRouter#</span><span class="pinkandbold">access-list 101 permit tcp any any eq www</span></p>
<p>Note that the server was not directly connected to the Border Router. There were a lot of EIGRP routes on it. In the real exam you do not know the exact IP address of the server in the EIGRP network so we have to use the source as &#8220;any&#8221; to catch all the source addresses.</p>
<p><strong>2) Route map that sets the next hop address to be ISP1 and permits the rest of the traffic:</strong><br />
 <span class="blueandbold">BorderRouter(config)#</span><span class="pinkandbold">route-map pbr permit 10</span><strong><br />
 </strong><span class="blueandbold">BorderRouter(config-route-map)#</span><span class="pinkandbold">match ip address 101</span><strong><br />
 </strong><span class="blueandbold">BorderRouter(config-route-map)#</span><span class="pinkandbold">set ip next-hop 10.1.101.1</span><strong><br />
 </strong><span class="blueandbold">BorderRouter(config-route-map)#</span><span class="pinkandbold">exit</span></p>
<p>(Update: We don&#8217;t need the last command <strong>route-map pbr permit 20</strong> to permit other traffic according to Cisco:</p>
<p>&#8220;If the packets do not meet any of the defined match criteria (that is, if the packets fall off the end of a route map), then those packets are routed through the normal destination-based routing process. If it is desired not to revert to normal forwarding and to drop the packets that do not match the specified criteria, then interface Null 0 should be specified as the last interface in the list by using the set clause.&#8221;</p>
<p>Reference: <a href="http://www.cisco.com/en/US/products/ps6599/products_white_paper09186a00800a4409.shtml" target="_blank">http://www.cisco.com/en/US/products/ps6599/products_white_paper09186a00800a4409.shtml</a>)</p>
<p><strong>3) Apply the route-map on the interface to the server in the EIGRP Network:</strong><br />
 <span class="blueandbold">BorderRouter(config-route-map)#</span><span class="pinkandbold">exit</span><br />
 <span class="blueandbold">BorderRouter(config)#</span><span class="pinkandbold">int fa0/0</span><strong><br />
 </strong><span class="blueandbold">BorderRouter(config-if)#</span><span class="pinkandbold">ip policy route-map pbr</span><strong><br />
 </strong><span class="blueandbold">BorderRouter(config-if)#</span><span class="pinkandbold">exit</span><br />
 <span class="blueandbold">BorderRouter(config)#</span><span class="pinkandbold">exit</span></p>
<p>4) There is a &#8220;Host for Testing&#8221;, click on this host to open a box in which there is a button named &#8220;Generate HTTP traffic&#8221;. Click on this button to generate some packets for HTTP traffic. Jump back to the BorderRouter and type the command &#8220;show route-map&#8221;.</p>
<p><span class="blueandbold">BorderRouter#</span><span class="pinkandbold">show route-map</span></p>
<p>In the output you will see the line &#8220;Policy routing matches: 9 packets&#8230;&#8221;. It means that the route-map we configured is working properly.</p>
<p>Other lab-sims on this site:</p>
<p><a href="http://www.digitaltut.com/route-eigrp-stub-sim" target="_blank">EIGRP Stub Sim</a></p>
<p><a href="http://www.digitaltut.com/route-ospf-sim" target="_blank">OSPF Sim </a></p>
<p><a href="http://www.digitaltut.com/route-eigrp-ospf-redistribution-sim" target="_blank">EIGRP OSPF Redistribution Sim</a></p>
<p><a href="http://www.digitaltut.com/route-ipv6-ospf-virtual-link-sim" target="_blank">IPv6 OSPF Virtual Link Sim</a></p>
<p><a href="http://www.digitaltut.com/route-eigrp-simlet" target="_blank">EIGRP Simlet</a></p>
<p><!--adsense#AfterContent--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltut.com/route-policy-based-routing-sim/feed</wfw:commentRss>
		<slash:comments>719</slash:comments>
		</item>
		<item>
		<title>IPv6 OSPF Virtual Link Sim</title>
		<link>http://www.digitaltut.com/route-ipv6-ospf-virtual-link-sim</link>
		<comments>http://www.digitaltut.com/route-ipv6-ospf-virtual-link-sim#comments</comments>
		<pubDate>Wed, 15 Feb 2012 08:35:27 +0000</pubDate>
		<dc:creator>digitaltut</dc:creator>
				<category><![CDATA[LabSim]]></category>

		<guid isPermaLink="false">http://www.digitaltut.com/?p=32</guid>
		<description><![CDATA[Question Acme is a small export company that has an existing enterprise network that is running IPv6 OSPFv3. Currently OSPF is configured on all routers. However, R4&#8242;s loopback address (FEC0:4:4) cannot be seen in R1&#8242;s IPv6 routing table. You are tasked with identifying the cause of this fault and implementing the needed corrective actions that [...]]]></description>
			<content:encoded><![CDATA[<p class="ccnaquestionsnumber">Question</p>
<p>Acme is a small export company that has an existing enterprise network that is running IPv6 OSPFv3. Currently OSPF is configured on all routers. However, R4&#8242;s loopback address (FEC0:4:4) cannot be seen in R1&#8242;s IPv6 routing table. You are tasked with identifying the cause of this fault and implementing the needed corrective actions that uses OSPF features and does no change the current area assignments. You will know that you have corrected the fault when R4&#8242;s loopback address (FEC0:4:4) can be seen in the routing table of R1.</p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/ROUTE/LabSim/OSPFv3_IPv6_VirtualLink.jpg" border="0" alt="OSPFv3_IPv6_VirtualLink" width="604" height="350" /></p>
<p><strong>Special Note:</strong> To gain the maximum number of points you must remove all incorrect or unneeded configuration statements related to this issue.</p>
<p class="ccnaexplanation">Answer and Explanation:</p>
<p><!--adsense--></p>
<p><span id="more-32"></span>To troubleshoot the problem, first issue the <span class="pinkandbold">show running-config</span> on all of 4 routers. Pay more attention to the outputs of routers R2 and R3</p>
<p>The output of the &#8220;show running-config&#8221; command of R2:</p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/ROUTE/LabSim/OSPFIPv6v3VirtualLink_show_run_R2.jpg" border="0" alt="OSPFIPv6v3VirtualLink_show_run_R2" width="167" height="140" /></p>
<p>The output of the &#8220;show running-config&#8221; command of R3:</p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/ROUTE/LabSim/OSPFIPv6v3VirtualLink_show_run_R3.jpg" border="0" alt="OSPFIPv6v3VirtualLink_show_run_R3" width="182" height="160" /></p>
<p>We knew that all areas<span class="content"> in an Open Shortest Path First (OSPF) autonomous system must 	 be physically connected to the backbone area (Area 0). In some cases, where this is not possible,we can use a virtual link to connect to the backbone through a non-backbone area. </span><span class="content">The area through which you configure the virtual link is known as a <em>transit area</em>. In this case, the area 11 will become the transit area. Therefore, routers R2 and R3 must be configured with the <span class="pinkandbold">area</span> <em>area-id</em> <span class="pinkandbold">virtual-link</span> <em>neighbor-router-id</em> </span> command.</p>
<p>+ Configure virtual link on R2 (from the first output above, we learned that the OSPF process ID of R2 is 1):</p>
<p><span class="blueandbold">R2></span><span class="pinkandbold">enable</span><br />
 <span class="blueandbold">R2#</span><span class="pinkandbold">configure terminal</span><br />
 <span class="blueandbold">R2(config)#</span><span class="pinkandbold">ipv6 router ospf 1</span><br />
 <span class="blueandbold">R2(config-rtr)#</span><span class="pinkandbold">area 11 virtual-link 3.3.3.3</span></p>
<p>(Notice that we have to use neighbor router-id 3.3.3.3, not R2&#8242;s router-id 2.2.2.2)</p>
<p>+ Configure virtual link on R3 (from the second output above, we learned that the OSPF process ID of R3 is 1 and we have to disable the wrong configuration of &#8220;area 54 virtual-link 4.4.4.4&#8243;):</p>
<p><span class="blueandbold">R3></span><span class="pinkandbold">enable</span><br />
 <span class="blueandbold">R3#</span><span class="pinkandbold">configure terminal</span><br />
 <span class="blueandbold">R3(config)#</span><span class="pinkandbold">ipv6 router ospf 1</span><br />
 <span class="blueandbold">R3(config-rtr)#</span><span class="pinkandbold">no area 54 virtual-link 4.4.4.4 </span><br />
 <span class="blueandbold">R3(config-rtr)#</span><span class="pinkandbold">area 11 virtual-link 2.2.2.2 </span></p>
<p>We should check the configuration on R4:</p>
<p><span class="blueandbold">R4></span><span class="pinkandbold">enable<br />
 </span><span class="blueandbold">R4#</span><span class="pinkandbold">show running-config</span></p>
<p>You will see a wrongly configured virtual-link command. To get full mark we have to disable this command:</p>
<p><span class="blueandbold">R4#</span><span class="pinkandbold">configure terminal</span><br />
 <span class="blueandbold">R4(config)#</span><span class="pinkandbold">ipv6 router ospf 1</span><br />
 <span class="blueandbold">R4(config-rtr)#</span><span class="pinkandbold">no area 54 virtual-link 3.3.3.3</span></p>
<p>After finishing the configuration don&#8217;t forget to ping between R1 and R4 to make sure they work well!</p>
<p>Now all the configuration was done. It is weird that we can&#8217;t ping the IPv6 loopback interface of R4 (with the ping or ping ipv6 command) but we can check by using the command <span class="pinkandbold">show ipv6 route</span> on R1</p>
<p>The <strong>copying running-config startup-config</strong> command will not work but don&#8217;t worry, just skip it.</p>
<p>Notice: If you issue the command &#8220;show running-config&#8221; on R1, you will see these two lines:</p>
<p><strong>passive-interface default</strong><br />
 <strong>no passive-interface fa0/0</strong> (fa0/0 is the interface connecting with R2)</p>
<p>These two lines make all the interfaces of R1 become passive interfaces except interface fa0/0. They are correctly configured so don&#8217;t try to disable them.</p>
<p><!--adsense#MiddleContent--></p>
<p><br class="spacer_" /></p>
<p>Other lab-sims on this site:</p>
<p><a href="http://www.digitaltut.com/route-eigrp-stub-sim" target="_blank">EIGRP Stub Sim</a></p>
<p><a href="http://www.digitaltut.com/route-ospf-sim" target="_blank">OSPF  Sim </a></p>
<p><a href="http://www.digitaltut.com/route-eigrp-ospf-redistribution-sim" target="_blank">EIGRP  OSPF Redistribution Sim</a></p>
<p><a href="http://www.digitaltut.com/route-eigrp-simlet" target="_blank">EIGRP   Simlet</a><br />
 <a href="http://www.digitaltut.com/route-policy-based-routing-sim" target="_blank">Policy  Based Routing Sim</a></p>
<p><!--adsense#AfterContent--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltut.com/route-ipv6-ospf-virtual-link-sim/feed</wfw:commentRss>
		<slash:comments>420</slash:comments>
		</item>
		<item>
		<title>EIGRP Stub Sim</title>
		<link>http://www.digitaltut.com/route-eigrp-stub-sim</link>
		<comments>http://www.digitaltut.com/route-eigrp-stub-sim#comments</comments>
		<pubDate>Fri, 10 Feb 2012 08:24:30 +0000</pubDate>
		<dc:creator>digitaltut</dc:creator>
				<category><![CDATA[LabSim]]></category>

		<guid isPermaLink="false">http://www.digitaltut.com/?p=30</guid>
		<description><![CDATA[Question By increasing the first distant office, JS manufactures has extended their business. They configured the remote office router (R3) from which they can reach all Corporate subnets. In order to raise network stableness and lower the memory usage and broadband utilization to R3, JS manufactures makes use of route summarization together with the EIGRP [...]]]></description>
			<content:encoded><![CDATA[<p><span class="ccnaquestionsnumber">Question</span></p>
<p>By increasing the first distant office, JS manufactures has extended their business. They configured the remote office router (R3) from which they can reach all Corporate subnets. In order to raise network stableness and lower the memory usage and broadband utilization to R3, JS manufactures makes use of route summarization together with the EIGRP Stub Routing feature. Another network engineer is responsible for the implementing of this solution. However, in the process of configuring EIGRP stub routing connectivity with the remote network devices off of R3 has been missing.</p>
<div style="text-align: center;"><img src="http://www.digitaltut.com/images/ROUTE/LabSim/EIGRPStubSim.jpg" border="0" alt="EIGRPStubSim" width="470" height="250" /></div>
<p>Presently JS has configured EIGRP on all routers in the network R2, R3, and R4. Your duty is to find and solve the connectivity failure problem with the remote office router R3. You should then configure route summarization only to the distant office router R3 to complete the task after the problem has been solved.</p>
<p>The success of pings from R4 to the R3 LAN interface proves that the fault has been corrected and the R3 IP routing table only contains two 10.0.0.0 subnets.</p>
<p class="ccnaexplanation">Answer and Explanation:</p>
<p><span id="more-30"></span></p>
<p><!--adsense--></p>
<p>First we have to figure out why R3 and R4 can not communicate with each other. Use the <span class="pinkandbold">show running-config</span> command on router R3</p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/ROUTE/LabSim/EIGRPStubSim_show_running_config_R3.jpg" border="0" alt="EIGRPStubSim_show_running_config_R3" width="170" height="256" /></p>
<p>Notice that R3 is configured as a stub receive-only router. The <strong>receive-only</strong> keyword will restrict the router from sharing any of its routes with any other router in that EIGRP autonomous system. This keyword will also prevent any type of route from being sent.</p>
<p>Therefore we will remove this command and replace it with the <span class="pinkandbold">eigrp stub</span> command:</p>
<p><span class="blueandbold">R3#</span><span class="pinkandbold">configure terminal</span><br />
 <span class="blueandbold">R3(config)#</span><span class="pinkandbold">router eigrp 123</span><br />
 <span class="blueandbold">R3(config-router)#</span><span class="pinkandbold">no eigrp stub receive-only</span><br />
 <span class="blueandbold">R3(config-router)#</span><span class="pinkandbold">eigrp stub<br />
 </span><span class="blueandbold">R3(config-router)#</span><span class="pinkandbold">end</span></p>
<p>Now R3 will send updates containing its connected and summary routes to other routers. Notice that the <strong>eigrp stub</strong> command equals to the <strong>eigrp stub connected summary</strong> because the<strong> connected</strong> and <strong>summary </strong>options are enabled by default.</p>
<p>Next we will configure router R3 so that it has only 2 subnets of 10.0.0.0 network. Use the<span class="pinkandbold"> show ip route</span> command on R3 to view its routing table</p>
<p><span class="blueandbold">R3#</span><span class="pinkandbold">show ip route</span></p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/ROUTE/LabSim/EIGRPStubSim_show_ip_route_R3_no-summary.jpg" border="0" alt="EIGRPStubSim_show_ip_route_R3_no-summary.jpg" width="405" height="384" /></p>
<p><br class="spacer_" /></p>
<p>Because we want the routing table of R3 only have 2 subnets so we have to summary sub-networks at the interface which is connected with R3, the s0/0 interface of R4.</p>
<p>There is one interesting thing about the output of the <strong>show ip route</strong> shown above: the <strong>10.2.3.0/24</strong>, which is a directly connected network of R3. We can&#8217;t get rid of it in the routing table no matter what technique we use to summary the networks. Therefore, to make the routing table of R3 has only 2 subnets we have to summary other subnets into one subnet.</p>
<p>In the output if we don&#8217;t see the summary line (like 10.0.0.0/8 is a summary&#8230;) then we should use the command ip summary-address eigrp 123 10.2.0.0 255.255.0.0 so that all the ping can work well.</p>
<p>In conclusion, we will use the <span class="pinkandbold">ip summary-address eigrp 123 10.2.0.0 255.255.0.0</span> at the interface s0/0 of R4 to summary.</p>
<p><span class="blueandbold">R4></span><span class="pinkandbold">enable</span><br />
 <span class="blueandbold">R4#</span><span class="pinkandbold">configure terminal</span><br />
 <span class="blueandbold">R4(config)#</span><span class="pinkandbold">interface s0/0</span><br />
 <span class="blueandbold">R4(config-if)#</span><span class="pinkandbold">ip summary-address eigrp 123 10.2.0.0 255.255.0.0</span></p>
<p>Now we jump back to R3 and use the <span class="pinkandbold">show ip route</span> command to verify the effect, the output is shown below:</p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/ROUTE/LabSim/EIGRPStubSim_show_ip_route_R3_final_no_summary.jpg" border="0" alt="EIGRPStubSim_show_ip_route_R3_final_no_summary.jpg" /></p>
<p>(But please notice that the ip addresses and the subnet masks in your real exam might be different so you might use different ones to solve this question)</p>
<p>But in your real exam, if you see the line &#8220;10.0.0.0/8 is a summary,&#8230;.Null0&#8243; then you need to summary using the network 10.0.0.0/8 with the command &#8220;ip summary-address eigrp 123 10.0.0.0 255.0.0.0&#8243; . This configuration is less optimize than the first but it summaries into 2 subnets as the question requires (maybe you will not see this case, don&#8217;t worry!).</p>
<p>The command &#8220;copy running-config startup-config&#8221; will not work so try using this command; just skip if it doesn&#8217;t work.</p>
<p><!--adsense#MiddleContent--></p>
<p><br class="spacer_" /></p>
<p>Other lab-sims on this site:</p>
<p><a href="http://www.digitaltut.com/route-ospf-sim" target="_blank">OSPF  Sim </a></p>
<p><a href="http://www.digitaltut.com/route-eigrp-ospf-redistribution-sim" target="_blank">EIGRP  OSPF Redistribution Sim</a></p>
<p><a href="http://www.digitaltut.com/route-ipv6-ospf-virtual-link-sim" target="_blank">IPv6  OSPF Virtual Link Sim</a></p>
<p><a href="http://www.digitaltut.com/route-eigrp-simlet" target="_blank">EIGRP   Simlet</a><br />
 <a href="http://www.digitaltut.com/route-policy-based-routing-sim" target="_blank">Policy  Based Routing Sim</a></p>
<p><!--adsense#AfterContent--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltut.com/route-eigrp-stub-sim/feed</wfw:commentRss>
		<slash:comments>351</slash:comments>
		</item>
		<item>
		<title>OSPF Sim</title>
		<link>http://www.digitaltut.com/route-ospf-sim</link>
		<comments>http://www.digitaltut.com/route-ospf-sim#comments</comments>
		<pubDate>Sun, 05 Feb 2012 08:20:45 +0000</pubDate>
		<dc:creator>digitaltut</dc:creator>
				<category><![CDATA[LabSim]]></category>

		<guid isPermaLink="false">http://www.digitaltut.com/?p=84</guid>
		<description><![CDATA[Question OSPF is configured on routers Amani and Lynaic. Amani&#8217;s S0/0 interface and Lynaic&#8217;s S0/1 interface are in Area 0. Lynaic&#8217;s Loopback0 interface is in Area 2. Your task is to configure the following: Portland&#8217;s S0/0 interface in Area 1 Amani&#8217;s S0/1 interface in Area 1 Use the appropriate mask such that ONLY Portland&#8217;s S0/0 [...]]]></description>
			<content:encoded><![CDATA[<p><span class="ccnaquestionsnumber">Question</span></p>
<p>OSPF is configured on routers Amani and Lynaic. Amani&#8217;s S0/0 interface and Lynaic&#8217;s S0/1 interface are in Area 0. Lynaic&#8217;s Loopback0 interface is in Area 2.</p>
<div style="text-align: center;"><img style="border: 0pt none;" src="http://www.digitaltut.com/images/ROUTE/LabSim/OSPFSim.jpg" alt="OSPFSim" /></div>
<div>
<p>Your task is to configure the following:</p>
<p><strong>Portland&#8217;s S0/0 interface in Area 1<br />
 Amani&#8217;s S0/1 interface in Area 1<br />
 Use the appropriate mask such that ONLY Portland&#8217;s S0/0 and Amnani&#8217;s S0/1 could be in Area 1.<br />
 Area 1 should not receive any external or inter-area routes (except the default route).</strong></p>
</div>
<p class="ccnaexplanation">Answer and Explanation:</p>
<p><span id="more-84"></span></p>
<p><!--adsense--></p>
<p>First, we configure Portland&#8217;s S0/0 interface so that it belongs to Area 1. So, we have to find out which sub-network the IP address 192.168.4.5/30 (the IP of interface S0/0 of Portland) belongs to. This address belongs to a subnetwork which has:</p>
<p><span class="blueandbold">Increment:</span> 4 (/30 = 255.255.255.252 or 1111 1111.1111 1111.1111 1111.1111 1<strong>1</strong>00)<br />
 <span class="blueandbold">Network address:</span> 192.168.4.4 (because 4 = 4 * 1 and 4 &lt; 5)<br />
 <span class="blueandbold">Broadcast address:</span> 192.168.4.7 (because 7 = 4 + 4 &#8211; 1) (It is not necessary to find out the broadcast address but we should know it)</p>
<p>The question requires that only Portland&#8217;s S0/0 and Amani&#8217;s S0/1 could be in Area 1, therefore we must use a wildcard of 0.0.0.3 (this wildcard is equivalent with a subnet mask of /30) so that there are only 2 IP addresses can participate in area 1 (they are 192.168.4.5 &amp; 192.168.4.6). The full command we use here is <span class="pinkandbold">network 192.168.4.4 0.0.0.3 area 1</span></p>
<p>The question also requires that &#8220;Area 1 should not receive any external or inter-area routes (except the default route)&#8221;. Recall that if we don&#8217;t want the router to receive external routes, we have to stop LSA Type 5. And if we don&#8217;t want to receive inter-area routes, we have to stop LSA Type 3 and Type 4. <strong>Therefore we have to configure area 1 as a totally stubby area</strong>. For your information, here is the definition of a totally stubby area:</p>
<p>&#8220;<strong>Totally stubb area</strong> &#8211; This area does not accept summary LSAs from other areas (types 3 or 4) or external summary LSAs (Type 5). Types 3,4 and 5 LSAs are replaced by the Area Border Router(ABR) with a default router. Totally stubby areas protect internal routers by minimizing the routing table and summarizing everything outside the area with a default route.&#8221; (CCNP BSCI Official Exam Certification Guide, Fourth Edition)</p>
<p>In conclusion, we have to configure area 1 as a totally stubby area. We do that by configuring Portland as stub and configuring Amani (ABR router) as a stub + &#8220;no-summary&#8221;suffix.</p>
<p><span class="ccnaexplanation">+ Configure Portland router as a stub: </span></p>
<p><span class="blueandbold">Portland#</span><span class="pinkandbold">configure terminal</span><br />
 <span class="blueandbold">Portland(config)#</span><span class="pinkandbold">router ospf 1</span></p>
<p>Allow network 192.168.4.4/30 to join Area 1, notice that you have to convert subnet mask into wildcard mask:</p>
<p><span class="blueandbold">Portland(config-router)#</span><span class="pinkandbold">network 192.168.4.4 0.0.0.3 area 1</span></p>
<p>Configure Portland as a stub:</p>
<p><span class="blueandbold">Portland(config-router)#</span><span class="pinkandbold">area 1 stub</span></p>
<p><span class="blueandbold">Portland(config-router)#</span><span class="pinkandbold">end</span><br />
 <span class="blueandbold">Portland#</span><span class="pinkandbold">copy running-config startup-config</span></p>
<p class="ccnaexplanation">+ Configure Amani router as a &#8220;totally stub&#8221;:</p>
<p><span class="blueandbold">Amani#</span><span class="pinkandbold">configure terminal</span><br />
 <span class="blueandbold">Amani(config)#</span><span class="pinkandbold">router ospf 1</span><br />
 <span class="blueandbold">Amani(config-router)#</span><span class="pinkandbold">network 192.168.4.4 0.0.0.3 area 1</span></p>
<p>Make area 1 become a totally stubby area, notice that we can only use this command on ABR router:</p>
<p><span class="blueandbold">Amani(config-router)#</span><span class="pinkandbold">area 1 stub no-summary<br />
 </span><br />
 <span class="blueandbold">Amani(config-router)#</span><span class="pinkandbold">end</span><br />
 <span class="blueandbold">Amani#</span><span class="pinkandbold">copy running-config startup-config</span></p>
<p><span style="text-decoration: underline;"><strong>Note:</strong></span> Make sure to check the OSPF process ID before typing your configuration. Maybe it is not OSPF process 1 like the configuration above.</p>
<p><!--adsense#MiddleContent--></p>
<p>&nbsp;</p>
<p>Other lab-sims on this site:</p>
<p><a href="http://www.digitaltut.com/route-eigrp-stub-sim" target="_blank">EIGRP Stub Sim</a></p>
<p><a href="http://www.digitaltut.com/route-eigrp-ospf-redistribution-sim" target="_blank">EIGRP OSPF Redistribution Sim</a></p>
<p><a href="http://www.digitaltut.com/route-ipv6-ospf-virtual-link-sim" target="_blank">IPv6 OSPF Virtual Link Sim</a></p>
<p><a href="http://www.digitaltut.com/route-eigrp-simlet" target="_blank">EIGRP Simlet</a><br />
 <a href="http://www.digitaltut.com/route-policy-based-routing-sim" target="_blank">Policy Based Routing Sim</a></p>
<p>&nbsp;</p>
<p><!--adsense#AfterContent--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltut.com/route-ospf-sim/feed</wfw:commentRss>
		<slash:comments>699</slash:comments>
		</item>
		<item>
		<title>Redistribute EIGRP and OSPF &#8211; GNS3 Lab</title>
		<link>http://www.digitaltut.com/redistribute-eigrp-and-ospf-gns3-lab</link>
		<comments>http://www.digitaltut.com/redistribute-eigrp-and-ospf-gns3-lab#comments</comments>
		<pubDate>Wed, 18 Jan 2012 06:32:34 +0000</pubDate>
		<dc:creator>digitaltut</dc:creator>
				<category><![CDATA[Basic Labs]]></category>

		<guid isPermaLink="false">http://www.digitaltut.com/?p=347</guid>
		<description><![CDATA[In this GNS3 lab we will learn how to redistribute from EIGRP into OSPF and vice versa. Below is the topology used in this lab: First we assign IP addresses to all interfaces on the routers. Notice the 4th octet of the IP address of each router has the same value of the name of [...]]]></description>
			<content:encoded><![CDATA[<p>In this GNS3 lab we will learn how to redistribute from EIGRP into OSPF and vice versa. Below is the topology used in this lab:</p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/Redistribute_EIGRP_OSPF_Topology.jpg" alt="Redistribute_EIGRP_OSPF_Topology.jpg" width="633" height="302" /></p>
<p>First we assign IP addresses to all interfaces on the routers. Notice the 4th octet of the IP address of each router has the same value of the name of that router (for example R<span style="text-decoration: underline;"><strong>2</strong></span> has 2 interfaces 12.12.12.<span style="text-decoration: underline;"><strong>2</strong></span> &amp; 23.23.23.<span style="text-decoration: underline;"><strong>2</strong></span>; R<span style="text-decoration: underline;"><strong>3</strong></span> has 2 interfaces 23.23.23.<span style="text-decoration: underline;"><strong>3</strong></span> &amp; 34.34.34.<span style="text-decoration: underline;"><strong>3</strong></span>&#8230;)</p>
<p><!--adsense--></p>
<p><span id="more-347"></span></p>
<p><span class="blueandbold">Assign IP addresses to interfaces:</span></p>
<table border="1">
<tbody>
<tr>
<td>R1(config)#interface f0/0<br />
 R1(config-if)#ip address 12.12.12.1 255.255.255.0<br />
 R1(config-if)#no shutdown</td>
<td>R4(config-if)#interface s1/0<br />
 R4(config-if)#ip address 34.34.34.4 255.255.255.0<br />
 R4(config-if)#no shutdown<br />
 R4(config)#interface f0/0<br />
 R4(config-if)#ip address 45.45.45.4 255.255.255.0<br />
 R4(config-if)#no shutdown</td>
</tr>
<tr>
<td>R2(config)#interface f0/1<br />
 R2(config-if)#ip address 12.12.12.2 255.255.255.0<br />
 R2(config-if)#no shutdown<br />
 R2(config-if)#interface f0/0<br />
 R2(config-if)#ip address 23.23.23.2 255.255.255.0<br />
 R2(config-if)#no shutdown</td>
<td>R5(config)#interface f0/0<br />
 R5(config-if)#ip address 45.45.45.5 255.255.255.0<br />
 R5(config-if)#no shutdown<br />
 R5(config-if)#interface f0/1<br />
 R5(config-if)#ip address 56.56.56.5 255.255.255.0<br />
 R5(config-if)#no shutdown</td>
</tr>
<tr>
<td>R3(config)#interface f0/0<br />
 R3(config-if)#ip address 23.23.23.3 255.255.255.0<br />
 R3(config-if)#no shutdown<br />
 R3(config-if)#interface s1/0<br />
 R3(config-if)#ip address 34.34.34.3 255.255.255.0<br />
 R3(config-if)#no shutdown</td>
<td>R6(config)#interface f0/0<br />
 R5(config-if)#ip address 45.45.45.5 255.255.255.0<br />
 R5(config-if)#no shutdown</td>
</tr>
</tbody>
</table>
<p class="blueandbold">Turn on EIGRP on R1, R2, R3, R4 and turn on OSPF on R4, R5, R6:</p>
<table border="1">
<tbody>
<tr>
<td>R1(config)#router eigrp 1<br />
 R1(config-router)#network 12.0.0.0</td>
<td>R4(config)#router eigrp 1<br />
 R4(config-router)#network 34.0.0.0<br />
 R4(config-router)#no auto-summary<br />
 R4(config)#router ospf 1<br />
 R4(config-router)#network 45.45.45.0 0.0.0.255 area 0</td>
</tr>
<tr>
<td>R2(config)#router eigrp 1<br />
 R2(config-router)#network 12.0.0.0<br />
 R2(config-router)#network 23.0.0.0<br />
 R2(config-router)#no auto-summary</td>
<td>R5(config)#router ospf 1<br />
 R5(config-router)#network 45.45.45.0 0.0.0.255 area 0<br />
 R5(config-router)#network 56.56.56.0 0.0.0.255 area 0</td>
</tr>
<tr>
<td>R3(config)#router eigrp 1<br />
 R3(config-router)#network 23.0.0.0<br />
 R3(config-router)#network 34.0.0.0<br />
 R3(config-router)#no auto-summary</td>
<td>R6(config)#router ospf 1<br />
 R6(config-router)#network 56.56.56.0 0.0.0.255 area 0</td>
</tr>
</tbody>
</table>
<p>We should check the routing table of R4 (the border router) to make sure all the routes are learned:</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/Redistribute_EIGRP_OSPF_Initial_R4.jpg" alt="Redistribute_EIGRP_OSPF_Initial_R4.jpg" width="629" height="334" /></p>
<p><span class="blueandbold">Redistribute EIGRP into OSPF</span></p>
<p>The routing table of R4 contains all the routes in the topology so now we will redistribute EIGRP into OSPF with the command:</p>
<table border="1">
<tbody>
<tr>
<td>R4(config)#router ospf 1<br />
 R4(config-router)#<strong>redistribute eigrp 1</strong></td>
</tr>
</tbody>
</table>
<p>After entering these commands we will see a warning from R4</p>
<table border="1">
<tbody>
<tr>
<td>% Only classful networks will be redistributed</td>
</tr>
</tbody>
</table>
<p><!--adsense#MiddleContent--></p>
<p>Ok, maybe our EIGRP routes have been redistributed so we should check the routing table of R5:</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/Redistribute_EIGRP_OSPF_R5_show_ip_route.jpg" alt="Redistribute_EIGRP_OSPF_R5_show_ip_route.jpg" width="634" height="259" /><br class="spacer_" /></p>
<p>What? We don&#8217;t see anything we expect in the output of R5. No redistributed routes here. All are only directly connected routes!</p>
<p>Wait a minute! We have been warned that &#8220;only classful networks will be redistributed&#8221;. We wish to see networks 12.12.12.0/24, 23.23.23.0/24 &amp; 34.34.34.0/24 redistributed into OSPF but they are subnets, not &#8220;classful&#8221; networks. Please notice that a &#8220;classful&#8221; network here means network with the default major subnet mask (for example: 1.0.0.0/8; 175.10.0.0/16; 200.200.0.0/24&#8230;). To prove this, we will create loopback0 interface on R2 with the IP address 2.2.2.2/8:</p>
<table border="1">
<tbody>
<tr>
<td>R2(config)#interface loopback0<br />
 R2(config-if)#ip address 2.2.2.2 255.0.0.0<br />
 //Advertise this network<br />
 R2(config-if)#exit<br />
 R2(config)#router eigrp 1<br />
 R2(config-router)network 2.0.0.0</td>
</tr>
</tbody>
</table>
<p>Now we check the routing table of R5 again, the 2.0.0.0/8 network has been redistributed successfully with a O E2 (by default, a route redistributed into OSPF will have type E2 with a default metric of 20):</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/Redistribute_EIGRP_OSPF_R5_show_ip_route_loopback0.jpg" alt="Redistribute_EIGRP_OSPF_R5_show_ip_route_loopback0.jpg" width="630" height="255" /></p>
<p>It is not necessary but we can check the OSPF database of R5, notice that we only see a redistributed route (Type-5) of 2.0.0.0</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/Redistribute_EIGRP_OSPF_R5_show_ip_ospf_database.jpg" alt="Redistribute_EIGRP_OSPF_R5_show_ip_ospf_database.jpg" width="599" height="337" /></p>
<p>Therefore if we want to redistribute all subnets into OSPF, use the command:</p>
<table border="1">
<tbody>
<tr>
<td>R4(config)#router ospf 1<br />
 R4(config-router)#<strong>redistribute eigrp 1 subnets</strong></td>
</tr>
</tbody>
</table>
<p>(The keyword <strong>subnets </strong>is only used when we redistribute from another routing protocol into OSPF)</p>
<p>Now all the routes appear in the routing table of R5</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/Redistribute_EIGRP_OSPF_R5_show_ip_route_redistribute_subnets.jpg" alt="Redistribute_EIGRP_OSPF_R5_show_ip_route_redistribute_subnets.jpg" width="631" height="368" /></p>
<p>Ok, R5 got all the routes in EIGRP domain so we may want to ping them to test the connection. So we ping from R5 to R1:</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/Redistribute_EIGRP_OSPF_R5_ping.jpg" alt="Redistribute_EIGRP_OSPF_R5_ping.jpg" width="539" height="96" /></p>
<p>Now the ping is not successful. We can check where the packets have been dropped with the traceroute command:</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/Redistribute_EIGRP_OSPF_R5_traceroute.jpg" alt="Redistribute_EIGRP_OSPF_R5_traceroute.jpg" width="311" height="178" /></p>
<p>The last good router is R4, which is the border router for redistribution. Therefore we can realize that the ping is not successful because OSPF knows how to route packets but EIGRP routers don&#8217;t know where to send reply to -> We need to redistribute OSPF to EIGRP.</p>
<p><span class="blueandbold">Redistribute OSPF into EIGRP</span></p>
<p>Unlike OSPF, we must specify five metrics when redistributing into EIGRP: bandwidth, delay, reliability, load, and MTU, respectively. Therefore our redistribute command will be like this:</p>
<table border="1">
<tbody>
<tr>
<td>R4(config)#router eigrp 1<br />
 R4(config-router)#<strong>redistribute ospf 1 metric 10000 100 255 1 1500</strong></td>
</tr>
</tbody>
</table>
<p>Now R1 has all the OSPF routes and they are marked with D EX:</p>
<p><img src="http://www.digitaltut.com/images/GNS3Labs/BasicLabs/Redistribute_EIGRP_OSPF_R1_show_ip_route.jpg" alt="Redistribute_EIGRP_OSPF_R1_show_ip_route.jpg" width="628" height="350" /></p>
<p>Now all routers can ping each other.</p>
<p>In conclusion, from this lab we learned:<br />
 + We should use the keyword &#8220;subnets&#8221; when redistributing into OSPF; otherwise only classful networks will be redistributed.<br />
 + The ping will not work if we only redistribute &#8220;one-way&#8221; because the reply packets can not be sent.<br />
 + Redistribution into EIGRP requires the metrics to be defined. The only exception is when redistributing between IGRP &amp; EIGRP, we don&#8217;t need to assign the metrics because the metrics of these 2 routing protocols are the same.</p>
<p><!--adsense#AfterContent--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltut.com/redistribute-eigrp-and-ospf-gns3-lab/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Drag and Drop Questions</title>
		<link>http://www.digitaltut.com/route-drag-and-drop-questions</link>
		<comments>http://www.digitaltut.com/route-drag-and-drop-questions#comments</comments>
		<pubDate>Thu, 15 Sep 2011 14:01:38 +0000</pubDate>
		<dc:creator>digitaltut</dc:creator>
				<category><![CDATA[ROUTE 642-902]]></category>

		<guid isPermaLink="false">http://www.digitaltut.com/?p=12</guid>
		<description><![CDATA[Here you will find answers to Drag and Drop questions Question 1 Drag each item to its proper location Place the BGP attributes in the correct order used for determining a route. &#160; Answer:   Question 2 Place the BGP commands to the proper locations   Answer: + show ip bgp: path selection values + [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to Drag and Drop questions</p>

<p><span class="ccnaquestionsnumber">Question 1</span></p>
<p>Drag each item to its proper location</p>
<p>Place the BGP attributes in the correct order used for determining a route.</p>
<p style="text-align: center;"><img style="border: 0pt none;" src="http://www.digitaltut.com/images/ROUTE/Operations/BGPAttributes1.jpg" alt="BGPAttributes1" width="500" height="167" /></p>
<p>&nbsp;</p>
<p class="ccnacorrectanswers">Answer:</p>
<p style="text-align: center;"><img style="border: 0pt none;" src="http://www.digitaltut.com/images/ROUTE/Operations/BGPAttributes1_Answer.jpg" alt="BGPAttributes1_Answer" width="500" height="167" /></p>
<p style="text-align: center;"> </p>
<p class="ccnaquestionsnumber" style="text-align: left;">Question 2</p>
<p style="text-align: left;">Place the BGP commands to the proper locations</p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/ROUTE/DragAndDrop/BGP_commands.jpg" alt="BGP_commands.jpg" width="500" height="170" /></p>
<p style="text-align: left;"> </p>
<p class="ccnacorrectanswers" style="text-align: left;">Answer:</p>
<p style="text-align: left;">+ show ip bgp: path selection values<br />
 + show ip bgp summary: Memory usage<br />
 + show ip route bgp: AD of BGP<br />
 + show ip bgp neighbor: Notification, update…</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Place the EIGRP commands to the proper locations</p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/ROUTE/DragAndDrop/EIGRP_commands.jpg" alt="EIGRP_commands.jpg" width="500" height="170" /></p>
<p>&nbsp;</p>
<p class="ccnacorrectanswers">Answer:</p>
<p><strong>Sources of routes information:</strong> show ip eigrp neighbor</p>
<p><strong>What being learned: </strong>show ip eigrp topology</p>
<p><strong>What actually being used:</strong> show ip route eigrp</p>
<p><strong>Verify eigrp information for each network: </strong>show ip interface eigrp</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>Place the EIGRP terms to the proper locations</p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/ROUTE/DragAndDrop/EIGRP_terms.jpg" alt="EIGRP_terms.jpg" width="550" height="226" /></p>
<p>&nbsp;</p>
<p class="ccnacorrectanswers">Answer:</p>
<p><strong>lists adjacent routers: </strong>Neighbor table</p>
<p><strong>route entries for all destinations:</strong> Topology table</p>
<p><strong>primary route to destination:</strong> Successor</p>
<p><strong>best routers to destinations: </strong>Routing table</p>
<p><strong>backup route to destination:</strong> Feasible successor</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>Place the EIGRP packets to the proper locations</p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/ROUTE/DragAndDrop/EIGRP_packets_function.jpg" alt="EIGRP_packets_function.jpg" width="550" height="226" /></p>
<p>&nbsp;</p>
<p class="ccnacorrectanswers">Answer:</p>
<p>Neighbor discovery/recovery mechanism: Hello</p>
<p>Indicate receipt of any EIGRP packet: Acknowledgement</p>
<p>Convey reachability of destinations: Update</p>
<p>Provides specific and reliable information of neighbors: Query</p>
<p>Instruct the originator not to recompute the route because feasible successors exist: Reply</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltut.com/route-drag-and-drop-questions/feed</wfw:commentRss>
		<slash:comments>249</slash:comments>
		</item>
		<item>
		<title>Drag and Drop 2</title>
		<link>http://www.digitaltut.com/drag-and-drop-2</link>
		<comments>http://www.digitaltut.com/drag-and-drop-2#comments</comments>
		<pubDate>Thu, 15 Sep 2011 12:09:05 +0000</pubDate>
		<dc:creator>digitaltut</dc:creator>
				<category><![CDATA[ROUTE 642-902]]></category>

		<guid isPermaLink="false">http://www.digitaltut.com/?p=256</guid>
		<description><![CDATA[Here you will find answers to Drag and Drop Questions &#8211; Part 2 Question 1 &#160; Answer: Identifies the source of the packet: Router ID Identifies the area to which the packet belongs: Area ID Contains the authentication type. All OSPF protocol exchanges are authenticated: Authentication Type Checks contents of the entire packet for any [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to Drag and Drop Questions &#8211; Part 2</p>

<p class="ccnaquestionsnumber">Question 1</p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/ROUTE/DragAndDrop/Header_fields.jpg" alt="Header_fields.jpg" width="550" height="296" /></p>
<p>&nbsp;</p>
<p class="ccnacorrectanswers">Answer:</p>
<p><strong>Identifies the source of the packet:</strong> Router ID</p>
<p><strong>Identifies the area to which the packet belongs:</strong> Area ID</p>
<p><strong>Contains the authentication type. All OSPF protocol exchanges are authenticated:</strong> Authentication Type</p>
<p><strong>Checks contents of the entire packet for any damage suffered during transmission:</strong> Checksum</p>
<p><strong>Contains authentication information:</strong> Authentication</p>
<p><strong>Contains encapsulated upper-layer information:</strong> Data</p>
<p class="ccnaquestionsnumber">Question 2</p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/ROUTE/DragAndDrop/LSA_Names.jpg" alt="LSA_Names.jpg" width="490" height="180" /></p>
<p>&nbsp;</p>
<p class="ccnacorrectanswers">Answer:</p>
<p><strong>Maintains the list of routers connected to the network:</strong> Network-LSA</p>
<p><strong>Describes the collected states of the routers interfaces to an area:</strong> Router-LSA</p>
<p><strong>Describes a route to a destination in another autonomous system:</strong> AS-external-LSA</p>
<p><strong>Describes a route to a destination outside the area:</strong> Summary-LSA</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>A virtual private network (VPN) is a computer network that is layered on the top of an underlying computer network. VPNs are of different technologies, such as Trusted VPNs, Secure VPNs, and Hybrid VPNs, each having distinct requirements. Drag the various VPN names to their appropriate places.</p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/ROUTE/DragAndDrop/VPN_names.jpg" alt="VPN_names.jpg" width="490" height="140" /></p>
<p>&nbsp;</p>
<p class="ccnacorrectanswers">Answer:</p>
<p>All traffic on the VPN must be encrypted and authenticated: Secure VPN</p>
<p>The routing and addressing used must be established before the VPN is created: Trusted VPN</p>
<p>The address boundaries must be extremely clear: Hybrid VPN</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>IPv6 to IPv4 transition methods</p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/ROUTE/DragAndDrop/IPv4_to_IPv6_transition_methods.jpg" alt="IPv4_to_IPv6_transition_methods.jpg" width="500" height="243" /></p>
<p>&nbsp;</p>
<p class="ccnacorrectanswers">Answer:</p>
<p>NAT-PT</p>
<p>6 to 4 tunnels</p>
<p>GRE tunnels</p>
<p>ISATAP tunnels</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p>IP tunneling is a method to encapsulate IP datagram within IP datagrams, which allows datagrams intended for one IP address to be wrapped and redirected to another IP address. IPv6 packets are encapsulated directly behind the IPv4 header. Drag the header fields to the appropriate places:</p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/ROUTE/DragAndDrop/Tunneling_Header_Fiels.jpg" alt="Tunneling_Header_Fiels.jpg" width="540" height="213" /></p>
<p>&nbsp;</p>
<p class="ccnacorrectanswers">Answer:</p>
<p>The correct order is:</p>
<table style="background-color: #ffccff;" border="1">
<tbody>
<tr>
<td>IPv4 Header | IPv6 Header | Extension Headers | Upper Layer PDU</td>
</tr>
</tbody>
</table>
<p class="ccnaexplanation">Explanation</p>
<p>The structure of a normal IPv6 packet is:</p>
<table border="1">
<tbody>
<tr>
<td>IPv6 Header | Extension Headers | Upper Layer PDU</td>
</tr>
</tbody>
</table>
<p>The IPv6 header is always present and is a fixed size of 40 bytes. Zero or more extension headers can be present and are of varying lengths. The upper layer protocol data unit (PDU) usually consists of an upper layer protocol header and its payload (for example, an ICMPv6 message, a UDP message, or a TCP segment).</p>
<p>Because &#8220;IPv6 packets are encapsulated directly behind the IPv4 header&#8221; so we can deduce an IPv4 Header must be placed before an IPv6 header.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltut.com/drag-and-drop-2/feed</wfw:commentRss>
		<slash:comments>49</slash:comments>
		</item>
		<item>
		<title>OSPF Hotspot</title>
		<link>http://www.digitaltut.com/route-ospf-hotspot</link>
		<comments>http://www.digitaltut.com/route-ospf-hotspot#comments</comments>
		<pubDate>Tue, 13 Sep 2011 07:55:37 +0000</pubDate>
		<dc:creator>digitaltut</dc:creator>
				<category><![CDATA[Hotspot]]></category>

		<guid isPermaLink="false">http://www.digitaltut.com/?p=166</guid>
		<description><![CDATA[Here you will find answers to OSPF Hotspot Questions Question The company and the company network have both been growing rapidly. Multiple adds, moves and changes have been applied to the network. Your boss has asked you to troubleshoot a recent OSPF synchronization problem that has arisen. There have been synchronization problems at separate locations [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to OSPF Hotspot Questions</p>

<p><span class="ccnaquestionsnumber">Question</span></p>
<p>The company and the company network have both been growing rapidly. Multiple adds, moves and changes have been applied to the network. Your boss has asked you to troubleshoot a recent OSPF synchronization problem that has arisen. There have been synchronization problems at separate locations in the OSPF area 0. There have been reported link failures during the rapid growth of the company network. You are required to resolve the OSPF problem. OSPF must be able to converge when the network changes.</p>
<p><br class="spacer_" /></p>
<p style="text-align: center;"><img src="http://www.digitaltut.com/images/ROUTE/Hotspot/OSPF_Hotspot.jpg" alt="OSPF_Hotspot.jpg" /></p>
<p>Refer to the information above to answer the following 4 questions:</p>
<p><span class="ccnaquestionsnumber">Question 1</span><br />
 Examine the following excerpt from the &#8220;show ip ospf&#8221; command on D1:</p>
<table style="background-color: #ffff66;" border="1">
<tbody>
<tr>
<td><strong>Area BACKBONE (0)</strong><br />
 Number of interfaces in the this area is 1<br />
 Area has no authentication<br />
 SPF algorithm last executed 00:00:31.280 ago<br />
 SPF algorithm executed 5 times<br />
 Area ranges are<br />
 Number of LSA 13. Checksum Sum 0x16F0FD<br />
 Number of opaque link LSA 0. Checksum Sum 0&#215;000000<br />
 Number of DCbitless LSA 0<br />
 Number of indication LSA 0<br />
 Number of DoNotAge LSA 0<br />
 Flood list length 0<br />
 <strong>Area 16</strong><br />
 Number of interfaces in this area is 2<br />
 Area has message digest authentication<br />
 SPF algorithm last executed 00:00:34.928 ago<br />
 SPF algorithm executed 7 times<br />
 Area ranges are<br />
 Number of LSA 5. Checksum Sum 0x02FCD3<br />
 Number of opaque link LSA 0. Checksum Sum 0&#215;000000<br />
 Number of DCbitless LSA 0<br />
 Number of indication LSA 0<br />
 Number of DoNotAge LSA 0<br />
 Flood list length 0</td>
</tr>
</tbody>
</table>
<p>Based on the information shown above, what is most likely causing the different missing routes throughout the network?</p>
<p>A. Area 16 is configured with authentication.<br />
 B. Area 16 has been configured to use the same interfaces as Area 0.<br />
 C. Area 0 and Area 32 have been configured with mismatched LSA numbers.<br />
 D. Area 16 has been configured as a total stub network<br />
 E. Area 16 has been configured as a stub network<br />
 F. Area 0 is discontiguous.<br />
 G. None of the above</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> F</p>
<p><span class="ccnaexplanation">Explanation</span></p>
<p>From the topology, we see D1 has 2 interfaces belong to Area 0, that are interfaces Fa0/1 &amp; Fa0/2 but the output says there is only one interface in Area 0 (Number of interfaces in the this area is 1). Therefore we can deduce that a link in area 0 was down and area 0 is discontiguous.</p>
<p><span class="ccnaquestionsnumber">Question 2</span></p>
<p>Which configuration command on D1 (with a similar command on D2) will provide an immediate solution to the missing route problem?</p>
<p>A. no area 16 stub<br />
 B. no area 16 authentication message-digest<br />
 C. area 16 virtual-link 8.187.175.82<br />
 D. area 16 virtual-link 172.16.4.2<br />
 E. no area 16 stub no-summary<br />
 F. network 172.16.0.0.0.0.255.255 area 16<br />
 G. None of the above</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>C</p>
<p class="ccnaexplanation">Explanation</p>
<p>To fix this problem immediately without changing the topology we need to create virtual link between D1 &amp; D2. If you are still confused how to use the virtual link, check out the <a href="http://www.digitaltut.com/route-ipv6-ospf-virtual-link-sim" target="_blank">IPv6 OSPF Virtual Link Sim</a> article.</p>
<p><!--adsense#MiddleContent--></p>
<p><span class="ccnaquestionsnumber">Question 3</span></p>
<p>The log of d1 reports the following:</p>
<table style="background-color: #ffff99;" border="1">
<tbody>
<tr>
<td>%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed  state to down<br />
 %LINK-3-UPDOWN: Interface FastEthernet0/1, changed state to down<br />
 %OSPF-5-ADJCHG: Process 1, Nbr 8.187.175.82/32 on FasstEthernet0/1 from  FULL to DOWN,<br />
 Neighbor Down: Interface down or detached</td>
</tr>
</tbody>
</table>
<p>This event was anticipated due to maintenance; however, it resulted in excessive lost routes. Which route should be the only one removed from the routing tables of the routers?</p>
<p>A. 8.187.175.82/32<br />
 B. 10.138.43.0/30<br />
 C. 10.206.180.0/30<br />
 D. 4.249.113.59/32<br />
 E. 10.201.0.0/30<br />
 F. None of the above</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer: </span>E</p>
<p><span class="ccnaexplanation">Explanation</span></p>
<p>From the log we learn that the link of Interface Fa0/1 has been down. This link belongs to network 10.201.0.0/30 so we just need to remove this route from the routing table.</p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>The R2 router has lost connectivity to R1. The following is R1&#8242;s current route table:</p>
<table style="background-color: #ffff99;" border="1">
<tbody>
<tr>
<td>172.16.0.0/16 is variably subnetted, 3 subnets, 2 masks<br />
 O IA 172.16.230.0/24 [110/21] via 10.138.43.1, 00:00:03,  FastEthernet0/0<br />
 O IA 172.16.209.0/24 [110/22] via 10.138.43.1, 00:00:03,  FastEthernet0/0<br />
 O IA 172.16.1.0/30 [110/21] via 10.138.43.1, 00:00:03, FastEthernet0/0<br />
 10.0.0.0/30 is subnetted, 1 subnets<br />
 C 10.138.43.0 is directly connected, FastEthernet0/0</td>
</tr>
</tbody>
</table>
<p>Which expected route is missing from R1&#8242;s route table based on the topology during the maintenance period?&#8217;</p>
<p>A. o 172.16.0.0 [110/2] via 10.138.43.1, 00:00:09, FastEthernet0/0<br />
 B. o IA 9.152.105.122 [110/3] via 10.138.43.1, 00:00:09, FastEthernet0/0<br />
 C. o IA 10.138.0.0 [110/3] via 10.138.43.1, 00:00:09, FastEthernet0/0<br />
 D. o IA 10.249.0.0 [110/2] via 10.138.43.1, 00:00:09, FastEthernet0/0<br />
 E. o IA 4.249.113.59 [110/2] via 10.138.43.1, 00:00:09, FastEthernet0/0<br />
 F. o 8.187.175.82 [110/3] via 10.138.43.1, 00:00:09, FastEthernet0/0<br />
 G. O    10.206.180.0/30 [110/3] via 10.138.43.1, 00:00:09,  FastEthernet0/0<br />
 H. O IA 10.206.180.0/30 [110/3] via 10.138.43.1, 00:00:09,  FastEthernet0/0</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> G</p>
<p class="ccnaexplanation">Explanation</p>
<p>In the past, I used to choose answer F as the correct answer but the explanation from <span class="pinkandbold">DOX3003</span> (commented on November 19th, 2010) seems to be correct:</p>
<p>&#8220;Which expected route is missing from R1′s route table based on the topology during the maintenance period?<br />
 X…….<br />
 X. O 10.206.180.0/30 [110/3] via 10.138.43.1, 00:00:09, FastEthernet0/0<br />
 X. O IA 10.206.180.0/30 [110/3] via 10.138.43.1, 00:00:09, FastEthernet0/0<br />
 X…….</p>
<p> You can see there are 2 options for the network between D2 and R2. One with “IA” and one without. O – OSPF, IA – OSPF inter area.<br />
 Before link failures between D1 and D2 the network 10.206.180.0/30 has been appearing as “intra area” network in R1′s routing table.<br />
 Because they were in the same Area 0.<br />
 So the correct answer should be<br />
 X. O 10.206.180.0/30 [110/3] via 10.138.43.1, 00:00:09, FastEthernet0/0″&#8221;</p>
<p><!--adsense#AfterContent--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltut.com/route-ospf-hotspot/feed</wfw:commentRss>
		<slash:comments>186</slash:comments>
		</item>
		<item>
		<title>EIGRP Questions</title>
		<link>http://www.digitaltut.com/route-eigrp-questions</link>
		<comments>http://www.digitaltut.com/route-eigrp-questions#comments</comments>
		<pubDate>Sat, 03 Sep 2011 08:16:51 +0000</pubDate>
		<dc:creator>digitaltut</dc:creator>
				<category><![CDATA[ROUTE 642-902]]></category>

		<guid isPermaLink="false">http://www.digitaltut.com/?p=24</guid>
		<description><![CDATA[Here you will find answers to EIGRP questions Question 1 Which three statements about the EIGRP routing protocol are true? (Choose three) A &#8211; EIGRP sends periodic hello packets to the multicast IP address 224.0.0.9 B &#8211; EIGRP sends periodic hello packets to the multicast IP address 224.0.0.10 C &#8211; EIGRP supports five generic packet [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will find answers to EIGRP questions</p>

<p class="ccnaquestionsnumber">Question 1</p>
<p>Which three statements about the EIGRP routing protocol are true? (Choose three)</p>
<p>A &#8211; EIGRP sends periodic hello packets to the multicast IP address 224.0.0.9<br />
 B &#8211; EIGRP sends periodic hello packets to the multicast IP address 224.0.0.10<br />
 C &#8211; EIGRP supports five generic packet types. including hello, update, query, reply, and ACK packets<br />
 D &#8211; EIGRP supports five generic packet types, including hello, database description (DBD), link-state request (LSR), link-state update (LSU), and LSAck<br />
 E &#8211; E. EIGRP will form a neighbor relationship with another peer even when their K values are mismatched<br />
 F &#8211; A. EIGRP will not form a neighbor relationship with another peer when their K values are mismatched</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B, C, F</p>
<p><span class="ccnaquestionsnumber">Question 2</span></p>
<p>After DUAL calculations, a router has identified a successor route, but no routes have qualified as a feasible successor. In the event that the current successor goes down, what process will EIGRP use in the selection of a new successor?</p>
<p>A &#8211; EIGRP will find the interface with the lowest MAC address<br />
 B &#8211; The route will transition to the active state<br />
 C &#8211; The route will transition to the passive state<br />
 D &#8211; EIGRP will automatically use the route with the lowest feasible distance (FD)<br />
 E &#8211; EIGRP will automatically use the route with the lowest advertised distance (AD)</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> B</p>
<p class="ccnaexplanation">Explanation</p>
<p>When a route (current successor) goes down, the router first checks its topology table for a feasible successor but it can’t find one. So it goes active on the that route to find a new successor by sending queries out to its neighbors requesting a path to the lost route.</p>
<p class="ccnaquestionsnumber">Question 3</p>
<p>Refer to the exhibit. Routers R1 and R2 have established a neighbor relationship and are exchanging routing information. The network design requires that R1 receive routing updates from R2, but not advertise any routes to R2. Which configuration command sequence will successfully accomplish this task?</p>
<div style="text-align: center;"><img style="border: 0pt none;" src="http://www.digitaltut.com/images/ROUTE/EIGRP/neighbor_relationship_distribute_list.jpg" alt="neighbor_relationship_distribute_list" /></div>
<p>A &#8211; R1(config)# router eigrp 1 <br />
 R1(config-router)# passive-interface serial 0</p>
<p>B &#8211; R2(config)# router eigrp 1 <br />
 R2(config-router)# passive-interface serial 0</p>
<p>C &#8211; R1(config)# access-list 20 deny any <br />
 R1(config)# router eigrp 1<br />
 R1(config-router)# distribute-list 20 out serial 0</p>
<p>D &#8211; R2(config)# access-list 20 deny any <br />
 R2(config)# router eigrp 1<br />
 R2(config-router)# distribute-list 20 out serial 0</p>
<p>E &#8211; R1(config)# access-list 20 permit any <br />
 R1(config)# router eigrp 1<br />
 R1(config-router)# distribute-list 20 in serial 0</p>
<p>F &#8211; R2(config)# access-list 20 permit any<br />
 R2(config)# router eigrp 1<br />
 R2(config-router)# distribute-list 20 in serial 0</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> C</p>
<p class="ccnaexplanation">Explanation</p>
<p>We can not use passive-interface to accomplish this task because the &#8220;passive-interface&#8230;&#8221; command (in EIGRP or OSPF) will shut down the neighbor relationship of these two routers (no hello packets are exchanged). And to filter routing updates we should configure a distribute list on R1 with an access list that deny all and apply it to the outbound direction so that R1 can receive but can not send routing updates.</p>
<p><!--adsense#MiddleContent--></p>
<p class="ccnaquestionsnumber">Question 4</p>
<p>EIGRP has been configured to operate over Frame Relay multipoint connections. What should the bandwidth command be set to?</p>
<p>A &#8211; the CIR rate of the lowest speed connection multiplied by the number of circuits <br />
 B &#8211; the CIR rate of the lowest speed connection<br />
 C &#8211; the CIR rate of the highest speed connection<br />
 D &#8211; the sum of all the CIRs divided by the number of connections</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> A</p>
<p class="ccnaexplanation">Explanation</p>
<p>If the multipoint network has different speeds allocated to the VCs, take the lowest CIR and simply multiply it by the number of circuits. This is because in Frame-relay all neighbors share the bandwidth equally, regardless of the actual CIR of each individual PVC, so we have to get the lowest speed CIR rate and multiply it by the number of circuits. This result will be applied on the main interface (or multipoint connection interface).</p>
<p class="ccnaquestionsnumber">Question 5</p>
<p style="text-align: center;"><img style="border: 0pt none;" src="http://www.digitaltut.com/images/ROUTE/EIGRP/EIGRP_Active_state.jpg" alt="EIGRP_Active_state" /></p>
<p>Refer to the exhibit. EIGRP is configured on all routers in the network. On a basis of the show ip eigrp topology output provided, what conclusion can be derived?</p>
<p>A &#8211; Router R1 can send traffic destined for network 10.6.1.0/24 out of interface FastEthernet0/0<br />
 B &#8211; Router R1 is waiting for a reply from the neighbor 10.1.2.1 to the hello message sent out before it declares the neighbor unreachable<br />
 C &#8211; Router R1 is waiting for a reply from the neighbor 10.1.2.1 to the hello message sent out inquiring for a second successor to network 10.6.1.0/24<br />
 D &#8211; Router R1 is waiting for a reply from the neighbor 10.1.2.1 in response to the query sent out about network 10.6.1.0/24</p>
<p><br class="spacer_" /></p>
<p><span class="ccnacorrectanswers">Answer:</span> D</p>
<p class="ccnaexplanation">Explanation</p>
<p>From the output, we notice that there is an active route (A) and the reply status flag (r) was set. An active EIGRP route is the state when a network change occurs and a feasible successor is not found by a EIGRP router for a given route (10.6.1.0/24); and the reply status flag (r) means that R1&#8242;s queries were sent out to the neighbors asking for routing information to the 10.6.1.0/24 network but hasn&#8217;t received a reply yet. Therefore the answer A &#8211; router R1 can send traffic destined for network 10.6.1.0/24 is not correct because router R1 can&#8217;t find a path to that network. Answers B and C are not correct because R1 doesn&#8217;t send a hello message but a query asking for routing information to the desired network.</p>
<p><br class="spacer_" /></p>
<p><!--adsense#AfterContent--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltut.com/route-eigrp-questions/feed</wfw:commentRss>
		<slash:comments>172</slash:comments>
		</item>
	</channel>
</rss>
