<?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; vrrp-e</title>
	<atom:link href="http://aconaway.com/tag/vrrp-e/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>ACLs and HSRP, BGP, OSPF, VRRP, GLBP&#8230;</title>
		<link>http://aconaway.com/2008/06/12/acls-and-hsrp-bgp-ospf-vrrp-glbp/</link>
		<comments>http://aconaway.com/2008/06/12/acls-and-hsrp-bgp-ospf-vrrp-glbp/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 13:18:03 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[acls]]></category>
		<category><![CDATA[bgp]]></category>
		<category><![CDATA[bootps]]></category>
		<category><![CDATA[dhcp]]></category>
		<category><![CDATA[dhcpd]]></category>
		<category><![CDATA[eigrp]]></category>
		<category><![CDATA[glbp]]></category>
		<category><![CDATA[hsrp]]></category>
		<category><![CDATA[ospf]]></category>
		<category><![CDATA[RIP]]></category>
		<category><![CDATA[vrrp]]></category>
		<category><![CDATA[vrrp-e]]></category>

		<guid isPermaLink="false">http://aconaway.com/2008/06/12/acls-and-hsrp-bgp-ospf-vrrp-glbp/</guid>
		<description><![CDATA[Here&#8217;s a handy list of ACL entries to allow your devices to speak routing protocols, availability protocols, and some other stuff. We&#8217;ll assume you have ACL 101 applied to your Ethernet inbound; your Ethernet has an IP of 192.168.0.1. BGP : Runs on TCP/179 between the neighbors access-list 101 permit tcp any host 192.168.0.1 eq 179 EIGRP : Runs on its own protocol number from the source interface IP to the multicast address of 224.0.0.10 access-list 101 permit eigrp any host 224.0.0.10 OSPF : Runs on its own protocol number from the source interface IP to the multicast address of 224.0.0.5; also talks to 224.0.0.6 for DR/BDR routers access-list 101 permit ospf any host 224.0.0.5 access-list 101 permit ospf any host 224.0.0.6 HSRP : Runs on UDP/1985 from the source interface IP to the multicast address of 224.0.0.2. I&#8217;ve seen in the past that it runs on UDP/1985, but I didn&#8217;t find any evidence of that in a quick Google for it. Can someone verify? access-list 101 permit udp any host 224.0.0.2 eq 1985 HSRP version 2 : Runs on UDP/1985 from the source interface IP to the multicast address of 224.0.0.102. access-list 101 permit udp any host 224.0.0.2 eq [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a handy list of ACL entries to allow your devices to speak routing protocols, availability protocols, and some other stuff.  We&#8217;ll assume you have ACL 101 applied to your Ethernet inbound; your Ethernet has an IP of 192.168.0.1.</p>
<ul>
<li>BGP : Runs on TCP/179 between the neighbors</li>
</ul>
<p><code>access-list 101 permit tcp any host 192.168.0.1 eq 179</code></p>
<ul>
<li>EIGRP : Runs on its own protocol number from the source interface IP to the multicast address of 224.0.0.10</li>
</ul>
<p><code>access-list 101 permit eigrp any host 224.0.0.10</code></p>
<ul>
<li>OSPF : Runs on its own protocol number from the source interface IP to the multicast address of 224.0.0.5; also talks to 224.0.0.6 for DR/BDR routers</li>
</ul>
<p><code>access-list 101 permit ospf any host 224.0.0.5<br />
access-list 101 permit ospf any host 224.0.0.6</code></p>
<ul>
<li>HSRP : Runs on UDP/1985 from the source interface IP to the multicast address of 224.0.0.2.  <span style="text-decoration: line-through;">I&#8217;ve seen in the past that it runs on UDP/1985, but I didn&#8217;t find any evidence of that in a quick Google for it. Can someone verify?</span></li>
</ul>
<p><code>access-list 101 permit udp any host 224.0.0.2 eq 1985<br />
</code></p>
<ul>
<li>HSRP version 2 : Runs on UDP/1985 from the source interface IP to the multicast address of 224.0.0.102.</li>
</ul>
<p><code>access-list 101 permit udp any host 224.0.0.2 eq 1985<br />
</code></p>
<ul>
<li>RIP : Runs on UDP/520 from the source interface IP to the multicast address of 224.0.0.9</li>
</ul>
<p><code>access-list 101 permit udp any host 224.0.0.9 eq 520</code></p>
<ul>
<li>VRRP : Runs on its own protocol number from the source interface IP to the multicast address of 224.0.0.18</li>
</ul>
<p><code>access-list 101 permit 112 any host 224.0.0.18</code></p>
<ul>
<li>VRRP-E : This is a Foundary thing according to readers, and runs on UDP/8888 from the source interface IP to the multicast address of 224.0.0.2</li>
</ul>
<p><code>access-list 101 permit 112 any host 224.0.0.2 eq 8888<br />
</code></p>
<ul>
<li>GLBP : Runs on UDP from the source interface IP to the multicast address of 224.0.0.102</li>
</ul>
<p><code>access-list 101 permit udp any host 224.0.0.102</code></p>
<ul>
<li>DHCPD (or bootps) : Runs on UDP/67 from 0.0.0.0 (since the client doesn&#8217;t have an address yet) to 255.255.255.255 (the broadcast).</li>
</ul>
<p><code>access-list 101 permit udp any host 255.255.255.255 eq 67</code><br />
If anyone else has one to add, do so in the comments.</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/2008/06/12/acls-and-hsrp-bgp-ospf-vrrp-glbp/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
	</channel>
</rss>

