<?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>jklogic.net &#187; ACL</title>
	<atom:link href="http://jklogic.net/tag/acl/feed/" rel="self" type="application/rss+xml" />
	<link>http://jklogic.net</link>
	<description>logical reality</description>
	<lastBuildDate>Tue, 07 Oct 2008 19:43:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Unable to download NAT policy for ACE</title>
		<link>http://jklogic.net/unable-to-download-nat-policy-for-ace/</link>
		<comments>http://jklogic.net/unable-to-download-nat-policy-for-ace/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 08:05:37 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[ACL]]></category>
		<category><![CDATA[ASA]]></category>
		<category><![CDATA[NAT]]></category>
		<category><![CDATA[Pix]]></category>

		<guid isPermaLink="false">http://jklogic.net/unable-to-download-nat-policy-for-ace/</guid>
		<description><![CDATA[I was working on an ASA config and ran into an interesting error.  I needed to not perform NAT on the traffic from the inside LAN to the DMZ.  I configured an access-list:
access-list InsideNoNAT_ACL extended permit ip 10.10.10.0 255.255.255.0 10.10.48.0 255.255.255.0
access-list InsideNoNAT_ACL extended permit ip 10.10.10.0 255.255.255.0 10.10.49.0 255.255.255.0
access-list InsideNoNAT_ACL extended permit ip [...]]]></description>
			<content:encoded><![CDATA[<p>I was working on an ASA config and ran into an interesting error.  I needed to not perform NAT on the traffic from the inside LAN to the DMZ.  I configured an access-list:</p>
<div class="code">access-list InsideNoNAT_ACL extended permit ip 10.10.10.0 255.255.255.0 10.10.48.0 255.255.255.0<br />
access-list InsideNoNAT_ACL extended permit ip 10.10.10.0 255.255.255.0 10.10.49.0 255.255.255.0<br />
access-list InsideNoNAT_ACL extended permit ip 10.10.10.0 255.255.255.0 172.31.3.0 255.255.255.0<br />
access-list InsideNoNAT_ACL extended permit ip 10.10.10.0 255.255.255.0 172.31.4.0 255.255.255.0</div>
<p>And then specified to not perform NAT:</p>
<div class="code">nat (inside) 0 access-list InsideNoNAT_ACL<br />
nat (inside) 1 0.0.0.0 0.0.0.0</div>
<p>I then needed to add another line to the InsideNoNAT_ACL, and that is where I received the error.</p>
<div class="code">
(config)#access-list InsideNoNAT_ACL  permit 10.0.0.0 255.0.0.0  172.31.3.0 255.255.255.0<br />
Unable to download NAT policy for ACE</div>
<p>All this error message is saying is that the new line in the access-list was not added to the active NAT table, but was added to the access-list.  Upon doing some searching, I read in several places that a reboot fixed the problem. While this is true, it is not necessary.  All that needs to be done is to remove and reapply the nat statement.</p>
<div class="code">(config)#no nat (inside) 0 access-list InsideNoNAT_ACL<br />
(config)#nat (inside) 0 access-list InsideNoNAT_ACL</div>
<p>This rebuilds the NAT rules and applies all rules in the ACL.  Much better than a reload!</p>
]]></content:encoded>
			<wfw:commentRss>http://jklogic.net/unable-to-download-nat-policy-for-ace/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>

