Add a per-nameserver list that marks the listed resolvers with Tailscale's dnstype.Resolver.UseWithExitNode flag, so those resolvers keep being used when a client selects an exit node instead of having all DNS delegated to the exit node. This lets a self-hosted resolver on the tailnet be reached directly. The flag requires client capability version 125 (Tailscale v1.88); older clients ignore it. Default is empty, preserving current behaviour. Fixes #2816
5.3 KiB
DNS
Headscale supports most DNS features from Tailscale. DNS related settings can be configured
within the dns section of the configuration file.
Keeping nameservers active when using an exit node
By default, when a client selects an exit node, Tailscale sends all of that client's DNS through the exit node and ignores the nameservers configured in Headscale. This is usually desirable, but it prevents reaching a self-hosted resolver (for example a Pi-hole running on the tailnet) directly: the query has to take the round trip through the exit node first.
The dns.nameservers.use_with_exit_node option lists the nameserver addresses that should keep being used even while an
exit node is selected. Listed addresses must also appear in dns.nameservers.global or dns.nameservers.split.
dns:
nameservers:
global:
- 100.64.0.53
use_with_exit_node:
- 100.64.0.53
When the listed resolver is reachable within the tailnet (such as 100.64.0.53), the client talks to it directly
instead of routing the query through the exit node.
!!! warning "Requires a recent Tailscale client"
This maps to Tailscale's [`UseWithExitNode`](https://tailscale.com/kb/1054/dns#nameservers-and-exit-nodes) resolver
flag, added in **capability version 125 (Tailscale v1.88)**. Older clients silently ignore the setting and continue
to send DNS through the exit node.
Setting extra DNS records
Headscale allows to set extra DNS records which are made available via MagicDNS. Extra DNS records can be configured either via static entries in the configuration file or from a JSON file that Headscale continuously watches for changes:
- Use the
dns.extra_recordsoption in the configuration file for entries that are static and don't change while Headscale is running. Those entries are processed when Headscale is starting up and changes to the configuration require a restart of Headscale. - For dynamic DNS records that may be added, updated or removed while Headscale is running or DNS records that are
generated by scripts the option
dns.extra_records_pathin the configuration file is useful. Set it to the absolute path of the JSON file containing DNS records and Headscale processes this file as it detects changes.
An example use case is to serve multiple apps on the same host via a reverse proxy like NGINX, in this case a Prometheus monitoring stack. This allows to nicely access the service with "http://grafana.myvpn.example.com" instead of the hostname and port combination "http://hostname-in-magic-dns.myvpn.example.com:3000".
!!! warning "Limitations"
Currently, [only A and AAAA records are processed by Tailscale](https://github.com/tailscale/tailscale/blob/v1.86.5/ipn/ipnlocal/node_backend.go#L662).
-
Configure extra DNS records using one of the available configuration options:
=== "Static entries, via
dns.extra_records"```yaml title="config.yaml" dns: ... extra_records: - name: "grafana.myvpn.example.com" type: "A" value: "100.64.0.3" - name: "prometheus.myvpn.example.com" type: "A" value: "100.64.0.3" ... ``` Restart your headscale instance.=== "Dynamic entries, via
dns.extra_records_path"```json title="extra-records.json" [ { "name": "grafana.myvpn.example.com", "type": "A", "value": "100.64.0.3" }, { "name": "prometheus.myvpn.example.com", "type": "A", "value": "100.64.0.3" } ] ``` Headscale picks up changes to the above JSON file automatically. !!! tip "Good to know" - The `dns.extra_records_path` option in the [configuration file](configuration.md) needs to reference the JSON file containing extra DNS records. - Be sure to "sort keys" and produce a stable output in case you generate the JSON file with a script. Headscale uses a checksum to detect changes to the file and a stable output avoids unnecessary processing. -
Verify that DNS records are properly set using the DNS querying tool of your choice:
=== "Query with dig"
```console dig +short grafana.myvpn.example.com 100.64.0.3 ```=== "Query with drill"
```console drill -Q grafana.myvpn.example.com 100.64.0.3 ``` -
Optional: Setup the reverse proxy
The motivating example here was to be able to access internal monitoring services on the same host without specifying a port, depicted as NGINX configuration snippet:
server { listen 80; listen [::]:80; server_name grafana.myvpn.example.com; location / { proxy_pass http://localhost:3000; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } }