squid配置代理

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/u012999810/article/details/86288767

安装 squid:

sudo apt-get install squid squid-com

服务端配置文件:

acl SSL_ports port 443
acl Safe_ports port 80          # http
acl Safe_ports port 21          # ftp
acl Safe_ports port 443         # https
acl Safe_ports port 70          # gopher
acl Safe_ports port 210         # wais
acl Safe_ports port 1025-65535  # unregistered ports
acl Safe_ports port 280         # http-mgmt
acl Safe_ports port 488         # gss-http
acl Safe_ports port 591         # filemaker
acl Safe_ports port 777         # multiling http
acl CONNECT method CONNECT
http_access allow localhost
http_access allow all
http_port 3128
coredump_dir /var/spool/squid
refresh_pattern ^ftp:           1440    20%     10080
refresh_pattern ^gopher:        1440    0%      1440
refresh_pattern -i (/cgi-bin/|\?) 0     0%      0
refresh_pattern (Release|Packages(.gz)*)$      0       20%     2880
refresh_pattern .               0       20%     432

客户端配置
修改.bashrc 添加如下内容,ip改

export ftp_proxy=http://192.168.0.251:3128
export http_proxy=http://192.168.0.251:3128
export https_proxy=http://192.168.0.251:3128
export all_proxy=http://192.168.0.251:3128
export no_proxy=localhost,127.0.0.1,.baidu.
source .bashrc

猜你喜欢

转载自blog.csdn.net/u012999810/article/details/86288767