tests: EAP-SIM and check fast reauth with bssid change
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
c3dc68e844
commit
6c7fed4683
1 changed files with 41 additions and 0 deletions
|
@ -714,6 +714,47 @@ def _test_ap_wpa2_eap_sim_ext_auth_fail(dev, apdev):
|
||||||
dev[0].request("REMOVE_NETWORK all")
|
dev[0].request("REMOVE_NETWORK all")
|
||||||
dev[0].wait_disconnected()
|
dev[0].wait_disconnected()
|
||||||
|
|
||||||
|
def test_ap_wpa2_eap_sim_change_bssid(dev, apdev):
|
||||||
|
"""EAP-SIM and external GSM auth to check fast reauth with bssid change"""
|
||||||
|
try:
|
||||||
|
_test_ap_wpa2_eap_sim_change_bssid(dev, apdev)
|
||||||
|
finally:
|
||||||
|
dev[0].request("SET external_sim 0")
|
||||||
|
|
||||||
|
def _test_ap_wpa2_eap_sim_change_bssid(dev, apdev):
|
||||||
|
check_hlr_auc_gw_support()
|
||||||
|
params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
|
||||||
|
hostapd.add_ap(apdev[0]['ifname'], params)
|
||||||
|
dev[0].request("SET external_sim 1")
|
||||||
|
id = dev[0].connect("test-wpa2-eap", eap="SIM", key_mgmt="WPA-EAP",
|
||||||
|
identity="1232010000000000",
|
||||||
|
wait_connect=False, scan_freq="2412")
|
||||||
|
|
||||||
|
ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
|
||||||
|
if ev is None:
|
||||||
|
raise Exception("Wait for external SIM processing request timed out")
|
||||||
|
p = ev.split(':', 2)
|
||||||
|
if p[1] != "GSM-AUTH":
|
||||||
|
raise Exception("Unexpected CTRL-REQ-SIM type")
|
||||||
|
rid = p[0].split('-')[3]
|
||||||
|
rand = p[2].split(' ')[0]
|
||||||
|
|
||||||
|
res = subprocess.check_output(["../../hostapd/hlr_auc_gw",
|
||||||
|
"-m",
|
||||||
|
"auth_serv/hlr_auc_gw.milenage_db",
|
||||||
|
"GSM-AUTH-REQ 232010000000000 " + rand])
|
||||||
|
if "GSM-AUTH-RESP" not in res:
|
||||||
|
raise Exception("Unexpected hlr_auc_gw response")
|
||||||
|
resp = res.split(' ')[2].rstrip()
|
||||||
|
|
||||||
|
dev[0].request("CTRL-RSP-SIM-" + rid + ":GSM-AUTH:" + resp)
|
||||||
|
dev[0].wait_connected(timeout=15)
|
||||||
|
|
||||||
|
# Verify that EAP-SIM Reauthentication can be used after a profile change
|
||||||
|
# that does not affect EAP parameters.
|
||||||
|
dev[0].set_network(id, "bssid", "any")
|
||||||
|
eap_reauth(dev[0], "SIM")
|
||||||
|
|
||||||
def test_ap_wpa2_eap_sim_oom(dev, apdev):
|
def test_ap_wpa2_eap_sim_oom(dev, apdev):
|
||||||
"""EAP-SIM and OOM"""
|
"""EAP-SIM and OOM"""
|
||||||
params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
|
params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
|
||||||
|
|
Loading…
Reference in a new issue