You are not logged in.
Pages: 1
i've added files on /etc/systemd/resolved.conf.d/x.conf
which have
[Resolve]
LLMR=noamong other things. But i still get garbage LLMR (it's practically microsoft netbios v2) running on port 5353.
At first i assumed that file was not being picked up, So edited /etc/systemd/resolved.conf directly.
after `systemctl daemon-reload` and `systemctl restart systemd-resolved.service` I still have port 5353 open.
$ sudo ss -l -p '( sport = :5353 )'
Place your right index finger on the fingerprint reader
Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
udp UNCONN 0 0 0.0.0.0:mdns 0.0.0.0:* users:(("systemd-resolve",pid=4498,fd=11))
udp UNCONN 0 0 [::]:mdns [::]:* users:(("systemd-resolve",pid=4498,fd=12)) Last edited by gcb (2024-04-02 00:30:51)
Offline
port 5353 is MDNS, not LLMNR.
Offline
If you plan to use LLMNR and use a firewall, make sure to open UDP and TCP ports 5355.
Check port 5355 .
Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.
clean chroot building not flexible enough ?
Try clean chroot manager by graysky
Online
port 5353 is MDNS, not LLMNR.
potato. potahtoh ![]()
It's all mostly the same for me. They are mostly useless outside of windows environment. Microsoft is moving from LLMNR to mdns and probably keeping the port number? i don't know.
what is crazy is systemd folks assuming everyone using linux wants that open to the world on all their machines. Their microsoft alegiance signaling is getting out of hand. specially since even microsoft abandoned it: https://techcommunity.microsoft.com/t5/ … -p/3290816
LLMNR are rarely used today. This means that having them enabled needlessly expands the attack surface of devices and increases the load on the networks they use
https://wiki.archlinux.org/title/Systemd-resolved#LLMNR wrote:If you plan to use LLMNR and use a firewall, make sure to open UDP and TCP ports 5355.
Check port 5355 .
Wild. I'm seeing port 5353, as you can see from the command on my 1st post. Maybe that's the newport if microsoft keep 5353 to mdns?
But i'm trying to get rid of it all. Not expose even more.
Last edited by gcb (2024-04-02 00:20:24)
Offline
port 5353 is MDNS, not LLMNR.
Thanks, I see what you mean now.
I have to disable both!
adding `MulticastDNS=no` to that config file solved it.
Offline
Pages: 1