使用Squid设置正向代理
安装Squid
sudo apt-get install squid
编辑配置文件
vi /etc/squid3/squid.conf
注释下列配置
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access deny manager
添加以下配置,允许所有的HTTP访问
http_access allow all
配置Squid使用的代理端口,这里使用1080
http_port 1080
保存配置文件并启动Squid服务
service squid3 start
检查1080端口是否已经监听,确保服务正常运行
netstat -na | grep 1080
在Linux环境下配置代理
在终端输入如下命令
export http_proxy=http://172.17.1.100:1080
export https_proxy=http://172.17.1.100:1080
172.17.1.100 是你安装Squid服务的主机IP
1080 是你Squid服务监听的端口
使用如下命令验证配置是否生效
curl www.baidu.com
网友评论