I have a PIX 515 setup as the connection point for my DSL connection. I am running it as a PPPoE client, the external interface gets a DHCP address from my ISP. I am trying to setup a web server inside my network. I have setup the static command to look like this...
static (inside,outside) tcp interface 255.255.255.255 0 0
The ACL that I use is this...
access-list inbound permit tcp any host 10.10.10.3 eq www
The error that I am seeing in the syslog is this...
Deny tcp src outside:199.71.141.254/1242 dst inside:216.8.169.148/80 by access-group "inbound"
If I change the ACL to permit tcp any any eq www
then it works just fine. The problem is that I don't want to open it up like that, I really hate using the any any statement.
Does anyone have any ideas?
static (inside,outside) tcp interface 255.255.255.255 0 0
The ACL that I use is this...
access-list inbound permit tcp any host 10.10.10.3 eq www
The error that I am seeing in the syslog is this...
Deny tcp src outside:199.71.141.254/1242 dst inside:216.8.169.148/80 by access-group "inbound"
If I change the ACL to permit tcp any any eq www
then it works just fine. The problem is that I don't want to open it up like that, I really hate using the any any statement.
Does anyone have any ideas?