computer-playbook/roles/native-wireguard/README.md

24 lines
579 B
Markdown
Raw Normal View History

2020-12-24 14:27:31 +01:00
# Role Native Wireguard
2021-01-12 09:44:14 +01:00
Manages wireguard on host.
2020-12-24 14:27:31 +01:00
2021-01-12 09:44:14 +01:00
## Client
### Create Client Keys
```bash
wg_private_key="$(wg genkey)"
wg_public_key="$(echo "$wg_private_key" | wg pubkey)"
echo "PrivateKey: $wg_private_key"
echo "PublicKey: $wg_public_key"
echo "PresharedKey: $(wg genpsk)"
```
2020-12-24 14:27:31 +01:00
2021-01-12 09:44:14 +01:00
### Activate Configuration
```bash
cp /path/to/wg0.conf /etc/wireguard/wg0.conf
systemctl enable wg-quick@wg0.service --now
```
## See
- https://golb.hplar.ch/2019/01/expose-server-vpn.html
- https://wiki.archlinux.org/index.php/WireGuard
- https://wireguard.how/server/raspbian/