Skip to content
Advertisement

Network port open, but no process attached?

When I check my server, I found some strange ports:

JavaScript

No program can be found in the output of netstat -tulnp(with root privilege).

How could I find the usage of these ports? How could I judge it’s safe or not?

OS: CentOS 5.6 x86_64

Kernel: 2.6.18-238.el5 #1 SMP Thu Jan 13 15:51:15 EST 2011 x86_64 x86_64 x86_64 GNU/Linux

update:

JavaScript

Advertisement

Answer

These are likely to be RPC ports reserved by the portmapper. 2049 is a well known port used by NFS. Your other ports are probably other RPC services. To query the portmapper for a full list of services and their ports use rpcinfo -p.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement