mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 04:17:39 +03:00
Fix Remove bad suppress_prefixlength iproute2 rule
This commit is contained in:
parent
fb6e917a2c
commit
3f128a4a6a
1 changed files with 20 additions and 0 deletions
20
tun_linux.go
20
tun_linux.go
|
@ -599,6 +599,26 @@ func (t *NativeTun) rules() []*netlink.Rule {
|
||||||
rules = append(rules, it)
|
rules = append(rules, it)
|
||||||
priority6++
|
priority6++
|
||||||
}
|
}
|
||||||
|
if p4 && !t.options.StrictRoute {
|
||||||
|
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 && !t.options.StrictRoute {
|
||||||
|
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 {
|
if p4 {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue