本文教程使用的是三丰云免费服务器,,有条件的同学可以使用自己的服务器。免费服务器对于初次练手的同学比较友好,地址:https://www.sanfengyun.com
1、拉取库
cd /root && wget https://ghproxy.com/https://github.com/shiunke/unke/blob/main/ss5-3.8.9-8.tar.gz
备注:上面拉库的地址已经失效,我保存了也一份tar包
链接: https://pan.baidu.com/s/1ZFxMgH1Qmn92_xtERsud8g 提取码: fiwq
下载后通过finashell上传到root路径下即可。
2、配置 Socks5 编译环境
yum install -y pam pam-devel gcc gcc-c++ openldap openldap-devel openssl openssl-devel cyrus-sasl cyrus-sasl-devel aytomake auoconf libtool automake make
3、解压
tar zxf ss5-3.8.9-8.tar.gz
4、进入文件夹并执行./configure
cd ss5-3.8.9/ && ./configure
5、编译
make && make install
6、修改这个目录文件/etc/opt/ss5/ss5.conf,将下面两行注释去掉,保存。
auth 0.0.0.0/0 – –
(87行)permit – 0.0.0.0/0 – 0.0.0.0/0 – – – – –
(203行)
7、让SS5随系统一起启动
chmod +x /etc/init.d/ss5 #授权 chkconfig --add ss5 chkconfig --level 345 ss5 on
8、默认端口1080,修改端口替换为其他端口,请修改 /etc/sysconfig/ss5
##端口号自己设置 注意开放你设置的端口号 # Add startup option here SS5_OPTS=" -u root -b 0.0.0.0:1080"
9、启动
#启动代理服务 service ss5 start #重启 service ss5 restart #修改完端口等配置后,务必重启 #停止 service ss5 stop
10、查看端口占用
netstat -lntp | grep ss5
11、如果上一步无法出现监听端口,或者查询后无进程,则进入目录卸载make
#进入目录 cd /root/ss5-3.8.9 #卸载make重新安装 make uninstall make install #然后重新修改配置文件 修改这个目录文件/etc/opt/ss5/ss5.conf 87行 203行 取消注释 #再重启socks5服务 service ss5 restart