MarkusMcNugen / docker-qBittorrentvpn

Docker container which runs a headless qBittorrent client with WebUI and optional OpenVPN
https://hub.docker.com/r/markusmcnugen/qbittorrentvpn/
GNU General Public License v3.0
177 stars 90 forks source link

qbittorrent slow when on nord vpn #133

Open grrminator opened 2 years ago

grrminator commented 2 years ago

When pushing torrents through qbittorrent vpn, the speed is immensely slow. Compared to without. I connected to the same server on my desktop via the nord VPN app and it was a ton faster.

Like it still downloads but is slow. And I am using the ubuntu torrents for 22.04 to test to be sure I have tons of seeds. My max speed is 5MBps while the flag is VPN flag is set to yes, but 80+ when set to no.

Speedtests are showing 40-80MBPs on the same exact server for nord VPN on the desktop.

SamuelWhittle commented 1 month ago

I am having the same issue with Surf Shark VPN.

My download speed when connected to the VPN is maybe 5KBps.

Is fine without VPN. I tested and made sure the VPN is not throttling.

grrminator commented 1 month ago

use this container and nordvpn.

Nord vpn has been solid for me and their servers scream. Im talking 50megaBYTES per second.

https://github.com/bubuntux/nordlynx

Using this docker compose here

nordlynx: container_name: nordlynx image: ghcr.io/bubuntux/nordlynx cap_add:

On Mon, Oct 21, 2024 at 4:24 PM Samuel Whittle @.***> wrote:

I am having the same issue with Surf Shark VPN.

My download speed when connected to the VPN is maybe 5KBps.

Is fine without VPN. I tested and made sure the VPN is not throttling.

— Reply to this email directly, view it on GitHub https://github.com/MarkusMcNugen/docker-qBittorrentvpn/issues/133#issuecomment-2427745588, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGYW76W3X333FHFRK6LN4VLZ4VWHFAVCNFSM6AAAAABQLCDZ3GVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDIMRXG42DKNJYHA . You are receiving this because you authored the thread.Message ID: @.***>

grrminator commented 1 month ago

I am having the same issue with Surf Shark VPN.

My download speed when connected to the VPN is maybe 5KBps.

Is fine without VPN. I tested and made sure the VPN is not throttling.

Sorry please see my reply above!

grrminator commented 1 month ago

And then you want to set your qbittorrent like this with the nordlynx hooked into it:

qbittorrent: image: linuxserver/qbittorrent network_mode: service:nordlynx privileged: true depends_on:

SamuelWhittle commented 1 month ago

Awesome thank you!

I am wondering if this will cause other issues though as for my specific setup I need the qbit container to be connected to a specific docker network to be able to communicate with a few other containers directly.

If I am not mistaken this looks like this is a way to route some docker containers traffic through another container and that other container is connected to a VPN in this case?

grrminator commented 1 month ago

think of the nordlynx container behaving like a network adapter in the compose file above.

The qbittorrent uses it as an outbound container.

All of these should still communicate to eachother locally. At least they do on my system.

Awesome thank you!

I am wondering if this will cause other issues though as for my specific setup I need the qbit container to be connected to a specific docker network to be able to communicate with a few other containers directly.

If I am not mistaken this looks like this is a way to route some docker containers traffic through another container and that other container is connected to a VPN in this case?