Enable mDNS or LLMNR?

How do I enable mDNS or LLMNR support for resolving .local host names?
1 Reply
dOxxx
dOxxxOP3w ago
What worked for me was to create the file /etc/systemd/resolved.conf (sudo nano /etc/systemd/resolved.conf) and put the following in it:
[Resolve]
MulticastDNS=yes
LLMNR=yes
[Resolve]
MulticastDNS=yes
LLMNR=yes
And then restart the systemd-resolved service: sudo systemctl restart systemd-resolved

Did you find this page helpful?