squid的ncsa_auth用户认证代理

1、安装squid、http

#yum install -y squid httpd

2、配置NCSA认证

①创建认证用户名密码,使用Http的htpasswd

#htpasswd  /etc/squid/passwd carl

②确定squid是否支持authentication helper

#rpm -ql squid | grep ncsa_auth

输出

/usr/lib64/squid/ncsa_auth   此为下配置文件中ncsa认证文件的位置

③配置squid.conf

#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

#/etc/init.d/squid restart


你可能感兴趣的:(配置文件,children,用户名)