Skip to main content

Check the IP Address on the NFS Server

If you have direct access to the NFS server, run the following command to find its IP address:

Use ip Command:

ip addr show
  • Look for the network interface connected to your local network (e.g., eth0, ens0, or similar).
  • Example output:
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
    inet 192.168.1.10/24 brd 192.168.1.255 scope global eth0

Use hostname -I:

hostname -I

This will display all IP addresses assigned to the server.