From 0517b0caba92886a1f2652e8f5b951dc2ebe20d1 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Tue, 19 Feb 2013 19:47:37 +0000 Subject: add support for 802.1x EAP with WPA Enterprise Patch (mga#8577, Zombie Ryushu) --- lib/network/connection/wireless.pm | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'lib/network/connection') 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 @@ -497,6 +497,18 @@ the username and password values specified here.") }, help => N("The complete path and filename of client certificate. 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"), 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 }, -- cgit v1.2.1