Tech/HuaweiE3372.md
... ...
@@ -48,6 +48,16 @@ Purchased
48 48
Activated
49 49
: 2017-08-07
50 50
51
+# API Signal Stats
52
+
53
+```sh
54
+HUAWEIROUTERIP="192.168.1.1" # change this
55
+RESPONSE=`curl -s -X GET http://$HUAWEIROUTERIP/api/webserver/SesTokInfo`
56
+COOKIE=`echo "$RESPONSE" | grep SessionID= | cut -b 10-147`
57
+TOKEN=`echo "$RESPONSE" | grep TokInfo | cut -b 10-41`
58
+curl --silent -b $COOKIE -c $COOKIE -H "X-Requested-With: XMLHttpRequest" http://$HUAWEIROUTERIP/api/monitoring/status --header "__RequestVerificationToken: $TOKEN" --header "Content-Type:text/xml"
59
+```
60
+
51 61
# Configurations
52 62
See https://www.kernel.org/doc/Documentation/usb/proc_usb_info.txt
53 63