From: Jouni Malinen Date: Sun, 17 Jul 2016 08:29:42 +0000 (+0300) Subject: tests: IEEE 802.1X connection using dynamic WEP104 when WPA enabled X-Git-Tag: hostap_2_6~205 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dcd54211c451dbfdba9f5ec88bd59b5c6aba709e;p=thirdparty%2Fhostap.git tests: IEEE 802.1X connection using dynamic WEP104 when WPA enabled Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_ieee8021x.py b/tests/hwsim/test_ieee8021x.py index 9c5282b9e..ba77dc27f 100644 --- a/tests/hwsim/test_ieee8021x.py +++ b/tests/hwsim/test_ieee8021x.py @@ -411,3 +411,19 @@ def test_ieee8021x_open_leap(dev, apdev): scan_freq="2412") ev = dev[1].wait_event(["CTRL-EVENT-AUTH-REJECT"], timeout=5) dev[1].request("DISCONNECT") + +def test_ieee8021x_and_wpa_enabled(dev, apdev): + """IEEE 802.1X connection using dynamic WEP104 when WPA enabled""" + skip_with_fips(dev[0]) + params = hostapd.radius_params() + params["ssid"] = "ieee8021x-wep" + params["ieee8021x"] = "1" + params["wep_key_len_broadcast"] = "13" + params["wep_key_len_unicast"] = "13" + hapd = hostapd.add_ap(apdev[0], params) + + dev[0].connect("ieee8021x-wep", key_mgmt="IEEE8021X WPA-EAP", eap="PSK", + identity="psk.user@example.com", + password_hex="0123456789abcdef0123456789abcdef", + scan_freq="2412") + hwsim_utils.test_connectivity(dev[0], hapd)