Ubuntu配置socket5代理服务器

时间:2024-11-07 14:59:39

                                  配置socket5代理服务器

1. 安装dante-server

apt-get install dante-server

2. 创建代理用户

2.1 创建组

groupadd proxy

2.2 创建用户

useradd ss5 -g proxy

2.3 设置密码

passwd ss5

3. 禁止ss5登录

编辑 

/etc/passwd

 在ss5用户那行后增加: 

/bin/false

4. 编辑配置文件

4.1 备份原配置文件

mv /etc/ /etc/

4.2 增加新配置文件

vim /etc/

将如下内容复制到文件并保存

logoutput: /var/log/
internal: eth0 port = 65522
external: eth0
method: username
clientmethod: none
: root
: ss5
: nobody
compatibility: sameport
compatibility: reuseaddr
extension: bind
client pass {
    from: 0.0.0.0/0 to: 0.0.0.0/0
}
pass {
    from: 0.0.0.0/0 to: 0.0.0.0/0
    protocol: tcp
}
:wq!

用户名(注意前面的空格。。。。)

4.3 启动代理服务

/etc//danted start

4.4 重启代理服务

/etc//danted restart

5. 检测是否成功

netstat -anp | grep 65522