1

Add macros for handling wg links

This commit is contained in:
Evan Pratten 2023-07-27 12:00:48 -04:00
parent 15a65f4fdb
commit 613d811975

View File

@ -117,3 +117,21 @@ ssh-verify(){
ssh-keygen -Y verify -f ~/.ssh/allowed_signers -n file -I $1 -s $2 < $3
fi
}
# Fully restart a wireguard link
wg-restart() {
if [ $# != 1 ]; then
echo "Usage: wg-restart <interface>"
else
wg-quick down $1 && wg-quick up $1
fi
}
# Reload a wireguard link without stopping it
wg-reload() {
if [ $# != 1 ]; then
echo "Usage: wg-reload <interface>"
else
wg syncconf $1 <(wg-quick strip $1)
fi
}