root@WSM20-S1:~# ubus call system board
{
"kernel": "5.15.137",
"hostname": "WSM20-S1",
"system": "MediaTek MT7621 ver:1 eco:3",
"model": "ZyXEL WSM20",
"board_name": "zyxel,wsm20",
"rootfs_type": "squashfs",
"release": {
"distribution": "OpenWrt",
"version": "23.05.2",
"revision": "r23630-842932a63d",
"target": "ramips/mt7621",
"description": "OpenWrt 23.05.2 r23630-842932a63d"
}
}
The ZyXEL WSM20 (“Multy M1”) has a switch on the backside to put LED on or off. Can I use this switch with openwrt to disable the light, especially during night?
Best would be, if the front-LED blink when starting, but then are off.
root@WSM20-S1:~# uci show system
system.@system[0]=system
system.@system[0].hostname='WSM20-S1'
system.@system[0].ttylogin='0'
system.@system[0].log_size='64'
system.@system[0].urandom_seed='0'
system.@system[0].compat_version='1.1'
system.@system[0].zonename='UTC'
system.@system[0].log_proto='udp'
system.@system[0].conloglevel='8'
system.@system[0].cronloglevel='5'
system.ntp=timeserver
system.ntp.server='0.openwrt.pool.ntp.org' '1.openwrt.pool.ntp.org' '2.openwrt.pool.ntp.org' '3.openwrt.pool.ntp.org'
root@WSM20-S1:~# cat /etc/config/system
config system
option hostname 'WSM20-S1'
option ttylogin '0'
option log_size '64'
option urandom_seed '0'
option compat_version '1.1'
option zonename 'UTC'
option log_proto 'udp'
option conloglevel '8'
option cronloglevel '5'
config timeserver 'ntp'
list server '0.openwrt.pool.ntp.org'
list server '1.openwrt.pool.ntp.org'
list server '2.openwrt.pool.ntp.org'
list server '3.openwrt.pool.ntp.org'