diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2021-03-22 23:11:46 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2021-03-22 23:11:46 +0300 |
commit | 56df129e9de9022c2aa01717a784d94e1374115e (patch) | |
tree | a426b8f2ea71ebcf1350ac2e9a271079e9537797 /e3372-dhcp-setting.sh | |
parent | efe41f5ce1c1023af96d06c19f5d4f91957d26b5 (diff) |
code refactoring
Diffstat (limited to 'e3372-dhcp-setting.sh')
-rwxr-xr-x | e3372-dhcp-setting.sh | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/e3372-dhcp-setting.sh b/e3372-dhcp-setting.sh index bc2f237..9bd0fe6 100755 --- a/e3372-dhcp-setting.sh +++ b/e3372-dhcp-setting.sh @@ -1,15 +1,13 @@ #!/bin/bash -DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" +DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd)" . "$DIR/config.sh" -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` +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 + -H "Cookie: $COOKIE" \ + -H "__RequestVerificationToken: $TOKEN" \ + -H "Content-Type: text/xml" >modem_status.xml cat modem_status.xml |