<?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>Not something you want to hear</description>
	<lastBuildDate>Wed, 08 Sep 2010 14:39:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<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>]]></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>]]></content:encoded>
			<wfw:commentRss>http://aconaway.com/2010/07/16/route-notes-even-more-igp-redistribution/feed/</wfw:commentRss>
		<slash:comments>3</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>]]></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>]]></content:encoded>
			<wfw:commentRss>http://aconaway.com/2010/06/22/route-notes-more-igp-redistribution/feed/</wfw:commentRss>
		<slash:comments>0</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>]]></content:encoded>
			<wfw:commentRss>http://aconaway.com/2010/06/21/route-notes-igp-redistribution/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>ROUTE Notes &#8211; Controlling Routes in EIGRP</title>
		<link>http://aconaway.com/2010/06/17/route-notes-controlling-routes-in-eigr/</link>
		<comments>http://aconaway.com/2010/06/17/route-notes-controlling-routes-in-eigr/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 22:04:26 +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[filtering]]></category>
		<category><![CDATA[summarization]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=818</guid>
		<description><![CDATA[Here are my EIGRP notes on route summarization and filtering.]]></description>
			<content:encoded><![CDATA[<p>Corrections welcome.</p>
<p><strong>Study Questions</strong></p>
<ul>
<li>Why would you ever want to summarize routes?</li>
</ul>
<p style="padding-left: 60px;">Summarizing routes minimizes the routes advertised to the network.  For example, instead of advertising 192.168.0.0/24, 192.168.1.0/24…192.168.n.0/24, a router can advertise a single route to 192.168.0.0/16.  Keeping routing tables small saves hardware resources, minimizes convergence times, helps avoid route flapping, and makes the routing table easier to read for humans.</p>
<ul>
<li>When will an EIGRP router auto-summarize a route?</li>
</ul>
<p style="padding-left: 60px;">If a router has interfaces that that are in different classes of network (Class A, B, C), then that router will auto-summarize those routes up to the classful boundary.  For example, if you have a 10.0.0.1/24 and a 192.168.100.1/30, the router will advertise 10.0.0.0/8 and 192.168.100.0/24.</p>
<ul>
<li>You have two routers advertising the same summarized route.  How do you make one preferred over the other?</li>
</ul>
<p style="padding-left: 60px;">Adjust the delay or bandwidth so one is favored.</p>
<ul>
<li>What is suboptimal forwarding in regards to summarization?</li>
</ul>
<p style="padding-left: 60px;">A summary route could be advertised from a router that&#8217;s not in the optimal path to the destination.  If that route is chosen by a downstream router, traffic is passed to that router instead of a more optimal path through another router.</p>
<ul>
<li>How do you avoid suboptimal forwarding in regards to summarization?</li>
</ul>
<p style="padding-left: 60px;">Disable summarization.  Advertising real networks will result in the optimal path being calculated.</p>
<ul>
<li>How do you manually summarize the route 192.168.100.0/22?</li>
</ul>
<p style="padding-left: 60px;">R1(config-if)#ip summary-address eigrp 1 192.168.100.0 255.255.252.0</p>
<ul>
<li>When will a summarized route stop being advertised by a router?</li>
</ul>
<p style="padding-left: 60px;">When the router no longer has any routes that fall inside the summary route, the summary is removed.  That is, if a router is advertising 192.168.100.0/22, the route will be removed if the router no longer has ANY routes that are in the 192.168.10[0123].0 networks.</p>
<ul>
<li>What’s the biggest route a router can summarize?</li>
</ul>
<p style="padding-left: 60px;">The default route.</p>
<ul>
<li>What are two ways to advertise a default route in EIGRP?</li>
</ul>
<p style="padding-left: 60px;">Advertise a static default route through <em>redistribute static</em><br />
Summarize <em>0/0</em> out of an interface</p>
<ul>
<li>How do you keep one part of the network from having a route to another part of the network?</li>
</ul>
<p style="padding-left: 60px;">This is done with route filtering.</p>
<ul>
<li>When configuring route filtering in EIGRP, what&#8217;s the big keyword?</li>
</ul>
<p style="padding-left: 60px;"><em>distribute-list</em></p>
<ul>
<li>What are the three techniques for filtering routes?</li>
</ul>
<p style="padding-left: 60px;">ACLs<br />
Prefix lists<br />
Route-maps</p>
<ul>
<li>Do you mean to tell me that route filtering also uses ACLs and route-maps?</li>
</ul>
<p style="padding-left: 60px;">Yes.  Welcome to Cisco Systems.</p>
<ul>
<li>How do you use an ACL to filter out the route 192.168.0.0/24?</li>
</ul>
<blockquote>
<pre style="padding-left: 60px;">access-list 1 deny 192.168.0.0 0.0.0.255
access-list 1 permit any
router eigrp 1
 distribute-list 1 out</pre>
</blockquote>
<ul>
<li>How do you use a prefix list to filter out the route 192.168.0.0/24?</li>
</ul>
<blockquote>
<pre style="padding-left: 60px;">ip prefix-list PL1 deny 192.168.0.0/24
ip preffix-list PL1 permit 0.0.0.0/0 le 32
router eigrp 1
 distribute-list prefix PL1 out</pre>
</blockquote>
<ul>
<li>How do you use a route-map to filter out the route 192.168.0.0/24?</li>
</ul>
<blockquote>
<pre style="padding-left: 60px;">access-list 1 permit 192.168.0.0 0.0.0.255
route-map RM1 deny 10
 match ip address 1
route-map RM1 permit 999
router eigrp 1
 distribute-list route-map RM1 out</pre>
</blockquote>
<p style="padding-left: 60px;">-OR-</p>
<blockquote>
<pre style="padding-left: 60px;">ip prefix-list PL1 permit 192.168.0.0/24
route-map RM1 deny 10
 match ip address prefix-list PL1
route-map RM1 permit 999
router eigrp 1
 distribute-list route-map RM1 out</pre>
</blockquote>
<p><strong>What Command Was That?</strong></p>
<p>What command…</p>
<ul>
<li>…shows you the prefix lists configured?</li>
</ul>
<p style="padding-left: 60px;">show ip prefix-list</p>
<ul>
<li>…shows the summary route being advertised for a particular network?</li>
</ul>
<p style="padding-left: 60px;">show ip route 192.168.0.0 255.255.0.0 longer-prefixes</p>
<ul>
<li>…shows what networks are being summarizes on a router?</li>
</ul>
<p style="padding-left: 60px;">show ip protocols</p>
<ul>
<li>…shows what route a router considers to be a default candidate?</li>
</ul>
<p style="padding-left: 60px;">show ip route (look for the *)</p>
<ul>
<li>…shows the default network?</li>
</ul>
<p style="padding-left: 60px;">show ip route</p>]]></content:encoded>
			<wfw:commentRss>http://aconaway.com/2010/06/17/route-notes-controlling-routes-in-eigr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ROUTE Notes &#8211; EIGRP Topology Stuff</title>
		<link>http://aconaway.com/2010/06/16/route-notes-eigrp-topology-stuff/</link>
		<comments>http://aconaway.com/2010/06/16/route-notes-eigrp-topology-stuff/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 03:36:51 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[ccnp]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[route]]></category>
		<category><![CDATA[842-902]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[eigrp]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=812</guid>
		<description><![CDATA[Here are some more EIGRP notes in the form of questions.]]></description>
			<content:encoded><![CDATA[<p><strong>Study Questions</strong></p>
<ul>
<li>How do you keep EIGRP from killing your WAN?</li>
</ul>
<p style="padding-left: 60px;">You can use the <em>ip bandwidth-percent eigrp AS X </em>command to limit the amount of bandwidth that EIGRP uses to update neighbors.</p>
<ul>
<li>How does EIGRP calculate how much bandwidth it can use for each frame relay PVC?</li>
</ul>
<p style="padding-left: 60px;">By default, EIGRP takes 50% of the (sub)interface&#8217;s configured bandwidth (with the <em>bandwidth</em> command) to use for updates on NBMA (non-broadcast mutliaccess) networks like frame relay.  This value is divided equally among all the PVC configured on that interface.</p>
<ul>
<li>Why should you use delay instead of bandwidth to manipulate EIGRP?</li>
</ul>
<p style="padding-left: 60px;">There are other mechanisms, like QoS, that use bandwidth, so changing that value would affect those mechanisms.  Only EIGRP uses delay.</p>
<ul>
<li>What&#8217;s the difference between the feasible distance (FD) and the reported (advertised) distance (RD)?</li>
</ul>
<p style="padding-left: 60px;">Feasible distance is the EIGRP metric value after the router has added it&#8217;s own information like bandwidth and delay to the formula.  The reported distance is what a router calculates before it has added it&#8217;s own values.  Essentially, the FD of one router is the RD of the next.</p>
<ul>
<li>What is an offset list?</li>
</ul>
<p style="padding-left: 60px;">An offset list is a way to artificially increment the FD  and RD of a route or set of routes.</p>
<ul>
<li>You can add the <em>load</em> k-value into the metric calculation in EIGRP, but it&#8217;s not generally a good idea.  Why?</li>
</ul>
<p style="padding-left: 60px;">The load is constantly changing as traffic changes on an interface.  This would cause a constant stream of updates as traffic flows change.</p>
<ul>
<li>How often does a router send its full EIGRP topology table?</li>
</ul>
<p style="padding-left: 60px;">When new neighbors come up, the neighbors exchange their full tables, but, from that point forward, only updates are sent.</p>
<ul>
<li>When we talk about bandwidth in EIGRP, what are we actually talking about?</li>
</ul>
<p style="padding-left: 60px;">The bandwidth is actually the bandwidth of the slowest link between a router and the destination network.  This is what&#8217;s used in the calculations.</p>
<ul>
<li>Assuming we&#8217;re using k1 and k3, what is the formula for calculating the metric?</li>
</ul>
<p style="padding-left: 60px;">metric = 256 * ( 10^7 / bandwidth [in kbps] + cumulative delay )</p>
<ul>
<li>You&#8217;ve decided to use k2 in your metric calculations, so you add that to a router.  What happens to all the neighbors?</li>
</ul>
<p style="padding-left: 60px;">The neighbors all drop and start generating a &#8220;K-value mismatch&#8221; error.</p>
<ul>
<li>What is a successor?  Feasible successor?</li>
</ul>
<p style="padding-left: 60px;">A successor is the EIGRP route for a particular network entry with the lowest metric.  This is the route that EIGRP submits to the routing table for inclusion.  A feasible successor (FS) is another EIGRP whose RD is lower than the successor&#8217;s FD; feasible successors can be used as an alternate path to a network if the successor goes away somehow.</p>
<ul>
<li>Where would you run into split horizon issues with EIGRP?</li>
</ul>
<p style="padding-left: 60px;">Split horizon says that you don&#8217;t advertise a route over the interface on which it was received.  If you have a multipoint WAN link of some kind, routes from one spoke won&#8217;t be passed to another spoke through the hub.</p>
<ul>
<li>In what unit is the <em>delay</em> directive?</li>
</ul>
<p style="padding-left: 60px;">Tens of microseconds (10 * usec).  That means that <em>delay 1000</em> is 10,000 usec, or 10 ms.</p>
<ul>
<li>How does EIGRP do unequal cost path load balancing?</li>
</ul>
<p style="padding-left: 60px;">You can set the <em>maximum-paths</em> value under EIGRP to set the maximum number of equal paths that can be used.  You also set the <em>variance</em> command there with a multiplier integer.  The variance is multiplied by the successor&#8217;s FD, and any feasible successor whose metric is less than this new number is considered equal cost.</p>
<ul>
<li>What is an EIGRP stub router?</li>
</ul>
<p style="padding-left: 60px;">A stub router only receives routes via EIGRP and does not send them to other EIGRP neighbors.  Since all the other routers know a router is a stub, they won&#8217;t send query messages to the stub router if they&#8217;re looking for a route.  This will cut down on time waiting in active state.</p>
<ul>
<li>What is &#8220;stuck in active&#8221;?</li>
</ul>
<p style="padding-left: 60px;">If a successor for a network becomes unavailable and there are no FSes, a router will query each of its neighbors for a new routes to that network.  If that router does not have a route, it will then ask its own neighbors, etc.  In the meantime, the original router is still waiting for everyone to answer (that is, the route is in the active state) and will wait patiently until that happens.  This could take a long time and result in a several-second outage to the queried network.</p>
<ul>
<li>By default, which types of routes are sent to EIGRP neighbors from a stub router?</li>
</ul>
<p style="padding-left: 60px;">Connected and summary</p>
<p><strong>What Command Was That?</strong></p>
<p>What command&#8230;</p>
<ul>
<li>&#8230;disables split horizon on an interface?</li>
</ul>
<p style="padding-left: 60px;">R1(config-if)#no ip split-horizon eigrp 1</p>
<ul>
<li>&#8230;sets the delay of an interface to 10ms?</li>
</ul>
<p style="padding-left: 60px;">R1(config-if)#delay 1000  (remember the tens of usec unit)</p>
<ul>
<li>&#8230;restricts the amount of bandwidth that EIGRP uses to 20% of the total bandwidth on an interface?</li>
</ul>
<p style="padding-left: 60px;">R1(config-if)#ip bandwidth-percent eigrp 1 20</p>
<ul>
<li>&#8230;apply an offset list to interface F0/0?</li>
</ul>
<p style="padding-left: 60px;">R1(config-router)#offset-list ACL in OFFSET F0/0</p>
<ul>
<li>&#8230;show the metrics of all the EIGRP routes a router has recieved for a network?</li>
</ul>
<p style="padding-left: 60px;">show ip eigrp topology 192.168.0.0/24</p>
<ul>
<li>&#8230;shows the successors and feasible successors for a network?</li>
</ul>
<p style="padding-left: 60px;">show ip eigrp topology 192.168.0.0/24</p>
<ul>
<li>&#8230;shows if a neighbor is a stub?</li>
</ul>
<p style="padding-left: 60px;">show ip eigrp neighbor detail</p>
<ul>
<li>&#8230;shows the <em>maximum-paths</em> and <em>variance </em>values?</li>
</ul>
<p style="padding-left: 60px;">show ip protocols</p>]]></content:encoded>
			<wfw:commentRss>http://aconaway.com/2010/06/16/route-notes-eigrp-topology-stuff/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>ROUTE Notes &#8211; EIGRP Neighbor Relationships</title>
		<link>http://aconaway.com/2010/06/16/route-notes-eigrp-neighbor-relationships/</link>
		<comments>http://aconaway.com/2010/06/16/route-notes-eigrp-neighbor-relationships/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 02:15:01 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[route]]></category>
		<category><![CDATA[642-902]]></category>
		<category><![CDATA[ccnp]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[eigrp]]></category>
		<category><![CDATA[test]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=808</guid>
		<description><![CDATA[I did my study notes in the form of questions this time.  I think it might help with the implementation and verification steps on the test.]]></description>
			<content:encoded><![CDATA[<p>Or neighborships, as they call it in the book.  What a terrible word.</p>
<p><strong>Study Questions</strong></p>
<ul>
<li>What settings must match between two routers in order to become EIGRP neighbors?</li>
</ul>
<p style="padding-left: 60px;">Both routers must be in the same primary subnet<br />
Both routers must be configured to use the same k-values<br />
Both routers must in the same AS<br />
Both routers must have the same authentication configuration (within reason)<br />
The interfaces facing each other must not be passive</p>
<ul>
<li>What are the default hello and hold times in EIGRP?</li>
</ul>
<p style="padding-left: 60px;">On links with bandwidth &gt; 1.544Mbps:<br />
Hello:  5 sec<br />
Hold:  15 sec</p>
<p style="padding-left: 60px;">On links with bandwidth &lt;= 1.544<br />
Hello:  60 sec<br />
Hold:  180 sec</p>
<ul>
<li>How do you change the hello and hold times?</li>
</ul>
<p style="padding-left: 60px;">You set these values at the interface.</p>
<p style="padding-left: 90px;">R1(config-if)#ip hello-interval eigrp 1 X<br />
R1(config-if)#ip hold-tim eigrp 1 X</p>
<ul>
<li>How do you keep an interface from being used for EIGRP discovery?</li>
</ul>
<p style="padding-left: 60px;">Don&#8217;t configure a network statement that includes that interface<br />
Make the interface passive<br />
Configure static neighbors for that interface</p>
<ul>
<li>Why might NTP be a good thing to use in regards to EIGRP?</li>
</ul>
<p style="padding-left: 60px;">EIGRP uses key chains for authentication.  Key chains can be configured with a range of valid dates and times.  If the time on two routers was off by even a few seconds, some keys would expire, causing neighbor relationships to drop.</p>
<ul>
<li>How do you configure EIGRP authentication?</li>
</ul>
<p style="padding-left: 60px;">In each interface participating in EIGRP, you configure the authentication mode and the key chain to use.</p>
<p style="padding-left: 90px;">R1(config-if)#ip authentication mode eigrp 1 md5<br />
R1(config-if)#ip authentication key-chain eigrp 1 KEYCHAIN1</p>
<ul>
<li> What are the k-values that EIGRP uses?</li>
</ul>
<p style="padding-left: 60px;">k1 = bandwidth<br />
k2 = load<br />
k3 = delay<br />
k4 = reliability<br />
k5 = MTU</p>
<ul>
<li>How does a router choose its router ID in EIGRP?</li>
</ul>
<p style="padding-left: 60px;">First, it looks for a configured router-id in the EIGRP configuration.  If none exists, it uses the highest (largest) IP address configured on a loopback interface.  If no loopbacks exist, it uses the highest IP configured on the other interfaces.</p>
<p><strong>What Command Was That?</strong></p>
<p>What command tells you&#8230;</p>
<ul>
<li>&#8230;whether a neighbor was discovered or statically configured?</li>
</ul>
<p style="padding-left: 60px;">show ip eigrp neighbor detail</p>
<ul>
<li>&#8230;what interfaces are involved in EIGRP?</li>
</ul>
<p style="padding-left: 60px;">show ip eigrp interfaces</p>
<ul>
<li>&#8230;what k-values your router is using?</li>
</ul>
<p style="padding-left: 60px;">show ip protocols</p>
<ul>
<li>&#8230;how long your router has been neighbored with another router?</li>
</ul>
<p style="padding-left: 60px;">show ip eigrp neighbors</p>
<ul>
<li>&#8230;what your router ID is?</li>
</ul>
<p style="padding-left: 60px;">show ip eigrp topology<br />
show ip eigrp accounting</p>
<ul>
<li>&#8230;a summary of the configured network statements?</li>
</ul>
<p style="padding-left: 60px;">show ip protocols</p>
<ul>
<li>&#8230;the configured hello interval?</li>
</ul>
<p style="padding-left: 60px;">show ip eigrp interface detail</p>
<ul>
<li>&#8230;the configured hold time?</li>
</ul>
<p style="padding-left: 60px;">There&#8217;s isn&#8217;t a way to do it directly.  You have to check your neighbors several times over the course of a few seconds to see where the hold timers drop to before resetting.</p>]]></content:encoded>
			<wfw:commentRss>http://aconaway.com/2010/06/16/route-notes-eigrp-neighbor-relationships/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stubby Post &#8211; show ip protocols</title>
		<link>http://aconaway.com/2010/06/09/stubby-post-show-ip-protocols/</link>
		<comments>http://aconaway.com/2010/06/09/stubby-post-show-ip-protocols/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 01:31:12 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[642-902]]></category>
		<category><![CDATA[bgp]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[eigrp]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[ospf]]></category>
		<category><![CDATA[protocols]]></category>
		<category><![CDATA[route]]></category>
		<category><![CDATA[show]]></category>
		<category><![CDATA[test]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=794</guid>
		<description><![CDATA[Here's a quick chunk of words on the show ip protocols command.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve seen and used the command before, but I&#8217;ve never really seen any use of the <em>show ip protocols</em> command until tonight while reading up for my ROUTE test.  There&#8217;s a lot of good information in the output, and, from the way the book is reading, this is a great candidate for use in a lab question.</p>
<p>To check it out a bit, I set up a small network with four routers connected only to a single Ethernet segment.  I set up one router to run EIGRP, OSPF, and BGP to each one of the other routers just so I could see the output for the different routing protocols.  Here&#8217;s what puked out after struggling with GNS for a few minutes.</p>
<blockquote>
<pre>R1#sh ip protocols
Routing Protocol is "eigrp 1"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Default networks flagged in outgoing updates
  Default networks accepted from incoming updates
  EIGRP metric weight K1=1, K2=0, K3=1, K4=0, K5=0
  EIGRP maximum hopcount 100
  EIGRP maximum metric variance 1
  Redistributing: eigrp 1
  EIGRP NSF-aware route hold timer is 240s
  Automatic network summarization is in effect
  Maximum path: 4
  Routing for Networks:
    192.168.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
  Distance: internal 90 external 170

Routing Protocol is "ospf 1"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Router ID 192.168.0.101
  Number of areas in this router is 1. 1 normal 0 stub 0 nssa
  Maximum path: 4
  Routing for Networks:
    192.168.0.0 0.0.0.255 area 0
 Reference bandwidth unit is 100 mbps
  Routing Information Sources:
    Gateway         Distance      Last Update
  Distance: (default is 110)

Routing Protocol is "bgp 65001"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  IGP synchronization is disabled
  Automatic route summarization is disabled
  Neighbor(s):
    Address          FiltIn FiltOut DistIn DistOut Weight RouteMap
    192.168.0.104
  Maximum path: 1
  Routing Information Sources:
    Gateway         Distance      Last Update
  Distance: external 20 internal 200 local 200</pre>
</blockquote>
<p>The EIGRP section shows some important details, including what k-values are used, networks configured, and administrative distance (AD) of the various route types (internal and external).  The OSPF section shows the router ID, number of areas on the router, and number of area types (normal, stub, NSSA), as well as the networks configured and the AD.  The section regarding BGP shows summarization status, neighbors (along with any filter lists, distribution lists, local weights, and route-maps if they were configured), and the ADs again.</p>
<p>That&#8217;s good stuff to know.  I&#8217;ll have to put that command in usual repertoire.</p>]]></content:encoded>
			<wfw:commentRss>http://aconaway.com/2010/06/09/stubby-post-show-ip-protocols/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ROUTE &#8211; Redistribution Nuance #2 &#8211; OSPF External Metric Types</title>
		<link>http://aconaway.com/2010/06/06/route-redistribution-nuance-2-ospf-external-metric-types/</link>
		<comments>http://aconaway.com/2010/06/06/route-redistribution-nuance-2-ospf-external-metric-types/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 22:10:57 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[ccnp]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[route]]></category>
		<category><![CDATA[842-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=763</guid>
		<description><![CDATA[I'm still looking at route redistribution, and the external route types threw me for a loop a bit.]]></description>
			<content:encoded><![CDATA[<p><a href="http://aconaway.com/2010/05/24/route-redistribution-nuance-1/">Last time</a>, we talked about a nifty little lab I set up for redistribution and how the OSPF ASBRs acted a little differently than I expected.  This time, let&#8217;s look at how changing external OSPF routes to a metric-type of 1 (E1) affects the routing tables.</p>
<p>Here&#8217;s the network again.</p>
<p><a href="http://aconaway.com/wp-content/uploads/2010/05/redist21.png"><img class="alignnone size-medium wp-image-755" title="Redistribution" src="http://aconaway.com/wp-content/uploads/2010/05/redist21-300x138.png" alt="" width="300" height="138" /></a></p>
<p>The static routes are being redistributed into their respective IGPs, and EIGRP is being redistributed into OSPF.  Let&#8217;s look at the routing table on R1.</p>
<blockquote>
<pre>Gateway of last resort is not set

     10.0.0.0/8 is variably subnetted, 7 subnets, 2 masks
O       10.0.0.2/32 [110/11] via 192.168.0.102, 00:06:53, Ethernet0/0
O E2    10.0.0.3/32 [110/20] via 192.168.0.105, 00:06:53, Ethernet0/0
                    [110/20] via 192.168.0.102, 00:06:53, Ethernet0/0
S       10.10.10.0/24 is directly connected, Null0
C       10.0.0.1/32 is directly connected, Loopback0
O E2    10.0.0.4/32 [110/20] via 192.168.0.105, 00:06:53, Ethernet0/0
                    [110/20] via 192.168.0.102, 00:06:53, Ethernet0/0
O       10.0.0.5/32 [110/11] via 192.168.0.105, 00:06:53, Ethernet0/0
O E2    10.10.20.0/24 [110/20] via 192.168.0.105, 00:06:03, Ethernet0/0
C    192.168.0.0/24 is directly connected, Ethernet0/0
O E2 192.168.101.0/24 [110/20] via 192.168.0.105, 00:06:53, Ethernet0/0
                      [110/20] via 192.168.0.102, 00:06:53, Ethernet0/0</pre>
</blockquote>
<p>Notice that there are two routes to each of the networks discovered from EIGRP (the loopbacks of 10.0.0.3/32 and 10.0.0.4/32 as well as 192.168.101.0/24).  There is nothing strange here; OSPF simply sees the exit paths through the ASBRs.  How about if we change the metric-type on the routes from R2 and see what happens?</p>
<p>I know of at least two ways you can do it.  First, you can set the metric-type in the redistribute command on the ASBR&#8217;s OSPF process.</p>
<blockquote>
<pre>redistribute eigrp 1 subnets metric-type 1</pre>
</blockquote>
<p>You can also use a route-map to set the metric-type and apply that to the redistribute command.</p>
<blockquote>
<pre>route-map TEST permit 10
 set metric-type type-1
!
redistribute eigrp 1 route-map TEST subnets</pre>
</blockquote>
<p>Either way does the same thing.  Now let&#8217;s check the route table on R1 again.</p>
<blockquote>
<pre>Gateway of last resort is not set

10.0.0.0/8 is variably subnetted, 7 subnets, 2 masks
O       10.0.0.2/32 [110/11] via 192.168.0.102, 00:18:30, Ethernet0/0
O E1    10.0.0.3/32 [110/30] via 192.168.0.102, 00:02:11, Ethernet0/0
S       10.10.10.0/24 is directly connected, Null0
C       10.0.0.1/32 is directly connected, Loopback0
O E1    10.0.0.4/32 [110/30] via 192.168.0.102, 00:02:11, Ethernet0/0
O       10.0.0.5/32 [110/11] via 192.168.0.105, 00:18:30, Ethernet0/0
O E2    10.10.20.0/24 [110/20] via 192.168.0.105, 00:17:40, Ethernet0/0
C    192.168.0.0/24 is directly connected, Ethernet0/0
O E1 192.168.101.0/24 [110/30] via 192.168.0.102, 00:02:11, Ethernet0/0</pre>
</blockquote>
<p>Only one route this time, and it&#8217;s the E1 route from R2.  It seems that E1 routes are more preferred than E2 routes.  Let&#8217;s look at the OSPF database for 192.168.101.0/24 on R1 to see if we can figure that out.</p>
<blockquote>
<pre>R1#sh ip ospf database external 192.168.101.0

OSPF Router with ID (10.0.0.1) (Process ID 1)

Type-5 AS External Link States

Routing Bit Set on this LSA
LS age: 467
Options: (No TOS-capability, DC)
LS Type: AS External Link
Link State ID: 192.168.101.0 (External Network Number )
Advertising Router: 10.0.0.2
LS Seq Number: 80000004
Checksum: 0xEA58
Length: 36
Network Mask: /24
Metric Type: 1 (Comparable directly to link state metric)
TOS: 0
Metric: 20
Forward Address: 0.0.0.0
External Route Tag: 0

Routing Bit Set on this LSA
LS age: 1497
Options: (No TOS-capability, DC)
LS Type: AS External Link
Link State ID: 192.168.101.0 (External Network Number )
Advertising Router: 10.0.0.5
LS Seq Number: 80000001
Checksum: 0x6260
Length: 36
Network Mask: /24
Metric Type: 2 (Larger than any link state path)
TOS: 0
Metric: 20
Forward Address: 0.0.0.0
External Route Tag: 0</pre>
</blockquote>
<p>You can see that everything is the same except for the metric-type field, which is exactly what we expect.  <a href="http://www.cisco.com/en/US/tech/tk365/technologies_white_paper09186a0080094e9e.shtml#t33">By definition</a>, if an external OSPF route is E1, the internal OSPF cost is added to the total cost of the route.  This is reflected in the &#8220;Comparable directly to link state metric&#8221; text next to the Metric Type value.  In contrast, an E2 route does not have the cost incremented; the cost is simply passed down the line as &#8220;Larger than any link state path&#8221;.  This means that E1 routes are considered more accurate and should be more preferred than E2 routes.</p>
<p>Just another complexity of OSPF.  Thanks to <a href="http://twitter.com/matthewnorwood">@matthewnorwood</a>, <a href="http://twitter.com/jameskazin">@jameskazin</a>, <a href="http://twitter.com/steve">@steve</a>, <a href="http://twitter.com/WannabeCCIE">@wannabeccie</a>, <a href="http://twitter.com/ciscotophat">@ciscotophat</a>, and <a href="http://twitter.com/LBSources">@lbsources</a> for the insight into the route differences.</p>
<p>Send any <del datetime="2010-06-06T15:21:24+00:00">twitter updates</del> questions my way.</p>
<p>Audio Commentary</p>]]></content:encoded>
			<wfw:commentRss>http://aconaway.com/2010/06/06/route-redistribution-nuance-2-ospf-external-metric-types/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
<enclosure url="http://aconaway.com/wp-content/uploads/2010/06/ROUTE-Redistribution-Nuance-2.mp3" length="1894721" type="audio/mpeg" />
		</item>
	</channel>
</rss>
