1

Я пытаюсь смонтировать экспорт NFS на хосте Arch Linux. Сбой из-за ошибки "доступ запрещен сервером".

[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

Я попытался использовать NFSv3 и v4 и получил тот же результат.

Какие-нибудь мысли?

1 ответ1

0

Я обнаружил, что добавление имени клиента в файл /etc/hosts.allow на сервере исправляет это сообщение об ошибке.

$ 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

Введите команду sudo exportfs -a чтобы убедиться, что файл hosts.allow обработан.

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .