我在IIS 7服务器上配置绑定,如:
ip address: All Unassigned
port: 8080
但在netstat -aon
命令中仅查看127.0.0.1:8080
而不是0.0.0.0:8080
(我想要的)
你知道如何解决这个问题吗?
答案 0 :(得分:5)
感谢所有人。问题解决了。
我使用命令:
netsh http show iplisten
并在监听列表中看到127.0.0.1
。 (但我没有手动添加它)。所以我删除它并添加0.0.0.0
代替。
netsh http delete iplisten ipaddress=127.0.0.1
netsh http add iplisten ipaddress=0.0.0.0
然后我重新启动了iis服务器。