【发布时间】:2015-05-20 22:40:59
【问题描述】:
我在我的 IIS 7 服务器上配置绑定,例如:
ip address: All Unassigned
port: 8080
但在netstat -aon 命令中只看到127.0.0.1:8080 而不是0.0.0.0:8080(我想要)
你知道如何解决这个问题吗?
【问题讨论】:
标签: asp.net http iis tcp server
我在我的 IIS 7 服务器上配置绑定,例如:
ip address: All Unassigned
port: 8080
但在netstat -aon 命令中只看到127.0.0.1:8080 而不是0.0.0.0:8080(我想要)
你知道如何解决这个问题吗?
【问题讨论】:
标签: asp.net http iis tcp server
谢谢大家。问题解决了。
我使用命令:
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 服务器。
【讨论】: