vpn-stack/sbin/wg-client-disable.sh

41 lines
1013 B
Bash
Raw Normal View History

2021-01-25 15:37:53 -08:00
#!/bin/bash
#
# vpn-stack
2021-01-25 15:37:53 -08:00
# A set of bash scripts for installing and managing a WireGuard VPN server.
# https://git.stack-source.com/msb/vpn-stack
2022-07-14 12:32:41 -07:00
# Copyright (c) 2022 Matthew Saunders Brown <matthewsaundersbrown@gmail.com>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
2021-01-25 15:37:53 -08:00
# load include file
source $(dirname $0)/wg.sh
2021-01-25 15:37:53 -08:00
help()
{
thisfilename=$(basename -- "$0")
echo "Disable VPN client config."
echo ""
echo "usage: $thisfilename -c <client> [-h]"
echo ""
echo " -h Print this help."
echo " -c <client> Name of the client configuration."
}
wg::getoptions "$@"
2021-01-25 15:37:53 -08:00
# check for client config name
if [[ -z $client ]]; then
echo "client name is required"
exit
2021-01-25 15:37:53 -08:00
fi
# set config file name
config=$client.conf
2021-01-25 15:37:53 -08:00
# check for server config
if [ -f /etc/wireguard/peers/$config ]; then
peer=$(grep PublicKey /etc/wireguard/peers/$config|cut -d ' ' -f 3)
wg set wg0 peer $peer remove
wg-quick save wg0
echo "peer for $client disabled"
2021-01-25 15:37:53 -08:00
fi