\n

Understanding and Optimizing SMB Transfer Speeds on Unraid

\n\n\n\n

When you build a home server, one of the most important measures of real-world performance is how quickly you can move files to and from the system. Whether you\’re shuffling large media files, backing up workstations, or editing video over the network, your experience hinges on one core component: SMB transfer speeds.

\n\n\n\n

SMB (Server Message Block) is the most widely used protocol for accessing shared folders on Unraid from Windows, macOS, and Linux. But actual speeds can vary dramatically depending on your hardware, network layout, Unraid settings, and even the types of files you\’re moving.

\n\n\n\n

This post explores why SMB speed sometimes falls short of expectations, how Unraid handles SMB under the hood, and what you can do to maximize performance.

\n\n\n\n
\n\n\n\n

Why SMB Transfer Speeds Matter

\n\n\n\n

Fast local transfers don’t just save time—they shape how you use your server. With strong SMB performance, you can:

\n\n\n\n
    \n
  • Stream high-bitrate media without buffering
  • \n\n\n\n
  • Move terabytes of data in hours instead of days
  • \n\n\n\n
  • Edit photos or videos directly from your NAS
  • \n\n\n\n
  • Take advantage of 2.5GbE, 5GbE, or 10GbE networking
  • \n\n\n\n
  • Perform workstation backups efficiently
  • \n
\n\n\n\n

If you’ve upgraded your network interfaces but aren’t seeing the numbers you expected, SMB settings and Unraid configuration often hold the key.

\n\n\n\n
\n\n\n\n

How Unraid Handles SMB Behind the Scenes

\n\n\n\n

Unraid uses the Samba implementation of SMB. When you access a share from another device:

\n\n\n\n
    \n
  1. Unraid maps the SMB user to a local filesystem user.
  2. \n\n\n\n
  3. Samba negotiates the SMB version with your client (SMB2 or SMB3).
  4. \n\n\n\n
  5. The request passes through Unraid’s filesystem layers (XFS/Btrfs) and, depending on your share settings, the mover, cache pool, or the array disks.
  6. \n\n\n\n
  7. File transfers flow through Unraid’s kernel, network stack, and ultimately your network interface.
  8. \n
\n\n\n\n

It’s this multilayer architecture that influences why speeds can fluctuate.

\n\n\n\n
\n\n\n\n

Expected SMB Speed Ranges

\n\n\n\n

1 GbE network (typical home setups)

\n\n\n\n
    \n
  • Expected: 105–118 MB/s (near the 1Gb line rate)
  • \n\n\n\n
  • Common real-world: 90–110 MB/s
  • \n\n\n\n
  • If your cache is SSD: You’ll typically max out the link at ~112 MB/s
  • \n\n\n\n
  • If writing directly to the array: 35–45 MB/s (due to Unraid’s parity write method)
  • \n
\n\n\n\n

2.5 GbE network

\n\n\n\n
    \n
  • Expected: 260–280 MB/s
  • \n\n\n\n
  • Array writes: Still 35–45 MB/s
  • \n\n\n\n
  • Cache writes: 250–280 MB/s depending on SSDs and CPU
  • \n
\n\n\n\n

10 GbE network

\n\n\n\n
    \n
  • Expected: 700–1,100 MB/s depending on SSD/NVMe
  • \n\n\n\n
  • Array writes: Remain 35–45 MB/s unless using Turbo Write
  • \n\n\n\n
  • Turbo Write: 80–120 MB/s depending on drives
  • \n\n\n\n
  • NVMe cache: Can easily saturate 10GbE (1,000+ MB/s)
  • \n
\n\n\n\n
\n\n\n\n

Why SMB Transfer Speeds May Be Slow

\n\n\n\n

1. Parity Write Bottleneck (Most Common Issue)

\n\n\n\n

Unraid’s array is designed for flexibility and data protection. Standard writes use a read-modify-write process to maintain parity, limiting speeds to ~35–45 MB/s—regardless of your network speed.

\n\n\n\n

Solution:

\n\n\n\n
    \n
  • Enable Turbo Write (reconstruct write mode)
  • \n\n\n\n
  • Or write to a cache pool and let the mover relocate files later
  • \n
\n\n\n\n

2. Slow or Fragmented Cache Pool

\n\n\n\n

If your cache is nearly full or heavily fragmented (common on older SATA SSDs), write speeds can tank.

\n\n\n\n

Solution:

\n\n\n\n
    \n
  • Keep your cache below 70% full
  • \n\n\n\n
  • Use NVMe drives for heavy workflows
  • \n\n\n\n
  • Periodically run a Btrfs balance
  • \n
\n\n\n\n

3. SMB Tuning Thresholds

\n\n\n\n

Some defaults are conservative to ensure compatibility.

\n\n\n\n

Useful settings in Settings → SMB → SMB Extras include:

\n\n\n\n
socket options = TCP_NODELAY SO_RCVBUF=65536 SO_SNDBUF=65536 IPTOS_LOWDELAY\naio read size = 1\naio write size = 1\nstrict allocate = yes\n
\n\n\n\n

These don’t guarantee miracles, but they often smooth out throughput spikes.

\n\n\n\n

4. NIC or Switch Mismatch

\n\n\n\n

If any device in the path negotiates at 100Mb/s or half-duplex, SMB performance collapses.

\n\n\n\n

Check using:

\n\n\n\n

Unraid Dashboard → Network → Interface Eth0 → Speed/Duplex

\n\n\n\n

5. CPU Limitations During Encryption or Checksumming

\n\n\n\n

If you use:

\n\n\n\n
    \n
  • Encrypted shares
  • \n\n\n\n
  • ZFS pools
  • \n\n\n\n
  • High-speed NICs (5–10GbE)
  • \n
\n\n\n\n

…then your CPU becomes part of the bottleneck.

\n\n\n\n

6. Client-Side Caching and SMB Settings

\n\n\n\n

Windows has its own quirks, including:

\n\n\n\n
    \n
  • Slow browsing if SMB signing is forced
  • \n\n\n\n
  • Reduced throughput if offline files are enabled
  • \n\n\n\n
  • Throttled transfers when Defender scans each block
  • \n
\n\n\n\n
\n\n\n\n

Improving SMB Transfer Speeds in Unraid

\n\n\n\n

1. Use a Cache Pool for All Frequent Writes

\n\n\n\n

Move high-activity shares like these to SSD/NVMe:

\n\n\n\n
    \n
  • appdata
  • \n\n\n\n
  • domains
  • \n\n\n\n
  • system
  • \n\n\n\n
  • media
  • \n\n\n\n
  • projects
  • \n
\n\n\n\n

Set them to:
Use cache → Yes or Prefer, depending on your workflow.

\n\n\n\n

2. Enable Turbo Write

\n\n\n\n

In Settings → Disk Settings → Tunable (md_write_method)
Choose: reconstruct write

\n\n\n\n

Pros: Much faster array writes
Cons: Spins up all drives during transfers

\n\n\n\n

3. Optimize Samba (SMB) Settings

\n\n\n\n

Ensure SMB3 is in use. You can also enable multichannel if you have multiple NICs:

\n\n\n\n

Settings → SMB → Enable SMB Multichannel → Yes

\n\n\n\n

4. Tune Your Client Devices

\n\n\n\n

For Windows:

\n\n\n\n
    \n
  • Disable “Large Send Offload” only if you see inconsistent speeds
  • \n\n\n\n
  • Ensure NIC drivers are updated
  • \n\n\n\n
  • Turn off “Energy Efficient Ethernet” (EEE) on the NIC
  • \n
\n\n\n\n

5. Upgrade Your Network

\n\n\n\n

Even moving from 1 GbE → 2.5 GbE brings instant gains. Managed switches like TP-Link, QNAP, and Mikrotik offer affordable upgrades.

\n\n\n\n
\n\n\n\n

Benchmarking SMB Speeds

\n\n\n\n

A reliable workflow for testing involves:

\n\n\n\n
    \n
  • A single large MKV file (20–40GB) for peak speed
  • \n\n\n\n
  • A folder of hundreds of photos for small-file performance
  • \n\n\n\n
  • Running tests both to the cache and directly to the array
  • \n
\n\n\n\n

Tools like LAN Speed Test, iPerf3, and Windows built-in Task Manager graphs help verify whether the bottleneck is network or disk-related.

\n\n\n\n
\n\n\n\n

SMB transfer speeds on Unraid aren’t just about network hardware—they’re influenced by caching, parity, drive type, filesystem tuning, and the Samba configuration. Once you understand how each layer contributes to performance, optimizing becomes a straightforward process.

\n\n\n\n

If you set up:

\n\n\n\n
    \n
  • A fast SSD or NVMe cache
  • \n\n\n\n
  • Turbo Write for array operations
  • \n\n\n\n
  • SMB tuning
  • \n\n\n\n
  • A high-speed LAN (2.5–10GbE)
  • \n
\n