Some Netgear APs like WNAP210 have a quirk behavior when configured for WEP Shared. They send an auth response with algo SHARED and status code NOT_SUPPORTED_AUTH_ALG (13) when being sent a request made with auth algo OPEN. Enable such response to propagate to userspace instead of discarding it so wpa_s can reattempt to auth with SHARED. Reported-by: Noam Shaked <noams@xxxxxx> Signed-off-by: Eyal Shapira <eyal@xxxxxxxxxx> --- net/mac80211/mlme.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index 0f45d02..3ad4366 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c @@ -1783,7 +1783,8 @@ ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata, auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction); status_code = le16_to_cpu(mgmt->u.auth.status_code); - if (auth_alg != ifmgd->auth_data->algorithm || + if ((auth_alg != ifmgd->auth_data->algorithm && + status_code != WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG) || auth_transaction != ifmgd->auth_data->expected_transaction) return RX_MGMT_NONE; -- 1.7.4.1 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html