本脚本适用环境:
关于本脚本:
默认配置:
客户端下载:
使用方法: wget --no-check-certificate https://raw.githubusercontent.com/teddysun/shadowsocks_install/master/shadowsocks-libev.sh chmod +x shadowsocks-libev.sh ./shadowsocks-libev.sh 2>&1 | tee shadowsocks-libev.log 安装完成后,脚本提示如下: Congratulations, shadowsocks-libev install completed! Your Server IP:your_server_ip Your Server Port:8989 Your Password:your_password Your Local IP:127.0.0.1 Your Local Port:1080 Your Encryption Method:aes-256-cfb Welcome to visit:http://teddysun.com/357.html Enjoy it!
卸载方法: ./shadowsocks-libev.sh uninstall
其他事项: 安装完成后即已后台启动 shadowsocks ,运行: ps -ef | grep ss-server | grep -v ps | grep -v grep
可以查看进程是否存在。
使用命令:
特别说明: REJECT all -- 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibited 运行命令: /etc/init.d/iptables status 可以查看。如果有这条规则,则添加的 8989 端口需手动更改一下,放到这条规则的上一行。编辑 /etc/sysconfig/iptables 文件,将: -A INPUT -p tcp -m state --state NEW -m tcp --dport 8989 -j ACCEPT 放在: -A INPUT -j REJECT --reject-with icmp-host-prohibited 的前面。最终效果如下: -A INPUT -p tcp -m state --state NEW -m tcp --dport 8989 -j ACCEPT -A INPUT -j REJECT --reject-with icmp-host-prohibited 编辑完后,重启 iptables 防火墙。命令:/etc/init.d/iptables restart
参考链接: (责任编辑:IT) |