I have a Windows Server 2012 R2 machine, named [mine-1234]
.
I have IIS 8.5 installed and a hole in my firewall for ports 80 and 443.
I have created 2 test sites
- one with a default binding to
:80
- one with two bindings to
:80
with host headers.[foo.mine-1234]
and[foo.mine.local]
I configured my hosts file to resolve mine.local
and foo.mine.local
to 127.0.0.1
and local reference to the sites resolve fine. The issue I'm having is when I attempt to use the external bindings on my LAN.
Requests from Localhost
http://mine.local/index.html
loads in the browserhttp://foo.mine.local/index.html
loads in the browser.
Requests from LAN Clients
http://mine-1234/index.html
loads in the browser.http://foo.mine-1234/index.html
does not load in the browser.
However, the host headers do not resolve for other callers on my LAN that are outside my machine.
3 Questions (2 and 3 depend on the answer to 1)
- Can
foo
be made available to my LAN without modifying DNS? [if: 1=yes]
What is the proper binding forfoo
onmine-1234
to make it accessible to my LAN without modifying DNS?[if: 1=no]
What is the most straightforward way to modify DNS to makefoo
available to my LAN?