> CentOS > CentOS教程 >

centos vps中安装配置socks5代理

有些时候在上网的时候可能需要使用到socks5代理等,这篇文章主要是介绍如何在centos中用自己的vps做个socks5代理。
1.配置编译环境

1
yum -y install gcc automake make

2.安装socks5必要的包

1
yum -y install pam-devel openldap-devel cyrus-sasl-devel

3.下载,编译安装ss5(socks5)(这是老版本了 但没出错 就先用着吧)

1
2
3
4
5
6
wget http://storage.boluo.de/linux/27001-ss5-3.6.1-1.tar.gz   
tar zxvf 27001-ss5-3.6.1-1.tar.gz  
cd ss5-3.6.1
./configure
make
make install

#启动ss5服务

1
/etc/init.d/ss5 start

添加ss5到服务中,并随机启动

1
2
chkconfig --add ss5
chkconfig ss5 on

ss5 默认使用1080端口,并允许任何人使用。
我们可以修改 /etc/opt/ss5/ss5.conf 中的

1
2
3
#       SHost           SPort           Authentication
#
auth    0.0.0.0/0               -              -

为:

1
2
3
#       SHost           SPort           Authentication
#
auth    0.0.0.0/0               -              u

在 /etc/opt/ss5/ss5.passwd 中添加 用户名和密码 如:

1
test test

使用用户验证,重启ss5服务

1
/etc/init.d/ss5 restart

(责任编辑:IT)