Reputation: 429
I configure binding on my IIS 7 server like:
ip address: All Unassigned
port: 8080
but in netstat -aon
command see only 127.0.0.1:8080
instead 0.0.0.0:8080
(which I would like)
Do you know how to solve this problem?
Upvotes: 3
Views: 15137
Reputation: 429
Thanks to all. Problem is solved.
I use command:
netsh http show iplisten
and saw 127.0.0.1
in listening list. (But I didn't add it manually). So I delete it and add 0.0.0.0
instead.
netsh http delete iplisten ipaddress=127.0.0.1
netsh http add iplisten ipaddress=0.0.0.0
Then I restarted iis server.
Upvotes: 14