diff options
Diffstat (limited to 'scripts/reboot.php')
| -rw-r--r-- | scripts/reboot.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/scripts/reboot.php b/scripts/reboot.php new file mode 100644 index 0000000..a7be1be --- /dev/null +++ b/scripts/reboot.php @@ -0,0 +1,23 @@ +<?php +/** +* Reboots the router +* +* PHP version 5 +* +* @category Tools +* @package linksys-wrt3g-tools +* @author Christian Weiske <cweiske@cweiske.de> +* @license AGPL v3 +* @link http://cweiske.de/linksys-wrt3g-tools.htm +*/ +require_once dirname(__FILE__) . '/config.php'; +require_once 'Wrt3g.php'; + +try { + $w = new Wrt3g(); + $resp = $w->reboot(); + echo $resp->getStatus() . ' ' . $resp->getReasonPhrase() . "\n"; +} catch (Exception $e) { + echo 'Error: ' . $e->getMessage() . "\n"; +} +?>
\ No newline at end of file |
