Windows server 2008 DNS http redirect

domain-name-systemredirectwindows-server-2008

on my lan i have two servers. One windows server 2008 and one debian webserver. I would like to configure my windows DNS to redirect all traffic on my lan to, for example "example.com" to my local webserver (on 192.168.10.24). How do i configure my windows DNS to do this kind of redirection?

Best Answer

Are you trying to do a URL redirect or just point example.com to 192.168.10.24?

if it's the latter, just create a zone called example.com with an A record of 192.168.10.24.

If you're trying to do *.example.com to example.com then you still will want an A record as above, but you would create a cname called *.example.com to point to example.com.

Then simply make sure your clients have your local DNS server pushed out (via DHCP).

If i misunderstood the request, let me know.