Shadowsocks Proxy

 · 1 min read

SS  Client:

根据不同的平台 Shadowsocks 客户端分成几个版本,不过都大同小异,最主要的就是把代理服务器的 IP 地址、端口、密码和加密方式配置好就行了。

可以看看这个网站,从这上面下载客户端     https://global.ishadowx.net/

 

shadowsocks client versions<figcaption class="wp-caption-text">shadowsocks 各平台客户端</figcaption></figure>

Mac 版本配置界面就长界面,其他版本也差不多

 

其实上面这个网站本来就有一些免费的代理信息,但是缺点是速度不是很快,而且每六个小时就会换一次密码,经常用的话要频繁更换密码,很不方便。

SS  Server:

我推荐购买 VPS,自己搭服务端,ss 服务端版本有四种,我推荐用 Go 版本的,一键安装 go 版的 shadowsocks

获取并一键安装:

wget --no-check-certificate https://raw.githubusercontent.com/iMeiji/shadowsocks_install/master/shadowsocks-go.sh<br /> chmod +x shadowsocks-go.sh<br /> ./shadowsocks-go.sh 2>&1 | tee shadowsocks-go.log

安装完成后,脚本提示如下:

Congratulations, shadowsocks-go install completed!
Your Server IP:your_server_ip
Your Server Port:your_server_port
Your Password:your_password
Your Local Port:1080
Your Encryption Method:aes-256-cfb

Welcome to visit:http://teddysun.com/392.html
Enjoy it!

安装完成后即已后台启动 shadowsocks-go ,运行:

/etc/init.d/shadowsocks-go status

可以查看 shadowsocks-go 进程是否已经启动。

本脚本安装完成后,已将 shadowsocks-go 加入开机自启动。

使用命令:

启动:/etc/init.d/shadowsocks-go start

停止:/etc/init.d/shadowsocks-go stop

重启:/etc/init.d/shadowsocks-go restart

状态:/etc/init.d/shadowsocks-go status

卸载方法:

使用 root 用户登录,运行以下命令:

./shadowsocks-go.sh uninstall

 

 

原文&参考:

https://github.com/iMeiji/shadowsocks_install/wiki/shadowsocks-go-%E4%B8%80%E9%94%AE%E5%AE%89%E8%A3%85

https://github.com/shadowsocks/shadowsocks-go