Qbittorent slow speeds #103
Unanswered
c0NESY
asked this question in
Container Support
Replies: 1 comment
-
|
There isn't anything specific with the container you can do to improve speed, it's all affected by external factors. Considering your connection is dropping packets, that's definitely something you should investigate. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
running a Debian arr stack using docker compose. It started off fast in a 2mb average on qbittorent downloads then all of a sudden after a few days it went slow. We are taking 100 kb average. I suspect that Tailscale caused the issue as it was not long after installation it started to occur. I tried bypassing gluetun and I still got slow speeds. As you can see below, I’m dropping packets:
ens18: 87864959302 106604044 0 6198 0 0 0 0 65001297895 62002350 0 0 0 0 0 0
I am going to list some dot points on everything iv tried:
∙ Wireguard proton vpn
∙ Proton vpn port forwarding
∙ Nord open vpn
∙ set the MTU size manually
∙ Issue occurred around the same time I installed tailscale
∙ I uninstalled tailscale.
∙ tailscale and glutun had a double mtu maybe. I dont know if me uninstalling tailscale fixed it.
∙ MTu discovery was coming back with errors sometimes.
∙ VM speed test is 900mb but only a couple of mb in container.
∙ I set the vpn to a server close to me.
∙ I changed the vpn port incase my isp was throttling me
∙ I check my router and firewall settings and disabled them.
∙ I originally used a docker proxomox helper script container and changed to a vm i loaded the Debian iso and installed docker compose manually
Please see docker compose
services:
gluetun:
image: qmcgaw/gluetun
container_name: gluetun
cap_add:
NET_ADMIN
devices:
/dev/net/tun:/dev/net/tun
ports:
8080:8080
6881:6881
6881:6881/udp
volumes:
/docker/appdata/gluetun:/gluetun
environment:
VPN_SERVICE_PROVIDER=protonvpn
VPN_TYPE=wireguard
WIREGUARD_PRIVATE_KEY=YOUR_PROTON_WIREGUARD_PRIVATE_KEY
WIREGUARD_ADDRESSES=10.2.0.2/32
TZ=Australia/Sydney
UPDATER_PERIOD=24h
SERVER_COUNTRIES=australia
restart: unless-stopped
qbittorrent:
image: lscr.io/linuxserver/qbittorrent
container_name: qbittorrent
network_mode: "service:gluetun"
environment:
PUID=1000
PGID=1000
TZ=Australia/Sydney
WEBUI_PORT=8080
volumes:
/docker/appdata/qbittorrent:/config
/mnt/nas/data/torrents:/torrents
depends_on:
gluetun
restart: always
Beta Was this translation helpful? Give feedback.
All reactions