-
-
Save jesbrd/f281083865feb9f93912bc9debfd83cc to your computer and use it in GitHub Desktop.
Script to connect and disconnect to/from openconnect without pain
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script connects the computer to a vpn server using openconnect without pain | |
prog_name=$(basename $0) | |
# CHANGE YOUR_VPN_SERVER_DOMAIN to the VPN server you know like example.com | |
domain=YOUR_VPN_SERVER_DOMAIN | |
function help { | |
echo "Usage: $prog_name [-c server] [-d]" | |
echo | |
echo "Options" | |
echo " -c, --connect <subdomain> Connect to the specified VPN server (subdomain.domain)" | |
echo " -d, --disconnect Disconnect the running VPN" | |
echo | |
} | |
function connect { | |
server=$1.$domain | |
echo "Connecting to $server..." | |
sudo openconnect -b $server < ~/Documents/vpnmakers.txt | |
} | |
function disconnect { | |
echo "Disconnecting..." | |
sudo pkill -SIGINT openconnect | |
# Remove default gateway route rule when there is already a PPTP connection | |
# Uncomment line below if your computer is connected to internet through a PPTP connection | |
ip r | grep ppp0 && ip r | grep default | head -n1 | xargs sudo ip r del | |
} | |
subcommand=$1 | |
case $subcommand in | |
"" | "-h" | "--help") | |
help | |
;; | |
"-c" | "--connect") | |
shift | |
connect $@ | |
;; | |
"-d" | "--disconnect") | |
disconnect | |
;; | |
*) | |
echo "Error: '$subcommand' is not a known command." >&2 | |
echo " Run '$prog_name --help' for a list of known commands." >&2 | |
exit 1 | |
;; | |
esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment