This is quite an interesting question.
The reason the configuration with multiple configuration files isn’t working, is because it’s based on a misunderstanding - even if you put multiple files in /etc/systemd/resolved.conf.d/
, this is only a convenience to allow you to build up a single configuration from multiple pieces. What you’ve effectively done is to create a configuration saying:
[Resolve]
DNS=127.0.0.1:8600 172.105.11.5 172.105.3.5 172.105.7.5
DNSSEC=false
Domains=~consul ~.
which wasn’t your intent. (Check this by running resolvectl status
.)
Now, systemd-resolved does have some ability to direct different DNS subtrees to different DNS servers… but it’s entirely based around network interfaces.
My first thought was to try to associate Consul with the loopback interface, but that’s not managed by systemd-networkd by default, and my initial attempts to make it so ended up breaking my system in various ways, and then later I looked at the systemd-resolved source code, and figured out it’s hardcoded to ignore loopback anyway.
I did eventually get the desired behaviour working by creating a dummy network interface I could attach the configuration to:
/etc/systemd/network/consul0.netdev
[NetDev]
Name=consul0
Kind=dummy
/etc/systemd/network/consul0.network
[Match]
Name=consul0
[Network]
Address=192.0.2.0/32
Address=2001:db8::/128
LinkLocalAddressing=no
DNS=127.0.0.1
Domains=~consul
Apply and test
networkctl reload
systemctl restart systemd-resolved
resolvectl query consul.service.consul
It’s not exactly nice though - there’s a lot of config just to satisfy systemd-resolved’s opinionated choices.
The IP addresses I’m using there come from the “documentation and examples” reserved ranges, and the reason there’s an IPv4 and IPv6 one included, is systemd-resolved is using that to decide whether to ask for A or AAAA records or both from Consul!
Or, you could just do as @Wolfsrudel suggests and set recursors in Consul - although I’m not a fan of routing all of a system’s DNS traffic through Consul, IMO the service discovery system should be able to fail and not take down the rest of the system’s DNS resolution… so maybe my crazy systemd shenanigans above do have a use-case after all.