<?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 PIX DMZ Config request in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/pix-dmz-config-request/m-p/46276#M628884</link>
    <description>&lt;P&gt;I have a PIX515, with three interfaces: outside, DMZ, and inside. Their is a current configuration in place with the exception of the DMZ, will install shortly.  A new  webserver will sit on the DMZ with nat to the server.  Do I setup the DMZ interface to accept traffic from ports 80 and 443?  Do I need to setup some kind of access-list as well?  Also,  LAN clients will need access to this webserver, (also hosts the intranet).  Two types of LAN clients: 1. Ordinary users that will access the intranet, and 2. Admin users, who will need to hard map to HDDs for system and web maintenance (developers).  Obviously, I would need to setup some kind of access-list for LAN clients.  Could anyone shed some light on this issue?  Input would be appreciated.&lt;/P&gt;</description>
    <pubDate>Fri, 21 Feb 2020 06:02:27 GMT</pubDate>
    <dc:creator>rai</dc:creator>
    <dc:date>2020-02-21T06:02:27Z</dc:date>
    <item>
      <title>PIX DMZ Config request</title>
      <link>https://community.cisco.com/t5/network-security/pix-dmz-config-request/m-p/46276#M628884</link>
      <description>&lt;P&gt;I have a PIX515, with three interfaces: outside, DMZ, and inside. Their is a current configuration in place with the exception of the DMZ, will install shortly.  A new  webserver will sit on the DMZ with nat to the server.  Do I setup the DMZ interface to accept traffic from ports 80 and 443?  Do I need to setup some kind of access-list as well?  Also,  LAN clients will need access to this webserver, (also hosts the intranet).  Two types of LAN clients: 1. Ordinary users that will access the intranet, and 2. Admin users, who will need to hard map to HDDs for system and web maintenance (developers).  Obviously, I would need to setup some kind of access-list for LAN clients.  Could anyone shed some light on this issue?  Input would be appreciated.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 06:02:27 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-dmz-config-request/m-p/46276#M628884</guid>
      <dc:creator>rai</dc:creator>
      <dc:date>2020-02-21T06:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: PIX DMZ Config request</title>
      <link>https://community.cisco.com/t5/network-security/pix-dmz-config-request/m-p/46277#M628887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here are some snipits from a similar config:&lt;/P&gt;&lt;P&gt;This config is NOT doing NAT from DMZ to outside or from inside to DMZ.  The Outside and DMZ are on /26 subnets of the /25 subnet they own.  IE: both outside and DMZ are public space.&lt;/P&gt;&lt;P&gt;(Public ip changed to 9.9.9.x for security reasons)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;global (outside) 1 &lt;OUTSIDE address=""&gt;&lt;/OUTSIDE&gt;&lt;/P&gt;&lt;P&gt;     #sets outside nat address(es)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;nat (inside) 1 192.168.0.0 255.255.0.0 0 0&lt;/P&gt;&lt;P&gt;    #this nats inside to outside, wont nat to dmz because no global (dmz&lt;/P&gt;&lt;P&gt;) command exists.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (DMZ,outside) 9.9.9.9 9.9.9.9 netmask 255.255.255.255 0 0&lt;/P&gt;&lt;P&gt;   #this line makes the web server visible to outside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,DMZ) 192.168.0.0 192.168.0.0 netmask 255.255.0.0 0 0&lt;/P&gt;&lt;P&gt;   #this line makes the inside subnet visible to the DMZ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Access lists will be needed for all traffic permitted from outside to DMZ and from DMZ to inside.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Apr 2002 14:23:47 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-dmz-config-request/m-p/46277#M628887</guid>
      <dc:creator>jboyer</dc:creator>
      <dc:date>2002-04-26T14:23:47Z</dc:date>
    </item>
    <item>
      <title>Re: PIX DMZ Config request</title>
      <link>https://community.cisco.com/t5/network-security/pix-dmz-config-request/m-p/46278#M628892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much for your quick response.  Let's assume the following:&lt;/P&gt;&lt;P&gt;Outside: 215.202.205.250 255.255.255.248&lt;/P&gt;&lt;P&gt;DMZ: 215.202.205.253 255.255.255.248&lt;/P&gt;&lt;P&gt;inside: 129.1.1.10 255.255.255.0&lt;/P&gt;&lt;P&gt;global (outside) 1 215.202.205.250&lt;/P&gt;&lt;P&gt;nat (inside)  1 129.1.1.10 255.255.255.0 0 0&lt;/P&gt;&lt;P&gt;static (DMZ,outside) 215.202.205.250 215.202.205.253 netmask 255.255.255.255.248 0 0&lt;/P&gt;&lt;P&gt;static (inside,DMZ) 215.202.205.253 129.1.1.10 netmask 255.255.255.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this correct?  Your input would be appreciated.  Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Apr 2002 20:00:49 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-dmz-config-request/m-p/46278#M628892</guid>
      <dc:creator>rai</dc:creator>
      <dc:date>2002-04-29T20:00:49Z</dc:date>
    </item>
  </channel>
</rss>

