cat /etc/exports sudo nmap 10.129.14.128 -p111,2049-sV -sC//contents of the share and its statssudo nmap --script nfs* 10.129.14.128 -sV -p111,2049--script=nsf-showmount
Mount NFS
//Show Available NFS Sharesshowmount -e 10.129.14.128 //alternative apt install nfs-common//Mounting NFS Sharemkdir target-NFSsudo mount -t nfs 10.129.14.128:/ ./target-NFS/-o nolockcd target-NFStree .//List Contents with Usernames & Group Namesls -l mnt/nfs///List Contents with UIDs & GUIDsls -n mnt/nfs///Unmountingsudo umount ./target-NFS