Quick tip to find out the clients connecting to a NFS server.
- Check the ports that NFS uses
grep -i nfs /etc/services- Check the clients connecting to the server using the port from above
netstat -an | grep 2049
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...