mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-19 18:31:33 +00:00
This will allow the AP to send radius requests via the websocket to the gateway for routing to the correct AAA. Fixes: WIFI-7328 Signed-off-by: John Crispin <john@phrozen.org>
12 lines
165 B
Bash
Executable File
12 lines
165 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=99
|
|
|
|
USE_PROCD=1
|
|
|
|
start_service() {
|
|
procd_open_instance
|
|
procd_set_param command "/usr/sbin/radius-gw-proxy"
|
|
procd_close_instance
|
|
}
|