19 lines
440 B
Plaintext
19 lines
440 B
Plaintext
# Phase 1 only: copy to /etc/wireguard/wg0.conf after replacing every placeholder.
|
|
# The Server uses Linux Kernel WireGuard and routes Overlay traffic wg0 -> wg0.
|
|
|
|
[Interface]
|
|
Address = 10.88.0.1/16
|
|
ListenPort = 51820
|
|
PrivateKey = <SERVER_PRIVATE_KEY_BASE64>
|
|
|
|
[Peer]
|
|
# Windows Node A
|
|
PublicKey = <NODE_A_PUBLIC_KEY_BASE64>
|
|
AllowedIPs = 10.88.0.2/32
|
|
|
|
[Peer]
|
|
# Windows Node B
|
|
PublicKey = <NODE_B_PUBLIC_KEY_BASE64>
|
|
AllowedIPs = 10.88.0.3/32
|
|
|