How to fix slow network speed with Windows 11 to local NAS via Samba / SMB Share

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:

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:

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

4 thoughts on “How to fix slow network speed with Windows 11 to local NAS via Samba / SMB Share”

  1. 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

  2. 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.

Leave a Reply to 'Dreas Cancel reply

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