Hello,
Thank you for posting in Microsoft Community forum.
- SMB Version Compatibility
Ensure that both TrueNAS and Windows Server 2025 are using compatible SMB versions. It’s possible that the SMB version on TrueNAS is outdated or incompatible, leading to connection issues. Try explicitly configuring TrueNAS to use SMB3 rather than relying on auto-negotiation. You can also check the SMB version on the affected Windows nodes by running the Get-SmbConnection command to verify if they are using SMB3. - Network Settings / MTU Mismatch
Given your high-bandwidth setup (40Gbps NICs), an MTU mismatch could cause packet fragmentation, resulting in poor performance or freezes. Check that the MTU settings on both TrueNAS and the nodes are consistent, especially if you are using jumbo frames. Ensure that all devices involved (including the TrueNAS server and all nodes) have matching MTU settings, which can be verified through the command line or device configuration interfaces. - SMB Client Caching or Network Performance
Disable SMB client-side caching on the affected Windows nodes, as caching might cause delays or freezes. This can be done via Group Policy or the registry. Additionally, use network monitoring tools like netstat or Wireshark to check the network performance on the nodes. Look for signs of packet loss, high latency, or retransmissions, which could indicate a network bottleneck or issue affecting SMB traffic. - Windows Network Stack or SMB Filters
If the issue is related to the Windows network stack, you can reset it by running the following commands:
netsh int ip reset
netsh winsock reset
Also, make sure there are no third-party firewalls, network filters, or antivirus software interfering with SMB traffic. These can sometimes cause slowdowns or freezes when interacting with SMB shares, especially over high-performance networks.
- Check TrueNAS Logs
Examine the SMB logs on the TrueNAS server, especially when access issues or freezes occur. Look for any errors related to SMB protocol negotiation, permission issues, or other related errors. This could point to issues on the server side that need to be addressed. - Check Hyper-V Cluster Configuration
Since you are running a Hyper-V cluster, ensure that the virtual network configurations are correct. Particularly check the network adapter settings on nodes 1–3 to ensure there are no configuration conflicts. It’s possible that the network traffic between the physical nodes and the virtual machines is misconfigured, causing the issues with SMB access. - Check for OS Updates
There might be known SMB-related issues with Windows Server 2025. Ensure that all nodes have the latest OS updates and patches installed. Check the Windows update logs or official Microsoft documentation to confirm if any network-related issues have been addressed in recent patches. - Test with Other SMB Clients
Try accessing the SMB share from a different OS, such as Linux or macOS, to see if the issue persists. If these clients can access the share without issues, it will help determine whether the problem is specific to Windows 2025 or related to the SMB configuration on TrueNAS.
Following these steps should help you narrow down the root cause of the freezing issue. Let me know if you find anything new or need further assistance!