6

Network Diagram

I have a web site set up in IIS, mysite.net, which I want to be accessible ONLY from within my local network. So it's supposed to be an intranet site.

Now, the way the DNS server and the Web server are configured, when I go to "mysite.net" from the server computer, it all works fine; it's reachable. What I don't know how to do is to make this accessible from the clients computers.

PS: I can reach it from a client computer if I set preferred DNS server, on the router, to point to my server, but then I can't get to the web.

So, what am I missing? Is it a config to be done on the DNS server? On the Web server? On the router? Am I missing one or more hardware components?

Thank you.

heavyd
  • 65,321
fduayer
  • 163
  • 1
  • 1
  • 5

2 Answers2

6
  • Set up a Forwarder in your Windows DNS server that forwards all unknown requests to your ISP's DNS (or your router if it forwards requests, or use Google's DNS, etc.).
  • Set the clients to use the internal DNS server as their DNS setting.

This setup will cause the clients will check with the internal DNS, which will respond with IPs for any hosts it has entries for. Any other host requests (i.e.: Internet hosts) will be forwarded to your ISP's DNS for resolution.

More info (from MS):

0

Just use a regular domain & point it to an internal address. Eg

Mysite.net resolves to 192.168.1.230

Where 230 is your internal server address. This way you don't need an internal DNS server you can just set it like normal

Toby Allen
  • 3,123