diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | lib/network/connection/wireless.pm | 12 |
2 files changed, 15 insertions, 0 deletions
@@ -1,3 +1,6 @@ +- drakconnect: + o add support for 802.1x EAP with WPA Enterprise Patch (mga#8577, + Zombie Ryushu) - drakfirewall: o check shorewall enabling via systemd (mga#8699, from Rosa) - draknfs: diff --git a/lib/network/connection/wireless.pm b/lib/network/connection/wireless.pm index 7e325af..df614d6 100644 --- a/lib/network/connection/wireless.pm +++ b/lib/network/connection/wireless.pm @@ -498,6 +498,18 @@ the username and password values specified here.") }, only used for EAP certificate based authentication. It could be considered as the alternative to username/password combo. Note: other related settings are shown on the Advanced page.") }, + { label => N("EAP client private key"), val => \$self->{access}{network}{eap_private_key}, + disabled => sub { $self->{access}{network}{encryption} ne 'wpa-eap' }, + help => N("The complete path and filename of client private key. This is +only used for EAP certificate based authentication. It could be +considered as the alternative to username/password combo. + Note: other related settings are shown on the Advanced page.") }, + { label => N("EAP client private key password"), val => \$self->{access}{network}{eap_private_key_passwd}, + disabled => sub { $self->{access}{network}{encryption} ne 'wpa-eap' }, + help => N("The complete password for the client private key. This is +only used for EAP certificate based authentication. This password +is used for protected client private keys only. It can be optional. + Note: other related settings are shown on the Advanced page.") }, { label => N("Network ID"), val => \$self->{ifcfg}{WIRELESS_NWID}, advanced => 1 }, { label => N("Operating frequency"), val => \$self->{ifcfg}{WIRELESS_FREQ}, advanced => 1 }, { label => N("Sensitivity threshold"), val => \$self->{ifcfg}{WIRELESS_SENS}, advanced => 1 }, |