@koelhomem Why do you think things are “correctly configured”?
Based on the message I’m seeing, there’s a problem with mounting the NFS share to perform the download from.
I’d say try:
Restart the server’s nfs service (Redhat typically service nfsd restart or service nfs restart, ubuntu typically service nfs-kernel-server restart)
Check the exports file It should look something like:
/images *(ro,sync,no_wdelay,no_subtree_check,insecure_locks,no_root_squash,insecure,fsid=0) /images/dev *(rw,async,no_wdelay,no_subtree_check,no_root_squash,insecure,fsid=1) Ensure permissions are correct and the .mntcheck files exist in both directories: touch /images/.mntcheck touch /images/dev/.mntcheck chmod -R 777 /images Make sure firewalls are disabled on the server. Or at least the right ports are opened up.