noroku64 0 Posted ... Hi, I need some help. I can't get Qbittorrent to download when set behind Gluetun. When I put the qbittorrent into bridge mode it can download torrents just fine. When I put Qbittorrent into the gluetun container it does nothing. 1. I have setup Port Forwarding in Airvpn client area 2. In Qbittorrent I have added that port to the listening port configuration. 3. In Qbittorrent I have the network interface to Tun0 4. I have removed all ports in Qbittorrent 5. I have set the Qbittorrent Network to go through container Gluetun 6. I setup port 8080, and the forwarded port onto Gluetun 7. FIREWALL_VPN_INPUT_PORTS is set to that port under Gluetun 8. TORRENTING_PORT is set in Qbittorrent to the forwarded port 9. I have verified that the qbittorrent container is going through the VPN using CLI command: curl ifconfig.io 10. on Client area under forwared port when I do a test. It times out. 11. When I add a torrent to Qbittorrent it doesn't do anything. 12. When I move Qbittorent back to bridge mode with the ports 8080 and same port it downloads What am I doing wrong here? I'm using wireguard config file instead of OPENVPN. I haven't tried OPENVPN but everything I have seen and read said to go with wireguard configuration. Please help. I've been at this for 2 weeks looking up youtube videos, forums and such and nothing seems to work. Quote Share this post Link to post
ASiC666 0 Posted ... --- services: gluetun: cap_add: - NET_ADMIN deploy: resources: limits: cpus: '1' memory: 512m environment: - VPN_SERVICE_PROVIDER=airvpn - VPN_TYPE=wireguard - WIREGUARD_PRIVATE_KEY=... - WIREGUARD_PRESHARED_KEY=... - WIREGUARD_PUBLIC_KEY=... - SERVER_COUNTRIES=Netherlands - WIREGUARD_ADDRESSES=... - WIREGUARD_MTU=1320 - FIREWALL_OUTBOUND_SUBNETS= # Optional, access to local subnet. Adjust to your network - FIREWALL_VPN_INPUT_PORTS=51820 image: qmcgaw/gluetun:latest ports: - '38080:38080' # qBittorrent WebUI - '39696:9696' # Prowlarr WebUI - '30014:8686' # Lidarr WebUI - '30027:8989' # Sonarr WebUI - '30025:7878' # Radarr WebUI - '30055:30055' # Sabnzbd WebUI restart: unless-stopped volumes: - /mnt/apps/appdata/warez/gluetun:/gluetun qbittorrent: container_name: qbittorrent depends_on: gluetun: condition: service_healthy deploy: resources: limits: cpus: '1' memory: 1g environment: - PUID=568 - PGID=568 - TZ=Europe/London - WEBUI_PORT=38080 - TORRENTING_PORT=54811 image: lscr.io/linuxserver/qbittorrent:latest network_mode: service:gluetun volumes: - /mnt/apps/appdata/warez/qbittorrent:/config - /mnt/zfspool/downloads/torrents:/downloads/torrents/ ....... Hi, I'm attaching a snippet from my docker compose yaml which works every time, even when the tunnel reconnects. I hope it will you some troubleshooting ideas. Quote Share this post Link to post