无法访问简单的http服务器
cannot access simple http server
我使用
创建了一个简单的 Simple http 服务器
python -m SimpleHTTPServer
我可以通过笔记本电脑或 phone 访问它,但是当通过其他位置访问它时,它显示网页不可用,或者当我尝试通过浏览器的 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
我使用
创建了一个简单的 Simple http 服务器python -m SimpleHTTPServer
我可以通过笔记本电脑或 phone 访问它,但是当通过其他位置访问它时,它显示网页不可用,或者当我尝试通过浏览器的 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