1
0
mirror of https://github.com/juanfont/headscale.git synced 2024-10-17 20:05:55 +02:00
juanfont.headscale/docs/DNS.md

39 lines
1.6 KiB
Markdown
Raw Normal View History

2021-10-21 20:48:29 +02:00
# DNS in headscale
2021-10-02 11:11:18 +02:00
2021-10-21 20:48:29 +02:00
headscale supports Tailscale's DNS configuration and MagicDNS. Please have a look to their KB to better understand what this means:
2021-10-02 11:11:18 +02:00
- https://tailscale.com/kb/1054/dns/
- https://tailscale.com/kb/1081/magicdns/
- https://tailscale.com/blog/2021-09-private-dns-with-magicdns/
2021-10-21 20:48:29 +02:00
Long story short, you can define the DNS servers you want to use in your tailnets, activate MagicDNS (so you don't have to remember the IP addresses of your nodes), define search domains, as well as predefined hosts. headscale will inject that settings into your nodes.
2021-10-02 11:11:18 +02:00
## Configuration reference
The setup is done via the `config.yaml` file, under the `dns_config` key.
```yaml
server_url: http://127.0.0.1:8001
listen_addr: 0.0.0.0:8001
private_key_path: private.key
dns_config:
nameservers:
- 1.1.1.1
- 8.8.8.8
restricted_nameservers:
foo.bar.com:
- 1.1.1.1
darp.headscale.net:
- 1.1.1.1
- 8.8.8.8
domains: []
magic_dns: true
base_domain: example.com
2021-10-02 11:11:18 +02:00
```
2021-10-02 11:11:18 +02:00
- `nameservers`: The list of DNS servers to use.
- `domains`: Search domains to inject.
2021-10-04 22:50:33 +02:00
- `magic_dns`: Whether to use [MagicDNS](https://tailscale.com/kb/1081/magicdns/). Only works if there is at least a nameserver defined.
- `base_domain`: Defines the base domain to create the hostnames for MagicDNS. `base_domain` must be a FQDNs, without the trailing dot. The FQDN of the hosts will be `hostname.namespace.base_domain` (e.g., _myhost.mynamespace.example.com_).
- `restricted_nameservers`: Split DNS (see https://tailscale.com/kb/1054/dns/), list of search domains and the DNS to query for each one.