]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
SAE: Drop default dot11RSNASAESync value from 5 to 3
authorJouni Malinen <quic_jouni@quicinc.com>
Sat, 13 Jul 2024 13:37:15 +0000 (16:37 +0300)
committerJouni Malinen <j@w1.fi>
Sat, 13 Jul 2024 13:37:15 +0000 (16:37 +0300)
Going through five extra rounds of SAE commit messages in cases where
SAE peers are somehow unsynchronized feels unnecessary much to do by
default, so drop the default value to 3.

Signed-off-by: Jouni Malinen <quic_jouni@quicinc.com>
hostapd/hostapd.conf
src/ap/ap_config.c

index 3f0e66beb566c6f64a8cc0c2cebde5833d311bf0..d875d5fc63b05af8994db2c692c64d849dac4045 100644 (file)
@@ -2119,7 +2119,7 @@ own_ip_addr=127.0.0.1
 # Maximum number of SAE synchronization errors (dot11RSNASAESync)
 # The offending SAE peer will be disconnected if more than this many
 # synchronization errors happen.
-#sae_sync=5
+#sae_sync=3
 
 # Enabled SAE finite cyclic groups
 # SAE implementation are required to support group 19 (ECC group defined over a
index 0b5a16ef9f82763ada8b2143c57e5e3c59f83539..565b587166daf7ec9b3103f19f984a386f181835 100644 (file)
@@ -125,7 +125,7 @@ void hostapd_config_defaults_bss(struct hostapd_bss_config *bss)
        bss->radius_require_message_authenticator = 1;
 
        bss->anti_clogging_threshold = 5;
-       bss->sae_sync = 5;
+       bss->sae_sync = 3;
 
        bss->gas_frag_limit = 1400;