centos6.8 wget错误:需要代理验证

时间:2016-12-16 06:17:19

标签: proxy wget centos6

当我尝试使用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但没有变化。

我应该在哪里检查?错误在哪里?

1 个答案:

答案 0 :(得分:1)

我可以解决这个问题。我更改了proxy_userproxy_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_userproxy_passwd