From 840f3758f97a2b425bd08b93876ed1a2bbcdd262 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Mon, 20 May 2024 22:19:09 +0800 Subject: [PATCH] Prioritize `*_route_address` in linux auto-route --- tun_linux.go | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/tun_linux.go b/tun_linux.go index 22f09aa..886b32b 100644 --- a/tun_linux.go +++ b/tun_linux.go @@ -572,6 +572,23 @@ func (t *NativeTun) rules() []*netlink.Rule { rules = append(rules, it) } priority++ + + it = netlink.NewRule() + it.Priority = priority + it.Table = t.options.TableIndex + it.SuppressPrefixlen = 0 + it.Family = unix.AF_INET + rules = append(rules, it) + priority++ + } + if p6 { + it = netlink.NewRule() + it.Priority = priority6 + it.Table = t.options.TableIndex + it.SuppressPrefixlen = 0 + it.Family = unix.AF_INET6 + rules = append(rules, it) + priority6++ } if p4 && !t.options.StrictRoute { it = netlink.NewRule()