FileZilla Slow Download? The Real Reason and 6 Fixes That Work

File Management 6 min read Updated Aug 27, 2026
On this page ▾

A slow FileZilla download is usually caused by one thing: FileZilla moves each file over a single TCP connection, and on a high-latency link (your PC in one country, the server in another) one connection cannot fill the pipe. It is rarely your ISP and rarely the server. FileZilla can run several files side by side, but it cannot split one file, so a single large download tops out below your line speed no matter how you tune it.

Below: how to tell which kind of slowness you have, the six fixes that move the needle (with exact menu paths), and the ceiling you will hit on one big file. If you only want the settings checklist, that lives on the FileZilla transfer speed settings page. If you want the ceiling removed, the fix is a segmented client such as evoftp, our free SFTP client, or lftp pget.

First, diagnose: which kind of slow is it?

Before changing settings, match your symptom.

  • One big file is slow, but a folder of many files is fast. Latency plus no segmentation. Ten files in parallel use ten connections; one 20 GB file gets one and sits at a fraction of your line. Fix 6 removes the limit.
  • Everything is slow, even many files at once. The bottleneck is before FileZilla: Wi-Fi, a VPN, a throttled line, a busy router. Test on a cable with the VPN off, and see our slow FTP download speeds guide for the line-side checks.
  • Speed starts fine, then collapses or the transfer stalls near the end. On plain FTP, the control connection sits idle while the data connection works. FileZilla’s Network Configuration page explains that many consumer routers silently drop idle connections long before the 2 hours 4 minutes the TCP spec allows, so the server’s “transfer complete” reply never arrives and the transfer times out. Their remedy is to replace the router or uninstall the firewall; the practical remedy is SFTP (fix 4).
  • “Timeout” or “Connection timed out” on large files only. Same cause: small files finish before the router kills the idle control connection, large files do not.
  • “Critical file transfer error”. FileZilla’s FAQ groups this with “can’t list directories” and points at firewall, router or FileZilla configuration. The FileZilla Pro knowledge base adds a second cause: permissions or a lock on the destination file. Check the local folder first, then the network.

The six fixes, in the order to try them

1. Raise the number of simultaneous transfers

Edit → Settings… → Transfers → Maximum simultaneous transfers. The hard cap is 10; the developer confirmed on the FileZilla forum that “10 transfers per running FileZilla is max”. Set it to 10; the separate “Limit for concurrent downloads/uploads” boxes are still capped by this number. This is the biggest win for a season folder or a batch of files. It does nothing for one large file.

2. Check that a speed limit is not switched on

Edit → Settings… → Transfers → Enable speed limits. Untick it, or click the speed-limit button in the status bar, which toggles limits. A limit left on from an earlier session gets blamed on the server.

3. Remove any per-site connection limit

File → Site Manager… → your site → Transfer Settings tab → Limit number of simultaneous connections. This is a workaround for servers that answer “421 Too many connections”. Ticked with a low number, it overrides your global 10 for that site; untick it unless the server actually sends 421s.

4. Use SFTP, not FTP

In the Site Manager set Protocol: SFTP – SSH File Transfer Protocol, port 22, and your normal seedbox username and password. SFTP runs over one SSH connection, so there is no idle control connection for a router to drop, which removes the “collapses over time” failure. Every EvoSeedbox slot supports SFTP on port 22.

5. If you must stay on FTP, use passive mode and run the wizard

FileZilla’s documentation recommends passive mode and the Network configuration wizard under the Edit menu, which tests your setup. Active mode needs your external IP and a forwarded port range. The same page notes that some antivirus suites block outgoing connections on random port ranges, which shows as intermittent “cannot open data connection” in passive mode; check the antivirus log.

6. Give the one file more than one connection

This is the fix for the most common case, and FileZilla cannot do it. Asked for segmented downloads on the forum, the lead developer answered: “Never. There’s no need for it.” Three years later, asked whether FileZilla segments uploads: “FileZilla doesn’t use segmented transfers.”

A segmented client opens several SSH connections to the same file, each fetching a different byte range. Two options:

evoftp (free, Windows, macOS, Linux; SFTP, FTPS, FTP)

  1. Download the build for your OS from neo.myseedbox.site/share/evoftp/. Portable app, no installer.
  2. In the EvoSeedbox client area, open the Desktop app row and click Connection file. Double-click the downloaded .evoftp file and you are connected.
  3. Far from the server? Pick the Long distance profile (8 segments per file, 16 MB in flight). The default is 4 segments per file, 3 files at once.
  4. Double-click the file, or select it and press Ctrl/⌘+D. To resume, download the same file into the same folder again.

In our tests, a Mac at 250–700 ms from the server went from about 2.4 MB/s on one connection to line speed with 8 segments; treat that as an example, not a promise. The technique is explained on the segmented SFTP download page.

lftp (free command line, Linux and macOS; Windows via WSL)

lftp -u USERNAME sftp://SERVER.myseedbox.site
pget -n 8 -c "downloads/Big.File.mkv"

-n 8 is eight segments, -c continues an interrupted download.

Symptom, cause, fix

Symptom Most likely cause Fix
One big file slow, folders of small files fast One TCP connection per file over a high-latency link Segmented client: evoftp or lftp pget -n 8 (fix 6)
Everything slow, even 10 files at once Wi-Fi, VPN, ISP throttling, busy router Cable, VPN off, line tests in the slow FTP guide
Fast start, then stalls or “Timeout” on large files Router dropping FTP’s idle control connection Switch to SFTP port 22 (fix 4)
Batch downloads slower than expected Simultaneous transfers below 10, or per-site limit Fixes 1 and 3
“Critical file transfer error” Firewall/router config, or a locked/unwritable local file Close the program holding the file, check the folder, then fix 5

FAQ

Why is FileZilla slow when a speed test shows my line is fast?

A speed test opens many parallel streams; FileZilla opens one per file. Over a long distance a single TCP stream is limited by round-trip time, not by your line. Ten files at once approach line speed; one file does not.

Can I make FileZilla use more than 10 connections?

No. The developer said 10 per running instance is the maximum and that, in hindsight, he would have set it lower. Running FileZilla twice with the queue split still does not help a single file.

Does FileZilla Pro add segmented downloads?

Not in anything we found in its documentation. Pro adds cloud protocols and a clean installer; the transfer engine is the same.

Will SFTP be slower than FTP because of encryption?

On a modern PC latency is the limit, not encryption, and SFTP avoids the idle-control-connection timeout that kills long FTP transfers behind home routers. Use SFTP on port 22.

Is there a downside to evoftp?

Yes: no WebDAV or cloud storage, no sync or scheduling, no speed limit yet, and the builds are unsigned, so macOS asks you to right-click → Open the first time. It is version 0.2.0, GPL-3.0 open source.

The honest summary: FileZilla is fine for folders of files and the wrong tool for one large file over a long distance. Set it to 10 transfers, switch to SFTP, and for the big files use evoftp, downloadable free at neo.myseedbox.site/share/evoftp/.

Put this into practice

EvoSeedbox ships with one-click app installs and up to 10 Gbps per box.

Get your seedbox →