TP-Link TL-WA750RE signal LED's

Report problems and success stories with Gargoyle on various hardware platforms.

Moderator: Moderators

Post Reply
User avatar
Garfield
Posts: 4
Joined: Sun Nov 22, 2015 8:02 am
Location: 127.0.0.1

TP-Link TL-WA750RE signal LED's

Post by Garfield »

Hi, I flashed my TL-WA750RE v1.1 with Gargoyle 1.8.1 all works well and speeds are good, however the signal strength LED’s on the front no longer work? Is it a setting I cant find or is this expected?

Thanks all :)

Lantis
Moderator
Posts: 7067
Joined: Mon Jan 05, 2015 5:33 am
Location: Australia

Re: TP-Link TL-WA750RE signal LED's

Post by Lantis »

I suspect you won't be able to set it up as a "strength" indicator. But you could use it to indicate activity.

https://wiki.openwrt.org/doc/uci/system
https://lantisproject.com/downloads/gargoylebuilds for the latest releases
Please be respectful when posting. I do this in my free time on a volunteer basis.

User avatar
Garfield
Posts: 4
Joined: Sun Nov 22, 2015 8:02 am
Location: 127.0.0.1

Re: TP-Link TL-WA750RE signal LED's

Post by Garfield »

Thank you, I guess some research into how to use all those commands is needed, SSH with Mac OS X terminal I guess? how do I log in?

Lantis
Moderator
Posts: 7067
Joined: Mon Jan 05, 2015 5:33 am
Location: Australia

Re: TP-Link TL-WA750RE signal LED's

Post by Lantis »

Correct, in terminal type

ssh root@192.168.1.1
When prompted for your password, you know what to do.

The basic commands you will use to set this kind f thing up is
uci set <file>.<section>.<option>=value
uci commit <file>

All LEDs are set up through the system config so in this case replace <file> with "system".

I actually prefer using WinSCP for this kind of thing because you can edit the files visually. I'm not sure what the equivalent Mac application would be but a post was made recently about it on this forum. Editing visually allows you to copy paste something like this (which the commands you run generate anyway):

Code: Select all

config 'led' 'wlan_led'
        option 'name'           'WLAN'
        option 'sysfs'          'tl-wr1043nd:green:wlan'
        option 'trigger'        'netdev'
        option 'dev'            'wlan0'
        option 'mode'           'link tx rx'
Here "wlan_led" is <section> and "sysfs" is an example of an <option>.

Also you'll want to run
ls /sys/class/leds
To find what LEDs exist in your system.

I think that just about covers it I'm half asleep.
Let me know how you get on.
https://lantisproject.com/downloads/gargoylebuilds for the latest releases
Please be respectful when posting. I do this in my free time on a volunteer basis.

Lantis
Moderator
Posts: 7067
Joined: Mon Jan 05, 2015 5:33 am
Location: Australia

Re: TP-Link TL-WA750RE signal LED's

Post by Lantis »

Oh and then run
/etc/init.d/system restart
To make the changes take effect.
Or reboot your router.
https://lantisproject.com/downloads/gargoylebuilds for the latest releases
Please be respectful when posting. I do this in my free time on a volunteer basis.

User avatar
Garfield
Posts: 4
Joined: Sun Nov 22, 2015 8:02 am
Location: 127.0.0.1

Re: TP-Link TL-WA750RE signal LED's

Post by Garfield »

OK thanks for that, however I am now having trouble trying to login with WinSCP on a Windows 7 box but keep getting this in the WinSCP logs.

. 2015-11-23 15:07:28.368 Using SFTP protocol.
. 2015-11-23 15:07:28.368 Doing startup conversation with host.
! 2015-11-23 15:07:28.368 ash: /usr/libexec/sftp-server: not found
. 2015-11-23 15:07:28.368 Server sent command exit status 127
. 2015-11-23 15:07:28.368 Disconnected: All channels closed
* 2015-11-23 15:07:28.476 (EFatal)

Volaris
Posts: 177
Joined: Thu May 01, 2014 1:02 pm

Re: TP-Link TL-WA750RE signal LED's

Post by Volaris »

Garfield wrote:OK thanks for that, however I am now having trouble trying to login with WinSCP on a Windows 7 box but keep getting this in the WinSCP logs.

. 2015-11-23 15:07:28.368 Using SFTP protocol.
. 2015-11-23 15:07:28.368 Doing startup conversation with host.
! 2015-11-23 15:07:28.368 ash: /usr/libexec/sftp-server: not found
. 2015-11-23 15:07:28.368 Server sent command exit status 127
. 2015-11-23 15:07:28.368 Disconnected: All channels closed
* 2015-11-23 15:07:28.476 (EFatal)
Change SFTP to SCP.
QoS Tip: Don't complicate your QoS settings. Gargoyle evenly splits available bandwidth between active devices as needed. Just delete all your classification rules and leave only one normal service class and you're done. No more arguing over bandwidth.

User avatar
Garfield
Posts: 4
Joined: Sun Nov 22, 2015 8:02 am
Location: 127.0.0.1

Re: TP-Link TL-WA750RE signal LED's

Post by Garfield »

Thank you I'm in :) now I have to figure out what files to edit :D

Lantis
Moderator
Posts: 7067
Joined: Mon Jan 05, 2015 5:33 am
Location: Australia

Re: TP-Link TL-WA750RE signal LED's

Post by Lantis »

Head to /etc/config/system

Make sure to make a copy of the file on the desktop somewhere before editing.

Also only edit the files from within WinSCP otherwise the format becomes incompatible with Linux.
https://lantisproject.com/downloads/gargoylebuilds for the latest releases
Please be respectful when posting. I do this in my free time on a volunteer basis.

Post Reply