我在网络上的虚拟机中运行 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\