Hi,
Have you looked at this article on the Cisco website:
http://www.cisco.com/en/US
The example is for setting up SMTP in a DMZ but you should be able to substitute HTTP-based traffic instead.
Hope this helps,
William
Main Topics
Browse All TopicsI am new to firewalls. I have Cisco PIX 515e set up with version 7.04. I have it running with inside/outside interfaces. However, just additional card to use it for DMZ. I can't seem to get the DMZ set up correctly. I hate using the ASDM web interface.
Is there a configuration out there I can use to walk me through this process. All I have found on Cisco site is use of the ASDM.
I am trying to set up a web server in the DMZ as well.
Here is what I have for IPs.
Outside interface: 70.60.73.xx
Inside Interface: 10.X.X.2
DMZ Interface: 192.168.3.X
Please help as I am under a deadline and don't know what to do.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Hi,
Have you looked at this article on the Cisco website:
http://www.cisco.com/en/US
The example is for setting up SMTP in a DMZ but you should be able to substitute HTTP-based traffic instead.
Hope this helps,
William
hi there
Is the webserver all you want to host in the DMZ or will the DMZ server any other function?
To setup the DMZ from scratch -
PIX(config)# interface ethernet2
PIXconfig-if)# ip address 192.168.3.1 255.255.255.0
PIX(config-if)# nameif DMZ
PIX(config-if)# no shutdown
To allow DMZ hosts access to outside, setup DMZ natting using the same nat ID as the global (outside) command - e.g. if global (outside) uses a nat id of 1
nat (DMZ) 1 192.168.3.0 255.255.255.0
To translate the webserver to the outside and allow www traffic if you have a free public ip address:
static (DMZ, outside) [public ip address] 192.168.3.10 netmask 255.255.255.255
access-list fromoutside permit tcp any host [public ip address] eq www
access-group fromoutside in interface outside
To translate the webserver to the outside and allow www traffic if you don't have a free public ip address and want to use the outside int address of the PIX:
static (DMZ, outside) tcp interface www 192.168.3.10 www netmask 255.255.255.255
access-list fromoutside permit tcp any host [PIX outside ip address] eq www
access-group fromoutside in interface outside
Remember to test www traffic hitting the webserver from outside the PIX. If you test connection to www.yourdomain.com from inside, it will not work unless you setup DNS doctoring.
hope this helps
Business Accounts
Answer for Membership
by: rmossbargerPosted on 2006-03-10 at 10:29:19ID: 16157091
Urgency is the big key here as it was suddenly given to me to do and have a monday deadline.