Ubuntu 搭建 ShadowSocks 服务 在 Ubuntu 服务器上通过脚本安装 ShadowSocks 服务 来自 https://teddysun.com/342.html 安装 下载安装脚本 1wget --no-check-certificate https://raw.githubusercontent.com/teddysun/shadowsocks_install/master/shadowsocks.sh 改变脚本执行权限 1chmod +x shadowsocks.sh 执行 1./shadowsocks.sh 2>&1 | tee shadowsocks.log 添加配置在执行过程中会提示设置端口,密码,加密算法等配置,根据需要自己选择即可,端口默认8899,加密算法可选aes-256-cfb,适合大多数设备使用 12345678Congratulations, Shadowsocks-python server install completed!Your Server IP : 127.0.0.1Your Server Port : 8899Your Password : passwordYour Encryption Method: aes-256-cfbWelcome to visit:https://teddysun.com/342.htmlEnjoy it! 安装完成,在客户端设备添加配置即可 后续修改设置可以在 /etc/shadowsocks.json中修改 多账户多端口配置,修改配置文件 /etc/shadowsocks.json 123456789101112131415{ "server":"0.0.0.0", "local_address":"127.0.0.1", "local_port":1080, "port_password":{ "8989":"password0", "9001":"password1", "9002":"password2", "9003":"password3", "9004":"password4" }, "timeout":300, "method":"your_encryption_method", "fast_open": false} 卸载1./shadowsocks.sh uninstall Tags: Ubuntu Tool ShadowSocks ← Mac 客户端访问 Dropbox Kubernetes 中部署 SpringBoot 应用 →