Setup and Install NFS Server, NFS Client Connect on Debian8

1-Configure NFS Server

#aptitude -y install nfs-kernel-server
#vi /etc/idmapd.conf
#vi /etc/idmapd.conf
line 6: uncomment and change to your domain name
Domain = abc.com

#vi /etc/exports
write settings for NFS exports

/home 10.0.0.0/24(rw)
#systemctl restart nfs-kernel-server

2-Configure NFS Client

#aptitude -y install nfs-client
#vi /etc/idmapd.conf
line 6: uncomment and change to your domain name
Domain = abc.com
save and exit.

#mount -t nfs dlp.server.world:/home /home
# df -hT
Filesystem             Type      Size  Used Avail Use% Mounted on
/dev/dm-0              ext4      142G  1.3G  133G   1% /
udev                   devtmpfs   10M     0   10M   0% /dev
tmpfs                  tmpfs     1.6G  8.6M  1.6G   1% /run
tmpfs                  tmpfs     4.0G     0  4.0G   0% /dev/shm
tmpfs                  tmpfs     5.0M     0  5.0M   0% /run/lock
tmpfs                  tmpfs     4.0G     0  4.0G   0% /sys/fs/cgroup
/dev/sda1              ext2      236M   33M  191M  15% /boot
dlp.server.world:/home nfs4      142G  1.3G  133G   1% /home
# /home from NFS server is mounted