mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 03:47:39 +03:00
Fix gateway & FIx prefix check
This commit is contained in:
parent
07278fb470
commit
10f73346a0
8 changed files with 111 additions and 45 deletions
13
tun_linux.go
13
tun_linux.go
|
@ -350,9 +350,18 @@ func (t *NativeTun) routes(tunLink netlink.Link) ([]netlink.Route, error) {
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
// Do not create gateway on linux by default
|
||||
gateway4, gateway6 := t.options.Inet4GatewayAddr(), t.options.Inet6GatewayAddr()
|
||||
return common.Map(routeRanges, func(it netip.Prefix) netlink.Route {
|
||||
var gateway net.IP
|
||||
if it.Addr().Is4() && !gateway4.IsUnspecified() {
|
||||
gateway = gateway4.AsSlice()
|
||||
} else if it.Addr().Is6() && !gateway6.IsUnspecified() {
|
||||
gateway = gateway6.AsSlice()
|
||||
}
|
||||
return netlink.Route{
|
||||
Dst: prefixToIPNet(it),
|
||||
Gw: gateway,
|
||||
LinkIndex: tunLink.Attrs().Index,
|
||||
Table: t.options.IPRoute2TableIndex,
|
||||
}
|
||||
|
@ -881,10 +890,10 @@ func (t *NativeTun) setSearchDomainForSystemdResolved() {
|
|||
}
|
||||
dnsServer := t.options.DNSServers
|
||||
if len(dnsServer) == 0 {
|
||||
if len(t.options.Inet4Address) > 0 {
|
||||
if len(t.options.Inet4Address) > 0 && HasNextAddress(t.options.Inet4Address[0], 1) {
|
||||
dnsServer = append(dnsServer, t.options.Inet4Address[0].Addr().Next())
|
||||
}
|
||||
if len(t.options.Inet6Address) > 0 {
|
||||
if len(t.options.Inet6Address) > 0 && HasNextAddress(t.options.Inet6Address[0], 1) {
|
||||
dnsServer = append(dnsServer, t.options.Inet6Address[0].Addr().Next())
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue