Fix "Fix Linux IPv6 auto route rules"

This commit is contained in:
世界 2023-11-16 18:21:03 +08:00
parent 86322a3fe1
commit 958d6a25a4
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -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"