mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 08:48:31 -05:00
tests: Automatic channel selection with chanlist set
Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
567098ec74
commit
75e41ab78a
@ -72,6 +72,21 @@ def test_ap_acs(dev, apdev):
|
|||||||
|
|
||||||
dev[0].connect("test-acs", psk="12345678", scan_freq=freq)
|
dev[0].connect("test-acs", psk="12345678", scan_freq=freq)
|
||||||
|
|
||||||
|
def test_ap_acs_chanlist(dev, apdev):
|
||||||
|
"""Automatic channel selection with chanlist set"""
|
||||||
|
force_prev_ap_on_24g(apdev[0])
|
||||||
|
params = hostapd.wpa2_params(ssid="test-acs", passphrase="12345678")
|
||||||
|
params['channel'] = '0'
|
||||||
|
params['chanlist'] = '1 6 11'
|
||||||
|
hapd = hostapd.add_ap(apdev[0]['ifname'], params, wait_enabled=False)
|
||||||
|
wait_acs(hapd)
|
||||||
|
|
||||||
|
freq = hapd.get_status_field("freq")
|
||||||
|
if int(freq) < 2400:
|
||||||
|
raise Exception("Unexpected frequency")
|
||||||
|
|
||||||
|
dev[0].connect("test-acs", psk="12345678", scan_freq=freq)
|
||||||
|
|
||||||
def test_ap_multi_bss_acs(dev, apdev):
|
def test_ap_multi_bss_acs(dev, apdev):
|
||||||
"""hostapd start with a multi-BSS configuration file using ACS"""
|
"""hostapd start with a multi-BSS configuration file using ACS"""
|
||||||
ifname = apdev[0]['ifname']
|
ifname = apdev[0]['ifname']
|
||||||
|
Loading…
Reference in New Issue
Block a user