<?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>Aaron&#039;s Worthless Words &#187; eigrp</title>
	<atom:link href="http://aconaway.com/tag/eigrp/feed/" rel="self" type="application/rss+xml" />
	<link>http://aconaway.com</link>
	<description>It&#039;s possible that someone somewhere needs to see this.</description>
	<lastBuildDate>Wed, 01 Feb 2012 02:07:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>EIGRP Notes &#8211; Authentication</title>
		<link>http://aconaway.com/2011/06/10/eigrp-notes-authentication/</link>
		<comments>http://aconaway.com/2011/06/10/eigrp-notes-authentication/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 16:06:33 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[ccie]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[350-001]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[chain]]></category>
		<category><![CDATA[eigrp]]></category>
		<category><![CDATA[key]]></category>
		<category><![CDATA[md5]]></category>
		<category><![CDATA[written]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=1665</guid>
		<description><![CDATA[Corrections - I invite them.]]></description>
			<content:encoded><![CDATA[<p>Corrections &#8211; I invite them.</p>
<p>1.  Create the keys in the keychain.</p>
<blockquote>
<pre>R101(config)#key chain KEYCHAIN
R101(config-keychain)#key 1
R101(config-keychain-key)#key-str
R101(config-keychain-key)#key-string MYKEY</pre>
</blockquote>
<p>2.  Enable authentication on an interface.</p>
<blockquote>
<pre>R101(config-if)#ip authentication mode eigrp 1 md5</pre>
</blockquote>
<p>3.  Associate keychain with EIGRP.</p>
<blockquote>
<pre>ip authentication key-chain eigrp 1 KEYCHAIN</pre>
</blockquote>
<div class="wp-about-author-containter-around" style="background-color:#ffffff;"><div class="wp-about-author-pic"><img alt='' src='http://1.gravatar.com/avatar/14352aa939196349e4b9f2a272ca5112?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><div class="wp-about-author-text"><h3><a href='http://aconaway.com/author/jac/' title='Aaron Conaway'>Aaron Conaway</a></h3><p>I like to lean my head to the left, hit it with the palm of my right hand, and document what knowledge falls out.</p><p><a href='http://aconaway.com' title='Aaron Conaway'>Website</a> - <a href='http://aconaway.com/author/jac/' title='More posts by Aaron Conaway'>More Posts</a> </p></div></div>]]></content:encoded>
			<wfw:commentRss>http://aconaway.com/2011/06/10/eigrp-notes-authentication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EIGRP Notes &#8211; Route Filtering</title>
		<link>http://aconaway.com/2011/06/06/eigrp-notes-route-filtering/</link>
		<comments>http://aconaway.com/2011/06/06/eigrp-notes-route-filtering/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 00:20:49 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[ccie]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[350-001]]></category>
		<category><![CDATA[eigrp]]></category>
		<category><![CDATA[filtering]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[route]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=1643</guid>
		<description><![CDATA[You can configure an EIGRP router to filter routes from being advertised or from being accepted.]]></description>
			<content:encoded><![CDATA[<p>As always, correction are encouraged.</p>
<p>You can configure an EIGRP router to filter routes from being advertised or from being accepted.</p>
<p>Objective:  Filter out the route to 10.0.254.1/32 from being advertised to the rest of the network via EIGRP.</p>
<blockquote>
<pre>ip prefix-list PRE1 deny 10.0.254.1/32
ip prefix-list PRE1 permit 0.0.0.0/0 le 32
!
router eigrp 1
 distribute-list prefix PRE1 out

-- OR --

ip access-list standard ACL1
 deny 10.0.254.1 0.0.0.255
 permit any
!
router eigrp 1
 distribute-list ACL1 out</pre>
</blockquote>
<div class="wp-about-author-containter-around" style="background-color:#ffffff;"><div class="wp-about-author-pic"><img alt='' src='http://1.gravatar.com/avatar/14352aa939196349e4b9f2a272ca5112?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><div class="wp-about-author-text"><h3><a href='http://aconaway.com/author/jac/' title='Aaron Conaway'>Aaron Conaway</a></h3><p>I like to lean my head to the left, hit it with the palm of my right hand, and document what knowledge falls out.</p><p><a href='http://aconaway.com' title='Aaron Conaway'>Website</a> - <a href='http://aconaway.com/author/jac/' title='More posts by Aaron Conaway'>More Posts</a> </p></div></div>]]></content:encoded>
			<wfw:commentRss>http://aconaway.com/2011/06/06/eigrp-notes-route-filtering/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EIGRP Notes &#8211; Unequal Cost Path Load Balancing</title>
		<link>http://aconaway.com/2011/06/06/eigrp-notes-unequal-cost-path-load-balancing/</link>
		<comments>http://aconaway.com/2011/06/06/eigrp-notes-unequal-cost-path-load-balancing/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 23:46:32 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[ccie]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[balancing]]></category>
		<category><![CDATA[cost]]></category>
		<category><![CDATA[eigrp]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[path]]></category>
		<category><![CDATA[unequal]]></category>
		<category><![CDATA[variance]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=1639</guid>
		<description><![CDATA[Per the standard rules, please correct anything that's wrong.

One of EIGRP's big features is the ability to use unequal cost paths for load balancing.  This is done with the variance command.]]></description>
			<content:encoded><![CDATA[<p>Per the standard rules, please correct anything that&#8217;s wrong.</p>
<p>One of EIGRP&#8217;s big features is the ability to use unequal cost paths for load balancing.  This is done with the <em>variance</em> command.</p>
<p><strong>variance </strong>: A multiplier used to calculate which feasible successors can be used as active routes.  The router takes integer and multiplies it by the successor&#8217;s feasible distance, and any FS with a an FD less than this new number gets submitted to the routing table manager.</p>
<blockquote>
<pre>R1(config-router)#variance ?
 &lt;1-128&gt;  Metric variance multiplier</pre>
</blockquote>
<p><strong>maximum-paths </strong>: The maximum number of routes to submit to the route table manager.</p>
<blockquote>
<pre>R1(config-router)#maximum-paths ?
  &lt;1-32&gt;  Number of paths</pre>
</blockquote>
<p><strong>traffic-share balanced</strong> : The router sends traffic based on a weighted values of the metric so that the lower metrics get more traffic.</p>
<blockquote>
<pre>R1(config-router)#traffic-share balanced</pre>
</blockquote>
<p><strong>traffic-share min</strong> : Only use the lowest metric route.  This seems kind of pointless to me.</p>
<blockquote>
<pre>R1(config-router)#traffic-share min</pre>
</blockquote>
<p><strong>traffic-share min across-interfaces</strong> : Use the lowest metric route but use routes out different interfaces if they exist.</p>
<blockquote>
<pre>R1(config-router)#traffic-share min across-interfaces</pre>
</blockquote>
<div class="wp-about-author-containter-around" style="background-color:#ffffff;"><div class="wp-about-author-pic"><img alt='' src='http://1.gravatar.com/avatar/14352aa939196349e4b9f2a272ca5112?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><div class="wp-about-author-text"><h3><a href='http://aconaway.com/author/jac/' title='Aaron Conaway'>Aaron Conaway</a></h3><p>I like to lean my head to the left, hit it with the palm of my right hand, and document what knowledge falls out.</p><p><a href='http://aconaway.com' title='Aaron Conaway'>Website</a> - <a href='http://aconaway.com/author/jac/' title='More posts by Aaron Conaway'>More Posts</a> </p></div></div>]]></content:encoded>
			<wfw:commentRss>http://aconaway.com/2011/06/06/eigrp-notes-unequal-cost-path-load-balancing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>EIGRP for IPv6 &#8211; The Basics</title>
		<link>http://aconaway.com/2011/01/30/eigrp-for-ipv6-the-basics/</link>
		<comments>http://aconaway.com/2011/01/30/eigrp-for-ipv6-the-basics/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 03:07:11 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[route]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[eigrp]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[ipv6]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=1361</guid>
		<description><![CDATA[I'm not going to go all out like Jeremy over at Packetlife.net has, but I'm going to start to discuss a few IPv6 topics.  In time (like in September when APNIC runs out of IPv4 addresses), I'm sure I'll ramp up the IPv6 talk, but let's start easy and get EIGRP for IPv6 up and running. ]]></description>
			<content:encoded><![CDATA[<p>I&#39;m not going to <a href="http://packetlife.net/blog/2010/dec/13/blog-examples-going-ipv6-next-year/">go all out</a> like Jeremy over at Packetlife.net has, but I&#39;m going to start to discuss a few IPv6 topics. &nbsp;In time (like <a href="http://www.potaroo.net/tools/ipv4/">in September when APNIC runs out of IPv4 addresses</a>), I&#39;m sure I&#39;ll ramp up the IPv6 talk, but let&#39;s start easy and get EIGRP for IPv6 up and running. &nbsp;</p>
<h3>Configuration</h3>
<p>There are quite a few differences between EIGRP for IPv6 (yes, that&#39;s an official name) and the IPv4 version. &nbsp;First of all, all IPv6 routing is disabled by default on a Cisco router, so, if you&#39;re doing any routing in IPv6, you&#39;ll want to enable it or risk smashing your head into the desk trying to figure out what&#39;s going on.</p>
<blockquote>
<p>Router(config)#ipv6 unicast-routing</p>
</blockquote>
<p>Next, let&#39;s get to configuring EIGRP for IPv6. &nbsp;By default, <strike>IPv6 routing protocols (all of them?) are</strike> EIGRP for IPv6 is shut down like Ethernet interfaces, so we&#39;ll have to enable it first. &nbsp;</p>
<blockquote>
<p>Router(config)#ipv6 router eigrp 100<br />
		Router(config-rtr)#no shutdown</p>
</blockquote>
<p>There&#39;s also the issue of the router ID. &nbsp;In IPv4, EIGRP has&nbsp;<a href="http://aconaway.com/2010/06/16/route-notes-eigrp-neighbor-relationships/">an method to figure out its router ID</a>, and EIGRP for IPv6 uses that same method. &nbsp;The problem is that the router ID is still a 32-bit number, but there aren&#39;t any 32-bit address on the router if you&#39;re pure IPv6. &nbsp;A dilemma, eh? &nbsp;There are two way to get around this, though. &nbsp;First, you can set a loopback interface with an IPv4 address so that EIGRP will have an address to use.</p>
<blockquote>
<p>Router(config)#interface lo0<br />
		Router(config-if)#ip address 192.0.2.1 255.255.255.255</p>
</blockquote>
<p>You can also statically assign a router ID to EIGRP for IPv6.</p>
<blockquote>
<p>Router(config)#ipv6 router eigrp 100<br />
		Router(config-rtr)#router-id 192.0.2.1</p>
</blockquote>
<p>Either method gets the same result. &nbsp;Of course, you should be careful that all routers have a unique ID.</p>
<p>So now we need to add some <em>network </em>statements, right? &nbsp;Actually, there are no <em>network </em>statements in EIGRP for IPv6. &nbsp;The interfaces themselves are where you configure the networks to be included in the routing protocol. &nbsp;It&#39;s kinda like the way you can <a href="http://www.cisco.com/en/US/docs/ios/12_0s/feature/guide/ospfarea.html">use the interfaces to configure OSPFv2.</a></p>
<blockquote>
<p>Router(config)#interface f0/0<br />
		Router(config-if)#ipv6 eigrp 100</p>
</blockquote>
<p>Of course, we&#39;re assuming you already have an IPv6 address on f0/0.</p>
<h3>Checking our Work</h3>
<p>Let&#39;s check to see if everything is working the way we think it should be. &nbsp;First of all, let&#39;s make sure all our interfaces are participating as expected with the <em>show ipv6 eigrp interface</em> command.</p>
<blockquote><pre>Router#sh ipv6 eigrp interfaces
IPv6-EIGRP interfaces for process 100

                        Xmit Queue   Mean   Pacing Time   Multicast    Pending
Interface        Peers  Un/Reliable  SRTT   Un/Reliable   Flow Timer   Routes
Fa0/0              0        0/0         0       0/1            0           0
Fa0/1              1        0/0        23       0/2           50           0</pre>
</blockquote>
<p>This output looks a lot like the IPv6 version, and we can see both f0/0 and 0/1 are participating. &nbsp;That looks right, so let&#39;s check for EIGRP neighbors with the <em>show ipv6 eigrp neighbor</em>. &nbsp;I&#39;ve got another router off of f0/1, so we should see a neighbor adjacency.</p>
<blockquote><pre>Router#sh ipv6 eigrp neighbors
IPv6-EIGRP neighbors for process 100
H   Address                 Interface       Hold Uptime   SRTT   RTO  Q  Seq
                                            (sec)         (ms)       Cnt Num
0   Link-local address:     Fa0/1             13 00:02:40   23   200  0  11
    FE80::C001:14FF:FEB0:1</pre>
</blockquote>
<p>What the heck is FE80::C001:14FF:FEB0:1??!?!?! &nbsp;That&#39;s not a network we configured! &nbsp;That&#39;s actually the link-local address of the other router off of f0/1. &nbsp;Perhaps I&#39;ll discuss IPv6 addressing some day (when I have a firmer grasp on it), but, for now, I&#39;ll just say that it&#39;s a special address for hosts to talk to one another on a local network.</p>
<p>Finally, let&#39;s check for routes.</p>
<blockquote><pre>R1#show ipv6 route eigrp
IPv6 Routing Table - 6 entries
...
D   2002::/64 [90/307200]
     via FE80::C001:14FF:FEB0:1, FastEthernet0/1</pre>
</blockquote>
<p>Just like in IPv4, EIGRP for IPv6 routes show up with the route code of &quot;D&quot;. &nbsp;It&#39;s looks like we have one route to the 2002::/64 network. &nbsp;Everything seems to be working!</p>
<p>There are obviously a lot of more features and functions to EIGRP for IPv6, but this should get you started in your studies. &nbsp;I&#39;m sure I&#39;ll expound as time and my CCIE studies progress.</p>
<p>Send any <strike>6to4 tunnels</strike> questions my way.</p>
<div class="wp-about-author-containter-around" style="background-color:#ffffff;"><div class="wp-about-author-pic"><img alt='' src='http://1.gravatar.com/avatar/14352aa939196349e4b9f2a272ca5112?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><div class="wp-about-author-text"><h3><a href='http://aconaway.com/author/jac/' title='Aaron Conaway'>Aaron Conaway</a></h3><p>I like to lean my head to the left, hit it with the palm of my right hand, and document what knowledge falls out.</p><p><a href='http://aconaway.com' title='Aaron Conaway'>Website</a> - <a href='http://aconaway.com/author/jac/' title='More posts by Aaron Conaway'>More Posts</a> </p></div></div>]]></content:encoded>
			<wfw:commentRss>http://aconaway.com/2011/01/30/eigrp-for-ipv6-the-basics/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Tagging External Routes in EIGRP</title>
		<link>http://aconaway.com/2010/12/02/tagging-external-routes-in-eigrp/</link>
		<comments>http://aconaway.com/2010/12/02/tagging-external-routes-in-eigrp/#comments</comments>
		<pubDate>Fri, 03 Dec 2010 03:49:49 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[route]]></category>
		<category><![CDATA[bgp]]></category>
		<category><![CDATA[egp]]></category>
		<category><![CDATA[eigrp]]></category>
		<category><![CDATA[external]]></category>
		<category><![CDATA[igp]]></category>
		<category><![CDATA[ospf]]></category>
		<category><![CDATA[redistribution]]></category>
		<category><![CDATA[routing]]></category>
		<category><![CDATA[tag]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=1249</guid>
		<description><![CDATA[EIGRP allows you to tag external routes.&#160; That is, any route redistributed into EIGRP can be tagged with a numeric descriptor from 0 to 4294967295.&#160; These tags are carried throughout the EIGRP AS, so, with some planning and documentation, you can look at any route on any router and get an idea of what it&#39;s trying to do, where it came from, etc.&#160; Also, tagging routes is a common way to make sure you&#39;re not redistributing the same routes over and over if you have multiple mutual redistribution points. The config is quite easy and involves my favorite config item in all of Ciscodom &#8211; route-maps!&#160; You create a route-map that sets the tag value and apply it to the redistribution.&#160; There are a few ways to skin this cat, but I&#39;ll use an outbound distribute-list here.&#160; Here&#39;s the config save the basics for getting EIGRP going. route-map TAGIT permit 100 set tag 2000 ! router eigrp 1 redistribute static distribute-list route-map TAGIT out ! ip route 172.16.0.0 255.255.255.0 Null0 If you do a show ip route on one of the other routers, you can see the tag that has been applied.&#160; Check out the last line of the output. [...]]]></description>
			<content:encoded><![CDATA[<p>EIGRP allows you to tag external routes.&nbsp; That is, any route redistributed into EIGRP can be tagged with a numeric descriptor from 0 to 4294967295.<span id="more-1249"></span>&nbsp; These tags are carried throughout the EIGRP AS, so, with some planning and documentation, you can look at any route on any router and get an idea of what it&#39;s trying to do, where it came from, etc.&nbsp; Also, tagging routes is a common way to make sure you&#39;re not redistributing the same routes over and over if you have multiple mutual redistribution points.</p>
<p>The config is quite easy and involves my favorite config item in all of Ciscodom &#8211; route-maps!&nbsp; You create a route-map that sets the tag value and apply it to the redistribution.&nbsp; There are a few ways to skin this cat, but I&#39;ll use an outbound distribute-list here.&nbsp; Here&#39;s the config save the basics for getting EIGRP going.</p>
<blockquote><pre>route-map TAGIT permit 100
 set tag 2000
!
router eigrp 1
 redistribute static
 distribute-list route-map TAGIT out
!
ip route 172.16.0.0 255.255.255.0 Null0</pre>
</blockquote>
<p>If you do a <em>show ip route</em> on one of the other routers, you can see the tag that has been applied.&nbsp; Check out the last line of the output.</p>
<blockquote>
<p>R1#sh ip route 172.16.0.1<br />
		Routing entry for 172.16.0.0/24<br />
		&nbsp; Known via &quot;eigrp 1&quot;, distance 170, metric 28160<br />
		&nbsp; Tag 2000, type external<br />
		&nbsp; Redistributing via eigrp 1<br />
		&nbsp; Last update from 192.168.0.2 on FastEthernet0/0, 00:00:09 ago<br />
		&nbsp; Routing Descriptor Blocks:<br />
		&nbsp; * 192.168.0.2, from 192.168.0.2, 00:00:09 ago, via FastEthernet0/0<br />
		&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Route metric is 28160, traffic share count is 1<br />
		&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Total delay is 100 microseconds, minimum bandwidth is 100000 Kbit<br />
		&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Reliability 255/255, minimum MTU 1500 bytes<br />
		&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Loading 1/255, Hops 1<br />
		&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Route tag 2000</p>
</blockquote>
<p>Remember that you can only tag routes external to the AS.&nbsp; That means you can&#39;t have a router tag all the internal routes (which may be a cool thing to be able to do).&nbsp; You can, however, tag any route that is redistributed &#8211; including another EIGRP AS.&nbsp; </p>
<p>Tags are also used in OSPF and BGP.&nbsp; Our MPLS provider actually tags the routes they distribute to us with their BGP AS number.</p>
<p>Send any <strike>infinite-hop routes</strike> questions my way.</p>
<div class="wp-about-author-containter-around" style="background-color:#ffffff;"><div class="wp-about-author-pic"><img alt='' src='http://1.gravatar.com/avatar/14352aa939196349e4b9f2a272ca5112?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><div class="wp-about-author-text"><h3><a href='http://aconaway.com/author/jac/' title='Aaron Conaway'>Aaron Conaway</a></h3><p>I like to lean my head to the left, hit it with the palm of my right hand, and document what knowledge falls out.</p><p><a href='http://aconaway.com' title='Aaron Conaway'>Website</a> - <a href='http://aconaway.com/author/jac/' title='More posts by Aaron Conaway'>More Posts</a> </p></div></div>]]></content:encoded>
			<wfw:commentRss>http://aconaway.com/2010/12/02/tagging-external-routes-in-eigrp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ROUTE Notes &#8211; Further IGP Redistribution</title>
		<link>http://aconaway.com/2010/07/17/route-notes-further-igp-redistribution/</link>
		<comments>http://aconaway.com/2010/07/17/route-notes-further-igp-redistribution/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 03:36:45 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[ccnp]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[route]]></category>
		<category><![CDATA[642-902]]></category>
		<category><![CDATA[bgp]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[eigrp]]></category>
		<category><![CDATA[exam]]></category>
		<category><![CDATA[ospf]]></category>
		<category><![CDATA[redistribution]]></category>
		<category><![CDATA[test]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=922</guid>
		<description><![CDATA[What's this?  More IGP redistribution?  Yes.  Yes, it is.]]></description>
			<content:encoded><![CDATA[<p>As always, corrections are requested.</p>
<p><strong>Study Questions</strong></p>
<ul>
<li>I&#8217;ve got IGRP and EIGRP both configured with the same AS number.  What&#8217;s special about this configuration?</li>
</ul>
<p style="padding-left: 60px;">If both use the same AS number, then they automatically redistribute their routes into each other without using the <em>redistribute</em> command.</p>
<ul>
<li>When redistributing one IGP into another, where&#8217;s a good place to filter routes?</li>
</ul>
<p style="padding-left: 60px;">There&#8217;s no one good place, but at the router(s) that&#8217;s doing the redistribution is a good start.  There&#8217;s no need to send an IGP a bunch of routes it doesn&#8217;t need.</p>
<ul>
<li>When redistributing one IGP into another, where&#8217;s a good place to summarize routes?</li>
</ul>
<p style="padding-left: 60px;">There&#8217;s no one good place, but that may be best done at the router just inside the redistributing router.  If the redistributing router only sees the summary route, that&#8217;s what it will pass to the other IGP.</p>
<ul>
<li>What&#8217;s the default metric of RIP?</li>
</ul>
<p style="padding-left: 60px;">That&#8217;s infinity, so it&#8217;s unreachable with an explicit metric.</p>
<ul>
<li>I&#8217;ve redistributed OSPF into RIP, but I don&#8217;t see my subnets there.  What gives?</li>
</ul>
<p style="padding-left: 60px;">RIP automatically summarized routes, so look for summaries instead of specific subnets.</p>
<ul>
<li>How can you limit the number of routes redistributed into EIGRP or OSPF?</li>
</ul>
<p style="padding-left: 60px;">Use the <em>redistribute maximum-prefix</em> <em>X </em>directive under the routing protocol, where <em>X</em> is the maximum number of routes.</p>
<ul>
<li>What are the metrics of connected routes when redistributed into EIGRP?</li>
</ul>
<p style="padding-left: 60px;">Those routes take the metric of the associated interface instead of using the metric you gave to the redistribution.  [This seems fishy at best.  Can anyone help clarify, please?]</p>
<ul>
<li>I have 845734928 interfaces on my router, but I only want to use 3 of them for EIGRP and only want to configure a single <em>network</em> statement.  What&#8217;s the easiest way to do that?</li>
</ul>
<p style="padding-left: 60px;">Set all the interfaces as passive with the <em>passive-interface default</em> router subcommand.  Next, make all your interesting interfaces non-passive with the <em>no passive-interface X</em> subcommand.  Now you can configure <em>network 0.0.0.0 255.255.255.255</em> to match all the interfaces, but only the interesting interfaces will participate.</p>
<ul>
<li>What is the term for the rank of trustworthiness a routing protocol provides?</li>
</ul>
<p style="padding-left: 60px;">Administrative distance</p>
<ul>
<li>How can I change the AD of external EIGRP routes to 201 while keeping the default AD for internal EIGRP routes?</li>
</ul>
<p style="padding-left: 60px;">Router1(config-router)#distance eigrp 90 201<br />
You have to set both, so you&#8217;ll have to remember that EIGRP has an AD of 90 for internal routes by default.</p>
<ul>
<li>How can I change the AD of OSPF routes to 192.168.0.0/24 to 202?</li>
</ul>
<p style="padding-left: 60px;">Router1(config)#access-list 88 permit 192.168.0.0 0.0.0.255<br />
Router1(config)#router ospf X<br />
Router1(config)#distance 202 0.0.0.0 255.255.255.255 88</p>
<ul>
<li>Is it possible to set the AD of different OSPF routes types like intra-area and interarea?</li>
</ul>
<p style="padding-left: 60px;">Yes.  You can give it the old <em>distance ospf inter-area X</em> to change the AD.  It also works for intra-area and external routes.</p>
<ul>
<li>Is it possible to set the AD of an external OSPF route to 192.168.100.0/24 to 202 without changing the others?</li>
</ul>
<p style="padding-left: 60px;">I would have though you could use a route-map for that, but I can&#8217;t find a proper <em>set</em> command in a route-map.  [A little help, please.]</p>
<div class="wp-about-author-containter-around" style="background-color:#ffffff;"><div class="wp-about-author-pic"><img alt='' src='http://1.gravatar.com/avatar/14352aa939196349e4b9f2a272ca5112?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><div class="wp-about-author-text"><h3><a href='http://aconaway.com/author/jac/' title='Aaron Conaway'>Aaron Conaway</a></h3><p>I like to lean my head to the left, hit it with the palm of my right hand, and document what knowledge falls out.</p><p><a href='http://aconaway.com' title='Aaron Conaway'>Website</a> - <a href='http://aconaway.com/author/jac/' title='More posts by Aaron Conaway'>More Posts</a> </p></div></div>]]></content:encoded>
			<wfw:commentRss>http://aconaway.com/2010/07/17/route-notes-further-igp-redistribution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ROUTE Notes &#8211; Even More IGP Redistribution</title>
		<link>http://aconaway.com/2010/07/16/route-notes-even-more-igp-redistribution/</link>
		<comments>http://aconaway.com/2010/07/16/route-notes-even-more-igp-redistribution/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 04:05:10 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[ccnp]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[route]]></category>
		<category><![CDATA[642-902]]></category>
		<category><![CDATA[eigrp]]></category>
		<category><![CDATA[ospf]]></category>
		<category><![CDATA[redistribution]]></category>
		<category><![CDATA[test]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=909</guid>
		<description><![CDATA[Since I didn't do too well on the test, here are some more notes on IGP redistribution.]]></description>
			<content:encoded><![CDATA[<p>I didn&#8217;t do so well on IGP redistribution the last time out, so here&#8217;s some more stuff to study.  As always, feel free to correct.</p>
<p><strong>Study Questions</strong></p>
<ul>
<li>What three things are needed to be able to redistribute one routing protocol into another?</li>
</ul>
<p style="padding-left: 60px;">1.  One or more links into each routing protocol<br />
2.  A proper, working config for each protocol<br />
3.  The addition of the <em>redistribute</em> command to one or more of the protocols</p>
<ul>
<li>You just configured OSPF to redistribute EIGRP routes, but EIGRP, with the <em>network</em> statement of <em>network 0.0.0.0 0.0.0.0</em>, is configured with a passive interface.  Does this interface&#8217;s connected network get redistributed?</li>
</ul>
<p style="padding-left: 60px;">Yes, it does.  Even if it&#8217;s not participating in routing, it&#8217;s still an interface that EIGRP is configured to use, so it goes along for a ride on the redistribution train.</p>
<ul>
<li>Name three ways to set the metric of redistributed routes in EIGRP.</li>
</ul>
<p style="padding-left: 60px;">1.  <em>default-metric &#8230;<br />
</em>2.  <em>redistribute X metric &#8230;<br />
</em>3.  <em>redistribute X route-map &#8230;</em></p>
<ul>
<li>How can I set the metric for all OSPF routes redistributed into EIGRP?</li>
</ul>
<p style="padding-left: 60px;">Use the <em>redistribute ospf X metric</em> command.</p>
<ul>
<li>You are redistributing OSPF into EIGRP and want to set the metric of one particular route to another set of metric values (BW, delay, etc.).  How do you do that?</li>
</ul>
<p style="padding-left: 60px;">Use a route-map to match the single route and to set the new values.</p>
<ul>
<li>Routes from what routing protocol need a metric set when redistributing into EIGRP?  Routes from what protocols don&#8217;t?</li>
</ul>
<p style="padding-left: 60px;">Routes from another EIGRP instance have their metrics copied over; all others need to have it set.</p>
<ul>
<li>What&#8217;s the default metric of a BGP route when redistributed into OSPF?  EIGRP?</li>
</ul>
<p style="padding-left: 60px;">BGP has a metric of 1 in OSPF.  There is not default metric in EIGRP without some configuration.</p>
<ul>
<li>You left out the <em>subnet</em> keyword when redistributing EIGRP into OSPF.  What is the result?</li>
</ul>
<p style="padding-left: 60px;">Only classful routes will be redistributed and only if EIGRP has a classful route to redistribute.</p>
<ul>
<li>You left out the <em>subnet</em> keyword when redistributing OSPF into EIGRP .  What is the result?</li>
</ul>
<p style="padding-left: 60px;">There is no <em>subnet</em> keyword for redistribution under EIGRP.</p>
<ul>
<li>Routes from what routing protocol need a metric set when redistributing  into OSPF?  Routes from what protocols don&#8217;t?</li>
</ul>
<p style="padding-left: 60px;">OSPF set metrics automatically.  If the route came from another OSPF process, the metric is copied over.  If the route came from BGP, the metric is set to 1; if it came from any other routing protocol, the metric is set to 20.</p>
<ul>
<li>What are three ways to manipulate the metric of redistributed routes in OSPF?</li>
</ul>
<p style="padding-left: 60px;">1.  <em>default-metric &#8230;</em><br />
2.  <em>redistribute X metric &#8230;</em><br />
3.  <em>redistribute X route-map &#8230;</em></p>
<ul>
<li>My ASBR is advertising static routes into area 0, but I&#8217;m not seeing any type-5 LSAs in area 1.  What&#8217;s gives?</li>
</ul>
<p style="padding-left: 60px;">Assuming everything else is configured correctly and no filtering is done, area 1 is probably a stub area of some kind.</p>
<ul>
<li>My ASBR is advertising static routes into area 1, but I&#8217;m not seeing any type-5 LSAs in that area.  What gives?</li>
</ul>
<p style="padding-left: 60px;">Area 1 is probably an NSSA or totally NSSA area, so any external routes are flooded as type-7s &#8211; note type-5s.</p>
<ul>
<li>If I look at the OSPF database on my router, I see that a whole bunch of type-5 LSAs advertised from the router with the ID of 1.1.1.1.  What does that say about that router?</li>
</ul>
<p style="padding-left: 60px;">Among other things, that router is an ASBR and is redistributing external routes into that area.</p>
<ul>
<li>I see several routes in the OSPF database with a cost of 20.  What metric type are those routes?</li>
</ul>
<p style="padding-left: 60px;">More likely than not, they are type-2 routes (O E2).</p>
<ul>
<li>I have two type-5 LSAs for the same network through two different ABRs; both are of the type-2 metric.  How does the router decide which one to use?</li>
</ul>
<p style="padding-left: 60px;">Since both routes are E2, they will have a metric of 20 (unless manipulated somehow), so looking at the intra-area cost results in a tie.  The router will then look at the type-4 LSAs which contain the cost from the ABR to the ASBR.  Since each ABR floods these type-4s, the router knows which ABR is closer to the ASBR advertising the route.  The lower metric in the type-4 LSAs wins.</p>
<ul>
<li>I have two type-5 LSAs for the same network through two different ABRs; both are of the type-1 metric.  How does the router decide which one to use?</li>
</ul>
<p style="padding-left: 60px;">Since both routes are E1, the costs to the ABR are first compared since they may be different.  If tied, the type-4 LSA&#8217;s cost to the ASBR is compared.  If still tied, the external (type-5 LSAs) cost is compared.</p>
<ul>
<li>I have two type-5 LSAs for the same network through two different ABRs; one is type-1 and the other is type-2 ?  How does the router decide which one to  use?</li>
</ul>
<p style="padding-left: 60px;">E1 routes are always preferred over E2 routes.</p>
<ul>
<li>Why can&#8217;t you redistribute static routes into a stubby network?  How can you make it work?</li>
</ul>
<p style="padding-left: 60px;">Stub networks do not flood type-5 LSAs, so the routes cannot be advertised into the area.  You can change it to a regular area to make it work.  You can also make it an NSSA or totally NSSA area.</p>
<ul>
<li>How do OSPF routes that come from type-7 LSAs appear in the routing table?</li>
</ul>
<p style="padding-left: 60px;">They appear as &#8220;O N1&#8243; or &#8220;O N2&#8243; depending on the metric type.</p>
<div class="wp-about-author-containter-around" style="background-color:#ffffff;"><div class="wp-about-author-pic"><img alt='' src='http://1.gravatar.com/avatar/14352aa939196349e4b9f2a272ca5112?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><div class="wp-about-author-text"><h3><a href='http://aconaway.com/author/jac/' title='Aaron Conaway'>Aaron Conaway</a></h3><p>I like to lean my head to the left, hit it with the palm of my right hand, and document what knowledge falls out.</p><p><a href='http://aconaway.com' title='Aaron Conaway'>Website</a> - <a href='http://aconaway.com/author/jac/' title='More posts by Aaron Conaway'>More Posts</a> </p></div></div>]]></content:encoded>
			<wfw:commentRss>http://aconaway.com/2010/07/16/route-notes-even-more-igp-redistribution/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>ROUTE Notes &#8211; Routing IPv6</title>
		<link>http://aconaway.com/2010/06/29/route-notes-routing-ipv6/</link>
		<comments>http://aconaway.com/2010/06/29/route-notes-routing-ipv6/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 02:34:20 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[ccnp]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[route]]></category>
		<category><![CDATA[642-902]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[eigrp]]></category>
		<category><![CDATA[ipv6]]></category>
		<category><![CDATA[ospf]]></category>
		<category><![CDATA[redistribution]]></category>
		<category><![CDATA[RIP]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=872</guid>
		<description><![CDATA[I guess we would eventually discuss routing IPv6.  It was inevitable.]]></description>
			<content:encoded><![CDATA[<p><strong>Study Questions</strong></p>
<ul>
<li>Why would anyone develop a version of RIP that supports IPv6?</li>
</ul>
<p style="padding-left: 60px;">I have no idea.  Boredom, maybe.  Whatever the case, it works just like RIPv2, which is pretty scary.</p>
<ul>
<li>In EIGRP for IPv4, there are several requirements for two routers to neighbor up.  Which of those is not true for EIGRP for IPv6?</li>
</ul>
<p style="padding-left: 60px;">The two routers don&#8217;t need to be in the same subnet.  The concept of the link local address takes care of that need since neighbors always share a common medium like an Ethernet segment or a serial link.</p>
<ul>
<li>I configured EIGRP for IPv6 on my completely IPv6 router, but it&#8217;s not working.  Nothing happens.  What&#8217;s going on?</li>
</ul>
<p style="padding-left: 60px;">For one, you have to do a <em>no shutdown</em> as an EIGRP subcommand; by default, EIGRP for IPv6 is in a shutdown state.  Another reason could be that a router ID hasn&#8217;t been set; EIGRP for IPv6 still uses the IPv4 addresses to establish a router ID, so you may have to set one manually.</p>
<ul>
<li>I tried to configure EIGRP for IPv6 with the <em>network</em> statements, but it&#8217;s not taking the command.  What gives?</li>
</ul>
<p style="padding-left: 60px;">You actually configure EIGRP for IPv6 (and RIPng and OSPFv3) the &#8220;new way&#8221; by using the interfaces.  Try doing a <em>ipv6 eigrp X</em> as an interface subcommand.</p>
<ul>
<li>When redistributing one IPv6 IGP into another, what kinds of routes will and won&#8217;t be redistributed?</li>
</ul>
<p style="padding-left: 60px;">Only routes discovered via the original IGP will be redistributed.  Connected routes, even the ones configured in the original IGP, won&#8217;t be redistributed.  Link local addresses and local routes will also NOT be redistributed.</p>
<ul>
<li>Show me a simple RIPng config.</li>
</ul>
<p style="padding-left: 60px;">R1(config)#ipv6 router rip PROC-NAME<br />
R1(config-rtr)#int f0/0<br />
R1(config-if)#ipv6 rip PROC-NAME enable</p>
<ul>
<li>Show me a simple EIGRP for IPv6 config.</li>
</ul>
<p style="padding-left: 60px;">R1(config)#ipv6 router eigrp 8<br />
R1(config-rtr)#router-id 1.1.1.1<br />
R1(config-rtr)#no shutdown<br />
R1(config-rtr)#int f0/0<br />
R1(config-if)#ipv6 eigrp 8</p>
<ul>
<li>Show me a simple OSPFv3 config.</li>
</ul>
<p style="padding-left: 60px;">R1(config)#ipv6 router ospf 4<br />
R1(config-rtr)#router-id 1.1.1.1<br />
R1(config-rtr)#int f0/0<br />
R1(config-if)#ipv6 ospf 4 area 0</p>
<ul>
<li>How do you include connected routes when redistributing one IGP into another in IPv6?</li>
</ul>
<p style="padding-left: 60px;">Use the <em>include-connected</em> directive in the redistribution command.</p>
<ul>
<li>In EIGRP for IPv6, what address shows up as the next hop in the routing table?</li>
</ul>
<p style="padding-left: 60px;">The link local address of the advertising router.</p>
<p><strong>What Command Was That</strong></p>
<p>What command is used to&#8230;</p>
<ul>
<li>&#8230;show all the IPv6 routes?</li>
</ul>
<p style="padding-left: 60px;">show ipv6 route</p>
<ul>
<li>&#8230;shows the status of OSPFv3 neighbors?</li>
</ul>
<p style="padding-left: 60px;">show ipv6 ospf neighbor</p>
<ul>
<li>&#8230;shows the status of RIPng neighbors?</li>
</ul>
<p style="padding-left: 60px;">There is none; RIPng doesn&#8217;t have neighbors.</p>
<ul>
<li>&#8230;shows a route to a specific prefix?</li>
</ul>
<p style="padding-left: 60px;">show ipv6 route prefix::/length</p>
<div class="wp-about-author-containter-around" style="background-color:#ffffff;"><div class="wp-about-author-pic"><img alt='' src='http://1.gravatar.com/avatar/14352aa939196349e4b9f2a272ca5112?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><div class="wp-about-author-text"><h3><a href='http://aconaway.com/author/jac/' title='Aaron Conaway'>Aaron Conaway</a></h3><p>I like to lean my head to the left, hit it with the palm of my right hand, and document what knowledge falls out.</p><p><a href='http://aconaway.com' title='Aaron Conaway'>Website</a> - <a href='http://aconaway.com/author/jac/' title='More posts by Aaron Conaway'>More Posts</a> </p></div></div>]]></content:encoded>
			<wfw:commentRss>http://aconaway.com/2010/06/29/route-notes-routing-ipv6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ROUTE Notes &#8211; More IGP Redistribution</title>
		<link>http://aconaway.com/2010/06/22/route-notes-more-igp-redistribution/</link>
		<comments>http://aconaway.com/2010/06/22/route-notes-more-igp-redistribution/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 03:22:14 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[ccnp]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[route]]></category>
		<category><![CDATA[642-902]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[eigrp]]></category>
		<category><![CDATA[igp]]></category>
		<category><![CDATA[ospf]]></category>
		<category><![CDATA[redistribution]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=858</guid>
		<description><![CDATA[I continue to love shoving one IGP route down another IGP's throat.]]></description>
			<content:encoded><![CDATA[<p>As always, feel free to correct.</p>
<p><strong>Study Notes</strong></p>
<ul>
<li>When a router redistributes from one routing protocol to another, where does the router get the list of routes to redistribute?</li>
</ul>
<p style="padding-left: 60px;">From the routing table.  Only IGP A&#8217;s routes (not topology or successors) are redistributed into IGP B&#8217;s domain.</p>
<ul>
<li>What are two methods of filtering redistributed routes?</li>
</ul>
<p style="padding-left: 60px;">Use a <em>route-map</em> in the <em>redistribute </em>line or a <em>distribute-list</em>.</p>
<ul>
<li>Of the two methods for filtering, which one has more options?</li>
</ul>
<p style="padding-left: 60px;">The route-map method has more options.  You can match on all sorts of stuff, including an ACL or interface, and filter based on that.</p>
<ul>
<li>How does using <em>distribute-lists</em> differ between OSPF and EIGRP?</li>
</ul>
<p style="padding-left: 60px;">In EIGRP, <em>distribute-lists</em> are used to keep a route from being propagated.  In OSPF, they&#8217;re used to keep routes from reaching the routing table.  The effect is basically the same, but the cause is very different.</p>
<ul>
<li>How do I redistribute an EIGRP into OSPF as an E1?</li>
</ul>
<p style="padding-left: 60px;">You can set that that in the <em>redistribute</em> command.  You can also match a <em>route-map</em> and set the metric-type there.</p>
<ul>
<li>What is a big pitfall of having two routes mutually redistribute the same two IGPs?</li>
</ul>
<p style="padding-left: 60px;">A router could redistribute IGP A&#8217;s routes into IGP B where the second router redistributes them back into IGP A.  Potentially, either router could choose very long routes to get to a destination based on the different ADs and metrics of the IGPs.</p>
<ul>
<li>How can I keep this domain loop from happening?</li>
</ul>
<p style="padding-left: 60px;">Set the metrics of the redistributed routes so that the originating IGP has the preferred path<br />
Set the AD on the redistributed routes so that the  originating IGP has the preferred path<br />
Manually filter routes so one IGP isn&#8217;t presented with its own routes<br />
Use <em>route-tags</em> to mark redistributed routes to filter or manipulate later</p>
<ul>
<li>How do you change the metrics of the routes?</li>
</ul>
<p style="padding-left: 60px;">You can use the <em>redistribute</em> command to set the metrics.  You can also use route-maps to match routes or tags and set the metric.</p>
<ul>
<li>How do I change the AD of the routes?</li>
</ul>
<p style="padding-left: 60px;">You can use the <em>distance</em> subcommand to set the AD on the whole domain or from a specific originating (or redistributing) router.</p>
<ul>
<li>How do I change the AD for route from 1.1.1.1 to 201?</li>
</ul>
<p style="padding-left: 60px;">R1(config-router)#distance 201 1.1.1.1 0.0.0.0</p>
<ul>
<li>How do I set a route-tag?</li>
</ul>
<p style="padding-left: 60px;">Use a route-map to match the routes you want to tag, and use the <em>set tag</em> directive.</p>
<ul>
<li>How does using EIGRP as one of my IGPs help me with mutual redistribution on multiple routers?</li>
</ul>
<p style="padding-left: 60px;">EIGRP actually has two ADs &#8211; 90 for internal and 170 for external routes.  If a route is redistributed into EIGRP, it will have an AD of 170, so it will be less preferred than interal EIGRP, OSPF, or RIP routes.  Unless you&#8217;re using internal BGP or custom ADs, this will keep a looping route out of the routing table and, thus, from being redistributed.</p>
<ul>
<li>How does using OSPF as one of my IGPs help me with mutual redistribution on multiple routers?</li>
</ul>
<p style="padding-left: 60px;">You may be able to use the metric-types to do some filtering, but the cool AD thing is for EIGRP only.  Since external OSPF routes have an AD of 110 just like internal routes, you can&#8217;t rely on AD to keep the looping routes out like you can with EIGRP.</p>
<ul>
<li>How does using RIP as one of my IGPs help me with mutual redistribution on multiple routers?</li>
</ul>
<p style="padding-left: 60px;">RIP never helped anyone with anything.  Just convert your RIP routers to EIGRP and be much happier.</p>
<ul>
<li>What&#8217;s a quick way to have OSPF set all external routes to an AD of 201?</li>
</ul>
<p style="padding-left: 60px;">R1(config-router)#distance ospf external 201</p>
<ul>
<li>What happens if I have OSPF redistributing into EIGRP redistributing into RIP (all mutually)?</li>
</ul>
<p style="padding-left: 60px;">You may wind up with a VERY long path without some intervention.  You&#8217;ll need to do some filtering on the redistribution to keep routes short.</p>
<ul>
<li>Can&#8217;t I just use the <em>redistribute</em> command to set metrics coming in and out of all the IGPs to keep the looping routes out?</li>
</ul>
<p style="padding-left: 60px;">Yes, you can.  If you have a small network, that shouldn&#8217;t be a problem.  If you have a couple thousand routes, though, I&#8217;m sure people have better things to do than manage metrics.</p>
<ul>
<li>In what order do you configure the metrics when redistributing into EIGRP?</li>
</ul>
<p style="padding-left: 60px;">Bandwidth, delay, reliability, load, and MTU</p>
<ul>
<li>What&#8217;s weird about an extended ACL when using them with route filtering?</li>
</ul>
<p style="padding-left: 60px;">When matching routes, an extended ACL will use the ACL&#8217;s source field as the network of the route and the destination field as the subnet mask.  For example, <em>access-list 101 permit ip host 172.16.0.0 host 255.255.255.0</em> matches 172.16.0.0/24.</p>
<ul>
<li>What can&#8217;t <em>route-maps</em> do other clean the dishes?</li>
</ul>
<p style="padding-left: 60px;">They&#8217;re used in many, many places on a Cisco router.  I imagine there&#8217;s a macro somewhere that will clean the dishes, though.</p>
<p><strong>What Command Was That</strong></p>
<p>What command&#8230;</p>
<ul>
<li>&#8230;shows the metric of the route you just redistributed into EIGRP?</li>
</ul>
<p style="padding-left: 60px;">show ip eigrp topology</p>
<ul>
<li>&#8230;shows the metric of the route you just redistributed into OSPF?</li>
</ul>
<p style="padding-left: 60px;">show ip ospf database external</p>
<ul>
<li>&#8230;shows the tag of a route?</li>
</ul>
<p style="padding-left: 60px;">show ip route</p>
<ul>
<li>&#8230;shows the admin distances you&#8217;ve messed up?</li>
</ul>
<p style="padding-left: 60px;">show ip protocols</p>
<ul>
<li>&#8230;shows the admin distance of a particular route?</li>
</ul>
<p style="padding-left: 60px;">show ip route x.x.x.x y.y.y.y</p>
<div class="wp-about-author-containter-around" style="background-color:#ffffff;"><div class="wp-about-author-pic"><img alt='' src='http://1.gravatar.com/avatar/14352aa939196349e4b9f2a272ca5112?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><div class="wp-about-author-text"><h3><a href='http://aconaway.com/author/jac/' title='Aaron Conaway'>Aaron Conaway</a></h3><p>I like to lean my head to the left, hit it with the palm of my right hand, and document what knowledge falls out.</p><p><a href='http://aconaway.com' title='Aaron Conaway'>Website</a> - <a href='http://aconaway.com/author/jac/' title='More posts by Aaron Conaway'>More Posts</a> </p></div></div>]]></content:encoded>
			<wfw:commentRss>http://aconaway.com/2010/06/22/route-notes-more-igp-redistribution/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ROUTE Notes &#8211; IGP Redistribution</title>
		<link>http://aconaway.com/2010/06/21/route-notes-igp-redistribution/</link>
		<comments>http://aconaway.com/2010/06/21/route-notes-igp-redistribution/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 02:10:36 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[ccnp]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[route]]></category>
		<category><![CDATA[642-902]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[eigrp]]></category>
		<category><![CDATA[ospf]]></category>
		<category><![CDATA[redistribution]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=853</guid>
		<description><![CDATA[I love shoving EIGRP into OSPF and vice versa.  It makes me feel powerful.]]></description>
			<content:encoded><![CDATA[<p>As always, feel free to correct.</p>
<p><strong>Study Questions</strong></p>
<ul>
<li>When you redistribute OSPF into EIGRP, what are you really redistributing?</li>
</ul>
<p>Routes knows via OSPF<br />
Networks of OSPF-enabled interfaces</p>
<ul>
<li>What&#8217;s the default cost of an EIGRP route redistributed into OSPF?</li>
</ul>
<p style="padding-left: 60px;">20</p>
<ul>
<li>What&#8217;s the default metric of an OSPF route redistributed into EIGRP?</li>
</ul>
<p style="padding-left: 60px;">There is none since EIGRP has all those nifty k-values that have to be processed.  Routes actually won&#8217;t redistribute without them.</p>
<ul>
<li>How do you set the metrics of a route redistributed into EIGRP?</li>
</ul>
<p style="padding-left: 60px;">Set the default metric with the <em>default-metric</em> subcommand<br />
Set the metric in the <em>redistribute &#8230; metric</em> subcommand<br />
Set the metric with a route-map in the <em>redistribute &#8230; route-map</em> subcommand</p>
<ul>
<li>If you have a default metric set under EIGRP and a metric set on a redistribution of OSPF, which does the router use?</li>
</ul>
<p style="padding-left: 60px;">The router uses the metric for the redistribution.</p>
<ul>
<li>What&#8217;s special about the metric when redistributing one EIGRP AS into another?</li>
</ul>
<p style="padding-left: 60px;">The metric is copied from one AS to the other.</p>
<ul>
<li>What is I redistribute one OSPF domain into another?</li>
</ul>
<p style="padding-left: 60px;">The same thing happens &#8211; the metric is copied from the originating domain.</p>
<ul>
<li>What&#8217;s the difference in AD between an EIGRP and an external EIGRP route?</li>
</ul>
<p style="padding-left: 60px;">EIGRP: 90<br />
External EIGRP: 170  [Didn't I do a blog post about this last month?]</p>
<ul>
<li>What&#8217;s the difference between an external type 1 and  an external type 2 OSPF route?</li>
</ul>
<p style="padding-left: 60px;">External 2 routes, only the external cost is used; no router increments the cost.  For external 1 routes, the external cost is incremented by each route with the internal cost.</p>
<ul>
<li>Which of O E1 and O E2 routes is more preferred and why?</li>
</ul>
<p style="padding-left: 60px;">E1s are preferred because they&#8217;re considered more accurate.  [Didn't I blog on this last month, too?]</p>
<ul>
<li>I have <em>redistribute eigrp 1</em> configured in my OSPF config, but 10.0.0.0/24 isn&#8217;t showing up in OSPF.  What gives?</li>
</ul>
<p style="padding-left: 60px;">OSPF only redistributes classful routes unless you add the <em>subnets</em> option to the redistribution command.</p>
<ul>
<li>What are the options in the <em>redistribute</em> directive when redistributing OSPF into EIGRP?</li>
</ul>
<p style="padding-left: 60px;">redistribute ospf <em>process-id</em> [ metric <em>bandwidth delay reliabilityload  mtu</em> ] [ match { <em>internal </em>| <em>nssa-external</em> | <em>external 1 </em>| <em>external 2 </em>} ] [ tag <em>tag-value</em> ] [ route-map <em>route-map</em> ]</p>
<ul>
<li>What are the options in the <em>redistribute</em> directive when redistributing EIGRP into OSPF?</li>
</ul>
<p style="padding-left: 60px;">redistribute ospf <em>process-id</em> [ metric <em>metric</em> ] [ metric-type <em>metric-type</em> ] [ match { <em>internal </em>|<em>nssa-external</em> | <em>external 1 </em>| <em>external 2 </em>} ] [ tag <em>tag-value</em> ] [ route-map <em>route-map</em> ] [ subnets ]</p>
<ul>
<li>What do type-4 LSAs do?</li>
</ul>
<p style="padding-left: 60px;">If an external route comes from another area, the ABR uses type-4 LSAs to advertise the cost of the route from the ABR to the ASBR.  Routes use this cost as a tie breaker if the internal cost is the same from two ABRs.</p>
<ul>
<li>What type of LSA are used to flood routing advertisements from an external NSSA area into area 0?</li>
</ul>
<p style="padding-left: 60px;">The NSSA ASBR uses type-7s to flood into the NSSA, but the ABR to area 0 converts those to type-5s.</p>
<p><strong>What Command Was That</strong></p>
<p>What command&#8230;</p>
<ul>
<li>&#8230;show all the EIGRP routes that originated from other routing protocols?</li>
</ul>
<p style="padding-left: 60px;">show ip route eigrp | inc ^D EX</p>
<ul>
<li>&#8230;shows all the OSPF routes that originated from other routing protocols?</li>
</ul>
<p style="padding-left: 60px;">show ip route ospf | incl ^O E[12]</p>
<ul>
<li>&#8230;show all the type-4 LSAs floating around in an OSPF area?</li>
</ul>
<p style="padding-left: 60px;">show ip ospf database asbr-summary</p>
<ul>
<li>&#8230;show the cost to get from a router to an ASBR?</li>
</ul>
<p style="padding-left: 60px;">show ip ospf border-routers</p>
<div class="wp-about-author-containter-around" style="background-color:#ffffff;"><div class="wp-about-author-pic"><img alt='' src='http://1.gravatar.com/avatar/14352aa939196349e4b9f2a272ca5112?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><div class="wp-about-author-text"><h3><a href='http://aconaway.com/author/jac/' title='Aaron Conaway'>Aaron Conaway</a></h3><p>I like to lean my head to the left, hit it with the palm of my right hand, and document what knowledge falls out.</p><p><a href='http://aconaway.com' title='Aaron Conaway'>Website</a> - <a href='http://aconaway.com/author/jac/' title='More posts by Aaron Conaway'>More Posts</a> </p></div></div>]]></content:encoded>
			<wfw:commentRss>http://aconaway.com/2010/06/21/route-notes-igp-redistribution/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

