Problem: I replaced my Windows 10 computer with a new Windows 11 one. On W10 I usually see a throughput to my Synology NAS of close to 1 Gbit/sec. On W11 the throughput was ways slower: I only got ~300 Mbit/sec when copying to/from the Samba Share.
Cause: Windows 11 seems to requests SMB signing which seems to impact the throughput “a bit”. More about SMB signing and the differeent options can be found at Microsoft directly:
- Configure SMB Signing with Confidence | Microsoft Community Hub
- Overview of Server Message Block signing – Windows Server | Microsoft Learn
Solution: Disable SMB Signing. I am in a local network, a man-in-the-middle attack is rather unlikely to me. So I prefer the speed over this extra security.
The change can be done in the registry directly:
HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters
,
add RequireSecuritySignature=0
.
MAYBE add the same in HKLM\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters
If you prefer to do the changes in the Gui, please refer to the following articles:
- Configure SMB Signing with Confidence
- Beheben von SMB-Signaturfehlern für den NAS-Zugriff unter Windows 11 24H2
Or via Powershell: The Article Beheben von SMB-Signaturfehlern für den NAS-Zugriff unter Windows 11 24H2 describes how to change the settings via Powershell:
reg add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters"/v RequireSecuritySignature /t REG_DWORD /d 0 /f
I had been having 60MB/s connection speed with my NAS for several days (since I installed Windows 11). I couldn’t find the problem.
Now I have more than 200MB/s.
Thank you very much
Good job
Awesome! I’m glad that I could help. I took me quite a while as well.
Hallo,
vielen Dank für diesen Tipp. Ich wollte schon frustriert aufgeben, dann bin ich über deine Seite gestolpert. Windows 11 Rechner mit Zugriff auf einen Ubuntu Server mit Samba Shares. Vorher 18-20MB/s, jetzt 110-120MB/s! Kleiner Nebeneffekt: Die Dateiübertragung auf meine USB Laufwerke funktioniert jetzt auch dreimal so schnell.
Noch einmal, herzlichen Dank dafür.
Oh, freut mich mega wenn ich helfen konnte!
Ich hab damals auch echt lang gesucht.