WireGuard Allow routing between clients (How?)

This is an implementation of a star network topology using WireGuard:

# server
192.168.9.1/24 - VPN
192.168.22.1/24 - LAN
# server_peers > client1 > allowed_ips
192.168.9.2/32
192.168.33.0/24
# server_peers > client2 > allowed_ips
192.168.9.3/32
192.168.44.0/24

# client1
192.168.9.2/24 - VPN
192.168.33.1/24 - LAN
# client1_peers > server > allowed_ips
192.168.9.0/24
192.168.22.0/24
192.168.44.0/24

# client2
192.168.9.3/24 - VPN
192.168.44.1/24 - LAN
# client2_peers > server > allowed_ips
192.168.9.0/24
192.168.22.0/24
192.168.33.0/24
2 Likes