linux cntlm代理的配置

时间:2016-06-13 19:08:50   收藏:0   阅读:1755

在linux下需要配置代理上网,如yum, wget等。如果直接配置windows下的代理,如下:

export http_proxy=http://<proxyIP>:<port>

使用wget时会出错,407 Proxy need authentication, 网上搜了一下用一个叫ntlmaps的东西,结果不好使。于是又换了cntlm一切ok。

linux下使用windows代理的代理. 网址: https://sourceforge.net/projects/cntlm/

Step 1: install
rpm -ivh cntlm-0.92.3-1.x86_64.rpm

Step 2: configuration
refer to cntlm.conf(/etc) as example.

Step 3: env
change .bashrc, or export http_proxy
export http_proxy=http://127.0.0.1:3128

Step 4: verify

[root@localhost ~]# netstat -nl |grep 3128
tcp        0      0 127.0.0.1:3128              0.0.0.0:*                   LISTEN

wget -d -v www.baidu.com

 

ok!

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!