diff options
Diffstat (limited to 'e3372-dataswitch-off.sh')
-rwxr-xr-x | e3372-dataswitch-off.sh | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/e3372-dataswitch-off.sh b/e3372-dataswitch-off.sh index 93bd985..96c0a48 100755 --- a/e3372-dataswitch-off.sh +++ b/e3372-dataswitch-off.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>0</dataswitch></request>" > modem_status.xml + -H "Cookie: $COOKIE" \ + -H "__RequestVerificationToken: $TOKEN" \ + -H "Content-Type: text/xml" \ + -d "<request><dataswitch>0</dataswitch></request>" >modem_status.xml cat modem_status.xml |