如何从外网访问iis网站?
我在笔记本电脑上安装了 IIS(win 7 professional 64 位)。
创建了一个网站。我能够在网络内查看该网站。 如果我输入 192.168.0.227/vdv (本地主机 IP 地址)(笔记本电脑的 IP)。
现在我需要从外网访问这个网站。
我买了一个 WiFi 调制解调器并连接到 lap(现在 lap 已与 LAN 断开连接)。调制解调器具有动态 IP 和动态 IP 地址。圈被指定为 192.168.100.100。现在我需要从网络外部访问笔记本电脑中的网站。
怎么办?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我正确地阅读您的帖子,那么您正在本地运行 IIS,但当您的本地 IP 更改时,您会遇到连接问题。
默认情况下,IIS 绑定到所有 IP 地址,因此您使用 LAN IP 还是调制解调器 IP 并不重要。无论哪种方式,为了简单起见,您应该使用
localhost
或127.0.0.1
或您的计算机名称作为地址。当您的本地 IP 发生变化时,这不会改变。首先查看 http://localhost/vdv 是否有效。如果确实如此,则继续使用它,否则您可能需要更改本地 IIS 安装或应用程序中的绑定。确保它没有侦听特定的 IP 地址。
请查看这篇文章以获取更多信息:http://blogs.technet.com/b/chrad/archive/2010/01/24/understanding-iis-bindings-websites-virtual-directories-and-lastly-application-pools.aspx< /a>
If I am reading your post correctly, you are running IIS locally but you are having problems connecting when your local IP changes.
By Default, IIS binds to all IP addresses, so it really shouldn't matter if you use your LAN ip or Modem IP. Either way, for simplicity you should either be using
localhost
or127.0.0.1
or your machine name as your address. This won't change when your local IP does.First see if http://localhost/vdv works. If it does then continue to use that, otherwise you may need to change the bindings in your local IIS installation or your application. Make sure it's not listening on a specific IP address.
Take a look at this article for more information: http://blogs.technet.com/b/chrad/archive/2010/01/24/understanding-iis-bindings-websites-virtual-directories-and-lastly-application-pools.aspx