Skip to content

Commit cc95d5c

Browse files
nolithEnzimeSamasaur1
committed
tailscale: fix broken DNS on IPv6 only tailnets
When a tailnet has the disableIPv4 settings it will not deploy IPv4, resolving any ts.net address is broken because 100.100.100.100 is not reachable. https://tailscale.com/kb/1337/acl-syntax#disableipv4 Co-authored-by: Michael Hoang <[email protected]> Co-authored-by: Sam <[email protected]>
1 parent 71a3a07 commit cc95d5c

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

modules/services/tailscale.nix

+7-4
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ in
3333
1. at least one DNS server is added
3434
2. `Override local DNS` is enabled
3535
36-
As this option sets 100.100.100.100 as your sole DNS server, if the requirements above are not met,
36+
As this option sets 100.100.100.100 and fd7a:115c:a1e0::53 as your sole DNS servers, if the requirements above are not met,
3737
all non-MagicDNS queries WILL fail.
3838
'';
3939
};
4040
};
4141

4242
config = mkIf cfg.enable {
4343
assertions = [{
44-
assertion = !cfg.overrideLocalDns || config.networking.dns == [ "100.100.100.100" ];
44+
assertion = cfg.overrideLocalDns -> (builtins.elem config.networking.dns "100.100.100.100" || builtins.elem config.networking.dns "fd7a:115c:a1e0::53");
4545
message = ''
4646
DNS servers should be configured on the Tailscale control panel when `services.tailscale.overrideLocalDns` is enabled.
4747
@@ -61,10 +61,13 @@ in
6161
};
6262
};
6363

64-
networking.dns = mkIf cfg.overrideLocalDns [ "100.100.100.100" ];
64+
networking.dns = mkIf cfg.overrideLocalDns [ "100.100.100.100" "fd7a:115c:a1e0::53" ];
6565

6666
# Ensures Tailscale MagicDNS always works even without adding 100.100.100.100 to DNS servers
67-
environment.etc."resolver/ts.net".text = "nameserver 100.100.100.100";
67+
environment.etc."resolver/ts.net".text = ''
68+
nameserver 100.100.100.100
69+
nameserver fd7a:115c:a1e0::53
70+
'';
6871

6972
# This file gets created by tailscaled when `Override local DNS` is turned off
7073
environment.etc."resolver/ts.net".knownSha256Hashes = [

0 commit comments

Comments
 (0)