<?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 Re: Static NAT Problem - Help Me Understand This in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/static-nat-problem-help-me-understand-this/m-p/765435#M1002722</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thats the way static command works in 7.x code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read through the note in command reference, syntax description (interface):&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-custom" href="http://www.cisco.com/univercd/cc/td/doc/product/multisec/asa_sw/v_70/cref_txt/s.htm#wp1540284" target="_blank"&gt;http://www.cisco.com/univercd/cc/td/doc/product/multisec/asa_sw/v_70/cref_txt/s.htm#wp1540284&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Guru.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Jun 2007 23:27:19 GMT</pubDate>
    <dc:creator>gurdsing</dc:creator>
    <dc:date>2007-06-22T23:27:19Z</dc:date>
    <item>
      <title>Static NAT Problem - Help Me Understand This</title>
      <link>https://community.cisco.com/t5/network-security/static-nat-problem-help-me-understand-this/m-p/765434#M1002714</link>
      <description>&lt;P&gt;In my ASA 5510 config (posted below), I have an inside interface, two DMZ's, and an outside interface. I have a web server on the 1st DMZ at local address 10.1.2.2. I want this web server to be accessible from the Internet at global address xx.xx.150.80, which is the same address as the outside interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The relevant lines from the config are:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (dmz1,outside) xx.xx.150.80 10.1.2.2 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;access-list outside_in extended permit tcp any host xx.xx.150.80 eq www&lt;/P&gt;&lt;P&gt;access-group outside_in in interface outside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This doesn't work. When I try to access the web server from the Internet, I get a message in the log saying "TCP connection blocked by ACL". When I change the static statement to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (dmz1,outside) interface 10.1.2.2 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;everything works. My question is: why does this work when I use "interface" in place of the actual IP address of the outside interface in the static statement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;asdm image disk0:/asdm506.bin&lt;/P&gt;&lt;P&gt;no asdm history enable&lt;/P&gt;&lt;P&gt;: Saved&lt;/P&gt;&lt;P&gt;:&lt;/P&gt;&lt;P&gt;ASA Version 7.0(6) &lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;hostname asa&lt;/P&gt;&lt;P&gt;domain-name example.com&lt;/P&gt;&lt;P&gt;enable password xxxxxxxxxxx encrypted&lt;/P&gt;&lt;P&gt;names&lt;/P&gt;&lt;P&gt;dns-guard&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface Ethernet0/0&lt;/P&gt;&lt;P&gt; nameif outside&lt;/P&gt;&lt;P&gt; security-level 0&lt;/P&gt;&lt;P&gt; ip address xx.xx.150.80 255.255.255.0 &lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface Ethernet0/1&lt;/P&gt;&lt;P&gt; nameif inside&lt;/P&gt;&lt;P&gt; security-level 100&lt;/P&gt;&lt;P&gt; ip address 10.1.1.1 255.255.255.0 &lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface Ethernet0/2&lt;/P&gt;&lt;P&gt; nameif dmz1&lt;/P&gt;&lt;P&gt; security-level 50&lt;/P&gt;&lt;P&gt; ip address 10.1.2.1 255.255.255.0 &lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface Ethernet0/3&lt;/P&gt;&lt;P&gt; nameif dmz2&lt;/P&gt;&lt;P&gt; security-level 10&lt;/P&gt;&lt;P&gt; ip address 10.1.3.1 255.255.255.0 &lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface Management0/0&lt;/P&gt;&lt;P&gt; nameif management&lt;/P&gt;&lt;P&gt; security-level 100&lt;/P&gt;&lt;P&gt; ip address 192.168.1.1 255.255.255.0 &lt;/P&gt;&lt;P&gt; management-only&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;passwd xxxxxx.xxxxxxxxx encrypted&lt;/P&gt;&lt;P&gt;ftp mode passive&lt;/P&gt;&lt;P&gt;access-list inside_dmz1 extended permit ip 10.1.1.0 255.255.255.0 10.1.2.0 255.255.255.0 &lt;/P&gt;&lt;P&gt;access-list dmz1_in extended permit tcp 10.1.2.0 255.255.255.0 10.1.1.0 255.255.255.0 eq ssh &lt;/P&gt;&lt;P&gt;access-list dmz1_in extended deny ip 10.1.2.0 255.255.255.0 10.1.1.0 255.255.255.0 &lt;/P&gt;&lt;P&gt;access-list dmz1_in extended permit ip any any &lt;/P&gt;&lt;P&gt;access-list outside_in extended permit tcp any host xx.xx.150.80 eq www &lt;/P&gt;&lt;P&gt;pager lines 77&lt;/P&gt;&lt;P&gt;logging enable&lt;/P&gt;&lt;P&gt;logging monitor informational&lt;/P&gt;&lt;P&gt;logging asdm informational&lt;/P&gt;&lt;P&gt;mtu outside 1500&lt;/P&gt;&lt;P&gt;mtu inside 1500&lt;/P&gt;&lt;P&gt;mtu dmz1 1500&lt;/P&gt;&lt;P&gt;mtu dmz2 1500&lt;/P&gt;&lt;P&gt;mtu management 1500&lt;/P&gt;&lt;P&gt;no failover&lt;/P&gt;&lt;P&gt;monitor-interface outside&lt;/P&gt;&lt;P&gt;monitor-interface inside&lt;/P&gt;&lt;P&gt;monitor-interface dmz1&lt;/P&gt;&lt;P&gt;monitor-interface dmz2&lt;/P&gt;&lt;P&gt;monitor-interface management&lt;/P&gt;&lt;P&gt;asdm image disk0:/asdm506.bin&lt;/P&gt;&lt;P&gt;no asdm history enable&lt;/P&gt;&lt;P&gt;arp timeout 14400&lt;/P&gt;&lt;P&gt;global (outside) 1 interface&lt;/P&gt;&lt;P&gt;nat (inside) 0 access-list inside_dmz1&lt;/P&gt;&lt;P&gt;nat (inside) 1 10.1.1.0 255.255.255.0&lt;/P&gt;&lt;P&gt;nat (dmz1) 1 10.1.2.0 255.255.255.0&lt;/P&gt;&lt;P&gt;static (dmz1,outside) xx.xx.150.80 10.1.2.2 netmask 255.255.255.255 &lt;/P&gt;&lt;P&gt;access-group outside_in in interface outside&lt;/P&gt;&lt;P&gt;access-group dmz1_in in interface dmz1&lt;/P&gt;&lt;P&gt;route outside 0.0.0.0 0.0.0.0 xx.xx.150.1 1&lt;/P&gt;&lt;P&gt;timeout xlate 3:00:00&lt;/P&gt;&lt;P&gt;timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02&lt;/P&gt;&lt;P&gt;timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00&lt;/P&gt;&lt;P&gt;timeout mgcp-pat 0:05:00 sip 0:30:00 sip_media 0:02:00&lt;/P&gt;&lt;P&gt;timeout uauth 0:05:00 absolute&lt;/P&gt;&lt;P&gt;http server enable&lt;/P&gt;&lt;P&gt;http 10.1.1.0 255.255.255.0 inside&lt;/P&gt;&lt;P&gt;http 192.168.1.0 255.255.255.0 management&lt;/P&gt;&lt;P&gt;no snmp-server location&lt;/P&gt;&lt;P&gt;no snmp-server contact&lt;/P&gt;&lt;P&gt;snmp-server enable traps snmp authentication linkup linkdown coldstart&lt;/P&gt;&lt;P&gt;telnet 10.1.1.0 255.255.255.0 inside&lt;/P&gt;&lt;P&gt;telnet 192.168.1.0 255.255.255.0 management&lt;/P&gt;&lt;P&gt;telnet timeout 5&lt;/P&gt;&lt;P&gt;ssh 10.1.1.0 255.255.255.0 inside&lt;/P&gt;&lt;P&gt;ssh 192.168.1.0 255.255.255.0 management&lt;/P&gt;&lt;P&gt;ssh timeout 5&lt;/P&gt;&lt;P&gt;console timeout 0&lt;/P&gt;&lt;P&gt;dhcpd address 192.168.1.2-192.168.1.254 management&lt;/P&gt;&lt;P&gt;dhcpd lease 3600&lt;/P&gt;&lt;P&gt;dhcpd ping_timeout 50&lt;/P&gt;&lt;P&gt;dhcpd enable management&lt;/P&gt;&lt;P&gt;Cryptochecksum:xxx&lt;/P&gt;&lt;P&gt;: end&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 10:34:02 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-nat-problem-help-me-understand-this/m-p/765434#M1002714</guid>
      <dc:creator>spottedowl</dc:creator>
      <dc:date>2019-03-11T10:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: Static NAT Problem - Help Me Understand This</title>
      <link>https://community.cisco.com/t5/network-security/static-nat-problem-help-me-understand-this/m-p/765435#M1002722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thats the way static command works in 7.x code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read through the note in command reference, syntax description (interface):&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-custom" href="http://www.cisco.com/univercd/cc/td/doc/product/multisec/asa_sw/v_70/cref_txt/s.htm#wp1540284" target="_blank"&gt;http://www.cisco.com/univercd/cc/td/doc/product/multisec/asa_sw/v_70/cref_txt/s.htm#wp1540284&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Guru.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 23:27:19 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-nat-problem-help-me-understand-this/m-p/765435#M1002722</guid>
      <dc:creator>gurdsing</dc:creator>
      <dc:date>2007-06-22T23:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: Static NAT Problem - Help Me Understand This</title>
      <link>https://community.cisco.com/t5/network-security/static-nat-problem-help-me-understand-this/m-p/765436#M1002727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got the exact sam eproblem as yours after I migrated to asa5510. I see all the NAT and access-list fine but the web server located at dmz is not accessible form outside. But I have not issued that command that you mentioned.&lt;/P&gt;&lt;P&gt;When you run the command this way which public ip gets mapped with your internal ip&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;10.1.2.2?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (dmz1,outside) interface 10.1.2.2 netmask 255.255.255.255 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2007 01:22:58 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-nat-problem-help-me-understand-this/m-p/765436#M1002727</guid>
      <dc:creator>kcarjun2002</dc:creator>
      <dc:date>2007-06-23T01:22:58Z</dc:date>
    </item>
    <item>
      <title>Re: Static NAT Problem - Help Me Understand This</title>
      <link>https://community.cisco.com/t5/network-security/static-nat-problem-help-me-understand-this/m-p/765437#M1002729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The outside interface IP address will get  mapped to the 10.1.2.2 address in your case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Guru.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2007 06:49:35 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-nat-problem-help-me-understand-this/m-p/765437#M1002729</guid>
      <dc:creator>gurdsing</dc:creator>
      <dc:date>2007-06-23T06:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: Static NAT Problem - Help Me Understand This</title>
      <link>https://community.cisco.com/t5/network-security/static-nat-problem-help-me-understand-this/m-p/765438#M1002751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Guru&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I already have different public ip mapped with my new web server,located at dmz. When I compare the nat and access-list with the other web servers at the same location, I don't see anything different. Why is it not still accessible from outside? Can you explain me in little details how can I troubleshoot this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2007 14:48:44 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-nat-problem-help-me-understand-this/m-p/765438#M1002751</guid>
      <dc:creator>kcarjun2002</dc:creator>
      <dc:date>2007-06-23T14:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Static NAT Problem - Help Me Understand This</title>
      <link>https://community.cisco.com/t5/network-security/static-nat-problem-help-me-understand-this/m-p/765439#M1002755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is that you were trying use the IP address assigned to the interface. When using the interface IP you must use the "interface" keyword. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"	&lt;/P&gt;&lt;P&gt;INTERFACE: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Specifies the interface IP address for the global address. Use this keyword if you want to use the interface address, but the address is dynamically assigned using DHCP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note You must use the interface keyword instead of specifying the actual IP address when you want to include the IP address of a PIX Firewall interface in a static PAT entry. "&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2007 15:16:33 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-nat-problem-help-me-understand-this/m-p/765439#M1002755</guid>
      <dc:creator>JBDanford2002</dc:creator>
      <dc:date>2007-06-23T15:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: Static NAT Problem - Help Me Understand This</title>
      <link>https://community.cisco.com/t5/network-security/static-nat-problem-help-me-understand-this/m-p/765440#M1002757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually, I am using the static NAT address not the one from the outside interface.&lt;/P&gt;&lt;P&gt;My outside interface is x.x.2.147&lt;/P&gt;&lt;P&gt;and the internal ip that I am using for web server is 172.16.1.6. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following is the relevant config that I am using. But its still not accesible from outside. DO I have to do anything special for version 7.x&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (dmz,outside) X.X.2.125 172.16.1.6 netmask 255.255.255.255 &lt;/P&gt;&lt;P&gt;access-list acl_allow_in permit tcp any host X.X.2.125 eq www &lt;/P&gt;&lt;P&gt;access-list acl_allow_in in interface outside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2007 19:58:47 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-nat-problem-help-me-understand-this/m-p/765440#M1002757</guid>
      <dc:creator>kcarjun2002</dc:creator>
      <dc:date>2007-06-23T19:58:47Z</dc:date>
    </item>
    <item>
      <title>Re: Static NAT Problem - Help Me Understand This</title>
      <link>https://community.cisco.com/t5/network-security/static-nat-problem-help-me-understand-this/m-p/765441#M1002759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kind of confused. Your config above shows the following for your DMZs and I didnt see any additional route so I am figuring you have conflicting subnets. Below you DMZ shows &lt;/P&gt;&lt;P&gt;10.1.3.1 but your server IP is 172.16.1.6. Has something changed? Post a full scrubbed config.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;interface Ethernet0/2&lt;/P&gt;&lt;P&gt;nameif dmz1&lt;/P&gt;&lt;P&gt;security-level 50&lt;/P&gt;&lt;P&gt;ip address 10.1.2.1 255.255.255.0&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface Ethernet0/3&lt;/P&gt;&lt;P&gt;nameif dmz2&lt;/P&gt;&lt;P&gt;security-level 10&lt;/P&gt;&lt;P&gt;ip address 10.1.3.1 255.255.255.0 &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2007 21:54:17 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-nat-problem-help-me-understand-this/m-p/765441#M1002759</guid>
      <dc:creator>JBDanford2002</dc:creator>
      <dc:date>2007-06-23T21:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: Static NAT Problem - Help Me Understand This</title>
      <link>https://community.cisco.com/t5/network-security/static-nat-problem-help-me-understand-this/m-p/765442#M1002763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry for confusion. May be I should have posted my problem separately.  &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2007 22:42:01 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-nat-problem-help-me-understand-this/m-p/765442#M1002763</guid>
      <dc:creator>kcarjun2002</dc:creator>
      <dc:date>2007-06-23T22:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: Static NAT Problem - Help Me Understand This</title>
      <link>https://community.cisco.com/t5/network-security/static-nat-problem-help-me-understand-this/m-p/765443#M1002767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My apologies. I didnt realize you werent the original poster.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2007 23:34:04 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-nat-problem-help-me-understand-this/m-p/765443#M1002767</guid>
      <dc:creator>JBDanford2002</dc:creator>
      <dc:date>2007-06-23T23:34:04Z</dc:date>
    </item>
  </channel>
</rss>

