Nfs Vlted 45 Work Here

On the client (as root):

Then restart services (systemd example): nfs vlted 45 work

tcpdump -i eth0 -s 0 -w nfs-debug.pcap port 2049 # Reproduce the error, then Ctrl+C Analyze with Wireshark or tshark : On the client (as root): Then restart services

The fix? VMware ESXi’s NFS client defaults to NFSv4.1. The NetApp filer was still on NFSv4.0. Error 45 appeared due to unsupported RECLAIM_COMPLETE operation. verbose server:/export /mnt/test

yum update kernel nfs-utils For Ubuntu 16.04 (obsolete but still used):

# Remount with NFSv4.0 only sudo mount -t nfs -o vers=4.0 server:/export /mnt/nfs sudo mount -t nfs -o vers=3 server:/export /mnt/nfs

# Check kernel messages dmesg | grep -i nfs | grep -i "45" mount | grep nfs Run a controlled test with verbose output mount -t nfs -o vers=4,verbose server:/export /mnt/test