Sua saída showmount -e 10.176.14.26
mostra que você exportou /export
directory
mas você está tentando montar / mnt / secundário diectory !!!
Atualize sua pergunta com esse detalhe
O que você exportou no arquivo /etc/export
?
Exemplo
No lado do servidor
[root@localhost ~]# cat /etc/exports /export 10.10.1.2(rw,sync)
Iniciar rpcbibd
e nfs
services
[root@localhost mnt]# service rpcbind restart Stopping rpcbind: [ OK ] Starting rpcbind: [ OK ]
[root@localhost mnt]# service nfs restart Shutting down NFS mountd: [ OK ] Shutting down NFS daemon: [ OK ] Shutting down NFS quotas: [ OK ] Shutting down NFS services: [ OK ] Starting NFS services: [ OK ] Starting NFS quotas: [ OK ] Starting NFS daemon: [ OK ] Starting NFS mountd:
[root@localhost ~]# iptables -F
Flushing iptables não é a maneira correta de configurar uma regra apropriada do iptables
No lado do cliente, verifique o diretório exportado
[root@localhost ~]# showmount -e 10.10.1.1 Export list for 10.10.1.1: /export 10.10.1.2
[root@localhost ~]# mount -t nfs 10.10.1.1:/export/ /mnt/ [root@localhost ~]#