hostapd: Add eap_reauth_period config option
This adds the eap_reauth_period to be used for modifying the RADIUS server reauthentication authentication period, a parameter that gets passed directly to the hostapd configuration file. Signed-off-by: Mathieu Olivari <mathieu@qca.qualcomm.com> Signed-off-by: Luis R. Rodriguez <mcgrof@qca.qualcomm.com> SVN-Revision: 38334
This commit is contained in:
parent
c8e742a080
commit
4689bc8517
1 changed files with 2 additions and 0 deletions
|
@ -108,6 +108,8 @@ hostapd_set_bss_options() {
|
||||||
[ -n "$acct_port" ] && append "$var" "acct_server_port=$acct_port" "$N"
|
[ -n "$acct_port" ] && append "$var" "acct_server_port=$acct_port" "$N"
|
||||||
config_get acct_secret "$vif" acct_secret
|
config_get acct_secret "$vif" acct_secret
|
||||||
[ -n "$acct_secret" ] && append "$var" "acct_server_shared_secret=$acct_secret" "$N"
|
[ -n "$acct_secret" ] && append "$var" "acct_server_shared_secret=$acct_secret" "$N"
|
||||||
|
config_get eap_reauth_period "$vif" eap_reauth_period
|
||||||
|
[ -n "$eap_reauth_period" ] && append "$var" "eap_reauth_period=$eap_reauth_period" "$N"
|
||||||
config_get dae_client "$vif" dae_client
|
config_get dae_client "$vif" dae_client
|
||||||
config_get dae_secret "$vif" dae_secret
|
config_get dae_secret "$vif" dae_secret
|
||||||
[ -n "$dae_client" -a -n "$dae_secret" ] && {
|
[ -n "$dae_client" -a -n "$dae_secret" ] && {
|
||||||
|
|
Loading…
Reference in a new issue