WireGuard 피어 간 연결

WireGuard 피어 간 연결

Wireguard IP 10.10.0.1을 사용하는 우분투 서버가 있습니다.

Wireguard 10.10.0.2 및 10.10.0.3 IP를 사용하는 두 개의 win11 클라이언트

현재 구성 서버에서는 클라이언트를 핑할 수 있고 클라이언트는 서버를 핑할 수 있지만 클라이언트는 서로 핑할 수 없습니다.

여기 그들의 구성이 있습니다

우부투

[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할 수 있도록 변경해야 할 사항

감사합니다

관련 정보