NFS (111,2049)
Scanning using NMAP
sudo nmap 10.129.14.128 -p111,2049 -sV -sCGetting the contents using NMAP
sudo nmap --script nfs* 10.129.14.128 -sV -p111,2049Show available NFS shares
showmount -e 10.129.14.128Mounting NFS share
mkdir target-NFS
sudo mount -t nfs 10.129.14.128:/ ./target-NFS/ -o nolock
cd target-NFS
tree .Unmounting the NFS share
sudo umount ./target-NFSLast updated