WireGuard 对等体之间的连接

WireGuard 对等体之间的连接

我有一台 ubuntu 服务器,其 wireguard IP 为 10.10.0.1

以及两个带有 wireguard 10.10.0.2 和 10.10.0.3 IP 的 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

谢谢

相关内容