One minute
Centos7架设socks5服务器
# 安装
yum -y install gcc openldap-devel pam-devel openssl-devel
wget http://jaist.dl.sourceforge.net/project/ss5/ss5/3.8.9-8/ss5-3.8.9-8.tar.gz
tar -vzx -f ss5-3.8.9-8.tar.gz
cd ss5-3.8.9/
./configure
make
make install
# 配置
vim /etc/opt/ss5/ss5.conf
# 去掉下面两行的注释
# auth 0.0.0.0/0 - -
# permit - 0.0.0.0/0 - 0.0.0.0/0 - - - -
# 更改默认端口需要修改/etc/sysconfig/ss5配置文件
# 添加 SS5_OPTS=" -u root -b 0.0.0.0:其他端口"
# 防火墙
firewall-cmd --permanent --add-port=1080/tcp
firewall-cmd --permanent --add-port=1080/udp
firewall-cmd --reload
# 启动
chmod a+x /etc/init.d/ss5
/etc/init.d/ss5 start
# 开机启动
chkconfig --add ss5
chkconfig ss5 on
# 访问代理: ip:1080
# 可配合pac文件使用