Community discussions

MikroTik App
 
budy
just joined
Topic Author
Posts: 14
Joined: Fri May 20, 2005 1:34 pm

limit access list poor signal strength clients

Tue Nov 13, 2007 3:20 pm

Hello forum,

I would like configure the access-list to deny association to clients with a signal strength below -80.

I have tried this configuration but it does not work:

0 mac-address=00:00:00:00:00:00 interface=all signal-range=-95.-80
authentication=no forwarding=yes ap-tx-limit=0 client-tx-limit=0
private-algo=none private-key="" private-pre-shared-key=""


Can someboy help-me?

Thanks
 
User avatar
jwcn
Forum Guru
Forum Guru
Posts: 1495
Joined: Sun Aug 27, 2006 6:49 am
Location: Maryland, USA
Contact:

Re: limit access list poor signal strength clients

Wed Nov 14, 2007 3:41 am

Use noise floor threshold.
 
budy
just joined
Topic Author
Posts: 14
Joined: Fri May 20, 2005 1:34 pm

Re: limit access list poor signal strength clients

Wed Nov 14, 2007 10:37 am

Hello,

I have change this option:
set wlan1 noise-floor-threshold=-80

But the clients with worst signal are connected still.

Regards
 
User avatar
jwcn
Forum Guru
Forum Guru
Posts: 1495
Joined: Sun Aug 27, 2006 6:49 am
Location: Maryland, USA
Contact:

Re: limit access list poor signal strength clients

Fri Nov 16, 2007 4:36 am

What version of ROS are you using?
 
budy
just joined
Topic Author
Posts: 14
Joined: Fri May 20, 2005 1:34 pm

Re: limit access list poor signal strength clients

Fri Nov 16, 2007 9:46 am

Hello,

I use the last version.

And this is the configuration that should works.
I am going to try this weekend.


1) In the access list:

I have to set 'default-authentication=no', as clients will not use access-list entries, unless default-authentication is enabled.

As well I have to add second rule to access-list (additionally to my original rule with -95..-80), that allows client with acceptable signal to associate.

1.1 0 mac-address=00:00:00:00:00:00 interface=all signal-range=-95.-80
authentication=no forwarding=yes ap-tx-limit=0 client-tx-limit=0
private-algo=none private-key="" private-pre-shared-key=""

1.2 mac-address=00:00:00:00:00:00 interface=all signal-range=-80.0
authentication=yes forwarding=yes ap-tx-limit=0 client-tx-limit=0
private-algo=none private-key="" private-pre-shared-key=""

2) Noise-floor-threshold is supported only by few old wireless chipsets, that's why access-list configuration is more recommended one.


Thanks