Skip to content

Instantly share code, notes, and snippets.

@nutzhub
Forked from winhamwr/ipsec-monitor.sh
Created December 22, 2016 04:04
Show Gist options
  • Save nutzhub/2eb0caa4132b361ef41a06a10c57c241 to your computer and use it in GitHub Desktop.
Save nutzhub/2eb0caa4132b361ef41a06a10c57c241 to your computer and use it in GitHub Desktop.
Script to check the status of ipsec tunnels and refresh them if they're down. This should be run from cron every minute. To add monitoring on a tunnel, add a commented-out `monitor` line with the IP and port to use for establishing connection status. eg. `#monitor 172.17.105.80 9898` Adapted from a script posted by user "c b" on Strongswan [issu…
#!/bin/bash
function main()
{
monitor_from_file $*
}
function monitor_vpn_ip_port()
{
local CONN_NAME=$1
local IP=$2
local PORT=$3
nc -w 10 -z $IP $PORT || ( \
echo "$IP $PORT did not respond, resetting connection $CONN_NAME"; \
ipsec auto --refresh $CONN_NAME;)
}
function monitor_from_file()
{
local FILE=$1
if [[ ! -e $FILE ]]; then
echo "Can not find file $FILE."
return 1
fi
# load the file into memory. Hope it's not too big. :)
# -t strips out the newlines on each line.
mapfile -t MYARRAY < $FILE
# init local variable to contain the current connection name.
local CONN=
for LINE in "${MYARRAY[@]}"; do
# Skip over any lines that have the comment at the very beginning.
if [[ $LINE =~ ^\# ]]; then continue
# Look for a line that looks like this which defines a VPN connection:
# conn CONNECTION-NAME
elif [[ $LINE =~ ^conn[\ ] ]]; then
# extract the part after the "conn " to get the name.
CONN=`echo $LINE | sed 's/^conn //'`
# Look for a line where we have the commented 'monitor' keyword.
# Example: #monitor 172.17.105.80 9898
elif [[ $LINE =~ \#monitor ]]; then
# Remove everything from the beginning up to and including the "#monitor "
IP_PORT=`echo $LINE | sed 's/^.*#monitor //'`
printf "`date` monitoring $CONN \t $IP_PORT\n"
# IP_PORT should be space delimited and hence should work as separate parameters.
monitor_vpn_ip_port $CONN $IP_PORT
# if we have a blank line, that ends any connection configuration.
elif [[ $LINE =~ ^$ ]]; then
CONN=
fi
done
}
# now start running the script by calling main() with all parameters.
main $*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment