mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 20:07:40 +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 !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.Priority = priority6
|
||||
it.IifName = "lo"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue