diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2021-03-22 23:11:46 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2021-03-22 23:11:46 +0300 |
commit | 56df129e9de9022c2aa01717a784d94e1374115e (patch) | |
tree | a426b8f2ea71ebcf1350ac2e9a271079e9537797 /e3372-dataswitch-on.sh | |
parent | efe41f5ce1c1023af96d06c19f5d4f91957d26b5 (diff) |
code refactoring
Diffstat (limited to 'e3372-dataswitch-on.sh')
-rwxr-xr-x | e3372-dataswitch-on.sh | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/e3372-dataswitch-on.sh b/e3372-dataswitch-on.sh index 93ac50b..ce64652 100755 --- a/e3372-dataswitch-on.sh +++ b/e3372-dataswitch-on.sh @@ -1,16 +1,14 @@ #!/bin/bash -DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" +DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd)" . "$DIR/config.sh" -curl -s -X GET "http://$MODEM_IP/api/webserver/SesTokInfo" > ses_tok.xml -COOKIE=`grep "SessionID=" ses_tok.xml | cut -b 10-147` -TOKEN=`grep "TokInfo" ses_tok.xml | cut -b 10-41` +get_token curl -s -X POST "http://$MODEM_IP/api/dialup/mobile-dataswitch" \ - -H "Cookie: $COOKIE" \ - -H "__RequestVerificationToken: $TOKEN" \ - -H "Content-Type: text/xml" \ - -d "<request><dataswitch>1</dataswitch></request>" > modem_status.xml + -H "Cookie: $COOKIE" \ + -H "__RequestVerificationToken: $TOKEN" \ + -H "Content-Type: text/xml" \ + -d "<request><dataswitch>1</dataswitch></request>" >modem_status.xml cat modem_status.xml |