请教多WAN的情况下,应该如何写规则 #1673
Unanswered
W3XA56Y3RDUKBS
asked this question in
Q&A
Replies: 2 comments 2 replies
-
有必要用 |
Beta Was this translation helpful? Give feedback.
2 replies
-
我就是openwrt下多wan。interface-name或者routing-mark都可以,routing-mark更灵活可以HA可以Failover。不行的请排查iptables/nftable,停止mwan3等修改防火墙服务,cat /proc/net/nf_conntrack 看下mark=xxx正确与否(前提是restore过),clash只负责标记。路由正确与clash无关。两者需要pbr配合,通过ip rule和ip route show table x检查。 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
情况说明:家中有两条宽带,中国电信和中国联通,我希望国内的域名都走联通的口出去
我进行了如下的设置:
proxies:
name: "电信"
type: direct
udp: true
ip-version: ipv6-prefer
interface-name: eth0
routing-mark: 1234
name: "联通"
type: direct
udp: true
ip-version: ipv6-prefer
interface-name: eth1
routing-mark: 2234
rules:
然而并不能用,所有国内的网站都无法访问, 想请教下各位应该如何设置?
Beta Was this translation helpful? Give feedback.
All reactions