在 Dante Socks5 Server ubuntu 中允许绑定连接

问题描述

我在 ubuntu 20.04 上安装并配置了 dante 服务器,并创建了包含以下数据的文件 /etc/danted.conf:

#authentication methods
clientmethod: none
socksmethod: none

##
## SOCKS client access rules
##
#rule processing stops at the first match,no match results in blocking

#allow connections from local network (192.0.2.0/24)
client pass {
        from: 192.168.1.0/24 to: 0.0.0.0/0
    log: error # connect disconnect
}

##
## SOCKS command rules
##
#rule processing stops at the first match,no match results in blocking

#generic pass statement - bind/outgoing traffic
socks pass {  
        from: 0.0.0.0/0 to: 0.0.0.0/0
        command: bind connect udpassociate
        log: error # connect disconnect iooperation
}

#generic pass statement for incoming connections/packets
socks pass {
        from: 0.0.0.0/0 to: 0.0.0.0/0
        command: bindreply udpreply
        log: error # connect disconnect iooperation
}

我不想以 BIND 模式连接,所以当我尝试连接到代理时,答案是这样的:

错误:“规则集不允许连接”

我做错了什么?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...