14 lines
307 B
Bash
Executable File
14 lines
307 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd)"
|
|
. "$DIR/config.sh"
|
|
|
|
get_token
|
|
|
|
curl -s -X GET "http://$MODEM_IP/api/dhcp/settings" \
|
|
-H "Cookie: $COOKIE" \
|
|
-H "__RequestVerificationToken: $TOKEN" \
|
|
-H "Content-Type: text/xml" >modem_status.xml
|
|
|
|
cat modem_status.xml
|