DNS in Tailscale

Tailscale provides each device on your network with a unique IP address that stays the same no matter where your devices are. However, IP addresses aren’t very memorable, and can be unwieldy to work with. You can map Tailscale IPs to human readable names using DNS.

You can manage DNS for your Tailscale network in at least three ways:

  • Using MagicDNS, our automatic DNS feature
  • Using the DNS settings page in the admin console
  • Using public DNS records
Managing DNS is available for all plans.

Using MagicDNS

Tailscale can automatically assign DNS names for devices in your network when you use the MagicDNS feature.

Read more about MagicDNS →

Using DNS settings in the admin console

Tailscale’s admin console has a DNS page that lets you configure settings for your network:

A screenshot of the admin console's DNS settings
MagicDNS

MagicDNS determines whether your network will use MagicDNS to automatically assign DNS names to devices in your network. MagicDNS is optional, and not required to use other DNS settings.

Nameservers

Nameservers are the IPv4 or IPv6 addresses of DNS servers you want your Tailscale nodes to use for lookups, when connected to your network. Many companies have internal private DNS servers with the names of their private machines. If so, you can add those DNS servers here.

There are two types of nameservers:

  • Restricted Nameservers (also known as split DNS) only apply to DNS queries matching a certain search domain. If you configure 1.1.1.1 as a nameserver for example.com, only DNS queries like “foo.example.com” and “bar.example.com” will be handled by 1.1.1.1.

  • Global Nameservers handle DNS queries for any domain.

    You can use a public DNS nameserver, or run your own. Some public global DNS nameservers include:

    • 9.9.9.9, 149.112.112.112, 2620:fe::fe, and 2620:fe::9, provided by Quad9
    • 8.8.8.8, 8.8.4.4, 2001:4860:4860::8888, and 2001:4860:4860::8844, provided by Google
    • 1.1.1.1, 1.0.0.1, 2606:4700:4700::1111 and 2606:4700:4700::1001, provided by Cloudflare

    You can also set a personalized DNS nameserver, such as NextDNS, as your global nameserver.

    Tailscale considers each global DNS nameserver’s list of addresses as one entity. For example, if you add 8.8.8.8, the other three Google nameserver addresses are also added—you wouldn’t be able to add 8.8.8.8 while excluding 8.8.4.4 or the other Google addresses. This is true whether you add the addresses manually or through the dropdown in the DNS page of the admin console.

    These nameservers are available in a dropdown when you add a nameserver using the DNS page of the admin console.

    A screenshot of the global nameservers dropdown

    For redundancy, use more than one global nameserver (which can be from the same provider).

    By default, clients of your network will use their local DNS settings for all queries. To force clients to always use nameservers you define, you can enable the “Override local DNS” toggle.

Unless your nameservers are public, or using Tailscale IP addresses, you will probably need to configure subnet routing so your nodes can reach the private DNS servers.
Search Domains

Search domains provide a convenient way for users to access local network resources without having to specify the full domain path every time they connect to a resource. A user can specify a list of domain suffixes that are automatically appended to any domain name that is not a fully qualified domain name (FQDN).

Search domains is currently in beta. To try it, follow the steps below to enable it for your network using Tailscale v1.34 or later.

For example, if a tailnet has example.com and test.com configured as search domains, and an end user enters the phrase server, the phrase will first be used to search for server.example.com against the tailnet’s configured nameservers such as 8.8.8.8 or 1.1.1.1. If no match is returned, it will then search for server.test.com against the tailnet’s configured nameservers.

A screenshot of search domains
  • When MagicDNS is enabled, it is always the first domain in the Search Domains list. This is not configurable by a user.
  • You can add, reorder, modify, and remove your search domains.

Using a public DNS subdomain

If you’d prefer not to manage DNS settings via the admin console, you can instead publish records on your public-facing DNS server, assuming you have one. The DNS names can be looked up (converted to a private IP address) by anyone on the Internet, but because Tailscale IP addresses are only accessible to users of your network, this is relatively harmless.

Almost every organization already has a public DNS server (so that they can route email, publish a web site, etc), so this is easier than setting up an internal private DNS server.

Tailscale does not offer a DNS server, so you will need to use one that you run yourself, or one offered by your cloud or domain host, or by some other DNS provider. Note that public DNS names may take a while to propagate once you add them.

FAQ

How can I define a search domain without a nameserver?

Previous versions of the DNS settings page allowed defining search domains separately from nameservers. However, due to cross-platform compatibility reasons, this is no longer possible. To define a search domain, you’ll need to add at least one nameserver along with it.

If you don’t have a preference, we recommend using well-trusted public DNS nameservers alongside your search domain.

Can I add arbitrary DNS records to MagicDNS?

Adding arbitrary records isn’t currently possible. Subscribe to or comment on this GitHub issue for updates.

How can I test my DNS configuration?

Traditionally, network admins will use a tool like nslookup to review DNS responses for various domains. However, on some platforms nslookup doesn’t use DNS information provided by the OS, and returns incorrect results. You’ll likely notice this issue when using split DNS or MagicDNS, which rely on advanced DNS features.

To test DNS settings on different platforms, we recommend the following approaches:

macOS

Use the native dscacheutil command:

dscacheutil -q host -a name <domain-or-magic-dns-hostname>

For example, searching up the IP address for a MagicDNS hostname will return:

$ dscacheutil -q host -a name my-server

name: my-server.example.ts.net
ip_address: 100.15.193.72
Windows

Use the Windows Powershell Resolve-DnsName command

Resolve-DnsName -Name <domain-or-magic-dns-hostname>

For example, searching up a MagicDNS hostname will return:

PS C:\> Resolve-DnsName -Name my-server

Name                       Type   TTL   Section   IPAddress
----                       ----   ---   -------   ---------
my-server.example.ts.net   AAAA   600   Answer    fd7a:115c:a1e0:ab12:4843:cd96:6251:c348
my-server.example.ts.net   A      600   Answer    100.15.193.72
Linux

Linux implements its DNS support using a DNS server listening on 127.0.0.x, so nslookup returns correct results in spite of its naive approach. Use nslookup to debug DNS responses on Linux.

Last updated