Access through wireguard #2230
Unanswered
JacobDK8200
asked this question in
Q&A
Replies: 2 comments 3 replies
-
wild guess, using wireguard, You have a 10.0.0.0/8 CIDR, your compose is asking transmission to allow 192.168.1.0/24 ( LOCAL_NETWORK=192.168.1.0/24 ) |
Beta Was this translation helpful? Give feedback.
2 replies
-
Thanks I think that’s it. |
Beta Was this translation helpful? Give feedback.
1 reply
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.
-
I am trying to connect to the transmission web interface remotely through wireguard.
I can access the server, other docker images, SMB and more. But not anything inside the transmission docker.
I have no problem connecting when on my local network.
Any suggestions are very welcome, thanks.
Here is my docker compose:
version: '2.1'
services:
transmission-openvpn:
volumes:
- /srv/dev-disk-by-uuid-xx/appdata/transmission:/config
- /srv/dev-disk-by-uuid-xx/SSD/downloads:/downloads
environment:
- PUID=1000
- PGID=100
- CREATE_TUN_DEVICE=true
- OPENVPN_PROVIDER=NORDVPN
# - OPENVPN_CONFIG=default
- NORDVPN_COUNTRY=DK
- NORDVPN_CATEGORY=legacy_p2p
- NORDVPN_PROTOCOL=udp
- OPENVPN_USERNAME=xx
- OPENVPN_PASSWORD=xx
- OPENVPN_OPTS=--inactive 3600 --ping 10 --ping-exit 60
- WEBPROXY_ENABLED=false
- LOCAL_NETWORK=192.168.1.0/24
- TRANSMISSION_SCRAPE_PAUSED_TORRENTS_ENABLED=false
- TRANSMISSION_INCOMPLETE_DIR=/downloads/
- TRANSMISSION_WATCH_DIR=/config/transmission-home/watch
- TRANSMISSION_DOWNLOAD_DIR=/downloads
- TRANSMISSION_HOME=/config/transmission-home
- TRANSMISSION_UTP_ENABLED=false
- TRANSMISSION_WEB_UI=flood-for-transmission
librespeed:
image: linuxserver/librespeed
container_name: librespeed
network_mode: service:transmission-openvpn
environment:
- PUID=1000
- PGID=100
- TZ=Europe/Copenhagen
nzbget:
image: linuxserver/nzbget
container_name: nzbget
network_mode: service:transmission-openvpn
environment:
- PUID=1000
- PGID=100
- TZ=Europe/Copenhagen
volumes:
- /srv/dev-disk-by-uuid-xx/appdata/nzbget:/config
- /srv/dev-disk-by-uuid-xx/SSD/downloads:/downloads
restart: unless-stopped
Beta Was this translation helpful? Give feedback.
All reactions