Posted On October 2, 2024

Testing NFS Between Linux Server & Windows Client

kimconnect 0 comments
blog.KimConnect.com >> Linux , Windows >> Testing NFS Between Linux Server & Windows Client

On Linux server:
1. Turn of selinux/ipchains/iptables during the test. This could be turned on at a later time.
2. check for correct path to nfs shares: showmount -e
3. check permissions: ls -ld /pathTo/share
4. check exports: sudo vim /etc/exports > set these export values: /pathTo/share (insecure,rw,sync,no_subtree_check) > refresh: sudo exportfs -ra , then sudo service nfs restart

On Windows client:
1. Turn off firewall for testing
2. check for ‘Services for NFS’ features
3. Edit registry
– REGISTRY::HKLM\SYSTEM\CurrentControlSet\Services\Mup > dword name DisableDfs = 1
– REGISTRY::HKLM\SYSTEM\CurrentControlSet\Control\NetworkProvider\Order > set this ordering of protocols, string ProviderOrder = Nfsnp,RDPNP,LanmanWorkstation
REGISTRY::HKLM\Software\Microsoft\ClientforNFS\CurrentVersion\Default\ >set UseReservedPorts = 1

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

System Center Virtual Machine Manager Errors and Resolutions

Error Message: Error (415)Agent installation failed copying 'C:\Program Files\Microsoft System Center\Virtual Machine Manager\agents\I386\IRV-VMM01\msiInstaller.exe' to '\\IRV-HYPERV06\ADMIN$\msiInstaller.exe'.The…

RDP Connection Error: CredSSP encryption oracle remediation

The Symptom: [Window Title]Remote Desktop Connection[Content]An authentication error has occurred.The function requested is not supportedRemote…

Linux: Compiling Software

Install From RPM: rpm -ivh PACKAGENAME   Install from TAR.GZ tar -xzvf PACKAGENAME cd PACKAGENAME…