Sunday, March 22, 2015

networking - Windows 10 Firewall Commands - Sharing Local Web Sites on LAN

I used to use this series of commands pre Windows 10 in order to enable sharing my development sites on my local network:





  • Open up C:\Users\\Documents\IISExpress\config\applicationhost.config

  • Find your site definition and add in a new binding ” />

  • Open Command Prompt (as admin) netsh http add urlacl url=http://:54275/ user=everyone

  • Then execute netsh advfirewall firewall add rule name=”IISExpressWeb” dir=in protocol=tcp localport=54275 profile=private remoteip=localsubnet action=allow

  • Then point your remote machines to http://:54275



However I've just gone through these same steps on my local Windows 10 box and the Firewall is still blocking requests.



Turning Windows Firewall off completely and the sites start serving the requests.




Anyone have an info on what changed and a solution?

No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...