hi, I have a webserver in my dmz (192.168.11.10), it is accessible from outside:
static (dmz,outside) 1.2.3.4 192.168.11.10 netmask 255.255.255.255 nat (dmz) 1 192.168.11.0 255.255.255.0 access-list acl_out extended permit tcp any host 1.2.3.4 eq www
what happens if a host on my lan interface (nat (inside) 1 192.168.25.0 255.255.255.0) wants to access the webserver at the external address:
is the packet actually leaving pix after being nat'ed or is pix aware of the webserver being on the dmz interface and routes it right away without sending the packet to the next hop. what is the order on how pix handles this connections?
my problem is: clients on the lan can not reach the webserver, anybody else can. (there is no deny on the inside interface)
thanks, m