WireGuardピア間の接続

WireGuardピア間の接続

Wireguard IP 10.10.0.1 の Ubuntu サーバーがあります

Wireguard 10.10.0.2 および 10.10.0.3 IP を持つ 2 つの Win11 クライアント

現在の構成では、サーバーはクライアントにpingでき、クライアントはサーバーにpingできますが、クライアントは互いにpingできません。

彼らの設定はこうだ

ウブブトゥ

[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

クライアント1

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

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

クライアント2

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

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

Win11クライアントが互いにpingできるようにするには何を変更すればよいですか

ありがとう

関連情報