当我尝试使用centus 6.8上的wget
通过代理连接到网站时出现以下错误消息。
错误
wget http://www.yahoo.co.jp
--2016-12-16 14:47:04 http://www.yahoo.co.jp
Connecting to 172.30.10.124:8080... connected.
Proxy request sent, awaiting response... 407 Proxy Authentication Required
2016-12-16 14:47:04 ERROR 407: Proxy Authentication Required
选中
我确认此命令正在运行。
export http_proxy='http://guest:gstPass@172.30.10.124:8080'
wget http://www.yahoo.co.jp
〜/ .wgetrc
这是〜/ .wgetrc
的内容http_proxy = 172.30.10.124:8080
https_proxy = 172.30.10.124:8080
ftp_proxy = 172.30.10.124:8080
proxy_user = "guest"
proxy_passwd = "gstPass"
(I do not edit /etc/wgetrc)
wget版本
这是wget
GNU Wget 1.12 built on linux-gnu
我也读过wget proxy authentication error但没有变化。
我应该在哪里检查?错误在哪里?
答案 0 :(得分:1)
我可以解决这个问题。我更改了proxy_user
和proxy_passwd
的值。
<强> BEFORE 强>
http_proxy = 172.30.10.124:8080
https_proxy = 172.30.10.124:8080
ftp_proxy = 172.30.10.124:8080
proxy_user = "guest"
proxy_passwd = "gstPass"
<强> AFTER 强>
http_proxy = 172.30.10.124:8080
https_proxy = 172.30.10.124:8080
ftp_proxy = 172.30.10.124:8080
proxy_user = guest
proxy_passwd = gstPass
我不需要&#39; &#34; &#39; proxy_user
和proxy_passwd