原来nfs的exports文件如下:
/home   192.168.100.*(rw,sync,no_root_squash,no_all_squash,no_subtree_check)
工作正常。
但是IT配置了代理设置以后,发现nfs用不了了,盒子mount时报错
Server returned error -101 while mounting /home/jacky/Trident-SDK-3.2//SRC/target/output/imgs/sage_512M-singlehd_license_free-gnu-4.4.0-linux-retail/rootfs.tmplt
在主机上自己mount也报错:
mount -t nfs -o nolock,tcp,rw,nfsvers=3 192.168.100.180:/home/jacky/Trident-SDK-3.2//SRC/target/output/imgs/sage_512M-singlehd_license_free-gnu-4.4.0-linux-retail/rootfs.tmplt /mnt
网上g了一下把export改为:
/home   *(rw,sync,no_root_squash,no_all_squash,no_subtree_check)
一切正常