From 528d864c0a8eb7eaa0028ae3250b3a6cc6cf1f15 Mon Sep 17 00:00:00 2001 From: WangDaoO <18734203032@139.com> Date: Thu, 1 Mar 2018 21:17:31 +0800 Subject: [PATCH] Create linux-client.sh --- extras/linux-client.sh | 62 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 extras/linux-client.sh diff --git a/extras/linux-client.sh b/extras/linux-client.sh new file mode 100644 index 0000000..416fa7f --- /dev/null +++ b/extras/linux-client.sh @@ -0,0 +1,62 @@ +#!/bin/bash + +#your vpn server public ip +SERVER_IP='' + +#Verify that a string contains another string +Include(){ + bigStr=$1; + smallStr=$2; + result=$(echo $bigStr | grep $smallStr) + + if [ -z "$result" ] + then + echo 0 + else + echo 1 + fi +} + +mkdir -p /var/run/xl2tpd +touch /var/run/xl2tpd/l2tp-control + +service strongswan restart +service xl2tpd restart + +ipsec up myvpn + +echo "c myvpn" > /var/run/xl2tpd/l2tp-control + +route=`ip route` +echo ${route} + + +gw=${route#*default\ via\ } +gw=${gw%%\ *} +echo "your gateway is:${gw}" + +while : +do + cfg=`ifconfig` + res=`Include "$cfg" "ppp0"` + + if [ $res -eq 1 ] + then + echo "ppp0 already activated" + break + else + echo "waitting 1s" + sleep 1s + fi + +done + +route add ${SERVER_IP} gw $gw +route add default dev ppp0 +echo "done" +ifconfig + + + + +