> ## Content Index
> Fetch the complete content index at: https://kudithipudi.org/llms.txt
> Use this file to discover other available public pages before exploring further.

# HOW TO : Find the clients connecting to a NFS server
- URL: https://kudithipudi.org/how-to-find-the-clients-connecting-to-a-nfs-server/
- Published: 2011-09-01T15:46:51.000Z
- Updated: 2011-09-01T15:46:51.000Z
- Description: 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...
- Author: admin
- Tags: HOWTO, Linux, Technology, Uncategorized, #wp, #wp-post, #Import 2026-08-23 02:32

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
```