2013-07-03 43 views
1

可以下載Office防火牆我出口代理 這樣如何知道出口代理工作或沒有

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 

我怎麼知道閹我這個出口與上面的密碼和登錄的背後是一些開源代碼正確與否或工作與否!

我pasword具有特殊字符 - 「!」例如,它是-> abcd!efgh,所以我必須爲abcd%21efgh提供密碼(其中21是特殊字符「!」的Unicode)的

因爲它不是」工作,你會改變這些設置?

回答

2

我通常做:

set HTTP_PROXY=http://username:abcd%[email protected].company:portnumber 
set HTTPS_PROXY=http://username:abcd%[email protected]:portnumber 
set NO_PROXY=.company 

(總是使用http://...既爲HTTP_PROXYHTTPS_PROXY
換句話說,我要確保代理未要求通過.company結束內部URL。

根據所使用的代理,你特殊字符可能會或可能不支持,所以如果上述設置後不能正常工作,嘗試第一與一個普通的一個(沒有任何特殊字符),更改您的密碼。

+0

是。公司的關鍵字。 – Raulp

+0

@Raulp只是一個詞,你可以用你的公司用來代理的任何擴展名替換。因此,如果我的代理網址以「.company」結尾,我需要從代理呼叫中排除任何以「.company」結尾的網址(因爲ihat url會引用公司的內部LAN/WAN,而不是全球網) 。 – VonC

相關問題