You are not logged in.
Output of my "netstat -nlp"
[root@server ~]# netstat -nlp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 2159/sshd
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN 2060/mysqld
tcp 0 0 0.0.0.0:5355 0.0.0.0:* LISTEN 2168/systemd-resolv
tcp6 0 0 :::80 :::* LISTEN 4460/nginx: master
tcp6 0 0 :::22 :::* LISTEN 2159/sshd
tcp6 0 0 :::443 :::* LISTEN 4460/nginx: master
tcp6 0 0 :::5355 :::* LISTEN 2168/systemd-resolv
udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
udp 0 0 127.0.0.1:123 0.0.0.0:* 4491/ntpd
udp 0 0 0.0.0.0:5355 0.0.0.0:* 2168/systemd-resolv
udp6 0 0 ::1:123 :::* 4491/ntpd
udp6 0 0 :::5355 :::* 2168/systemd-resolv
raw6 0 0 :::58 :::* 7 2078/systemd-networ
Why are ports 5355, 58, and 68 being listened to/open ?
Please let me know if any additional information is needed, it is the latest version or arch linux and fully updated as of this post.
Offline
I'm not sure what they're specifically for, but those are loopback ports
Offline
68 is for BOOTP/DHCP. Why it needs so many open is beyond me - dhcpcd just has the one global 68 open for any amount of interfaces.
The other two ports don't look like anything network setup related should have open.
I would file a ticket with systemd upstream.
Offline
5355 is for LLMNR which can be disabled by systemd-networkd or systemd-resolved configuration.
Offline
I know this is an old post, but it just helped me. If you're trying to disable LLMNR the following steps will accomplish this.
1) edit /etc/systemd/resolved.conf
2) set LLMNR=0
3) Restart the service. systemctl restart systemd-resolved.service
Offline