IIS7 access website from remote computer

Viewed 91385

i created a site on my iis7 it's like http://localhost:88/my i also can access it like this http://myip:88/my but when a friend of mine from a remote computer tried to access it like this http://myip:88/my it gives him 404 not found

anybody can tell me what should i do to make it work from remote ?

3 Answers

If firewall setting is not the issue (say it's turned off), find out public IP of your server (ex. 192.168.0.152), then add it to http listener on the server itself Open cmd and type: netsh http add iplisten 192.168.0.152

Related