HOW TO : Find the clients connecting to a NFS server

Quick tip to find out the clients connecting to a NFS server.

  • Check the ports that NFS uses

[code] grep -i nfs /etc/services [/code]

  • Check the clients connecting to the server using the port from above

[code] netstat -an | grep 2049 [/code]