centos实现代理和番镪

前言

因为公司的测试服务器需要访问国外的paypal,如果不fangqiang 虽然能访问但是非常的慢。
找了一些教程实现了一个自动化fanq

安装shadowsocks

1
2
yum install python-pip
pip install shadowsocks

安装完成之后写一个配置文件,/etc/shadowsocks.json

1
2
3
4
5
6
7
8
9
10
11
{
"server":"your_server_ip",
"server_port":443,
"local_address": "127.0.0.1",
"local_port":1080,
"password":"your_server_passwd",
"timeout":300,
"method":"rc4-md5",
"fast_open": false,
"workers": 1
}

启动

1
sslocal -c /etc/shadowsocks.json

安装Privoxy

1
yum install privoxy

安装好后,修改一下配置vim /etc/privoxy/config

搜索forward-socks5t,将forward-socks5t / 127.0.0.1:9050
改注释并修改为forward-socks5t / 127.0.0.1:1080

配置/etc/profile

执行vim /etc/profile,添加如下二句:

1
2
export http_proxy=http://127.0.0.1:8118 
export https_proxy=http://127.0.0.1:8118

修改后使配置生效source /etc/profile
执行wget www.google.com 判断是否成功

配置自动规则

上面的配置完成之后虽然可以代理了,但是没办法区分国内外,需要我们再配置一个gfwlist

gfwlist 是由 AutoProxy 官方维护,由众多网民收集整理的中国大陆防火长城的域名屏蔽列表;
因为这是 Firefox 浏览器直接使用的一种格式,要在 privoxy 上使用就需要进行相应的格式转换;
这里我提供一个 shell 转换脚本,除了正则语法无法自动处理外,其它的基本 OK,gfwlist2privoxy。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 关于 gfwlist2privoxy 脚本
# 脚本依赖 base64、curl(支持 https)、perl5 v5.10.0+
# 你也可以从这个网址下载 gfwlist.action,6 小时更新一次
# https://zfl9.github.io/gfwlist2privoxy/gfwlist.action

# 获取 gfwlist2privoxy 脚本
curl -4sSkLO https://raw.github.com/zfl9/gfwlist2privoxy/master/gfwlist2privoxy

# 生成 gfwlist.action 文件
bash gfwlist2privoxy '127.0.0.1:1080'

# 检查 gfwlist.action 文件
more gfwlist.action # 一般有 5000+ 行

# 应用 gfwlist.action 文件
mv -f gfwlist.action /etc/privoxy
echo 'actionsfile gfwlist.action' >>/etc/privoxy/config

重启一下就可以自动判断了

1
privoxy /etc/privoxy/config

参考链接

如何使用Shadowsocks让centos翻墙 https://bodyno.com/tool/2017/09/03/centos-ss.html
ss-local 终端代理(gfwlist) https://www.zfl9.com/ss-local.html