feat(network): route tailscale dns through adguard

- Configure Headscale to use the VPS Tailscale IP (100.64.0.3) as the global DNS server instead of external providers.

- Add firewall rules to allow DNS requests over the `tailscale0` interface.

- Add iptables PREROUTING rules to redirect standard DNS (port 53) from Tailscale clients to AdGuard Home (port 5353) to resolve port conflicts with `aardvark-dns`.
This commit is contained in:
ashisgreat22 2026-03-19 22:14:18 +01:00
parent 4925420fdc
commit 1c76661538
2 changed files with 17 additions and 2 deletions

View file

@ -105,8 +105,7 @@ in
domains = [ ];
nameservers = {
global = [
"https://dns.mullvad.net/dns-query"
"https://dns.quad9.net/dns-query"
"100.64.0.3"
];
};
override_local_dns = true;