FOR TIPS, gUIDES & TUTORIALS

subscribe to our Youtube

GO TO YOUTUBE

14455 questions

17168 answers

28195 comments

0 members

We are migrating to our new platform at https://community.teltonika.lt. Moving forward, you can continue discussions on this new platform. This current platform will be temporarily maintained for reference purposes.
0 votes
266 views 0 comments
by anonymous
I've upgraded my trusty old RUT950 (with an RUTX50) so the 950 is now currently deployed as an access point.

There are no SIM cards in the 950 therefore the Connection Status LED blinks red/green every 500ms. Kind of annoying when I know there is no SIM card installed. Is there any way to disable the LEDs in RutOS? Thanks!

1 Answer

+1 vote
by anonymous

So! I found an ugly way of disabling the constantly blinking Connection Status LEDs...

ssh root@192.168.1.1
*routerPassword*

cd /sys/class/leds/mob_gen_2_3 (the red LED) 
cd /sys/class/leds/mob_gen_4_3 (the green LED)

echo none > trigger
echo 0 > brightness

To revert back to the router's default, type echo timer > trigger and echo 255 > brightness or repurpose the LED as a wifi activity indicator with echo phy0rx > trigger or echo phy0tx > trigger ... phy0 is the 2.GHz wifi, and phy1 is 5GHz wifi if available.

No need to reboot. The constantly blinking green/red Connection Status LED is now off and I'm happy. Changes made here are persistent during reboot, bear that in mind if you rely on the LEDs for diagnostics. Inspired by this page of the OpenWRT documentation:

https://openwrt.org/docs/guide-user/base-system/led_configuration

Best answer