Last active
August 29, 2015 14:14
-
-
Save jmark/0575a9b94b119500ace5 to your computer and use it in GitHub Desktop.
Bash script: Force reconnect router Speedport W700V
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# date: 2015-01-24 | |
wget 'http://192.168.2.1/cgi-bin/disconnect.exe' -O /dev/null > /dev/null 2>&1 | |
sleep 3 | |
wget 'http://192.168.2.1/cgi-bin/connect.exe' -O /dev/null > /dev/null 2>&1 | |
sleep 30 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment