Hi
It's days i'm trying to figure out this issue but without luck.
On my Odroid HC2 i tried to setup wireguard container with this compose:
Code
version: "2.1"
services:
wireguard:
image: linuxserver/wireguard
container_name: wireguard
cap_add:
- NET_ADMIN
- SYS_MODULE
environment:
- PUID=1000
- PGID=100
- TZ=Europe/Rome
- SERVERURL=myhiddendomain.duckdns.org
- SERVERPORT=51820
- PEERS=2
- PEERDNS=1.1.1.1
- INTERNAL_SUBNET=10.13.13.0
volumes:
- /srv/dev-disk-by-label-HC2/AppData/Wireguard:/config
- /lib/modules:/lib/modules
ports:
- 51820:51820/udp
sysctls:
- net.ipv4.conf.all.src_valid_mark=1
restart: unless-stopped
Alles anzeigen
As soon as i start the container, the whole network of the containers breaks. If i try to "curl 1.1.1.1" from inside a container, i have no response. Basically all the containers lose their network.
An user from linuxserver community reproduced my same config on OMV in an x86:64 VM and had no issue. All parameters where the same.
Do you have any idea why?