Wireguard LAN to LAN Tunnel - Routing Issue?

Would love to tap a more experienced networking mind, if anyone has a moment. I am trying to create a wireguard tunnel between 2 LANs.

Basic wireguard functionality is fine on both sides. I usually use my wireguard for "road warrior setups" when I am away from home. This is the first time I am trying to create a tunnel between lans, however...

Site A has a LAN 192.168.131.0/24, and usually uses 192.168.132.0/24 for wireguard connected hosts
Site B has a LAN 192.168.111.0/24, and usually uses 192.168.112.0/24 for wireguard connected hosts
On both sides the wireguard interface is in the lan firewall zone.

So the tunnel seems to connect, and I can see under status that data is being transmitted. I seem to be connecting successfully from a host on 192.168.111.0 to a the router on the opposite site at 192.168.131.1. However, I can't connect to anything else on 192.168.131.0/24.

Am I on the right track here? Thanks for any input

Site A config

config interface 'wireguardserver'
        option proto 'wireguard'
        option private_key 'REDACTED'
        list addresses '192.168.132.1/24'
        option listen_port '51418'

    config wireguard_wireguardserver
        option public_key 'REDACTED'
        list allowed_ips '192.168.111.0/24'
        option route_allowed_ips '1'
        option endpoint_host 'REDACTED'
        option endpoint_port '51420'
        option persistent_keepalive '25'
        option description 'KezarTunnel'

Site B config

config interface 'wireguardserver'
        option proto 'wireguard'
        option private_key 'REDACTED'
        list addresses '192.168.112.1/24'
        option listen_port '51420'

config wireguard_wireguardserver
        option description 'DeerfieldTunnel'
        option public_key 'REDACTED'
        list allowed_ips '192.168.131.0/24'
        option route_allowed_ips '1'
        option endpoint_host 'REDACTED'
        option endpoint_port '51418'
        option persistent_keepalive '25'

Well, I figured it out. The wireguard tunnel was working fine. The hosts on the other side needed some static routes added. The tunnel really was just this simple...

Sorry to clutter up the forum....

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.