What's new

SSH shortcut to switch LEDs on/off

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

Ro berto

Regular Contributor
Hello,

Is it possible to create a shortcut to turn on/off the router's LEDs?

Something similar to what @thelonelycoder did with Diversion and the iOS shortcut. (iOS Shortcut for Diversion).

On a similar note, is it possible to create another SSH shortcut for @Jack Yaz spdMerlin to enable/disable the automatic speed tests?
 
I found this:

Code:
#leds off
nvram set led_disable=1
service restart_leds

#leds on
nvram set led_disable=0
service restart_leds

the problem is that is two lines, and on the android app there's only space for one line :(

edit: you can run several commands in a single line using the semicolon :cool:
 
Last edited:
problem solved :)

now onto the command for toggle on/off the automatic speed tests
 

Attachments

  • Screenshot_20190926-214403_SSH button.jpg
    Screenshot_20190926-214403_SSH button.jpg
    26.2 KB · Views: 347
anyone has an idea?

having issues with function AutomaticMode()
 
Last edited:
anyone has an idea?

having issues with function AutomaticMode()
Thanks @Jack Yaz again for creating such an awesome script and for helping me by adding this option in spdMerlin.

Here is my list of shortcuts (attached image), with their respective commands lines. I'm using the "SSH Button" app for Android:

LEDs on
Code:
nvram set led_disable=0;service restart_leds
LEDs off
Code:
nvram set led_disable=1;service restart_leds
Diversion on/off
Code:
diversion sh-a
spdMerlin on/off
Code:
spdmerlin automatic
Reboot Printer (sometimes printer is not detected so I reboot the usb2network service)
Code:
service restart_u2ec
Reboot Router
Code:
service reboot

any suggestions are more than welcomed
 

Attachments

  • Screenshot_20190929-223739_SSH button.jpg
    Screenshot_20190929-223739_SSH button.jpg
    29.6 KB · Views: 270
Last edited:

Latest threads

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top