Ubuntu使用squid实现http代理

apt-get update

apt-get install squid

vi /etc/squid3/squid.conf

命令行模式输入/http_access allow 查找,
找到http_access allow localhost,注释掉,然后增加一条为http_access allow all
将http_port 3128修改为自己的端口http_port 3201
ESC:wq保存退出

service squid3 restart

完成后就可以在浏览器中添加http代理ip:3201了

这时的http只是透明代理,会有via字段和X-Forwarded-For字段显示你的IP
需要匿名的话就需要修改配置

查看版本号

squid3 -v

vi /etc/squid3/squid.conf

不同版本添加不同代码,下面是版本号以及对应代码

Squid 2.x
header_access Via deny all
header_access X-Forwarded-For deny all

Squid 3.0
reply_header_access Via deny all
reply_header_access X-Forwarded-For deny all

Squid 3.1以及以上版本
via off
forwarded_for delete

添加完成后

service squid3 restart

你可能感兴趣的:(Ubuntu使用squid实现http代理)