To get the lights working, you will need to edit a file. This is slightly involved but in no way too difficult. I'm assuming minimal experience doing this through the router's command line, so I'll be thorough in my explanation. Forgive me if this is too "dumbed down."
You will be adding a section to the
/etc/config/system file. I find the editor
Nano to be fairly easy to use. However, it is not installed by default. This tutorial includes the installation of
Nano.
1. SSH to router and log in. ie.
ssh root@192.168.1.1
Username will be
root. Password is whatever you set. Password is typed blind from command line.
2. Enter following commands:
opkg update
opkg install nano
cd /etc/config
nano system
3. You have now opened the
/etc/config/system file in
Nano. Add the following to the bottom of this file:
config 'led'
option 'sysfs' 'wzr-hp-g300nh

security'
option 'name' 'Security'
option 'trigger' 'netdev'
option 'dev' 'wlan0'
option 'mode' 'link'
config 'led'
option 'name' 'Wireless'
option 'sysfs' 'wzr-hp-g300nh:green:wireless'
option 'trigger' 'netdev'
option 'dev' 'mon.wlan0'
option 'mode' 'link tx rx'
config 'led'
option 'name' 'Router'
option 'sysfs' 'wzr-hp-g300nh:green:router'
option 'trigger' 'netdev'
option 'dev' 'eth0'
option 'mode' 'link tx rx'
4. Press
Ctrl+o (this saves the file)
Press
enter (confirming the filename)
Press
Ctrl+x (exits nano)
5. Exit from ssh session.
6. Reboot router.
Hope this helps.