Girish Kumar
Girish Kumar

Reputation: 113

Hosting Website to local in IIS

I am able to host website in IIS 8 but not with ip add. The binding with ip and browsing the site in chrome gives 'ERR_NETWORK_ACCESS_DENIED' http://localhost - works http://10.111.148.133/ - does not work.

Upvotes: 0

Views: 414

Answers (2)

Aaron Gillion
Aaron Gillion

Reputation: 2265

Along with the above answer, try going through your Firewall settings on the host computer and enabling anything related to IIS or port 80.

You can easily figure out if your antivirus or firewall is the issue by temporarily disabling it.

However, I think your issue is that you grabbed your public IP address, off whatsmyip.com or something, you just need to exec ipconfig to see what your local IP is.

Upvotes: 0

sudhansu63
sudhansu63

Reputation: 6180

Seems you are using your public IP.

You can browse using your local IP address. Your local IP address should be some thing like 192.168.xxx.xxx .

You can check your local Ip address using the following command in command prompt.

ipconfig/all

if you want to access your site using public ip, then you need to port forward from your public IP to localIp by setting the DMZ Host in your router.

Upvotes: 1

Related Questions