1、安装squid、http
1
|
#yum install -y squid httpd
|
2、配置NCSA认证
①创建认证用户名密码,使用Http的htpasswd
1
|
#htpasswd /etc/squid/passwd carl
|
②确定squid是否支持authentication helper
1
|
#rpm -ql squid | grep ncsa_auth
|
输出
1
|
/usr/lib64/squid/ncsa_auth
此为下配置文件中ncsa认证文件的位置
|
③配置squid.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#vim /etc/squid/squid.conf
##需要更改
http_port 8808
#squid服务端口号
##需要增加
auth_param basic program
/usr/lib64/squid/ncsa_auth
/etc/squid/passwd
//
定义squid密码文件与ncsa_auth文件位置
auth_param basic children 15
//
认证进程的数量
auth_param basic realm Squid proxy-caching web server
//squid
做基本代理web缓存
auth_param basic credentialsttl 2 hours
//
认证有效期
auth_param basic casesensitive off
//
用户名不区分大小写,可改为ON区分大小写
#注:以上5行内容配置文件,需配置在acl及http_access行上,否则启动squid会报
#Can't use proxy auth because no authentication schemes are fully configured.
#FATAL: ERROR: Invalid ACL: acl carl proxy_auth REQUIRED
#在acl行适当位置增加
acl carl proxy_auth REQUIRED
#在http_access deny manager上一行增加
http_access allow carl
|
④重启squid
1
|
#/etc/init.d/squid restart
|
本文转自灬落魄灬 51CTO博客,原文链接:http://blog.51cto.com/smoke520/1963366,如需转载请自行联系原作者