15 lines
380 B
Bash
Executable File
15 lines
380 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/monitoring/clear-traffic" \
|
|
-H "Cookie: $COOKIE" \
|
|
-H "__RequestVerificationToken: $TOKEN" \
|
|
-H "Content-Type: text/xml" \
|
|
-d "<request><ClearTraffic>1</ClearTraffic></request>" >modem_status.xml
|
|
|
|
cat modem_status.xml
|