mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-28 18:28:23 -05:00
tests: Dynamic BSS add operation reusing existing interface
Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
8916857da6
commit
cece9b7df7
@ -372,3 +372,14 @@ def _test_ap_bss_add_many(dev, apdev):
|
||||
dev[0].wait_disconnected(timeout=5)
|
||||
ifname2 = ifname + '-' + str(i)
|
||||
hapd.remove(ifname2)
|
||||
|
||||
def test_ap_bss_add_reuse_existing(dev, apdev):
|
||||
"""Dynamic BSS add operation reusing existing interface"""
|
||||
ifname1 = apdev[0]['ifname']
|
||||
ifname2 = apdev[0]['ifname'] + '-2'
|
||||
hostapd.add_bss('phy3', ifname1, 'bss-1.conf')
|
||||
subprocess.check_call(["iw", "dev", ifname1, "interface", "add", ifname2,
|
||||
"type", "__ap"])
|
||||
hostapd.add_bss('phy3', ifname2, 'bss-2.conf')
|
||||
hostapd.remove_bss(ifname2)
|
||||
subprocess.check_call(["iw", "dev", ifname2, "del"])
|
||||
|
Loading…
Reference in New Issue
Block a user