IIS 7.5 – Fixing Access Issues Working Only from Localhost

iiswindows-server-2008-r2

Windows server 2008 R2. Firewall disabled.
IIS allowed connections only from localhost, but not from local network or by this server IP locally. Only localhost or 127.0.0.1
In bindings settings IP addresses not assigned.
IIS fresh installation without any restrictions.
telnet on 80 port also not working
Any reasons?

Best Answer

The problem was in wrong bindings (the http.sys don't read correct settings from conf file) The right answer is: from command line:
netsh http show ip listen
delete iplisten ipaddress=127.0.0.1
exit
and then
restart IIS to apply these changes:
iisreset

Related Topic