Wireguard

Aus xinux.net
Zur Navigation springen Zur Suche springen

Two Nodes

schnubel
gustavo

Installation

  • sudo add-apt-repository ppa:wireguard/wireguard
  • sudo apt install wireguard

Create Keys

  • cd /etc/wireguard
  • wg genkey > private.key
  • wg pubkey > public.key < private.key
  • wg genpsk > psk.key

Configuration

schnubel
  • cat /etc/wireguard/wg0.conf
[Interface]
Address =  10.84.252.45/32
PrivateKey = mLwHm48y8fRQrez3XrUzL3rSqgy51GwVj+W3/JuVxm4=
ListenPort = 50002

[Peer]
PublicKey = ULq8e5vYRa2s4phsRBkzOvRC8g819xM0/44rII6wqTg=
PresharedKey = 7zyF6E3dQtpiJHBhOix46/MsSkHk2FukYQtZ3rAjJtg=
AllowedIPs = 10.83.33.0/24
Endpoint = 10.84.252.33:50002
gustavo
  • cat /etc/wireguard/wg0.conf
[Interface]
Address =  10.84.252.33/32
PrivateKey = OJYseijxQRCfpFeMe3052mfDV6lhvOxpRLeVm9C520Y= 
ListenPort = 50002

[Peer]
PublicKey = C1YoH/VxFLS5PjkhAxi13lG/Uq6jDwxSB5xMVHzm6ys=
PresharedKey = 7zyF6E3dQtpiJHBhOix46/MsSkHk2FukYQtZ3rAjJtg=
AllowedIPs = 10.83.45.0/24
Endpoint = 10.84.252.45:50002

Links