mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-21 19:31:55 +00:00
* fix vlans on ipq40xx * fix ratelimit * merge eap102 fixes * update schema * drop uci bridge hack Signed-off-by: John Crispin <john@phrozen.org>
11 lines
128 B
Bash
Executable File
11 lines
128 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case $2 in
|
|
AP-STA-CONNECTED)
|
|
ratelimit addclient $1 $3
|
|
;;
|
|
AP-STA-DISCONNECTED)
|
|
ratelimit delclient $1 $3
|
|
;;
|
|
esac
|