<?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>Packetslave Industries &#187; BGP</title>
	<atom:link href="http://www.packetslave.com/category/bgp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.packetslave.com</link>
	<description>This is my blog.  There are many like it, but this one is mine.</description>
	<lastBuildDate>Tue, 20 Jul 2010 19:04:43 +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>BGP Through an ASA with Authentication</title>
		<link>http://www.packetslave.com/2009/07/12/bgp-through-an-asa-with-authentication/</link>
		<comments>http://www.packetslave.com/2009/07/12/bgp-through-an-asa-with-authentication/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 19:34:04 +0000</pubDate>
		<dc:creator>blanders</dc:creator>
				<category><![CDATA[ASA]]></category>
		<category><![CDATA[BGP]]></category>
		<category><![CDATA[CCIE]]></category>
		<category><![CDATA[CCIE Security]]></category>

		<guid isPermaLink="false">http://www.packetslave.com/?p=173</guid>
		<description><![CDATA[By default, the ASA will strip TCP option 19 causing MD5 authentication for BGP to fail.  In addition, the ASA randomizes the TCP sequence numbers, which also breaks things.  To fix this: tcp-map BGP_FIX tcp-options range 19 19 allow ! access-list BGP permit tcp any any eq 179 ! class BGP match access-list BGP !! [...]]]></description>
			<content:encoded><![CDATA[<p>By default, the ASA will strip TCP option 19 causing MD5 authentication for BGP to fail.  In addition, the ASA randomizes the TCP sequence numbers, which also breaks things.  To fix this:</p>
<pre>tcp-map BGP_FIX
  tcp-options range 19 19 allow
!
access-list BGP permit tcp any any eq 179
!
class BGP
  match access-list BGP
  !! could also use match protocol tcp eq bgp
!
policy-map global_policy
  class BGP
    set connection advanced-options BGP_FIX
    set connection random-sequence-number disable
!</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.packetslave.com/2009/07/12/bgp-through-an-asa-with-authentication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
