Hi,
i have put this code to wireless tables - access list but it does not seem to work. I wanted to setup 'if the signal drops under -75 then this client should disconnect from wlan'.
Any other suggestion?
tx
korg
Hello Petri,@Korg Are you aware that the configuration does not do what you asked in your first post (and title)? The access list only affects connecting clients. After the client is connected it won't be disconnected even if the signal drops below the threshold. If the client gets disconnected, he won't be allowed back, though.
signal-range (NUM..NUM - both NUM are numbers in the range -120..120; Default: -120..120)
Rule matches if signal strength of the station is within the range.
If signal strength of the station will go out of the range that is specified in the rule, access point will disconnect that station.
For example, if client's signal during connection is -41 and we have ACL rule
Then connection is not matched to any ACL rule and if signal drops to -70..-80, client will not be disconnected.Code: Select all/interface wireless access-list add authentication=yes forwarding=yes interface=wlan2 signal-range=-55..0
To make it work correctly it is required that client is matched by any of ACL rules.
If we modify ACL rules in previous example to:
Then if signal drops to -56, client will be disconnected.Code: Select all/interface wireless access-list add interface=wlan2 signal-range=-55 add authentication=no forwarding=no interface=wlan2 signal-range=-120..-56
For example, if client's signal during connection is -41 and we have ACL ruleThen connection is not matched to any ACL rule ....Code: Select all/interface wireless access-list add authentication=yes forwarding=yes interface=wlan2 signal-range=-55..0
add interface=wlan2 signal-range=-55
(I just wasn't aware this is applied to already connected clients as well.)Then connection is not matched to any ACL rule and if signal drops to -70..-80, client will not be disconnected.