Page 1 of 1

Reboot URL?

Posted: Wed May 24, 2017 12:06 am
by jzholzer
There is a reboot button available on the administration web page, but it's in the form of a form submission button. That's not very convenient to allow me to throw a reboot link on our supervisory scada system. I'd rather not present all the admin stuff to the great unwashed by displaying the whole web page. Is there a hidden URL that can trigger a reboot? I can't work out how to drive a form submit from a URL

Re: Reboot URL?

Posted: Wed May 24, 2017 11:30 am
by J1mbo
eg from a Linux box, wget http://[ip-address]/reboot

In my opinion it is a DoS security risk though, it should be authenticated.

Re: Reboot URL?

Posted: Thu May 25, 2017 11:55 am
by akatik
In last version, if Setup/HTTPS password is specified, It's already authenticated and works only over https, i.e.:

Code: Select all

wget --user=wtware --password=123 --no-check-certificate https://[ip-address]/reboot
Where 123 is a Setup/HTTPS password.

Re: Reboot URL?

Posted: Mon May 29, 2017 12:04 pm
by J1mbo
Excellent, thanks for posting this.