Wireguard: Unterschied zwischen den Versionen

Aus xinux.net
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „=Zwei Rechner= ;schnubel ;gustavo“)
 
Zeile 1: Zeile 1:
=Zwei Rechner=
+
=Two Nodes=
 
;schnubel
 
;schnubel
 
;gustavo
 
;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
 +
<pre>
 +
[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
 +
</pre>
 +
;gustavo
 +
*cat /etc/wireguard/wg0.conf
 +
<pre>
 +
[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
 +
</pre>
 +
=Links=
 +
*https://www.thomas-krenn.com/de/wiki/Ubuntu_18.04_als_WireGuard_VPN_Client_konfigurieren
 +
*https://wiki.ubuntuusers.de/WireGuard/

Version vom 17. Dezember 2019, 15:28 Uhr

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