tests: DPP Configurator getting SSID from control interface
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
68cb6dcec1
commit
ede1f791e1
1 changed files with 3 additions and 2 deletions
|
@ -1077,7 +1077,8 @@ def run_dpp_auto_connect_legacy(dev, apdev):
|
||||||
check_dpp_capab(dev[0])
|
check_dpp_capab(dev[0])
|
||||||
check_dpp_capab(dev[1])
|
check_dpp_capab(dev[1])
|
||||||
|
|
||||||
params = hostapd.wpa2_params(ssid="test", passphrase="secret passphrase")
|
params = hostapd.wpa2_params(ssid="dpp-legacy",
|
||||||
|
passphrase="secret passphrase")
|
||||||
hapd = hostapd.add_ap(apdev[0], params)
|
hapd = hostapd.add_ap(apdev[0], params)
|
||||||
|
|
||||||
dev[0].set("dpp_config_processing", "2")
|
dev[0].set("dpp_config_processing", "2")
|
||||||
|
@ -1098,7 +1099,7 @@ def run_dpp_auto_connect_legacy(dev, apdev):
|
||||||
if "OK" not in dev[0].request(cmd):
|
if "OK" not in dev[0].request(cmd):
|
||||||
raise Exception("Failed to start listen operation")
|
raise Exception("Failed to start listen operation")
|
||||||
|
|
||||||
cmd = "DPP_AUTH_INIT peer=%d conf=sta-psk" % id1
|
cmd = "DPP_AUTH_INIT peer=%d conf=sta-psk ssid=%s" % (id1, "dpp-legacy".encode("hex"))
|
||||||
if "OK" not in dev[1].request(cmd):
|
if "OK" not in dev[1].request(cmd):
|
||||||
raise Exception("Failed to initiate DPP Authentication")
|
raise Exception("Failed to initiate DPP Authentication")
|
||||||
ev = dev[1].wait_event(["DPP-CONF-SENT"], timeout=10)
|
ev = dev[1].wait_event(["DPP-CONF-SENT"], timeout=10)
|
||||||
|
|
Loading…
Reference in a new issue