mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-10-30 18:07:52 +00:00
11 lines
134 B
Bash
Executable File
11 lines
134 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case $2 in
|
|
AP-STA-CONNECTED)
|
|
ratelimit addclient $1 $3 $4 $5
|
|
;;
|
|
AP-STA-DISCONNECTED)
|
|
ratelimit delclient $1 $3
|
|
;;
|
|
esac
|