Hi everyone. I’ve got the following problem with my wireguard setup. I have a GL-SF1200 connect to my modem using PPPoE with a public address. The wireguard ip is 10.0.0.1 and internal ip is 192.168.8.1.
The client pc is a win-11 desktop computer behind a nat router with the wg port forwarded, wg ip is 10.0.0.2 and network ip 192.168.1.10.
I’ve tried different setting based on the forum posts but the best I have achieved is with my current connection; The server and client seem to be connected, I can ping 10.0.0.1 and 192.168.8.1 (both the server) from the client but I can’t ping the computers connected to the router for example 192.168.8.100 from the client or the client (10.0.0.2, 192.168.1.10) from the computers connected to the router. I also can’t connect to any of the shares in either network.
My server settings are:
config servers
option local_ip ‘10.0.0.1’
option local_port ‘51820’
option local_ipv6 ‘fd00:db8:0:abc::1’
option private_key ‘’
option public_key '’
option access ‘ACCEPT’
option enable ‘1’
config peers ‘wg_peer_8174’
option name ‘’
option client_key '’
option private_key '**’
option client_ip ‘10.0.0.2’
My client setting are:
[Interface]
PrivateKey = 2IB***=
ListenPort = 55916
Address = 10.0.0.2/24
[Peer]
PublicKey = ***
AllowedIPs = 10.0.0.0/24, 192.168.8.0/24
Endpoint = ***.glddns.com:51820
PersistentKeepalive = 25
I appreciate your help.