Plugged the following commands into my PIX 515 FW:
static (inside,outside) tcp 1.1.1.1pop3 192.168.50.10 pop3 netmask 255.255.255.255 0 0
static (inside,outside) tcp 1.1.1.1smtp 192.168.50.11 smtp netmask 255.255.255.255 0 0
static (inside,outside) tcp 1.1.1.1www 192.168.50.12 www netmask 255.255.255.255 0 0
access-list 100 permit tcp any host 1.1.1.1 eq pop3
access-list 100 permit tcp any host 1.1.1.1 eq smtp
access-list 100 permit tcp any host 1.1.1.1 eq www
access-group 100 in interface outside
The www server sees tcp packets come in, but the fw blocks a response. I have no ACL applied to the inside interface. All other servers and clients are being NAT correctly. Any ideas?
(I know it is something pretty simple, I am just being braindead today!)
Thanks in advance for your help.