Create change-vpn.sh
If you have a few VPNs and you need change VPN connection
This commit is contained in:
parent
e61efe242e
commit
41c606fc68
1 changed files with 22 additions and 0 deletions
22
change-vpn.sh
Normal file
22
change-vpn.sh
Normal 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
|
Loading…
Add table
Reference in a new issue