Hi,
I’ve set up a WireGuard VPN to connect two locations with each other, in order to access some network resources from a remote site.
This is, how my setup looks like.
The left side (remote) wants to access resources from the right side (local).

Now the problem is, that from the Mikrotik Router, where the WireGuard remote instance is running, I cannot ping any of the 192.168.2.x addresses of the local site (right side).
However, if I connect my Android phone with the same Wireguard config of the remote, I can easily access and ping 192.168.2.x resources of the local site.
I hope, someone can point me to what I did wrong on the Mikrotik router (left side).
This is the WireGuard config from the OpenWRT router of the local site (right side):
admin@verteiler:~# wg showconf wg_vpn_guest
[Interface]
ListenPort = 51908
PrivateKey = xxx
[Peer]
PublicKey = Pv14QyXfjgC7kRsnEmYr0PjbAI6rrYXt6HU4TjBN5Ts=
AllowedIPs = 192.168.15.2/32
[Peer]
PublicKey = LsS8UVYHN6vaVFM+z72RxC9QP4hlhAPOCMhHD2OiAyc=
AllowedIPs = 192.168.15.3/32
[Peer]
PublicKey = Wm2xuNzECP98a38gNHQDLuKi0euIehF3ocqBgC4WLz4=
AllowedIPs = 192.168.15.4/32
[Peer]
PublicKey = hjUGQJ8/hoR0A2lHsvo7ue2WxlQ7PEAeDd8Kyom8GSQ=
AllowedIPs = 192.168.15.5/32
[Peer]
PublicKey = tHqcViAZC0/xFWCaLd66Of2dWFGA2P7fzZnPJ78F91I=
AllowedIPs = 192.168.15.6/32
This is the config from the Mikrotik router of the remote site:
\[user2@RB3011\] /interface/wireguard> export
# feb/02/2022 19:10:32 by RouterOS 7.1.1
#
# model = RB3011UiAS
/interface wireguard
add listen-port=13231 mtu=1420 name=wg0
/interface wireguard peers
add allowed-address=192.168.15.0/24,192.168.2.0/24 comment="VPN zu local" endpoint-address=185.68.227.63 endpoint-port=51908 interface=wg0 public-key=\
"HycNIQFZSzR066fpsFNxJR0R59zhGVjPbnQXurCg0Rc="
This is the route that I added on the Mikrotik device of the remote site to route traffic for 192.168.2.x:
/ip route
add comment="Standard Gateway" disabled=no dst-address=0.0.0.0/0 gateway=192.168.5.1
add dst-address=192.168.2.0/24 gateway=wg0
This is the ip/address config of the remote Mikrotik:
/ip address
add address=192.168.88.1/24 comment=defconf interface=bridge network=192.168.88.0
add address=192.168.5.250/24 interface=bridge network=192.168.5.0
add address=192.168.15.6/24 comment="VPN zu local" interface=wg0 network=192.168.15.0
I’m really curious, if someone can see the problem in my config.
Thanks
