CubanCorona
Senior member
I configured my 501 to forward inbound traffic to the outside interface to a host on the internal network:
access-list out-in permit tcp any host X.X.X.X eq www
access-group out-in in interface outside
static (inside,outside) tcp interface www 192.168.1.2 www netmask 255.255.255.255 0 0
As expected, internet hosts can access the internal web server just fine. However, hosts on the interal network cannot access the webserver when they request it by domain name (which resolves the external interface ip).
So, what do I need to do here? I suppose somehow I need to redirect traffic on the internal network destined for the external interface ip to the internal server (192.168.1.2)? If that's correct, how do you do this?
access-list out-in permit tcp any host X.X.X.X eq www
access-group out-in in interface outside
static (inside,outside) tcp interface www 192.168.1.2 www netmask 255.255.255.255 0 0
As expected, internet hosts can access the internal web server just fine. However, hosts on the interal network cannot access the webserver when they request it by domain name (which resolves the external interface ip).
So, what do I need to do here? I suppose somehow I need to redirect traffic on the internal network destined for the external interface ip to the internal server (192.168.1.2)? If that's correct, how do you do this?