aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHari Hendaryanto <hari.hendaryanto@gmail.com>2018-09-19 17:12:53 +0700
committerHari Hendaryanto <hari.hendaryanto@gmail.com>2018-09-19 17:12:53 +0700
commit0111437dfa9d9f48fe2d5eac2e7d7c5468703689 (patch)
treea08ff8ea9f7de938d89152196769f5ce44be6b83
parent10c3d07f94450caca72984b89446b021f7e7f35e (diff)
E3372 dataswitch on
-rw-r--r--e3372-dataswitch-on.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/e3372-dataswitch-on.sh b/e3372-dataswitch-on.sh
new file mode 100644
index 0000000..6b9e699
--- /dev/null
+++ b/e3372-dataswitch-on.sh
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+MODEM_IP="192.168.9.1"
+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`
+
+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
+
+cat modem_status.xml