Eu tenho o host do Ubuntu 16.04 com um endereço IP de 192.168.1.35
e dois clientes de VM: Ddebian 8 Jessie e CentOS 7. Eu corro nfs server
no meu host e nfs client
em ambos os meus convidados. A partir do Debian guest, ele monta nfs-share
do host sem nenhum problema. O problema está no meu convidado do CentOS
Quando tento montar o nfs-share de dentro do guest, ele emite o seguinte erro:
[hedin@localhost ~]$ sudo mount -a
mount.nfs: access denied by server while mounting 192.168.1.35:/home/hedin/export/eudyptula
Este é o / etc / fstab do meu convidado:
#
# /etc/fstab
# Created by anaconda on Mon Apr 10 16:16:12 2017
#
# Accessible filesystems, by reference, are maintained under '/dev/disk'
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info
#
/dev/mapper/cl-root / xfs defaults 0 0
UUID=46ddae58-4556-492c-8e23-8c56a4e067d9 /boot xfs defaults 0 0
/dev/mapper/cl-swap swap swap defaults 0 0
192.168.1.35:/home/hedin/export/eudyptula /home/hedin/mnt/host nfs rw,hard,intr,bg 0 0
O firewall está desativado:
[hedin@localhost ~]$ systemctl is-enabled firewalld
disabled
O SELinux está desativado:
[hedin@localhost ~]$ cat /etc/sysconfig/selinux
# This file controls the state of SELinux on the system.
SELINUX=disabled
SELINUXTYPE=targeted
Todos os hosts são permitidos:
[hedin@localhost ~]$ cat /etc/hosts.allow
#
# hosts.allow This file contains access rules which are used to
ALL: ALL: ALLOW
Poderíamos ver o host nfs-share de dentro do convidado:
[hedin@localhost ~]$ sudo showmount -e 192.168.1.35
Export list for 192.168.1.35:
/home/hedin/export/eudyptula 192.168.1.0/24
/home/hedin/export 192.168.1.0/24
E esta é a configuração /etc/export
dos meus anfitriões:
hedin@home:~/projects/open-source/linux$ cat /etc/exports
/home/hedin/export 192.168.1.0/24(rw,fsid=0,insecure,no_subtree_check,async)
/home/hedin/export/eudyptula 192.168.1.0/24(rw,nohide,insecure,no_subtree_check,async)
Então, não sei o que perdi na minha configuração. Alguma idéia?