03-05-2003 02:30 PM - edited 03-09-2019 02:23 AM
I have a web server on my dmz. Computers on the dmz can not access it by name. The problem is that the DNS returns the outside (real) ip. I need the dmz to translate it into a local ip. I am using the PDM so I am not using aliases. Any help would be appreciated.
Solved! Go to Solution.
03-05-2003 04:20 PM
You can do this with the [static] commands and the "dns" option.
static (dmz,outside) 123.123.123.123 192.168.1.1 dns netmask 255.255.255.255 [the dns keyword tells the pix to do DNS doctoring for this translation because DNS resolves to the public IP]
static (dmz,inside) 123.123.123.123 192.168.1.1 netmask 255.255.255.255 [allows internal hosts to connect to the public IP found in DNS and translates it to the private IP on the way to the DMZ]
Make sure to do a [clear xlate] after the changes.
If you're running below 6.2, you'll have to do some form of [alias] on the Pix.
03-05-2003 04:20 PM
You can do this with the [static] commands and the "dns" option.
static (dmz,outside) 123.123.123.123 192.168.1.1 dns netmask 255.255.255.255 [the dns keyword tells the pix to do DNS doctoring for this translation because DNS resolves to the public IP]
static (dmz,inside) 123.123.123.123 192.168.1.1 netmask 255.255.255.255 [allows internal hosts to connect to the public IP found in DNS and translates it to the private IP on the way to the DMZ]
Make sure to do a [clear xlate] after the changes.
If you're running below 6.2, you'll have to do some form of [alias] on the Pix.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide