ipn/ipnlocal: don't install any magicdns names if not proxying.

Signed-off-by: David Anderson <danderson@tailscale.com>
This commit is contained in:
David Anderson 2021-04-02 14:22:46 -07:00
parent 63c00764e1
commit f89dc1c903
1 changed files with 8 additions and 4 deletions

View File

@ -1493,10 +1493,14 @@ func (b *LocalBackend) authReconfig() {
}
dcfg.Hosts[name] = ips
}
dcfg.Hosts = map[string][]netaddr.IP{}
set(nm.Name, nm.Addresses)
for _, peer := range nm.Peers {
set(peer.Name, peer.Addresses)
// TODO: hack to make the current code continue to work while
// refactoring happens.
if proxied {
dcfg.Hosts = map[string][]netaddr.IP{}
set(nm.Name, nm.Addresses)
for _, peer := range nm.Peers {
set(peer.Name, peer.Addresses)
}
}
}