diff options
author | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-01-24 20:54:13 +0000 |
---|---|---|
committer | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-01-24 20:54:13 +0000 |
commit | ca0a92a8f5bce255c1a195533644d39750b5109d (patch) | |
tree | 247ee7b166c3f6941e97b8358b04083ec99ac2dc /package/hostapd/files/wpa_supplicant.sh | |
parent | 3f391b2e19a75a05eaf85ac605acd3a96db976bd (diff) |
[package] hostapd: introduce a client_cert option which is passed on to wpa_supplicant (#8876)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29901 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/hostapd/files/wpa_supplicant.sh')
-rw-r--r-- | package/hostapd/files/wpa_supplicant.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/package/hostapd/files/wpa_supplicant.sh b/package/hostapd/files/wpa_supplicant.sh index 1ab6c663e5..9446202be3 100644 --- a/package/hostapd/files/wpa_supplicant.sh +++ b/package/hostapd/files/wpa_supplicant.sh @@ -87,9 +87,11 @@ wpa_supplicant_setup_vif() { pairwise='pairwise=CCMP' group='group=CCMP' config_get identity "$vif" identity + config_get client_cert "$vif" client_cert config_get priv_key "$vif" priv_key config_get priv_key_pwd "$vif" priv_key_pwd identity="identity=\"$identity\"" + client_cert="client_cert=\"$client_cert\"" priv_key="private_key=\"$priv_key\"" priv_key_pwd="private_key_passwd=\"$priv_key_pwd\"" ;; @@ -132,6 +134,7 @@ network={ $group $eap_type $ca_cert + $client_cert $priv_key $priv_key_pwd $phase2 |