|
@@ -2189,6 +2189,14 @@ static int hostapd_config_fill(struct hostapd_config *conf,
|
|
|
os_free(bss->nas_identifier);
|
|
|
bss->nas_identifier = os_strdup(pos);
|
|
|
#ifndef CONFIG_NO_RADIUS
|
|
|
+ } else if (os_strcmp(buf, "radius_client_addr") == 0) {
|
|
|
+ if (hostapd_parse_ip_addr(pos, &bss->radius->client_addr)) {
|
|
|
+ wpa_printf(MSG_ERROR,
|
|
|
+ "Line %d: invalid IP address '%s'",
|
|
|
+ line, pos);
|
|
|
+ return 1;
|
|
|
+ }
|
|
|
+ bss->radius->force_client_addr = 1;
|
|
|
} else if (os_strcmp(buf, "auth_server_addr") == 0) {
|
|
|
if (hostapd_config_read_radius_addr(
|
|
|
&bss->radius->auth_servers,
|