Created
March 8, 2022 23:13
-
-
Save tegila/46fb6457e5f6c29d64e25e8a3e5a70c3 to your computer and use it in GitHub Desktop.
wireguard bootstrap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
systemctl disable wg-quick@wg0 | |
systemctl stop wg-quick@wg0 | |
PRIVATEKEY=$(wg genkey) | |
CONFIGFILE="/etc/wireguard/wg0.conf" | |
echo "[Interface]" > $CONFIGFILE | |
echo "PrivateKey = ${PRIVATEKEY}" >> $CONFIGFILE | |
RANGE=${1:-0} | |
echo "Address = 10.8.${RANGE}.1/24" >> $CONFIGFILE | |
echo "ListenPort = 51820" >> $CONFIGFILE | |
systemctl enable wg-quick@wg0 | |
systemctl start wg-quick@wg0 | |
wg show | |
ip r |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
[Peer]
PublicKey =
AllowedIPs =
Endpoint = :51820