Feature #12832
open
6100 configurable Blinking Blue LED
Added by shawn butts almost 3 years ago.
Updated 4 months ago.
Category:
Hardware / Drivers
Description
The blinking blue like for "normal operation status" feels like an "everything is ok ALARM!!!!"
I'd like to see an option to either make it solid blue for "normal" or disable the LED altogether.
Files
- Project changed from pfSense to pfSense Plus
- Category changed from Hardware / Drivers to Hardware / Drivers
shawn butts wrote:
The blinking blue like for "normal operation status" feels like an "everything is ok ALARM!!!!"
I'd like to see an option to either make it solid blue for "normal" or disable the LED altogether.
+1
Blinking shouldn't be the default. But I'll settle for being able to change it manually from GUI.
shawn butts wrote:
The blinking blue like for "normal operation status" feels like an "everything is ok ALARM!!!!"
I'd like to see an option to either make it solid blue for "normal" or disable the LED altogether.
+1 by me as well.
Each time I see the blinking I think there must be some notification I need to go read on the console.
you can use the following to disable the blue blinking indicator on 4100/6100/8200 systems
echo 0 > /dev/led/blue1
Or this?? checks gateway..
#!/bin/sh
echo 0 > /dev/led/blue_0
echo 0 > /dev/led/blue_1
echo 0 > /dev/led/blue_2
echo 0 > /dev/led/red_0
echo 0 > /dev/led/red_1
echo 0 > /dev/led/red_2
echo 0 > /dev/led/green_0
echo 0 > /dev/led/green_1
echo 0 > /dev/led/green_2
check_current_states=$( pfctl -vvss | grep -e "igc3 icmp" )
WAN=0
case "$check_current_states" in
*icmp* ) WAN=1 ;;
esac
if [ $WAN = 0 ];
then
echo f2 > /dev/led/red_0
echo f2 > /dev/led/red_1
echo f2 > /dev/led/red_2
else
/usr/local/sbin/pfSense-led.sh ready
fi
Also available in: Atom
PDF