Skip to content

Instantly share code, notes, and snippets.

@tegila
Created March 8, 2022 23:13
Show Gist options
  • Save tegila/46fb6457e5f6c29d64e25e8a3e5a70c3 to your computer and use it in GitHub Desktop.
Save tegila/46fb6457e5f6c29d64e25e8a3e5a70c3 to your computer and use it in GitHub Desktop.
wireguard bootstrap
#!/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
@tegila
Copy link
Author

tegila commented Mar 8, 2022

[Peer]
PublicKey =
AllowedIPs =
Endpoint = :51820

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment