How to know export proxy working or Not

喜你入骨 提交于 2019-11-29 12:52:45

I usually do a:

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

(always use http://... both for HTTP_PROXY and HTTPS_PROXY)
In other words, I make sure the proxy isn't called for internal url ending by .company.

Depending on the proxy used, you special character may or may not be supported, so if the setting above isn't working, try first to change your password with a plain one (without any special character).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!