<?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: Need Basic NAT Config example. in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/need-basic-nat-config-example/m-p/1126380#M893879</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This doesn't appear to be working.  Can you create a show running-config that I can build from? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Nov 2008 17:26:49 GMT</pubDate>
    <dc:creator>John.OuYang</dc:creator>
    <dc:date>2008-11-07T17:26:49Z</dc:date>
    <item>
      <title>Need Basic NAT Config example.</title>
      <link>https://community.cisco.com/t5/network-security/need-basic-nat-config-example/m-p/1126378#M893875</link>
      <description>&lt;P&gt;I need a working sample config based on these simple details:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Outside  172.16.1.2     255.255.255.0  level 0&lt;/P&gt;&lt;P&gt;Inside   192.168.0.3    255.255.255.0 level 100&lt;/P&gt;&lt;P&gt;DMZ      192.168.154.1  255.255.255.0 level 50&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Web1     172.16.1.7 need to map to DMZ 192.168.154.7 smtp, https&lt;/P&gt;&lt;P&gt;Web2     172.16.1.24  need to map to inside 192.168.0.4 DNS  https&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. I would like the inside network to be able to reach any server in the DMZ any service.  Also be able to reach the web pages.&lt;/P&gt;&lt;P&gt;2. I would like the DMZ to pass only limted information like port http but I can build from any rule that works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.I would like to be able to browse the internet from the DMZ and inside.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will rate high on any working configurations.  I will rate each unique example using varied Nat types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 14:09:32 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/need-basic-nat-config-example/m-p/1126378#M893875</guid>
      <dc:creator>John.OuYang</dc:creator>
      <dc:date>2019-03-11T14:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: Need Basic NAT Config example.</title>
      <link>https://community.cisco.com/t5/network-security/need-basic-nat-config-example/m-p/1126379#M893877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;John&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (dmz,outside) tcp 172.16.1.7 25 192.168.154.7 25 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;static (dmz,outside) tcp 172.16.1.7 443 192.168.154.7 443 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) udp 172.16.1.24 53 192.168.0.4 53 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;static (inside,outside) tcp 172.16.1.24 443 192.168.0.4 443 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)  static (inside,DMZ) 192.168.0.0 192.168.0.0 netmask 255.255.255.0 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You don't need an acl because it is going from inside to DMZ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) access-list DMZ_in permit tcp 192.168.154.0 255.255.255.0 192.168.0.0 255.255.255.0 eq 80&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This would allow all hosts on DMZ to talk to any host on inside on port 80. As you say you can narrow it down.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) nat (inside) 1 192.168.0.0 255.255.255.0&lt;/P&gt;&lt;P&gt;   nat (dmz) 1 192.168.154.0 255.255.255.0 &lt;/P&gt;&lt;P&gt;   global (outside) 1 interface &lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;   Again you don't need acl because you are going from higher to lower security level interfaces.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 21:55:07 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/need-basic-nat-config-example/m-p/1126379#M893877</guid>
      <dc:creator>Jon Marshall</dc:creator>
      <dc:date>2008-11-06T21:55:07Z</dc:date>
    </item>
    <item>
      <title>Re: Need Basic NAT Config example.</title>
      <link>https://community.cisco.com/t5/network-security/need-basic-nat-config-example/m-p/1126380#M893879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This doesn't appear to be working.  Can you create a show running-config that I can build from? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 17:26:49 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/need-basic-nat-config-example/m-p/1126380#M893879</guid>
      <dc:creator>John.OuYang</dc:creator>
      <dc:date>2008-11-07T17:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: Need Basic NAT Config example.</title>
      <link>https://community.cisco.com/t5/network-security/need-basic-nat-config-example/m-p/1126381#M893881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;John&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you be a bit more specific - which bits work and which don't. If none of it works then can you check basics such as both interfaces are up etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 17:34:19 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/need-basic-nat-config-example/m-p/1126381#M893881</guid>
      <dc:creator>Jon Marshall</dc:creator>
      <dc:date>2008-11-07T17:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: Need Basic NAT Config example.</title>
      <link>https://community.cisco.com/t5/network-security/need-basic-nat-config-example/m-p/1126382#M893884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am unable to pass any traffic to the DMZ from the inside.  I can't pass any traffic from the DMZ to the inside...on specific ports and open to any.  All interfaces are up.&lt;/P&gt;&lt;P&gt;I cl xlate &lt;/P&gt;&lt;P&gt;I wonder if the default  from a higher security to a lower security rules are working.  &lt;/P&gt;&lt;P&gt;All I can do is browse the internet. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess I could try another asa 5510.&lt;/P&gt;&lt;P&gt;I do appreciate the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 19:54:17 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/need-basic-nat-config-example/m-p/1126382#M893884</guid>
      <dc:creator>John.OuYang</dc:creator>
      <dc:date>2008-11-07T19:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: Need Basic NAT Config example.</title>
      <link>https://community.cisco.com/t5/network-security/need-basic-nat-config-example/m-p/1126383#M893888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello John,&lt;/P&gt;&lt;P&gt;  Please post your running config and let us advise on config&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 20:11:54 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/need-basic-nat-config-example/m-p/1126383#M893888</guid>
      <dc:creator>Alan Huseyin Kayahan</dc:creator>
      <dc:date>2008-11-07T20:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: Need Basic NAT Config example.</title>
      <link>https://community.cisco.com/t5/network-security/need-basic-nat-config-example/m-p/1126384#M893890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is a copy of the running config on the asa5510.  I built it based on the information Jon provided.  No traffic is passing.  I expected to be able to RDP or reach the c drive of server in the dmz from an inside PC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John&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>Mon, 10 Nov 2008 21:13:20 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/need-basic-nat-config-example/m-p/1126384#M893890</guid>
      <dc:creator>John.OuYang</dc:creator>
      <dc:date>2008-11-10T21:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: Need Basic NAT Config example.</title>
      <link>https://community.cisco.com/t5/network-security/need-basic-nat-config-example/m-p/1126385#M893893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've started over several times.  I seem to be getting back to the same place...&lt;/P&gt;&lt;P&gt;Can browse internet from DMZ or Inside PC's &lt;/P&gt;&lt;P&gt;I just can't seem to pass any traffic between them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I even put all interfaces in one pool to allow access to allow dynamic translation to the dmz and outside...translation from the dmz to inside and outside interface pools.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What am I missing?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2008 20:45:18 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/need-basic-nat-config-example/m-p/1126385#M893893</guid>
      <dc:creator>risenshine4th</dc:creator>
      <dc:date>2008-11-12T20:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: Need Basic NAT Config example.</title>
      <link>https://community.cisco.com/t5/network-security/need-basic-nat-config-example/m-p/1126386#M893894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have an acl:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list dmz_access_in extended permit ip 192.168.154.0 255.255.255.0 192.168.0.0 255.255.255.0 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But you're not allowing traffic back in:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;permit ip 192.168.0.0 255.255.255.0 any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the above acl doesn't work, try to do "permit ip any any" to see if you can get ANY traffic at all. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2008 22:11:21 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/need-basic-nat-config-example/m-p/1126386#M893894</guid>
      <dc:creator>John Blakley</dc:creator>
      <dc:date>2008-11-12T22:11:21Z</dc:date>
    </item>
    <item>
      <title>Re: Need Basic NAT Config example.</title>
      <link>https://community.cisco.com/t5/network-security/need-basic-nat-config-example/m-p/1126387#M893895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Exactly what I was missing.&lt;/P&gt;&lt;P&gt;It shows this rule in the ASDM Rules but this ACL is clearly missing from the ACL Manager.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind of odd.  I thought that ACE's and that defined access rules were the same thing for Dmz incoming rules. So it must be a wired error for one to exist without the other.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2008 20:47:05 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/need-basic-nat-config-example/m-p/1126387#M893895</guid>
      <dc:creator>John.OuYang</dc:creator>
      <dc:date>2008-11-14T20:47:05Z</dc:date>
    </item>
    <item>
      <title>Re: Need Basic NAT Config example.</title>
      <link>https://community.cisco.com/t5/network-security/need-basic-nat-config-example/m-p/1126388#M893896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for letting me know, and the rating! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--John&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2008 21:04:39 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/need-basic-nat-config-example/m-p/1126388#M893896</guid>
      <dc:creator>John Blakley</dc:creator>
      <dc:date>2008-11-14T21:04:39Z</dc:date>
    </item>
  </channel>
</rss>

