From 20198234435a42b629005b5256e657fae5811fd5 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Wed, 11 May 2022 14:05:51 -0500 Subject: [PATCH] auto-t: Fix TA/BSSID addresses of spoofed disassoc The TA/BSSID addresses of spoofed disassociate frames were set incorrectly. They should be using the 02:00:00:XX:XX:XX address, but instead were being converted over to 42:00:00:XX:XX:XX address --- autotests/util/hwsim.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autotests/util/hwsim.py b/autotests/util/hwsim.py index 80a847ad..76d15080 100755 --- a/autotests/util/hwsim.py +++ b/autotests/util/hwsim.py @@ -410,7 +410,7 @@ class Hwsim(iwd.AsyncOpAbstract): ''' Send a spoofed disassociate frame to a station ''' - dest = self._convert_address(radio.addresses[0].replace(':', '')) + dest = radio.addresses[0].replace(':', '') frame = 'a0 00 3a 01' frame += station.replace(':', '')