# netstat -tlnp | grep sys tcp 0 0 0.0.0.0:5355 0.0.0.0:* LISTEN 50705/systemd-resol tcp 0 0 :::5355 :::* LISTEN 50705/systemd-resol I can't find anything in the various manpages to get it to only listen on localhost. Reproducible: Steps to Reproduce:
Assignee: bugsquad => mageiaWhiteboard: (none) => MGA5TOO
It seems to be because of the LLMNR feature: https://en.wikipedia.org/wiki/Link-Local_Multicast_Name_Resolution "The responders also listen on TCP port 5355 on the unicast address that the host uses to respond to queries."
r = setsockopt(m->llmnr_ipv4_tcp_fd, IPPROTO_IP, IP_TTL, &one, sizeof(one)); r = setsockopt(m->llmnr_ipv6_tcp_fd, IPPROTO_IPV6, IPV6_UNICAST_HOPS, &one, sizeof(one)); So it seems it should not be possible to establish a tcp connection from outside
So this is initially scary but the code seems to do the right thing.
Status: NEW => RESOLVEDResolution: (none) => INVALID