使用squid快速搭建代理

简介:

如何使用squid快速搭建代理


=======

本项目主要介绍如何利用国外VPS搭建多协议代理服务。

GFW 封锁了 HTTP/Socks5 代理,HTTP 代理是关键词过滤,Socks5 代理则是封锁协议。不过某些特殊的低端口并没有这么处理,已知的有 21,25。

20端口已经被封杀,21端口目前会被限速400Kbps,换算后约合50KB/S,建议使用25端口,不限速。

搭建代理服务器

==============

在 25 端口搭建 http/https 代理。

Ubuntu:

1
2
3
apt-get  install  squid
curl https: //pac .itzmx.com /squid/ubuntu-squid .conf >>  /etc/squid3/squid .conf
/etc/init .d /squid  restart

Centos:

1
2
3
4
5
6
7
8
9
10
11
setenforce 0
ulimit  -n 1048576
echo  "* soft nofile 1048576"  >>  /etc/security/limits .conf
echo  "* hard nofile 1048576"  >>  /etc/security/limits .conf
killall sendmail
/etc/init .d /postfix  stop
chkconfig --level 2345 postfix off
yum -y  install  squid
wget -O  /etc/squid/squid .conf https: //pac .itzmx.com /squid/centos-squid .conf
/etc/init .d /squid  restart
chkconfig --level 2345 squid on


1
https: //pac .itzmx.com /squid/ubuntu-squid .conf的内容如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
auth_param basic program  /usr/lib/squid/basic_ncsa_auth  /etc/squid/passwd
auth_param basic children 5
auth_param basic realm Welcome to pac.itzmx.com proxy web server
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
acl squid_user proxy_auth REQUIRED
http_access allow squid_user
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access deny all
 
http_port 25
coredump_dir  /var/spool/squid
refresh_pattern -i ^ ftp :            525600    95% 525600 reload-into-ims
refresh_pattern -i ( /cgi-bin/ |\?)   0          0% 0      reload-into-ims
refresh_pattern -i .                525600    95% 525600 reload-into-ims
strip_query_terms off
visible_hostname pac.itzmx.com
cache_mgr 1265578519@qq.com
cache_store_log none
cache_access_log none
cache_mem 256 MB
cache_dir aufs  /var/cache/squid  5000 128 128
cache_swap_low 90
cache_swap_high 95
maximum_object_size 128 MB
maximum_object_size_in_memory 128 MB
dns_nameservers 8.8.8.8 8.8.4.4
client_lifetime 1 minutes
half_closed_clients off
fqdncache_size 65535
ipcache_size 65535
ipcache_low 90
ipcache_high 95


1
https: //pac .itzmx.com /squid/centos-squid .conf的内容如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
auth_param basic program  /usr/lib64/squid/ncsa_auth  /etc/squid/passwd
auth_param basic children 5
auth_param basic realm Welcome to pac.itzmx.com proxy web server
acl manager proto cache_object
 
acl localhost dst 127.0.0.0 /8  0.0.0.0 /32  ::1
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
acl squid_user proxy_auth REQUIRED
http_access allow squid_user
http_access allow manager localhost
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access deny all
 
http_port 25
coredump_dir  /var/spool/squid
refresh_pattern -i ^ ftp :            525600    95% 525600 reload-into-ims
refresh_pattern -i ( /cgi-bin/ |\?)   0          0% 0      reload-into-ims
refresh_pattern -i .                525600    95% 525600 reload-into-ims
strip_query_terms off
visible_hostname pac.itzmx.com
cache_mgr 1265578519@qq.com
cache_store_log none
cache_access_log none
cache_mem 256 MB
cache_dir aufs  /var/cache/squid  5000 128 128
cache_swap_low 90
cache_swap_high 95
maximum_object_size 128 MB
maximum_object_size_in_memory 128 MB
dns_nameservers 8.8.8.8 8.8.4.4
client_lifetime 1 minutes
half_closed_clients off
fqdncache_size 65535
ipcache_size 65535
ipcache_low 90
ipcache_high 95


不知道能否使用,先收藏找时间试试



本文转自 f_066 51CTO博客,原文链接:http://blog.51cto.com/ganmu/1962417,如需转载请自行联系原作者

相关文章
|
7月前
|
存储 网络协议 虚拟化
ESXi 8.0U3e 重大更新发布,修复 150 多个已知问题
ESXi 8.0U3e 重大更新发布,修复 150 多个已知问题
815 5
ESXi 8.0U3e 重大更新发布,修复 150 多个已知问题
|
数据采集
手把手教你如何将SOCKS5代理转换成HTTP代理?
具体要如何操作?今天就来具体展示一下要如何利用privoxy,将SOCKS5代理转化成HTTP代理。
|
Linux 数据安全/隐私保护 网络安全
|
Python Windows
怎么将 Python 项目打包成 exe?
这篇内容是一个关于使用Python和相关工具创建GUI应用并打包成Windows安装程序的教程摘要: - **环境**:Python 3.8,Tkinter(内置GUI库),PyInstaller 6.3.0,Inno Setup Compiler(用于创建安装包)。 - **基本流程**:在conda环境中创建一个独立的虚拟环境,编写一个使用Tkinter的GUI应用,添加图标,用PyInstaller将应用打包成单个可执行文件(exe),最后用Inno Setup Compiler将exe和相关文件打包成安装程序。
502 0
|
云计算
阿里云短信群发、验证码、短信提醒费用价格表
阿里云短信群发、验证码、短信提醒费用价格表,阿里云短信服务价格表,阿里云短信0.032元一条,阿里云短信价格?阿里云短信怎么收费?阿里云短信多少钱一条,阿里云短信价格0.032元一条
837 0
|
存储 缓存 安全
|
缓存 监控 安全
有哪些搭建代理服务器的好方法?--代理IP小课堂
今天我们就来说一说,要如何搭建代理服务器,以此来帮助你快速入门代理服务器的搭建和使用。
|
安全 开发者
《源于支付宝的人脸认证:速度快、体验好、通过率高》
《源于支付宝的人脸认证:速度快、体验好、通过率高》
618 1
|
人工智能 前端开发 JavaScript
Web 1.0、Web 2.0 和 Web 3.0 之间的比较
Web 1.0、Web 2.0 和 Web 3.0 之间的比较
513 0
Web 1.0、Web 2.0 和 Web 3.0 之间的比较