This is about the script originally written for https://github.com/ryuheechul/dotfiles/commit/1c5795d4e69ad7ad8c191e3e96fe43155522739a#diff-4f848b5499b37dbeb494a252ab49d56831abb5b12dbd362ab5182f509f7ad97b
the script is pretty short and relatively simple, so I recommend you to read it but the gist is below
- get necessary details regarding (your already configured) zerotier network interface and running DNS server
- configure DNS routing via
resolvectl
forsystemd-resolved
with the parse information from the previous step - (now resolving to FQDN (e.g.
host device.home.arpa
) should work as well as search domain (e.g.host device
) - (unfortunately the change doesn't last after a reboot - so I'm looking into a way to resolve this)
- zerotier DNS client setup seems to be brittle so on Linux
- and the solution that I came up with is not that complicated to implement (at least in a rudimentary way)
- why not Tailscale Magic DNS experience for Zerotier (on Linux) as well!
- that you already have setup zerotier network on your linux machine
- test via
sudo zerotier-cli info
andsudo zerotier-cli listnetworks
- if you are using NixOS see this as an example
- test via
- that you are running zeronsd on one of your zerotier networked node
- you can get some idea on how to do that at https://github.com/zerotier/zeronsd/blob/main/docs/quickstart.md
- although this include some other information (like client configuration) too
- (and this will also not only run the DNS exposed on 53 port but also advertizes or tells that to zerotier central as well)
- you would need to not block 53 from outside (via firewall) though in order for other machines to reach that port
- if you are using NixOS see this as an example
- you can get some idea on how to do that at https://github.com/zerotier/zeronsd/blob/main/docs/quickstart.md
- that you are using
systemd-resolved
because this script depends on it- (and maybe you would want it)
- test via
resolvectl status
- if you are not using
systemd-resolved
there seem to be another option- (although I have no experience with it)
- that you have jq installed
- now you can run it ans enjoy the "Magic DNS" experience (assuming it worked)!
Found a compromized way to make the change persist over a reboot in the meantime.
$ cat /etc/systemd/resolved.conf.d/sloppy-zerotier.conf [Resolve] DNS=10.148.18.218 Domains=home.arpa # both changes global setting not an individual interface though...
Which sort of works however, this is not the same as what the script does as this one is about global change and the script is about an individual interface.
It feels like this should be easy to do (where is the missing configuration for an individual interface, systemd-resolved...?) but not been so lucky so far.
Of course just creating a systemd service to run my script would work but want to avoid that route if possible...
An you would encounter something like creating a
.network
file at/etc/systemd/network
. However that only works withnetworkd
not withNetworkingManager
which is confirmed withman systemd-resolved
. And with NM, there is something like below work, but also doesn't persist across reboot.nmcli dev modify zt-interface ipv4.dns 10.148.18.188 nmcli dev modify zt-interface ipv4.dns-search home.arpa # now check with `resolvectl status`
Hopefully it's the case that I just don't know how to do this properly instead of there is actually no such thing as an official way to describe the network that can be picked up by NM... we shall see.