我在網路上的虛擬機器中執行 Debian 6,需要對代理伺服器進行 Windows 驗證,然後才能執行任何 http/https/ftp 連線。
我試過了:
export http_proxy=http://domain\\username:password@proxyIPaddress:8080
和 一樣ftp_proxy
,但我不斷收到:「代理伺服器需要身份驗證」。
我的密碼確實有一些特殊字符,因此我使用反斜線對它們進行轉義,就像我對網域所做的那樣。如果我點擊向上箭頭查看我的歷史記錄,該命令看起來是正確的(轉義反斜杠消失了,命令和密碼看起來是正確的)。
我還應該嘗試什麼?
答案1
您應該將export http_proxy
命令作為細繩。這應該可以解決問題:
export http_proxy='http://domain\username@proxyIPaddress:8080/'
答案2
export http_proxy=domain\\\username:password@proxyIPaddress:port
和
export https_proxy=domain\\\username:password@proxyIPaddress:port\