debian NFS服务配置

服务器安装配置

1
# apt install nfs-kernel-server

编辑/etc/exports文件,添加:

1
/srv/homes 10.100.0.0/24(rw) 192.168.0.0/24(rw)

客户端安装配置

1
# apt install nfs-common

客户端查看服务器资源:

1
2
3
# showmount -e 10.100.0.30
Export list for 10.100.0.30:
/srv/homes 10.100.0.0/24

如果出现错误提示:

1
rpc mount export: RPC: Authentication error; why = Failed (unspecified error)

可以查看nfs服务器/etc/hosts.allow和/etc/hosts.deny的配置,是否允许客户机访问nfs资源,可以简单粗暴的允许所有主机访问,在/etc/hosts.allow最末尾添加ALL:ALL

客户端挂载服务器共享资源:

1
# mount 10.100.0.30:/srv/homes /mnt/share

自动挂载编辑/etc/fstab:

1
2
# nfs
10.100.0.30:/svr/homes /mnt/share nfs defaults 0 0

===
[erq]