- Open cmd as an administrator.
- Allow the ports to be accessed by the firewall.
>netsh advfirewall firewall add rule name="Open Port 3000" dir=in action=allow protocol=TCP localport=3000
Here we are assuming that my project is on port 3000.
- Allow IIS to use your IP and machine hostnames. You can choose to use both or just one.
> netsh http add urlacl url=http://pc-hostname:3000/ user=everyone
> netsh http add urlacl url=http://10.0.1.10:3000/ user=everyone
Here we are assuming the IP address of my machine is 10.0.1.10
- Add the hostnames to your local IIS configuration.
- Navigate to "Documents\IISExpress\config"
- Open "applicationhost.config"
- Locate the applications you need to enable remote access for. In the case of my "RemoteAccess" project, you're looking for this:
<site name="RemoteAccess.web" id="17">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="C:\Users\Justin Walker\Documents\Visual Studio 2013\Projects\Remote Access\RemoteAccess.Web" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:3000:localhost" />
</bindings>
</site>
- Add "binding" directives under "bindings." My changed configs look like this.
<site name="RemoteAccess.web" id="17">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="C:\Users\Justin Walker\Documents\Visual Studio 2013\Projects\Remote Access\RemoteAccess.Web" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:3000:localhost" />
<binding protocol="http" bindingInformation="*:3000:pc-hostname" />
<binding protocol="http" bindingInformation="*:3000:10.0.1.10" />
</bindings>
</site>