Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Pix 506

Status
Not open for further replies.

mitan

IS-IT--Management
Jul 2, 2002
1
0
0
US
I am looking for a smple Pix 506 config using 192.168.128.0/24 as an internal network. allowing any outbound traffic using a PAT address of my outside interface xxx.xxx.xxx.74
in addition to that I need to allow SMTP, pop3 into the firewall nating from outside address of xxx.xxx.xxx.75 to internal address of 192.168.128.198.

I tryed using pdm, wow does that not work. Please help
 
Hi mitan

Try adding these lines to your config to allow access from the outside to your inside server,

Code:
static (inside,outside) xxx.xxx.xxx.75 192.168.128.198 netmask 255.255.255.255 0 0
access-list acl_out permit tcp any host xxx.xxx.xxx.75 eq smtp 
access-list acl_out permit tcp any host xxx.xxx.xxx.75 eq pop3 
access-list acl_out permit tcp any host xxx.xxx.xxx.75 eq ftp
access-list acl_out permit tcp any host xxx.xxx.xxx.75 eq www
access-group acl_out in interface outside

sean
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top