我目前在使用python进行的任何请求中都遇到了网络无法访问的错误。无论我是使用urllib库还是请求库。
经过一些更多的研究后,可能是由于错误的设置ipv6隧道造成的,这似乎仍然有效:
$ ip -6 addr show
$ ip -6 route
default dev wlan0 metric 1
某些上下文:我正在运行Archlinux并且今天更新了系统,尽管今天似乎没有任何与python相关的特殊更新。我也是在virtualenv下运行它,但是其他的virtualenvs和在virtualenv之外使用我的Python也有同样的问题。
我正在使用VPN,但没有VPN我得到了同样的错误。
我也试过重新启动电脑,哈哈,通常有助于解决任何问题大声笑,但也没有帮助
我觉得这可能与Archlinux有关,但我不确定。
这是我之前尝试设置ipv6隧道的方法:
sudo modprobe ipv6
sudo ip tunnel del sit1
sudo ip tunnel add sit1 mode sit remote 59.66.4.50 local $ipv4
sudo ifconfig sit1 down
sudo ifconfig sit1 up
sudo ifconfig sit1 add 2001:da8:200:900e:0:5efe:$ipv4/64
sudo ip route add ::/0 via 2001:da8:200:900e::1 metric 1
也使用此命令:
ip -6 addr add 2001:0db8:0:f101::1/64 dev eth0
在我的/etc/systemctl.conf中删除ipv6行后更新3,一些网址开始工作:
>>> urllib2.urlopen('http://www.google.com')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.7/urllib2.py", line 126, in urlopen
return _opener.open(url, data, timeout)
File "/usr/lib/python2.7/urllib2.py", line 400, in open
response = self._open(req, data)
File "/usr/lib/python2.7/urllib2.py", line 418, in _open
'_open', req)
File "/usr/lib/python2.7/urllib2.py", line 378, in _call_chain
result = func(*args)
File "/usr/lib/python2.7/urllib2.py", line 1207, in http_open
return self.do_open(httplib.HTTPConnection, req)
File "/usr/lib/python2.7/urllib2.py", line 1177, in do_open
raise URLError(err)
urllib2.URLError: <urlopen error [Errno 101] Network is unreachable>
>>> urllib2.urlopen('http://baidu.com')
<addinfourl at 27000560 whose fp = <socket._fileobject object at 0x7f4d1fed5e50>>
这是来自ipython的错误日志。
In [1]: import urllib2
In [2]: urllib2.urlopen('http://google.com')
---------------------------------------------------------------------------
URLError Traceback (most recent call last)
/home/samos/<ipython console> in <module>()
/usr/lib/python2.7/urllib2.py in urlopen(url, data, timeout)
124 if _opener is None:
125 _opener = build_opener()
--> 126 return _opener.open(url, data, timeout)
127
128 def install_opener(opener):
/usr/lib/python2.7/urllib2.py in open(self, fullurl, data, timeout)
398 req = meth(req)
399
--> 400 response = self._open(req, data)
401
402 # post-process response
/usr/lib/python2.7/urllib2.py in _open(self, req, data)
416 protocol = req.get_type()
417 result = self._call_chain(self.handle_open, protocol, protocol +
--> 418 '_open', req)
419 if result:
420 return result
/usr/lib/python2.7/urllib2.py in _call_chain(self, chain, kind, meth_name, *args)
376 func = getattr(handler, meth_name)
377
--> 378 result = func(*args)
379 if result is not None:
380 return result
/usr/lib/python2.7/urllib2.py in http_open(self, req)
1205
1206 def http_open(self, req):
-> 1207 return self.do_open(httplib.HTTPConnection, req)
1208
1209 http_request = AbstractHTTPHandler.do_request_
/usr/lib/python2.7/urllib2.py in do_open(self, http_class, req)
1175 except socket.error, err: # XXX what error?
1176 h.close()
-> 1177 raise URLError(err)
1178 else:
1179 try:
URLError: <urlopen error [Errno 101] Network is unreachable>
我可以通过网络浏览器正常访问google.com,我非常确定网络是否可以访问。
答案 0 :(得分:4)
您确定没有使用任何http代理服务器上网吗?
尝试将浏览器中的网络设置更改为无代理,并检查它是否仍在连接到互联网。
如果您使用代理(假设代理地址为http://yourproxy.com),请尝试执行此操作以检查是否可以解决问题。
import urllib2
proxy = urllib2.ProxyHandler({'http': 'yourproxy.com'})
opener = urllib2.build_opener(proxy)
urllib2.install_opener(opener)
urllib2.urlopen('http://www.google.com')
答案 1 :(得分:1)
最重要的是我通过放回文件的备份来编辑我的/ etc / hosts文件。我这样做是为了绕过伟大的防火墙手动设置facebook等的ipv6地址,所以它仍然使用那些ipv6地址...
经验教训:不要工作太多,不要急着做事。总是试着理解你在做什么,并写下你所做的事情。所以你有办法退缩。
在/etc/systemctl.conf中删除以下行似乎有点帮助:
net.ipv6.conf.all.forwarding = 1
它最终没有帮助,仍然得到错误网络无法访问google.com,尽管它可以在我的浏览器中访问:
>>> urllib2.urlopen('http://baidu.com')
<addinfourl at 27000560 whose fp = <socket._fileobject object at 0x7f4d1fed5e50>>
>>> urllib2.urlopen('http://www.google.com')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.7/urllib2.py", line 126, in urlopen
return _opener.open(url, data, timeout)
File "/usr/lib/python2.7/urllib2.py", line 400, in open
response = self._open(req, data)
File "/usr/lib/python2.7/urllib2.py", line 418, in _open
'_open', req)
File "/usr/lib/python2.7/urllib2.py", line 378, in _call_chain
result = func(*args)
File "/usr/lib/python2.7/urllib2.py", line 1207, in http_open
return self.do_open(httplib.HTTPConnection, req)
File "/usr/lib/python2.7/urllib2.py", line 1177, in do_open
raise URLError(err)
urllib2.URLError: <urlopen error [Errno 101] Network is unreachable>