15 lines
376 B
Bash
Executable File
15 lines
376 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd)"
|
|
. "$DIR/config.sh"
|
|
|
|
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
|
|
|
|
cat modem_status.xml
|