ss依旧强大

前面试用了wireguard,由于android客户端版本不支持IPv6的地址,而且通过google play更新应用的时候总是响应超时,所以只能重新使用ss,虽然github上已经看不到项目了内容了,但安装之后依然可以链接,简要方法如下:

安装chacha算法依赖的库:

yum install -y libsodium

安装ss:

pip3 install https://github.com/shadowsocks/shadowsocks/archive/master.zip -U

:有介绍可以直接如上安装,本地是先直接安装,pip3 install shadowsocks,后执行的这一步

启动ss:

ssserver -c user-config.json --log-file ss.log -d restart

配置文件可以参考官方内容:

{
"server":"my_server_ip",
"server_port":8388,
"local_port":1080,
"password":"barfoo!",
"timeout":600,
"method":"chacha20-ietf-poly1305"
}

参考文章,必要时很有用:

https://shadowsocks.org/en/config/quick-guide.html
www.yunotes.com/archives/263
https://dylanyang.top/post/2019/05/15/centos7安装配置shadowsocks客户端/

 

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据