<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Server side NAT on ACE4710 in Application Networking</title>
    <link>https://community.cisco.com/t5/application-networking/server-side-nat-on-ace4710/m-p/2245076#M40301</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Later there will be more servers...&lt;/P&gt;&lt;P&gt;So I missed an interface acl on downlink interface:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list everyone extended permit ip any any&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;access-list everyone extended permit icmp any any&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;interface Vlan150&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp; access-group input everyone&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;And it is working as expected.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;BR, Attila&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Jun 2013 12:59:43 GMT</pubDate>
    <dc:creator>atis</dc:creator>
    <dc:date>2013-06-19T12:59:43Z</dc:date>
    <item>
      <title>Server side NAT on ACE4710</title>
      <link>https://community.cisco.com/t5/application-networking/server-side-nat-on-ace4710/m-p/2245074#M40299</link>
      <description>&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;Hello,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;&amp;nbsp; I have a little config issue...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;&amp;nbsp; I have an ACE4710 loadbalancer, the load balancer have a public ip address on its uplink interface, and private address on its downlink interface.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;&amp;nbsp; There is a server connected to the downlink interface, and this server wants to set up a connection to the Internet, so the ACE should perform a NAT.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;&amp;nbsp; Somewhere I made a mistake or misunderstood something:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;so first of all I created an access-list matched to the server ip address space:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 10pt;"&gt;access-list NAT_ACCESS line 10 extended permit ip &amp;lt;server ip address&amp;gt; any&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;then created a class-map matching to this ACL:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 10pt;"&gt;class-map match-any NAT_CLASS&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp; match access-list NAT_ACCESS&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt; then created a policy-map, containing which vlan the nat will occur:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 10pt;"&gt;policy-map multi-match NAT_POLICY&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 10pt;"&gt;&amp;nbsp; class NAT_CLASS&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; nat dynamic 1 vlan 100&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After this I defined the nat pool on interface Vlan100&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="font-size: 10pt;"&gt;interface vlan 100&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp; &amp;lt;uplink interface, connected to Internet&amp;gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp; ip address &amp;lt;public address&amp;gt;/&amp;lt;mask&amp;gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp; nat-pool 1&amp;nbsp; &amp;lt;public address_1&amp;gt; netmask &amp;lt;mask&amp;gt; pat&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp; no shutdown&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;Finally assigned the policy-map to the downlink interface:&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;PRE&gt;interface vlan 150&lt;/PRE&gt;
&lt;PRE&gt; &amp;lt;Downlink interface, connected to servers&amp;gt;&lt;/PRE&gt;
&lt;PRE&gt; ip address &amp;lt;privát cím&amp;gt;&lt;/PRE&gt;
&lt;PRE&gt; service-policy input NAT_POLICY&lt;/PRE&gt;
&lt;PRE&gt; no shut&lt;/PRE&gt;
&lt;PRE&gt;&lt;/PRE&gt;
&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;
&lt;PRE&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/PRE&gt;
This config didn't do any NAT, so where did I make the mistake?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;BR, Attila
&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 18 Jun 2013 18:29:47 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/server-side-nat-on-ace4710/m-p/2245074#M40299</guid>
      <dc:creator>atis</dc:creator>
      <dc:date>2013-06-18T18:29:47Z</dc:date>
    </item>
    <item>
      <title>Server side NAT on ACE4710</title>
      <link>https://community.cisco.com/t5/application-networking/server-side-nat-on-ace4710/m-p/2245075#M40300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Attila-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; You actually want static nat. It is a 1:1 nat in and out.&amp;nbsp; Remove everything and try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;class-map match-any NAT_CLASS&lt;/PRE&gt;&lt;P&gt;2 match source-address &lt;SERVER ip=""&gt; 255.255.255.255&lt;/SERVER&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;policy-map multi-match NAT_POLICY&lt;/PRE&gt;&lt;PRE&gt; class NAT_CLASS&lt;/PRE&gt;&lt;PRE&gt;&amp;nbsp;&amp;nbsp; nat static &lt;PUBLIC ip=""&gt; netmask 255.255.255.255 vlan 100&lt;BR /&gt;&lt;PRE&gt;&lt;BR /&gt;interface vlan 150&lt;/PRE&gt;
&lt;P&gt; &lt;DOWNLINK interface=""&gt;&lt;/DOWNLINK&gt;&lt;/P&gt;
&lt;P&gt; ip address &lt;PRIVÁT cím=""&gt;&lt;/PRIVÁT&gt;&lt;/P&gt;
&lt;P&gt; service-policy input NAT_POLICY&lt;/P&gt;
&lt;P&gt; no shut&lt;/P&gt;
&lt;BR /&gt; &lt;/PUBLIC&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; color: blue; mso-bidi-font-weight: bold; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chris Higgins&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jun 2013 23:51:23 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/server-side-nat-on-ace4710/m-p/2245075#M40300</guid>
      <dc:creator>chrhiggi</dc:creator>
      <dc:date>2013-06-18T23:51:23Z</dc:date>
    </item>
    <item>
      <title>Server side NAT on ACE4710</title>
      <link>https://community.cisco.com/t5/application-networking/server-side-nat-on-ace4710/m-p/2245076#M40301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Later there will be more servers...&lt;/P&gt;&lt;P&gt;So I missed an interface acl on downlink interface:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list everyone extended permit ip any any&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;access-list everyone extended permit icmp any any&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;interface Vlan150&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp; access-group input everyone&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;And it is working as expected.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;BR, Attila&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jun 2013 12:59:43 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/server-side-nat-on-ace4710/m-p/2245076#M40301</guid>
      <dc:creator>atis</dc:creator>
      <dc:date>2013-06-19T12:59:43Z</dc:date>
    </item>
  </channel>
</rss>

