I am new in scripting and I have a real simple question - I want to reboot my modem to get a new IP.
I have a netgear modem which I can reboot with
Code: Select all
HTTPRequest>http://user:[email protected]/reboot.cgi,,GET,,HtmlText
Code: Select all
HTTPRequest>http://user:[email protected]/reboot.html,,GET,,HtmlText
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="../css/main.css" type="text/css" />
<script type="text/javascript" src="../lib/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="../lib/log4javascript_lite.js"></script>
<script type="text/javascript" src="../lib/jquery.qtip.js"></script>
<script type="text/javascript" src="../js/changelang.js"></script>
<script type="text/javascript" src="../js/refresh.js"></script>
<script type="text/javascript" src="../js/checklogin.js"></script>
<script type="text/javascript" src="../js/ping.js"></script>
<script type="text/javascript" src="../js/redirect.js"></script>
<script type="text/javascript" src="../js/reboot.js"></script>
<title></title>
</head>
<body>
<div id="all_content" class="bodybg">
<div class="maintitle">
<h1 id="title_label_reboot">
<script type="text/javascript">dw(system_label_reboot);</script>
</h1>
</div>
<div class="main_content">
<p>
<script type="text/javascript">dw(system_help_reboot);</script>
</p>
<div class="apply_button">
<script type="text/javascript">create_button(system_label_reboot,"button_reboot");</script>
</div>
</div>
<!--main_content end-->
</div>
</body>
</html>
Any help would be great.Thank you.