欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Squid 设置网站访问白名单

程序员文章站 2022-07-07 21:33:02
...

1. 安装squid

yum install -y squid

2. 添加acl whitelist dstdomain

将如下行添加到行“acl CONNECT method CONNECT”下面

acl whitelist dstdomain "/etc/squid/whitelist"
http_access allow whitelist
http_access deny !whitelist

3. 将网站添加到/etc/squid/whitelist

.google.com
.gmail.com
.amazon.com
.ssl-images-amazon.com
.baidu.com
www.whatismyip.com
.lumtest.com
.ip-api.com
.vmlogin.com

4.测试

export http_proxy=http://*.*.*.*:3128
curl www.sina.com
--2020-09-22 08:53:56--  http://www.sina.com/
Resolving localhost (localhost)... ::1, 127.0.0.1
Connecting to localhost (localhost)|::1|:3128... connected.
Proxy request sent, awaiting response... 403 Forbidden
2020-09-22 08:53:56 ERROR 403: Forbidden.


[[email protected] ~]# wget www.baidu.com
--2020-09-22 08:54:27--  http://www.baidu.com/
Resolving localhost (localhost)... ::1, 127.0.0.1
Connecting to localhost (localhost)|::1|:3128... connected.
Proxy request sent, awaiting response... 200 OK
Length: 2381 (2.3K) [text/html]
Saving to: ‘index.html.3’

100%[================================================================================================================================================>] 2,381       --.-K/s   in 0s      

2020-09-22 08:54:27 (342 MB/s) - ‘index.html.3’ saved [2381/2381]
相关标签: Linux Squid