I'd like to ask for help with configuring binhex-sonarr to connect to binhex-qbittorrentvpn.
My docker containers are running under Unraid, on a custom network, br0. My sonarr instance is at 10.1.1.77/24, while my qbittorrent instance is at 10.1.1.74/24. My desktop PC at 10.0.0.10/24, and it can browse to the qbittorrent webUI just fine, hopping through my router from my home vlan to my server vlan.
When I configure qbittorrent as a downloader in sonarr, and I click, "Test," this error message appears in the supervisord log: "Http request timed out".
Why does the webUI work fine for a device in another subnet, but connectivity to a device in the same subnet fails?
qBittorrentvpn is configured to use a VPN service, and the LAN_NETWORK variable has this value: "10.0.0.0/24, 10.1.1.0/24".
Here's my run commands:
#sonarr
docker run -d --name='binhex-radarr' --net='br0' --ip='10.1.1.77' --pids-limit 2048 -e TZ="America/Chicago" -e HOST_OS="Unraid" -e HOST_HOSTNAME="homeserver" -e HOST_CONTAINERNAME="binhex-radarr" -e 'TCP_PORT_7878'='7878' -e 'SHARED_NETWORK'='no' -e 'PUID'='99' -e 'PGID'='100' -e 'UMASK'='002' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:7878]' -l net.unraid.docker.icon='https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/radarr-icon.png' -v '/mnt/user/appdata/binhex-radarr':'/config':'rw' -v '/mnt/user/media/':'/data':'rw' -v 'binhex-shared':'/shared':'rw' 'binhex/arch-radarr'
#qbittorrent-vpn
docker run -d --name='binhex-qbittorrentvpn' --net='br0' --ip='10.1.1.74' --pids-limit 2048 --privileged=true -e TZ="America/Chicago" -e HOST_OS="Unraid" -e HOST_HOSTNAME="homeserver" -e HOST_CONTAINERNAME="binhex-qbittorrentvpn" -e 'TCP_PORT_8080'='8080' -e 'TCP_PORT_8118'='8118' -e 'TCP_PORT_9118'='9118' -e 'VPN_ENABLED'='yes' -e 'VPN_USER'='[Redacted]' -e 'VPN_PASS'='[Redacted]' -e 'VPN_PROV'='protonvpn' -e 'VPN_CLIENT'='openvpn' -e 'STRICT_PORT_FORWARD'='yes' -e 'ENABLE_PRIVOXY'='no' -e 'ENABLE_SOCKS'='no' -e 'SOCKS_USER'='admin' -e 'SOCKS_PASS'='socks' -e 'LAN_NETWORK'='10.0.0.0/24, 10.1.1.0/24' -e 'WEBUI_PORT'='8080' -e 'VPN_INPUT_PORTS'='' -e 'VPN_OUTPUT_PORTS'='' -e 'DEBUG'='false' -e 'TCP_PORT_58946'='58946' -e 'UDP_PORT_58946'='58946' -e 'VPN_OPTIONS'='' -e 'ENABLE_STARTUP_SCRIPTS'='no' -e 'USERSPACE_WIREGUARD'='no' -e 'NAME_SERVERS'='84.200.69.80,37.235.1.174,1.1.1.1,37.235.1.177,84.200.70.40,1.0.0.1' -e 'PUID'='99' -e 'PGID'='100' -e 'UMASK'='000' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:8080]' -l net.unraid.docker.icon='https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/qbittorrent-icon.png' -v '/mnt/user/appdata/binhex-qbittorrentvpn':'/config':'rw' -v '/mnt/user/media/torrents/':'/data':'rw' -v 'binhex-shared':'/shared':'rw' --sysctl="net.ipv4.conf.all.src_valid_mark=1" 'binhex/arch-qbittorrentvpn'
radarr-supervisord.log
qbittorrent-supervisord.log