<?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; notes</title>
	<atom:link href="http://aconaway.com/tag/notes/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>Redistribution Notes &#8211; AD Manipulation</title>
		<link>http://aconaway.com/2011/06/22/redistribution-notes-ad-manipulation/</link>
		<comments>http://aconaway.com/2011/06/22/redistribution-notes-ad-manipulation/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 20:59:09 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[ccie]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[350-001]]></category>
		<category><![CDATA[ad]]></category>
		<category><![CDATA[manipulation]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[redistribution]]></category>
		<category><![CDATA[written]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=1694</guid>
		<description><![CDATA[Manipulating administrative distance (AD) is another way to help with a mutual redistribution scenario.]]></description>
			<content:encoded><![CDATA[<ul>
<li>Manipulating administrative distance (AD) is another way to help with a mutual redistribution scenario.</li>
<li>EIGRPs has different ADs for internal and external (redistributed) routes</li>
<li>OSPF and RIP have the same AD no matter where the route orginated.</li>
<li>This means that routes redistributed into OSPF may be used instead of a local RIP route.
<ul>
<li>AD 110 (OSPF) beats 120 (RIP) every time.</li>
</ul>
</li>
<li>The <em>distance</em> subcommand allows you to change the AD on specific routes from specific neighbors.</li>
<li>This example changes the AD of the route to 10.0.0.0/16 advertised from 1.1.1.1 to 121.
<ul>
<li>This will make this router prefer a RIP route to the same destination.</li>
</ul>
</li>
</ul>
<blockquote>
<pre>ip access-list standard RIP-ROUTES
 permit 10.0.0.0 0.255.255.0
!
router ospf 1
 distance 121 1.1.1.1 0.0.0.0 RIP-ROUTES</pre>
</blockquote>
<p>–<br />
Corrections are encouraged.</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/06/22/redistribution-notes-ad-manipulation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Redistribution Notes &#8211; Tagging</title>
		<link>http://aconaway.com/2011/06/20/redistribution-notes-tagging/</link>
		<comments>http://aconaway.com/2011/06/20/redistribution-notes-tagging/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 22:26:49 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[ccie]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[350-001]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[redistribution]]></category>
		<category><![CDATA[route]]></category>
		<category><![CDATA[tag]]></category>
		<category><![CDATA[written]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=1688</guid>
		<description><![CDATA[You can use route tags in redistribution scenarios to filter and/or manipulate routes.]]></description>
			<content:encoded><![CDATA[<ul>
<li>Tagging provides a way to mark common or similar routes to manipulate later.</li>
<li>In redistribution scenarios with mutual redistribution on two different routers, any routes that gets redistributed from one route process to another are tagged.
<ul>
<li>When the other router sees those tags on the route, that route to keep from adding non-optimal routes to its routing table.</li>
</ul>
</li>
<li>Tags can also be used to do other manipulation such as setting higher metrics or changing ADs.</li>
</ul>
<div>
<div><span style="font-weight: 800;"><br />
</span></div>
</div>
<p><strong>OSPF</strong></p>
<blockquote>
<pre>R102#show run
...
router ospf 1
log-adjacency-changes
redistribute connected subnets route-map SETTAG
network 192.0.2.0 0.0.0.255 area 0
!
route-map SETTAG permit 100
set tag 55555
...

R101#sh ip route 10.0.0.2
Routing entry for 10.0.0.0/24
Known via "ospf 1", distance 110, metric 20
Tag <strong>55555</strong>, type extern 2, forward metric 10
Last update from 192.0.2.102 on Ethernet0/0, 00:00:13 ago
Routing Descriptor Blocks:
* 192.0.2.102, from 192.0.2.102, 00:00:13 ago, via Ethernet0/0
Route metric is 20, traffic share count is 1
Route tag <strong>55555</strong></pre>
</blockquote>
<p><strong>EIGRP</strong></p>
<blockquote>
<pre>R102#sh run
...
router eigrp 1
network 192.0.2.0
redistribute connected route-map SETTAG
no auto-summary
!
route-map SETTAG permit 100
set tag 55555
...

R101#sh ip route 10.0.0.2
Routing entry for 10.0.0.0/24
  Known via "eigrp 1", distance 170, metric 409600
  Tag <strong>55555</strong>, type external
  Redistributing via eigrp 1
  Last update from 192.0.2.102 on Ethernet0/0, 00:00:14 ago
  Routing Descriptor Blocks:
  * 192.0.2.102, from 192.0.2.102, 00:00:14 ago, via Ethernet0/0
      Route metric is 409600, traffic share count is 1
      Total delay is 6000 microseconds, minimum bandwidth is 10000 Kbit
      Reliability 255/255, minimum MTU 1500 bytes
      Loading 1/255, Hops 1
      Route tag <strong>55555</strong></pre>
</blockquote>
<p>&#8211;<br />
Corrections are encouraged.</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/06/20/redistribution-notes-tagging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BGP Notes &#8211; Synchronization</title>
		<link>http://aconaway.com/2011/06/10/bgp-notes-synchronization/</link>
		<comments>http://aconaway.com/2011/06/10/bgp-notes-synchronization/#comments</comments>
		<pubDate>Sat, 11 Jun 2011 03:50:28 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[ccie]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[350-001]]></category>
		<category><![CDATA[bgp]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[synchronization]]></category>
		<category><![CDATA[written]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=1676</guid>
		<description><![CDATA[A route must appear in the routing table via an IGP in order for that routes to be able to be voted 'best" by BGP.]]></description>
			<content:encoded><![CDATA[<ul>
<li>With synchronization on, route must be synchronized to an IGP in order for that routes to be able to be voted &#8216;best&#8221; by BGP.
<ul>
<li>That means the exact route must already be in the routing table via an IGP.</li>
<li>Static routes don&#8217;t count.</li>
<li>This is traditionally accomplished by redistributing BGP routes into an IGP.</li>
<li>With today&#8217;s Internet prefix count over 350k, this may not be such a good idea in some situations.</li>
<li>Synchronization is off by default.</li>
</ul>
</li>
<li>Synchronization prevents black hole routes from being advertised via iBGP.
<ul>
<li>Unless every router is participating in iBGP, there&#8217;s no guarantee that any one router will have a route to NEXT_HOP.</li>
</ul>
</li>
<li>Synchronization also prevents a router from advertising the black hole to an eBGP neighbor.
<ul>
<li>You don&#8217;t want to tell the world you have a path to a prefix when you really have a !N.</li>
</ul>
</li>
<li>Synchronization can be safely disabled with the use of <a href="http://aconaway.com/2011/06/10/bgp-notes-route-reflectors/">route reflectors</a> or <a href="http://aconaway.com/2011/06/10/bgp-notes-confederations/">confederations</a>.</li>
</ul>
<p>&#8212;&#8211;</p>
<p>These are just some notes I&#8217;ve been taking.  Comment with corrections, 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/2011/06/10/bgp-notes-synchronization/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>BGP Notes &#8211; Backdoor Routes</title>
		<link>http://aconaway.com/2011/06/10/bgp-notes-backdoor-routes/</link>
		<comments>http://aconaway.com/2011/06/10/bgp-notes-backdoor-routes/#comments</comments>
		<pubDate>Sat, 11 Jun 2011 03:23:53 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[ccie]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[350-001]]></category>
		<category><![CDATA[backdoor]]></category>
		<category><![CDATA[bgp]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[routes]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=1673</guid>
		<description><![CDATA[For God's sake, do not lower the AD of EIGRP!  Havoc will ensue.]]></description>
			<content:encoded><![CDATA[<ul>
<li>The fact that eBGP has an AD of 20 can be a problem.
<ul>
<li>You may have a very short path via EIGRP (or OSPF or RIP or whatever other IGP), but the longer eBGP path will be preferred.</li>
</ul>
</li>
<li>For God&#8217;s sake, do not lower the AD of EIGRP!  Havoc will ensue.</li>
<li>Using backdoor routes causes eBGP routes to have an AD of 200.
<ul>
<li>Allows the shorter-path IGP routes to be added to the routing table.</li>
</ul>
</li>
</ul>
<blockquote>
<pre>router bgp 123
 network 1.1.1.0 backdoor</pre>
</blockquote>
<p>&#8212;&#8211;</p>
<p>Comment with corrections, 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/2011/06/10/bgp-notes-backdoor-routes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BGP Notes &#8211; Authentication</title>
		<link>http://aconaway.com/2011/06/10/bgp-notes-authentication/</link>
		<comments>http://aconaway.com/2011/06/10/bgp-notes-authentication/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 16:38:54 +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[bgp]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[written]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=1667</guid>
		<description><![CDATA[Corrections welcome.

It's simple as pie to enable MD5 auth to a BGP peer.

R102(config-router)#neigh 192.0.2.101 pass MYKEY]]></description>
			<content:encoded><![CDATA[<p>Corrections welcome.</p>
<p>It&#8217;s simple as pie to enable MD5 auth to a BGP peer.</p>
<blockquote>
<pre>R102(config-router)#neigh 192.0.2.101 pass MYKEY</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/bgp-notes-authentication/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>BGP Notes &#8211; Path Decision</title>
		<link>http://aconaway.com/2011/06/09/bgp-notes-path-decision/</link>
		<comments>http://aconaway.com/2011/06/09/bgp-notes-path-decision/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 13:47:54 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[ccie]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[350-001]]></category>
		<category><![CDATA[bgp]]></category>
		<category><![CDATA[decision]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[path]]></category>
		<category><![CDATA[written]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=1655</guid>
		<description><![CDATA[This is required blogging...and reading for that matter.  A good chunk of this is taken from my CCNP posts from last year.  Corrections, please.]]></description>
			<content:encoded><![CDATA[<p>This is required blogging&#8230;and reading for that matter.  A good chunk of this is taken from my CCNP posts from last year.  Corrections, please.</p>
<p>&#8212;&#8211;</p>
<h3>How does a BGP router decide which BGP route is the best?</h3>
<p><strong>Next-hop</strong> : Does the router have a route to the next-hop?</p>
<p><strong>Weight </strong>: This is a numeric value where bigger is better.  Weight is not passed onto other peers and is a Cisco proprietary feature.</p>
<p><strong>LOCAL_PREF </strong>: This is a numeric value where bigger is better.  All iBGP peers pass this value around amongst themselves.</p>
<p><strong>Local </strong>: Is the next hop me (0.0.0.0)?</p>
<p><strong>AS_PATH length </strong>: This is the number of AS hops to the destination.  If you don&#8217;t know this one by now, then you missed something big.</p>
<p><strong>ORIGIN </strong>: Did this route come from a <em>netowork</em> statement in an IGP (I), from  EGP (E, which shouldn&#8217;t exist any more), or somewhere else (?) like a redistributed route?  <em>I</em> is better than <em>E</em> is better than <em>?</em>.</p>
<p><strong>MED </strong>: The Multi Exit Discriminator can be used by one AS to influence routes to that AS.  The smaller the better.</p>
<p><strong>Neighbor type</strong> : eBGP are better than iBGP routes.</p>
<p><strong>IGP metric</strong> : Prefer the next-hop address that’s closest via an IGP like OSPF or EIGRP (or RIP, Ivan).</p>
<p><strong>Route age</strong> : Prefer the oldest (and, thusly, the most stable) route.</p>
<p><strong>Lowest BGP neighbor router ID</strong> : Do I have to explain that one?</p>
<p><strong>Lowest BGP neighbor IP</strong> : You know what this is, right?</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/06/09/bgp-notes-path-decision/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>BGP Notes &#8211; Path Attribute Categories</title>
		<link>http://aconaway.com/2011/06/07/bgp-notes-path-attribute-categories/</link>
		<comments>http://aconaway.com/2011/06/07/bgp-notes-path-attribute-categories/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 02:25:40 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[ccie]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[350-001]]></category>
		<category><![CDATA[attribute]]></category>
		<category><![CDATA[bgp]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[pa]]></category>
		<category><![CDATA[path]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=1652</guid>
		<description><![CDATA[Make my corrections!  Please!]]></description>
			<content:encoded><![CDATA[<p>Make my corrections!  Please!</p>
<p><strong>Well-known mandatory</strong> : These PAs must be recognized by all BGP routers and passed along to other peers.</p>
<p><strong>Well-known discretionary</strong> : These PAs do not need to be in every <em>update</em>, but they must be recognized by all BGP routers.</p>
<p><strong>Optional transitive</strong> : These PAs don&#8217;t have to be recognized but they must be passed along to other BGP peers if they are present in an update.</p>
<p><strong>Optional notransitive</strong> : These PAs neither have to be recognized nor passed along.</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/06/07/bgp-notes-path-attribute-categories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BGP Notes &#8211; Neighbor States</title>
		<link>http://aconaway.com/2011/06/07/bgp-notes-neighbor-states/</link>
		<comments>http://aconaway.com/2011/06/07/bgp-notes-neighbor-states/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 21:21:01 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[ccie]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[350-001]]></category>
		<category><![CDATA[bgp]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[peer]]></category>
		<category><![CDATA[state]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=1650</guid>
		<description><![CDATA[Corrections appreciated.]]></description>
			<content:encoded><![CDATA[<p>Corrections appreciated.</p>
<p><strong>Idle </strong>: There is no relationship, but the router sends out a TCP SYN to the neighbor to get the ball rolling.</p>
<p><strong>Idle (admin)</strong> : The neighbor is admined down.</p>
<p><strong>Connect </strong>: The router is waiting for the TCP connection to finish.  If the TCP connection finishes, the router sends an <em>open</em> and transitions to OpenSent.  If it times out, it transitions to Active.</p>
<p><strong>Active </strong>: The router tries to initiate a TCP connection.  If the TCP connection finishes, the router sends an <em>open</em> and transitions to OpenSent.</p>
<p><strong>OpenSent </strong>: The router is waiting for an <em>open</em> to be returned.  If one is received, the router transitions to OpenConfirm.</p>
<p><strong>OpenConfirm </strong>: The router is waiting for a keepalive.  If one arrives, the router transitions to Established.</p>
<p><strong>Established </strong>: The neighbor relationship is complete and <em>updates</em> are exchanged.</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/06/07/bgp-notes-neighbor-states/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BGP Notes &#8211; Message Types</title>
		<link>http://aconaway.com/2011/06/07/bgp-notes-message-types/</link>
		<comments>http://aconaway.com/2011/06/07/bgp-notes-message-types/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 19:30:19 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[ccie]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[350-001]]></category>
		<category><![CDATA[bgp]]></category>
		<category><![CDATA[message]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[types]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=1648</guid>
		<description><![CDATA[Corrigeme, por favor.]]></description>
			<content:encoded><![CDATA[<p>Corrigeme, por favor.</p>
<p><strong>Open </strong>: When a neighbor is configured, the router sends an open to that neighbor to get the ball rolling.</p>
<blockquote>
<pre>Destination:  The neighbor's configured IP
Important fields:
  My AS</pre>
</blockquote>
<p><strong>Update </strong>: The routing  information</p>
<blockquote>
<pre>Destination:  The neighbor's configured IP
Important fields:
  Advertised network
  Path attributes</pre>
</blockquote>
<p><strong>Keepalive </strong>: Sent every 60 seconds by default</p>
<blockquote>
<pre>Destination:  The neighbor's configured IP
Important fields:
  Nothing, really</pre>
</blockquote>
<p><strong>Notification </strong>: When something is amiss, the router sends a notification message.  The receiver then closes the connection.</p>
<blockquote>
<pre>Destination:  The neighbor's configured IP
Important fields:
  Error code</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/07/bgp-notes-message-types/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>
	</channel>
</rss>

