Main Router LED can be changed on/off in the iOS app, but doesn’t show up in web interface like nodes
I deactivated the LED's using my way. The /jffs folder is nonvolatile and the data within /jffs survives are reboot or a power cylce. The steps below have only to be repeated after a factory reset.
telnet router.asus.com or ssh router.asus.com using putty (telnet works as well from a command prompt window)
enter the login credentials as used for the web GUI
nvram set script_usbmount="/jffs/LED-off.sh"
nvram commit
cd /jffs
Script LED-off.sh within /jffs
touch LED-off.sh
chmod 755 LED-off.sh
vi LED-off.sh
( push <esc> i
insert the lines below using the right mouse button
#!/bin/sh
# Deactivate LED's after 5 Minutes so I can see what happening after boot
sleep 300
nvram set AllLED=0
# I don't commit the nvram so the LED's are activated after a restart for 5 minutes
service restart_leds
push <esc> wq sto save and leave vi
After the next restart of the node or router the LED's are deactivated after 5 minutes