2019-10-14 10:27:28 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
cd /etc/wireguard/configs
|
|
|
|
if [ ! -s clients.txt ]; then
|
|
|
|
echo "::: There are no clients to list"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2019-12-27 14:48:42 +00:00
|
|
|
printf "\e[1m::: Clients Summary :::\e[0m\n"
|
|
|
|
|
2019-10-14 10:27:28 +00:00
|
|
|
# Present the user with a summary of the clients, fetching info from dates.
|
2019-12-27 14:48:42 +00:00
|
|
|
{
|
|
|
|
echo -e "\e[4mClient\e[0m \t \e[4mPublic key\e[0m \t \e[4mCreation date\e[0m"
|
2019-10-14 10:27:28 +00:00
|
|
|
|
|
|
|
while read -r LINE; do
|
|
|
|
CLIENT_NAME="$(awk '{print $1}' <<< "$LINE")"
|
|
|
|
|
2019-12-27 14:48:42 +00:00
|
|
|
PUBLIC_KEY="$(awk '{print $2}' <<< "$LINE")"
|
|
|
|
|
|
|
|
CREATION_DATE="$(awk '{print $3}' <<< "$LINE")"
|
2019-10-14 10:27:28 +00:00
|
|
|
|
|
|
|
# Dates are converted from UNIX time to human readable.
|
|
|
|
CD_FORMAT="$(date -d @"$CREATION_DATE" +'%d %b %Y, %H:%M, %Z')"
|
|
|
|
|
2019-12-27 14:48:42 +00:00
|
|
|
echo -e "$CLIENT_NAME \t $PUBLIC_KEY \t $CD_FORMAT"
|
2019-10-14 10:27:28 +00:00
|
|
|
done < clients.txt
|
|
|
|
|
2020-10-21 21:35:29 +00:00
|
|
|
} | column -t -s $'\t'
|
|
|
|
|
|
|
|
|
|
|
|
cd /etc/wireguard || return
|
|
|
|
echo "::: Disabled clients :::"
|
2020-12-09 23:07:28 +00:00
|
|
|
grep '\[disabled\] ### begin' wg0.conf | sed 's/#//g; s/begin//'
|