无法访问简单的http服务器

时间:2016-08-15 12:25:25

标签: python simplehttpserver

我使用

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

python -m SimpleHTTPServer

我可以通过我的笔记本电脑或通过手机访问它,但当它通过其他位置访问时显示网页不可用,或者当我尝试通过浏览器的VPN访问它时,它也会出现错误:请求的网址无法检索.. 这似乎是什么问题? 我在这里粘贴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]

1 个答案:

答案 0 :(得分:0)

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

另请参阅:http://xkcd.com/742