From e272ff0ad3cce1c7407b01b7a444fa5cff22b60e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Tue, 7 May 2024 19:50:55 +0800 Subject: [PATCH] Remove bad `suppress_prefixlength` iproute2 rule This change gives tun priority over DHCP 121 rules --- tun_linux.go | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/tun_linux.go b/tun_linux.go index ce9c558..c9693f8 100644 --- a/tun_linux.go +++ b/tun_linux.go @@ -581,7 +581,7 @@ func (t *NativeTun) rules() []*netlink.Rule { it.Family = unix.AF_INET6 rules = append(rules, it) }*/ - if p4 { + if p4 && !t.options.StrictRoute { it = netlink.NewRule() it.Priority = priority it.IPProto = syscall.IPPROTO_ICMP @@ -590,7 +590,7 @@ func (t *NativeTun) rules() []*netlink.Rule { rules = append(rules, it) priority++ } - if p6 { + if p6 && !t.options.StrictRoute { it = netlink.NewRule() it.Priority = priority6 it.IPProto = syscall.IPPROTO_ICMPV6 @@ -599,26 +599,6 @@ func (t *NativeTun) rules() []*netlink.Rule { rules = append(rules, it) priority6++ } - if p4 { - it = netlink.NewRule() - it.Priority = priority - it.Invert = true - it.Dport = netlink.NewRulePortRange(53, 53) - it.Table = unix.RT_TABLE_MAIN - it.SuppressPrefixlen = 0 - it.Family = unix.AF_INET - rules = append(rules, it) - } - if p6 { - it = netlink.NewRule() - it.Priority = priority6 - it.Invert = true - it.Dport = netlink.NewRulePortRange(53, 53) - it.Table = unix.RT_TABLE_MAIN - it.SuppressPrefixlen = 0 - it.Family = unix.AF_INET6 - rules = append(rules, it) - } } if p4 {