Fix linux auto-route sequence

This commit is contained in:
世界 2024-05-15 22:22:08 +08:00
parent 3f128a4a6a
commit 779d1c7db2
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -573,15 +573,16 @@ func (t *NativeTun) rules() []*netlink.Rule {
} }
priority++ priority++
} }
/*if p6 { if p4 && !t.options.StrictRoute {
it = netlink.NewRule() it = netlink.NewRule()
it.Priority = priority it.Priority = priority
it.Dst = t.options.Inet6Address.Masked() it.Invert = true
it.Table = tunTableIndex it.Dport = netlink.NewRulePortRange(53, 53)
it.Family = unix.AF_INET6 it.Table = unix.RT_TABLE_MAIN
it.SuppressPrefixlen = 0
it.Family = unix.AF_INET
rules = append(rules, it) rules = append(rules, it)
}*/
if p4 && !t.options.StrictRoute {
it = netlink.NewRule() it = netlink.NewRule()
it.Priority = priority it.Priority = priority
it.IPProto = syscall.IPPROTO_ICMP it.IPProto = syscall.IPPROTO_ICMP
@ -591,6 +592,15 @@ func (t *NativeTun) rules() []*netlink.Rule {
priority++ priority++
} }
if p6 && !t.options.StrictRoute { 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)
it = netlink.NewRule() it = netlink.NewRule()
it.Priority = priority6 it.Priority = priority6
it.IPProto = syscall.IPPROTO_ICMPV6 it.IPProto = syscall.IPPROTO_ICMPV6
@ -599,26 +609,6 @@ 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 {