尝试在 1 个 vps 上运行 2 个 dante 服务器

尝试在 1 个 vps 上运行 2 个 dante 服务器

我购买了一个 vps 目的是将其用作带有 dante 的 socks5 代理,我的 vps 在接口 venet0:1 上有第二个 ip,我想知道如何将该 ip 与 venet0:0 上的 ip 一起用作代理。

这是我的 danted.conf 文件

logoutput: /var/log/socks.log
internal: venet0:0 port = 1080
external: 111.111.111.111 // actual ip is here
method: username none #rfc931
clientmethod: none
user.privileged: root
user.notprivileged: nobody
user.libwrap: nobody
client pass {
    from: 0.0.0.0/0 port 1-65535 to: 0.0.0.0/0
    log: connect disconnect error
}
pass {
    from: 0.0.0.0/0 to: 0.0.0.0/0
    protocol: tcp udp
}

相关内容