Estou tentando montar um NFS (v4 ou v3, mas obtenha o mesmo erro ...) de um Synology Server para um cliente Raspberry Pi. Mas eu recebo este erro:
mount -t nfs4 IP_address_of_server:/volume1/nfsnvf /mnt/nfsnvf
mount.nfs4: Connection timed out
Se eu tentar com o comando showmount
, consiga este erro:
showmount -e IP_address_of_server
clnt_create: RPC: Port mapper failure - Unable to receive: errno 113 (No route to host)
Eu tenho um Synology Server em uma rede corporativa (atrás de um roteador): - Portas abertas neste roteador: TCP / 2049, UDP / 2049, TCP / 111 e UDP / 111 - Lista de IPTables do Synology Server:
DiskStationV5> iptables --list
Chain INPUT (policy ACCEPT)
target prot opt source destination
DEFAULT_INPUT all -- anywhere anywhere
Chain FORWARD (policy ACCEPT)
target prot opt source destination
DEFAULT_FORWARD all -- anywhere anywhere
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
Chain DEFAULT_FORWARD (1 references)
target prot opt source destination
ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED
ACCEPT tcp -- anywhere anywhere multiport dports sunrpc,892,nfs
ACCEPT udp -- anywhere anywhere multiport dports sunrpc,892,nfs
ACCEPT all -- anywhere anywhere
Chain DEFAULT_INPUT (1 references)
target prot opt source destination
ACCEPT all -- anywhere anywhere
ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED
ACCEPT tcp -- anywhere anywhere multiport dports sunrpc,892,nfs
ACCEPT udp -- anywhere anywhere multiport dports sunrpc,892,nfs
ACCEPT all -- anywhere anywhere
ACCEPT all -- anywhere anywhere
Então em outra rede corporativa eu tenho um RaspberryPi (atrás de outro roteador). - Portas abertas nesta rede: TCP / 2049, UDP / 2049.
Além disso, o /etc/export
gerado pela sincronização é o seguinte:
/volume1/nfsnvf
*(rw,async,no_wdelay,root_squash,insecure_locks,sec=sys,anonuid=1024,anongid=100)
Alguma ideia de onde pode estar o problema?
Tags networking nfs iptables nas