“Acesso negado pelo servidor” ao montar o compartilhamento NFS

1

Estou tentando montar uma exportação do NFS em um host do Arch Linux. Está falhando com um erro "acesso negado pelo servidor".

[root@client mnt]# showmount -e 192.168.0.45
Export list for 192.168.0.45:
/mnt/Media/stor        (everyone)
[root@client mnt]# mount -t nfs 192.168.0.45:/mnt/Media/stor nas 
mount.nfs: access denied by server while mounting 192.168.0.45:/mnt/Media/stor

Eu tentei usar o NFSv3 e v4 e obtive o mesmo resultado.

Alguma opinião?

    
por Nathan 12.05.2017 / 15:58

1 resposta

0

Descobri que adicionar o nome do cliente ao arquivo /etc/hosts.allow no servidor corrige essa mensagem de erro.

$ cat /etc/hosts.allow
# /etc/hosts.allow: list of hosts that are allowed to access the system.
#                   See the manual pages hosts_access(5) and hosts_options(5).
#
# Example:    ALL: LOCAL @some_netgroup
#             ALL: .foobar.edu EXCEPT terminalserver.foobar.edu
#
# If you're going to protect the portmapper use the name "rpcbind" for the
# daemon name. See rpcbind(8) and rpc.mountd(8) for further information.
#
ALL: LOCAL client

Emita um comando sudo exportfs -a para garantir que o arquivo hosts.allow seja processado.

    
por 13.05.2017 / 01:28