1
0
Fork 0
mirror of synced 2025-04-05 14:13:37 +03:00

Create change-vpn.sh

If you have a few VPNs and you need change VPN connection
This commit is contained in:
Ivan Dublianski 2019-03-26 15:43:32 +01:00 committed by GitHub
parent e61efe242e
commit 41c606fc68
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

22
change-vpn.sh Normal file
View file

@ -0,0 +1,22 @@
#!/bin/bash
ACTIVE_VPN=`nmcli con show -a | grep 'vpn'`
INACTIVE_VPNS=( $(nmcli con show | grep 'vpn.*-') )
VPNS=()
for index in ${!INACTIVE_VPNS[@]}
do
if [[ ${INACTIVE_VPNS[$index]} == *"VPN-"* ]]; then
VPNS+=(${INACTIVE_VPNS[$index]})
fi
done
rand=$[$RANDOM % ${#VPNS[@]}]
NEW_CONNECTION=${VPNS[$rand]}
nmcli con down $ACTIVE_VPN
sleep 15
nmcli con up $NEW_CONNECTION