I have an ASP.NET website hosted at home on IIS. Outside my home network i can see the website, but inside the network it gives me a 404 error. I can browse the site as localhost. It seems like a DNS problem, just not sure how to fix it.
|
|
|||||
|
|
|
That's almost certainly a NAT problem. I assume your web server sits behind a NAT router and you've forwarded some port (probably 80) from the external interface of the router to port 80 on your server machine. I also assume you're trying to access your website either using a name which resolves to your external IP (probably a dynamic DNS name), or you're trying to access it directly using that external IP. This will probably not work out of the box since most NAT routers will only make the port mapping available for packets coming in on the router's external interface. If the above holds true, there are four possible solutions:
|
||
|
|
|
|
The externally visible IP address that you've presumably pointed your domain to is really the IP address of your router or cable modem. External connections will be routed to the machine with IIS on, but when you connect from inside the network you'll get the router's own web server with its admin interface. That's unlikely to have a page matching the URL you requested, so you'll get a 404. You should be able to fix it by adding an entry to the hosts files of your home machines to map your domain to the internal IP of the machine with IIS on, overriding the external IP in the DNS entry. |
||
|
|
