Conexión entre pares WireGuard

Conexión entre pares WireGuard

Tengo un servidor Ubuntu con Wireguard IP 10.10.0.1

y dos clientes win11 con IP Wireguard 10.10.0.2 y 10.10.0.3

con el servidor de configuración actual puede hacer ping a los clientes y los clientes pueden hacer ping al servidor, pero los clientes no pueden hacer ping entre sí

aquí están sus configuraciones

ububtu

[Interface]
Address = 10.10.0.1/24
ListenPort = 51820
PrivateKey = <ubuntuprivatekey>

[Peer]
PublicKey = <client1pubkey>
AllowedIPs = 10.10.0.2/32

[Peer]
PublicKey = <client2pubkey>
AllowedIPs = 10.10.0.3/32

cliente1

[Interface]
PrivateKey = <client1privatekey>
Address = 10.10.0.2/32

[Peer]
PublicKey = <ubuntupubkey>
AllowedIPs = 10.10.0.1/24
Endpoint = myubuntuserver.com:51820
PersistentKeepalive = 60

cliente2

[Interface]
PrivateKey = <client2privatekey>
Address = 10.10.0.3/32

[Peer]
PublicKey = <ubuntupubkey>
AllowedIPs = 10.10.0.1/24
Endpoint = myubuntuserver.com:51820
PersistentKeepalive = 60

qué cambiar para permitir que los clientes de win11 hagan ping entre sí

gracias

información relacionada