Hi all,
once I've changed my laptop I'm not able to access OMV via wireguard (installed with docker). Nothing is changed in my configuration, and even with other PCs, from different network, I can't reach out the server. Below my actual configuration for peer1:
Code
[Interface]
PrivateKey = [...]
ListenPort = 51820
Address = 10.13.13.2/32
DNS = 10.13.13.1
[Peer]
PublicKey = [...]
PresharedKey = [...]
AllowedIPs = 192.168.178.0/24
Endpoint = myomvhost.duckdns.org:51820
Display More
and here my docker .yml:
Code
version: "2.1"
services:
wireguard:
image: lscr.io/linuxserver/wireguard:latest
container_name: wireguard
cap_add:
- NET_ADMIN
environment:
- PUID=1001
- PGID=100
- TZ=Europe/Rome
- SERVERURL=myomvhost.duckdns.org
- SERVERPORT=51820 #optional
- PEERS=4 #optional
- PEERDNS=auto #optional
- INTERNAL_SUBNET=10.13.13.0 #optional
- ALLOWEDIPS=192.168.178.101/24 #optional
- PERSISTENTKEEPALIVE_PEERS= #optional
- LOG_CONFS=true #optional
volumes:
- /Config/wireguard:/config
ports:
- 51820:51820/udp
sysctls:
- net.ipv4.conf.all.src_valid_mark=1
restart: unless-stopped
Display More
Does anyone could help please?
Thanks!
Mime