[PATCH 1/2] hostap: drop probe request if number of stations limit is reached

Jouni Malinen j
Thu Feb 28 06:52:59 PST 2013


On Sat, Feb 23, 2013 at 03:47:16PM +0100, Felix Fietkau wrote:
> If multiple APs serve the same SSID, and one of them is full, it should
> not respond to probe requests anymore, as it won't allow clients to
> connect anyway.

> diff --git a/src/ap/beacon.c b/src/ap/beacon.c
> @@ -455,6 +455,12 @@ void handle_probe_req(struct hostapd_data *hapd,
> +	if (!sta && hapd->num_sta >= hapd->conf->max_num_sta) {
> +		wpa_printf(MSG_MSGDUMP, "Probe Request from " MACSTR " ignored,"
> +			   " too many connected stations.", MAC2STR(mgmt->sa));
> +		return;
> +	}

This sounds reasonable for some use cases, but not necessarily all.
Probe Response frames may be used for other purposes than connecting to
the AP. For example, WPS PBC session overlap depends on scan results
included all APs that are in active PBC mode. Probe Response frames make
that more reliable. Similarly, Interworking may benefit from discovering
the AP and being able to fetch information from it even if another BSS
ends up getting used.

At minimum, this would need to be configurable behavior and it would
also be useful to allow the Probe Response frame go out in some cases
(e.g., that active WPS PBC case) regardless of configuration.

-- 
Jouni Malinen                                            PGP id EFC895FA



More information about the Hostap mailing list