hostapd: introduce new default-off option "auth_cache" which controls PMKSA and Opportunistic Key Caching (#12129)
SVN-Revision: 33359
This commit is contained in:
parent
77fe98d134
commit
24e24b2d51
2 changed files with 5 additions and 2 deletions
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=hostapd
|
PKG_NAME:=hostapd
|
||||||
PKG_VERSION:=20120428
|
PKG_VERSION:=20120428
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=3
|
||||||
PKG_REV:=1f0cc27eb98f7d1af9c64d0752238184cbdb9a24
|
PKG_REV:=1f0cc27eb98f7d1af9c64d0752238184cbdb9a24
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||||
|
|
|
@ -84,6 +84,9 @@ hostapd_set_bss_options() {
|
||||||
config_get auth_secret "$vif" auth_secret
|
config_get auth_secret "$vif" auth_secret
|
||||||
[ -z "$auth_secret" ] && config_get auth_secret "$vif" key
|
[ -z "$auth_secret" ] && config_get auth_secret "$vif" key
|
||||||
append "$var" "auth_server_shared_secret=$auth_secret" "$N"
|
append "$var" "auth_server_shared_secret=$auth_secret" "$N"
|
||||||
|
config_get_bool auth_cache "$vif" auth_cache 0
|
||||||
|
[ "$auth_cache" -gt 0 ] || append "$var" "disable_pmksa_caching=1" "$N"
|
||||||
|
[ "$auth_cache" -gt 0 ] || append "$var" "okc=0" "$N"
|
||||||
config_get acct_server "$vif" acct_server
|
config_get acct_server "$vif" acct_server
|
||||||
[ -n "$acct_server" ] && append "$var" "acct_server_addr=$acct_server" "$N"
|
[ -n "$acct_server" ] && append "$var" "acct_server_addr=$acct_server" "$N"
|
||||||
config_get acct_port "$vif" acct_port
|
config_get acct_port "$vif" acct_port
|
||||||
|
@ -174,7 +177,7 @@ hostapd_set_bss_options() {
|
||||||
if [ "$wpa" -ge "2" ]
|
if [ "$wpa" -ge "2" ]
|
||||||
then
|
then
|
||||||
# RSN -> allow preauthentication
|
# RSN -> allow preauthentication
|
||||||
config_get rsn_preauth "$vif" rsn_preauth
|
config_get_bool rsn_preauth "$vif" rsn_preauth "$auth_cache"
|
||||||
if [ -n "$bridge" -a "$rsn_preauth" = 1 ]
|
if [ -n "$bridge" -a "$rsn_preauth" = 1 ]
|
||||||
then
|
then
|
||||||
append "$var" "rsn_preauth=1" "$N"
|
append "$var" "rsn_preauth=1" "$N"
|
||||||
|
|
Loading…
Reference in a new issue