如何知道导出代理是否正常工作

时间:2013-07-03 08:52:43

标签: git proxy export firewall

要下载办公室防火墙后面的一些开源代码,我将导出代理 像这样

export http_proxy=http://username:passwdatXYZ.com:portnumber
export https_proxy=http://username:passwdatXYZ.com:portnumber
export HTTP_PROXY=://username:passwdatXYZ.com:portnumber
export HTTPS_PROXY=://username:passwdatXYZ.com:portnumber

我如何通过上述密码知道我的导出是否正确或登录是否正确或是否正常工作!

我的密码有一个特殊字符 - “!”,例如它是-> abcd!efgh,所以我必须提供密码为abcd%21efgh(其中21是unicode特殊字符“!”)

由于它不起作用,你会改变那些设置?

1 个答案:

答案 0 :(得分:2)

我经常做一个:

set HTTP_PROXY=http://username:abcd%21efgh@proxy.xxx.company:portnumber
set HTTPS_PROXY=http://username:abcd%21efgh@proxy.xxx.company:portnumber
set NO_PROXY=.company

(对于http://... HTTP_PROXY,始终使用HTTPS_PROXY) 换句话说,我确保没有为.company结尾的内部网址调用代理。

根据所使用的代理,您可能支持或不支持特殊字符,因此如果上述设置不起作用,请尝试首先更改您的密码(没有任何特殊情况)字符)。