fthomas1973
MIS
We are currently using NAT and is working fine for external (Internet) users to access a static map to a webserver we have made
ip nat inside source static 10.10.10.4 206.124.153.228
However when internal users behind the NAT (and a PIX firewall) try to access the webserver it times outs. Essentially they are resolving the public address 206.124.153.228 and looping back in. However I am suspecting that the static may be confusing it... We currently setup a DNS entry for the internal DNS server to point to the webserver's internal address. Is this the only way it will work?
Here is a quick run down of how we are utilizing the NAT. We are using route maps (properly I believe) to have everyone go out one interface primarily and switch to the NAT on lower bandwidth interface in case of failure.
ip nat inside source route-map nat-cland interface Serial0/1 overload
ip nat inside source route-map nat-sprint interface Serial0/0 overload
route-map nat-cland permit 10
match ip address 13
match interface Serial0/1
!
route-map nat-sprint permit 10
match ip address 13
match interface Serial0/0
Serial 0/1 and 0/0 have the ip nat outside statements and FE1/0 has the ip nat inside and the internal network of ip address 10.10.10.1 255.255.255.248
Thanks
Frank
ip nat inside source static 10.10.10.4 206.124.153.228
However when internal users behind the NAT (and a PIX firewall) try to access the webserver it times outs. Essentially they are resolving the public address 206.124.153.228 and looping back in. However I am suspecting that the static may be confusing it... We currently setup a DNS entry for the internal DNS server to point to the webserver's internal address. Is this the only way it will work?
Here is a quick run down of how we are utilizing the NAT. We are using route maps (properly I believe) to have everyone go out one interface primarily and switch to the NAT on lower bandwidth interface in case of failure.
ip nat inside source route-map nat-cland interface Serial0/1 overload
ip nat inside source route-map nat-sprint interface Serial0/0 overload
route-map nat-cland permit 10
match ip address 13
match interface Serial0/1
!
route-map nat-sprint permit 10
match ip address 13
match interface Serial0/0
Serial 0/1 and 0/0 have the ip nat outside statements and FE1/0 has the ip nat inside and the internal network of ip address 10.10.10.1 255.255.255.248
Thanks
Frank