Since the command appeared in your Ubuntu installation I'll focus on that. These are the listening sockets to look at for now: Code: tcp6 0 0 :::22 :::* LISTEN
udp 0 0 0.0.0.0:32768 0.0.0.0:*
udp 0 0 0.0.0.0:5353 0.0.0.0:*
First, I don't have a Linux box in front of me at the moment, so I am not exactly sure how to interpret the first column of the first line. It may mean both ipv4 and ipv6 are enabled for listening tcp port 22, or it may just mean ipv6 is enabled for tcp port 22. (Either way it could be an issue.)
A couple more questions:
1. Are you running a firewall?
2. If so, are connections allowed from the outside world to tcp port 22?
3. Are any of the following enabled in sshd_config: PasswordAuthentication, Challenge-Response Authentication, UsePAM ?
It might be a good idea to check /var/log/secure (at least that's the naming CentOS uses) for ssh connections and connection attempts over the past few weeks. If your system is running logwatch this automatically reports ssh connections to you. (You may need to check root's mail.)
As for the two udp sockets, some quick notes:
udp 32768 summarized here. I am not familiar with Filenet TMS. Maybe it is something one of your apps requires.
udp 5353 summarized here. Sounds like iTunes or similar application using multicast DNS. |