kali用Squid简单配置搭建http代理服务器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了kali用Squid简单配置搭建http代理服务器相关的知识,希望对你有一定的参考价值。

1、安装Squid3

[email protected]:~# apt install squid3


2、配置

    编辑squid3的配置文件:/etc/squid/squid.conf

[email protected]:~# cp /etc/squid/squid.conf /etc/squid/squid.conf.back 
[email protected]:~# vim /etc/squid/squid.conf

 (1)将 Squid 服务器监听 TCP 端口 8888 以代替缺省的 TCP 端口 3128,可以如下所示修改 http_port 语句:

http_port 8888

 (2)权限控制:设置哪些网段或主机可以访问此代理服务器

acl sixtyfive_network src 192.168.65.0/255.255.255.0
http_access allow sixtyfive_network


3、重启服务,生效:

    

systemctl restart squid.service


本文出自 “11255017” 博客,请务必保留此出处http://11265017.blog.51cto.com/11255017/1878665

以上是关于kali用Squid简单配置搭建http代理服务器的主要内容,如果未能解决你的问题,请参考以下文章

如何在Linux上用Squid搭建代理服务器

Centos服务器搭建Squid Http代理请求服务器

Centos服务器搭建Squid Http代理请求服务器

Centos服务器搭建Squid Http代理请求服务器

Centos服务器搭建Squid Http代理请求服务器

搭建squid代理服务器,并启用简单认证