【centos】squid代理环境搭建

【操作系统环境】

centos

【安装操作步骤】

1、yum安装

yum install squid

2、代理端口配置:/etc/squid/squid.conf

http_port 3128

3、使配置生效

squid -z

4、启动服务

service squid start

注:如果无法连上代理服务器,需要检查代理服务器的防火墙是否开放了代理端口

如果需要加上代理服务账号,需进行如下配置:

1、配置访问用户的账号信息

htpasswd -c /etc/squid/passwd

注:该步骤需要依赖Apache,可yum安装:yum install httpd

2、vi /etc/squid/squid.conf

#http_access allow localnet

#http_access allow localhost

auth_param basic program /usr/lib64/squid/ncsa_auth /etc/squid/passwd

auth_param basic children 5

auth_param basic realm why's squid server

auth_param basic credentialsttl 2 hours

acl myacl proxy_auth REQUIRED

http_access allow myacl

http_access deny all

保存后重启squid服务


猜你喜欢

转载自blog.csdn.net/leftAright/article/details/79886973
今日推荐