I have a CentOS 8 virtual machine (192.168.10.203
) running nfs-server
, and I'm trying to mount the share on my Windows 10 Pro x86_64 machine (192.168.10.10
) I have installed the "Services for NFS" Windows feature), but when I run mount \\<nfs_server_IP>\data N:
, I keep getting this error:
Network Error - 53
Type 'NET HELPMSG 53' for more information.
The message for Network Error 53 is "The network path was not found" but I'm not sure what that means.
This is what my /etc/exports
looks like on the CentOS machine:
/data 192.168.10.0/24(rw,sync,root_squash,insecure,anonuid=0,anongid=0)
I've also tried with the bare-minimum options:
/data 192.168.10.0/24(rw,sync)
Both the CentOS and Windows 10 machines can ping each other.
I can connect to the NFS server on port 2049
Output of rpcinfo -p localhost
run on the NFS machine:
$ rpcinfo -p localhost
program vers proto port service
100000 4 tcp 111 portmapper
100000 3 tcp 111 portmapper
100000 2 tcp 111 portmapper
100000 4 udp 111 portmapper
100000 3 udp 111 portmapper
100000 2 udp 111 portmapper
100024 1 udp 39181 status
100024 1 tcp 38357 status
100005 1 udp 20048 mountd
100005 1 tcp 20048 mountd
100005 2 udp 20048 mountd
100005 2 tcp 20048 mountd
100005 3 udp 20048 mountd
100005 3 tcp 20048 mountd
100003 3 tcp 2049 nfs
100003 4 tcp 2049 nfs
100227 3 tcp 2049 nfs_acl
100021 1 udp 53482 nlockmgr
100021 3 udp 53482 nlockmgr
100021 4 udp 53482 nlockmgr
100021 1 tcp 39197 nlockmgr
100021 3 tcp 39197 nlockmgr
100021 4 tcp 39197 nlockmgr
I have the insecure
option in my /etc/exports
per "Network Error - 53" while trying to mount NFS share in Windows Server 2008 client. Didn't work.
I've tried disabling the firewalls on both hosts with no results (systemctl disable firewalld && iptables --flush
on the CentOS machine, and disabling both Windows Defender Firewalls (public and private network firewalls).
Any ideas?