Hi there, I am having issue getting gluetun to communicate with qbittorrent. this is my docker-compose.yaml.
Code: Select all
services:
# jellyfin is used to serve your media to the client devices
jellyfin:
image: lscr.io/linuxserver/${MEDIA_SERVICE}
container_name: ${MEDIA_SERVICE}
#network_mode: host # plex
environment:
- PUID=${PUID}
- PGID=${PGID}
- VERSION=docker
volumes:
- /etc/localtime:/etc/localtime:ro
- ${MEDIA_DIRECTORY}:/data
- ${INSTALL_DIRECTORY}/config/${MEDIA_SERVICE}:/config
ports: # plex
- 8096:8096 # plex
restart: unless-stopped
# qBitorrent is used to download torrents
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:libtorrentv1
container_name: qbittorrent
environment:
- PUID=${PUID}
- PGID=${PGID}
- WEBUI_PORT=8081
volumes:
- /etc/localtime:/etc/localtime:ro
- ${MEDIA_DIRECTORY}:/data
- ${INSTALL_DIRECTORY}/config/qbittorrent:/config
restart: unless-stopped
#ports: # qbittorrent
# - 8081:8081 # qbittorrent
network_mode: "service:gluetun"
# SABnzbd is used to download from usenet
sabnzbd:
image: lscr.io/linuxserver/sabnzbd:latest
container_name: sabnzbd
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=America/Montevideo
volumes:
- /etc/localtime:/etc/localtime:ro
- ${MEDIA_DIRECTORY}:/data
- ${INSTALL_DIRECTORY}/config/sabnzbd:/config
#ports: # sabnzbd
# - 8080:8080 # sabnzbd
restart: unless-stopped
network_mode: "service:gluetun"
# Sonarr is used to query, add downloads to the download queue and index TV shows
# https://sonarr.tv/
sonarr:
image: lscr.io/linuxserver/sonarr
container_name: sonarr
environment:
- PUID=${PUID}
- PGID=${PGID}
volumes:
- /etc/localtime:/etc/localtime:ro
- ${MEDIA_DIRECTORY}:/data
- ${INSTALL_DIRECTORY}/config/sonarr:/config
restart: unless-stopped
network_mode: "service:gluetun"
# Radarr is used to query, add downloads to the download queue and index Movies
# https://radarr.video/
radarr:
image: lscr.io/linuxserver/radarr
container_name: radarr
environment:
- PUID=${PUID}
- PGID=${PGID}
volumes:
- /etc/localtime:/etc/localtime:ro
- ${MEDIA_DIRECTORY}:/data
- ${INSTALL_DIRECTORY}/config/radarr:/config
restart: unless-stopped
network_mode: "service:gluetun"
# Lidarr is used to query, add downloads to the download queue and index Music
# https://lidarr.audio/
lidarr:
image: lscr.io/linuxserver/lidarr
container_name: lidarr
environment:
- PUID=${PUID}
- PGID=${PGID}
volumes:
- /etc/localtime:/etc/localtime:ro
- ${MEDIA_DIRECTORY}:/data
- ${INSTALL_DIRECTORY}/config/lidarr:/config
restart: unless-stopped
network_mode: "service:gluetun"
# Bazarr is used to download and categorize subtitles
# https://www.bazarr.media/
bazarr:
image: lscr.io/linuxserver/bazarr
container_name: bazarr
environment:
- PUID=${PUID}
- PGID=${PGID}
volumes:
- /etc/localtime:/etc/localtime:ro
- ${MEDIA_DIRECTORY}:/data
- ${INSTALL_DIRECTORY}/config/bazarr:/config
restart: unless-stopped
network_mode: "service:gluetun"
# Prowlarr is our torrent indexer/searcher. Sonarr/Radarr use Prowlarr as a source
# https://prowlarr.com/
prowlarr:
image: lscr.io/linuxserver/prowlarr
container_name: prowlarr
environment:
- PUID=${PUID}
- PGID=${PGID}
volumes:
- /etc/localtime:/etc/localtime:ro
- ${INSTALL_DIRECTORY}/config/prowlarr:/config
network_mode: "service:gluetun"
restart: unless-stopped
# Gluetun is our VPN, so you can download torrents safely
gluetun:
image: qmcgaw/gluetun:v3
container_name: gluetun
cap_add:
- NET_ADMIN
devices:
- /dev/net/tun:/dev/net/tun
ports:
- 8888:8888/tcp # HTTP proxy
- 8388:8388/tcp # Shadowsocks
- 8388:8388/udp # Shadowsocks
- 8003:8000/tcp # Gluetun admin
#- 8080:8080/tcp # qBittorrent WebUI (optional)
- 8081:8081/tcp # qBittorrent WebUI
- 8989:8989 # Sonarr
- 7878:7878 # Radarr
- 8686:8686 # Lidarr
- 6767:6767 # Bazarr
- 9696:9696 # Prowlarr
- 8080:8080 # SABnzbd (add this if you want web access to SABnzbd)
- 3000:3000
- 3001:3001
environment:
- FIREWALL_OUTBOUND_SUBNETS=172.60.0.0/24
- VPN_SERVICE_PROVIDER=private internet access
- PORT_FORWARD_ONLY=yes
- OPENVPN_USER=xxxx
- OPENVPN_PASSWORD=xxx_
- SERVER_REGIONS=DE Frankfurt
volumes:
- /opt/gluetun:/gluetun
restart: unless-stopped
networks:
yams_network:
ipv4_address: 172.60.0.18
# Portainer helps debugging and monitors the containers
portainer:
image: portainer/portainer-ce
container_name: portainer
ports:
- 9000:9000
volumes:
- /etc/localtime:/etc/localtime:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
- ${INSTALL_DIRECTORY}/config/portainer:/data
restart: unless-stopped
networks:
yams_network:
ipv4_address: 172.60.0.19
# Watchtower is going to keep our instances updated
watchtower:
image: containrrr/watchtower
container_name: watchtower
environment:
- WATCHTOWER_CLEANUP=true
volumes:
- /var/run/docker.sock:/var/run/docker.sock
restart: unless-stopped
networks:
yams_network:
ipv4_address: 172.60.0.20
restarter:
image: docker:cli
volumes:
- "/var/run/docker.sock:/var/run/docker.sock"
# Restart every 20 minutes (1200 secs)
command: ["/bin/sh", "-ex", "-c", "while true; do sleep 1200; echo restarting; docker restart qbittorrent; done"]
restart: unless-stopped
depends_on:
- qbittorrent
networks:
yams_network:
name: yams_network
ipam:
config:
- subnet: 172.60.0.0/24
my log file
Code: Select all
❯ docker logs gluetun
========================================
========================================
=============== gluetun ================
========================================
=========== Made with ❤️ by ============
======= https://github.com/qdm12 =======
========================================
========================================
Running version v3.40.0 built on 2024-12-25T22:01:25.675Z (commit e890c50)
🔧 Need help? ☕ Discussion? https://github.com/qdm12/gluetun/discussions/new/choose
🐛 Bug? ✨ New feature? https://github.com/qdm12/gluetun/issues/new/choose
💻 Email? quentin.mcgaw@gmail.com
💰 Help me? https://www.paypal.me/qmcgaw https://github.com/sponsors/qdm12
2025-08-05T15:58:27Z INFO [routing] default route found: interface eth0, gateway 172.60.0.1, assigned IP 172.60.0.18 and family v4
2025-08-05T15:58:27Z INFO [routing] local ethernet link found: eth0
2025-08-05T15:58:27Z INFO [routing] local ipnet found: 172.60.0.0/24
2025-08-05T15:58:27Z INFO [firewall] enabling...
2025-08-05T15:58:28Z INFO [firewall] enabled successfully
2025-08-05T15:58:32Z INFO [storage] merging by most recent 20776 hardcoded servers and 20776 servers read from /gluetun/servers.json
2025-08-05T15:58:33Z INFO Alpine version: 3.20.3
2025-08-05T15:58:33Z INFO OpenVPN 2.5 version: 2.5.10
2025-08-05T15:58:33Z INFO OpenVPN 2.6 version: 2.6.11
2025-08-05T15:58:33Z INFO IPtables version: v1.8.10
2025-08-05T15:58:33Z INFO Settings summary:
├── VPN settings:
| ├── VPN provider settings:
| | ├── Name: private internet access
| | └── Server selection settings:
| | ├── VPN type: openvpn
| | ├── Regions: de frankfurt
| | ├── Port forwarding only servers: yes
| | └── OpenVPN server selection settings:
| | ├── Protocol: UDP
| | └── Private Internet Access encryption preset: strong
| └── OpenVPN settings:
| ├── OpenVPN version: 2.6
| ├── User: [set]
| ├── Password: [set]
| ├── Client crt: MII...nU=
| ├── Client key: MII...2/Q
| ├── Private Internet Access encryption preset: strong
| ├── Network interface: tun0
| ├── Run OpenVPN as: root
| └── Verbosity level: 1
├── DNS settings:
| ├── Keep existing nameserver(s): no
| ├── DNS server address to use: 127.0.0.1
| └── DNS over TLS settings:
| ├── Enabled: yes
| ├── Update period: every 24h0m0s
| ├── Upstream resolvers:
| | └── cloudflare
| ├── Caching: yes
| ├── IPv6: no
| └── DNS filtering settings:
| ├── Block malicious: yes
| ├── Block ads: no
| ├── Block surveillance: no
| └── Blocked IP networks:
| ├── 127.0.0.1/8
| ├── 10.0.0.0/8
| ├── 172.16.0.0/12
| ├── 192.168.0.0/16
| ├── 169.254.0.0/16
| ├── ::1/128
| ├── fc00::/7
| ├── fe80::/10
| ├── ::ffff:127.0.0.1/104
| ├── ::ffff:10.0.0.0/104
| ├── ::ffff:169.254.0.0/112
| ├── ::ffff:172.16.0.0/108
| └── ::ffff:192.168.0.0/112
├── Firewall settings:
| ├── Enabled: yes
| └── Outbound subnets:
| └── 172.60.0.0/24
├── Log settings:
| └── Log level: info
├── Health settings:
| ├── Server listening address: 127.0.0.1:9999
| ├── Target address: cloudflare.com:443
| ├── Duration to wait after success: 5s
| ├── Read header timeout: 100ms
| ├── Read timeout: 500ms
| └── VPN wait durations:
| ├── Initial duration: 6s
| └── Additional duration: 5s
├── Shadowsocks server settings:
| └── Enabled: no
├── HTTP proxy settings:
| └── Enabled: no
├── Control server settings:
| ├── Listening address: :8000
| ├── Logging: yes
| └── Authentication file path: /gluetun/auth/config.toml
├── Storage settings:
| └── Filepath: /gluetun/servers.json
├── OS Alpine settings:
| ├── Process UID: 1000
| └── Process GID: 1000
├── Public IP settings:
| ├── IP file path: /tmp/gluetun/ip
| ├── Public IP data base API: ipinfo
| └── Public IP data backup APIs:
| ├── ifconfigco
| ├── ip2location
| └── cloudflare
└── Version settings:
└── Enabled: yes
2025-08-05T15:58:33Z INFO [routing] default route found: interface eth0, gateway 172.60.0.1, assigned IP 172.60.0.18 and family v4
2025-08-05T15:58:33Z INFO [routing] adding route for 0.0.0.0/0
2025-08-05T15:58:33Z INFO [firewall] setting allowed subnets...
2025-08-05T15:58:33Z INFO [routing] default route found: interface eth0, gateway 172.60.0.1, assigned IP 172.60.0.18 and family v4
2025-08-05T15:58:33Z INFO [routing] adding route for 172.60.0.0/24
2025-08-05T15:58:33Z INFO [http server] http server listening on [::]:8000
2025-08-05T15:58:33Z INFO [firewall] allowing VPN connection...
2025-08-05T15:58:33Z INFO [dns] using plaintext DNS at address 1.1.1.1
2025-08-05T15:58:33Z INFO [healthcheck] listening on 127.0.0.1:9999
2025-08-05T15:58:33Z INFO [openvpn] OpenVPN 2.6.11 x86_64-alpine-linux-musl [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [MH/PKTINFO] [AEAD]
2025-08-05T15:58:33Z INFO [openvpn] library versions: OpenSSL 3.3.2 3 Sep 2024, LZO 2.10
2025-08-05T15:58:33Z INFO [openvpn] TCP/UDP: Preserving recently used remote address: [AF_INET]212.102.57.19:1197
2025-08-05T15:58:33Z INFO [openvpn] UDPv4 link local: (not bound)
2025-08-05T15:58:33Z INFO [openvpn] UDPv4 link remote: [AF_INET]212.102.57.19:1197
2025-08-05T15:58:33Z INFO [openvpn] [frankfurt405] Peer Connection Initiated with [AF_INET]212.102.57.19:1197
2025-08-05T15:58:34Z INFO [openvpn] TUN/TAP device tun0 opened
2025-08-05T15:58:34Z INFO [openvpn] /sbin/ip link set dev tun0 up mtu 1500
2025-08-05T15:58:34Z INFO [openvpn] /sbin/ip link set dev tun0 up
2025-08-05T15:58:34Z INFO [openvpn] /sbin/ip addr add dev tun0 10.18.110.225/24
2025-08-05T15:58:34Z INFO [openvpn] UID set to nonrootuser
2025-08-05T15:58:34Z INFO [openvpn] Initialization Sequence Completed
2025-08-05T15:58:34Z INFO [dns] downloading hostnames and IP block lists
2025-08-05T15:58:34Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:34Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:34Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280|EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:34Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280|EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:34Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:34Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:35Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:35Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:36Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:36Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:36Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:37Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:37Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:37Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:38Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:39Z INFO [healthcheck] program has been unhealthy for 6s: restarting VPN (healthcheck error: dialing: dial tcp4: lookup cloudflare.com: i/o timeout)
2025-08-05T15:58:39Z INFO [healthcheck] 👉 See https://github.com/qdm12/gluetun-wiki/blob/main/faq/healthcheck.md
2025-08-05T15:58:39Z INFO [healthcheck] DO NOT OPEN AN ISSUE UNLESS YOU READ AND TRIED EACH POSSIBLE SOLUTION
2025-08-05T15:58:39Z INFO [vpn] stopping
2025-08-05T15:58:39Z ERROR [vpn] getting public IP address information: context canceled
2025-08-05T15:58:39Z ERROR [vpn] cannot get version information: Get "https://api.github.com/repos/qdm12/gluetun/releases": context canceled
2025-08-05T15:58:39Z INFO [vpn] starting
2025-08-05T15:58:39Z INFO [firewall] allowing VPN connection...
2025-08-05T15:58:39Z INFO [openvpn] OpenVPN 2.6.11 x86_64-alpine-linux-musl [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [MH/PKTINFO] [AEAD]
2025-08-05T15:58:39Z INFO [openvpn] library versions: OpenSSL 3.3.2 3 Sep 2024, LZO 2.10
2025-08-05T15:58:39Z INFO [openvpn] TCP/UDP: Preserving recently used remote address: [AF_INET]212.102.57.11:1197
2025-08-05T15:58:39Z INFO [openvpn] UDPv4 link local: (not bound)
2025-08-05T15:58:39Z INFO [openvpn] UDPv4 link remote: [AF_INET]212.102.57.11:1197
2025-08-05T15:58:40Z INFO [openvpn] [frankfurt405] Peer Connection Initiated with [AF_INET]212.102.57.11:1197
2025-08-05T15:58:40Z INFO [openvpn] TUN/TAP device tun0 opened
2025-08-05T15:58:40Z INFO [openvpn] /sbin/ip link set dev tun0 up mtu 1500
2025-08-05T15:58:40Z INFO [openvpn] /sbin/ip link set dev tun0 up
2025-08-05T15:58:40Z INFO [openvpn] /sbin/ip addr add dev tun0 10.10.110.221/24
2025-08-05T15:58:40Z INFO [openvpn] UID set to nonrootuser
2025-08-05T15:58:40Z INFO [openvpn] Initialization Sequence Completed
2025-08-05T15:58:40Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:40Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:40Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:40Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:40Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:40Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:40Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:40Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:40Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:40Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:40Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:40Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:40Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:41Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:41Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:41Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:41Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:41Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:41Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:41Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:41Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:42Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:42Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:42Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:42Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:42Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:42Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:42Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:43Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:43Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:43Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:43Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:43Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:44Z WARN [dns] cannot update filter block lists: Get "https://raw.githubusercontent.com/qdm12/files/master/malicious-hostnames.updated": net/http: TLS handshake timeout, Get "https://raw.githubusercontent.com/qdm12/files/master/malicious-ips.updated": net/http: TLS handshake timeout
2025-08-05T15:58:44Z INFO [dns] attempting restart in 10s
2025-08-05T15:58:44Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:45Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:45Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:47Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:47Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:47Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:47Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:48Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:49Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:49Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:49Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:50Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:50Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:50Z ERROR [vpn] getting public IP address information: fetching information: Get "https://ipinfo.io/": net/http: TLS handshake timeout
2025-08-05T15:58:50Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:50Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:50Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:50Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:50Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:50Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:50Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:50Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:50Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:50Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:51Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:51Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:51Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:51Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:53Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:53Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:53Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:53Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:54Z INFO [dns] downloading hostnames and IP block lists
2025-08-05T15:58:54Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:54Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:54Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
2025-08-05T15:58:54Z INFO [openvpn] read UDPv4 [EMSGSIZE Path-MTU=1280]: Message too large (fd=3,code=90)
qbittorrent log
Code: Select all
docker logs qbittorrent
[migrations] started
[migrations] no migrations found
───────────────────────────────────────
██╗ ███████╗██╗ ██████╗
██║ ██╔════╝██║██╔═══██╗
██║ ███████╗██║██║ ██║
██║ ╚════██║██║██║ ██║
███████╗███████║██║╚██████╔╝
╚══════╝╚══════╝╚═╝ ╚═════╝
Brought to you by linuxserver.io
───────────────────────────────────────
To support LSIO projects visit:
https://www.linuxserver.io/donate/
───────────────────────────────────────
GID/UID
───────────────────────────────────────
User UID: 1000
User GID: 1000
───────────────────────────────────────
Linuxserver.io version: release-5.1.2_v1.2.20-ls87
Build-date: 2025-07-27T07:00:40+00:00
───────────────────────────────────────
[custom-init] No custom files found, skipping...
WebUI will be started shortly after internal preparations. Please wait...
******** Information ********
To control qBittorrent, access the WebUI at: http://localhost:8081
Connection to localhost (127.0.0.1) 8081 port [tcp/tproxy] succeeded!
[ls.io-init] done.
and also docker-compose.custom.yaml
Code: Select all
services:
teddycloud:
container_name: teddycloud
hostname: teddycloud
image: ghcr.io/toniebox-reverse-engineering/teddycloud:latest
ports:
- 443:443 # Required (for Toniebox connection)
# - 80:80 # Optional (Web UI HTTP)
- 8443:8443 # Optional (Web UI HTTPS)
volumes:
- certs:/teddycloud/certs
- config:/teddycloud/config
- content:/teddycloud/data/content
- library:/teddycloud/data/library
- custom_img:/teddycloud/data/www/custom_img
- firmware:/teddycloud/data/firmware
- cache:/teddycloud/data/cache
restart: unless-stopped
pihole:
container_name: pihole
image: pihole/pihole:latest
ports:
# DNS Ports
- "53:53/tcp"
- "53:53/udp"
# Default HTTP Port
- "80:80/tcp"
# Default HTTPs Port. FTL will generate a self-signed certificate
- "9443:9443/tcp"
# Uncomment the line below if you are using Pi-hole as your DHCP server
#- "67:67/udp"
# Uncomment the line below if you are using Pi-hole as your NTP server
#- "123:123/udp"
environment:
# Set the appropriate timezone for your location (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones), e.g:
TZ: 'Europe/London'
# If using Docker's default `bridge` network setting the dns listening mode should be set to 'all'
FTLCONF_dns_listeningMode: 'all'
# Volumes store your data between container upgrades
volumes:
# For persisting Pi-hole's databases and common configuration file
- './etc-pihole:/etc/pihole'
# Uncomment the below if you have custom dnsmasq config files that you want to persist. Not needed for most starting fresh with Pi-hole v6. If you're upgrading from v5 you and have used this directory before, you should keep it enabled for the first v6 container start to allow for a complete migration. It can be removed afterwards. Needs environment variable FTLCONF_misc_etc_dnsmasq_d: 'true'
#- './etc-dnsmasq.d:/etc/dnsmasq.d'
cap_add:
# See https://github.com/pi-hole/docker-pi-hole#note-on-capabilities
# Required if you are using Pi-hole as your DHCP server, else not needed
- NET_ADMIN
# Required if you are using Pi-hole as your NTP client to be able to set the host's system time
- SYS_TIME
# Optional, if Pi-hole should get some more processing time
- SYS_NICE
restart: unless-stopped
volumes:
certs:
config:
content:
library:
custom_img:
firmware:
cache:
I have tried various ports and two different providers, but still being stuck behind a firewall and qbittorrent is not downloading anything, I also tried transmission and still did not work. This is trying to download a ubuntu iso. Health check is also failing....