Debian
如何在 Debian shell 中設置代理身份驗證?
我想,一旦我使用
export http_proxy=http://user:password@address:port/
成功地。但是現在當我使用
wget
它時顯示解析代理 URL http://user:passwordaddress:port/ 時出錯:埠號錯誤。
為什麼它忽略
@
符號?如何讓它發揮作用?我也試過
wget --proxy-user=USERNAME --proxy-password=PASSWORD
但它回來了
已發送代理請求,等待響應… 407 需要代理身份驗證 2011-06-09 14:01:18 錯誤 407:需要代理身份驗證。
您是否嘗試過以下語法?
http_proxy=http://address:port/ wget --proxy-user=USERNAME --proxy-password=PASSWORD http://url