1
8675bc86 16 小时 10 分钟前
你的配置的问题。
tproxy 可以处理 udp ,尤其是英雄联盟。 |
2
tuchuanw OP @8675bc86 大佬方便提供一下在用的 config.yml 或者 config.json 配置吗,除去订阅节点的。我这边对比测试一下。aW10dWNodWFuQGdtYWlsLmNvbQ==
|
3
8675bc86 1 小时 24 分钟前
@tuchuanw 主要是 iptables ,我没用 shellclash ,我是自己写的规则。
差不多这些: iptables -t mangle -A GOST -p udp -m set --match-set mylocal dst -j RETURN iptables -t mangle -A GOST -p udp -j TPROXY --tproxy-mark 0x1/0x1 --on-ip 127.0.0.1 --on-port 7893 iptables -t mangle -A PREROUTING -p udp -j GOST iptables -t mangle -A GOST_LOCAL -p udp -m set --match-set mylocal dst -j RETURN iptables -t mangle -A GOST_LOCAL -p udp -j MARK --set-mark 1 iptables -t mangle -A OUTPUT -p udp -j GOST_LOCAL |