mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-26 17:03:06 +00:00
Only search domain from current namespace in MapResponse
This commit is contained in:
parent
c9a411e341
commit
6981543db6
2 changed files with 3 additions and 10 deletions
11
api.go
11
api.go
|
@ -260,16 +260,9 @@ func (h *Headscale) getMapResponse(mKey wgkey.Key, req tailcfg.MapRequest, m *Ma
|
||||||
|
|
||||||
var dnsConfig *tailcfg.DNSConfig
|
var dnsConfig *tailcfg.DNSConfig
|
||||||
if h.cfg.DNSConfig != nil && h.cfg.DNSConfig.Proxied { // if MagicDNS is enabled
|
if h.cfg.DNSConfig != nil && h.cfg.DNSConfig.Proxied { // if MagicDNS is enabled
|
||||||
// TODO(juanfont): We should not be regenerating this all the time
|
// Only inject the Search Domain of the current namespace - shared nodes should use their full FQDN
|
||||||
// And we should only send the domains of the peers (this own namespace + those from the shared peers)
|
|
||||||
namespaces, err := h.ListNamespaces()
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
dnsConfig = h.cfg.DNSConfig.Clone()
|
dnsConfig = h.cfg.DNSConfig.Clone()
|
||||||
for _, ns := range *namespaces {
|
dnsConfig.Domains = append(dnsConfig.Domains, fmt.Sprintf("%s.%s", m.Namespace.Name, h.cfg.BaseDomain))
|
||||||
dnsConfig.Domains = append(dnsConfig.Domains, fmt.Sprintf("%s.%s", ns.Name, h.cfg.BaseDomain))
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
dnsConfig = h.cfg.DNSConfig
|
dnsConfig = h.cfg.DNSConfig
|
||||||
}
|
}
|
||||||
|
|
2
dns.go
2
dns.go
|
@ -13,7 +13,7 @@ func (h *Headscale) generateMagicDNSRootDomains() (*[]dnsname.FQDN, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO(juanfont): we are not handing out IPv6 addresses yet
|
// TODO(juanfont): we are not handing out IPv6 addresses yet
|
||||||
// and in fact this is Tailscale.com's range (not the fd7a:115c:a1e0: range in the fc00::/7 network)
|
// and in fact this is Tailscale.com's range (note the fd7a:115c:a1e0: range in the fc00::/7 network)
|
||||||
ipv6base := dnsname.FQDN("0.e.1.a.c.5.1.1.a.7.d.f.ip6.arpa.")
|
ipv6base := dnsname.FQDN("0.e.1.a.c.5.1.1.a.7.d.f.ip6.arpa.")
|
||||||
fqdns := []dnsname.FQDN{base, ipv6base}
|
fqdns := []dnsname.FQDN{base, ipv6base}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue