无法访问简单HTTP服务器



我使用

创建了一个简单的simple http服务器

python -m SimpleHTTPServer

我可以通过我的笔记本电脑或通过我的手机访问它,但是当它通过另一个位置访问时,它显示网页不可用,或者当我试图通过浏览器的VPN访问它时,它也给出了一个错误:请求的url无法检索。有什么问题吗?我把wget的输出粘贴到这里

   wget 192.168.43.171:8000
   --2016-08-15 17:40:06--  http://192.168.43.171:8000/
   Connecting to 192.168.43.171:8000... connected.
   HTTP request sent, awaiting response... 200 OK
   Length: 242 [text/html]
   Saving to: ‘index.html’
   index.html          100%[====================>]     242  --.-KB/s   in       0s     
   2016-08-15 17:40:06 (28.8 MB/s) - ‘index.html’ saved [242/242]

以192.168开头的IPv4地址是本地网络块的一部分。您不能在本地网络之外访问它们。

参见:http://xkcd.com/742

相关内容

  • 没有找到相关文章

最新更新