Prioritize *_route_address in linux auto-route

This commit is contained in:
世界 2024-05-20 22:19:09 +08:00
parent d923e5d10a
commit 840f3758f9
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -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()