SAE: Drop default dot11RSNASAESync value from 5 to 3

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>
This commit is contained in:
Jouni Malinen 2024-07-13 16:37:15 +03:00 committed by Jouni Malinen
parent 5da59ff1cd
commit 7d51bf2abd
2 changed files with 2 additions and 2 deletions

View 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

View 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;