<?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: PIX: Allowing DMZ servers to access Inside servers in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/pix-allowing-dmz-servers-to-access-inside-servers/m-p/179296#M606735</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys - thank you for your help - my firewall is now up and running!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 27 Apr 2003 04:27:17 GMT</pubDate>
    <dc:creator>tkadri</dc:creator>
    <dc:date>2003-04-27T04:27:17Z</dc:date>
    <item>
      <title>PIX: Allowing DMZ servers to access Inside servers</title>
      <link>https://community.cisco.com/t5/network-security/pix-allowing-dmz-servers-to-access-inside-servers/m-p/179293#M606728</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am building a PIX 520 from scratch using 6.2(2) and PDM 2.1(1).  I have 3 interfaces: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;outside (sec0) - xx.xx.xx.xx&lt;/P&gt;&lt;P&gt;inside (sec100) - 10.100.1.0/24&lt;/P&gt;&lt;P&gt;dmz (sec10) - 172.16.254.0/24&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All was going well with the rulebase until I started on the task of allowing dmz hosts to access inside hosts.  I'm having problems as soon as I create an access rule e.g:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list dmz_access_in permit tcp host 172.16.254.20 host 10.100.1.35 eq ldap&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem 1: &lt;/P&gt;&lt;P&gt;pdm alerts to say that a static translation is needed for 10.100.1.35 between the inside network and the dmz.  I would like the 172.16.254.20 server to access the 10.100.1.35 server using its actual address of 10.100.1.35. Can I simply assign these commands:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,dmz) 10.100.1.0 10.100.1.0 netmask 255.255.255.0 0 0&lt;/P&gt;&lt;P&gt;access-list dmz_inbound_nat0_acl permit ip any 10.100.1.0 255.255.255.0&lt;/P&gt;&lt;P&gt;nat (dmz) 0 access-list dmz_inbound_nat0_acl outside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list dmz_access_in permit tcp host 172.16.254.20 host 10.100.1.35 eq ldap&lt;/P&gt;&lt;P&gt;access-group dmz_access_in in interface dmz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...will this work without problems?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem 2:&lt;/P&gt;&lt;P&gt;The implicit outbound rule for the DMZ is broken - why?  I need the DMZ servers to be able to access the internet without hindrance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I try and insert another rule to allow this, the following command is inserted into the PIX config:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list dmz_access_in permit ip 172.16.254.0 255.255.255.0 any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This command now allows any DMZ server to access all devices on my internal network!  How can I solve this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope someone can help...  Thanks in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tariq.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 06:42:06 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-allowing-dmz-servers-to-access-inside-servers/m-p/179293#M606728</guid>
      <dc:creator>tkadri</dc:creator>
      <dc:date>2020-02-21T06:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: PIX: Allowing DMZ servers to access Inside servers</title>
      <link>https://community.cisco.com/t5/network-security/pix-allowing-dmz-servers-to-access-inside-servers/m-p/179294#M606730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One Problem 1, you don't need the nat 0 statement and correospnding access-list.  The static is sufficient.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem 2: Since you applied an access-list to the DMZ interface, you must expand it to include Internet access as well.  If this is what you need, I would try something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list dmz_access_in permit tcp host 172.16.254.20 host 10.100.1.35 eq ldap &lt;/P&gt;&lt;P&gt;access-list dmz_access_in permit tcp host 172.16.254.30 host 10.100.1.35 eq ldap &lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;etc. to allow all required access inside.&lt;/P&gt;&lt;P&gt;access-list dmz_access_in deny ip any 10.0.0.0 255.0.0.0&lt;/P&gt;&lt;P&gt;access-list dmz_access_in permit ip any any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of course, you will want to tweak this as required.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2003 13:37:24 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-allowing-dmz-servers-to-access-inside-servers/m-p/179294#M606730</guid>
      <dc:creator>mklaphek</dc:creator>
      <dc:date>2003-04-21T13:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: PIX: Allowing DMZ servers to access Inside servers</title>
      <link>https://community.cisco.com/t5/network-security/pix-allowing-dmz-servers-to-access-inside-servers/m-p/179295#M606732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Problem 1)&lt;/P&gt;&lt;P&gt;Using the PDM is harder because you tend to forget alot of other options to configure.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what does your global syntax configuration(PAT) look like?  You should have a global (inside) 1 10.0.100.1.x and a corresponding nat statement NAT (dmz) 1 172.16.254.0 255.255.255.0.  This says that the hosts on the DMZ network will be NAT's to PAT address specified in the global statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, I agree you don't need the NAT 0 and corresponding ACL either.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2003 18:37:33 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-allowing-dmz-servers-to-access-inside-servers/m-p/179295#M606732</guid>
      <dc:creator>dsamaan</dc:creator>
      <dc:date>2003-04-21T18:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: PIX: Allowing DMZ servers to access Inside servers</title>
      <link>https://community.cisco.com/t5/network-security/pix-allowing-dmz-servers-to-access-inside-servers/m-p/179296#M606735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys - thank you for your help - my firewall is now up and running!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Apr 2003 04:27:17 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-allowing-dmz-servers-to-access-inside-servers/m-p/179296#M606735</guid>
      <dc:creator>tkadri</dc:creator>
      <dc:date>2003-04-27T04:27:17Z</dc:date>
    </item>
  </channel>
</rss>

