mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 03:47:39 +03:00
Prioritize *_route_address
in linux auto-route
This commit is contained in:
parent
d923e5d10a
commit
840f3758f9
1 changed files with 17 additions and 0 deletions
17
tun_linux.go
17
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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue