mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 12:27:39 +03:00
Fix "Fix Linux IPv6 auto route rules"
This commit is contained in:
parent
86322a3fe1
commit
958d6a25a4
1 changed files with 11 additions and 0 deletions
11
tun_linux.go
11
tun_linux.go
|
@ -573,6 +573,17 @@ func (t *NativeTun) rules() []*netlink.Rule {
|
||||||
}
|
}
|
||||||
if p6 {
|
if p6 {
|
||||||
if !t.options.StrictRoute {
|
if !t.options.StrictRoute {
|
||||||
|
for _, address := range t.options.Inet6Address {
|
||||||
|
it = netlink.NewRule()
|
||||||
|
it.Priority = priority6
|
||||||
|
it.IifName = "lo"
|
||||||
|
it.Src = address.Masked()
|
||||||
|
it.Table = t.options.TableIndex
|
||||||
|
it.Family = unix.AF_INET6
|
||||||
|
rules = append(rules, it)
|
||||||
|
}
|
||||||
|
priority6++
|
||||||
|
|
||||||
it = netlink.NewRule()
|
it = netlink.NewRule()
|
||||||
it.Priority = priority6
|
it.Priority = priority6
|
||||||
it.IifName = "lo"
|
it.IifName = "lo"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue