Hi there,
is there a way to automatically have a checkbox clicked on the router's page and send a "Save Settings" on the mentioned routers?
Basically a shortcut to a repetetive task, in this case turning on (and off) the Gateway to Gateway VPN tunnel.
Here the steps we have to do manually each time.
On the first page of the "Summary" page one has to click on "edit" of the apropriate tunnel (in this case tunnel 1):
<a href="javascript: editLine('1','b')"><font color="#0000FF">Edit</a>
Hovering over that link shows this:
javascript:%20editLine('1','b')
Clicking it brings one to this:
<tr>
<input type="checkbox" name="tunnelStatus" onClick="changeStatus(this.form)" value=1 >
</tr>
Then, when the radio box is checkmarked, it will display all the settings and you have to click this:
<a href="javascript: chSubmit(document.formgtg)"><font color="#FFFFFF" style="font-size: 8pt; font-weight: 700" face="Arial"> Save Settings</font></a>
which will save the enabled tunnel and return you to the "Summary" page.
I only posted the code of sections, as the original pages are huge.
Is it possible to have something like a hyperlink (with the arguments in the URL) to achieve above steps?
Unfortunatley VB or python etc cannot be used, this should be able to be initialized from/on a simple phone with limited web capabilities.
Thanks in advance!!