obsidian/wiki/concepts/qbittorrent-slow-speed-checklist 2.md
2026-05-10 12:50:34 +01:00

2.1 KiB

title aliases tags sources created updated
qBittorrent Slow Speed Checklist — Proxy, UPnP, Port Forwarding
qbittorrent-proxy-profile-blocking
qbittorrent-port-forwarding
qbittorrent
homelab
networking
port-forwarding
proxy
bittorrent
daily/2026-05-03.md
2026-05-03 2026-05-03

qBittorrent Slow Speed Checklist

Three distinct root causes found in practice when qBittorrent shows near-zero download speeds despite good internet connectivity.

Cause 1: Proxy Profile Enabled Without Real Proxy

qBittorrent proxy settings with a profile enabled but no valid proxy host configured will silently block all peer connections. No error is shown — downloads just stall at 0 KB/s.

Fix:

  • Tools → Options → Connection → Proxy Server
  • Set Type to None

Or edit qBittorrent.conf directly:

[Connection]
ProxyType=0

Cause 2: UPnP Not Working / Port Not Opened

If your router doesn't support UPnP or it's blocked, qBittorrent may not have a routable incoming port.

Fix:

  • Tools → Options → Connection
  • Set a static port (e.g., 50000)
  • Disable "Use UPnP / NAT-PMP port forwarding" (avoid relying on auto)
  • Forward that port manually at the router

On TP-Link AX72, port forwarding is not under "Virtual Server" — it's at:

Advanced → NAT Forwarding → Port Forwarding

Add a rule:

  • Service Name: qBittorrent
  • External Port: 50000
  • Internal IP: <LXC/container IP>
  • Internal Port: 50000
  • Protocol: TCP+UDP

Config File Shortcuts

[Connection]
ProxyType=0
PortRangeMin=50000

[Upload]
RateLimit=-1

Config location (Linux): ~/.config/qBittorrent/qBittorrent.conf

Sources

  • daily/2026-05-03.md — qBit showing 0 KB/s; root causes: proxy profile blocking + UPnP + missing TP-Link port forward; fixed by disabling proxy, setting static port 50000, forwarding at router