24 lines
454 B
Markdown
24 lines
454 B
Markdown
|
# Install clean Wireguard
|
||
|
|
||
|
Basierend auf dem Betriebssystem muss man verschiedene Kommandos verwenden.
|
||
|
```shell
|
||
|
apt-get update
|
||
|
apt install wireguard
|
||
|
apt update
|
||
|
apt install iproute2
|
||
|
```
|
||
|
siehe: [https://www.wireguard.com/install/](https://www.wireguard.com/install/)
|
||
|
|
||
|
|
||
|
# Wireguard - Server
|
||
|
|
||
|
Ordner: ```/etc/wireguard```
|
||
|
<br>
|
||
|
<br>
|
||
|
Die Konfiguration ist in: ```wg0.conf```
|
||
|
<br>
|
||
|
<br>
|
||
|
Um die Konfiguration neu zu starten: ```systemctl reload wg-quick@wg0```
|
||
|
|
||
|
|