linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
@ 2020-05-19 14:18 Rui Salvaterra
  2020-05-19 20:30 ` Larry Finger
  0 siblings, 1 reply; 33+ messages in thread
From: Rui Salvaterra @ 2020-05-19 14:18 UTC (permalink / raw)
  To: b43-dev, linux-wireless

Hi, everyone!

I've been trying to connect to a WPA3 (personal, not enterprise)
network but, as expected, the connection always fails with hardware
encryption (most likely due to mandatory MFP, which the hardware won't
do). What I didn't expect was to have the exact same problem when
using software crypto. I've tried with other devices, and they work
fine. One thing I noticed is this: for example, a Ralink RT2790
device, on another machine, shows the following supported cyphers with
hardware crypto…

        * WEP40 (00-0f-ac:1)
        * WEP104 (00-0f-ac:5)
        * TKIP (00-0f-ac:2)
        * CCMP-128 (00-0f-ac:4)
        * CCMP-256 (00-0f-ac:10)
        * GCMP-128 (00-0f-ac:8)
        * GCMP-256 (00-0f-ac:9)

… and with software crypto…

        * WEP40 (00-0f-ac:1)
        * WEP104 (00-0f-ac:5)
        * TKIP (00-0f-ac:2)
        * CCMP-128 (00-0f-ac:4)
        * CCMP-256 (00-0f-ac:10)
        * GCMP-128 (00-0f-ac:8)
        * GCMP-256 (00-0f-ac:9)
        * CMAC (00-0f-ac:6)
        * CMAC-256 (00-0f-ac:13)
        * GMAC-128 (00-0f-ac:11)
        * GMAC-256 (00-0f-ac:12)

… while b43 shows exactly the same in both modes…

        * WEP40 (00-0f-ac:1)
        * WEP104 (00-0f-ac:5)
        * TKIP (00-0f-ac:2)
        * CCMP-128 (00-0f-ac:4)
        * CCMP-256 (00-0f-ac:10)
        * GCMP-128 (00-0f-ac:8)
        * GCMP-256 (00-0f-ac:9)

This is a BCM4318 device (PCI ID 14e4:4318), but I don't know if
that's relevant.
Is this behaviour expected?

Thanks in advance,
Rui

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-19 14:18 [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1) Rui Salvaterra
@ 2020-05-19 20:30 ` Larry Finger
  2020-05-19 20:36   ` Rui Salvaterra
  0 siblings, 1 reply; 33+ messages in thread
From: Larry Finger @ 2020-05-19 20:30 UTC (permalink / raw)
  To: Rui Salvaterra, b43-dev, linux-wireless

On 5/19/20 9:18 AM, Rui Salvaterra wrote:
> Hi, everyone!
> 
> I've been trying to connect to a WPA3 (personal, not enterprise)
> network but, as expected, the connection always fails with hardware
> encryption (most likely due to mandatory MFP, which the hardware won't
> do). What I didn't expect was to have the exact same problem when
> using software crypto. I've tried with other devices, and they work
> fine. One thing I noticed is this: for example, a Ralink RT2790
> device, on another machine, shows the following supported cyphers with
> hardware crypto…
> 
>          * WEP40 (00-0f-ac:1)
>          * WEP104 (00-0f-ac:5)
>          * TKIP (00-0f-ac:2)
>          * CCMP-128 (00-0f-ac:4)
>          * CCMP-256 (00-0f-ac:10)
>          * GCMP-128 (00-0f-ac:8)
>          * GCMP-256 (00-0f-ac:9)
> 
> … and with software crypto…
> 
>          * WEP40 (00-0f-ac:1)
>          * WEP104 (00-0f-ac:5)
>          * TKIP (00-0f-ac:2)
>          * CCMP-128 (00-0f-ac:4)
>          * CCMP-256 (00-0f-ac:10)
>          * GCMP-128 (00-0f-ac:8)
>          * GCMP-256 (00-0f-ac:9)
>          * CMAC (00-0f-ac:6)
>          * CMAC-256 (00-0f-ac:13)
>          * GMAC-128 (00-0f-ac:11)
>          * GMAC-256 (00-0f-ac:12)
> 
> … while b43 shows exactly the same in both modes…
> 
>          * WEP40 (00-0f-ac:1)
>          * WEP104 (00-0f-ac:5)
>          * TKIP (00-0f-ac:2)
>          * CCMP-128 (00-0f-ac:4)
>          * CCMP-256 (00-0f-ac:10)
>          * GCMP-128 (00-0f-ac:8)
>          * GCMP-256 (00-0f-ac:9)
> 
> This is a BCM4318 device (PCI ID 14e4:4318), but I don't know if
> that's relevant.
> Is this behaviour expected?
> 
> Thanks in advance,
> Rui
> 

Rui,

 From other drivers, it appears that handling WPA3 might be as simple as setting 
MFP_CAPABLE in the hardware capabilities. Please try this patch:

diff --git a/drivers/net/wireless/broadcom/b43/main.c 
b/drivers/net/wireless/broadcom/b43/main.c
index 39da1a4c30ac..e944fe2e9ac7 100644
--- a/drivers/net/wireless/broadcom/b43/main.c
+++ b/drivers/net/wireless/broadcom/b43/main.c
@@ -4162,8 +4162,11 @@ static int b43_op_set_key(struct ieee80211_hw *hw, enum 
set_key_cmd cmd,
         int err;
         static const u8 bcast_addr[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 
0xff };

-       if (modparam_nohwcrypt)
+       if (modparam_nohwcrypt) {
+               /* User disabled HW-crypto - enable MFP (WPA3) */
+               ieee80211_hw_set(hw, MFP_CAPABLE);
                 return -ENOSPC; /* User disabled HW-crypto */
+       }

         if ((vif->type == NL80211_IFTYPE_ADHOC ||
              vif->type == NL80211_IFTYPE_MESH_POINT) &&

I have no way of testing other than to compile.

Larry


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-19 20:30 ` Larry Finger
@ 2020-05-19 20:36   ` Rui Salvaterra
  2020-05-19 23:13     ` Rui Salvaterra
  0 siblings, 1 reply; 33+ messages in thread
From: Rui Salvaterra @ 2020-05-19 20:36 UTC (permalink / raw)
  To: Larry Finger; +Cc: b43-dev, linux-wireless

Hi, Larry,

On Tue, 19 May 2020 at 21:30, Larry Finger <Larry.Finger@lwfinger.net> wrote:
>
>  From other drivers, it appears that handling WPA3 might be as simple as setting
> MFP_CAPABLE in the hardware capabilities. Please try this patch:

Fantastic, thanks for the quick reply! I will do it ASAP and get back to you.

> I have no way of testing other than to compile.

No problem, I have two different revisions of b43 cards to test (on
x86 and ppc32 machines). :)

Thanks a lot,
Rui

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-19 20:36   ` Rui Salvaterra
@ 2020-05-19 23:13     ` Rui Salvaterra
  2020-05-20  0:16       ` Larry Finger
  0 siblings, 1 reply; 33+ messages in thread
From: Rui Salvaterra @ 2020-05-19 23:13 UTC (permalink / raw)
  To: Larry Finger; +Cc: b43-dev, linux-wireless

On Tue, 19 May 2020 at 21:36, Rui Salvaterra <rsalvaterra@gmail.com> wrote:
>
> Hi, Larry,
>
> On Tue, 19 May 2020 at 21:30, Larry Finger <Larry.Finger@lwfinger.net> wrote:
> >
> >  From other drivers, it appears that handling WPA3 might be as simple as setting
> > MFP_CAPABLE in the hardware capabilities. Please try this patch:
>
> Fantastic, thanks for the quick reply! I will do it ASAP and get back to you.

Unfortunately, looks like in this driver it's not so simple, the
association is still rejected. I looked at the other drivers too and,
sure enough, they just set the MFP_CAPABLE flag unconditionally with
software crypto (I would expect mac80211 to magically handle it, but
with b43 it doesn't seem to be the case).

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-19 23:13     ` Rui Salvaterra
@ 2020-05-20  0:16       ` Larry Finger
  2020-05-20  8:24         ` Rui Salvaterra
  0 siblings, 1 reply; 33+ messages in thread
From: Larry Finger @ 2020-05-20  0:16 UTC (permalink / raw)
  To: Rui Salvaterra; +Cc: linux-wireless, b43-dev

On 5/19/20 6:13 PM, Rui Salvaterra wrote:
> On Tue, 19 May 2020 at 21:36, Rui Salvaterra <rsalvaterra@gmail.com> wrote:
>>
>> Hi, Larry,
>>
>> On Tue, 19 May 2020 at 21:30, Larry Finger <Larry.Finger@lwfinger.net> wrote:
>>>
>>>   From other drivers, it appears that handling WPA3 might be as simple as setting
>>> MFP_CAPABLE in the hardware capabilities. Please try this patch:
>>
>> Fantastic, thanks for the quick reply! I will do it ASAP and get back to you.
> 
> Unfortunately, looks like in this driver it's not so simple, the
> association is still rejected. I looked at the other drivers too and,
> sure enough, they just set the MFP_CAPABLE flag unconditionally with
> software crypto (I would expect mac80211 to magically handle it, but
> with b43 it doesn't seem to be the case).

It is necessary to load the driver with option nohwcrypt set to 1. I expect that 
you probably did that, but I forgot to mention it.

It would likely help if you can get verbose logs from wpa_supplicant.

Larry


^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-20  0:16       ` Larry Finger
@ 2020-05-20  8:24         ` Rui Salvaterra
  2020-05-20 10:55           ` Rui Salvaterra
  0 siblings, 1 reply; 33+ messages in thread
From: Rui Salvaterra @ 2020-05-20  8:24 UTC (permalink / raw)
  To: Larry Finger; +Cc: linux-wireless, b43-dev

[-- Attachment #1: Type: text/plain, Size: 565 bytes --]

Hi, Larry,

On Wed, 20 May 2020 at 01:16, Larry Finger <Larry.Finger@lwfinger.net> wrote:
>
> It is necessary to load the driver with option nohwcrypt set to 1. I expect that
> you probably did that, but I forgot to mention it.

Yes, of course. I don't use modules, so I pass b43.nohwcrypt=1 in the
kernel command line. I confirmed in sysfs the nohwcrypt parameter is
correctly set to 1.

> It would likely help if you can get verbose logs from wpa_supplicant.

No problem! Attached is a wpa_supplicant -d log. Let me know if you
need extra verbosity.

Thanks,
Rui

[-- Attachment #2: wpa_supplicant.log --]
[-- Type: application/octet-stream, Size: 498520 bytes --]

-- Logs begin at Wed 2020-05-20 09:08:31 WEST, end at Wed 2020-05-20 09:11:07 WEST. --
mai 20 09:08:41 mcnugget systemd[1]: Starting WPA supplicant...
mai 20 09:08:43 mcnugget wpa_supplicant[319]: wpa_supplicant v2.9
mai 20 09:08:44 mcnugget wpa_supplicant[319]: random: getrandom() support available
mai 20 09:08:44 mcnugget wpa_supplicant[319]: dbus: Register D-Bus object '/fi/w1/wpa_supplicant1'
mai 20 09:08:44 mcnugget wpa_supplicant[319]: Providing DBus service 'fi.w1.wpa_supplicant1'.
mai 20 09:08:44 mcnugget wpa_supplicant[319]: Successfully initialized wpa_supplicant
mai 20 09:08:45 mcnugget systemd[1]: Started WPA supplicant.
mai 20 09:08:47 mcnugget wpa_supplicant[319]: Override interface parameter: ctrl_interface ('(null)' -> '/run/wpa_supplicant')
mai 20 09:08:47 mcnugget wpa_supplicant[319]: Initializing interface 'wlan0' conf 'N/A' driver 'nl80211,wext' ctrl_interface '/run/wpa_supplicant' bridge 'N/A'
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Supported cipher 00-0f-ac:1
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Supported cipher 00-0f-ac:5
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Supported cipher 00-0f-ac:2
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Supported cipher 00-0f-ac:4
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Supported cipher 00-0f-ac:10
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Supported cipher 00-0f-ac:8
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Supported cipher 00-0f-ac:9
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Using driver-based off-channel TX
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Driver-advertised extended capabilities (default) - hexdump(len=8): 00 00 00 00 00 00 00 40
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Driver-advertised extended capabilities mask (default) - hexdump(len=8): 00 00 00 00 00 00 00 40
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: interface wlan0 in phy phy0
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Set mode ifindex 3 iftype 2 (STATION)
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Subscribe to mgmt frames with non-AP handle 0x13b3d80
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x13b3d80 match=0104
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x13b3d80 match=040a
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x13b3d80 match=040b
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x13b3d80 match=040c
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x13b3d80 match=040d
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x13b3d80 match=090a
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x13b3d80 match=090b
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x13b3d80 match=090c
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x13b3d80 match=090d
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x13b3d80 match=0409506f9a09
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x13b3d80 match=7f506f9a09
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x13b3d80 match=0409506f9a1a
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x13b3d80 match=0801
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x13b3d80 match=12
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x13b3d80 match=06
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x13b3d80 match=0a07
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x13b3d80 match=0a11
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x13b3d80 match=0a1a
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x13b3d80 match=1101
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x13b3d80 match=1102
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x13b3d80 match=0505
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x13b3d80 match=0500
mai 20 09:08:47 mcnugget wpa_supplicant[319]: rfkill: initial event: idx=0 type=1 op=0 soft=0 hard=0
mai 20 09:08:47 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=1 (userspace-control), operstate=5 (IF_OPER_DORMANT)
mai 20 09:08:47 mcnugget wpa_supplicant[319]: Add interface wlan0 to a new radio phy0
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Regulatory information - country=00
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: 2400-2494 @ 80 MHz 40 mBm
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: 4910-4990 @ 80 MHz 40 mBm
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: 5030-5090 @ 40 MHz 40 mBm
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: 5150-5350 @ 160 MHz 40 mBm
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: 5470-5730 @ 160 MHz 40 mBm
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: 5725-5875 @ 80 MHz 40 mBm
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: 17100-17300 @ 160 MHz 40 mBm
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: 57000-66000 @ 2160 MHz 40 mBm
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Added 802.11b mode based on 802.11g information
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Mode IEEE 802.11g: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Mode IEEE 802.11b: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484
mai 20 09:08:47 mcnugget wpa_supplicant[319]: wlan0: Own MAC address: 00:11:24:c2:dc:7e
mai 20 09:08:47 mcnugget wpa_supplicant[319]: wpa_driver_nl80211_set_key: ifindex=3 (wlan0) alg=0 addr=(nil) key_idx=0 set_tx=0 seq_len=0 key_len=0
mai 20 09:08:47 mcnugget wpa_supplicant[319]: wpa_driver_nl80211_set_key: ifindex=3 (wlan0) alg=0 addr=(nil) key_idx=1 set_tx=0 seq_len=0 key_len=0
mai 20 09:08:47 mcnugget wpa_supplicant[319]: wpa_driver_nl80211_set_key: ifindex=3 (wlan0) alg=0 addr=(nil) key_idx=2 set_tx=0 seq_len=0 key_len=0
mai 20 09:08:47 mcnugget wpa_supplicant[319]: wpa_driver_nl80211_set_key: ifindex=3 (wlan0) alg=0 addr=(nil) key_idx=3 set_tx=0 seq_len=0 key_len=0
mai 20 09:08:47 mcnugget wpa_supplicant[319]: wpa_driver_nl80211_set_key: ifindex=3 (wlan0) alg=0 addr=(nil) key_idx=4 set_tx=0 seq_len=0 key_len=0
mai 20 09:08:47 mcnugget wpa_supplicant[319]: wpa_driver_nl80211_set_key: ifindex=3 (wlan0) alg=0 addr=(nil) key_idx=5 set_tx=0 seq_len=0 key_len=0
mai 20 09:08:47 mcnugget wpa_supplicant[319]: wlan0: RSN: flushing PMKID list in the driver
mai 20 09:08:47 mcnugget wpa_supplicant[319]: nl80211: Flush PMKIDs
mai 20 09:08:47 mcnugget wpa_supplicant[319]: wlan0: State: DISCONNECTED -> INACTIVE
mai 20 09:08:47 mcnugget wpa_supplicant[319]: TDLS: TDLS operation not supported by driver
mai 20 09:08:47 mcnugget wpa_supplicant[319]: TDLS: Driver uses internal link setup
mai 20 09:08:47 mcnugget wpa_supplicant[319]: TDLS: Driver does not support TDLS channel switching
mai 20 09:08:47 mcnugget wpa_supplicant[319]: wlan0: WPS: UUID based on MAC address: 64542ecd-0c0c-5400-a24c-550f0031a571
mai 20 09:08:47 mcnugget wpa_supplicant[319]: ENGINE: Loading builtin engines
mai 20 09:08:47 mcnugget wpa_supplicant[319]: ENGINE: Loading builtin engines
mai 20 09:08:48 mcnugget wpa_supplicant[319]: EAPOL: SUPP_PAE entering state DISCONNECTED
mai 20 09:08:48 mcnugget wpa_supplicant[319]: EAPOL: Supplicant port status: Unauthorized
mai 20 09:08:48 mcnugget wpa_supplicant[319]: nl80211: Skip set_supp_port(unauthorized) while not associated
mai 20 09:08:48 mcnugget wpa_supplicant[319]: EAPOL: KEY_RX entering state NO_KEY_RECEIVE
mai 20 09:08:48 mcnugget wpa_supplicant[319]: EAPOL: SUPP_BE entering state INITIALIZE
mai 20 09:08:48 mcnugget wpa_supplicant[319]: EAP: EAP entering state DISABLED
mai 20 09:08:48 mcnugget wpa_supplicant[319]: dbus: Register interface object '/fi/w1/wpa_supplicant1/Interfaces/0'
mai 20 09:08:48 mcnugget wpa_supplicant[319]: wlan0: Added interface wlan0
mai 20 09:08:48 mcnugget wpa_supplicant[319]: wlan0: State: INACTIVE -> DISCONNECTED
mai 20 09:08:48 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:08:48 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:08:48 mcnugget wpa_supplicant[319]: wlan0: Setting bss expiration age: 250 sec
mai 20 09:08:48 mcnugget wpa_supplicant[319]: wlan0: Setting bss expiration scan count: 2
mai 20 09:08:48 mcnugget wpa_supplicant[319]: pmf=1
mai 20 09:08:48 mcnugget wpa_supplicant[319]: dbus: fill_dict_with_properties dbus_interface=fi.w1.wpa_supplicant1.Interface.P2PDevice dbus_property=P2PDeviceConfig getter failed
mai 20 09:08:48 mcnugget wpa_supplicant[319]: RTM_NEWLINK: ifi_index=3 ifname=wlan0 operstate=33554432 linkmode=16777216 ifi_family=0 ifi_flags=0x1003 ([UP])
mai 20 09:08:48 mcnugget wpa_supplicant[319]: RTM_NEWLINK: ifi_index=3 ifname=wlan0 operstate=33554432 linkmode=16777216 ifi_family=0 ifi_flags=0x1003 ([UP])
mai 20 09:08:48 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'scan'@0x13cab70
mai 20 09:08:48 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:08:48 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'scan'@0x13cab70 after 0.000169 second wait
mai 20 09:08:48 mcnugget wpa_supplicant[319]: wlan0: nl80211: scan request
mai 20 09:08:48 mcnugget wpa_supplicant[319]: Scan requested (ret=0) - scan timeout 10 seconds
mai 20 09:08:48 mcnugget wpa_supplicant[319]: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
mai 20 09:08:48 mcnugget wpa_supplicant[319]: wlan0: nl80211: Scan trigger
mai 20 09:08:48 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_STARTED (47) received
mai 20 09:08:48 mcnugget wpa_supplicant[319]: wlan0: Own scan request started a scan in 0.000155 seconds
mai 20 09:08:49 mcnugget wpa_supplicant[319]: EAPOL: disable timer tick
mai 20 09:08:49 mcnugget wpa_supplicant[319]: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
mai 20 09:08:49 mcnugget wpa_supplicant[319]: wlan0: nl80211: New scan results available
mai 20 09:08:49 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID ''
mai 20 09:08:49 mcnugget wpa_supplicant[319]: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484
mai 20 09:08:49 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_RESULTS (3) received
mai 20 09:08:49 mcnugget wpa_supplicant[319]: wlan0: Scan completed in 1.566276 seconds
mai 20 09:08:49 mcnugget wpa_supplicant[319]: nl80211: Received scan results (15 BSSes)
mai 20 09:08:49 mcnugget wpa_supplicant[319]: wlan0: BSS: Start scan result update 1
mai 20 09:08:49 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 0 BSSID 04:f0:21:24:28:44 SSID 'Salvaterra' freq 2437
mai 20 09:08:49 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/0'
mai 20 09:08:49 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 1 BSSID 20:3d:b2:1d:24:d8 SSID 'SilvaNetwork2G' freq 2427
mai 20 09:08:49 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/1'
mai 20 09:08:49 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 2 BSSID 02:f0:21:24:28:44 SSID 'Salvaterra Guest' freq 2437
mai 20 09:08:49 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/2'
mai 20 09:08:49 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 3 BSSID 06:f0:21:24:28:44 SSID 'Salvaterra Tor' freq 2437
mai 20 09:08:49 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/3'
mai 20 09:08:49 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 4 BSSID 00:05:ca:a7:bd:98 SSID 'ZON-BD90' freq 2442
mai 20 09:08:49 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/4'
mai 20 09:08:49 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 5 BSSID 1c:ab:c0:ef:5d:18 SSID 'NOS-5D10' freq 2447
mai 20 09:08:49 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/5'
mai 20 09:08:49 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 6 BSSID a4:b1:e9:ea:b4:66 SSID 'Casa' freq 2462
mai 20 09:08:49 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/6'
mai 20 09:08:49 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 7 BSSID 2c:a1:7d:55:28:07 SSID 'NOS-2807' freq 2427
mai 20 09:08:49 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/7'
mai 20 09:08:49 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 8 BSSID 12:08:c1:0d:61:d3 SSID 'DIRECT-AP[TV][LG]32LA620S-ZA' freq 2412
mai 20 09:08:49 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/8'
mai 20 09:08:49 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 9 BSSID 00:06:91:5d:93:00 SSID 'MEO-5D9300' freq 2412
mai 20 09:08:49 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/9'
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 10 BSSID 00:13:10:b9:80:71 SSID '\xf0\x9f\x8d\x86\xf0\x9f\x8d\x91\xf0\x9f\x92\xa6\xe2\x9d\x93\xf0\x9f\x98\x8f' freq 2437
mai 20 09:08:50 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/10'
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 11 BSSID 00:05:ca:a7:bd:99 SSID 'NOS_Wi-Fi_Hotspots' freq 2442
mai 20 09:08:50 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/11'
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 12 BSSID a6:b1:e9:ea:b4:67 SSID 'MEO-WiFi' freq 2462
mai 20 09:08:50 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/12'
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 13 BSSID 1c:ab:c0:ef:5d:19 SSID 'NOS_Wi-Fi_Hotspots' freq 2447
mai 20 09:08:50 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/13'
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 14 BSSID 00:06:91:5d:93:02 SSID 'MEO-WiFi' freq 2412
mai 20 09:08:50 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/14'
mai 20 09:08:50 mcnugget wpa_supplicant[319]: BSS: last_scan_res_used=15/32
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Scan-only results received
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Radio work 'scan'@0x13cab70 done in 1.644745 seconds
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('scan'@0x13cab70): num_active_works --> 0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: dbus: Register network object '/fi/w1/wpa_supplicant1/Interfaces/0/Networks/0'
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Scan results matching the currently selected network
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: 2: 02:f0:21:24:28:44 freq=2437 level=-52 snr=37 est_throughput=54000
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Selecting BSS from priority group 0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: 0: 04:f0:21:24:28:44 ssid='Salvaterra' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-36 freq=2437
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: 1: 20:3d:b2:1d:24:d8 ssid='SilvaNetwork2G' wpa_ie_len=26 rsn_ie_len=24 caps=0x1411 level=-47 freq=2427  wps
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: 2: 02:f0:21:24:28:44 ssid='Salvaterra Guest' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-52 freq=2437
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0:    selected based on RSN IE
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0:    selected BSS 02:f0:21:24:28:44 ssid='Salvaterra Guest'
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Considering connect request: reassociate: 1  selected: 02:f0:21:24:28:44  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: DISCONNECTED  ssid=0x13d5430  current_ssid=0x13d5430
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Request association with 02:f0:21:24:28:44
mai 20 09:08:50 mcnugget wpa_supplicant[319]: TDLS: TDLS is allowed in the target BSS
mai 20 09:08:50 mcnugget wpa_supplicant[319]: TDLS: TDLS channel switch allowed in the target BSS
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: No ongoing scan/p2p-scan found to abort
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'sme-connect'@0x13cae50
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'sme-connect'@0x13cae50 after 0.005514 second wait
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing own WPA/RSN IE
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:08:50 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:08:50 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:08:50 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:08:50 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:08:50 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:08:50 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:08:50 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:08:50 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:08:50 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x400
mai 20 09:08:50 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:08:50 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: Selecting supported ECC group 19
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: SME: Selected SAE group 19
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: password - hexdump(len=11): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: PWE derivation - addr1=00:11:24:c2:dc:7e addr2=02:f0:21:24:28:44
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 001
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 002
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 003
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 004
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 005
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 006
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 007
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 008
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 009
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 010
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 011
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 012
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 013
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 014
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 015
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 016
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 017
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 018
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 019
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 020
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 021
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 022
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 023
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 024
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 025
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 026
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 027
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 028
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 029
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 030
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 031
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 032
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 033
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 034
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 035
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 036
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 037
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 038
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 039
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: counter = 040
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: own commit-scalar - hexdump(len=32): 43 6b d7 5d 93 90 8c 49 84 43 c2 39 e2 a7 f9 65 0a 8f 52 ab f0 fd 4f 02 e2 c2 bd 56 ef f8 5f bb
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: own commit-element(x) - hexdump(len=32): eb e7 46 ab ab a6 ed db d4 e0 17 f7 af c8 94 23 b2 3a 06 91 43 46 b5 a5 c9 25 bc b4 72 74 b9 0f
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: own commit-element(y) - hexdump(len=32): 5b 8e 7c 04 1d 9d 5b 33 37 09 d9 9e e9 3b d3 7e 4e 77 ed a6 cf 74 68 47 d0 b7 31 7a 8e 48 33 0c
mai 20 09:08:50 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:08:50 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: State: DISCONNECTED -> AUTHENTICATING
mai 20 09:08:50 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:08:50 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * auth_data - hexdump(len=102): 01 00 00 00 13 00 43 6b d7 5d 93 90 8c 49 84 43 c2 39 e2 a7 f9 65 0a 8f 52 ab f0 fd 4f 02 e2 c2 bd 56 ef f8 5f bb eb e7 46 ab ab a6 ed db d4 e0 17 f7 af c8 94 23 b2 3a 06 91 43 46 b5 a5 c9 25 bc b4 72 74 b9 0f 5b 8e 7c 04 1d 9d 5b 33 37 09 d9 9e e9 3b d3 7e 4e 77 ed a6 cf 74 68 47 d0 b7 31 7a 8e 48 33 0c
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * Auth Type 4
mai 20 09:08:50 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:08:50 mcnugget wpa_supplicant[319]: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: nl80211: New station 02:f0:21:24:28:44
mai 20 09:08:50 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=3 auth_transaction=1 status_code=0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: SME: SAE authentication transaction 1 status code 0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: SME SAE commit
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: Peer commit-scalar - hexdump(len=32): 21 93 72 03 2c 39 00 00 0f fc 45 33 1c 80 4c 10 46 a7 0c 0c 10 00 a8 01 2d d1 6b 8e 1f 6a fe b8
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: Peer commit-element(x) - hexdump(len=32): e7 b1 99 9e d0 71 33 6e ba 1a 72 fa 87 85 8a d1 36 f6 fc d3 32 1d 49 5b 84 d3 51 39 dc fc 4b 0e
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: Peer commit-element(y) - hexdump(len=32): 73 74 a7 7c c0 d5 3a 94 ee 0d fa b2 fd b1 1e 51 3c 11 ab 7e 6d 88 93 01 4c a9 1f a7 ed 40 7b d3
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: Possible elements at the end of the frame - hexdump(len=0):
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: k - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: keyseed - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: PMKID - hexdump(len=16): 64 ff 49 60 bf c9 8c 49 94 40 07 6c ff 28 45 75
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: KCK - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: PMK - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:08:50 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:08:50 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:08:50 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:08:50 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:08:50 mcnugget wpa_supplicant[319]: WPA: Leave previously set WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:08:50 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:08:50 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:08:50 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:08:50 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:08:50 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x400
mai 20 09:08:50 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:08:50 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:08:50 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:08:50 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> AUTHENTICATING
mai 20 09:08:50 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:08:50 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * auth_data - hexdump(len=38): 02 00 00 00 00 00 ad 1c 9f c4 5d f6 34 ee 8d 9b d3 e9 cd 04 73 12 5f 21 5d 1e ed f6 ce fd 72 25 88 ac 7c 32 d7 fa
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * Auth Type 4
mai 20 09:08:50 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:08:50 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=3 auth_transaction=2 status_code=0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: SME: SAE authentication transaction 2 status code 0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: SME SAE confirm
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SAE: peer-send-confirm 0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SME: SAE completed - setting PMK for 4-way handshake
mai 20 09:08:50 mcnugget wpa_supplicant[319]: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
mai 20 09:08:50 mcnugget wpa_supplicant[319]: RSN: Added PMKSA cache entry for 02:f0:21:24:28:44 network_ctx=0x13d5430 akmp=0x400
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: PMKSA-CACHE-ADDED 02:f0:21:24:28:44 0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: nl80211: Add PMKID for 02:f0:21:24:28:44
mai 20 09:08:50 mcnugget wpa_supplicant[319]: nl80211: NL80211_CMD_SET_PMKSA failed: -95 (Operation not supported)
mai 20 09:08:50 mcnugget wpa_supplicant[319]: SME: Association Request IEs - hexdump(len=37): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Trying to associate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> ASSOCIATING
mai 20 09:08:50 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:08:50 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:08:50 mcnugget wpa_supplicant[319]: WPA: set own WPA/RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:08:50 mcnugget wpa_supplicant[319]: nl80211: Associate (ifindex=3)
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=37): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * WPA Versions 0x2
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * pairwise=0xfac04
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * group=0xfac04
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * akm=0xfac08
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * htcaps - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * htcaps_mask - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * vhtcaps - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:50 mcnugget wpa_supplicant[319]:   * vhtcaps_mask - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:50 mcnugget wpa_supplicant[319]: nl80211: Association request send successfully
mai 20 09:08:50 mcnugget wpa_supplicant[319]: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: nl80211: Delete station 02:f0:21:24:28:44
mai 20 09:08:50 mcnugget wpa_supplicant[319]: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: nl80211: Associate event
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Event ASSOC_REJECT (12) received
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=02:f0:21:24:28:44 status_code=31
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: SME: Association with 02:f0:21:24:28:44 failed: status code 31
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wpa_driver_nl80211_deauthenticate(addr=02:f0:21:24:28:44 reason_code=3)
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: SME: Deauth request to the driver failed
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Radio work 'sme-connect'@0x13cae50 done in 0.467961 seconds
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('sme-connect'@0x13cae50): num_active_works --> 0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: Added BSSID 02:f0:21:24:28:44 into blacklist
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Blacklist count 1 --> request scan in 100 ms
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Setting scan request: 0.100000 sec
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: State: ASSOCIATING -> DISCONNECTED
mai 20 09:08:50 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:08:50 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:08:50 mcnugget wpa_supplicant[319]: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: nl80211: Ignore connect event (cmd=46) when using userspace SME
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: State: DISCONNECTED -> SCANNING
mai 20 09:08:50 mcnugget wpa_supplicant[319]: Scan SSID - hexdump(len=16): 53 61 6c 76 61 74 65 72 72 61 20 47 75 65 73 74
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Starting AP scan for wildcard SSID
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'scan'@0x13caa50
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'scan'@0x13caa50 after 0.000061 second wait
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: nl80211: scan request
mai 20 09:08:50 mcnugget wpa_supplicant[319]: Scan requested (ret=0) - scan timeout 30 seconds
mai 20 09:08:50 mcnugget wpa_supplicant[319]: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: nl80211: Scan trigger
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_STARTED (47) received
mai 20 09:08:50 mcnugget wpa_supplicant[319]: wlan0: Own scan request started a scan in 0.000791 seconds
mai 20 09:08:52 mcnugget wpa_supplicant[319]: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: nl80211: New scan results available
mai 20 09:08:52 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID 'Salvaterra Guest'
mai 20 09:08:52 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID ''
mai 20 09:08:52 mcnugget wpa_supplicant[319]: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_RESULTS (3) received
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: Scan completed in 1.539409 seconds
mai 20 09:08:52 mcnugget wpa_supplicant[319]: nl80211: Received scan results (16 BSSes)
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: BSS: Start scan result update 2
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 15 BSSID 84:94:8c:a4:72:79 SSID 'NOS_Wi-Fi_Hotspots' freq 2457
mai 20 09:08:52 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/15'
mai 20 09:08:52 mcnugget wpa_supplicant[319]: BSS: last_scan_res_used=16/32
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: New scan results available (own=1 ext=0)
mai 20 09:08:52 mcnugget wpa_supplicant[319]: WPS: AP 20:3d:b2:1d:24:d8 type 0 added
mai 20 09:08:52 mcnugget wpa_supplicant[319]: WPS: AP 12:08:c1:0d:61:d3 type 0 added
mai 20 09:08:52 mcnugget wpa_supplicant[319]: WPS: AP 00:06:91:5d:93:00 type 0 added
mai 20 09:08:52 mcnugget wpa_supplicant[319]: WPS: AP 00:05:ca:a7:bd:98 type 0 added
mai 20 09:08:52 mcnugget wpa_supplicant[319]: WPS: AP 2c:a1:7d:55:28:07 type 0 added
mai 20 09:08:52 mcnugget wpa_supplicant[319]: WPS: AP a4:b1:e9:ea:b4:66 type 0 added
mai 20 09:08:52 mcnugget wpa_supplicant[319]: WPS: AP[0] 20:3d:b2:1d:24:d8 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:08:52 mcnugget wpa_supplicant[319]: WPS: AP[1] 12:08:c1:0d:61:d3 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:08:52 mcnugget wpa_supplicant[319]: WPS: AP[2] 00:06:91:5d:93:00 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:08:52 mcnugget wpa_supplicant[319]: WPS: AP[3] 00:05:ca:a7:bd:98 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:08:52 mcnugget wpa_supplicant[319]: WPS: AP[4] 2c:a1:7d:55:28:07 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:08:52 mcnugget wpa_supplicant[319]: WPS: AP[5] a4:b1:e9:ea:b4:66 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: Radio work 'scan'@0x13caa50 done in 1.583080 seconds
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('scan'@0x13caa50): num_active_works --> 0
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: Scan results matching the currently selected network
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: Selecting BSS from priority group 0
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 0: 20:3d:b2:1d:24:d8 ssid='SilvaNetwork2G' wpa_ie_len=26 rsn_ie_len=24 caps=0x1411 level=-52 freq=2427  wps
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 1: 12:08:c1:0d:61:d3 ssid='DIRECT-AP[TV][LG]32LA620S-ZA' wpa_ie_len=0 rsn_ie_len=20 caps=0x511 level=-59 freq=2412  wps p2p
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 2: 00:06:91:5d:93:00 ssid='MEO-5D9300' wpa_ie_len=26 rsn_ie_len=24 caps=0x411 level=-59 freq=2412  wps
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 3: 00:05:ca:a7:bd:98 ssid='ZON-BD90' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-69 freq=2442  wps
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 4: 1c:ab:c0:ef:5d:18 ssid='NOS-5D10' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-71 freq=2447
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 5: 2c:a1:7d:55:28:07 ssid='NOS-2807' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-73 freq=2427  wps
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 6: a4:b1:e9:ea:b4:66 ssid='Casa' wpa_ie_len=22 rsn_ie_len=20 caps=0x411 level=-73 freq=2462  wps
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 7: 04:f0:21:24:28:44 ssid='Salvaterra' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-38 freq=2437
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 8: 06:f0:21:24:28:44 ssid='Salvaterra Tor' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-38 freq=2437
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 9: 02:f0:21:24:28:44 ssid='Salvaterra Guest' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-50 freq=2437
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - blacklisted (count=1 limit=0)
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 10: 00:06:91:5d:93:02 ssid='MEO-WiFi' wpa_ie_len=0 rsn_ie_len=0 caps=0x401 level=-59 freq=2412
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 11: 00:05:ca:a7:bd:99 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-64 freq=2442
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 12: 1c:ab:c0:ef:5d:19 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-69 freq=2447
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 13: a6:b1:e9:ea:b4:67 ssid='MEO-WiFi' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-69 freq=2462
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 14: 84:94:8c:a4:72:79 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-83 freq=2457
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 15: 00:13:10:b9:80:71 ssid='\xf0\x9f\x8d\x86\xf0\x9f\x8d\x91\xf0\x9f\x92\xa6\xe2\x9d\x93\xf0\x9f\x98\x8f' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-40 freq=2437
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: No APs found - clear blacklist and try again
mai 20 09:08:52 mcnugget wpa_supplicant[319]: Removed BSSID 02:f0:21:24:28:44 from blacklist (clear)
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: Scan results matching the currently selected network
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 9: 02:f0:21:24:28:44 freq=2437 level=-50 snr=-50 est_throughput=1000
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: Selecting BSS from priority group 0
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 0: 20:3d:b2:1d:24:d8 ssid='SilvaNetwork2G' wpa_ie_len=26 rsn_ie_len=24 caps=0x1411 level=-52 freq=2427  wps
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 1: 12:08:c1:0d:61:d3 ssid='DIRECT-AP[TV][LG]32LA620S-ZA' wpa_ie_len=0 rsn_ie_len=20 caps=0x511 level=-59 freq=2412  wps p2p
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 2: 00:06:91:5d:93:00 ssid='MEO-5D9300' wpa_ie_len=26 rsn_ie_len=24 caps=0x411 level=-59 freq=2412  wps
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 3: 00:05:ca:a7:bd:98 ssid='ZON-BD90' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-69 freq=2442  wps
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 4: 1c:ab:c0:ef:5d:18 ssid='NOS-5D10' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-71 freq=2447
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 5: 2c:a1:7d:55:28:07 ssid='NOS-2807' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-73 freq=2427  wps
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 6: a4:b1:e9:ea:b4:66 ssid='Casa' wpa_ie_len=22 rsn_ie_len=20 caps=0x411 level=-73 freq=2462  wps
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 7: 04:f0:21:24:28:44 ssid='Salvaterra' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-38 freq=2437
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 8: 06:f0:21:24:28:44 ssid='Salvaterra Tor' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-38 freq=2437
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: 9: 02:f0:21:24:28:44 ssid='Salvaterra Guest' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-50 freq=2437
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    selected based on RSN IE
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0:    selected BSS 02:f0:21:24:28:44 ssid='Salvaterra Guest'
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: Considering connect request: reassociate: 0  selected: 02:f0:21:24:28:44  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid=0x13d5430  current_ssid=0x13d5430
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: Request association with 02:f0:21:24:28:44
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: Re-association to the same ESS
mai 20 09:08:52 mcnugget wpa_supplicant[319]: WMM AC: Save last configured tspecs
mai 20 09:08:52 mcnugget wpa_supplicant[319]: TDLS: TDLS is allowed in the target BSS
mai 20 09:08:52 mcnugget wpa_supplicant[319]: TDLS: TDLS channel switch allowed in the target BSS
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: No ongoing scan/p2p-scan found to abort
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'sme-connect'@0x13caa50
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'sme-connect'@0x13caa50 after 0.045305 second wait
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing own WPA/RSN IE
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:08:52 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x0
mai 20 09:08:52 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:08:52 mcnugget wpa_supplicant[319]: RSN: PMKSA cache entry found - PMKID - hexdump(len=16): 64 ff 49 60 bf c9 8c 49 94 40 07 6c ff 28 45 75
mai 20 09:08:52 mcnugget wpa_supplicant[319]: RSN: Trying to use cached PMKSA
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:08:52 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:08:52 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=40): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 64 ff 49 60 bf c9 8c 49 94 40 07 6c ff 28 45 75
mai 20 09:08:52 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:08:52 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:08:52 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:08:52 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:08:52 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x400
mai 20 09:08:52 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:08:52 mcnugget wpa_supplicant[319]: RSN: PMKSA cache entry found - PMKID - hexdump(len=16): 64 ff 49 60 bf c9 8c 49 94 40 07 6c ff 28 45 75
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: PMKSA cache entry found - try to use PMKSA caching instead of new SAE authentication
mai 20 09:08:52 mcnugget wpa_supplicant[319]: WPA: Set PMK based on current PMKSA - hexdump(len=32): [REMOVED]
mai 20 09:08:52 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:08:52 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:08:52 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:08:52 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: State: SCANNING -> AUTHENTICATING
mai 20 09:08:52 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:08:52 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:08:52 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:08:52 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:08:52 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:08:52 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:08:52 mcnugget wpa_supplicant[319]:   * Auth Type 0
mai 20 09:08:52 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:08:52 mcnugget wpa_supplicant[319]: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
mai 20 09:08:52 mcnugget wpa_supplicant[319]: nl80211: New station 02:f0:21:24:28:44
mai 20 09:08:52 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:08:52 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=0 auth_transaction=2 status_code=0
mai 20 09:08:52 mcnugget wpa_supplicant[319]: SME: Association Request IEs - hexdump(len=55): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 64 ff 49 60 bf c9 8c 49 94 40 07 6c ff 28 45 75 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: Trying to associate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:08:52 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> ASSOCIATING
mai 20 09:08:52 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:08:52 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:08:52 mcnugget wpa_supplicant[319]: WPA: set own WPA/RSN IE - hexdump(len=40): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 64 ff 49 60 bf c9 8c 49 94 40 07 6c ff 28 45 75
mai 20 09:08:52 mcnugget wpa_supplicant[319]: nl80211: Associate (ifindex=3)
mai 20 09:08:52 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:08:52 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:08:52 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:08:52 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=55): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 64 ff 49 60 bf c9 8c 49 94 40 07 6c ff 28 45 75 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:08:52 mcnugget wpa_supplicant[319]:   * WPA Versions 0x2
mai 20 09:08:52 mcnugget wpa_supplicant[319]:   * pairwise=0xfac04
mai 20 09:08:52 mcnugget wpa_supplicant[319]:   * group=0xfac04
mai 20 09:08:52 mcnugget wpa_supplicant[319]:   * akm=0xfac08
mai 20 09:08:52 mcnugget wpa_supplicant[319]:   * htcaps - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:52 mcnugget wpa_supplicant[319]:   * htcaps_mask - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:52 mcnugget wpa_supplicant[319]:   * vhtcaps - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:52 mcnugget wpa_supplicant[319]:   * vhtcaps_mask - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:52 mcnugget wpa_supplicant[319]: nl80211: Association request send successfully
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Delete station 02:f0:21:24:28:44
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Associate event
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Event ASSOC_REJECT (12) received
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=02:f0:21:24:28:44 status_code=31
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: SME: Association with 02:f0:21:24:28:44 failed: status code 31
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: PMKSA caching attempt rejected - drop PMKSA cache entry and fall back to SAE authentication
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: RSN: Cancelling PMKSA caching attempt
mai 20 09:08:53 mcnugget wpa_supplicant[319]: RSN: Flush PMKSA cache entry for 02:f0:21:24:28:44
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: PMKSA-CACHE-REMOVED 02:f0:21:24:28:44 0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Delete PMKID for 02:f0:21:24:28:44
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: NL80211_CMD_DEL_PMKSA failed: -95 (Operation not supported)
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: RSN: PMKSA cache entry free_cb: 02:f0:21:24:28:44 reason=0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wpa_driver_nl80211_deauthenticate(addr=02:f0:21:24:28:44 reason_code=3)
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Radio work 'sme-connect'@0x13caa50 done in 0.807903 seconds
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('sme-connect'@0x13caa50): num_active_works --> 0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Data frame filter flags=0x0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: State: ASSOCIATING -> DISCONNECTED
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:08:53 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:08:53 mcnugget wpa_supplicant[319]: EAPOL: External notification - portEnabled=0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Considering connect request: reassociate: 0  selected: 02:f0:21:24:28:44  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: DISCONNECTED  ssid=0x13d5430  current_ssid=(nil)
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Request association with 02:f0:21:24:28:44
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Re-association to the same ESS
mai 20 09:08:53 mcnugget wpa_supplicant[319]: TDLS: TDLS is allowed in the target BSS
mai 20 09:08:53 mcnugget wpa_supplicant[319]: TDLS: TDLS channel switch allowed in the target BSS
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: No ongoing scan/p2p-scan found to abort
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'sme-connect'@0x13d75a0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'sme-connect'@0x13d75a0 after 0.000070 second wait
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing own WPA/RSN IE
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:08:53 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=(nil) try_opportunistic=0 akmp=0x0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:08:53 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:08:53 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:08:53 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:08:53 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:08:53 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:08:53 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:08:53 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:08:53 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x400
mai 20 09:08:53 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:08:53 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: Selecting supported ECC group 19
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: SME: Selected SAE group 19
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: password - hexdump(len=11): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: PWE derivation - addr1=00:11:24:c2:dc:7e addr2=02:f0:21:24:28:44
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 001
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 002
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 003
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 004
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 005
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 006
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 007
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 008
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 009
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 010
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 011
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 012
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 013
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 014
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 015
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 016
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 017
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 018
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 019
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 020
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 021
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 022
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 023
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 024
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 025
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 026
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 027
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 028
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 029
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 030
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 031
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 032
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 033
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 034
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 035
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 036
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 037
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 038
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 039
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: counter = 040
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: own commit-scalar - hexdump(len=32): 70 ce 05 fd 90 92 e7 22 22 33 5b 47 5d 1e 4d 60 a6 03 84 23 e5 65 cc 93 59 ac 08 a6 24 98 cd b2
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: own commit-element(x) - hexdump(len=32): 71 86 73 56 cb 17 1f 2d 7c 56 67 cc 8a 22 d5 15 aa 49 87 d6 49 20 7f 7f 6f de 39 60 db dd 41 58
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: own commit-element(y) - hexdump(len=32): 44 89 2d 94 e7 21 f1 11 4d e9 26 45 9e 4b 7f 2c 3d e1 c3 b9 a2 d8 35 64 e6 6e cf 96 90 de c1 3e
mai 20 09:08:53 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:08:53 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: State: DISCONNECTED -> AUTHENTICATING
mai 20 09:08:53 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * auth_data - hexdump(len=102): 01 00 00 00 13 00 70 ce 05 fd 90 92 e7 22 22 33 5b 47 5d 1e 4d 60 a6 03 84 23 e5 65 cc 93 59 ac 08 a6 24 98 cd b2 71 86 73 56 cb 17 1f 2d 7c 56 67 cc 8a 22 d5 15 aa 49 87 d6 49 20 7f 7f 6f de 39 60 db dd 41 58 44 89 2d 94 e7 21 f1 11 4d e9 26 45 9e 4b 7f 2c 3d e1 c3 b9 a2 d8 35 64 e6 6e cf 96 90 de c1 3e
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * Auth Type 4
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Ignore connect event (cmd=46) when using userspace SME
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: New station 02:f0:21:24:28:44
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=3 auth_transaction=1 status_code=0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: SME: SAE authentication transaction 1 status code 0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: SME SAE commit
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: Peer commit-scalar - hexdump(len=32): 0b 41 67 9d 50 4b f1 df 4c 60 d0 40 65 d6 20 4b 98 0f a8 ba ee 75 5e 09 f2 e1 5f 7e 09 94 f2 d9
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: Peer commit-element(x) - hexdump(len=32): b4 f1 80 a6 92 e9 0e 61 6d cd dc 07 af 6a 07 23 02 6a f8 7f 66 80 29 35 c4 eb 7d 4d 13 fc a2 16
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: Peer commit-element(y) - hexdump(len=32): cb f9 72 b8 a8 9f ad fc a2 1c d7 0f ea a4 6a b3 f1 13 c5 51 5c c3 55 da 2f 71 06 51 22 60 2e 19
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: Possible elements at the end of the frame - hexdump(len=0):
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: k - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: keyseed - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: PMKID - hexdump(len=16): 7c 0f 6d 9a e0 de d9 01 6e 94 2b 87 c2 f4 6d ac
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: KCK - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: PMK - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:08:53 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:08:53 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:08:53 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:08:53 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:08:53 mcnugget wpa_supplicant[319]: WPA: Leave previously set WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:08:53 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:08:53 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:08:53 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:08:53 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:08:53 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x400
mai 20 09:08:53 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:08:53 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:08:53 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:08:53 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> AUTHENTICATING
mai 20 09:08:53 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * auth_data - hexdump(len=38): 02 00 00 00 00 00 b1 14 75 28 f4 58 82 f3 e2 e0 b9 df fc d5 d5 d2 b9 e4 4c 96 9b d9 56 d6 cc 0d 3a 82 f4 e2 07 f1
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * Auth Type 4
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=3 auth_transaction=2 status_code=0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: SME: SAE authentication transaction 2 status code 0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: SME SAE confirm
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SAE: peer-send-confirm 65535
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SME: SAE completed - setting PMK for 4-way handshake
mai 20 09:08:53 mcnugget wpa_supplicant[319]: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
mai 20 09:08:53 mcnugget wpa_supplicant[319]: RSN: Added PMKSA cache entry for 02:f0:21:24:28:44 network_ctx=0x13d5430 akmp=0x400
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: PMKSA-CACHE-ADDED 02:f0:21:24:28:44 0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Add PMKID for 02:f0:21:24:28:44
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: NL80211_CMD_SET_PMKSA failed: -95 (Operation not supported)
mai 20 09:08:53 mcnugget wpa_supplicant[319]: SME: Association Request IEs - hexdump(len=37): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Trying to associate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> ASSOCIATING
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:08:53 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:08:53 mcnugget wpa_supplicant[319]: WPA: set own WPA/RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Associate (ifindex=3)
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=37): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * WPA Versions 0x2
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * pairwise=0xfac04
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * group=0xfac04
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * akm=0xfac08
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * htcaps - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * htcaps_mask - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * vhtcaps - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:53 mcnugget wpa_supplicant[319]:   * vhtcaps_mask - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Association request send successfully
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Delete station 02:f0:21:24:28:44
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Associate event
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Event ASSOC_REJECT (12) received
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=02:f0:21:24:28:44 status_code=31
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: SME: Association with 02:f0:21:24:28:44 failed: status code 31
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wpa_driver_nl80211_deauthenticate(addr=02:f0:21:24:28:44 reason_code=3)
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: SME: Deauth request to the driver failed
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Radio work 'sme-connect'@0x13d75a0 done in 0.708626 seconds
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('sme-connect'@0x13d75a0): num_active_works --> 0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: Added BSSID 02:f0:21:24:28:44 into blacklist
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Blacklist count 2 --> request scan in 500 ms
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: Setting scan request: 0.500000 sec
mai 20 09:08:53 mcnugget wpa_supplicant[319]: wlan0: State: ASSOCIATING -> DISCONNECTED
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:08:53 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan0
mai 20 09:08:53 mcnugget wpa_supplicant[319]: nl80211: Ignore connect event (cmd=46) when using userspace SME
mai 20 09:08:54 mcnugget wpa_supplicant[319]: wlan0: State: DISCONNECTED -> SCANNING
mai 20 09:08:54 mcnugget wpa_supplicant[319]: Scan SSID - hexdump(len=16): 53 61 6c 76 61 74 65 72 72 61 20 47 75 65 73 74
mai 20 09:08:54 mcnugget wpa_supplicant[319]: wlan0: Starting AP scan for wildcard SSID
mai 20 09:08:54 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'scan'@0x13d3e30
mai 20 09:08:54 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:08:54 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'scan'@0x13d3e30 after 0.000062 second wait
mai 20 09:08:54 mcnugget wpa_supplicant[319]: wlan0: nl80211: scan request
mai 20 09:08:54 mcnugget wpa_supplicant[319]: Scan requested (ret=0) - scan timeout 30 seconds
mai 20 09:08:54 mcnugget wpa_supplicant[319]: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
mai 20 09:08:54 mcnugget wpa_supplicant[319]: wlan0: nl80211: Scan trigger
mai 20 09:08:54 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_STARTED (47) received
mai 20 09:08:54 mcnugget wpa_supplicant[319]: wlan0: Own scan request started a scan in 0.000172 seconds
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: nl80211: New scan results available
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID 'Salvaterra Guest'
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID ''
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_RESULTS (3) received
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Scan completed in 1.597808 seconds
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Received scan results (19 BSSes)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: BSS: Start scan result update 3
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 16 BSSID 2c:a1:7d:68:cc:25 SSID 'NOS-CC25' freq 2462
mai 20 09:08:56 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/16'
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 17 BSSID bc:4d:fb:50:62:68 SSID 'NOS-6260' freq 2437
mai 20 09:08:56 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/17'
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 18 BSSID 30:91:8f:92:5e:49 SSID 'MEO-925E49' freq 2437
mai 20 09:08:56 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/18'
mai 20 09:08:56 mcnugget wpa_supplicant[319]: BSS: last_scan_res_used=19/32
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: New scan results available (own=1 ext=0)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: WPS: AP 2c:a1:7d:68:cc:25 type 0 added
mai 20 09:08:56 mcnugget wpa_supplicant[319]: WPS: AP 30:91:8f:92:5e:49 type 0 added
mai 20 09:08:56 mcnugget wpa_supplicant[319]: WPS: AP[0] 20:3d:b2:1d:24:d8 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: WPS: AP[1] 12:08:c1:0d:61:d3 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: WPS: AP[2] 00:06:91:5d:93:00 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: WPS: AP[3] 00:05:ca:a7:bd:98 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: WPS: AP[4] 2c:a1:7d:55:28:07 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: WPS: AP[5] a4:b1:e9:ea:b4:66 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: WPS: AP[6] 2c:a1:7d:68:cc:25 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: WPS: AP[7] 30:91:8f:92:5e:49 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Radio work 'scan'@0x13d3e30 done in 1.622301 seconds
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('scan'@0x13d3e30): num_active_works --> 0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Scan results matching the currently selected network
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Selecting BSS from priority group 0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 0: 20:3d:b2:1d:24:d8 ssid='SilvaNetwork2G' wpa_ie_len=26 rsn_ie_len=24 caps=0x1411 level=-45 freq=2427  wps
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 1: 00:06:91:5d:93:00 ssid='MEO-5D9300' wpa_ie_len=26 rsn_ie_len=24 caps=0x411 level=-57 freq=2412  wps
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 2: 00:05:ca:a7:bd:98 ssid='ZON-BD90' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-62 freq=2442  wps
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 3: 1c:ab:c0:ef:5d:18 ssid='NOS-5D10' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-69 freq=2447
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 4: a4:b1:e9:ea:b4:66 ssid='Casa' wpa_ie_len=22 rsn_ie_len=20 caps=0x411 level=-71 freq=2462  wps
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 5: 2c:a1:7d:55:28:07 ssid='NOS-2807' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-73 freq=2427  wps
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 6: 12:08:c1:0d:61:d3 ssid='DIRECT-AP[TV][LG]32LA620S-ZA' wpa_ie_len=0 rsn_ie_len=20 caps=0x511 level=-76 freq=2412  wps p2p
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 7: 2c:a1:7d:68:cc:25 ssid='NOS-CC25' wpa_ie_len=0 rsn_ie_len=24 caps=0x431 level=-80 freq=2462  wps
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 8: 02:f0:21:24:28:44 ssid='Salvaterra Guest' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-36 freq=2437
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - blacklisted (count=1 limit=0)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 9: 04:f0:21:24:28:44 ssid='Salvaterra' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-38 freq=2437
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 10: 06:f0:21:24:28:44 ssid='Salvaterra Tor' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-40 freq=2437
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 11: bc:4d:fb:50:62:68 ssid='NOS-6260' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-76 freq=2437
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 12: 30:91:8f:92:5e:49 ssid='MEO-925E49' wpa_ie_len=22 rsn_ie_len=20 caps=0x411 level=-78 freq=2437  wps
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 13: 00:06:91:5d:93:02 ssid='MEO-WiFi' wpa_ie_len=0 rsn_ie_len=0 caps=0x401 level=-61 freq=2412
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 14: 1c:ab:c0:ef:5d:19 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-73 freq=2447
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 15: a6:b1:e9:ea:b4:67 ssid='MEO-WiFi' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-73 freq=2462
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 16: 00:05:ca:a7:bd:99 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-79 freq=2442
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 17: 84:94:8c:a4:72:79 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-83 freq=2457
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 18: 00:13:10:b9:80:71 ssid='\xf0\x9f\x8d\x86\xf0\x9f\x8d\x91\xf0\x9f\x92\xa6\xe2\x9d\x93\xf0\x9f\x98\x8f' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-40 freq=2437
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: No APs found - clear blacklist and try again
mai 20 09:08:56 mcnugget wpa_supplicant[319]: Removed BSSID 02:f0:21:24:28:44 from blacklist (clear)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Scan results matching the currently selected network
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 8: 02:f0:21:24:28:44 freq=2437 level=-36 snr=-36 est_throughput=1000
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Selecting BSS from priority group 0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 0: 20:3d:b2:1d:24:d8 ssid='SilvaNetwork2G' wpa_ie_len=26 rsn_ie_len=24 caps=0x1411 level=-45 freq=2427  wps
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 1: 00:06:91:5d:93:00 ssid='MEO-5D9300' wpa_ie_len=26 rsn_ie_len=24 caps=0x411 level=-57 freq=2412  wps
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 2: 00:05:ca:a7:bd:98 ssid='ZON-BD90' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-62 freq=2442  wps
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 3: 1c:ab:c0:ef:5d:18 ssid='NOS-5D10' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-69 freq=2447
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 4: a4:b1:e9:ea:b4:66 ssid='Casa' wpa_ie_len=22 rsn_ie_len=20 caps=0x411 level=-71 freq=2462  wps
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 5: 2c:a1:7d:55:28:07 ssid='NOS-2807' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-73 freq=2427  wps
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 6: 12:08:c1:0d:61:d3 ssid='DIRECT-AP[TV][LG]32LA620S-ZA' wpa_ie_len=0 rsn_ie_len=20 caps=0x511 level=-76 freq=2412  wps p2p
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 7: 2c:a1:7d:68:cc:25 ssid='NOS-CC25' wpa_ie_len=0 rsn_ie_len=24 caps=0x431 level=-80 freq=2462  wps
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: 8: 02:f0:21:24:28:44 ssid='Salvaterra Guest' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-36 freq=2437
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    selected based on RSN IE
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0:    selected BSS 02:f0:21:24:28:44 ssid='Salvaterra Guest'
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Considering connect request: reassociate: 0  selected: 02:f0:21:24:28:44  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid=0x13d5430  current_ssid=0x13d5430
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Request association with 02:f0:21:24:28:44
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Re-association to the same ESS
mai 20 09:08:56 mcnugget wpa_supplicant[319]: WMM AC: Save last configured tspecs
mai 20 09:08:56 mcnugget wpa_supplicant[319]: TDLS: TDLS is allowed in the target BSS
mai 20 09:08:56 mcnugget wpa_supplicant[319]: TDLS: TDLS channel switch allowed in the target BSS
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: No ongoing scan/p2p-scan found to abort
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'sme-connect'@0x13d41b0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'sme-connect'@0x13d41b0 after 0.029951 second wait
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing own WPA/RSN IE
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RSN: PMKSA cache entry found - PMKID - hexdump(len=16): 7c 0f 6d 9a e0 de d9 01 6e 94 2b 87 c2 f4 6d ac
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RSN: Trying to use cached PMKSA
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:08:56 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:08:56 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=40): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 7c 0f 6d 9a e0 de d9 01 6e 94 2b 87 c2 f4 6d ac
mai 20 09:08:56 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:08:56 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x400
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RSN: PMKSA cache entry found - PMKID - hexdump(len=16): 7c 0f 6d 9a e0 de d9 01 6e 94 2b 87 c2 f4 6d ac
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: PMKSA cache entry found - try to use PMKSA caching instead of new SAE authentication
mai 20 09:08:56 mcnugget wpa_supplicant[319]: WPA: Set PMK based on current PMKSA - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: State: SCANNING -> AUTHENTICATING
mai 20 09:08:56 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * Auth Type 0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: New station 02:f0:21:24:28:44
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=0 auth_transaction=2 status_code=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SME: Association Request IEs - hexdump(len=55): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 7c 0f 6d 9a e0 de d9 01 6e 94 2b 87 c2 f4 6d ac 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Trying to associate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> ASSOCIATING
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: WPA: set own WPA/RSN IE - hexdump(len=40): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 7c 0f 6d 9a e0 de d9 01 6e 94 2b 87 c2 f4 6d ac
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Associate (ifindex=3)
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=55): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 7c 0f 6d 9a e0 de d9 01 6e 94 2b 87 c2 f4 6d ac 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * WPA Versions 0x2
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * pairwise=0xfac04
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * group=0xfac04
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * akm=0xfac08
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * htcaps - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * htcaps_mask - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * vhtcaps - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * vhtcaps_mask - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Association request send successfully
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Delete station 02:f0:21:24:28:44
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Associate event
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Event ASSOC_REJECT (12) received
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=02:f0:21:24:28:44 status_code=31
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: SME: Association with 02:f0:21:24:28:44 failed: status code 31
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: PMKSA caching attempt rejected - drop PMKSA cache entry and fall back to SAE authentication
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: RSN: Cancelling PMKSA caching attempt
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RSN: Flush PMKSA cache entry for 02:f0:21:24:28:44
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: PMKSA-CACHE-REMOVED 02:f0:21:24:28:44 0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Delete PMKID for 02:f0:21:24:28:44
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: NL80211_CMD_DEL_PMKSA failed: -95 (Operation not supported)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: RSN: PMKSA cache entry free_cb: 02:f0:21:24:28:44 reason=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wpa_driver_nl80211_deauthenticate(addr=02:f0:21:24:28:44 reason_code=3)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Radio work 'sme-connect'@0x13d41b0 done in 0.325714 seconds
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('sme-connect'@0x13d41b0): num_active_works --> 0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Data frame filter flags=0x0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: State: ASSOCIATING -> DISCONNECTED
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: EAPOL: External notification - portEnabled=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Considering connect request: reassociate: 0  selected: 02:f0:21:24:28:44  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: DISCONNECTED  ssid=0x13d5430  current_ssid=(nil)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Request association with 02:f0:21:24:28:44
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Re-association to the same ESS
mai 20 09:08:56 mcnugget wpa_supplicant[319]: TDLS: TDLS is allowed in the target BSS
mai 20 09:08:56 mcnugget wpa_supplicant[319]: TDLS: TDLS channel switch allowed in the target BSS
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: No ongoing scan/p2p-scan found to abort
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'sme-connect'@0x13dd540
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'sme-connect'@0x13dd540 after 0.000081 second wait
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing own WPA/RSN IE
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=(nil) try_opportunistic=0 akmp=0x0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:08:56 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:08:56 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:08:56 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:08:56 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x400
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: Selecting supported ECC group 19
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: SME: Selected SAE group 19
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: password - hexdump(len=11): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: PWE derivation - addr1=00:11:24:c2:dc:7e addr2=02:f0:21:24:28:44
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 001
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 002
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 003
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 004
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 005
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 006
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 007
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 008
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 009
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 010
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 011
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 012
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 013
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 014
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 015
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 016
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 017
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 018
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 019
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 020
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 021
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 022
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 023
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 024
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 025
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 026
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 027
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 028
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 029
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 030
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 031
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 032
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 033
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 034
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 035
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 036
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 037
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 038
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 039
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: counter = 040
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: own commit-scalar - hexdump(len=32): 2c cb 93 a6 bd b9 53 9f 01 5a 88 10 59 2b 32 6b 49 ce 14 66 8b 61 ad 41 fd f9 c4 03 ba 40 4c 6e
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: own commit-element(x) - hexdump(len=32): 5f c4 87 29 60 97 04 47 29 c6 1e 84 e2 e0 67 a2 80 7f 88 2a 66 26 80 e4 b5 d5 21 28 c2 c6 ed 4e
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: own commit-element(y) - hexdump(len=32): f2 92 94 78 13 e0 66 3e ed 95 c7 0e e7 0b de a3 db b6 c7 c6 21 f3 0d 8e cf e5 86 6c 2e 56 92 47
mai 20 09:08:56 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: State: DISCONNECTED -> AUTHENTICATING
mai 20 09:08:56 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * auth_data - hexdump(len=102): 01 00 00 00 13 00 2c cb 93 a6 bd b9 53 9f 01 5a 88 10 59 2b 32 6b 49 ce 14 66 8b 61 ad 41 fd f9 c4 03 ba 40 4c 6e 5f c4 87 29 60 97 04 47 29 c6 1e 84 e2 e0 67 a2 80 7f 88 2a 66 26 80 e4 b5 d5 21 28 c2 c6 ed 4e f2 92 94 78 13 e0 66 3e ed 95 c7 0e e7 0b de a3 db b6 c7 c6 21 f3 0d 8e cf e5 86 6c 2e 56 92 47
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * Auth Type 4
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Ignore connect event (cmd=46) when using userspace SME
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: New station 02:f0:21:24:28:44
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=3 auth_transaction=1 status_code=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: SME: SAE authentication transaction 1 status code 0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: SME SAE commit
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: Peer commit-scalar - hexdump(len=32): e1 ff 59 d2 69 4e be bc d8 8b 74 df 31 df 45 e2 d2 5b 5b c8 17 4f 3c 99 78 98 ba 26 28 ed 8a 54
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: Peer commit-element(x) - hexdump(len=32): 8f ca 1a bf 9e ac c5 e4 5f 44 a8 63 3c 1b 49 d1 3a af f6 08 c6 39 d1 b4 cc f6 05 30 95 5e f4 d6
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: Peer commit-element(y) - hexdump(len=32): 2d 0c 01 13 89 fd 01 d4 25 51 1f 4b 0f 0d 87 06 93 a4 fc e5 62 9a 71 8c 3e 70 47 4e 2a 15 9b 4b
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: Possible elements at the end of the frame - hexdump(len=0):
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: k - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: keyseed - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: PMKID - hexdump(len=16): 0e ca ed 7a 27 08 12 5a d9 e5 fc ef 8b 0a 78 4e
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: KCK - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: PMK - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:08:56 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:08:56 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:08:56 mcnugget wpa_supplicant[319]: WPA: Leave previously set WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:08:56 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:08:56 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x400
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:08:56 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> AUTHENTICATING
mai 20 09:08:56 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * auth_data - hexdump(len=38): 02 00 00 00 00 00 a4 37 47 ad 0f f1 31 b9 66 f1 36 5f 10 40 0b 1f 06 80 b6 9a 67 2c 6f 4c 83 98 83 45 84 fd ca f3
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * Auth Type 4
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=3 auth_transaction=2 status_code=0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: SME: SAE authentication transaction 2 status code 0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: SME SAE confirm
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SAE: peer-send-confirm 65535
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SME: SAE completed - setting PMK for 4-way handshake
mai 20 09:08:56 mcnugget wpa_supplicant[319]: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
mai 20 09:08:56 mcnugget wpa_supplicant[319]: RSN: Added PMKSA cache entry for 02:f0:21:24:28:44 network_ctx=0x13d5430 akmp=0x400
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: PMKSA-CACHE-ADDED 02:f0:21:24:28:44 0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Add PMKID for 02:f0:21:24:28:44
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: NL80211_CMD_SET_PMKSA failed: -95 (Operation not supported)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: SME: Association Request IEs - hexdump(len=37): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Trying to associate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> ASSOCIATING
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: WPA: set own WPA/RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Associate (ifindex=3)
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=37): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * WPA Versions 0x2
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * pairwise=0xfac04
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * group=0xfac04
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * akm=0xfac08
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * htcaps - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * htcaps_mask - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * vhtcaps - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:56 mcnugget wpa_supplicant[319]:   * vhtcaps_mask - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Association request send successfully
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Delete station 02:f0:21:24:28:44
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Associate event
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Event ASSOC_REJECT (12) received
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=02:f0:21:24:28:44 status_code=31
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: SME: Association with 02:f0:21:24:28:44 failed: status code 31
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wpa_driver_nl80211_deauthenticate(addr=02:f0:21:24:28:44 reason_code=3)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: SME: Deauth request to the driver failed
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Radio work 'sme-connect'@0x13dd540 done in 0.488890 seconds
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('sme-connect'@0x13dd540): num_active_works --> 0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: Added BSSID 02:f0:21:24:28:44 into blacklist
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Blacklist count 3 --> request scan in 1000 ms
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: Setting scan request: 1.000000 sec
mai 20 09:08:56 mcnugget wpa_supplicant[319]: wlan0: State: ASSOCIATING -> DISCONNECTED
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan0
mai 20 09:08:56 mcnugget wpa_supplicant[319]: nl80211: Ignore connect event (cmd=46) when using userspace SME
mai 20 09:08:57 mcnugget wpa_supplicant[319]: wlan0: State: DISCONNECTED -> SCANNING
mai 20 09:08:57 mcnugget wpa_supplicant[319]: Scan SSID - hexdump(len=16): 53 61 6c 76 61 74 65 72 72 61 20 47 75 65 73 74
mai 20 09:08:57 mcnugget wpa_supplicant[319]: wlan0: Starting AP scan for wildcard SSID
mai 20 09:08:57 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'scan'@0x13d7570
mai 20 09:08:57 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:08:57 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'scan'@0x13d7570 after 0.000062 second wait
mai 20 09:08:57 mcnugget wpa_supplicant[319]: wlan0: nl80211: scan request
mai 20 09:08:57 mcnugget wpa_supplicant[319]: Scan requested (ret=0) - scan timeout 30 seconds
mai 20 09:08:57 mcnugget wpa_supplicant[319]: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
mai 20 09:08:57 mcnugget wpa_supplicant[319]: wlan0: nl80211: Scan trigger
mai 20 09:08:57 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_STARTED (47) received
mai 20 09:08:57 mcnugget wpa_supplicant[319]: wlan0: Own scan request started a scan in 0.000161 seconds
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: nl80211: New scan results available
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID 'Salvaterra Guest'
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID ''
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_RESULTS (3) received
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Scan completed in 1.536894 seconds
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Received scan results (21 BSSes)
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: BSS: Start scan result update 4
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 19 BSSID bc:4d:fb:50:62:69 SSID 'NOS_Wi-Fi_Hotspots' freq 2437
mai 20 09:08:59 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/19'
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 20 BSSID 32:91:8f:92:5e:4a SSID 'MEO-WiFi' freq 2437
mai 20 09:08:59 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/20'
mai 20 09:08:59 mcnugget wpa_supplicant[319]: BSS: last_scan_res_used=21/32
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: New scan results available (own=1 ext=0)
mai 20 09:08:59 mcnugget wpa_supplicant[319]: WPS: AP[0] 20:3d:b2:1d:24:d8 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: WPS: AP[1] 12:08:c1:0d:61:d3 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: WPS: AP[2] 00:06:91:5d:93:00 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: WPS: AP[3] 00:05:ca:a7:bd:98 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: WPS: AP[4] 2c:a1:7d:55:28:07 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: WPS: AP[5] a4:b1:e9:ea:b4:66 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: WPS: AP[6] 2c:a1:7d:68:cc:25 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: WPS: AP[7] 30:91:8f:92:5e:49 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Radio work 'scan'@0x13d7570 done in 1.559540 seconds
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('scan'@0x13d7570): num_active_works --> 0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Scan results matching the currently selected network
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Selecting BSS from priority group 0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 0: 20:3d:b2:1d:24:d8 ssid='SilvaNetwork2G' wpa_ie_len=26 rsn_ie_len=24 caps=0x1411 level=-54 freq=2427  wps
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 1: 12:08:c1:0d:61:d3 ssid='DIRECT-AP[TV][LG]32LA620S-ZA' wpa_ie_len=0 rsn_ie_len=20 caps=0x511 level=-57 freq=2412  wps p2p
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 2: 00:06:91:5d:93:00 ssid='MEO-5D9300' wpa_ie_len=26 rsn_ie_len=24 caps=0x411 level=-57 freq=2412  wps
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 3: 1c:ab:c0:ef:5d:18 ssid='NOS-5D10' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-68 freq=2447
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 4: a4:b1:e9:ea:b4:66 ssid='Casa' wpa_ie_len=22 rsn_ie_len=20 caps=0x411 level=-71 freq=2462  wps
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 5: 2c:a1:7d:55:28:07 ssid='NOS-2807' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-73 freq=2427  wps
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 6: 2c:a1:7d:68:cc:25 ssid='NOS-CC25' wpa_ie_len=0 rsn_ie_len=24 caps=0x431 level=-78 freq=2462  wps
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 7: 00:05:ca:a7:bd:98 ssid='ZON-BD90' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-79 freq=2442  wps
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 8: 06:f0:21:24:28:44 ssid='Salvaterra Tor' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-38 freq=2437
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 9: 02:f0:21:24:28:44 ssid='Salvaterra Guest' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-38 freq=2437
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - blacklisted (count=1 limit=0)
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 10: 04:f0:21:24:28:44 ssid='Salvaterra' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-40 freq=2437
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 11: 30:91:8f:92:5e:49 ssid='MEO-925E49' wpa_ie_len=22 rsn_ie_len=20 caps=0x411 level=-78 freq=2437  wps
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 12: bc:4d:fb:50:62:68 ssid='NOS-6260' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-80 freq=2437
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 13: 00:06:91:5d:93:02 ssid='MEO-WiFi' wpa_ie_len=0 rsn_ie_len=0 caps=0x401 level=-61 freq=2412
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 14: 1c:ab:c0:ef:5d:19 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-71 freq=2447
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 15: a6:b1:e9:ea:b4:67 ssid='MEO-WiFi' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-71 freq=2462
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 16: 00:05:ca:a7:bd:99 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-79 freq=2442
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 17: 84:94:8c:a4:72:79 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-83 freq=2457
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 18: 00:13:10:b9:80:71 ssid='\xf0\x9f\x8d\x86\xf0\x9f\x8d\x91\xf0\x9f\x92\xa6\xe2\x9d\x93\xf0\x9f\x98\x8f' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-31 freq=2437
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 19: bc:4d:fb:50:62:69 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-80 freq=2437
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 20: 32:91:8f:92:5e:4a ssid='MEO-WiFi' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-83 freq=2437
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: No APs found - clear blacklist and try again
mai 20 09:08:59 mcnugget wpa_supplicant[319]: Removed BSSID 02:f0:21:24:28:44 from blacklist (clear)
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Scan results matching the currently selected network
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 9: 02:f0:21:24:28:44 freq=2437 level=-38 snr=-38 est_throughput=1000
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Selecting BSS from priority group 0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 0: 20:3d:b2:1d:24:d8 ssid='SilvaNetwork2G' wpa_ie_len=26 rsn_ie_len=24 caps=0x1411 level=-54 freq=2427  wps
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 1: 12:08:c1:0d:61:d3 ssid='DIRECT-AP[TV][LG]32LA620S-ZA' wpa_ie_len=0 rsn_ie_len=20 caps=0x511 level=-57 freq=2412  wps p2p
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 2: 00:06:91:5d:93:00 ssid='MEO-5D9300' wpa_ie_len=26 rsn_ie_len=24 caps=0x411 level=-57 freq=2412  wps
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 3: 1c:ab:c0:ef:5d:18 ssid='NOS-5D10' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-68 freq=2447
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 4: a4:b1:e9:ea:b4:66 ssid='Casa' wpa_ie_len=22 rsn_ie_len=20 caps=0x411 level=-71 freq=2462  wps
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 5: 2c:a1:7d:55:28:07 ssid='NOS-2807' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-73 freq=2427  wps
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 6: 2c:a1:7d:68:cc:25 ssid='NOS-CC25' wpa_ie_len=0 rsn_ie_len=24 caps=0x431 level=-78 freq=2462  wps
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 7: 00:05:ca:a7:bd:98 ssid='ZON-BD90' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-79 freq=2442  wps
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 8: 06:f0:21:24:28:44 ssid='Salvaterra Tor' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-38 freq=2437
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: 9: 02:f0:21:24:28:44 ssid='Salvaterra Guest' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-38 freq=2437
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    selected based on RSN IE
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0:    selected BSS 02:f0:21:24:28:44 ssid='Salvaterra Guest'
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Considering connect request: reassociate: 0  selected: 02:f0:21:24:28:44  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid=0x13d5430  current_ssid=0x13d5430
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Request association with 02:f0:21:24:28:44
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Re-association to the same ESS
mai 20 09:08:59 mcnugget wpa_supplicant[319]: WMM AC: Save last configured tspecs
mai 20 09:08:59 mcnugget wpa_supplicant[319]: TDLS: TDLS is allowed in the target BSS
mai 20 09:08:59 mcnugget wpa_supplicant[319]: TDLS: TDLS channel switch allowed in the target BSS
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: No ongoing scan/p2p-scan found to abort
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'sme-connect'@0x13d7570
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'sme-connect'@0x13d7570 after 0.050575 second wait
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing own WPA/RSN IE
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:08:59 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:08:59 mcnugget wpa_supplicant[319]: RSN: PMKSA cache entry found - PMKID - hexdump(len=16): 0e ca ed 7a 27 08 12 5a d9 e5 fc ef 8b 0a 78 4e
mai 20 09:08:59 mcnugget wpa_supplicant[319]: RSN: Trying to use cached PMKSA
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:08:59 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:08:59 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=40): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 0e ca ed 7a 27 08 12 5a d9 e5 fc ef 8b 0a 78 4e
mai 20 09:08:59 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:08:59 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:08:59 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:08:59 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:08:59 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x400
mai 20 09:08:59 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:08:59 mcnugget wpa_supplicant[319]: RSN: PMKSA cache entry found - PMKID - hexdump(len=16): 0e ca ed 7a 27 08 12 5a d9 e5 fc ef 8b 0a 78 4e
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: PMKSA cache entry found - try to use PMKSA caching instead of new SAE authentication
mai 20 09:08:59 mcnugget wpa_supplicant[319]: WPA: Set PMK based on current PMKSA - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:08:59 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: State: SCANNING -> AUTHENTICATING
mai 20 09:08:59 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:08:59 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:08:59 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:08:59 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:08:59 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:08:59 mcnugget wpa_supplicant[319]:   * Auth Type 0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: New station 02:f0:21:24:28:44
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=0 auth_transaction=2 status_code=0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SME: Association Request IEs - hexdump(len=55): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 0e ca ed 7a 27 08 12 5a d9 e5 fc ef 8b 0a 78 4e 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Trying to associate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> ASSOCIATING
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:08:59 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:08:59 mcnugget wpa_supplicant[319]: WPA: set own WPA/RSN IE - hexdump(len=40): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 0e ca ed 7a 27 08 12 5a d9 e5 fc ef 8b 0a 78 4e
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Associate (ifindex=3)
mai 20 09:08:59 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:08:59 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:08:59 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:08:59 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=55): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 0e ca ed 7a 27 08 12 5a d9 e5 fc ef 8b 0a 78 4e 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:08:59 mcnugget wpa_supplicant[319]:   * WPA Versions 0x2
mai 20 09:08:59 mcnugget wpa_supplicant[319]:   * pairwise=0xfac04
mai 20 09:08:59 mcnugget wpa_supplicant[319]:   * group=0xfac04
mai 20 09:08:59 mcnugget wpa_supplicant[319]:   * akm=0xfac08
mai 20 09:08:59 mcnugget wpa_supplicant[319]:   * htcaps - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:59 mcnugget wpa_supplicant[319]:   * htcaps_mask - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:59 mcnugget wpa_supplicant[319]:   * vhtcaps - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:59 mcnugget wpa_supplicant[319]:   * vhtcaps_mask - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Association request send successfully
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Delete station 02:f0:21:24:28:44
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Associate event
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Event ASSOC_REJECT (12) received
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=02:f0:21:24:28:44 status_code=31
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: SME: Association with 02:f0:21:24:28:44 failed: status code 31
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: PMKSA caching attempt rejected - drop PMKSA cache entry and fall back to SAE authentication
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: RSN: Cancelling PMKSA caching attempt
mai 20 09:08:59 mcnugget wpa_supplicant[319]: RSN: Flush PMKSA cache entry for 02:f0:21:24:28:44
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: PMKSA-CACHE-REMOVED 02:f0:21:24:28:44 0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Delete PMKID for 02:f0:21:24:28:44
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: NL80211_CMD_DEL_PMKSA failed: -95 (Operation not supported)
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: RSN: PMKSA cache entry free_cb: 02:f0:21:24:28:44 reason=0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wpa_driver_nl80211_deauthenticate(addr=02:f0:21:24:28:44 reason_code=3)
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Radio work 'sme-connect'@0x13d7570 done in 0.275072 seconds
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('sme-connect'@0x13d7570): num_active_works --> 0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Data frame filter flags=0x0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: State: ASSOCIATING -> DISCONNECTED
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:08:59 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:08:59 mcnugget wpa_supplicant[319]: EAPOL: External notification - portEnabled=0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Considering connect request: reassociate: 0  selected: 02:f0:21:24:28:44  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: DISCONNECTED  ssid=0x13d5430  current_ssid=(nil)
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Request association with 02:f0:21:24:28:44
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Re-association to the same ESS
mai 20 09:08:59 mcnugget wpa_supplicant[319]: TDLS: TDLS is allowed in the target BSS
mai 20 09:08:59 mcnugget wpa_supplicant[319]: TDLS: TDLS channel switch allowed in the target BSS
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: No ongoing scan/p2p-scan found to abort
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'sme-connect'@0x13d7570
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'sme-connect'@0x13d7570 after 0.000067 second wait
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing own WPA/RSN IE
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:08:59 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=(nil) try_opportunistic=0 akmp=0x0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:08:59 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:08:59 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:08:59 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:08:59 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:08:59 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:08:59 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:08:59 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:08:59 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x400
mai 20 09:08:59 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:08:59 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: Selecting supported ECC group 19
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: SME: Selected SAE group 19
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: password - hexdump(len=11): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: PWE derivation - addr1=00:11:24:c2:dc:7e addr2=02:f0:21:24:28:44
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 001
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 002
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 003
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 004
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 005
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 006
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 007
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 008
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 009
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 010
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 011
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 012
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 013
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 014
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 015
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 016
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 017
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 018
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 019
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 020
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 021
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 022
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 023
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 024
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 025
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 026
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 027
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 028
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 029
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 030
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 031
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 032
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 033
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 034
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 035
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 036
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 037
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 038
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 039
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: counter = 040
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: own commit-scalar - hexdump(len=32): 7f e3 ae 3f 58 fc 37 5b 42 00 30 3a af 2d 42 02 af 17 d7 2e 9e 97 10 f9 a8 5b c9 cf 78 12 0e 70
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: own commit-element(x) - hexdump(len=32): 2e 76 6a 25 44 3d d5 07 a0 0b 7a a5 2a e3 5a d4 49 49 8d ff a9 b9 0a bf 41 12 fe e2 03 0e b3 59
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: own commit-element(y) - hexdump(len=32): c7 29 7a 4f 62 8d 7e 8e d5 01 bf 93 ea c0 c8 77 f6 f6 90 ef d3 89 8e 27 bf b2 6c 11 e4 d7 cb 02
mai 20 09:08:59 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:08:59 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: State: DISCONNECTED -> AUTHENTICATING
mai 20 09:08:59 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:08:59 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:08:59 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:08:59 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:08:59 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:08:59 mcnugget wpa_supplicant[319]:   * auth_data - hexdump(len=102): 01 00 00 00 13 00 7f e3 ae 3f 58 fc 37 5b 42 00 30 3a af 2d 42 02 af 17 d7 2e 9e 97 10 f9 a8 5b c9 cf 78 12 0e 70 2e 76 6a 25 44 3d d5 07 a0 0b 7a a5 2a e3 5a d4 49 49 8d ff a9 b9 0a bf 41 12 fe e2 03 0e b3 59 c7 29 7a 4f 62 8d 7e 8e d5 01 bf 93 ea c0 c8 77 f6 f6 90 ef d3 89 8e 27 bf b2 6c 11 e4 d7 cb 02
mai 20 09:08:59 mcnugget wpa_supplicant[319]:   * Auth Type 4
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Ignore connect event (cmd=46) when using userspace SME
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: New station 02:f0:21:24:28:44
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=3 auth_transaction=1 status_code=0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: SME: SAE authentication transaction 1 status code 0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: wlan0: SME SAE commit
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: Peer commit-scalar - hexdump(len=32): 32 66 89 ad f3 79 00 e8 ba 5d 89 dc 81 cf ce d2 0d 10 29 37 33 9c 07 c8 3b 37 d9 e0 9a fb 41 a0
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: Peer commit-element(x) - hexdump(len=32): 3a 93 fe 2e 8a 0d 02 21 79 40 1f ce 1f 1b a1 87 82 e1 74 af 2a 63 a1 2b b3 4e 59 92 4a 08 59 84
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: Peer commit-element(y) - hexdump(len=32): 6c cc 28 a7 97 ab 41 7e 90 1d 55 b5 4c a6 e3 a3 ce ac 45 bb 44 57 fa 92 d8 f1 01 eb f5 fc 86 a4
mai 20 09:08:59 mcnugget wpa_supplicant[319]: SAE: Possible elements at the end of the frame - hexdump(len=0):
mai 20 09:09:00 mcnugget wpa_supplicant[319]: SAE: k - hexdump(len=32): [REMOVED]
mai 20 09:09:00 mcnugget wpa_supplicant[319]: SAE: keyseed - hexdump(len=32): [REMOVED]
mai 20 09:09:00 mcnugget wpa_supplicant[319]: SAE: PMKID - hexdump(len=16): b2 4a 37 ed 4c 75 38 43 fc 5d ba 17 30 fd 10 d4
mai 20 09:09:00 mcnugget wpa_supplicant[319]: SAE: KCK - hexdump(len=32): [REMOVED]
mai 20 09:09:00 mcnugget wpa_supplicant[319]: SAE: PMK - hexdump(len=32): [REMOVED]
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:09:00 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x0
mai 20 09:09:00 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:00 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:09:00 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:09:00 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:09:00 mcnugget wpa_supplicant[319]: WPA: Leave previously set WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:09:00 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:09:00 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:09:00 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:09:00 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:09:00 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x400
mai 20 09:09:00 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:00 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:09:00 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:09:00 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:09:00 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:09:00 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> AUTHENTICATING
mai 20 09:09:00 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:09:00 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:09:00 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:09:00 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:09:00 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:09:00 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:09:00 mcnugget wpa_supplicant[319]:   * auth_data - hexdump(len=38): 02 00 00 00 00 00 58 46 d3 38 9d 49 8c 27 59 63 39 c7 a7 ea 80 47 70 f7 31 65 7c 6b b4 db 94 0c e7 e9 da de ed fb
mai 20 09:09:00 mcnugget wpa_supplicant[319]:   * Auth Type 4
mai 20 09:09:00 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:09:00 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:09:00 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=3 auth_transaction=2 status_code=0
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: SME: SAE authentication transaction 2 status code 0
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: SME SAE confirm
mai 20 09:09:00 mcnugget wpa_supplicant[319]: SAE: peer-send-confirm 65535
mai 20 09:09:00 mcnugget wpa_supplicant[319]: SME: SAE completed - setting PMK for 4-way handshake
mai 20 09:09:00 mcnugget wpa_supplicant[319]: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
mai 20 09:09:00 mcnugget wpa_supplicant[319]: RSN: Added PMKSA cache entry for 02:f0:21:24:28:44 network_ctx=0x13d5430 akmp=0x400
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: PMKSA-CACHE-ADDED 02:f0:21:24:28:44 0
mai 20 09:09:00 mcnugget wpa_supplicant[319]: nl80211: Add PMKID for 02:f0:21:24:28:44
mai 20 09:09:00 mcnugget wpa_supplicant[319]: nl80211: NL80211_CMD_SET_PMKSA failed: -95 (Operation not supported)
mai 20 09:09:00 mcnugget wpa_supplicant[319]: SME: Association Request IEs - hexdump(len=37): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: Trying to associate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> ASSOCIATING
mai 20 09:09:00 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:09:00 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:09:00 mcnugget wpa_supplicant[319]: WPA: set own WPA/RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:09:00 mcnugget wpa_supplicant[319]: nl80211: Associate (ifindex=3)
mai 20 09:09:00 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:09:00 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:09:00 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:09:00 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=37): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:09:00 mcnugget wpa_supplicant[319]:   * WPA Versions 0x2
mai 20 09:09:00 mcnugget wpa_supplicant[319]:   * pairwise=0xfac04
mai 20 09:09:00 mcnugget wpa_supplicant[319]:   * group=0xfac04
mai 20 09:09:00 mcnugget wpa_supplicant[319]:   * akm=0xfac08
mai 20 09:09:00 mcnugget wpa_supplicant[319]:   * htcaps - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:00 mcnugget wpa_supplicant[319]:   * htcaps_mask - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:00 mcnugget wpa_supplicant[319]:   * vhtcaps - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:00 mcnugget wpa_supplicant[319]:   * vhtcaps_mask - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:00 mcnugget wpa_supplicant[319]: nl80211: Association request send successfully
mai 20 09:09:00 mcnugget wpa_supplicant[319]: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0
mai 20 09:09:00 mcnugget wpa_supplicant[319]: nl80211: Delete station 02:f0:21:24:28:44
mai 20 09:09:00 mcnugget wpa_supplicant[319]: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan0
mai 20 09:09:00 mcnugget wpa_supplicant[319]: nl80211: Associate event
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: Event ASSOC_REJECT (12) received
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=02:f0:21:24:28:44 status_code=31
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: SME: Association with 02:f0:21:24:28:44 failed: status code 31
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wpa_driver_nl80211_deauthenticate(addr=02:f0:21:24:28:44 reason_code=3)
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: SME: Deauth request to the driver failed
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: Radio work 'sme-connect'@0x13d7570 done in 0.441370 seconds
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('sme-connect'@0x13d7570): num_active_works --> 0
mai 20 09:09:00 mcnugget wpa_supplicant[319]: Added BSSID 02:f0:21:24:28:44 into blacklist
mai 20 09:09:00 mcnugget wpa_supplicant[319]: Continuous association failures - consider temporary network disabling
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="Salvaterra Guest" auth_failures=1 duration=10 reason=CONN_FAILED
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: Blacklist count 4 --> request scan in 5000 ms
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: Setting scan request: 5.000000 sec
mai 20 09:09:00 mcnugget wpa_supplicant[319]: wlan0: State: ASSOCIATING -> DISCONNECTED
mai 20 09:09:00 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:09:00 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:09:00 mcnugget wpa_supplicant[319]: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan0
mai 20 09:09:00 mcnugget wpa_supplicant[319]: nl80211: Ignore connect event (cmd=46) when using userspace SME
mai 20 09:09:05 mcnugget wpa_supplicant[319]: wlan0: State: DISCONNECTED -> SCANNING
mai 20 09:09:05 mcnugget wpa_supplicant[319]: Scan SSID - hexdump(len=16): 53 61 6c 76 61 74 65 72 72 61 20 47 75 65 73 74
mai 20 09:09:05 mcnugget wpa_supplicant[319]: wlan0: Starting AP scan for wildcard SSID
mai 20 09:09:05 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'scan'@0x13d68a0
mai 20 09:09:05 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:09:05 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'scan'@0x13d68a0 after 0.000059 second wait
mai 20 09:09:05 mcnugget wpa_supplicant[319]: wlan0: nl80211: scan request
mai 20 09:09:05 mcnugget wpa_supplicant[319]: Scan requested (ret=0) - scan timeout 30 seconds
mai 20 09:09:05 mcnugget wpa_supplicant[319]: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
mai 20 09:09:05 mcnugget wpa_supplicant[319]: wlan0: nl80211: Scan trigger
mai 20 09:09:05 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_STARTED (47) received
mai 20 09:09:05 mcnugget wpa_supplicant[319]: wlan0: Own scan request started a scan in 0.000157 seconds
mai 20 09:09:06 mcnugget wpa_supplicant[319]: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
mai 20 09:09:06 mcnugget wpa_supplicant[319]: wlan0: nl80211: New scan results available
mai 20 09:09:06 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID 'Salvaterra Guest'
mai 20 09:09:06 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID ''
mai 20 09:09:06 mcnugget wpa_supplicant[319]: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484
mai 20 09:09:06 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_RESULTS (3) received
mai 20 09:09:06 mcnugget wpa_supplicant[319]: wlan0: Scan completed in 1.574303 seconds
mai 20 09:09:06 mcnugget wpa_supplicant[319]: nl80211: Received scan results (22 BSSes)
mai 20 09:09:06 mcnugget wpa_supplicant[319]: wlan0: BSS: Start scan result update 5
mai 20 09:09:06 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 21 BSSID bc:75:36:b6:69:52 SSID 'MB Hotspot 15264 2.4 GHz' freq 2412
mai 20 09:09:06 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/21'
mai 20 09:09:06 mcnugget wpa_supplicant[319]: BSS: last_scan_res_used=22/32
mai 20 09:09:06 mcnugget wpa_supplicant[319]: wlan0: New scan results available (own=1 ext=0)
mai 20 09:09:06 mcnugget wpa_supplicant[319]: WPS: AP[0] 20:3d:b2:1d:24:d8 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:06 mcnugget wpa_supplicant[319]: WPS: AP[1] 12:08:c1:0d:61:d3 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:06 mcnugget wpa_supplicant[319]: WPS: AP[2] 00:06:91:5d:93:00 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:06 mcnugget wpa_supplicant[319]: WPS: AP[3] 00:05:ca:a7:bd:98 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:06 mcnugget wpa_supplicant[319]: WPS: AP[4] 2c:a1:7d:55:28:07 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:06 mcnugget wpa_supplicant[319]: WPS: AP[5] a4:b1:e9:ea:b4:66 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:06 mcnugget wpa_supplicant[319]: WPS: AP[6] 2c:a1:7d:68:cc:25 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:06 mcnugget wpa_supplicant[319]: WPS: AP[7] 30:91:8f:92:5e:49 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:06 mcnugget wpa_supplicant[319]: wlan0: Radio work 'scan'@0x13d68a0 done in 1.593505 seconds
mai 20 09:09:06 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('scan'@0x13d68a0): num_active_works --> 0
mai 20 09:09:06 mcnugget wpa_supplicant[319]: wlan0: Postpone network selection by 3 seconds since all networks are disabled
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: Try to associate due to network getting re-enabled
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-SSID-REENABLED id=0 ssid="Salvaterra Guest"
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: Scan results matching the currently selected network
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: Selecting BSS from priority group 0
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 0: 20:3d:b2:1d:24:d8 ssid='SilvaNetwork2G' wpa_ie_len=26 rsn_ie_len=24 caps=0x1411 level=-54 freq=2427  wps
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 1: 12:08:c1:0d:61:d3 ssid='DIRECT-AP[TV][LG]32LA620S-ZA' wpa_ie_len=0 rsn_ie_len=20 caps=0x511 level=-57 freq=2412  wps p2p
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 2: 00:06:91:5d:93:00 ssid='MEO-5D9300' wpa_ie_len=26 rsn_ie_len=24 caps=0x411 level=-59 freq=2412  wps
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 3: 00:05:ca:a7:bd:98 ssid='ZON-BD90' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-69 freq=2442  wps
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 4: 1c:ab:c0:ef:5d:18 ssid='NOS-5D10' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-69 freq=2447
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 5: a4:b1:e9:ea:b4:66 ssid='Casa' wpa_ie_len=22 rsn_ie_len=20 caps=0x411 level=-71 freq=2462  wps
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 6: 2c:a1:7d:55:28:07 ssid='NOS-2807' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-73 freq=2427  wps
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 7: 2c:a1:7d:68:cc:25 ssid='NOS-CC25' wpa_ie_len=0 rsn_ie_len=24 caps=0x431 level=-78 freq=2462  wps
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 8: bc:75:36:b6:69:52 ssid='MB Hotspot 15264 2.4 GHz' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-80 freq=2412
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 9: 04:f0:21:24:28:44 ssid='Salvaterra' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-38 freq=2437
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 10: 06:f0:21:24:28:44 ssid='Salvaterra Tor' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-40 freq=2437
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 11: 02:f0:21:24:28:44 ssid='Salvaterra Guest' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-40 freq=2437
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - blacklisted (count=1 limit=0)
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 12: bc:4d:fb:50:62:68 ssid='NOS-6260' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-80 freq=2437
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 13: 30:91:8f:92:5e:49 ssid='MEO-925E49' wpa_ie_len=22 rsn_ie_len=20 caps=0x411 level=-83 freq=2437  wps
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 14: 00:06:91:5d:93:02 ssid='MEO-WiFi' wpa_ie_len=0 rsn_ie_len=0 caps=0x401 level=-59 freq=2412
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 15: 00:05:ca:a7:bd:99 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-69 freq=2442
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 16: 1c:ab:c0:ef:5d:19 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-71 freq=2447
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 17: a6:b1:e9:ea:b4:67 ssid='MEO-WiFi' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-71 freq=2462
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 18: 84:94:8c:a4:72:79 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-83 freq=2457
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 19: 00:13:10:b9:80:71 ssid='\xf0\x9f\x8d\x86\xf0\x9f\x8d\x91\xf0\x9f\x92\xa6\xe2\x9d\x93\xf0\x9f\x98\x8f' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-36 freq=2437
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 20: bc:4d:fb:50:62:69 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-80 freq=2437
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 21: 32:91:8f:92:5e:4a ssid='MEO-WiFi' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-80 freq=2437
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: No APs found - clear blacklist and try again
mai 20 09:09:09 mcnugget wpa_supplicant[319]: Removed BSSID 02:f0:21:24:28:44 from blacklist (clear)
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: Scan results matching the currently selected network
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 11: 02:f0:21:24:28:44 freq=2437 level=-40 snr=-40 est_throughput=1000
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: Selecting BSS from priority group 0
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 0: 20:3d:b2:1d:24:d8 ssid='SilvaNetwork2G' wpa_ie_len=26 rsn_ie_len=24 caps=0x1411 level=-54 freq=2427  wps
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 1: 12:08:c1:0d:61:d3 ssid='DIRECT-AP[TV][LG]32LA620S-ZA' wpa_ie_len=0 rsn_ie_len=20 caps=0x511 level=-57 freq=2412  wps p2p
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 2: 00:06:91:5d:93:00 ssid='MEO-5D9300' wpa_ie_len=26 rsn_ie_len=24 caps=0x411 level=-59 freq=2412  wps
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 3: 00:05:ca:a7:bd:98 ssid='ZON-BD90' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-69 freq=2442  wps
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 4: 1c:ab:c0:ef:5d:18 ssid='NOS-5D10' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-69 freq=2447
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 5: a4:b1:e9:ea:b4:66 ssid='Casa' wpa_ie_len=22 rsn_ie_len=20 caps=0x411 level=-71 freq=2462  wps
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 6: 2c:a1:7d:55:28:07 ssid='NOS-2807' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-73 freq=2427  wps
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 7: 2c:a1:7d:68:cc:25 ssid='NOS-CC25' wpa_ie_len=0 rsn_ie_len=24 caps=0x431 level=-78 freq=2462  wps
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 8: bc:75:36:b6:69:52 ssid='MB Hotspot 15264 2.4 GHz' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-80 freq=2412
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 9: 04:f0:21:24:28:44 ssid='Salvaterra' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-38 freq=2437
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 10: 06:f0:21:24:28:44 ssid='Salvaterra Tor' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-40 freq=2437
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: 11: 02:f0:21:24:28:44 ssid='Salvaterra Guest' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-40 freq=2437
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    selected based on RSN IE
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0:    selected BSS 02:f0:21:24:28:44 ssid='Salvaterra Guest'
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: Considering connect request: reassociate: 0  selected: 02:f0:21:24:28:44  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid=0x13d5430  current_ssid=0x13d5430
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: Request association with 02:f0:21:24:28:44
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: Re-association to the same ESS
mai 20 09:09:09 mcnugget wpa_supplicant[319]: WMM AC: Save last configured tspecs
mai 20 09:09:09 mcnugget wpa_supplicant[319]: TDLS: TDLS is allowed in the target BSS
mai 20 09:09:09 mcnugget wpa_supplicant[319]: TDLS: TDLS channel switch allowed in the target BSS
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: No ongoing scan/p2p-scan found to abort
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'sme-connect'@0x13e9a90
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'sme-connect'@0x13e9a90 after 0.000043 second wait
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing own WPA/RSN IE
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:09:09 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x0
mai 20 09:09:09 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:09 mcnugget wpa_supplicant[319]: RSN: PMKSA cache entry found - PMKID - hexdump(len=16): b2 4a 37 ed 4c 75 38 43 fc 5d ba 17 30 fd 10 d4
mai 20 09:09:09 mcnugget wpa_supplicant[319]: RSN: Trying to use cached PMKSA
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:09:09 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:09:09 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=40): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 b2 4a 37 ed 4c 75 38 43 fc 5d ba 17 30 fd 10 d4
mai 20 09:09:09 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:09:09 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:09:09 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:09:09 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:09:09 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x400
mai 20 09:09:09 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:09 mcnugget wpa_supplicant[319]: RSN: PMKSA cache entry found - PMKID - hexdump(len=16): b2 4a 37 ed 4c 75 38 43 fc 5d ba 17 30 fd 10 d4
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: PMKSA cache entry found - try to use PMKSA caching instead of new SAE authentication
mai 20 09:09:09 mcnugget wpa_supplicant[319]: WPA: Set PMK based on current PMKSA - hexdump(len=32): [REMOVED]
mai 20 09:09:09 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:09:09 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:09:09 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:09:09 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: State: SCANNING -> AUTHENTICATING
mai 20 09:09:09 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:09:09 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:09:09 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:09:09 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:09:09 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:09:09 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:09:09 mcnugget wpa_supplicant[319]:   * Auth Type 0
mai 20 09:09:09 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:09:09 mcnugget wpa_supplicant[319]: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
mai 20 09:09:09 mcnugget wpa_supplicant[319]: nl80211: New station 02:f0:21:24:28:44
mai 20 09:09:09 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:09:09 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=0 auth_transaction=2 status_code=0
mai 20 09:09:09 mcnugget wpa_supplicant[319]: SME: Association Request IEs - hexdump(len=55): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 b2 4a 37 ed 4c 75 38 43 fc 5d ba 17 30 fd 10 d4 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: Trying to associate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:09:09 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> ASSOCIATING
mai 20 09:09:09 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:09:09 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:09:09 mcnugget wpa_supplicant[319]: WPA: set own WPA/RSN IE - hexdump(len=40): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 b2 4a 37 ed 4c 75 38 43 fc 5d ba 17 30 fd 10 d4
mai 20 09:09:09 mcnugget wpa_supplicant[319]: nl80211: Associate (ifindex=3)
mai 20 09:09:09 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:09:09 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:09:09 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:09:09 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=55): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 b2 4a 37 ed 4c 75 38 43 fc 5d ba 17 30 fd 10 d4 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:09:09 mcnugget wpa_supplicant[319]:   * WPA Versions 0x2
mai 20 09:09:09 mcnugget wpa_supplicant[319]:   * pairwise=0xfac04
mai 20 09:09:09 mcnugget wpa_supplicant[319]:   * group=0xfac04
mai 20 09:09:09 mcnugget wpa_supplicant[319]:   * akm=0xfac08
mai 20 09:09:09 mcnugget wpa_supplicant[319]:   * htcaps - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:09 mcnugget wpa_supplicant[319]:   * htcaps_mask - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:09 mcnugget wpa_supplicant[319]:   * vhtcaps - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:09 mcnugget wpa_supplicant[319]:   * vhtcaps_mask - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:09 mcnugget wpa_supplicant[319]: nl80211: Association request send successfully
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Delete station 02:f0:21:24:28:44
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Associate event
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Event ASSOC_REJECT (12) received
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=02:f0:21:24:28:44 status_code=31
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: SME: Association with 02:f0:21:24:28:44 failed: status code 31
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: PMKSA caching attempt rejected - drop PMKSA cache entry and fall back to SAE authentication
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: RSN: Cancelling PMKSA caching attempt
mai 20 09:09:10 mcnugget wpa_supplicant[319]: RSN: Flush PMKSA cache entry for 02:f0:21:24:28:44
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: PMKSA-CACHE-REMOVED 02:f0:21:24:28:44 0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Delete PMKID for 02:f0:21:24:28:44
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: NL80211_CMD_DEL_PMKSA failed: -95 (Operation not supported)
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: RSN: PMKSA cache entry free_cb: 02:f0:21:24:28:44 reason=0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wpa_driver_nl80211_deauthenticate(addr=02:f0:21:24:28:44 reason_code=3)
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Radio work 'sme-connect'@0x13e9a90 done in 0.279584 seconds
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('sme-connect'@0x13e9a90): num_active_works --> 0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Data frame filter flags=0x0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: State: ASSOCIATING -> DISCONNECTED
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:09:10 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:09:10 mcnugget wpa_supplicant[319]: EAPOL: External notification - portEnabled=0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Considering connect request: reassociate: 0  selected: 02:f0:21:24:28:44  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: DISCONNECTED  ssid=0x13d5430  current_ssid=(nil)
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Request association with 02:f0:21:24:28:44
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Re-association to the same ESS
mai 20 09:09:10 mcnugget wpa_supplicant[319]: TDLS: TDLS is allowed in the target BSS
mai 20 09:09:10 mcnugget wpa_supplicant[319]: TDLS: TDLS channel switch allowed in the target BSS
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: No ongoing scan/p2p-scan found to abort
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'sme-connect'@0x13e9a90
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'sme-connect'@0x13e9a90 after 0.000073 second wait
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing own WPA/RSN IE
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:09:10 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=(nil) try_opportunistic=0 akmp=0x0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:10 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:09:10 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:09:10 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:09:10 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:09:10 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:09:10 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:09:10 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:09:10 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x400
mai 20 09:09:10 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:10 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: Selecting supported ECC group 19
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: SME: Selected SAE group 19
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: password - hexdump(len=11): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: PWE derivation - addr1=00:11:24:c2:dc:7e addr2=02:f0:21:24:28:44
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 001
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 002
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 003
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 004
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 005
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 006
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 007
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 008
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 009
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 010
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 011
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 012
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 013
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 014
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 015
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 016
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 017
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 018
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 019
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 020
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 021
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 022
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 023
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 024
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 025
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 026
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 027
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 028
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 029
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 030
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 031
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 032
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 033
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 034
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 035
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 036
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 037
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 038
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 039
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: counter = 040
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: own commit-scalar - hexdump(len=32): b9 b9 e7 8f 1d 56 99 7c 35 8b 92 4a 80 6e 5e fa 7f 41 a5 ca e3 fc 32 9a cc 0c fe 6c 6c 06 46 09
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: own commit-element(x) - hexdump(len=32): 02 62 2a 5f 26 9e 2c 1d 19 e2 22 bd 1f 93 ad 30 da 56 5d 7d 21 1b 1e 86 5c cf 89 1a 75 17 52 a9
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: own commit-element(y) - hexdump(len=32): 4e 8b d6 e6 5a c7 35 d6 8f 9b e3 c7 76 81 a3 e4 83 50 35 1e 39 a6 6b dd ad e5 93 53 46 54 86 47
mai 20 09:09:10 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:09:10 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: State: DISCONNECTED -> AUTHENTICATING
mai 20 09:09:10 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * auth_data - hexdump(len=102): 01 00 00 00 13 00 b9 b9 e7 8f 1d 56 99 7c 35 8b 92 4a 80 6e 5e fa 7f 41 a5 ca e3 fc 32 9a cc 0c fe 6c 6c 06 46 09 02 62 2a 5f 26 9e 2c 1d 19 e2 22 bd 1f 93 ad 30 da 56 5d 7d 21 1b 1e 86 5c cf 89 1a 75 17 52 a9 4e 8b d6 e6 5a c7 35 d6 8f 9b e3 c7 76 81 a3 e4 83 50 35 1e 39 a6 6b dd ad e5 93 53 46 54 86 47
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * Auth Type 4
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Ignore connect event (cmd=46) when using userspace SME
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: New station 02:f0:21:24:28:44
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=3 auth_transaction=1 status_code=0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: SME: SAE authentication transaction 1 status code 0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: SME SAE commit
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: Peer commit-scalar - hexdump(len=32): ee 03 85 18 c0 79 32 26 44 d5 8d 53 e3 73 d8 87 6b 5e 30 f4 36 aa e9 d9 f5 ec de da b1 ec 7d 32
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: Peer commit-element(x) - hexdump(len=32): 2a a1 40 1c 74 dc 57 82 b7 93 58 bf cc db 9a 96 17 90 0e d3 11 4a f3 a6 77 24 a0 49 fb 84 81 8f
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: Peer commit-element(y) - hexdump(len=32): f3 6a f7 41 81 2d 48 58 41 87 03 9b 18 0c 9f 6a 62 7d 74 31 28 5a 79 18 cb 88 44 d5 8d 61 c5 92
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: Possible elements at the end of the frame - hexdump(len=0):
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: k - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: keyseed - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: PMKID - hexdump(len=16): a7 bd 6c a8 dd cf cb a1 7a 61 1f 9e 63 e2 37 82
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: KCK - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: PMK - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:09:10 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:10 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:09:10 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:09:10 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:09:10 mcnugget wpa_supplicant[319]: WPA: Leave previously set WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:09:10 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:09:10 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:09:10 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:09:10 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:09:10 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13d5430 try_opportunistic=0 akmp=0x400
mai 20 09:09:10 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:10 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:09:10 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:09:10 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> AUTHENTICATING
mai 20 09:09:10 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * auth_data - hexdump(len=38): 02 00 00 00 00 00 dc 6a 30 8b d2 63 05 64 17 33 01 6b 6b b5 3c 1b ef dd c5 e1 b1 0a 88 7b 9e d3 50 45 25 85 c8 08
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * Auth Type 4
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=3 auth_transaction=2 status_code=0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: SME: SAE authentication transaction 2 status code 0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: SME SAE confirm
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SAE: peer-send-confirm 65535
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SME: SAE completed - setting PMK for 4-way handshake
mai 20 09:09:10 mcnugget wpa_supplicant[319]: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
mai 20 09:09:10 mcnugget wpa_supplicant[319]: RSN: Added PMKSA cache entry for 02:f0:21:24:28:44 network_ctx=0x13d5430 akmp=0x400
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: PMKSA-CACHE-ADDED 02:f0:21:24:28:44 0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Add PMKID for 02:f0:21:24:28:44
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: NL80211_CMD_SET_PMKSA failed: -95 (Operation not supported)
mai 20 09:09:10 mcnugget wpa_supplicant[319]: SME: Association Request IEs - hexdump(len=37): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Trying to associate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> ASSOCIATING
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:09:10 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:09:10 mcnugget wpa_supplicant[319]: WPA: set own WPA/RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Associate (ifindex=3)
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=37): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * WPA Versions 0x2
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * pairwise=0xfac04
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * group=0xfac04
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * akm=0xfac08
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * htcaps - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * htcaps_mask - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * vhtcaps - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:10 mcnugget wpa_supplicant[319]:   * vhtcaps_mask - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Association request send successfully
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Delete station 02:f0:21:24:28:44
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Associate event
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Event ASSOC_REJECT (12) received
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=02:f0:21:24:28:44 status_code=31
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: SME: Association with 02:f0:21:24:28:44 failed: status code 31
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wpa_driver_nl80211_deauthenticate(addr=02:f0:21:24:28:44 reason_code=3)
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: SME: Deauth request to the driver failed
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Radio work 'sme-connect'@0x13e9a90 done in 0.448822 seconds
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('sme-connect'@0x13e9a90): num_active_works --> 0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: Added BSSID 02:f0:21:24:28:44 into blacklist
mai 20 09:09:10 mcnugget wpa_supplicant[319]: Continuous association failures - consider temporary network disabling
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="Salvaterra Guest" auth_failures=2 duration=20 reason=CONN_FAILED
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Blacklist count 5 --> request scan in 10000 ms
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: Setting scan request: 10.000000 sec
mai 20 09:09:10 mcnugget wpa_supplicant[319]: wlan0: State: ASSOCIATING -> DISCONNECTED
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:09:10 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan0
mai 20 09:09:10 mcnugget wpa_supplicant[319]: nl80211: Ignore connect event (cmd=46) when using userspace SME
mai 20 09:09:15 mcnugget wpa_supplicant[319]: RSN: Flush PMKSA cache entry for 02:f0:21:24:28:44
mai 20 09:09:15 mcnugget wpa_supplicant[319]: wlan0: PMKSA-CACHE-REMOVED 02:f0:21:24:28:44 0
mai 20 09:09:15 mcnugget wpa_supplicant[319]: nl80211: Delete PMKID for 02:f0:21:24:28:44
mai 20 09:09:15 mcnugget wpa_supplicant[319]: nl80211: NL80211_CMD_DEL_PMKSA failed: -95 (Operation not supported)
mai 20 09:09:15 mcnugget wpa_supplicant[319]: wlan0: RSN: PMKSA cache entry free_cb: 02:f0:21:24:28:44 reason=0
mai 20 09:09:15 mcnugget wpa_supplicant[319]: dbus: Unregister network object '/fi/w1/wpa_supplicant1/Interfaces/0/Networks/0'
mai 20 09:09:15 mcnugget wpa_supplicant[319]: wlan0: Request to deauthenticate - bssid=00:00:00:00:00:00 pending_bssid=00:00:00:00:00:00 reason=3 (DEAUTH_LEAVING) state=DISCONNECTED
mai 20 09:09:15 mcnugget wpa_supplicant[319]: TDLS: Tear down peers
mai 20 09:09:15 mcnugget wpa_supplicant[319]: nl80211: Data frame filter flags=0x0
mai 20 09:09:15 mcnugget wpa_supplicant[319]: wlan0: State: DISCONNECTED -> DISCONNECTED
mai 20 09:09:15 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:09:15 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:09:15 mcnugget wpa_supplicant[319]: EAPOL: External notification - portEnabled=0
mai 20 09:09:15 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:09:15 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:09:15 mcnugget wpa_supplicant[319]: dbus: Register network object '/fi/w1/wpa_supplicant1/Interfaces/0/Networks/0'
mai 20 09:09:15 mcnugget wpa_supplicant[319]: Fast associate: Old scan results
mai 20 09:09:15 mcnugget wpa_supplicant[319]: wlan0: Rescheduling scan request: 0.000000 sec
mai 20 09:09:15 mcnugget wpa_supplicant[319]: wlan0: State: DISCONNECTED -> SCANNING
mai 20 09:09:15 mcnugget wpa_supplicant[319]: Scan SSID - hexdump(len=16): 53 61 6c 76 61 74 65 72 72 61 20 47 75 65 73 74
mai 20 09:09:15 mcnugget wpa_supplicant[319]: wlan0: Starting AP scan for wildcard SSID
mai 20 09:09:15 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'scan'@0x13abd70
mai 20 09:09:15 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:09:15 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'scan'@0x13abd70 after 0.000245 second wait
mai 20 09:09:15 mcnugget wpa_supplicant[319]: wlan0: nl80211: scan request
mai 20 09:09:15 mcnugget wpa_supplicant[319]: Scan requested (ret=0) - scan timeout 30 seconds
mai 20 09:09:15 mcnugget wpa_supplicant[319]: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
mai 20 09:09:15 mcnugget wpa_supplicant[319]: wlan0: nl80211: Scan trigger
mai 20 09:09:15 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_STARTED (47) received
mai 20 09:09:15 mcnugget wpa_supplicant[319]: wlan0: Own scan request started a scan in 0.000732 seconds
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: nl80211: New scan results available
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID 'Salvaterra Guest'
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID ''
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_RESULTS (3) received
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Scan completed in 1.532617 seconds
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Received scan results (22 BSSes)
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: BSS: Start scan result update 6
mai 20 09:09:17 mcnugget wpa_supplicant[319]: BSS: last_scan_res_used=22/32
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: New scan results available (own=1 ext=0)
mai 20 09:09:17 mcnugget wpa_supplicant[319]: WPS: AP[0] 20:3d:b2:1d:24:d8 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: WPS: AP[1] 12:08:c1:0d:61:d3 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: WPS: AP[2] 00:06:91:5d:93:00 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: WPS: AP[3] 00:05:ca:a7:bd:98 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: WPS: AP[4] 2c:a1:7d:55:28:07 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: WPS: AP[5] a4:b1:e9:ea:b4:66 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: WPS: AP[6] 2c:a1:7d:68:cc:25 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: WPS: AP[7] 30:91:8f:92:5e:49 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Radio work 'scan'@0x13abd70 done in 1.543650 seconds
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('scan'@0x13abd70): num_active_works --> 0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Scan results matching the currently selected network
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Selecting BSS from priority group 0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 0: 20:3d:b2:1d:24:d8 ssid='SilvaNetwork2G' wpa_ie_len=26 rsn_ie_len=24 caps=0x1411 level=-49 freq=2427  wps
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 1: 00:06:91:5d:93:00 ssid='MEO-5D9300' wpa_ie_len=26 rsn_ie_len=24 caps=0x411 level=-59 freq=2412  wps
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 2: 00:05:ca:a7:bd:98 ssid='ZON-BD90' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-66 freq=2442  wps
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 3: 1c:ab:c0:ef:5d:18 ssid='NOS-5D10' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-69 freq=2447
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 4: a4:b1:e9:ea:b4:66 ssid='Casa' wpa_ie_len=22 rsn_ie_len=20 caps=0x411 level=-69 freq=2462  wps
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 5: 2c:a1:7d:55:28:07 ssid='NOS-2807' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-73 freq=2427  wps
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 6: 12:08:c1:0d:61:d3 ssid='DIRECT-AP[TV][LG]32LA620S-ZA' wpa_ie_len=0 rsn_ie_len=20 caps=0x511 level=-77 freq=2412  wps p2p
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 7: 2c:a1:7d:68:cc:25 ssid='NOS-CC25' wpa_ie_len=0 rsn_ie_len=24 caps=0x431 level=-80 freq=2462  wps
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 8: bc:75:36:b6:69:52 ssid='MB Hotspot 15264 2.4 GHz' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-80 freq=2412
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 9: 02:f0:21:24:28:44 ssid='Salvaterra Guest' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-36 freq=2437
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - blacklisted (count=1 limit=0)
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 10: 04:f0:21:24:28:44 ssid='Salvaterra' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-40 freq=2437
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 11: 06:f0:21:24:28:44 ssid='Salvaterra Tor' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-40 freq=2437
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 12: bc:4d:fb:50:62:68 ssid='NOS-6260' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-78 freq=2437
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 13: 30:91:8f:92:5e:49 ssid='MEO-925E49' wpa_ie_len=22 rsn_ie_len=20 caps=0x411 level=-81 freq=2437  wps
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 14: 00:06:91:5d:93:02 ssid='MEO-WiFi' wpa_ie_len=0 rsn_ie_len=0 caps=0x401 level=-59 freq=2412
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 15: 00:05:ca:a7:bd:99 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-64 freq=2442
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 16: 1c:ab:c0:ef:5d:19 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-71 freq=2447
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 17: a6:b1:e9:ea:b4:67 ssid='MEO-WiFi' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-71 freq=2462
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 18: 84:94:8c:a4:72:79 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-83 freq=2457
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 19: 00:13:10:b9:80:71 ssid='\xf0\x9f\x8d\x86\xf0\x9f\x8d\x91\xf0\x9f\x92\xa6\xe2\x9d\x93\xf0\x9f\x98\x8f' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-38 freq=2437
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 20: bc:4d:fb:50:62:69 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-80 freq=2437
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 21: 32:91:8f:92:5e:4a ssid='MEO-WiFi' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-80 freq=2437
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: No APs found - clear blacklist and try again
mai 20 09:09:17 mcnugget wpa_supplicant[319]: Removed BSSID 02:f0:21:24:28:44 from blacklist (clear)
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Scan results matching the currently selected network
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 9: 02:f0:21:24:28:44 freq=2437 level=-36 snr=-36 est_throughput=1000
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Selecting BSS from priority group 0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 0: 20:3d:b2:1d:24:d8 ssid='SilvaNetwork2G' wpa_ie_len=26 rsn_ie_len=24 caps=0x1411 level=-49 freq=2427  wps
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 1: 00:06:91:5d:93:00 ssid='MEO-5D9300' wpa_ie_len=26 rsn_ie_len=24 caps=0x411 level=-59 freq=2412  wps
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 2: 00:05:ca:a7:bd:98 ssid='ZON-BD90' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-66 freq=2442  wps
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 3: 1c:ab:c0:ef:5d:18 ssid='NOS-5D10' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-69 freq=2447
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 4: a4:b1:e9:ea:b4:66 ssid='Casa' wpa_ie_len=22 rsn_ie_len=20 caps=0x411 level=-69 freq=2462  wps
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 5: 2c:a1:7d:55:28:07 ssid='NOS-2807' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-73 freq=2427  wps
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 6: 12:08:c1:0d:61:d3 ssid='DIRECT-AP[TV][LG]32LA620S-ZA' wpa_ie_len=0 rsn_ie_len=20 caps=0x511 level=-77 freq=2412  wps p2p
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 7: 2c:a1:7d:68:cc:25 ssid='NOS-CC25' wpa_ie_len=0 rsn_ie_len=24 caps=0x431 level=-80 freq=2462  wps
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 8: bc:75:36:b6:69:52 ssid='MB Hotspot 15264 2.4 GHz' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-80 freq=2412
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: 9: 02:f0:21:24:28:44 ssid='Salvaterra Guest' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-36 freq=2437
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    selected based on RSN IE
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0:    selected BSS 02:f0:21:24:28:44 ssid='Salvaterra Guest'
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Considering connect request: reassociate: 1  selected: 02:f0:21:24:28:44  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid=0x13e1040  current_ssid=0x13e1040
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Request association with 02:f0:21:24:28:44
mai 20 09:09:17 mcnugget wpa_supplicant[319]: TDLS: TDLS is allowed in the target BSS
mai 20 09:09:17 mcnugget wpa_supplicant[319]: TDLS: TDLS channel switch allowed in the target BSS
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: No ongoing scan/p2p-scan found to abort
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'sme-connect'@0x13e23d0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:09:17 mcnugget wpa_supplicant[319]: RSN: Ignored PMKID candidate without preauth flag
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'sme-connect'@0x13e23d0 after 0.036544 second wait
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing own WPA/RSN IE
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:09:17 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13e1040 try_opportunistic=0 akmp=0x0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:17 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:09:17 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:09:17 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:09:17 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:09:17 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:09:17 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:09:17 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:09:17 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13e1040 try_opportunistic=0 akmp=0x400
mai 20 09:09:17 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:17 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: Selecting supported ECC group 19
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: SME: Selected SAE group 19
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: password - hexdump(len=11): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: PWE derivation - addr1=00:11:24:c2:dc:7e addr2=02:f0:21:24:28:44
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 001
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 002
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 003
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 004
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 005
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 006
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 007
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 008
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 009
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 010
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 011
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 012
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 013
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 014
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 015
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 016
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 017
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 018
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 019
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 020
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 021
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 022
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 023
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 024
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 025
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 026
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 027
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 028
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 029
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 030
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 031
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 032
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 033
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 034
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 035
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 036
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 037
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 038
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 039
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: counter = 040
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: own commit-scalar - hexdump(len=32): cd aa 3e 99 ea 35 8a b2 d3 71 5c ad 6d 4d 2e 1f 81 3f b7 05 25 dd 44 a3 59 df e4 1f c4 b1 22 eb
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: own commit-element(x) - hexdump(len=32): 8f 02 36 6f 2a 22 f3 53 91 b5 6c e4 ff 65 ee d3 17 f2 7a b5 a4 6b 6c 75 bf f8 de 1f e7 ba 08 46
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: own commit-element(y) - hexdump(len=32): 7d 3a 0c 5f d0 79 ba b6 5d 6f 8d 6c 10 31 8f c3 ff 61 ad 39 20 9d 60 0e 96 88 bc 9c 85 29 95 bd
mai 20 09:09:17 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:09:17 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: State: SCANNING -> AUTHENTICATING
mai 20 09:09:17 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * auth_data - hexdump(len=102): 01 00 00 00 13 00 cd aa 3e 99 ea 35 8a b2 d3 71 5c ad 6d 4d 2e 1f 81 3f b7 05 25 dd 44 a3 59 df e4 1f c4 b1 22 eb 8f 02 36 6f 2a 22 f3 53 91 b5 6c e4 ff 65 ee d3 17 f2 7a b5 a4 6b 6c 75 bf f8 de 1f e7 ba 08 46 7d 3a 0c 5f d0 79 ba b6 5d 6f 8d 6c 10 31 8f c3 ff 61 ad 39 20 9d 60 0e 96 88 bc 9c 85 29 95 bd
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * Auth Type 4
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: New station 02:f0:21:24:28:44
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=3 auth_transaction=1 status_code=0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: SME: SAE authentication transaction 1 status code 0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: SME SAE commit
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: Peer commit-scalar - hexdump(len=32): 5c b3 22 4f ba 6e 19 f2 38 d5 8a cc d6 da 68 9e bd 04 f6 31 01 39 60 4a 02 93 65 66 7a ec f6 56
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: Peer commit-element(x) - hexdump(len=32): 45 b6 88 9d c7 87 d2 77 ba 38 ab d1 84 af fd c4 99 d4 bf 48 c6 bf b9 7d 96 84 4e c4 cc d7 72 3b
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: Peer commit-element(y) - hexdump(len=32): 37 de ed 9c b9 d5 5f 78 0b e7 c2 c2 54 89 45 5d 18 1d 55 60 73 47 00 28 18 3d ba b3 4f a1 a5 bb
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: Possible elements at the end of the frame - hexdump(len=0):
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: k - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: keyseed - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: PMKID - hexdump(len=16): 2a 5d 60 ea a4 a3 a4 a4 0c 46 e7 7a 44 27 96 be
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: KCK - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: PMK - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:09:17 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13e1040 try_opportunistic=0 akmp=0x0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:17 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:09:17 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:09:17 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:09:17 mcnugget wpa_supplicant[319]: WPA: Leave previously set WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:09:17 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:09:17 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:09:17 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:09:17 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:09:17 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13e1040 try_opportunistic=0 akmp=0x400
mai 20 09:09:17 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:17 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:09:17 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:09:17 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> AUTHENTICATING
mai 20 09:09:17 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * auth_data - hexdump(len=38): 02 00 00 00 00 00 3a d3 d1 86 cf fa fd 8b 22 fc 83 b5 2f 63 81 36 f9 dc 2c e9 d2 08 b0 a7 40 be 78 ea 85 28 1b 89
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * Auth Type 4
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=3 auth_transaction=2 status_code=0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: SME: SAE authentication transaction 2 status code 0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: SME SAE confirm
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SAE: peer-send-confirm 65535
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SME: SAE completed - setting PMK for 4-way handshake
mai 20 09:09:17 mcnugget wpa_supplicant[319]: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
mai 20 09:09:17 mcnugget wpa_supplicant[319]: RSN: Added PMKSA cache entry for 02:f0:21:24:28:44 network_ctx=0x13e1040 akmp=0x400
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: PMKSA-CACHE-ADDED 02:f0:21:24:28:44 0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Add PMKID for 02:f0:21:24:28:44
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: NL80211_CMD_SET_PMKSA failed: -95 (Operation not supported)
mai 20 09:09:17 mcnugget wpa_supplicant[319]: SME: Association Request IEs - hexdump(len=37): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Trying to associate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> ASSOCIATING
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:09:17 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:09:17 mcnugget wpa_supplicant[319]: WPA: set own WPA/RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Associate (ifindex=3)
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=37): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * WPA Versions 0x2
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * pairwise=0xfac04
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * group=0xfac04
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * akm=0xfac08
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * htcaps - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * htcaps_mask - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * vhtcaps - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:17 mcnugget wpa_supplicant[319]:   * vhtcaps_mask - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Association request send successfully
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Delete station 02:f0:21:24:28:44
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Associate event
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Event ASSOC_REJECT (12) received
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=02:f0:21:24:28:44 status_code=31
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: SME: Association with 02:f0:21:24:28:44 failed: status code 31
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wpa_driver_nl80211_deauthenticate(addr=02:f0:21:24:28:44 reason_code=3)
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: SME: Deauth request to the driver failed
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Radio work 'sme-connect'@0x13e23d0 done in 0.473998 seconds
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('sme-connect'@0x13e23d0): num_active_works --> 0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: Added BSSID 02:f0:21:24:28:44 into blacklist
mai 20 09:09:17 mcnugget wpa_supplicant[319]: Continuous association failures - consider temporary network disabling
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="Salvaterra Guest" auth_failures=1 duration=10 reason=CONN_FAILED
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Blacklist count 6 --> request scan in 10000 ms
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: Setting scan request: 10.000000 sec
mai 20 09:09:17 mcnugget wpa_supplicant[319]: wlan0: State: ASSOCIATING -> DISCONNECTED
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:09:17 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan0
mai 20 09:09:17 mcnugget wpa_supplicant[319]: nl80211: Ignore connect event (cmd=46) when using userspace SME
mai 20 09:09:27 mcnugget wpa_supplicant[319]: wlan0: State: DISCONNECTED -> SCANNING
mai 20 09:09:27 mcnugget wpa_supplicant[319]: Scan SSID - hexdump(len=16): 53 61 6c 76 61 74 65 72 72 61 20 47 75 65 73 74
mai 20 09:09:27 mcnugget wpa_supplicant[319]: wlan0: Starting AP scan for wildcard SSID
mai 20 09:09:27 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'scan'@0x13abd70
mai 20 09:09:27 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:09:27 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'scan'@0x13abd70 after 0.000059 second wait
mai 20 09:09:27 mcnugget wpa_supplicant[319]: wlan0: nl80211: scan request
mai 20 09:09:27 mcnugget wpa_supplicant[319]: Scan requested (ret=0) - scan timeout 30 seconds
mai 20 09:09:27 mcnugget wpa_supplicant[319]: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
mai 20 09:09:27 mcnugget wpa_supplicant[319]: wlan0: nl80211: Scan trigger
mai 20 09:09:27 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_STARTED (47) received
mai 20 09:09:27 mcnugget wpa_supplicant[319]: wlan0: Own scan request started a scan in 0.000764 seconds
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: nl80211: New scan results available
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID 'Salvaterra Guest'
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID ''
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_RESULTS (3) received
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Scan completed in 1.539440 seconds
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Received scan results (20 BSSes)
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: BSS: Start scan result update 7
mai 20 09:09:29 mcnugget wpa_supplicant[319]: BSS: last_scan_res_used=20/32
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: New scan results available (own=1 ext=0)
mai 20 09:09:29 mcnugget wpa_supplicant[319]: WPS: AP[0] 20:3d:b2:1d:24:d8 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: WPS: AP[1] 12:08:c1:0d:61:d3 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: WPS: AP[2] 00:06:91:5d:93:00 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: WPS: AP[3] 00:05:ca:a7:bd:98 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: WPS: AP[4] 2c:a1:7d:55:28:07 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: WPS: AP[5] a4:b1:e9:ea:b4:66 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: WPS: AP[6] 2c:a1:7d:68:cc:25 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: WPS: AP[7] 30:91:8f:92:5e:49 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Radio work 'scan'@0x13abd70 done in 1.571770 seconds
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('scan'@0x13abd70): num_active_works --> 0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-SSID-REENABLED id=0 ssid="Salvaterra Guest"
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Scan results matching the currently selected network
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Selecting BSS from priority group 0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 0: 20:3d:b2:1d:24:d8 ssid='SilvaNetwork2G' wpa_ie_len=26 rsn_ie_len=24 caps=0x1411 level=-54 freq=2427  wps
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 1: 00:06:91:5d:93:00 ssid='MEO-5D9300' wpa_ie_len=26 rsn_ie_len=24 caps=0x411 level=-55 freq=2412  wps
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 2: a4:b1:e9:ea:b4:66 ssid='Casa' wpa_ie_len=22 rsn_ie_len=20 caps=0x411 level=-71 freq=2462  wps
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 3: 2c:a1:7d:55:28:07 ssid='NOS-2807' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-73 freq=2427  wps
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 4: 1c:ab:c0:ef:5d:18 ssid='NOS-5D10' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-73 freq=2447
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 5: 12:08:c1:0d:61:d3 ssid='DIRECT-AP[TV][LG]32LA620S-ZA' wpa_ie_len=0 rsn_ie_len=20 caps=0x511 level=-77 freq=2412  wps p2p
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 6: 00:05:ca:a7:bd:98 ssid='ZON-BD90' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-80 freq=2442  wps
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 7: 2c:a1:7d:68:cc:25 ssid='NOS-CC25' wpa_ie_len=0 rsn_ie_len=24 caps=0x431 level=-80 freq=2462  wps
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 8: bc:75:36:b6:69:52 ssid='MB Hotspot 15264 2.4 GHz' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-80 freq=2412
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 9: 04:f0:21:24:28:44 ssid='Salvaterra' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-40 freq=2437
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 10: 06:f0:21:24:28:44 ssid='Salvaterra Tor' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-49 freq=2437
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 11: 02:f0:21:24:28:44 ssid='Salvaterra Guest' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-50 freq=2437
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - blacklisted (count=1 limit=0)
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 12: bc:4d:fb:50:62:68 ssid='NOS-6260' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-76 freq=2437
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 13: 30:91:8f:92:5e:49 ssid='MEO-925E49' wpa_ie_len=22 rsn_ie_len=20 caps=0x411 level=-81 freq=2437  wps
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 14: 00:06:91:5d:93:02 ssid='MEO-WiFi' wpa_ie_len=0 rsn_ie_len=0 caps=0x401 level=-57 freq=2412
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 15: 1c:ab:c0:ef:5d:19 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-71 freq=2447
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 16: a6:b1:e9:ea:b4:67 ssid='MEO-WiFi' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-71 freq=2462
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 17: 00:05:ca:a7:bd:99 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-79 freq=2442
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 18: 00:13:10:b9:80:71 ssid='\xf0\x9f\x8d\x86\xf0\x9f\x8d\x91\xf0\x9f\x92\xa6\xe2\x9d\x93\xf0\x9f\x98\x8f' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-50 freq=2437
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 19: 32:91:8f:92:5e:4a ssid='MEO-WiFi' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-80 freq=2437
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: No APs found - clear blacklist and try again
mai 20 09:09:29 mcnugget wpa_supplicant[319]: Removed BSSID 02:f0:21:24:28:44 from blacklist (clear)
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Scan results matching the currently selected network
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 11: 02:f0:21:24:28:44 freq=2437 level=-50 snr=-50 est_throughput=1000
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Selecting BSS from priority group 0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 0: 20:3d:b2:1d:24:d8 ssid='SilvaNetwork2G' wpa_ie_len=26 rsn_ie_len=24 caps=0x1411 level=-54 freq=2427  wps
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 1: 00:06:91:5d:93:00 ssid='MEO-5D9300' wpa_ie_len=26 rsn_ie_len=24 caps=0x411 level=-55 freq=2412  wps
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 2: a4:b1:e9:ea:b4:66 ssid='Casa' wpa_ie_len=22 rsn_ie_len=20 caps=0x411 level=-71 freq=2462  wps
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 3: 2c:a1:7d:55:28:07 ssid='NOS-2807' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-73 freq=2427  wps
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 4: 1c:ab:c0:ef:5d:18 ssid='NOS-5D10' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-73 freq=2447
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 5: 12:08:c1:0d:61:d3 ssid='DIRECT-AP[TV][LG]32LA620S-ZA' wpa_ie_len=0 rsn_ie_len=20 caps=0x511 level=-77 freq=2412  wps p2p
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 6: 00:05:ca:a7:bd:98 ssid='ZON-BD90' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-80 freq=2442  wps
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 7: 2c:a1:7d:68:cc:25 ssid='NOS-CC25' wpa_ie_len=0 rsn_ie_len=24 caps=0x431 level=-80 freq=2462  wps
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 8: bc:75:36:b6:69:52 ssid='MB Hotspot 15264 2.4 GHz' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-80 freq=2412
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 9: 04:f0:21:24:28:44 ssid='Salvaterra' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-40 freq=2437
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 10: 06:f0:21:24:28:44 ssid='Salvaterra Tor' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-49 freq=2437
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: 11: 02:f0:21:24:28:44 ssid='Salvaterra Guest' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-50 freq=2437
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    selected based on RSN IE
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0:    selected BSS 02:f0:21:24:28:44 ssid='Salvaterra Guest'
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Considering connect request: reassociate: 0  selected: 02:f0:21:24:28:44  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid=0x13e1040  current_ssid=0x13e1040
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Request association with 02:f0:21:24:28:44
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Re-association to the same ESS
mai 20 09:09:29 mcnugget wpa_supplicant[319]: WMM AC: Save last configured tspecs
mai 20 09:09:29 mcnugget wpa_supplicant[319]: TDLS: TDLS is allowed in the target BSS
mai 20 09:09:29 mcnugget wpa_supplicant[319]: TDLS: TDLS channel switch allowed in the target BSS
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: No ongoing scan/p2p-scan found to abort
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'sme-connect'@0x13ec6f0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'sme-connect'@0x13ec6f0 after 0.041349 second wait
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing own WPA/RSN IE
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13e1040 try_opportunistic=0 akmp=0x0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RSN: PMKSA cache entry found - PMKID - hexdump(len=16): 2a 5d 60 ea a4 a3 a4 a4 0c 46 e7 7a 44 27 96 be
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RSN: Trying to use cached PMKSA
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:09:29 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:09:29 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=40): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 2a 5d 60 ea a4 a3 a4 a4 0c 46 e7 7a 44 27 96 be
mai 20 09:09:29 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:09:29 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13e1040 try_opportunistic=0 akmp=0x400
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RSN: PMKSA cache entry found - PMKID - hexdump(len=16): 2a 5d 60 ea a4 a3 a4 a4 0c 46 e7 7a 44 27 96 be
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: PMKSA cache entry found - try to use PMKSA caching instead of new SAE authentication
mai 20 09:09:29 mcnugget wpa_supplicant[319]: WPA: Set PMK based on current PMKSA - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:09:29 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: State: SCANNING -> AUTHENTICATING
mai 20 09:09:29 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * Auth Type 0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: New station 02:f0:21:24:28:44
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=0 auth_transaction=2 status_code=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SME: Association Request IEs - hexdump(len=55): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 2a 5d 60 ea a4 a3 a4 a4 0c 46 e7 7a 44 27 96 be 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Trying to associate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> ASSOCIATING
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:09:29 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:09:29 mcnugget wpa_supplicant[319]: WPA: set own WPA/RSN IE - hexdump(len=40): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 2a 5d 60 ea a4 a3 a4 a4 0c 46 e7 7a 44 27 96 be
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Associate (ifindex=3)
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=55): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 2a 5d 60 ea a4 a3 a4 a4 0c 46 e7 7a 44 27 96 be 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * WPA Versions 0x2
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * pairwise=0xfac04
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * group=0xfac04
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * akm=0xfac08
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * htcaps - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * htcaps_mask - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * vhtcaps - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * vhtcaps_mask - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Association request send successfully
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Delete station 02:f0:21:24:28:44
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Associate event
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Event ASSOC_REJECT (12) received
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=02:f0:21:24:28:44 status_code=31
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: SME: Association with 02:f0:21:24:28:44 failed: status code 31
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: PMKSA caching attempt rejected - drop PMKSA cache entry and fall back to SAE authentication
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: RSN: Cancelling PMKSA caching attempt
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RSN: Flush PMKSA cache entry for 02:f0:21:24:28:44
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: PMKSA-CACHE-REMOVED 02:f0:21:24:28:44 0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Delete PMKID for 02:f0:21:24:28:44
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: NL80211_CMD_DEL_PMKSA failed: -95 (Operation not supported)
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: RSN: PMKSA cache entry free_cb: 02:f0:21:24:28:44 reason=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wpa_driver_nl80211_deauthenticate(addr=02:f0:21:24:28:44 reason_code=3)
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Radio work 'sme-connect'@0x13ec6f0 done in 0.276777 seconds
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('sme-connect'@0x13ec6f0): num_active_works --> 0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Data frame filter flags=0x0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: State: ASSOCIATING -> DISCONNECTED
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:09:29 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:09:29 mcnugget wpa_supplicant[319]: EAPOL: External notification - portEnabled=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Considering connect request: reassociate: 0  selected: 02:f0:21:24:28:44  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: DISCONNECTED  ssid=0x13e1040  current_ssid=(nil)
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Request association with 02:f0:21:24:28:44
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Re-association to the same ESS
mai 20 09:09:29 mcnugget wpa_supplicant[319]: TDLS: TDLS is allowed in the target BSS
mai 20 09:09:29 mcnugget wpa_supplicant[319]: TDLS: TDLS channel switch allowed in the target BSS
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: No ongoing scan/p2p-scan found to abort
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'sme-connect'@0x13ec6f0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'sme-connect'@0x13ec6f0 after 0.000067 second wait
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing own WPA/RSN IE
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=(nil) try_opportunistic=0 akmp=0x0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:09:29 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:09:29 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:09:29 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:09:29 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13e1040 try_opportunistic=0 akmp=0x400
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: Selecting supported ECC group 19
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: SME: Selected SAE group 19
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: password - hexdump(len=11): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: PWE derivation - addr1=00:11:24:c2:dc:7e addr2=02:f0:21:24:28:44
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 001
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 002
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 003
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 004
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 005
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 006
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 007
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 008
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 009
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 010
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 011
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 012
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 013
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 014
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 015
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 016
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 017
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 018
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 019
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 020
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 021
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 022
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 023
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 024
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 025
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 026
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 027
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 028
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 029
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 030
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 031
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 032
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 033
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 034
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 035
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 036
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 037
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 038
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 039
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: counter = 040
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: own commit-scalar - hexdump(len=32): 69 cf 54 13 50 4e 89 e2 4e 7d 2c 3e c2 4f 40 f1 d6 fa ba ac 5c 8f 6e be a5 31 e4 9c 53 a2 c4 f5
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: own commit-element(x) - hexdump(len=32): d1 08 7c 4b 58 5e 80 28 21 eb 8c 25 0f 97 92 b9 5f 3e a0 d1 fc f1 e0 57 6f 34 a0 e6 85 9a 77 39
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: own commit-element(y) - hexdump(len=32): 3a fc d3 56 c0 95 9e 47 d6 36 49 d1 47 9d 8a 74 ba 32 e6 77 ca 9b 78 7d 4b 63 37 a7 f1 54 a9 ea
mai 20 09:09:29 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:09:29 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: State: DISCONNECTED -> AUTHENTICATING
mai 20 09:09:29 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * auth_data - hexdump(len=102): 01 00 00 00 13 00 69 cf 54 13 50 4e 89 e2 4e 7d 2c 3e c2 4f 40 f1 d6 fa ba ac 5c 8f 6e be a5 31 e4 9c 53 a2 c4 f5 d1 08 7c 4b 58 5e 80 28 21 eb 8c 25 0f 97 92 b9 5f 3e a0 d1 fc f1 e0 57 6f 34 a0 e6 85 9a 77 39 3a fc d3 56 c0 95 9e 47 d6 36 49 d1 47 9d 8a 74 ba 32 e6 77 ca 9b 78 7d 4b 63 37 a7 f1 54 a9 ea
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * Auth Type 4
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Ignore connect event (cmd=46) when using userspace SME
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: New station 02:f0:21:24:28:44
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=3 auth_transaction=1 status_code=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: SME: SAE authentication transaction 1 status code 0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: SME SAE commit
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: Peer commit-scalar - hexdump(len=32): e5 7b 7c c4 32 fb b1 c3 46 a8 4f 4d ab ce df e9 56 00 a2 1b 8f 52 3d d8 59 e3 04 3d 9d fc 86 86
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: Peer commit-element(x) - hexdump(len=32): e9 ae 71 73 74 0f f9 06 f7 f2 d7 12 cf 37 49 b6 28 65 ce 05 8e 62 9a a0 7e 47 b9 e9 aa 52 e4 3f
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: Peer commit-element(y) - hexdump(len=32): a9 01 47 b2 21 3f 9b 70 97 c1 2c aa d1 21 56 0d 3a 91 cc 76 c4 17 70 9d df 80 c5 9d c9 34 93 aa
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: Possible elements at the end of the frame - hexdump(len=0):
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: k - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: keyseed - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: PMKID - hexdump(len=16): 4f 4a d0 d8 83 4a 3b a4 95 25 7b 8c 6e 1e 20 db
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: KCK - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: PMK - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13e1040 try_opportunistic=0 akmp=0x0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:09:29 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:09:29 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:09:29 mcnugget wpa_supplicant[319]: WPA: Leave previously set WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:09:29 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:09:29 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13e1040 try_opportunistic=0 akmp=0x400
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:09:29 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:09:29 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> AUTHENTICATING
mai 20 09:09:29 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * auth_data - hexdump(len=38): 02 00 00 00 00 00 68 27 4f ec 1f e6 3d 9c 29 f9 c6 93 78 29 06 ec 66 de 57 0c 3e 16 83 4e 48 3e e9 7a 96 92 11 32
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * Auth Type 4
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=3 auth_transaction=2 status_code=0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: SME: SAE authentication transaction 2 status code 0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: SME SAE confirm
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SAE: peer-send-confirm 65535
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SME: SAE completed - setting PMK for 4-way handshake
mai 20 09:09:29 mcnugget wpa_supplicant[319]: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
mai 20 09:09:29 mcnugget wpa_supplicant[319]: RSN: Added PMKSA cache entry for 02:f0:21:24:28:44 network_ctx=0x13e1040 akmp=0x400
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: PMKSA-CACHE-ADDED 02:f0:21:24:28:44 0
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Add PMKID for 02:f0:21:24:28:44
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: NL80211_CMD_SET_PMKSA failed: -95 (Operation not supported)
mai 20 09:09:29 mcnugget wpa_supplicant[319]: SME: Association Request IEs - hexdump(len=37): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: Trying to associate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:09:29 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> ASSOCIATING
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:09:29 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:09:29 mcnugget wpa_supplicant[319]: WPA: set own WPA/RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Associate (ifindex=3)
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=37): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * WPA Versions 0x2
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * pairwise=0xfac04
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * group=0xfac04
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * akm=0xfac08
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * htcaps - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * htcaps_mask - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * vhtcaps - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:29 mcnugget wpa_supplicant[319]:   * vhtcaps_mask - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:29 mcnugget wpa_supplicant[319]: nl80211: Association request send successfully
mai 20 09:09:30 mcnugget wpa_supplicant[319]: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0
mai 20 09:09:30 mcnugget wpa_supplicant[319]: nl80211: Delete station 02:f0:21:24:28:44
mai 20 09:09:30 mcnugget wpa_supplicant[319]: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan0
mai 20 09:09:30 mcnugget wpa_supplicant[319]: nl80211: Associate event
mai 20 09:09:30 mcnugget wpa_supplicant[319]: wlan0: Event ASSOC_REJECT (12) received
mai 20 09:09:30 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=02:f0:21:24:28:44 status_code=31
mai 20 09:09:30 mcnugget wpa_supplicant[319]: wlan0: SME: Association with 02:f0:21:24:28:44 failed: status code 31
mai 20 09:09:30 mcnugget wpa_supplicant[319]: wpa_driver_nl80211_deauthenticate(addr=02:f0:21:24:28:44 reason_code=3)
mai 20 09:09:30 mcnugget wpa_supplicant[319]: wlan0: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
mai 20 09:09:30 mcnugget wpa_supplicant[319]: wlan0: SME: Deauth request to the driver failed
mai 20 09:09:30 mcnugget wpa_supplicant[319]: wlan0: Radio work 'sme-connect'@0x13ec6f0 done in 0.458831 seconds
mai 20 09:09:30 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('sme-connect'@0x13ec6f0): num_active_works --> 0
mai 20 09:09:30 mcnugget wpa_supplicant[319]: Added BSSID 02:f0:21:24:28:44 into blacklist
mai 20 09:09:30 mcnugget wpa_supplicant[319]: Continuous association failures - consider temporary network disabling
mai 20 09:09:30 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="Salvaterra Guest" auth_failures=2 duration=20 reason=CONN_FAILED
mai 20 09:09:30 mcnugget wpa_supplicant[319]: wlan0: Blacklist count 7 --> request scan in 10000 ms
mai 20 09:09:30 mcnugget wpa_supplicant[319]: wlan0: Setting scan request: 10.000000 sec
mai 20 09:09:30 mcnugget wpa_supplicant[319]: wlan0: State: ASSOCIATING -> DISCONNECTED
mai 20 09:09:30 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:09:30 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:09:30 mcnugget wpa_supplicant[319]: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan0
mai 20 09:09:30 mcnugget wpa_supplicant[319]: nl80211: Ignore connect event (cmd=46) when using userspace SME
mai 20 09:09:40 mcnugget wpa_supplicant[319]: wlan0: State: DISCONNECTED -> SCANNING
mai 20 09:09:40 mcnugget wpa_supplicant[319]: Scan SSID - hexdump(len=16): 53 61 6c 76 61 74 65 72 72 61 20 47 75 65 73 74
mai 20 09:09:40 mcnugget wpa_supplicant[319]: wlan0: Starting AP scan for wildcard SSID
mai 20 09:09:40 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'scan'@0x13d68a0
mai 20 09:09:40 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:09:40 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'scan'@0x13d68a0 after 0.000059 second wait
mai 20 09:09:40 mcnugget wpa_supplicant[319]: wlan0: nl80211: scan request
mai 20 09:09:40 mcnugget wpa_supplicant[319]: Scan requested (ret=0) - scan timeout 30 seconds
mai 20 09:09:40 mcnugget wpa_supplicant[319]: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
mai 20 09:09:40 mcnugget wpa_supplicant[319]: wlan0: nl80211: Scan trigger
mai 20 09:09:40 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_STARTED (47) received
mai 20 09:09:40 mcnugget wpa_supplicant[319]: wlan0: Own scan request started a scan in 0.000167 seconds
mai 20 09:09:40 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:09:40 mcnugget wpa_supplicant[319]: wlan0: Request to deauthenticate - bssid=00:00:00:00:00:00 pending_bssid=00:00:00:00:00:00 reason=3 (DEAUTH_LEAVING) state=SCANNING
mai 20 09:09:40 mcnugget wpa_supplicant[319]: TDLS: Tear down peers
mai 20 09:09:40 mcnugget wpa_supplicant[319]: nl80211: Data frame filter flags=0x0
mai 20 09:09:40 mcnugget wpa_supplicant[319]: wlan0: State: SCANNING -> DISCONNECTED
mai 20 09:09:40 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:09:40 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:09:40 mcnugget wpa_supplicant[319]: EAPOL: External notification - portEnabled=0
mai 20 09:09:40 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:09:40 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:09:40 mcnugget wpa_supplicant[319]: RSN: Flush PMKSA cache entry for 02:f0:21:24:28:44
mai 20 09:09:40 mcnugget wpa_supplicant[319]: wlan0: PMKSA-CACHE-REMOVED 02:f0:21:24:28:44 0
mai 20 09:09:40 mcnugget wpa_supplicant[319]: nl80211: Delete PMKID for 02:f0:21:24:28:44
mai 20 09:09:40 mcnugget wpa_supplicant[319]: nl80211: NL80211_CMD_DEL_PMKSA failed: -95 (Operation not supported)
mai 20 09:09:40 mcnugget wpa_supplicant[319]: wlan0: RSN: PMKSA cache entry free_cb: 02:f0:21:24:28:44 reason=0
mai 20 09:09:40 mcnugget wpa_supplicant[319]: dbus: Unregister network object '/fi/w1/wpa_supplicant1/Interfaces/0/Networks/0'
mai 20 09:09:40 mcnugget wpa_supplicant[319]: dbus: Register network object '/fi/w1/wpa_supplicant1/Interfaces/0/Networks/0'
mai 20 09:09:40 mcnugget wpa_supplicant[319]: Fast associate: Old scan results
mai 20 09:09:40 mcnugget wpa_supplicant[319]: wlan0: Setting scan request: 0.000000 sec
mai 20 09:09:40 mcnugget wpa_supplicant[319]: wlan0: State: DISCONNECTED -> SCANNING
mai 20 09:09:40 mcnugget wpa_supplicant[319]: Scan SSID - hexdump(len=16): 53 61 6c 76 61 74 65 72 72 61 20 47 75 65 73 74
mai 20 09:09:40 mcnugget wpa_supplicant[319]: wlan0: Starting AP scan for wildcard SSID
mai 20 09:09:40 mcnugget wpa_supplicant[319]: wlan0: Reject scan trigger since one is already pending
mai 20 09:09:40 mcnugget wpa_supplicant[319]: wlan0: Failed to initiate AP scan
mai 20 09:09:40 mcnugget wpa_supplicant[319]: wlan0: State: SCANNING -> DISCONNECTED
mai 20 09:09:40 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:09:40 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:09:40 mcnugget wpa_supplicant[319]: wlan0: Setting scan request: 1.000000 sec
mai 20 09:09:41 mcnugget wpa_supplicant[319]: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: nl80211: New scan results available
mai 20 09:09:41 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID 'Salvaterra Guest'
mai 20 09:09:41 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID ''
mai 20 09:09:41 mcnugget wpa_supplicant[319]: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_RESULTS (3) received
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Scan completed in 1.572044 seconds
mai 20 09:09:41 mcnugget wpa_supplicant[319]: nl80211: Received scan results (18 BSSes)
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: BSS: Start scan result update 8
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: BSS: Remove id 15 BSSID 84:94:8c:a4:72:79 SSID 'NOS_Wi-Fi_Hotspots' due to no match in scan
mai 20 09:09:41 mcnugget wpa_supplicant[319]: dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/15'
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: BSS: Remove id 19 BSSID bc:4d:fb:50:62:69 SSID 'NOS_Wi-Fi_Hotspots' due to no match in scan
mai 20 09:09:41 mcnugget wpa_supplicant[319]: dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/19'
mai 20 09:09:41 mcnugget wpa_supplicant[319]: BSS: last_scan_res_used=18/32
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: New scan results available (own=1 ext=0)
mai 20 09:09:41 mcnugget wpa_supplicant[319]: WPS: AP[0] 20:3d:b2:1d:24:d8 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: WPS: AP[1] 12:08:c1:0d:61:d3 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: WPS: AP[2] 00:06:91:5d:93:00 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: WPS: AP[3] 00:05:ca:a7:bd:98 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: WPS: AP[4] 2c:a1:7d:55:28:07 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: WPS: AP[5] a4:b1:e9:ea:b4:66 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: WPS: AP[6] 2c:a1:7d:68:cc:25 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: WPS: AP[7] 30:91:8f:92:5e:49 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Radio work 'scan'@0x13d68a0 done in 1.587996 seconds
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('scan'@0x13d68a0): num_active_works --> 0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Scan results matching the currently selected network
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Selecting BSS from priority group 0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 0: 20:3d:b2:1d:24:d8 ssid='SilvaNetwork2G' wpa_ie_len=26 rsn_ie_len=24 caps=0x1411 level=-42 freq=2427  wps
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 1: 00:06:91:5d:93:00 ssid='MEO-5D9300' wpa_ie_len=26 rsn_ie_len=24 caps=0x411 level=-52 freq=2412  wps
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 2: 12:08:c1:0d:61:d3 ssid='DIRECT-AP[TV][LG]32LA620S-ZA' wpa_ie_len=0 rsn_ie_len=20 caps=0x511 level=-62 freq=2412  wps p2p
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 3: 00:05:ca:a7:bd:98 ssid='ZON-BD90' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-68 freq=2442  wps
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 4: a4:b1:e9:ea:b4:66 ssid='Casa' wpa_ie_len=22 rsn_ie_len=20 caps=0x411 level=-68 freq=2462  wps
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 5: 1c:ab:c0:ef:5d:18 ssid='NOS-5D10' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-69 freq=2447
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 6: 2c:a1:7d:68:cc:25 ssid='NOS-CC25' wpa_ie_len=0 rsn_ie_len=24 caps=0x431 level=-81 freq=2462  wps
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 7: 06:f0:21:24:28:44 ssid='Salvaterra Tor' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-38 freq=2437
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 8: 02:f0:21:24:28:44 ssid='Salvaterra Guest' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-38 freq=2437
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - blacklisted (count=1 limit=0)
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 9: 04:f0:21:24:28:44 ssid='Salvaterra' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-40 freq=2437
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 10: bc:4d:fb:50:62:68 ssid='NOS-6260' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-76 freq=2437
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 11: 30:91:8f:92:5e:49 ssid='MEO-925E49' wpa_ie_len=22 rsn_ie_len=20 caps=0x411 level=-81 freq=2437  wps
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 12: 00:06:91:5d:93:02 ssid='MEO-WiFi' wpa_ie_len=0 rsn_ie_len=0 caps=0x401 level=-52 freq=2412
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 13: 00:05:ca:a7:bd:99 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-64 freq=2442
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 14: a6:b1:e9:ea:b4:67 ssid='MEO-WiFi' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-64 freq=2462
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 15: 1c:ab:c0:ef:5d:19 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-68 freq=2447
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 16: 00:13:10:b9:80:71 ssid='\xf0\x9f\x8d\x86\xf0\x9f\x8d\x91\xf0\x9f\x92\xa6\xe2\x9d\x93\xf0\x9f\x98\x8f' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-38 freq=2437
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 17: 32:91:8f:92:5e:4a ssid='MEO-WiFi' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-80 freq=2437
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: No APs found - clear blacklist and try again
mai 20 09:09:41 mcnugget wpa_supplicant[319]: Removed BSSID 02:f0:21:24:28:44 from blacklist (clear)
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Scan results matching the currently selected network
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 8: 02:f0:21:24:28:44 freq=2437 level=-38 snr=-38 est_throughput=1000
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Selecting BSS from priority group 0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 0: 20:3d:b2:1d:24:d8 ssid='SilvaNetwork2G' wpa_ie_len=26 rsn_ie_len=24 caps=0x1411 level=-42 freq=2427  wps
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 1: 00:06:91:5d:93:00 ssid='MEO-5D9300' wpa_ie_len=26 rsn_ie_len=24 caps=0x411 level=-52 freq=2412  wps
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 2: 12:08:c1:0d:61:d3 ssid='DIRECT-AP[TV][LG]32LA620S-ZA' wpa_ie_len=0 rsn_ie_len=20 caps=0x511 level=-62 freq=2412  wps p2p
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 3: 00:05:ca:a7:bd:98 ssid='ZON-BD90' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-68 freq=2442  wps
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 4: a4:b1:e9:ea:b4:66 ssid='Casa' wpa_ie_len=22 rsn_ie_len=20 caps=0x411 level=-68 freq=2462  wps
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 5: 1c:ab:c0:ef:5d:18 ssid='NOS-5D10' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-69 freq=2447
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 6: 2c:a1:7d:68:cc:25 ssid='NOS-CC25' wpa_ie_len=0 rsn_ie_len=24 caps=0x431 level=-81 freq=2462  wps
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 7: 06:f0:21:24:28:44 ssid='Salvaterra Tor' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-38 freq=2437
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: 8: 02:f0:21:24:28:44 ssid='Salvaterra Guest' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-38 freq=2437
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    selected based on RSN IE
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0:    selected BSS 02:f0:21:24:28:44 ssid='Salvaterra Guest'
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Considering connect request: reassociate: 1  selected: 02:f0:21:24:28:44  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: DISCONNECTED  ssid=0x13f02a0  current_ssid=0x13f02a0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Request association with 02:f0:21:24:28:44
mai 20 09:09:41 mcnugget wpa_supplicant[319]: TDLS: TDLS is allowed in the target BSS
mai 20 09:09:41 mcnugget wpa_supplicant[319]: TDLS: TDLS channel switch allowed in the target BSS
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: No ongoing scan/p2p-scan found to abort
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'sme-connect'@0x13d9600
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:09:41 mcnugget wpa_supplicant[319]: RSN: Ignored PMKID candidate without preauth flag
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: State: DISCONNECTED -> SCANNING
mai 20 09:09:41 mcnugget wpa_supplicant[319]: Scan SSID - hexdump(len=16): 53 61 6c 76 61 74 65 72 72 61 20 47 75 65 73 74
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Starting AP scan for wildcard SSID
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'scan'@0x13dc000
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'sme-connect'@0x13d9600 after 0.055610 second wait
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing own WPA/RSN IE
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:09:41 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13f02a0 try_opportunistic=0 akmp=0x0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:41 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:09:41 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:09:41 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:09:41 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:09:41 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:09:41 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:09:41 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:09:41 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13f02a0 try_opportunistic=0 akmp=0x400
mai 20 09:09:41 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:41 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: Selecting supported ECC group 19
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: SME: Selected SAE group 19
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: password - hexdump(len=11): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: PWE derivation - addr1=00:11:24:c2:dc:7e addr2=02:f0:21:24:28:44
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 001
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 002
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 003
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 004
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 005
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 006
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 007
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 008
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 009
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 010
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 011
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 012
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 013
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 014
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 015
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 016
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 017
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 018
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 019
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 020
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 021
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 022
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 023
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 024
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 025
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 026
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 027
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 028
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 029
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 030
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 031
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 032
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 033
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 034
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 035
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 036
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 037
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 038
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 039
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: counter = 040
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: own commit-scalar - hexdump(len=32): 81 35 de 6f 82 e7 f6 9f d8 28 ed 75 05 a9 fe 0d fa ea 1e c7 bc bf 09 59 3e f5 2f c6 5e d2 c0 35
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: own commit-element(x) - hexdump(len=32): 24 25 f9 67 d0 05 58 3e 31 26 15 c3 d2 bd 65 d6 d1 43 8d 8e 71 a2 7f 92 4d c7 2d 10 35 06 4c 8a
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: own commit-element(y) - hexdump(len=32): 85 6a f7 c8 1d ce 2a 4c d0 e0 4d 68 09 ea 35 6b f4 a4 49 e4 e2 3e fd 41 4a 89 de a6 66 87 31 8d
mai 20 09:09:41 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:09:41 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: State: SCANNING -> AUTHENTICATING
mai 20 09:09:41 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:09:41 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:09:41 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:09:41 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:09:41 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:09:41 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:09:41 mcnugget wpa_supplicant[319]:   * auth_data - hexdump(len=102): 01 00 00 00 13 00 81 35 de 6f 82 e7 f6 9f d8 28 ed 75 05 a9 fe 0d fa ea 1e c7 bc bf 09 59 3e f5 2f c6 5e d2 c0 35 24 25 f9 67 d0 05 58 3e 31 26 15 c3 d2 bd 65 d6 d1 43 8d 8e 71 a2 7f 92 4d c7 2d 10 35 06 4c 8a 85 6a f7 c8 1d ce 2a 4c d0 e0 4d 68 09 ea 35 6b f4 a4 49 e4 e2 3e fd 41 4a 89 de a6 66 87 31 8d
mai 20 09:09:41 mcnugget wpa_supplicant[319]:   * Auth Type 4
mai 20 09:09:41 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:09:41 mcnugget wpa_supplicant[319]: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: nl80211: New station 02:f0:21:24:28:44
mai 20 09:09:41 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=3 auth_transaction=1 status_code=0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: SME: SAE authentication transaction 1 status code 0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: SME SAE commit
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: Peer commit-scalar - hexdump(len=32): 26 00 f2 e7 b2 0b 88 f1 09 db ac df c4 01 d3 f8 4f 54 b7 80 a0 50 4f 6e 9c d7 e7 05 68 eb 8d 4f
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: Peer commit-element(x) - hexdump(len=32): 7a 0b 26 dd 62 27 a8 16 f1 9b de 43 9d 53 02 51 f1 3b 89 d5 45 b7 e5 e6 b7 3c 25 cf e1 fd 50 8e
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: Peer commit-element(y) - hexdump(len=32): e4 f4 e9 34 e6 57 b4 11 d5 67 d0 6d 98 e6 49 a7 88 47 ce 33 96 4b 54 bb e7 6e 43 08 c6 d3 85 d6
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: Possible elements at the end of the frame - hexdump(len=0):
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: k - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: keyseed - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: PMKID - hexdump(len=16): a7 36 d1 57 34 f3 7f 90 e2 04 9a 54 c9 ab d2 06
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: KCK - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: SAE: PMK - hexdump(len=32): [REMOVED]
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:09:41 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13f02a0 try_opportunistic=0 akmp=0x0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:41 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:09:41 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:09:41 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:09:41 mcnugget wpa_supplicant[319]: WPA: Leave previously set WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:09:41 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:09:41 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:09:41 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:09:41 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:09:41 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13f02a0 try_opportunistic=0 akmp=0x400
mai 20 09:09:41 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:41 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:09:41 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:09:41 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> AUTHENTICATING
mai 20 09:09:41 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:09:41 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:09:41 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:09:41 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:09:41 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:09:41 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:09:41 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:09:41 mcnugget wpa_supplicant[319]:   * auth_data - hexdump(len=38): 02 00 00 00 00 00 31 e3 44 70 ba 69 cd ec bd 2a 3e f9 cf fe 3a e1 b2 14 2e 18 bc 91 a5 33 94 cf 73 32 2e 37 a8 28
mai 20 09:09:41 mcnugget wpa_supplicant[319]:   * Auth Type 4
mai 20 09:09:42 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:09:42 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:09:42 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=3 auth_transaction=2 status_code=0
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wlan0: SME: SAE authentication transaction 2 status code 0
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wlan0: SME SAE confirm
mai 20 09:09:42 mcnugget wpa_supplicant[319]: SAE: peer-send-confirm 65535
mai 20 09:09:42 mcnugget wpa_supplicant[319]: SME: SAE completed - setting PMK for 4-way handshake
mai 20 09:09:42 mcnugget wpa_supplicant[319]: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
mai 20 09:09:42 mcnugget wpa_supplicant[319]: RSN: Added PMKSA cache entry for 02:f0:21:24:28:44 network_ctx=0x13f02a0 akmp=0x400
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wlan0: PMKSA-CACHE-ADDED 02:f0:21:24:28:44 0
mai 20 09:09:42 mcnugget wpa_supplicant[319]: nl80211: Add PMKID for 02:f0:21:24:28:44
mai 20 09:09:42 mcnugget wpa_supplicant[319]: nl80211: NL80211_CMD_SET_PMKSA failed: -95 (Operation not supported)
mai 20 09:09:42 mcnugget wpa_supplicant[319]: SME: Association Request IEs - hexdump(len=37): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wlan0: Trying to associate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> ASSOCIATING
mai 20 09:09:42 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:09:42 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:09:42 mcnugget wpa_supplicant[319]: WPA: set own WPA/RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:09:42 mcnugget wpa_supplicant[319]: nl80211: Associate (ifindex=3)
mai 20 09:09:42 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:09:42 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:09:42 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:09:42 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=37): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:09:42 mcnugget wpa_supplicant[319]:   * WPA Versions 0x2
mai 20 09:09:42 mcnugget wpa_supplicant[319]:   * pairwise=0xfac04
mai 20 09:09:42 mcnugget wpa_supplicant[319]:   * group=0xfac04
mai 20 09:09:42 mcnugget wpa_supplicant[319]:   * akm=0xfac08
mai 20 09:09:42 mcnugget wpa_supplicant[319]:   * htcaps - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:42 mcnugget wpa_supplicant[319]:   * htcaps_mask - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:42 mcnugget wpa_supplicant[319]:   * vhtcaps - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:42 mcnugget wpa_supplicant[319]:   * vhtcaps_mask - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:42 mcnugget wpa_supplicant[319]: nl80211: Association request send successfully
mai 20 09:09:42 mcnugget wpa_supplicant[319]: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0
mai 20 09:09:42 mcnugget wpa_supplicant[319]: nl80211: Delete station 02:f0:21:24:28:44
mai 20 09:09:42 mcnugget wpa_supplicant[319]: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan0
mai 20 09:09:42 mcnugget wpa_supplicant[319]: nl80211: Associate event
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wlan0: Event ASSOC_REJECT (12) received
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=02:f0:21:24:28:44 status_code=31
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wlan0: SME: Association with 02:f0:21:24:28:44 failed: status code 31
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wpa_driver_nl80211_deauthenticate(addr=02:f0:21:24:28:44 reason_code=3)
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wlan0: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wlan0: SME: Deauth request to the driver failed
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wlan0: Radio work 'sme-connect'@0x13d9600 done in 0.429546 seconds
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('sme-connect'@0x13d9600): num_active_works --> 0
mai 20 09:09:42 mcnugget wpa_supplicant[319]: Added BSSID 02:f0:21:24:28:44 into blacklist
mai 20 09:09:42 mcnugget wpa_supplicant[319]: Continuous association failures - consider temporary network disabling
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="Salvaterra Guest" auth_failures=1 duration=10 reason=CONN_FAILED
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wlan0: Blacklist count 8 --> request scan in 10000 ms
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wlan0: Setting scan request: 10.000000 sec
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wlan0: State: ASSOCIATING -> DISCONNECTED
mai 20 09:09:42 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:09:42 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'scan'@0x13dc000 after 0.485218 second wait
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wlan0: nl80211: scan request
mai 20 09:09:42 mcnugget wpa_supplicant[319]: Scan requested (ret=0) - scan timeout 30 seconds
mai 20 09:09:42 mcnugget wpa_supplicant[319]: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan0
mai 20 09:09:42 mcnugget wpa_supplicant[319]: nl80211: Ignore connect event (cmd=46) when using userspace SME
mai 20 09:09:42 mcnugget wpa_supplicant[319]: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wlan0: nl80211: Scan trigger
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_STARTED (47) received
mai 20 09:09:42 mcnugget wpa_supplicant[319]: wlan0: Own scan request started a scan in 0.005259 seconds
mai 20 09:09:43 mcnugget wpa_supplicant[319]: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
mai 20 09:09:43 mcnugget wpa_supplicant[319]: wlan0: nl80211: New scan results available
mai 20 09:09:43 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID 'Salvaterra Guest'
mai 20 09:09:43 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID ''
mai 20 09:09:43 mcnugget wpa_supplicant[319]: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484
mai 20 09:09:43 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_RESULTS (3) received
mai 20 09:09:43 mcnugget wpa_supplicant[319]: wlan0: Scan completed in 1.615004 seconds
mai 20 09:09:43 mcnugget wpa_supplicant[319]: nl80211: Received scan results (19 BSSes)
mai 20 09:09:43 mcnugget wpa_supplicant[319]: wlan0: BSS: Start scan result update 9
mai 20 09:09:43 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 22 BSSID 84:94:8c:a4:72:78 SSID 'NOS-7270' freq 2457
mai 20 09:09:43 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/22'
mai 20 09:09:43 mcnugget wpa_supplicant[319]: wlan0: BSS: Remove id 7 BSSID 2c:a1:7d:55:28:07 SSID 'NOS-2807' due to no match in scan
mai 20 09:09:43 mcnugget wpa_supplicant[319]: dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/7'
mai 20 09:09:43 mcnugget wpa_supplicant[319]: wlan0: BSS: Remove id 21 BSSID bc:75:36:b6:69:52 SSID 'MB Hotspot 15264 2.4 GHz' due to no match in scan
mai 20 09:09:43 mcnugget wpa_supplicant[319]: dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/21'
mai 20 09:09:43 mcnugget wpa_supplicant[319]: BSS: last_scan_res_used=19/32
mai 20 09:09:43 mcnugget wpa_supplicant[319]: wlan0: New scan results available (own=1 ext=0)
mai 20 09:09:43 mcnugget wpa_supplicant[319]: WPS: AP 84:94:8c:a4:72:78 type 0 added
mai 20 09:09:43 mcnugget wpa_supplicant[319]: WPS: AP[0] 20:3d:b2:1d:24:d8 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:43 mcnugget wpa_supplicant[319]: WPS: AP[1] 12:08:c1:0d:61:d3 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:43 mcnugget wpa_supplicant[319]: WPS: AP[2] 00:06:91:5d:93:00 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:43 mcnugget wpa_supplicant[319]: WPS: AP[3] 00:05:ca:a7:bd:98 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:43 mcnugget wpa_supplicant[319]: WPS: AP[4] 2c:a1:7d:55:28:07 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:43 mcnugget wpa_supplicant[319]: WPS: AP[5] a4:b1:e9:ea:b4:66 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:43 mcnugget wpa_supplicant[319]: WPS: AP[6] 2c:a1:7d:68:cc:25 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:43 mcnugget wpa_supplicant[319]: WPS: AP[7] 30:91:8f:92:5e:49 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:43 mcnugget wpa_supplicant[319]: WPS: AP[8] 84:94:8c:a4:72:78 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:43 mcnugget wpa_supplicant[319]: wlan0: Radio work 'scan'@0x13dc000 done in 1.645116 seconds
mai 20 09:09:43 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('scan'@0x13dc000): num_active_works --> 0
mai 20 09:09:43 mcnugget wpa_supplicant[319]: wlan0: Postpone network selection by 8 seconds since all networks are disabled
mai 20 09:09:52 mcnugget wpa_supplicant[319]: wlan0: State: DISCONNECTED -> SCANNING
mai 20 09:09:52 mcnugget wpa_supplicant[319]: Scan SSID - hexdump(len=16): 53 61 6c 76 61 74 65 72 72 61 20 47 75 65 73 74
mai 20 09:09:52 mcnugget wpa_supplicant[319]: wlan0: Starting AP scan for wildcard SSID
mai 20 09:09:52 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'scan'@0x13eec40
mai 20 09:09:52 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:09:52 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'scan'@0x13eec40 after 0.000056 second wait
mai 20 09:09:52 mcnugget wpa_supplicant[319]: wlan0: nl80211: scan request
mai 20 09:09:52 mcnugget wpa_supplicant[319]: Scan requested (ret=0) - scan timeout 30 seconds
mai 20 09:09:52 mcnugget wpa_supplicant[319]: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
mai 20 09:09:52 mcnugget wpa_supplicant[319]: wlan0: nl80211: Scan trigger
mai 20 09:09:52 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_STARTED (47) received
mai 20 09:09:52 mcnugget wpa_supplicant[319]: wlan0: Own scan request started a scan in 0.000177 seconds
mai 20 09:09:53 mcnugget wpa_supplicant[319]: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: nl80211: New scan results available
mai 20 09:09:53 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID 'Salvaterra Guest'
mai 20 09:09:53 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID ''
mai 20 09:09:53 mcnugget wpa_supplicant[319]: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_RESULTS (3) received
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: Scan completed in 1.574863 seconds
mai 20 09:09:53 mcnugget wpa_supplicant[319]: nl80211: Received scan results (20 BSSes)
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: BSS: Start scan result update 10
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 23 BSSID 00:fc:8d:d0:75:48 SSID 'NOS-7540' freq 2447
mai 20 09:09:53 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/23'
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 24 BSSID bc:4d:fb:50:62:69 SSID 'NOS_Wi-Fi_Hotspots' freq 2437
mai 20 09:09:53 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/24'
mai 20 09:09:53 mcnugget wpa_supplicant[319]: BSS: last_scan_res_used=20/32
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: New scan results available (own=1 ext=0)
mai 20 09:09:53 mcnugget wpa_supplicant[319]: WPS: AP 00:fc:8d:d0:75:48 type 0 added
mai 20 09:09:53 mcnugget wpa_supplicant[319]: WPS: AP[0] 20:3d:b2:1d:24:d8 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: WPS: AP[1] 12:08:c1:0d:61:d3 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: WPS: AP[2] 00:06:91:5d:93:00 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: WPS: AP[3] 00:05:ca:a7:bd:98 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: WPS: AP[4] 2c:a1:7d:55:28:07 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: WPS: AP[5] a4:b1:e9:ea:b4:66 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: WPS: AP[6] 2c:a1:7d:68:cc:25 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: WPS: AP[7] 30:91:8f:92:5e:49 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: WPS: AP[8] 84:94:8c:a4:72:78 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: WPS: AP[9] 00:fc:8d:d0:75:48 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: Radio work 'scan'@0x13eec40 done in 1.595448 seconds
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('scan'@0x13eec40): num_active_works --> 0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-SSID-REENABLED id=0 ssid="Salvaterra Guest"
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: Scan results matching the currently selected network
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: Selecting BSS from priority group 0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 0: 20:3d:b2:1d:24:d8 ssid='SilvaNetwork2G' wpa_ie_len=26 rsn_ie_len=24 caps=0x1411 level=-47 freq=2427  wps
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 1: 00:06:91:5d:93:00 ssid='MEO-5D9300' wpa_ie_len=26 rsn_ie_len=24 caps=0x411 level=-51 freq=2412  wps
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 2: 12:08:c1:0d:61:d3 ssid='DIRECT-AP[TV][LG]32LA620S-ZA' wpa_ie_len=0 rsn_ie_len=20 caps=0x511 level=-61 freq=2412  wps p2p
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 3: a4:b1:e9:ea:b4:66 ssid='Casa' wpa_ie_len=22 rsn_ie_len=20 caps=0x411 level=-65 freq=2462  wps
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 4: 1c:ab:c0:ef:5d:18 ssid='NOS-5D10' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-76 freq=2447
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 5: 84:94:8c:a4:72:78 ssid='NOS-7270' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-78 freq=2457  wps
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 6: 00:05:ca:a7:bd:98 ssid='ZON-BD90' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-79 freq=2442  wps
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 7: 2c:a1:7d:68:cc:25 ssid='NOS-CC25' wpa_ie_len=0 rsn_ie_len=24 caps=0x431 level=-81 freq=2462  wps
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 8: 00:fc:8d:d0:75:48 ssid='NOS-7540' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-86 freq=2447  wps
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 9: 04:f0:21:24:28:44 ssid='Salvaterra' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-40 freq=2437
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 10: 06:f0:21:24:28:44 ssid='Salvaterra Tor' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-40 freq=2437
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 11: 02:f0:21:24:28:44 ssid='Salvaterra Guest' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-40 freq=2437
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - blacklisted (count=1 limit=0)
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 12: 30:91:8f:92:5e:49 ssid='MEO-925E49' wpa_ie_len=22 rsn_ie_len=20 caps=0x411 level=-78 freq=2437  wps
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 13: bc:4d:fb:50:62:68 ssid='NOS-6260' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-83 freq=2437
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 14: 00:06:91:5d:93:02 ssid='MEO-WiFi' wpa_ie_len=0 rsn_ie_len=0 caps=0x401 level=-54 freq=2412
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 15: a6:b1:e9:ea:b4:67 ssid='MEO-WiFi' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-65 freq=2462
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 16: 00:05:ca:a7:bd:99 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-79 freq=2442
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 17: 1c:ab:c0:ef:5d:19 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-81 freq=2447
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 18: 00:13:10:b9:80:71 ssid='\xf0\x9f\x8d\x86\xf0\x9f\x8d\x91\xf0\x9f\x92\xa6\xe2\x9d\x93\xf0\x9f\x98\x8f' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-38 freq=2437
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 19: bc:4d:fb:50:62:69 ssid='NOS_Wi-Fi_Hotspots' wpa_ie_len=0 rsn_ie_len=0 caps=0xc21 level=-77 freq=2437
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: No APs found - clear blacklist and try again
mai 20 09:09:53 mcnugget wpa_supplicant[319]: Removed BSSID 02:f0:21:24:28:44 from blacklist (clear)
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: Scan results matching the currently selected network
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 11: 02:f0:21:24:28:44 freq=2437 level=-40 snr=-40 est_throughput=1000
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: Selecting BSS from priority group 0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 0: 20:3d:b2:1d:24:d8 ssid='SilvaNetwork2G' wpa_ie_len=26 rsn_ie_len=24 caps=0x1411 level=-47 freq=2427  wps
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 1: 00:06:91:5d:93:00 ssid='MEO-5D9300' wpa_ie_len=26 rsn_ie_len=24 caps=0x411 level=-51 freq=2412  wps
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 2: 12:08:c1:0d:61:d3 ssid='DIRECT-AP[TV][LG]32LA620S-ZA' wpa_ie_len=0 rsn_ie_len=20 caps=0x511 level=-61 freq=2412  wps p2p
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 3: a4:b1:e9:ea:b4:66 ssid='Casa' wpa_ie_len=22 rsn_ie_len=20 caps=0x411 level=-65 freq=2462  wps
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 4: 1c:ab:c0:ef:5d:18 ssid='NOS-5D10' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-76 freq=2447
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 5: 84:94:8c:a4:72:78 ssid='NOS-7270' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-78 freq=2457  wps
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 6: 00:05:ca:a7:bd:98 ssid='ZON-BD90' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-79 freq=2442  wps
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 7: 2c:a1:7d:68:cc:25 ssid='NOS-CC25' wpa_ie_len=0 rsn_ie_len=24 caps=0x431 level=-81 freq=2462  wps
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 8: 00:fc:8d:d0:75:48 ssid='NOS-7540' wpa_ie_len=26 rsn_ie_len=24 caps=0xc31 level=-86 freq=2447  wps
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 9: 04:f0:21:24:28:44 ssid='Salvaterra' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-40 freq=2437
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 10: 06:f0:21:24:28:44 ssid='Salvaterra Tor' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-40 freq=2437
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    skip - SSID mismatch
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: 11: 02:f0:21:24:28:44 ssid='Salvaterra Guest' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-40 freq=2437
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    selected based on RSN IE
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0:    selected BSS 02:f0:21:24:28:44 ssid='Salvaterra Guest'
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: Considering connect request: reassociate: 0  selected: 02:f0:21:24:28:44  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid=0x13f02a0  current_ssid=0x13f02a0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: Request association with 02:f0:21:24:28:44
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: Re-association to the same ESS
mai 20 09:09:53 mcnugget wpa_supplicant[319]: WMM AC: Save last configured tspecs
mai 20 09:09:53 mcnugget wpa_supplicant[319]: TDLS: TDLS is allowed in the target BSS
mai 20 09:09:53 mcnugget wpa_supplicant[319]: TDLS: TDLS channel switch allowed in the target BSS
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: No ongoing scan/p2p-scan found to abort
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'sme-connect'@0x13eec40
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'sme-connect'@0x13eec40 after 0.049980 second wait
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing own WPA/RSN IE
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:09:53 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13f02a0 try_opportunistic=0 akmp=0x0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:53 mcnugget wpa_supplicant[319]: RSN: PMKSA cache entry found - PMKID - hexdump(len=16): a7 36 d1 57 34 f3 7f 90 e2 04 9a 54 c9 ab d2 06
mai 20 09:09:53 mcnugget wpa_supplicant[319]: RSN: Trying to use cached PMKSA
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:09:53 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:09:53 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=40): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 a7 36 d1 57 34 f3 7f 90 e2 04 9a 54 c9 ab d2 06
mai 20 09:09:53 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:09:53 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:09:53 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:09:53 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:09:53 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13f02a0 try_opportunistic=0 akmp=0x400
mai 20 09:09:53 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:53 mcnugget wpa_supplicant[319]: RSN: PMKSA cache entry found - PMKID - hexdump(len=16): a7 36 d1 57 34 f3 7f 90 e2 04 9a 54 c9 ab d2 06
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: PMKSA cache entry found - try to use PMKSA caching instead of new SAE authentication
mai 20 09:09:53 mcnugget wpa_supplicant[319]: WPA: Set PMK based on current PMKSA - hexdump(len=32): [REMOVED]
mai 20 09:09:53 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:09:53 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: State: SCANNING -> AUTHENTICATING
mai 20 09:09:53 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:09:53 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:09:53 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:09:53 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:09:53 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:09:53 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:09:53 mcnugget wpa_supplicant[319]:   * Auth Type 0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:09:53 mcnugget wpa_supplicant[319]: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: nl80211: New station 02:f0:21:24:28:44
mai 20 09:09:53 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=0 auth_transaction=2 status_code=0
mai 20 09:09:53 mcnugget wpa_supplicant[319]: SME: Association Request IEs - hexdump(len=55): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 a7 36 d1 57 34 f3 7f 90 e2 04 9a 54 c9 ab d2 06 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: Trying to associate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:09:53 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> ASSOCIATING
mai 20 09:09:53 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:09:53 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:09:53 mcnugget wpa_supplicant[319]: WPA: set own WPA/RSN IE - hexdump(len=40): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 a7 36 d1 57 34 f3 7f 90 e2 04 9a 54 c9 ab d2 06
mai 20 09:09:53 mcnugget wpa_supplicant[319]: nl80211: Associate (ifindex=3)
mai 20 09:09:53 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:09:53 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:09:53 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:09:53 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=55): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 a7 36 d1 57 34 f3 7f 90 e2 04 9a 54 c9 ab d2 06 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:09:53 mcnugget wpa_supplicant[319]:   * WPA Versions 0x2
mai 20 09:09:53 mcnugget wpa_supplicant[319]:   * pairwise=0xfac04
mai 20 09:09:53 mcnugget wpa_supplicant[319]:   * group=0xfac04
mai 20 09:09:53 mcnugget wpa_supplicant[319]:   * akm=0xfac08
mai 20 09:09:53 mcnugget wpa_supplicant[319]:   * htcaps - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:53 mcnugget wpa_supplicant[319]:   * htcaps_mask - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:53 mcnugget wpa_supplicant[319]:   * vhtcaps - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:53 mcnugget wpa_supplicant[319]:   * vhtcaps_mask - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:53 mcnugget wpa_supplicant[319]: nl80211: Association request send successfully
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Delete station 02:f0:21:24:28:44
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Associate event
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Event ASSOC_REJECT (12) received
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=02:f0:21:24:28:44 status_code=31
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: SME: Association with 02:f0:21:24:28:44 failed: status code 31
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: PMKSA caching attempt rejected - drop PMKSA cache entry and fall back to SAE authentication
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: RSN: Cancelling PMKSA caching attempt
mai 20 09:09:54 mcnugget wpa_supplicant[319]: RSN: Flush PMKSA cache entry for 02:f0:21:24:28:44
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: PMKSA-CACHE-REMOVED 02:f0:21:24:28:44 0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Delete PMKID for 02:f0:21:24:28:44
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: NL80211_CMD_DEL_PMKSA failed: -95 (Operation not supported)
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: RSN: PMKSA cache entry free_cb: 02:f0:21:24:28:44 reason=0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wpa_driver_nl80211_deauthenticate(addr=02:f0:21:24:28:44 reason_code=3)
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Radio work 'sme-connect'@0x13eec40 done in 0.280231 seconds
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('sme-connect'@0x13eec40): num_active_works --> 0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Data frame filter flags=0x0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: State: ASSOCIATING -> DISCONNECTED
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:09:54 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:09:54 mcnugget wpa_supplicant[319]: EAPOL: External notification - portEnabled=0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Considering connect request: reassociate: 0  selected: 02:f0:21:24:28:44  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: DISCONNECTED  ssid=0x13f02a0  current_ssid=(nil)
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Request association with 02:f0:21:24:28:44
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Re-association to the same ESS
mai 20 09:09:54 mcnugget wpa_supplicant[319]: TDLS: TDLS is allowed in the target BSS
mai 20 09:09:54 mcnugget wpa_supplicant[319]: TDLS: TDLS channel switch allowed in the target BSS
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: No ongoing scan/p2p-scan found to abort
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'sme-connect'@0x13eec40
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'sme-connect'@0x13eec40 after 0.000072 second wait
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing own WPA/RSN IE
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:09:54 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=(nil) try_opportunistic=0 akmp=0x0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:54 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:09:54 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:09:54 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:09:54 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:09:54 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:09:54 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:09:54 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:09:54 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13f02a0 try_opportunistic=0 akmp=0x400
mai 20 09:09:54 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:54 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: Selecting supported ECC group 19
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: SME: Selected SAE group 19
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: password - hexdump(len=11): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: PWE derivation - addr1=00:11:24:c2:dc:7e addr2=02:f0:21:24:28:44
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 001
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 002
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 003
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 004
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 005
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 006
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 007
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 008
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 009
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 010
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 011
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 012
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 013
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 014
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 015
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 016
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 017
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 018
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 019
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 020
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 021
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 022
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 023
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 024
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 025
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 026
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 027
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 028
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 029
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 030
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 031
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 032
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 033
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 034
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 035
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 036
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 037
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 038
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 039
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 0 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: counter = 040
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: pwd-seed result 1 found=0xff
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: own commit-scalar - hexdump(len=32): 42 25 1c ad 5a 5e f1 39 c8 ab 5f a4 85 16 d1 98 23 ad 92 31 95 dd 3f ee 11 73 ae 90 c1 45 fe 42
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: own commit-element(x) - hexdump(len=32): 96 71 7b 4b 13 0c b6 41 0a 4a 67 a9 3f 0f f4 97 ca 7d 3d 6d 64 27 99 24 c1 fd 24 ad 78 7e 59 51
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: own commit-element(y) - hexdump(len=32): 07 e9 f6 3f 6d e9 a9 87 72 07 95 3c c7 18 85 bd 60 a1 c9 9d cb 9a d8 54 49 7a 00 ad 43 e1 7a 86
mai 20 09:09:54 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:09:54 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: State: DISCONNECTED -> AUTHENTICATING
mai 20 09:09:54 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * auth_data - hexdump(len=102): 01 00 00 00 13 00 42 25 1c ad 5a 5e f1 39 c8 ab 5f a4 85 16 d1 98 23 ad 92 31 95 dd 3f ee 11 73 ae 90 c1 45 fe 42 96 71 7b 4b 13 0c b6 41 0a 4a 67 a9 3f 0f f4 97 ca 7d 3d 6d 64 27 99 24 c1 fd 24 ad 78 7e 59 51 07 e9 f6 3f 6d e9 a9 87 72 07 95 3c c7 18 85 bd 60 a1 c9 9d cb 9a d8 54 49 7a 00 ad 43 e1 7a 86
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * Auth Type 4
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Ignore connect event (cmd=46) when using userspace SME
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: New station 02:f0:21:24:28:44
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=3 auth_transaction=1 status_code=0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: SME: SAE authentication transaction 1 status code 0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: SME SAE commit
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: Peer commit-scalar - hexdump(len=32): 66 de 65 26 f7 1e a5 2c 38 b5 cc 13 3c df a8 ee b9 d0 5e 64 bc 74 7c d5 1d c7 22 b2 06 e5 7c 23
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: Peer commit-element(x) - hexdump(len=32): f8 99 1b a3 20 aa 41 ed fd fd c0 43 30 ad f2 50 cf 2d df ce 6b 28 a1 5c 80 10 19 3b 56 e9 1c df
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: Peer commit-element(y) - hexdump(len=32): 45 5f da 2b 3b b6 bc 0b 73 e2 ec 68 9c 2a 78 15 09 51 7f 20 85 e1 fd 94 57 5e 40 5f 47 56 0d f4
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: Possible elements at the end of the frame - hexdump(len=0):
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: k - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: keyseed - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: PMKID - hexdump(len=16): a9 03 81 d4 51 7d 96 66 01 61 2b b7 c1 f6 7a 86
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: KCK - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: PMK - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Automatic auth_alg selection: 0x1
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Using SAE auth_alg
mai 20 09:09:54 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13f02a0 try_opportunistic=0 akmp=0x0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:54 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: RSN: using IEEE 802.11i/D9.0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: WPA: Selected mgmt group cipher 32
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: WPA: clearing AP WPA IE
mai 20 09:09:54 mcnugget wpa_supplicant[319]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: WPA: using GTK CCMP
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: WPA: using PTK CCMP
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: RSN: using KEY_MGMT SAE
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: WPA: not using MGMT group cipher
mai 20 09:09:54 mcnugget wpa_supplicant[319]: WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:09:54 mcnugget wpa_supplicant[319]: WPA: Leave previously set WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:09:54 mcnugget wpa_supplicant[319]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 09:09:54 mcnugget wpa_supplicant[319]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 09:09:54 mcnugget wpa_supplicant[319]: RRM: No RRM in network
mai 20 09:09:54 mcnugget wpa_supplicant[319]: Added supported operating classes IE - hexdump(len=5): 3b 03 51 51 52
mai 20 09:09:54 mcnugget wpa_supplicant[319]: RSN: PMKSA cache search - network_ctx=0x13f02a0 try_opportunistic=0 akmp=0x400
mai 20 09:09:54 mcnugget wpa_supplicant[319]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 09:09:54 mcnugget wpa_supplicant[319]: RSN: No PMKSA cache entry found
mai 20 09:09:54 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP fail=0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: EAPOL: External notification - portControl=Auto
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:09:54 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> AUTHENTICATING
mai 20 09:09:54 mcnugget wpa_supplicant[319]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Determining shared radio frequencies (max len 1)
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Shared frequencies (len=0): completed iteration
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Authenticate (ifindex=3)
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=0): [NULL]
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * auth_data - hexdump(len=38): 02 00 00 00 00 00 29 d9 45 ff cc 97 50 75 2a b4 76 5e 8a aa 12 83 1e 82 2c dd 38 b6 9f 52 fa c3 9c 19 da 80 a6 b5
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * Auth Type 4
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Authentication request send successfully
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Authenticate event
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Event AUTH (10) received
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=3 auth_transaction=2 status_code=0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: SME: SAE authentication transaction 2 status code 0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: SME SAE confirm
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SAE: peer-send-confirm 65535
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SME: SAE completed - setting PMK for 4-way handshake
mai 20 09:09:54 mcnugget wpa_supplicant[319]: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
mai 20 09:09:54 mcnugget wpa_supplicant[319]: RSN: Added PMKSA cache entry for 02:f0:21:24:28:44 network_ctx=0x13f02a0 akmp=0x400
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: PMKSA-CACHE-ADDED 02:f0:21:24:28:44 0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Add PMKID for 02:f0:21:24:28:44
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: NL80211_CMD_SET_PMKSA failed: -95 (Operation not supported)
mai 20 09:09:54 mcnugget wpa_supplicant[319]: SME: Association Request IEs - hexdump(len=37): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Trying to associate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2437 MHz)
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: State: AUTHENTICATING -> ASSOCIATING
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:09:54 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:09:54 mcnugget wpa_supplicant[319]: WPA: set own WPA/RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Associate (ifindex=3)
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * bssid=02:f0:21:24:28:44
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * freq=2437
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * SSID=Salvaterra Guest
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * IEs - hexdump(len=37): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 08 00 00 00 00 01 00 00 40 3b 03 51 51 52
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * WPA Versions 0x2
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * pairwise=0xfac04
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * group=0xfac04
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * akm=0xfac08
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * htcaps - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * htcaps_mask - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * vhtcaps - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:54 mcnugget wpa_supplicant[319]:   * vhtcaps_mask - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Association request send successfully
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Delete station 02:f0:21:24:28:44
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Associate event
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Event ASSOC_REJECT (12) received
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=02:f0:21:24:28:44 status_code=31
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: SME: Association with 02:f0:21:24:28:44 failed: status code 31
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wpa_driver_nl80211_deauthenticate(addr=02:f0:21:24:28:44 reason_code=3)
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: SME: Deauth request to the driver failed
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Radio work 'sme-connect'@0x13eec40 done in 0.416216 seconds
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('sme-connect'@0x13eec40): num_active_works --> 0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: Added BSSID 02:f0:21:24:28:44 into blacklist
mai 20 09:09:54 mcnugget wpa_supplicant[319]: Continuous association failures - consider temporary network disabling
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="Salvaterra Guest" auth_failures=2 duration=20 reason=CONN_FAILED
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Blacklist count 9 --> request scan in 10000 ms
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: Setting scan request: 10.000000 sec
mai 20 09:09:54 mcnugget wpa_supplicant[319]: wlan0: State: ASSOCIATING -> DISCONNECTED
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:09:54 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan0
mai 20 09:09:54 mcnugget wpa_supplicant[319]: nl80211: Ignore connect event (cmd=46) when using userspace SME
mai 20 09:10:04 mcnugget wpa_supplicant[319]: wlan0: State: DISCONNECTED -> SCANNING
mai 20 09:10:04 mcnugget wpa_supplicant[319]: Scan SSID - hexdump(len=16): 53 61 6c 76 61 74 65 72 72 61 20 47 75 65 73 74
mai 20 09:10:04 mcnugget wpa_supplicant[319]: wlan0: Starting AP scan for wildcard SSID
mai 20 09:10:04 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'scan'@0x13b0430
mai 20 09:10:04 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:10:04 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'scan'@0x13b0430 after 0.000038 second wait
mai 20 09:10:04 mcnugget wpa_supplicant[319]: wlan0: nl80211: scan request
mai 20 09:10:04 mcnugget wpa_supplicant[319]: Scan requested (ret=0) - scan timeout 30 seconds
mai 20 09:10:04 mcnugget wpa_supplicant[319]: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
mai 20 09:10:04 mcnugget wpa_supplicant[319]: wlan0: nl80211: Scan trigger
mai 20 09:10:04 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_STARTED (47) received
mai 20 09:10:04 mcnugget wpa_supplicant[319]: wlan0: Own scan request started a scan in 0.000103 seconds
mai 20 09:10:05 mcnugget wpa_supplicant[319]: wlan0: Cancelling scan request
mai 20 09:10:05 mcnugget wpa_supplicant[319]: wlan0: Request to deauthenticate - bssid=00:00:00:00:00:00 pending_bssid=00:00:00:00:00:00 reason=3 (DEAUTH_LEAVING) state=SCANNING
mai 20 09:10:05 mcnugget wpa_supplicant[319]: TDLS: Tear down peers
mai 20 09:10:05 mcnugget wpa_supplicant[319]: nl80211: Data frame filter flags=0x0
mai 20 09:10:05 mcnugget wpa_supplicant[319]: wlan0: State: SCANNING -> DISCONNECTED
mai 20 09:10:05 mcnugget wpa_supplicant[319]: nl80211: Set wlan0 operstate 0->0 (DORMANT)
mai 20 09:10:05 mcnugget wpa_supplicant[319]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 09:10:05 mcnugget wpa_supplicant[319]: EAPOL: External notification - portEnabled=0
mai 20 09:10:05 mcnugget wpa_supplicant[319]: EAPOL: External notification - portValid=0
mai 20 09:10:05 mcnugget wpa_supplicant[319]: EAPOL: External notification - EAP success=0
mai 20 09:10:05 mcnugget wpa_supplicant[319]: RSN: Flush PMKSA cache entry for 02:f0:21:24:28:44
mai 20 09:10:05 mcnugget wpa_supplicant[319]: wlan0: PMKSA-CACHE-REMOVED 02:f0:21:24:28:44 0
mai 20 09:10:05 mcnugget wpa_supplicant[319]: nl80211: Delete PMKID for 02:f0:21:24:28:44
mai 20 09:10:05 mcnugget wpa_supplicant[319]: nl80211: NL80211_CMD_DEL_PMKSA failed: -95 (Operation not supported)
mai 20 09:10:05 mcnugget wpa_supplicant[319]: wlan0: RSN: PMKSA cache entry free_cb: 02:f0:21:24:28:44 reason=0
mai 20 09:10:05 mcnugget wpa_supplicant[319]: dbus: Unregister network object '/fi/w1/wpa_supplicant1/Interfaces/0/Networks/0'
mai 20 09:10:05 mcnugget wpa_supplicant[319]: wlan0: Reject scan trigger since one is already pending
mai 20 09:10:05 mcnugget wpa_supplicant[319]: RTM_NEWLINK: ifi_index=3 ifname=wlan0 operstate=33554432 linkmode=16777216 ifi_family=0 ifi_flags=0x1003 ([UP])
mai 20 09:10:06 mcnugget wpa_supplicant[319]: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
mai 20 09:10:06 mcnugget wpa_supplicant[319]: wlan0: nl80211: New scan results available
mai 20 09:10:06 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID 'Salvaterra Guest'
mai 20 09:10:06 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID ''
mai 20 09:10:06 mcnugget wpa_supplicant[319]: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484
mai 20 09:10:06 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_RESULTS (3) received
mai 20 09:10:06 mcnugget wpa_supplicant[319]: wlan0: Scan completed in 1.567982 seconds
mai 20 09:10:06 mcnugget wpa_supplicant[319]: nl80211: Received scan results (21 BSSes)
mai 20 09:10:06 mcnugget wpa_supplicant[319]: wlan0: BSS: Start scan result update 11
mai 20 09:10:06 mcnugget wpa_supplicant[319]: BSS: last_scan_res_used=21/32
mai 20 09:10:06 mcnugget wpa_supplicant[319]: wlan0: Scan-only results received
mai 20 09:10:06 mcnugget wpa_supplicant[319]: wlan0: Radio work 'scan'@0x13b0430 done in 1.573365 seconds
mai 20 09:10:06 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('scan'@0x13b0430): num_active_works --> 0
mai 20 09:10:06 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'scan'@0x13ebc90
mai 20 09:10:06 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:10:06 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'scan'@0x13ebc90 after 0.000370 second wait
mai 20 09:10:06 mcnugget wpa_supplicant[319]: wlan0: nl80211: scan request
mai 20 09:10:06 mcnugget wpa_supplicant[319]: Scan requested (ret=0) - scan timeout 30 seconds
mai 20 09:10:06 mcnugget wpa_supplicant[319]: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
mai 20 09:10:06 mcnugget wpa_supplicant[319]: wlan0: nl80211: Scan trigger
mai 20 09:10:06 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_STARTED (47) received
mai 20 09:10:06 mcnugget wpa_supplicant[319]: wlan0: Own scan request started a scan in 0.000123 seconds
mai 20 09:10:07 mcnugget wpa_supplicant[319]: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
mai 20 09:10:07 mcnugget wpa_supplicant[319]: wlan0: nl80211: New scan results available
mai 20 09:10:07 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID ''
mai 20 09:10:07 mcnugget wpa_supplicant[319]: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484
mai 20 09:10:07 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_RESULTS (3) received
mai 20 09:10:07 mcnugget wpa_supplicant[319]: wlan0: Scan completed in 1.531526 seconds
mai 20 09:10:07 mcnugget wpa_supplicant[319]: nl80211: Received scan results (21 BSSes)
mai 20 09:10:07 mcnugget wpa_supplicant[319]: wlan0: BSS: Start scan result update 12
mai 20 09:10:07 mcnugget wpa_supplicant[319]: BSS: last_scan_res_used=21/32
mai 20 09:10:07 mcnugget wpa_supplicant[319]: wlan0: Scan-only results received
mai 20 09:10:07 mcnugget wpa_supplicant[319]: wlan0: Radio work 'scan'@0x13ebc90 done in 1.538834 seconds
mai 20 09:10:07 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('scan'@0x13ebc90): num_active_works --> 0
mai 20 09:10:09 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'scan'@0x13b0190
mai 20 09:10:09 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:10:09 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'scan'@0x13b0190 after 0.000638 second wait
mai 20 09:10:09 mcnugget wpa_supplicant[319]: wlan0: nl80211: scan request
mai 20 09:10:09 mcnugget wpa_supplicant[319]: Scan requested (ret=0) - scan timeout 30 seconds
mai 20 09:10:09 mcnugget wpa_supplicant[319]: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
mai 20 09:10:09 mcnugget wpa_supplicant[319]: wlan0: nl80211: Scan trigger
mai 20 09:10:09 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_STARTED (47) received
mai 20 09:10:09 mcnugget wpa_supplicant[319]: wlan0: Own scan request started a scan in 0.000693 seconds
mai 20 09:10:11 mcnugget wpa_supplicant[319]: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
mai 20 09:10:11 mcnugget wpa_supplicant[319]: wlan0: nl80211: New scan results available
mai 20 09:10:11 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID ''
mai 20 09:10:11 mcnugget wpa_supplicant[319]: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484
mai 20 09:10:11 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_RESULTS (3) received
mai 20 09:10:11 mcnugget wpa_supplicant[319]: wlan0: Scan completed in 1.569297 seconds
mai 20 09:10:11 mcnugget wpa_supplicant[319]: nl80211: Received scan results (22 BSSes)
mai 20 09:10:11 mcnugget wpa_supplicant[319]: wlan0: BSS: Start scan result update 13
mai 20 09:10:11 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 25 BSSID 84:94:8c:a4:72:79 SSID 'NOS_Wi-Fi_Hotspots' freq 2457
mai 20 09:10:11 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/25'
mai 20 09:10:11 mcnugget wpa_supplicant[319]: BSS: last_scan_res_used=22/32
mai 20 09:10:11 mcnugget wpa_supplicant[319]: wlan0: Scan-only results received
mai 20 09:10:11 mcnugget wpa_supplicant[319]: wlan0: Radio work 'scan'@0x13b0190 done in 1.602787 seconds
mai 20 09:10:11 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('scan'@0x13b0190): num_active_works --> 0
mai 20 09:10:14 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'scan'@0x13b0190
mai 20 09:10:14 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:10:14 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'scan'@0x13b0190 after 0.000386 second wait
mai 20 09:10:14 mcnugget wpa_supplicant[319]: wlan0: nl80211: scan request
mai 20 09:10:14 mcnugget wpa_supplicant[319]: Scan requested (ret=0) - scan timeout 30 seconds
mai 20 09:10:14 mcnugget wpa_supplicant[319]: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
mai 20 09:10:14 mcnugget wpa_supplicant[319]: wlan0: nl80211: Scan trigger
mai 20 09:10:14 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_STARTED (47) received
mai 20 09:10:14 mcnugget wpa_supplicant[319]: wlan0: Own scan request started a scan in 0.000201 seconds
mai 20 09:10:16 mcnugget wpa_supplicant[319]: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
mai 20 09:10:16 mcnugget wpa_supplicant[319]: wlan0: nl80211: New scan results available
mai 20 09:10:16 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID ''
mai 20 09:10:16 mcnugget wpa_supplicant[319]: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484
mai 20 09:10:16 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_RESULTS (3) received
mai 20 09:10:16 mcnugget wpa_supplicant[319]: wlan0: Scan completed in 1.530305 seconds
mai 20 09:10:16 mcnugget wpa_supplicant[319]: nl80211: Received scan results (21 BSSes)
mai 20 09:10:16 mcnugget wpa_supplicant[319]: wlan0: BSS: Start scan result update 14
mai 20 09:10:16 mcnugget wpa_supplicant[319]: BSS: last_scan_res_used=21/32
mai 20 09:10:16 mcnugget wpa_supplicant[319]: wlan0: Scan-only results received
mai 20 09:10:16 mcnugget wpa_supplicant[319]: wlan0: Radio work 'scan'@0x13b0190 done in 1.540214 seconds
mai 20 09:10:16 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('scan'@0x13b0190): num_active_works --> 0
mai 20 09:10:21 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'scan'@0x13d8bb0
mai 20 09:10:21 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:10:21 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'scan'@0x13d8bb0 after 0.000380 second wait
mai 20 09:10:21 mcnugget wpa_supplicant[319]: wlan0: nl80211: scan request
mai 20 09:10:21 mcnugget wpa_supplicant[319]: Scan requested (ret=0) - scan timeout 30 seconds
mai 20 09:10:21 mcnugget wpa_supplicant[319]: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
mai 20 09:10:21 mcnugget wpa_supplicant[319]: wlan0: nl80211: Scan trigger
mai 20 09:10:21 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_STARTED (47) received
mai 20 09:10:21 mcnugget wpa_supplicant[319]: wlan0: Own scan request started a scan in 0.000142 seconds
mai 20 09:10:23 mcnugget wpa_supplicant[319]: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
mai 20 09:10:23 mcnugget wpa_supplicant[319]: wlan0: nl80211: New scan results available
mai 20 09:10:23 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID ''
mai 20 09:10:23 mcnugget wpa_supplicant[319]: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484
mai 20 09:10:23 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_RESULTS (3) received
mai 20 09:10:23 mcnugget wpa_supplicant[319]: wlan0: Scan completed in 1.559120 seconds
mai 20 09:10:23 mcnugget wpa_supplicant[319]: nl80211: Received scan results (20 BSSes)
mai 20 09:10:23 mcnugget wpa_supplicant[319]: wlan0: BSS: Start scan result update 15
mai 20 09:10:23 mcnugget wpa_supplicant[319]: wlan0: BSS: Remove id 22 BSSID 84:94:8c:a4:72:78 SSID 'NOS-7270' due to no match in scan
mai 20 09:10:23 mcnugget wpa_supplicant[319]: dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/22'
mai 20 09:10:23 mcnugget wpa_supplicant[319]: BSS: last_scan_res_used=20/32
mai 20 09:10:23 mcnugget wpa_supplicant[319]: wlan0: Scan-only results received
mai 20 09:10:23 mcnugget wpa_supplicant[319]: wlan0: Radio work 'scan'@0x13d8bb0 done in 1.571858 seconds
mai 20 09:10:23 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('scan'@0x13d8bb0): num_active_works --> 0
mai 20 09:10:31 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'scan'@0x13de060
mai 20 09:10:31 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:10:31 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'scan'@0x13de060 after 0.000377 second wait
mai 20 09:10:31 mcnugget wpa_supplicant[319]: wlan0: nl80211: scan request
mai 20 09:10:31 mcnugget wpa_supplicant[319]: Scan requested (ret=0) - scan timeout 30 seconds
mai 20 09:10:31 mcnugget wpa_supplicant[319]: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
mai 20 09:10:31 mcnugget wpa_supplicant[319]: wlan0: nl80211: Scan trigger
mai 20 09:10:31 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_STARTED (47) received
mai 20 09:10:31 mcnugget wpa_supplicant[319]: wlan0: Own scan request started a scan in 0.000150 seconds
mai 20 09:10:33 mcnugget wpa_supplicant[319]: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
mai 20 09:10:33 mcnugget wpa_supplicant[319]: wlan0: nl80211: New scan results available
mai 20 09:10:33 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID ''
mai 20 09:10:33 mcnugget wpa_supplicant[319]: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484
mai 20 09:10:33 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_RESULTS (3) received
mai 20 09:10:33 mcnugget wpa_supplicant[319]: wlan0: Scan completed in 1.534689 seconds
mai 20 09:10:33 mcnugget wpa_supplicant[319]: nl80211: Received scan results (20 BSSes)
mai 20 09:10:33 mcnugget wpa_supplicant[319]: wlan0: BSS: Start scan result update 16
mai 20 09:10:33 mcnugget wpa_supplicant[319]: wlan0: BSS: Remove id 23 BSSID 00:fc:8d:d0:75:48 SSID 'NOS-7540' due to no match in scan
mai 20 09:10:33 mcnugget wpa_supplicant[319]: dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/23'
mai 20 09:10:33 mcnugget wpa_supplicant[319]: BSS: last_scan_res_used=20/32
mai 20 09:10:33 mcnugget wpa_supplicant[319]: wlan0: Scan-only results received
mai 20 09:10:33 mcnugget wpa_supplicant[319]: wlan0: Radio work 'scan'@0x13de060 done in 1.551592 seconds
mai 20 09:10:33 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('scan'@0x13de060): num_active_works --> 0
mai 20 09:10:45 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'scan'@0x13dc000
mai 20 09:10:45 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:10:45 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'scan'@0x13dc000 after 0.000616 second wait
mai 20 09:10:45 mcnugget wpa_supplicant[319]: wlan0: nl80211: scan request
mai 20 09:10:45 mcnugget wpa_supplicant[319]: Scan requested (ret=0) - scan timeout 30 seconds
mai 20 09:10:45 mcnugget wpa_supplicant[319]: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
mai 20 09:10:45 mcnugget wpa_supplicant[319]: wlan0: nl80211: Scan trigger
mai 20 09:10:45 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_STARTED (47) received
mai 20 09:10:45 mcnugget wpa_supplicant[319]: wlan0: Own scan request started a scan in 0.000693 seconds
mai 20 09:10:47 mcnugget wpa_supplicant[319]: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
mai 20 09:10:47 mcnugget wpa_supplicant[319]: wlan0: nl80211: New scan results available
mai 20 09:10:47 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID ''
mai 20 09:10:47 mcnugget wpa_supplicant[319]: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484
mai 20 09:10:47 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_RESULTS (3) received
mai 20 09:10:47 mcnugget wpa_supplicant[319]: wlan0: Scan completed in 1.560574 seconds
mai 20 09:10:47 mcnugget wpa_supplicant[319]: nl80211: Received scan results (18 BSSes)
mai 20 09:10:47 mcnugget wpa_supplicant[319]: wlan0: BSS: Start scan result update 17
mai 20 09:10:47 mcnugget wpa_supplicant[319]: wlan0: BSS: Add new id 26 BSSID 00:fc:8d:d0:75:48 SSID 'NOS-7540' freq 2447
mai 20 09:10:47 mcnugget wpa_supplicant[319]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/26'
mai 20 09:10:47 mcnugget wpa_supplicant[319]: BSS: last_scan_res_used=18/32
mai 20 09:10:47 mcnugget wpa_supplicant[319]: wlan0: Scan-only results received
mai 20 09:10:47 mcnugget wpa_supplicant[319]: wlan0: Radio work 'scan'@0x13dc000 done in 1.581861 seconds
mai 20 09:10:47 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('scan'@0x13dc000): num_active_works --> 0
mai 20 09:11:05 mcnugget wpa_supplicant[319]: wlan0: Add radio work 'scan'@0x13cab20
mai 20 09:11:05 mcnugget wpa_supplicant[319]: wlan0: First radio work item in the queue - schedule start immediately
mai 20 09:11:05 mcnugget wpa_supplicant[319]: wlan0: Starting radio work 'scan'@0x13cab20 after 0.000634 second wait
mai 20 09:11:05 mcnugget wpa_supplicant[319]: wlan0: nl80211: scan request
mai 20 09:11:05 mcnugget wpa_supplicant[319]: Scan requested (ret=0) - scan timeout 30 seconds
mai 20 09:11:05 mcnugget wpa_supplicant[319]: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
mai 20 09:11:05 mcnugget wpa_supplicant[319]: wlan0: nl80211: Scan trigger
mai 20 09:11:05 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_STARTED (47) received
mai 20 09:11:05 mcnugget wpa_supplicant[319]: wlan0: Own scan request started a scan in 0.000696 seconds
mai 20 09:11:07 mcnugget wpa_supplicant[319]: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
mai 20 09:11:07 mcnugget wpa_supplicant[319]: wlan0: nl80211: New scan results available
mai 20 09:11:07 mcnugget wpa_supplicant[319]: nl80211: Scan probed for SSID ''
mai 20 09:11:07 mcnugget wpa_supplicant[319]: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484
mai 20 09:11:07 mcnugget wpa_supplicant[319]: wlan0: Event SCAN_RESULTS (3) received
mai 20 09:11:07 mcnugget wpa_supplicant[319]: wlan0: Scan completed in 1.556110 seconds
mai 20 09:11:07 mcnugget wpa_supplicant[319]: nl80211: Received scan results (19 BSSes)
mai 20 09:11:07 mcnugget wpa_supplicant[319]: wlan0: BSS: Start scan result update 18
mai 20 09:11:07 mcnugget wpa_supplicant[319]: wlan0: BSS: Remove id 16 BSSID 2c:a1:7d:68:cc:25 SSID 'NOS-CC25' due to no match in scan
mai 20 09:11:07 mcnugget wpa_supplicant[319]: dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/16'
mai 20 09:11:07 mcnugget wpa_supplicant[319]: wlan0: BSS: Remove id 25 BSSID 84:94:8c:a4:72:79 SSID 'NOS_Wi-Fi_Hotspots' due to no match in scan
mai 20 09:11:07 mcnugget wpa_supplicant[319]: dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/25'
mai 20 09:11:07 mcnugget wpa_supplicant[319]: BSS: last_scan_res_used=19/32
mai 20 09:11:07 mcnugget wpa_supplicant[319]: wlan0: Scan-only results received
mai 20 09:11:07 mcnugget wpa_supplicant[319]: wlan0: Radio work 'scan'@0x13cab20 done in 1.577101 seconds
mai 20 09:11:07 mcnugget wpa_supplicant[319]: wlan0: radio_work_free('scan'@0x13cab20): num_active_works --> 0

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-20  8:24         ` Rui Salvaterra
@ 2020-05-20 10:55           ` Rui Salvaterra
  2020-05-20 20:08             ` Larry Finger
  0 siblings, 1 reply; 33+ messages in thread
From: Rui Salvaterra @ 2020-05-20 10:55 UTC (permalink / raw)
  To: Larry Finger; +Cc: linux-wireless, b43-dev

On Wed, 20 May 2020 at 09:24, Rui Salvaterra <rsalvaterra@gmail.com> wrote:
>
> Hi, Larry,
>
> On Wed, 20 May 2020 at 01:16, Larry Finger <Larry.Finger@lwfinger.net> wrote:
> >
> > It is necessary to load the driver with option nohwcrypt set to 1. I expect that
> > you probably did that, but I forgot to mention it.
>
> Yes, of course. I don't use modules, so I pass b43.nohwcrypt=1 in the
> kernel command line. I confirmed in sysfs the nohwcrypt parameter is
> correctly set to 1.
>
> > It would likely help if you can get verbose logs from wpa_supplicant.
>
> No problem! Attached is a wpa_supplicant -d log. Let me know if you
> need extra verbosity.
>
> Thanks,
> Rui

By the way, I just tested with WPA2 forcing MFP (pmf=3 in the Network
Manager connection) and it also doesn't connect.

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-20 10:55           ` Rui Salvaterra
@ 2020-05-20 20:08             ` Larry Finger
  2020-05-20 20:28               ` Rui Salvaterra
  0 siblings, 1 reply; 33+ messages in thread
From: Larry Finger @ 2020-05-20 20:08 UTC (permalink / raw)
  To: Rui Salvaterra; +Cc: linux-wireless, b43-dev

On 5/20/20 5:55 AM, Rui Salvaterra wrote:
> On Wed, 20 May 2020 at 09:24, Rui Salvaterra <rsalvaterra@gmail.com> wrote:
>>
>> Hi, Larry,
>>
>> On Wed, 20 May 2020 at 01:16, Larry Finger <Larry.Finger@lwfinger.net> wrote:
>>>
>>> It is necessary to load the driver with option nohwcrypt set to 1. I expect that
>>> you probably did that, but I forgot to mention it.
>>
>> Yes, of course. I don't use modules, so I pass b43.nohwcrypt=1 in the
>> kernel command line. I confirmed in sysfs the nohwcrypt parameter is
>> correctly set to 1.
>>
>>> It would likely help if you can get verbose logs from wpa_supplicant.
>>
>> No problem! Attached is a wpa_supplicant -d log. Let me know if you
>> need extra verbosity.
>>
>> Thanks,
>> Rui
> 
> By the way, I just tested with WPA2 forcing MFP (pmf=3 in the Network
> Manager connection) and it also doesn't connect.

I found this line in the b43 logs:
nl80211: NL80211_CMD_SET_PMKSA failed: -95 (Operation not supported)

Could we also see the supplicant log for the RaLink driver that works?

Larry


^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-20 20:08             ` Larry Finger
@ 2020-05-20 20:28               ` Rui Salvaterra
  2020-05-20 20:56                 ` Larry Finger
  0 siblings, 1 reply; 33+ messages in thread
From: Rui Salvaterra @ 2020-05-20 20:28 UTC (permalink / raw)
  To: Larry Finger; +Cc: linux-wireless, b43-dev

[-- Attachment #1: Type: text/plain, Size: 351 bytes --]

On Wed, 20 May 2020 at 21:08, Larry Finger <Larry.Finger@lwfinger.net> wrote:
>
> I found this line in the b43 logs:
> nl80211: NL80211_CMD_SET_PMKSA failed: -95 (Operation not supported)
>
> Could we also see the supplicant log for the RaLink driver that works?

Sure thing, here you go! This one's much shorter, since the connection
was successful.

[-- Attachment #2: wpa_supplicant.log --]
[-- Type: application/octet-stream, Size: 64256 bytes --]

-- Logs begin at Wed 2020-05-20 21:24:26 WEST, end at Wed 2020-05-20 21:25:04 WEST. --
mai 20 21:24:30 vedder systemd[1]: Starting WPA supplicant...
mai 20 21:24:30 vedder wpa_supplicant[376]: wpa_supplicant v2.9
mai 20 21:24:30 vedder wpa_supplicant[376]: random: getrandom() support available
mai 20 21:24:30 vedder wpa_supplicant[376]: dbus: Register D-Bus object '/fi/w1/wpa_supplicant1'
mai 20 21:24:30 vedder wpa_supplicant[376]: Providing DBus service 'fi.w1.wpa_supplicant1'.
mai 20 21:24:30 vedder wpa_supplicant[376]: Successfully initialized wpa_supplicant
mai 20 21:24:30 vedder systemd[1]: Started WPA supplicant.
mai 20 21:24:35 vedder wpa_supplicant[376]: Override interface parameter: ctrl_interface ('(null)' -> '/run/wpa_supplicant')
mai 20 21:24:35 vedder wpa_supplicant[376]: Initializing interface 'wlp4s0' conf 'N/A' driver 'nl80211,wext' ctrl_interface '/run/wpa_supplicant' bridge 'N/A'
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Supported cipher 00-0f-ac:1
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Supported cipher 00-0f-ac:5
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Supported cipher 00-0f-ac:2
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Supported cipher 00-0f-ac:4
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Supported cipher 00-0f-ac:10
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Supported cipher 00-0f-ac:8
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Supported cipher 00-0f-ac:9
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Supported cipher 00-0f-ac:6
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Supported cipher 00-0f-ac:13
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Supported cipher 00-0f-ac:11
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Supported cipher 00-0f-ac:12
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Using driver-based off-channel TX
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Driver-advertised extended capabilities (default) - hexdump(len=8): 00 00 00 00 00 00 00 40
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Driver-advertised extended capabilities mask (default) - hexdump(len=8): 00 00 00 00 00 00 00 40
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: interface wlp4s0 in phy phy0
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Set mode ifindex 3 iftype 2 (STATION)
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Subscribe to mgmt frames with non-AP handle 0x5619b2433fc0
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x5619b2433fc0 match=0104
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x5619b2433fc0 match=040a
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x5619b2433fc0 match=040b
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x5619b2433fc0 match=040c
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x5619b2433fc0 match=040d
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x5619b2433fc0 match=090a
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x5619b2433fc0 match=090b
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x5619b2433fc0 match=090c
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x5619b2433fc0 match=090d
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x5619b2433fc0 match=0409506f9a09
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x5619b2433fc0 match=7f506f9a09
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x5619b2433fc0 match=0409506f9a1a
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x5619b2433fc0 match=0801
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x5619b2433fc0 match=12
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x5619b2433fc0 match=06
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x5619b2433fc0 match=0a07
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x5619b2433fc0 match=0a11
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x5619b2433fc0 match=0a1a
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x5619b2433fc0 match=1101
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x5619b2433fc0 match=1102
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x5619b2433fc0 match=0505
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x5619b2433fc0 match=0500
mai 20 21:24:35 vedder wpa_supplicant[376]: rfkill: initial event: idx=0 type=1 op=0 soft=0 hard=0
mai 20 21:24:35 vedder wpa_supplicant[376]: netlink: Operstate: ifindex=3 linkmode=1 (userspace-control), operstate=5 (IF_OPER_DORMANT)
mai 20 21:24:35 vedder wpa_supplicant[376]: Add interface wlp4s0 to a new radio phy0
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Regulatory information - country=00
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: 2400-2494 @ 80 MHz 40 mBm
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: 4910-4990 @ 80 MHz 40 mBm
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: 5030-5090 @ 40 MHz 40 mBm
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: 5150-5350 @ 160 MHz 40 mBm
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: 5470-5730 @ 160 MHz 40 mBm
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: 5725-5875 @ 80 MHz 40 mBm
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: 17100-17300 @ 160 MHz 40 mBm
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: 57000-66000 @ 2160 MHz 40 mBm
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Added 802.11b mode based on 802.11g information
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Mode IEEE 802.11g: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Mode IEEE 802.11b: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484
mai 20 21:24:35 vedder wpa_supplicant[376]: wlp4s0: Own MAC address: 00:22:43:41:ab:6c
mai 20 21:24:35 vedder wpa_supplicant[376]: wpa_driver_nl80211_set_key: ifindex=3 (wlp4s0) alg=0 addr=(nil) key_idx=0 set_tx=0 seq_len=0 key_len=0
mai 20 21:24:35 vedder wpa_supplicant[376]: wpa_driver_nl80211_set_key: ifindex=3 (wlp4s0) alg=0 addr=(nil) key_idx=1 set_tx=0 seq_len=0 key_len=0
mai 20 21:24:35 vedder wpa_supplicant[376]: wpa_driver_nl80211_set_key: ifindex=3 (wlp4s0) alg=0 addr=(nil) key_idx=2 set_tx=0 seq_len=0 key_len=0
mai 20 21:24:35 vedder wpa_supplicant[376]: wpa_driver_nl80211_set_key: ifindex=3 (wlp4s0) alg=0 addr=(nil) key_idx=3 set_tx=0 seq_len=0 key_len=0
mai 20 21:24:35 vedder wpa_supplicant[376]: wpa_driver_nl80211_set_key: ifindex=3 (wlp4s0) alg=0 addr=(nil) key_idx=4 set_tx=0 seq_len=0 key_len=0
mai 20 21:24:35 vedder wpa_supplicant[376]: wpa_driver_nl80211_set_key: ifindex=3 (wlp4s0) alg=0 addr=(nil) key_idx=5 set_tx=0 seq_len=0 key_len=0
mai 20 21:24:35 vedder wpa_supplicant[376]: wlp4s0: RSN: flushing PMKID list in the driver
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Flush PMKIDs
mai 20 21:24:35 vedder wpa_supplicant[376]: wlp4s0: State: DISCONNECTED -> INACTIVE
mai 20 21:24:35 vedder wpa_supplicant[376]: TDLS: TDLS operation not supported by driver
mai 20 21:24:35 vedder wpa_supplicant[376]: TDLS: Driver uses internal link setup
mai 20 21:24:35 vedder wpa_supplicant[376]: TDLS: Driver does not support TDLS channel switching
mai 20 21:24:35 vedder wpa_supplicant[376]: wlp4s0: WPS: UUID based on MAC address: 394009dd-6506-503e-ad2b-cdff89827b70
mai 20 21:24:35 vedder wpa_supplicant[376]: ENGINE: Loading builtin engines
mai 20 21:24:35 vedder wpa_supplicant[376]: ENGINE: Loading builtin engines
mai 20 21:24:35 vedder wpa_supplicant[376]: EAPOL: SUPP_PAE entering state DISCONNECTED
mai 20 21:24:35 vedder wpa_supplicant[376]: EAPOL: Supplicant port status: Unauthorized
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Skip set_supp_port(unauthorized) while not associated
mai 20 21:24:35 vedder wpa_supplicant[376]: EAPOL: KEY_RX entering state NO_KEY_RECEIVE
mai 20 21:24:35 vedder wpa_supplicant[376]: EAPOL: SUPP_BE entering state INITIALIZE
mai 20 21:24:35 vedder wpa_supplicant[376]: EAP: EAP entering state DISABLED
mai 20 21:24:35 vedder wpa_supplicant[376]: dbus: Register interface object '/fi/w1/wpa_supplicant1/Interfaces/0'
mai 20 21:24:35 vedder wpa_supplicant[376]: wlp4s0: Added interface wlp4s0
mai 20 21:24:35 vedder wpa_supplicant[376]: wlp4s0: State: INACTIVE -> DISCONNECTED
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Set wlp4s0 operstate 0->0 (DORMANT)
mai 20 21:24:35 vedder wpa_supplicant[376]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 21:24:35 vedder wpa_supplicant[376]: RTM_NEWLINK: ifi_index=3 ifname=wlp4s0 operstate=5 linkmode=0 ifi_family=0 ifi_flags=0x1003 ([UP])
mai 20 21:24:35 vedder wpa_supplicant[376]: RTM_NEWLINK: ifi_index=3 ifname=wlp4s0 operstate=5 linkmode=1 ifi_family=0 ifi_flags=0x1003 ([UP])
mai 20 21:24:35 vedder wpa_supplicant[376]: RTM_NEWLINK: ifi_index=2 ifname=enp0s10 operstate=6 linkmode=0 ifi_family=0 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
mai 20 21:24:35 vedder wpa_supplicant[376]: dbus: fill_dict_with_properties dbus_interface=fi.w1.wpa_supplicant1.Interface.P2PDevice dbus_property=P2PDeviceConfig getter failed
mai 20 21:24:35 vedder wpa_supplicant[376]: wlp4s0: Setting bss expiration age: 250 sec
mai 20 21:24:35 vedder wpa_supplicant[376]: wlp4s0: Setting bss expiration scan count: 2
mai 20 21:24:35 vedder wpa_supplicant[376]: pmf=1
mai 20 21:24:35 vedder wpa_supplicant[376]: RTM_NEWLINK: ifi_index=3 ifname=wlp4s0 operstate=5 linkmode=1 ifi_family=0 ifi_flags=0x1003 ([UP])
mai 20 21:24:35 vedder wpa_supplicant[376]: wlp4s0: Add radio work 'scan'@0x5619b245fcd0
mai 20 21:24:35 vedder wpa_supplicant[376]: wlp4s0: First radio work item in the queue - schedule start immediately
mai 20 21:24:35 vedder wpa_supplicant[376]: wlp4s0: Starting radio work 'scan'@0x5619b245fcd0 after 0.000149 second wait
mai 20 21:24:35 vedder wpa_supplicant[376]: wlp4s0: nl80211: scan request
mai 20 21:24:35 vedder wpa_supplicant[376]: Scan requested (ret=0) - scan timeout 10 seconds
mai 20 21:24:35 vedder wpa_supplicant[376]: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlp4s0
mai 20 21:24:35 vedder wpa_supplicant[376]: wlp4s0: nl80211: Scan trigger
mai 20 21:24:35 vedder wpa_supplicant[376]: wlp4s0: Event SCAN_STARTED (47) received
mai 20 21:24:35 vedder wpa_supplicant[376]: wlp4s0: Own scan request started a scan in 0.000225 seconds
mai 20 21:24:36 vedder wpa_supplicant[376]: RTM_NEWLINK: ifi_index=3 ifname=wlp4s0 operstate=2 linkmode=1 ifi_family=0 ifi_flags=0x1003 ([UP])
mai 20 21:24:36 vedder wpa_supplicant[376]: EAPOL: disable timer tick
mai 20 21:24:36 vedder wpa_supplicant[376]: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlp4s0
mai 20 21:24:36 vedder wpa_supplicant[376]: wlp4s0: nl80211: New scan results available
mai 20 21:24:36 vedder wpa_supplicant[376]: nl80211: Scan probed for SSID ''
mai 20 21:24:36 vedder wpa_supplicant[376]: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484
mai 20 21:24:36 vedder wpa_supplicant[376]: wlp4s0: Event SCAN_RESULTS (3) received
mai 20 21:24:36 vedder wpa_supplicant[376]: wlp4s0: Scan completed in 1.141873 seconds
mai 20 21:24:36 vedder wpa_supplicant[376]: nl80211: Received scan results (12 BSSes)
mai 20 21:24:36 vedder wpa_supplicant[376]: wlp4s0: BSS: Start scan result update 1
mai 20 21:24:36 vedder wpa_supplicant[376]: wlp4s0: BSS: Add new id 0 BSSID 06:f0:21:24:28:44 SSID 'Salvaterra Tor' freq 2412
mai 20 21:24:36 vedder wpa_supplicant[376]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/0'
mai 20 21:24:36 vedder wpa_supplicant[376]: wlp4s0: BSS: Add new id 1 BSSID 02:f0:21:24:28:44 SSID 'Salvaterra Guest' freq 2412
mai 20 21:24:36 vedder wpa_supplicant[376]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/1'
mai 20 21:24:36 vedder wpa_supplicant[376]: wlp4s0: BSS: Add new id 2 BSSID 04:f0:21:24:28:44 SSID 'Salvaterra' freq 2412
mai 20 21:24:36 vedder wpa_supplicant[376]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/2'
mai 20 21:24:36 vedder wpa_supplicant[376]: wlp4s0: BSS: Add new id 3 BSSID 20:3d:b2:1d:24:d8 SSID 'SilvaNetwork2G' freq 2417
mai 20 21:24:36 vedder wpa_supplicant[376]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/3'
mai 20 21:24:36 vedder wpa_supplicant[376]: wlp4s0: BSS: Add new id 4 BSSID f0:43:47:26:cc:b4 SSID 'HUAWEI_M2-A01L_4559' freq 2437
mai 20 21:24:36 vedder wpa_supplicant[376]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/4'
mai 20 21:24:36 vedder wpa_supplicant[376]: wlp4s0: BSS: Add new id 5 BSSID 00:06:91:5d:93:00 SSID 'MEO-5D9300' freq 2412
mai 20 21:24:36 vedder wpa_supplicant[376]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/5'
mai 20 21:24:36 vedder wpa_supplicant[376]: wlp4s0: BSS: Add new id 6 BSSID 12:08:c1:0d:61:d3 SSID 'DIRECT-AP[TV][LG]32LA620S-ZA' freq 2412
mai 20 21:24:36 vedder wpa_supplicant[376]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/6'
mai 20 21:24:36 vedder wpa_supplicant[376]: wlp4s0: BSS: Add new id 7 BSSID 1c:ab:c0:ef:5d:18 SSID 'NOS-5D10' freq 2447
mai 20 21:24:36 vedder wpa_supplicant[376]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/7'
mai 20 21:24:36 vedder wpa_supplicant[376]: wlp4s0: BSS: Add new id 8 BSSID 2c:a1:7d:68:cc:25 SSID 'NOS-CC25' freq 2462
mai 20 21:24:36 vedder wpa_supplicant[376]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/8'
mai 20 21:24:36 vedder wpa_supplicant[376]: wlp4s0: BSS: Add new id 9 BSSID 00:13:10:b9:80:71 SSID '\xf0\x9f\x8d\x86\xf0\x9f\x8d\x91\xf0\x9f\x92\xa6\xe2\x9d\x93\xf0\x9f\x98\x8f' freq 2412
mai 20 21:24:36 vedder wpa_supplicant[376]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/9'
mai 20 21:24:36 vedder wpa_supplicant[376]: wlp4s0: BSS: Add new id 10 BSSID 00:06:91:5d:93:02 SSID 'MEO-WiFi' freq 2412
mai 20 21:24:36 vedder wpa_supplicant[376]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/10'
mai 20 21:24:36 vedder wpa_supplicant[376]: wlp4s0: BSS: Add new id 11 BSSID 1c:ab:c0:ef:5d:19 SSID 'NOS_Wi-Fi_Hotspots' freq 2447
mai 20 21:24:36 vedder wpa_supplicant[376]: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/11'
mai 20 21:24:36 vedder wpa_supplicant[376]: BSS: last_scan_res_used=12/32
mai 20 21:24:36 vedder wpa_supplicant[376]: wlp4s0: Scan-only results received
mai 20 21:24:36 vedder wpa_supplicant[376]: wlp4s0: Radio work 'scan'@0x5619b245fcd0 done in 1.149841 seconds
mai 20 21:24:36 vedder wpa_supplicant[376]: wlp4s0: radio_work_free('scan'@0x5619b245fcd0): num_active_works --> 0
mai 20 21:24:37 vedder wpa_supplicant[376]: dbus: Register network object '/fi/w1/wpa_supplicant1/Interfaces/0/Networks/0'
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Scan results matching the currently selected network
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: 1: 02:f0:21:24:28:44 freq=2412 level=-36 snr=53 est_throughput=135000
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Selecting BSS from priority group 0
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: 0: 06:f0:21:24:28:44 ssid='Salvaterra Tor' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-36 freq=2412
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0:    skip - SSID mismatch
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: 1: 02:f0:21:24:28:44 ssid='Salvaterra Guest' wpa_ie_len=0 rsn_ie_len=28 caps=0x431 level=-36 freq=2412
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0:    selected based on RSN IE
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0:    selected BSS 02:f0:21:24:28:44 ssid='Salvaterra Guest'
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Considering connect request: reassociate: 1  selected: 02:f0:21:24:28:44  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: DISCONNECTED  ssid=0x5619b2465500  current_ssid=0x5619b2465500
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Request association with 02:f0:21:24:28:44
mai 20 21:24:37 vedder wpa_supplicant[376]: TDLS: TDLS is allowed in the target BSS
mai 20 21:24:37 vedder wpa_supplicant[376]: TDLS: TDLS channel switch allowed in the target BSS
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: No ongoing scan/p2p-scan found to abort
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Add radio work 'sme-connect'@0x5619b24671e0
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: First radio work item in the queue - schedule start immediately
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Starting radio work 'sme-connect'@0x5619b24671e0 after 0.000633 second wait
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: clearing own WPA/RSN IE
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Automatic auth_alg selection: 0x1
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Overriding auth_alg selection: 0x1
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Using SAE auth_alg
mai 20 21:24:37 vedder wpa_supplicant[376]: RSN: PMKSA cache search - network_ctx=0x5619b2465500 try_opportunistic=0 akmp=0x0
mai 20 21:24:37 vedder wpa_supplicant[376]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 21:24:37 vedder wpa_supplicant[376]: RSN: No PMKSA cache entry found
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: RSN: using IEEE 802.11i/D9.0
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: Selected mgmt group cipher 32
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: clearing AP WPA IE
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: using GTK CCMP
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: using PTK CCMP
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: RSN: using KEY_MGMT SAE
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x20
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: using MGMT group cipher AES-128-CMAC
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: Set own WPA IE default - hexdump(len=28): 30 1a 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 80 00 00 00 00 0f ac 06
mai 20 21:24:37 vedder wpa_supplicant[376]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: SME: Selected AP supports MFP: require MFP
mai 20 21:24:37 vedder wpa_supplicant[376]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 21:24:37 vedder wpa_supplicant[376]: RRM: No RRM in network
mai 20 21:24:37 vedder wpa_supplicant[376]: Added supported operating classes IE - hexdump(len=7): 3b 05 51 51 52 53 54
mai 20 21:24:37 vedder wpa_supplicant[376]: RSN: PMKSA cache search - network_ctx=0x5619b2465500 try_opportunistic=0 akmp=0x400
mai 20 21:24:37 vedder wpa_supplicant[376]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 21:24:37 vedder wpa_supplicant[376]: RSN: No PMKSA cache entry found
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: Selecting supported ECC group 19
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: SME: Selected SAE group 19
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: password - hexdump(len=11): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: PWE derivation - addr1=00:22:43:41:ab:6c addr2=02:f0:21:24:28:44
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 001
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 0 found=0x00
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 002
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 0 found=0x00
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 003
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 0 found=0x00
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 004
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 0 found=0x00
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 005
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 0 found=0x00
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 006
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 1 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 007
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 1 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 008
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 1 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 009
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 0 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 010
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 1 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 011
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 0 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 012
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 1 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 013
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 1 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 014
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 0 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 015
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 1 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 016
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 0 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 017
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 1 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 018
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 1 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 019
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 0 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 020
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 1 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 021
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 1 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 022
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 1 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 023
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 0 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 024
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 0 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 025
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 0 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 026
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 0 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 027
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 0 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 028
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 0 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 029
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 0 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 030
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 0 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 031
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 0 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 032
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 1 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 033
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 1 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 034
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 1 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 035
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 0 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 036
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 0 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 037
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 1 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 038
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 0 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 039
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 0 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: counter = 040
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-value - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: pwd-seed result 1 found=0xff
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: own commit-scalar - hexdump(len=32): 4a 55 39 e3 43 a9 8b 75 35 2c cb e0 ae 20 19 38 6a 1f 60 03 e1 4d cd ac bf 5c c8 1f 49 78 7e f9
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: own commit-element(x) - hexdump(len=32): c0 bb 57 c0 3c f9 40 47 89 1b 60 f3 3f 86 c1 38 3a 37 82 df de c6 04 35 16 a9 76 cd af 25 76 14
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: own commit-element(y) - hexdump(len=32): 46 c2 8b ce aa e2 50 cf d9 af cf 3d ff b9 a1 88 e2 76 71 50 f8 6f b1 80 5b 4e 09 92 5c 68 2c 8a
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: External notification - EAP success=0
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: External notification - EAP fail=0
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: External notification - portControl=Auto
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Cancelling scan request
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2412 MHz)
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: External notification - portValid=0
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: State: DISCONNECTED -> AUTHENTICATING
mai 20 21:24:37 vedder wpa_supplicant[376]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Determining shared radio frequencies (max len 1)
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Shared frequencies (len=0): completed iteration
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Authenticate (ifindex=3)
mai 20 21:24:37 vedder wpa_supplicant[376]:   * bssid=02:f0:21:24:28:44
mai 20 21:24:37 vedder wpa_supplicant[376]:   * freq=2412
mai 20 21:24:37 vedder wpa_supplicant[376]:   * SSID=Salvaterra Guest
mai 20 21:24:37 vedder wpa_supplicant[376]:   * IEs - hexdump(len=0): [NULL]
mai 20 21:24:37 vedder wpa_supplicant[376]:   * auth_data - hexdump(len=102): 01 00 00 00 13 00 4a 55 39 e3 43 a9 8b 75 35 2c cb e0 ae 20 19 38 6a 1f 60 03 e1 4d cd ac bf 5c c8 1f 49 78 7e f9 c0 bb 57 c0 3c f9 40 47 89 1b 60 f3 3f 86 c1 38 3a 37 82 df de c6 04 35 16 a9 76 cd af 25 76 14 46 c2 8b ce aa e2 50 cf d9 af cf 3d ff b9 a1 88 e2 76 71 50 f8 6f b1 80 5b 4e 09 92 5c 68 2c 8a
mai 20 21:24:37 vedder wpa_supplicant[376]:   * Auth Type 4
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Authentication request send successfully
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlp4s0
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: New station 02:f0:21:24:28:44
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlp4s0
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Authenticate event
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Event AUTH (10) received
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=3 auth_transaction=1 status_code=0
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: SME: SAE authentication transaction 1 status code 0
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: SME SAE commit
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: Peer commit-scalar - hexdump(len=32): 6c 4e 03 4e fd 43 73 7e 18 b7 a5 99 03 2a 07 21 cb 9f 05 a9 01 75 30 f0 48 30 1a 30 87 55 bf 4f
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: Peer commit-element(x) - hexdump(len=32): 21 22 99 9a 8e 76 0b 7a 28 cf e2 8f 04 b6 d1 0f 04 8f f4 51 0e 95 b7 31 cc 18 99 ed 1a a6 31 64
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: Peer commit-element(y) - hexdump(len=32): 86 d8 98 09 0e ab 67 15 e6 c0 6c 48 03 ff d7 d7 14 da 74 e6 c3 07 4c 7e be 2c f2 d2 8f 65 55 5d
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: Possible elements at the end of the frame - hexdump(len=0):
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: k - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: keyseed - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: PMKID - hexdump(len=16): b6 a3 3d 32 40 ec fe f3 4d e4 71 79 b1 4a 20 5a
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: KCK - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: PMK - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Automatic auth_alg selection: 0x1
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Overriding auth_alg selection: 0x1
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Using SAE auth_alg
mai 20 21:24:37 vedder wpa_supplicant[376]: RSN: PMKSA cache search - network_ctx=0x5619b2465500 try_opportunistic=0 akmp=0x0
mai 20 21:24:37 vedder wpa_supplicant[376]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 21:24:37 vedder wpa_supplicant[376]: RSN: No PMKSA cache entry found
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: RSN: using IEEE 802.11i/D9.0
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1282 proto 2
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: Selected mgmt group cipher 32
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: clearing AP WPA IE
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: set AP RSN IE - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: using GTK CCMP
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: using PTK CCMP
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: AP key_mgmt 0x502 network profile key_mgmt 0xc00; available key_mgmt 0x400
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: RSN: using KEY_MGMT SAE
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x20
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: using MGMT group cipher AES-128-CMAC
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: Set own WPA IE default - hexdump(len=28): 30 1a 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 80 00 00 00 00 0f ac 06
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: Leave previously set WPA IE default - hexdump(len=28): 30 1a 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 80 00 00 00 00 0f ac 06
mai 20 21:24:37 vedder wpa_supplicant[376]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: SME: Selected AP supports MFP: require MFP
mai 20 21:24:37 vedder wpa_supplicant[376]: RRM: Determining whether RRM can be used - device support: 0x10
mai 20 21:24:37 vedder wpa_supplicant[376]: RRM: No RRM in network
mai 20 21:24:37 vedder wpa_supplicant[376]: Added supported operating classes IE - hexdump(len=7): 3b 05 51 51 52 53 54
mai 20 21:24:37 vedder wpa_supplicant[376]: RSN: PMKSA cache search - network_ctx=0x5619b2465500 try_opportunistic=0 akmp=0x400
mai 20 21:24:37 vedder wpa_supplicant[376]: RSN: Search for BSSID 02:f0:21:24:28:44
mai 20 21:24:37 vedder wpa_supplicant[376]: RSN: No PMKSA cache entry found
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: External notification - EAP success=0
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: External notification - EAP fail=0
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: External notification - portControl=Auto
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Cancelling scan request
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: SME: Trying to authenticate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2412 MHz)
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: External notification - portValid=0
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: State: AUTHENTICATING -> AUTHENTICATING
mai 20 21:24:37 vedder wpa_supplicant[376]: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Determining shared radio frequencies (max len 1)
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Shared frequencies (len=0): completed iteration
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Authenticate (ifindex=3)
mai 20 21:24:37 vedder wpa_supplicant[376]:   * bssid=02:f0:21:24:28:44
mai 20 21:24:37 vedder wpa_supplicant[376]:   * freq=2412
mai 20 21:24:37 vedder wpa_supplicant[376]:   * SSID=Salvaterra Guest
mai 20 21:24:37 vedder wpa_supplicant[376]:   * IEs - hexdump(len=0): [NULL]
mai 20 21:24:37 vedder wpa_supplicant[376]:   * auth_data - hexdump(len=38): 02 00 00 00 00 00 63 84 f6 b3 3a 7d 9f e6 b2 25 5e e2 28 3a 07 4a 5e 72 b7 a2 a6 02 7f 18 09 5a f4 d1 de e7 bf 0b
mai 20 21:24:37 vedder wpa_supplicant[376]:   * Auth Type 4
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Authentication request send successfully
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlp4s0
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Authenticate event
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Event AUTH (10) received
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: SME: Authentication response: peer=02:f0:21:24:28:44 auth_type=3 auth_transaction=2 status_code=0
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: SME: SAE authentication transaction 2 status code 0
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: SME SAE confirm
mai 20 21:24:37 vedder wpa_supplicant[376]: SAE: peer-send-confirm 0
mai 20 21:24:37 vedder wpa_supplicant[376]: SME: SAE completed - setting PMK for 4-way handshake
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: RSN: Added PMKSA cache entry for 02:f0:21:24:28:44 network_ctx=0x5619b2465500 akmp=0x400
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: PMKSA-CACHE-ADDED 02:f0:21:24:28:44 0
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Add PMKID for 02:f0:21:24:28:44
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: NL80211_CMD_SET_PMKSA failed: -95 (Operation not supported)
mai 20 21:24:37 vedder wpa_supplicant[376]: SME: Association Request IEs - hexdump(len=45): 30 1a 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 80 00 00 00 00 0f ac 06 7f 08 00 00 00 00 01 00 00 40 3b 05 51 51 52 53 54
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Trying to associate with 02:f0:21:24:28:44 (SSID='Salvaterra Guest' freq=2412 MHz)
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: State: AUTHENTICATING -> ASSOCIATING
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Set wlp4s0 operstate 0->0 (DORMANT)
mai 20 21:24:37 vedder wpa_supplicant[376]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: set own WPA/RSN IE - hexdump(len=28): 30 1a 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 80 00 00 00 00 0f ac 06
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Associate (ifindex=3)
mai 20 21:24:37 vedder wpa_supplicant[376]:   * bssid=02:f0:21:24:28:44
mai 20 21:24:37 vedder wpa_supplicant[376]:   * freq=2412
mai 20 21:24:37 vedder wpa_supplicant[376]:   * SSID=Salvaterra Guest
mai 20 21:24:37 vedder wpa_supplicant[376]:   * IEs - hexdump(len=45): 30 1a 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 80 00 00 00 00 0f ac 06 7f 08 00 00 00 00 01 00 00 40 3b 05 51 51 52 53 54
mai 20 21:24:37 vedder wpa_supplicant[376]:   * WPA Versions 0x2
mai 20 21:24:37 vedder wpa_supplicant[376]:   * pairwise=0xfac04
mai 20 21:24:37 vedder wpa_supplicant[376]:   * group=0xfac04
mai 20 21:24:37 vedder wpa_supplicant[376]:   * akm=0xfac08
mai 20 21:24:37 vedder wpa_supplicant[376]:   * htcaps - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 21:24:37 vedder wpa_supplicant[376]:   * htcaps_mask - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 21:24:37 vedder wpa_supplicant[376]:   * vhtcaps - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 21:24:37 vedder wpa_supplicant[376]:   * vhtcaps_mask - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Association request send successfully
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlp4s0
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Associate event
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Associated on 2412 MHz
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Associated with 02:f0:21:24:28:44
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Set drv->ssid based on scan res info to 'Salvaterra Guest'
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Event ASSOC (0) received
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Association info event
mai 20 21:24:37 vedder wpa_supplicant[376]: req_ies - hexdump(len=116): 00 10 53 61 6c 76 61 74 65 72 72 61 20 47 75 65 73 74 01 08 02 04 0b 16 0c 12 18 24 32 04 30 48 60 6c 30 1a 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 80 00 00 00 00 0f ac 06 2d 1a 7e 02 13 ff ff 00 00 01 00 00 00 00 00 00 00 03 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 01 00 00 40 3b 05 51 51 52 53 54 dd 07 00 50 f2 02 00 01 00
mai 20 21:24:37 vedder wpa_supplicant[376]: resp_ies - hexdump(len=109): 01 08 82 84 8b 96 0c 12 18 24 32 04 30 48 60 6c 2d 1a ef 19 1b ff ff ff 00 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 01 05 17 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 04 00 00 02 00 00 01 40 5a 03 24 01 00 dd 18 00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: freq=2412 MHz
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: set own WPA/RSN IE - hexdump(len=28): 30 1a 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 80 00 00 00 00 0f ac 06
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: RSN: PMKID from assoc IE not found from PMKSA cache
mai 20 21:24:37 vedder wpa_supplicant[376]: FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: State: ASSOCIATING -> ASSOCIATED
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Set wlp4s0 operstate 0->0 (DORMANT)
mai 20 21:24:37 vedder wpa_supplicant[376]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Associated to a new BSS: BSSID=02:f0:21:24:28:44
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Associated with 02:f0:21:24:28:44
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: Association event - clear replay counter
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: Clear old PTK
mai 20 21:24:37 vedder wpa_supplicant[376]: TDLS: Remove peers on association
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: External notification - portEnabled=0
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: External notification - portValid=0
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: External notification - EAP success=0
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: External notification - portEnabled=1
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: SUPP_PAE entering state CONNECTING
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: enable timer tick
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: SUPP_BE entering state IDLE
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Setting authentication timeout: 10 sec 0 usec
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Cancelling scan request
mai 20 21:24:37 vedder wpa_supplicant[376]: WMM AC: AC mandatory: AC_BE=0 AC_BK=0 AC_VI=0 AC_VO=0
mai 20 21:24:37 vedder wpa_supplicant[376]: WMM AC: U-APSD queues=0x0
mai 20 21:24:37 vedder wpa_supplicant[376]: WMM AC: Valid WMM association, WMM AC is enabled
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
mai 20 21:24:37 vedder wpa_supplicant[376]: RTM_NEWLINK: ifi_index=3 ifname=wlp4s0 operstate=5 linkmode=1 ifi_family=0 ifi_flags=0x11003 ([UP][LOWER_UP])
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlp4s0
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Ignore connect event (cmd=46) when using userspace SME
mai 20 21:24:37 vedder wpa_supplicant[376]: l2_packet_receive: src=02:f0:21:24:28:44 len=121
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: RX EAPOL from 02:f0:21:24:28:44
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Setting authentication timeout: 10 sec 0 usec
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: IEEE 802.1X RX: version=2 type=3 length=117
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0:   EAPOL-Key type=2
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0:   key_info 0x88 (ver=0 keyidx=0 rsvd=0 Pairwise Ack)
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0:   key_length=16 key_data_length=22
mai 20 21:24:37 vedder wpa_supplicant[376]:   replay_counter - hexdump(len=8): 00 00 00 00 00 00 00 01
mai 20 21:24:37 vedder wpa_supplicant[376]:   key_nonce - hexdump(len=32): 67 8e 7d 5b c5 6c 73 c6 5a 36 f0 a0 5a b6 d5 f1 11 c4 0f 02 d1 28 61 1f 94 c9 0d 14 22 02 48 d9
mai 20 21:24:37 vedder wpa_supplicant[376]:   key_iv - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 21:24:37 vedder wpa_supplicant[376]:   key_rsc - hexdump(len=8): 00 00 00 00 00 00 00 00
mai 20 21:24:37 vedder wpa_supplicant[376]:   key_id (reserved) - hexdump(len=8): 00 00 00 00 00 00 00 00
mai 20 21:24:37 vedder wpa_supplicant[376]:   key_mic - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: State: ASSOCIATED -> 4WAY_HANDSHAKE
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: RX message 1 of 4-Way Handshake from 02:f0:21:24:28:44 (ver=0)
mai 20 21:24:37 vedder wpa_supplicant[376]: RSN: msg 1/4 key data - hexdump(len=22): dd 14 00 0f ac 04 b6 a3 3d 32 40 ec fe f3 4d e4 71 79 b1 4a 20 5a
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: PMKID in EAPOL-Key - hexdump(len=22): dd 14 00 0f ac 04 b6 a3 3d 32 40 ec fe f3 4d e4 71 79 b1 4a 20 5a
mai 20 21:24:37 vedder wpa_supplicant[376]: RSN: PMKID from Authenticator - hexdump(len=16): b6 a3 3d 32 40 ec fe f3 4d e4 71 79 b1 4a 20 5a
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: RSN: found matching PMKID from PMKSA cache
mai 20 21:24:37 vedder wpa_supplicant[376]: RSN: matched PMKID - hexdump(len=16): b6 a3 3d 32 40 ec fe f3 4d e4 71 79 b1 4a 20 5a
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: Set PMK based on current PMKSA - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: RSN: PMK from PMKSA cache - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: PMKSA caching was used - skip EAPOL
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: SUPP_PAE entering state AUTHENTICATING
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: SUPP_BE entering state SUCCESS
mai 20 21:24:37 vedder wpa_supplicant[376]: EAP: EAP entering state DISABLED
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: SUPP_BE entering state IDLE
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: Renewed SNonce - hexdump(len=32): f9 47 50 49 97 0f 86 85 9d 81 d4 f0 10 72 a7 f8 fc f0 1f 97 4e 47 c3 84 85 c5 1a 66 84 c0 da 1e
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: PTK derivation using PRF(SHA256)
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: PTK derivation - A1=00:22:43:41:ab:6c A2=02:f0:21:24:28:44
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: Nonce1 - hexdump(len=32): f9 47 50 49 97 0f 86 85 9d 81 d4 f0 10 72 a7 f8 fc f0 1f 97 4e 47 c3 84 85 c5 1a 66 84 c0 da 1e
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: Nonce2 - hexdump(len=32): 67 8e 7d 5b c5 6c 73 c6 5a 36 f0 a0 5a b6 d5 f1 11 c4 0f 02 d1 28 61 1f 94 c9 0d 14 22 02 48 d9
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: PMK - hexdump(len=32): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: PTK - hexdump(len=48): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: KCK - hexdump(len=16): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: KEK - hexdump(len=16): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: TK - hexdump(len=16): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: WPA IE for msg 2/4 - hexdump(len=28): 30 1a 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 80 00 00 00 00 0f ac 06
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: Replay Counter - hexdump(len=8): 00 00 00 00 00 00 00 01
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: Sending EAPOL-Key 2/4
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: Send EAPOL-Key frame to 02:f0:21:24:28:44 ver=0 mic_len=16 key_mgmt=0x400
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: EAPOL-Key MIC using AES-CMAC (AKM-defined - SAE)
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: KCK - hexdump(len=16): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: Derived Key MIC - hexdump(len=16): 1a 7b 0c 72 a1 53 be 72 67 d7 a9 53 99 9d 57 0f
mai 20 21:24:37 vedder wpa_supplicant[376]: l2_packet_receive: src=02:f0:21:24:28:44 len=195
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: RX EAPOL from 02:f0:21:24:28:44
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: IEEE 802.1X RX: version=2 type=3 length=191
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0:   EAPOL-Key type=2
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0:   key_info 0x13c8 (ver=0 keyidx=0 rsvd=0 Pairwise Install Ack MIC Secure Encr)
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0:   key_length=16 key_data_length=96
mai 20 21:24:37 vedder wpa_supplicant[376]:   replay_counter - hexdump(len=8): 00 00 00 00 00 00 00 02
mai 20 21:24:37 vedder wpa_supplicant[376]:   key_nonce - hexdump(len=32): 67 8e 7d 5b c5 6c 73 c6 5a 36 f0 a0 5a b6 d5 f1 11 c4 0f 02 d1 28 61 1f 94 c9 0d 14 22 02 48 d9
mai 20 21:24:37 vedder wpa_supplicant[376]:   key_iv - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
mai 20 21:24:37 vedder wpa_supplicant[376]:   key_rsc - hexdump(len=8): 00 00 00 00 00 00 00 00
mai 20 21:24:37 vedder wpa_supplicant[376]:   key_id (reserved) - hexdump(len=8): 00 00 00 00 00 00 00 00
mai 20 21:24:37 vedder wpa_supplicant[376]:   key_mic - hexdump(len=16): 26 fc cc 93 7b ee 9d ad 9d cd 54 4b e8 2b f5 92
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: EAPOL-Key MIC using AES-CMAC (AKM-defined - SAE)
mai 20 21:24:37 vedder wpa_supplicant[376]: RSN: encrypted key data - hexdump(len=96): 32 5f 5a 5b ef 79 f4 4f 8f 0a f8 eb 68 dc 7f c4 f3 4c ff 81 f6 9e 56 ab a2 65 c8 7f 94 f1 85 99 47 67 e0 ed e5 59 07 70 0a a8 87 d0 c7 6e 5c 49 be 45 17 82 b7 2b 8e a2 95 35 12 23 28 2f 1c c8 b8 97 1c e6 7d 37 f7 46 30 de 05 9c 35 54 f3 3b 95 29 3e fd 96 f9 cc e6 10 39 f3 97 92 60 ac c6
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: Decrypt Key Data using AES-UNWRAP (KEK length 16)
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: decrypted EAPOL-Key key data - hexdump(len=88): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: State: 4WAY_HANDSHAKE -> 4WAY_HANDSHAKE
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: RX message 3 of 4-Way Handshake from 02:f0:21:24:28:44 (ver=0)
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: IE KeyData - hexdump(len=88): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00 dd 16 00 0f ac 01 01 00 6e b3 7e 59 47 2d 6b 30 6f f3 74 d8 36 a6 16 e2 dd 1c 00 0f ac 09 04 00 00 00 00 00 00 00 6c 41 34 eb 7c 53 7a 29 d7 20 ea e3 01 e7 0f 6f dd 00 00 00
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: RSN IE in EAPOL-Key - hexdump(len=30): 30 1c 01 00 00 0f ac 04 01 00 00 0f ac 04 03 00 00 0f ac 02 00 0f ac 06 00 0f ac 08 8c 00
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: GTK in EAPOL-Key - hexdump(len=24): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: IGTK in EAPOL-Key - hexdump(len=30): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: Sending EAPOL-Key 4/4
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: Send EAPOL-Key frame to 02:f0:21:24:28:44 ver=0 mic_len=16 key_mgmt=0x400
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: EAPOL-Key MIC using AES-CMAC (AKM-defined - SAE)
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: KCK - hexdump(len=16): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: Derived Key MIC - hexdump(len=16): 41 78 2c 4a 01 32 5f 23 a1 84 f6 5d f5 2c f5 e5
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: Installing PTK to the driver
mai 20 21:24:37 vedder wpa_supplicant[376]: wpa_driver_nl80211_set_key: ifindex=3 (wlp4s0) alg=3 addr=0x5619b2436698 key_idx=0 set_tx=1 seq_len=6 key_len=16
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: KEY_DATA - hexdump(len=16): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: KEY_SEQ - hexdump(len=6): 00 00 00 00 00 00
mai 20 21:24:37 vedder wpa_supplicant[376]:    addr=02:f0:21:24:28:44
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: External notification - portValid=1
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: SUPP_PAE entering state AUTHENTICATED
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: Supplicant port status: Authorized
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Set supplicant port authorized for 02:f0:21:24:28:44
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL authentication completed - result=SUCCESS
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: State: 4WAY_HANDSHAKE -> GROUP_HANDSHAKE
mai 20 21:24:37 vedder wpa_supplicant[376]: RSN: received GTK in pairwise handshake - hexdump(len=18): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: Group Key - hexdump(len=16): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: Installing GTK to the driver (keyidx=1 tx=0 len=16)
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: RSC - hexdump(len=6): 00 00 00 00 00 00
mai 20 21:24:37 vedder wpa_supplicant[376]: wpa_driver_nl80211_set_key: ifindex=3 (wlp4s0) alg=3 addr=0x5619b18d99c9 key_idx=1 set_tx=0 seq_len=6 key_len=16
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: KEY_DATA - hexdump(len=16): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: KEY_SEQ - hexdump(len=6): 00 00 00 00 00 00
mai 20 21:24:37 vedder wpa_supplicant[376]:    broadcast key
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: IGTK keyid 4 pn 000000000000
mai 20 21:24:37 vedder wpa_supplicant[376]: WPA: IGTK - hexdump(len=16): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: wpa_driver_nl80211_set_key: ifindex=3 (wlp4s0) alg=4 addr=0x5619b18d99c9 key_idx=4 set_tx=0 seq_len=6 key_len=16
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: KEY_DATA - hexdump(len=16): [REMOVED]
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: KEY_SEQ - hexdump(len=6): 00 00 00 00 00 00
mai 20 21:24:37 vedder wpa_supplicant[376]:    broadcast key
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: WPA: Key negotiation completed with 02:f0:21:24:28:44 [PTK=CCMP GTK=CCMP]
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Cancelling authentication timeout
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: State: GROUP_HANDSHAKE -> COMPLETED
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: Radio work 'sme-connect'@0x5619b24671e0 done in 0.134395 seconds
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: radio_work_free('sme-connect'@0x5619b24671e0): num_active_works --> 0
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: CTRL-EVENT-CONNECTED - Connection to 02:f0:21:24:28:44 completed [id=0 id_str=]
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Set wlp4s0 operstate 0->1 (UP)
mai 20 21:24:37 vedder wpa_supplicant[376]: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
mai 20 21:24:37 vedder wpa_supplicant[376]: bgscan simple: Signal strength threshold -70  Short bgscan interval 30  Long bgscan interval 86400
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Signal monitor threshold=-70 hysteresis=4
mai 20 21:24:37 vedder wpa_supplicant[376]: bgscan simple: Init scan interval: 86400
mai 20 21:24:37 vedder wpa_supplicant[376]: bgscan: Initialized module 'simple' with parameters '30:-70:86400'
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Received scan results (12 BSSes)
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Scan results indicate BSS status with 02:f0:21:24:28:44 as associated
mai 20 21:24:37 vedder wpa_supplicant[376]: wlp4s0: BSS: Start scan result update 2
mai 20 21:24:37 vedder wpa_supplicant[376]: bgscan simple: scan result notification
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: External notification - portValid=1
mai 20 21:24:37 vedder wpa_supplicant[376]: EAPOL: External notification - EAP success=1
mai 20 21:24:37 vedder wpa_supplicant[376]: EAP: EAP entering state DISABLED
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Set rekey offload
mai 20 21:24:37 vedder wpa_supplicant[376]: nl80211: Driver does not support rekey offload
mai 20 21:24:37 vedder wpa_supplicant[376]: RTM_NEWLINK: ifi_index=3 ifname=wlp4s0 operstate=6 linkmode=1 ifi_family=0 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
mai 20 21:24:38 vedder wpa_supplicant[376]: nl80211: Drv Event 64 (NL80211_CMD_NOTIFY_CQM) received for wlp4s0
mai 20 21:24:38 vedder wpa_supplicant[376]: nl80211: Connection quality monitor event: RSSI high
mai 20 21:24:38 vedder wpa_supplicant[376]: nl80211: Signal: -36 dBm  txrate: 6500
mai 20 21:24:38 vedder wpa_supplicant[376]: nl80211: Noise: 9999 dBm
mai 20 21:24:38 vedder wpa_supplicant[376]: wlp4s0: Event SIGNAL_CHANGE (24) received
mai 20 21:24:38 vedder wpa_supplicant[376]: wlp4s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-36 noise=9999 txrate=6500
mai 20 21:24:38 vedder wpa_supplicant[376]: bgscan simple: signal level changed (above=1 current_signal=-36 current_noise=9999 current_txrate=6500))
mai 20 21:24:39 vedder wpa_supplicant[376]: EAPOL: startWhen --> 0
mai 20 21:24:39 vedder wpa_supplicant[376]: EAPOL: disable timer tick

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-20 20:28               ` Rui Salvaterra
@ 2020-05-20 20:56                 ` Larry Finger
  2020-05-21  8:35                   ` Rui Salvaterra
  0 siblings, 1 reply; 33+ messages in thread
From: Larry Finger @ 2020-05-20 20:56 UTC (permalink / raw)
  To: Rui Salvaterra; +Cc: linux-wireless, b43-dev

On 5/20/20 3:28 PM, Rui Salvaterra wrote:
> On Wed, 20 May 2020 at 21:08, Larry Finger <Larry.Finger@lwfinger.net> wrote:
>>
>> I found this line in the b43 logs:
>> nl80211: NL80211_CMD_SET_PMKSA failed: -95 (Operation not supported)
>>
>> Could we also see the supplicant log for the RaLink driver that works?
> 
> Sure thing, here you go! This one's much shorter, since the connection
> was successful.

A quick difference - this one supports 3 additional ciphers:

vedder wpa_supplicant[376]: nl80211: Supported cipher 00-0f-ac:13
vedder wpa_supplicant[376]: nl80211: Supported cipher 00-0f-ac:11
vedder wpa_supplicant[376]: nl80211: Supported cipher 00-0f-ac:12

The one with :13 is for  BIP-CMAC-256, :11 is BIP-GMAC-128, and :12 is 
BIP-GMAC-256. I did not find a reference that says that these are needed for 
WPA3, but I am suspicious.

Thus far, I have not found where the driver tells nl80211 what should be supported.

Perhaps, we were calling ieee80211_hw_set() in the wrong place. Try

diff --git a/drivers/net/wireless/broadcom/b43/main.c 
b/drivers/net/wireless/broadcom/b43/main.c
index 39da1a4c30ac..211d6126734f 100644
--- a/drivers/net/wireless/broadcom/b43/main.c
+++ b/drivers/net/wireless/broadcom/b43/main.c
@@ -5569,7 +5569,10 @@ static struct b43_wl *b43_wireless_init(struct 
b43_bus_dev *dev)
         /* fill hw info */
         ieee80211_hw_set(hw, RX_INCLUDES_FCS);
         ieee80211_hw_set(hw, SIGNAL_DBM);
-
+       if (modparam_nohwcrypt) {
+               printk(KERN_INFO "b43: Setting MFP_CAPABLE\n");
+               ieee80211_hw_set(hw, MFP_CAPABLE);
+       }
         hw->wiphy->interface_modes =
                 BIT(NL80211_IFTYPE_AP) |
                 BIT(NL80211_IFTYPE_MESH_POINT) |

In addition, check that the printk message is seen in dmesg.

Larry


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-20 20:56                 ` Larry Finger
@ 2020-05-21  8:35                   ` Rui Salvaterra
  2020-05-21  9:07                     ` Rui Salvaterra
  0 siblings, 1 reply; 33+ messages in thread
From: Rui Salvaterra @ 2020-05-21  8:35 UTC (permalink / raw)
  To: Larry Finger; +Cc: linux-wireless, b43-dev

Hi, Larry,

On Wed, 20 May 2020 at 21:56, Larry Finger <Larry.Finger@lwfinger.net> wrote:
>
> A quick difference - this one supports 3 additional ciphers:
>
> vedder wpa_supplicant[376]: nl80211: Supported cipher 00-0f-ac:13
> vedder wpa_supplicant[376]: nl80211: Supported cipher 00-0f-ac:11
> vedder wpa_supplicant[376]: nl80211: Supported cipher 00-0f-ac:12

Well, yes, I wrote exactly that in the first email. :) But notice
there's another cypher missing from that list…

vedder wpa_supplicant[376]: nl80211: Supported cipher 00-0f-ac:6

… which is CMAC.

> The one with :13 is for  BIP-CMAC-256, :11 is BIP-GMAC-128, and :12 is
> BIP-GMAC-256. I did not find a reference that says that these are needed for
> WPA3, but I am suspicious.

Actually, I've been digging around in my other machines, and I noticed
that an Intel card I have, which has no problems connecting to my WPA3
AP, supports a much narrower variety of cyphers. According to iw list,
its supported cyphers are:

        * WEP40 (00-0f-ac:1)
        * WEP104 (00-0f-ac:5)
        * TKIP (00-0f-ac:2)
        * CCMP-128 (00-0f-ac:4)
        * CMAC (00-0f-ac:6)

So, the only extra cypher it supports is CMAC. Digging around the web,
I found this [1] blog post, which does seem to imlpy CMAC is necessary
for the group cypher. Additionally, there's this line in the second
log I sent you (with the successful authentication):

vedder wpa_supplicant[376]: WPA: EAPOL-Key MIC using AES-CMAC
(AKM-defined - SAE)

My conclusion is that CMAC mode is required for WPA3 Personal. What
strikes me as odd is b43 not supporting any additional cyphers in
software crypto mode.
With that said, I'm going to try your patch, but I'm 95 % confident
the result will be the same.

Thanks,
Rui

[1] https://mrncciew.com/2019/11/29/wpa3-sae-mode/

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-21  8:35                   ` Rui Salvaterra
@ 2020-05-21  9:07                     ` Rui Salvaterra
  2020-05-21 10:46                       ` Michael Büsch
  0 siblings, 1 reply; 33+ messages in thread
From: Rui Salvaterra @ 2020-05-21  9:07 UTC (permalink / raw)
  To: Larry Finger; +Cc: linux-wireless, b43-dev

Hi again, Larry,

On Thu, 21 May 2020 at 09:35, Rui Salvaterra <rsalvaterra@gmail.com> wrote:
>
> With that said, I'm going to try your patch, but I'm 95 % confident
> the result will be the same.

Well, I'm glad I was wrong. :) With your second patch, not only MFP is
working in WPA2, but also WPA3. And iw list shows all the cyphers as
supported.
I suggest removing the printk altogether or at least demote it to
b43dbg (b43 seems to have its own printk wrappers). In any case, feel
free to add my

Tested-by: Rui Salvaterra <rsalvaterra@gmail.com>

Thanks a lot,
Rui

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-21  9:07                     ` Rui Salvaterra
@ 2020-05-21 10:46                       ` Michael Büsch
  2020-05-21 11:30                         ` Rui Salvaterra
  0 siblings, 1 reply; 33+ messages in thread
From: Michael Büsch @ 2020-05-21 10:46 UTC (permalink / raw)
  To: Rui Salvaterra, Larry Finger; +Cc: linux-wireless, b43-dev

[-- Attachment #1: Type: text/plain, Size: 579 bytes --]

On Thu, 21 May 2020 10:07:38 +0100
Rui Salvaterra <rsalvaterra@gmail.com> wrote:

> Well, I'm glad I was wrong. :) With your second patch, not only MFP is
> working in WPA2, but also WPA3. And iw list shows all the cyphers as
> supported.

Great. Thank you for testing.

Should we consider defaulting hwcrypto to off?

I wonder what the performance penalty is, if any, on today's CPUs
that have some HW-crypto embedded. Of course that depends on whether we
actually use that here.

Could we have some benchmarks (throughput and CPU load wise)?
 

-- 
Michael

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-21 10:46                       ` Michael Büsch
@ 2020-05-21 11:30                         ` Rui Salvaterra
  2020-05-21 11:40                           ` Michael Büsch
  0 siblings, 1 reply; 33+ messages in thread
From: Rui Salvaterra @ 2020-05-21 11:30 UTC (permalink / raw)
  To: Michael Büsch; +Cc: Larry Finger, linux-wireless, b43-dev

Hi, Michael,

On Thu, 21 May 2020 at 11:46, Michael Büsch <m@bues.ch> wrote:
>
> Great. Thank you for testing.
>
> Should we consider defaulting hwcrypto to off?

IMHO, not without testing. See below. :)

> I wonder what the performance penalty is, if any, on today's CPUs
> that have some HW-crypto embedded. Of course that depends on whether we
> actually use that here.
>
> Could we have some benchmarks (throughput and CPU load wise)?

I'm preparing to do some performance tests as we speak. Nothing too
elaborate, just transferring a file over NFS and having a look at the
CPU usage, with both hardware crypto enabled/disabled (while I
initially thought of doing it over SFTP, the crypto overhead will
surely overwhelm this system). Do you suggest a more scientifically
acceptable test?
Also note that this a PowerPC laptop (iBook G4). This means it's using
the generic C crypto algorithms, there are no SIMD (VMX/AltiVec)
implementations of AES and friends on PowerPC, at least from what I've
seen in the kconfig.

Thanks,
Rui

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-21 11:30                         ` Rui Salvaterra
@ 2020-05-21 11:40                           ` Michael Büsch
  2020-05-21 14:10                             ` Larry Finger
  2020-05-21 14:52                             ` Rui Salvaterra
  0 siblings, 2 replies; 33+ messages in thread
From: Michael Büsch @ 2020-05-21 11:40 UTC (permalink / raw)
  To: Rui Salvaterra; +Cc: Larry Finger, linux-wireless, b43-dev

[-- Attachment #1: Type: text/plain, Size: 232 bytes --]

On Thu, 21 May 2020 12:30:43 +0100
Rui Salvaterra <rsalvaterra@gmail.com> wrote:

> Also note that this a PowerPC laptop (iBook G4). 

That's not exactly a modern CPU, but measurements would be useful
anyway.

-- 
Michael

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-21 11:40                           ` Michael Büsch
@ 2020-05-21 14:10                             ` Larry Finger
  2020-05-21 14:52                             ` Rui Salvaterra
  1 sibling, 0 replies; 33+ messages in thread
From: Larry Finger @ 2020-05-21 14:10 UTC (permalink / raw)
  To: Michael Büsch, Rui Salvaterra; +Cc: linux-wireless, b43-dev

On 5/21/20 6:40 AM, Michael Büsch wrote:
> On Thu, 21 May 2020 12:30:43 +0100
> Rui Salvaterra <rsalvaterra@gmail.com> wrote:
> 
>> Also note that this a PowerPC laptop (iBook G4).
> 
> That's not exactly a modern CPU, but measurements would be useful
> anyway.

Michael,

Thanks for a hearty morning laugh. I needed the endorphins.

I will be able to run some tests using a BCM4312 on an Intel i7 CPU running at 
2.90 GHz. It is a Haswell chip launched is Q3 2013 - a little more modern. My 
setup will be using WPA2 connecting to an AC1750 AP.

Larry


^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-21 11:40                           ` Michael Büsch
  2020-05-21 14:10                             ` Larry Finger
@ 2020-05-21 14:52                             ` Rui Salvaterra
  2020-05-21 16:17                               ` Rui Salvaterra
  1 sibling, 1 reply; 33+ messages in thread
From: Rui Salvaterra @ 2020-05-21 14:52 UTC (permalink / raw)
  To: Michael Büsch; +Cc: Larry Finger, linux-wireless, b43-dev

On Thu, 21 May 2020 at 12:40, Michael Büsch <m@bues.ch> wrote:
>
> That's not exactly a modern CPU, but measurements would be useful
> anyway.

It's not exactly a modern Wi-Fi card either, and being 802.11g might
actually help limiting the CPU overhead.

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-21 14:52                             ` Rui Salvaterra
@ 2020-05-21 16:17                               ` Rui Salvaterra
  2020-05-21 18:59                                 ` Larry Finger
  0 siblings, 1 reply; 33+ messages in thread
From: Rui Salvaterra @ 2020-05-21 16:17 UTC (permalink / raw)
  To: Michael Büsch, Larry Finger; +Cc: linux-wireless, b43-dev

Hi, guys,

On Thu, 21 May 2020 at 15:52, Rui Salvaterra <rsalvaterra@gmail.com> wrote:
>
> It's not exactly a modern Wi-Fi card either, and being 802.11g might
> actually help limiting the CPU overhead.

Yeah, as I expected, it's neither great nor terrible. I fired up iperf
to do some quick and dirty testing: with WPA2 (hardware crypto) I get
around 13 % CPU, with WPA3 (software crypto), around 34 %. The
throughput is pretty much the same.

Cheers,
Rui

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-21 16:17                               ` Rui Salvaterra
@ 2020-05-21 18:59                                 ` Larry Finger
  2020-05-21 19:19                                   ` Rui Salvaterra
  0 siblings, 1 reply; 33+ messages in thread
From: Larry Finger @ 2020-05-21 18:59 UTC (permalink / raw)
  To: Rui Salvaterra, Michael Büsch; +Cc: linux-wireless, b43-dev

[-- Attachment #1: Type: text/plain, Size: 884 bytes --]

On 5/21/20 11:17 AM, Rui Salvaterra wrote:
> Hi, guys,
> 
> On Thu, 21 May 2020 at 15:52, Rui Salvaterra <rsalvaterra@gmail.com> wrote:
>>
>> It's not exactly a modern Wi-Fi card either, and being 802.11g might
>> actually help limiting the CPU overhead.
> 
> Yeah, as I expected, it's neither great nor terrible. I fired up iperf
> to do some quick and dirty testing: with WPA2 (hardware crypto) I get
> around 13 % CPU, with WPA3 (software crypto), around 34 %. The
> throughput is pretty much the same.

I did only a rough test, but turning off hardware encryption increased the b43 
interrupt routine from a maximum of 10% of a cpu to about 20%. Even on a fast 
cpu, it seems that hw encryption should be used if possible.

I have one additional test for you. With the attached patch, do you get the 
message that software crypto is required? It should appear only once.


Larry


[-- Attachment #2: b43_crypto.patch --]
[-- Type: text/x-patch, Size: 1436 bytes --]

diff --git a/drivers/net/wireless/broadcom/b43/main.c b/drivers/net/wireless/broadcom/b43/main.c
index 39da1a4c30ac..c5322f52040c 100644
--- a/drivers/net/wireless/broadcom/b43/main.c
+++ b/drivers/net/wireless/broadcom/b43/main.c
@@ -4161,6 +4161,7 @@ static int b43_op_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
 	u8 index;
 	int err;
 	static const u8 bcast_addr[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
+	static int encrypt_warn;
 
 	if (modparam_nohwcrypt)
 		return -ENOSPC; /* User disabled HW-crypto */
@@ -4189,6 +4190,10 @@ static int b43_op_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
 	if (dev->fw.pcm_request_failed || !dev->hwcrypto_enabled) {
 		/* We don't have firmware for the crypto engine.
 		 * Must use software-crypto. */
+		if (encrypt_warn++) {
+			b43info(wl, "***** A cipher used by this connection requires using software encryption\n");
+			b43info(wl, "***** Reload b43 with modules option 'nohwcrypt=1'\n");
+		}
 		err = -EOPNOTSUPP;
 		goto out_unlock;
 	}
@@ -5569,7 +5574,9 @@ static struct b43_wl *b43_wireless_init(struct b43_bus_dev *dev)
 	/* fill hw info */
 	ieee80211_hw_set(hw, RX_INCLUDES_FCS);
 	ieee80211_hw_set(hw, SIGNAL_DBM);
-
+	/* if hardware encryption is disabled, enable MFP (and WPA3) */
+	if (modparam_nohwcrypt)
+		ieee80211_hw_set(hw, MFP_CAPABLE);
 	hw->wiphy->interface_modes =
 		BIT(NL80211_IFTYPE_AP) |
 		BIT(NL80211_IFTYPE_MESH_POINT) |

^ permalink raw reply related	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-21 18:59                                 ` Larry Finger
@ 2020-05-21 19:19                                   ` Rui Salvaterra
  2020-05-21 20:23                                     ` Rui Salvaterra
  0 siblings, 1 reply; 33+ messages in thread
From: Rui Salvaterra @ 2020-05-21 19:19 UTC (permalink / raw)
  To: Larry Finger; +Cc: Michael Büsch, linux-wireless, b43-dev

On Thu, 21 May 2020 at 20:00, Larry Finger <Larry.Finger@lwfinger.net> wrote:
>
> I did only a rough test, but turning off hardware encryption increased the b43
> interrupt routine from a maximum of 10% of a cpu to about 20%. Even on a fast
> cpu, it seems that hw encryption should be used if possible.

I didn't pay attention to the interrupt rate. I wonder if NAPI would help…? :)

> I have one additional test for you. With the attached patch, do you get the
> message that software crypto is required? It should appear only once.

Sure, I'll give it a spin. I'm now compiling the kernel for the laptop
with the other b43 card (BCM4311).

Thanks,
Rui

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-21 19:19                                   ` Rui Salvaterra
@ 2020-05-21 20:23                                     ` Rui Salvaterra
  2020-05-21 21:47                                       ` Larry Finger
  0 siblings, 1 reply; 33+ messages in thread
From: Rui Salvaterra @ 2020-05-21 20:23 UTC (permalink / raw)
  To: Larry Finger; +Cc: Michael Büsch, linux-wireless, b43-dev

On Thu, 21 May 2020 at 20:19, Rui Salvaterra <rsalvaterra@gmail.com> wrote:
>
> Sure, I'll give it a spin. I'm now compiling the kernel for the laptop
> with the other b43 card (BCM4311).

Nope, kmsg is clean. I'm pretty sure the condition is evaluating to
false because we do have the firmware, it's just that the crypto
engine doesn't support the required algo.
Is hardware encryption an all-or-nothing thing in mac80211? Wouldn't
it be possible use the hardware as much as possible and fall back to
software only for the unsupported features? (I guess the answer is
"no, because the firmware gets in the way", but I had to ask.)

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-21 20:23                                     ` Rui Salvaterra
@ 2020-05-21 21:47                                       ` Larry Finger
  2020-05-22 10:19                                         ` Michael Büsch
  0 siblings, 1 reply; 33+ messages in thread
From: Larry Finger @ 2020-05-21 21:47 UTC (permalink / raw)
  To: Rui Salvaterra; +Cc: linux-wireless, b43-dev, Michael Büsch

On 5/21/20 3:23 PM, Rui Salvaterra wrote:
> On Thu, 21 May 2020 at 20:19, Rui Salvaterra <rsalvaterra@gmail.com> wrote:
>>
>> Sure, I'll give it a spin. I'm now compiling the kernel for the laptop
>> with the other b43 card (BCM4311).
> 
> Nope, kmsg is clean. I'm pretty sure the condition is evaluating to
> false because we do have the firmware, it's just that the crypto
> engine doesn't support the required algo.
> Is hardware encryption an all-or-nothing thing in mac80211? Wouldn't
> it be possible use the hardware as much as possible and fall back to
> software only for the unsupported features? (I guess the answer is
> "no, because the firmware gets in the way", but I had to ask.)
> 

My first failure indicates the mac80211 needs to know from the start that 
software encryption is to be used. The only places that the driver makes note of 
the nohwcrypt is in b43_op_set_key() where it returns -ENOSPC, and our new one 
where MFP_CAPABLE is set. Otherwise, the packet flags indicate that encryption 
is not needed.

Larry


^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-21 21:47                                       ` Larry Finger
@ 2020-05-22 10:19                                         ` Michael Büsch
  2020-05-22 11:49                                           ` Kalle Valo
  0 siblings, 1 reply; 33+ messages in thread
From: Michael Büsch @ 2020-05-22 10:19 UTC (permalink / raw)
  To: Larry Finger; +Cc: Rui Salvaterra, linux-wireless, b43-dev

[-- Attachment #1: Type: text/plain, Size: 2049 bytes --]

On Thu, 21 May 2020 16:47:41 -0500
Larry Finger <Larry.Finger@lwfinger.net> wrote:

> On 5/21/20 3:23 PM, Rui Salvaterra wrote:
> > On Thu, 21 May 2020 at 20:19, Rui Salvaterra <rsalvaterra@gmail.com> wrote:  
> >>
> >> Sure, I'll give it a spin. I'm now compiling the kernel for the laptop
> >> with the other b43 card (BCM4311).  
> > 
> > Nope, kmsg is clean. I'm pretty sure the condition is evaluating to
> > false because we do have the firmware, it's just that the crypto
> > engine doesn't support the required algo.
> > Is hardware encryption an all-or-nothing thing in mac80211? Wouldn't
> > it be possible use the hardware as much as possible and fall back to
> > software only for the unsupported features? (I guess the answer is
> > "no, because the firmware gets in the way", but I had to ask.)
> >   
> 
> My first failure indicates the mac80211 needs to know from the start that 
> software encryption is to be used. The only places that the driver makes note of 
> the nohwcrypt is in b43_op_set_key() where it returns -ENOSPC, and our new one 
> where MFP_CAPABLE is set. Otherwise, the packet flags indicate that encryption 
> is not needed.


Thank you all very much for benchmarking this.

As we see, hwcrypto has a major effect on CPU load.
But I'm still in favor of changing the default to nohwcrypt=1.
That would be a trade off between a wifi that does work with "bad"
performance vs. a wifi that does not work at all by default. It would
not stop people from enabling hwcrypto again.

But I'm also wondering, if we can dynamically decide whether to allow
hwcrypto.
Can't we set the MFP-flag all the time and then in b43_op_set_key
decide whether we allow hwcrypto or not? As far as I remember mac80211
falls back to sw-crypto, if an error is returned from the key op. So it
would "just" be a matter of detecting whether MFP is actually being
used in the network we are trying to connect to from within the key op.
Is that information available somewhere in mac80211?

-- 
Michael

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-22 10:19                                         ` Michael Büsch
@ 2020-05-22 11:49                                           ` Kalle Valo
  2020-05-22 13:46                                             ` Rui Salvaterra
  2020-05-22 17:15                                             ` Larry Finger
  0 siblings, 2 replies; 33+ messages in thread
From: Kalle Valo @ 2020-05-22 11:49 UTC (permalink / raw)
  To: Michael Büsch; +Cc: Larry Finger, Rui Salvaterra, linux-wireless, b43-dev

Michael Büsch <m@bues.ch> writes:

> On Thu, 21 May 2020 16:47:41 -0500
> Larry Finger <Larry.Finger@lwfinger.net> wrote:
>
>> On 5/21/20 3:23 PM, Rui Salvaterra wrote:
>> > On Thu, 21 May 2020 at 20:19, Rui Salvaterra <rsalvaterra@gmail.com> wrote:  
>> >>
>> >> Sure, I'll give it a spin. I'm now compiling the kernel for the laptop
>> >> with the other b43 card (BCM4311).  
>> > 
>> > Nope, kmsg is clean. I'm pretty sure the condition is evaluating to
>> > false because we do have the firmware, it's just that the crypto
>> > engine doesn't support the required algo.
>> > Is hardware encryption an all-or-nothing thing in mac80211? Wouldn't
>> > it be possible use the hardware as much as possible and fall back to
>> > software only for the unsupported features? (I guess the answer is
>> > "no, because the firmware gets in the way", but I had to ask.)
>> >   
>> 
>> My first failure indicates the mac80211 needs to know from the start that 
>> software encryption is to be used. The only places that the driver makes note of 
>> the nohwcrypt is in b43_op_set_key() where it returns -ENOSPC, and our new one 
>> where MFP_CAPABLE is set. Otherwise, the packet flags indicate that encryption 
>> is not needed.
>
>
> Thank you all very much for benchmarking this.
>
> As we see, hwcrypto has a major effect on CPU load.
> But I'm still in favor of changing the default to nohwcrypt=1.

I'm thinking the same.

> That would be a trade off between a wifi that does work with "bad"
> performance vs. a wifi that does not work at all by default.

And did the "bad" performance even have any real visible changes to the
user? IMHO this "bad" performance is small price to pay from getting
WPA3 supported out-of-box, especially when the data throughput is
unaffected.

-- 
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-22 11:49                                           ` Kalle Valo
@ 2020-05-22 13:46                                             ` Rui Salvaterra
  2020-05-22 18:02                                               ` Larry Finger
  2020-05-22 17:15                                             ` Larry Finger
  1 sibling, 1 reply; 33+ messages in thread
From: Rui Salvaterra @ 2020-05-22 13:46 UTC (permalink / raw)
  To: Kalle Valo; +Cc: Michael Büsch, Larry Finger, linux-wireless, b43-dev

Hi, Kalle,

On Fri, 22 May 2020 at 12:49, Kalle Valo <kvalo@codeaurora.org> wrote:
>
> And did the "bad" performance even have any real visible changes to the
> user? IMHO this "bad" performance is small price to pay from getting
> WPA3 supported out-of-box, especially when the data throughput is
> unaffected.

I agree, I also believe the additional security provided by WPA3 is
more important. The CPU overhead impact exists and is measurable but,
to be honest, I didn't notice any worse performance while browsing the
web, for example (which is already slow enough on a G4 CPU, as you can
imagine).

Thanks,
Rui

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-22 11:49                                           ` Kalle Valo
  2020-05-22 13:46                                             ` Rui Salvaterra
@ 2020-05-22 17:15                                             ` Larry Finger
  1 sibling, 0 replies; 33+ messages in thread
From: Larry Finger @ 2020-05-22 17:15 UTC (permalink / raw)
  To: Kalle Valo, Michael Büsch; +Cc: Rui Salvaterra, linux-wireless, b43-dev

On 5/22/20 6:49 AM, Kalle Valo wrote:
> 
> And did the "bad" performance even have any real visible changes to the
> user? IMHO this "bad" performance is small price to pay from getting
> WPA3 supported out-of-box, especially when the data throughput is
> unaffected.

Kalle,

The only bad effect is to consume 2-3 times more CPU than used if the firmware 
handles encryption. On a modern system, the effect is negligible; however, these 
cards are found only on older systems that have uni-processors.

I have reread the mac80211 documentation (comments in code at least), and it 
appears that it should be possible to set MFP_CAPABLE unconditionally, and use 
the set_key() callback to let mac80211 know if the driver/firmware will handle 
encryption. The module parameter could be removed; however, I favor leaving it 
in case of broken hardware.

@Rui: I will send you a new patch for testing.

Larry



^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-22 13:46                                             ` Rui Salvaterra
@ 2020-05-22 18:02                                               ` Larry Finger
  2020-05-22 20:04                                                 ` Rui Salvaterra
  2020-05-22 20:40                                                 ` Rui Salvaterra
  0 siblings, 2 replies; 33+ messages in thread
From: Larry Finger @ 2020-05-22 18:02 UTC (permalink / raw)
  To: Rui Salvaterra, Kalle Valo; +Cc: Michael Büsch, linux-wireless, b43-dev

On 5/22/20 8:46 AM, Rui Salvaterra wrote:
> Hi, Kalle,
> 
> On Fri, 22 May 2020 at 12:49, Kalle Valo <kvalo@codeaurora.org> wrote:
>>
>> And did the "bad" performance even have any real visible changes to the
>> user? IMHO this "bad" performance is small price to pay from getting
>> WPA3 supported out-of-box, especially when the data throughput is
>> unaffected.
> 
> I agree, I also believe the additional security provided by WPA3 is
> more important. The CPU overhead impact exists and is measurable but,
> to be honest, I didn't notice any worse performance while browsing the
> web, for example (which is already slow enough on a G4 CPU, as you can
> imagine).

Rui,

Does this one-line
patch work for WPA3 without setting the nohwcrypt option?

diff --git a/drivers/net/wireless/broadcom/b43/main.c 
b/drivers/net/wireless/broadcom/b43/main.c
index 39da1a4c30ac..3ad94dad2d89 100644
--- a/drivers/net/wireless/broadcom/b43/main.c
+++ b/drivers/net/wireless/broadcom/b43/main.c
@@ -5569,7 +5569,7 @@ static struct b43_wl *b43_wireless_init(struct b43_bus_dev 
*dev)
         /* fill hw info */
         ieee80211_hw_set(hw, RX_INCLUDES_FCS);
         ieee80211_hw_set(hw, SIGNAL_DBM);
-
+       ieee80211_hw_set(hw, MFP_CAPABLE);
         hw->wiphy->interface_modes =
                 BIT(NL80211_IFTYPE_AP) |
                 BIT(NL80211_IFTYPE_MESH_POINT) |


Larry

^ permalink raw reply related	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-22 18:02                                               ` Larry Finger
@ 2020-05-22 20:04                                                 ` Rui Salvaterra
  2020-05-22 20:40                                                 ` Rui Salvaterra
  1 sibling, 0 replies; 33+ messages in thread
From: Rui Salvaterra @ 2020-05-22 20:04 UTC (permalink / raw)
  To: Larry Finger; +Cc: Kalle Valo, Michael Büsch, linux-wireless, b43-dev

Hi again, Larry,

On Fri, 22 May 2020 at 19:02, Larry Finger <Larry.Finger@lwfinger.net> wrote:
>
> Rui,
>
> Does this one-line
> patch work for WPA3 without setting the nohwcrypt option?
>

Interesting. I'm skeptical that it could, yet intrigued that it may
(I'm pretty sure CMAC is a requirement). The patch was mangled, so I
just edited the file manually. Compiling.

Thanks,
Rui

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-22 18:02                                               ` Larry Finger
  2020-05-22 20:04                                                 ` Rui Salvaterra
@ 2020-05-22 20:40                                                 ` Rui Salvaterra
  2020-05-22 21:06                                                   ` Larry Finger
  1 sibling, 1 reply; 33+ messages in thread
From: Rui Salvaterra @ 2020-05-22 20:40 UTC (permalink / raw)
  To: Larry Finger; +Cc: Kalle Valo, Michael Büsch, linux-wireless, b43-dev

On Fri, 22 May 2020 at 19:02, Larry Finger <Larry.Finger@lwfinger.net> wrote:
>
> Rui,
>
> Does this one-line
> patch work for WPA3 without setting the nohwcrypt option?

Ok, so it "works", but I don't know what actually happened (I didn't
do any performance testing yet). I got this relevant output on my
kmsg…

rui@mcnugget:~$ dmesg | awk '(/80211/ || /b43/ || /wlan0/)'
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinux-5.7.0-rc6+
root=UUID=849bbef3-007e-491e-b187-9e259680c2e2 ro mitigations=off
b43.qos=0 b43.verbose=3 usbhid.mousepoll=16 quiet splash
[    0.035705] b43-pci-bridge 0001:10:12.0: enabling device (0004 -> 0006)
[    0.210299] b43-pci-bridge 0001:10:12.0: Sonics Silicon Backplane
found on PCI device 0001:10:12.0
[    3.361908] b43-phy0: Broadcom 4318 WLAN found (core revision 9)
[    3.454235] b43-phy0: Found PHY: Analog 3, Type 2 (G), Revision 7
[    3.454259] b43-phy0: Found Radio: Manuf 0x17F, ID 0x2050, Revision
8, Version 0
[    3.485125] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[   28.697945] b43-phy0: Loading firmware version 666.2 (2011-02-23 01:15:07)
[   28.730381] b43-phy0 debug: Chip initialized
[   28.731389] b43-phy0 debug: 32-bit DMA initialized
[   28.731400] b43-phy0 debug: QoS disabled
[   28.792272] b43-phy0 debug: Wireless interface started
[   28.820318] b43-phy0 debug: Adding Interface type 2
[   33.944771] wlan0: authenticate with 04:f0:21:24:28:44
[   33.970449] wlan0: send auth to 04:f0:21:24:28:44 (try 1/3)
[   34.026222] wlan0: authenticate with 04:f0:21:24:28:44
[   34.026241] wlan0: send auth to 04:f0:21:24:28:44 (try 1/3)
[   34.028522] wlan0: authenticated
[   34.043256] wlan0: associate with 04:f0:21:24:28:44 (try 1/3)
[   34.046946] wlan0: RX AssocResp from 04:f0:21:24:28:44 (capab=0x431
status=30 aid=1)
[   34.046964] wlan0: 04:f0:21:24:28:44 rejected association
temporarily; comeback duration 1000 TU (1024 ms)
[   35.122051] wlan0: associate with 04:f0:21:24:28:44 (try 2/3)
[   35.125547] wlan0: RX AssocResp from 04:f0:21:24:28:44 (capab=0x431
status=0 aid=1)
[   35.125808] wlan0: associated
[   35.268256] b43-phy0 debug: Using hardware based encryption for
keyidx: 0, mac: 04:f0:21:24:28:44
[   35.268762] b43-phy0 debug: Using hardware based encryption for
keyidx: 2, mac: ff:ff:ff:ff:ff:ff
[   35.358586] wlan0: failed to set key (5, ff:ff:ff:ff:ff:ff) to hardware (-22)
[   35.358977] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   87.283220] wlan0: failed to set key (4, ff:ff:ff:ff:ff:ff) to hardware (-22)
[   87.283521] b43-phy0 debug: Using hardware based encryption for
keyidx: 1, mac: ff:ff:ff:ff:ff:ff
rui@mcnugget:~$

Meanwhile, iw list shows all the possible software cyphers:

    Supported Ciphers:
        * WEP40 (00-0f-ac:1)
        * WEP104 (00-0f-ac:5)
        * TKIP (00-0f-ac:2)
        * CCMP-128 (00-0f-ac:4)
        * CCMP-256 (00-0f-ac:10)
        * GCMP-128 (00-0f-ac:8)
        * GCMP-256 (00-0f-ac:9)
        * CMAC (00-0f-ac:6)
        * CMAC-256 (00-0f-ac:13)
        * GMAC-128 (00-0f-ac:11)
        * GMAC-256 (00-0f-ac:12)

What I'm not sure is if b43 is doing all the cyphers it supports in
hardware and falling back to software just for the unsupported ones,
or if it's doing everything in software.

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-22 20:40                                                 ` Rui Salvaterra
@ 2020-05-22 21:06                                                   ` Larry Finger
  2020-05-23  0:35                                                     ` Rui Salvaterra
  2020-05-23 21:17                                                     ` Rafał Miłecki
  0 siblings, 2 replies; 33+ messages in thread
From: Larry Finger @ 2020-05-22 21:06 UTC (permalink / raw)
  To: Rui Salvaterra; +Cc: Kalle Valo, Michael Büsch, linux-wireless, b43-dev

On 5/22/20 3:40 PM, Rui Salvaterra wrote:
> On Fri, 22 May 2020 at 19:02, Larry Finger <Larry.Finger@lwfinger.net> wrote:
>>
>> Rui,
>>
>> Does this one-line
>> patch work for WPA3 without setting the nohwcrypt option?
> 
> Ok, so it "works", but I don't know what actually happened (I didn't
> do any performance testing yet). I got this relevant output on my
> kmsg…
> 
> rui@mcnugget:~$ dmesg | awk '(/80211/ || /b43/ || /wlan0/)'
> [    0.000000] Kernel command line: BOOT_IMAGE=/vmlinux-5.7.0-rc6+
> root=UUID=849bbef3-007e-491e-b187-9e259680c2e2 ro mitigations=off
> b43.qos=0 b43.verbose=3 usbhid.mousepoll=16 quiet splash
> [    0.035705] b43-pci-bridge 0001:10:12.0: enabling device (0004 -> 0006)
> [    0.210299] b43-pci-bridge 0001:10:12.0: Sonics Silicon Backplane
> found on PCI device 0001:10:12.0
> [    3.361908] b43-phy0: Broadcom 4318 WLAN found (core revision 9)
> [    3.454235] b43-phy0: Found PHY: Analog 3, Type 2 (G), Revision 7
> [    3.454259] b43-phy0: Found Radio: Manuf 0x17F, ID 0x2050, Revision
> 8, Version 0
> [    3.485125] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
> [   28.697945] b43-phy0: Loading firmware version 666.2 (2011-02-23 01:15:07)
> [   28.730381] b43-phy0 debug: Chip initialized
> [   28.731389] b43-phy0 debug: 32-bit DMA initialized
> [   28.731400] b43-phy0 debug: QoS disabled
> [   28.792272] b43-phy0 debug: Wireless interface started
> [   28.820318] b43-phy0 debug: Adding Interface type 2
> [   33.944771] wlan0: authenticate with 04:f0:21:24:28:44
> [   33.970449] wlan0: send auth to 04:f0:21:24:28:44 (try 1/3)
> [   34.026222] wlan0: authenticate with 04:f0:21:24:28:44
> [   34.026241] wlan0: send auth to 04:f0:21:24:28:44 (try 1/3)
> [   34.028522] wlan0: authenticated
> [   34.043256] wlan0: associate with 04:f0:21:24:28:44 (try 1/3)
> [   34.046946] wlan0: RX AssocResp from 04:f0:21:24:28:44 (capab=0x431
> status=30 aid=1)
> [   34.046964] wlan0: 04:f0:21:24:28:44 rejected association
> temporarily; comeback duration 1000 TU (1024 ms)
> [   35.122051] wlan0: associate with 04:f0:21:24:28:44 (try 2/3)
> [   35.125547] wlan0: RX AssocResp from 04:f0:21:24:28:44 (capab=0x431
> status=0 aid=1)
> [   35.125808] wlan0: associated
> [   35.268256] b43-phy0 debug: Using hardware based encryption for
> keyidx: 0, mac: 04:f0:21:24:28:44
> [   35.268762] b43-phy0 debug: Using hardware based encryption for
> keyidx: 2, mac: ff:ff:ff:ff:ff:ff
> [   35.358586] wlan0: failed to set key (5, ff:ff:ff:ff:ff:ff) to hardware (-22)
> [   35.358977] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
> [   87.283220] wlan0: failed to set key (4, ff:ff:ff:ff:ff:ff) to hardware (-22)
> [   87.283521] b43-phy0 debug: Using hardware based encryption for
> keyidx: 1, mac: ff:ff:ff:ff:ff:ff
> rui@mcnugget:~$
> 
> Meanwhile, iw list shows all the possible software cyphers:
> 
>      Supported Ciphers:
>          * WEP40 (00-0f-ac:1)
>          * WEP104 (00-0f-ac:5)
>          * TKIP (00-0f-ac:2)
>          * CCMP-128 (00-0f-ac:4)
>          * CCMP-256 (00-0f-ac:10)
>          * GCMP-128 (00-0f-ac:8)
>          * GCMP-256 (00-0f-ac:9)
>          * CMAC (00-0f-ac:6)
>          * CMAC-256 (00-0f-ac:13)
>          * GMAC-128 (00-0f-ac:11)
>          * GMAC-256 (00-0f-ac:12)
> 
> What I'm not sure is if b43 is doing all the cyphers it supports in
> hardware and falling back to software just for the unsupported ones,
> or if it's doing everything in software.
It will do supported ciphers in hardware, and unsupported using software. The 
patch tells mac80211 that we will accept the newer ciphers, then in the 
set_key() callback, we tell it whether the current type will be handled in 
hardware. Operations will be transparent. I will keep the nohwcrypt option just 
in case someone has a hardware malfunction that prohibits hardware use for all 
ciphers, but it will not be needed in cases like yours. Performance will be as 
you did earlier.

Thanks for testing.

Larry



^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-22 21:06                                                   ` Larry Finger
@ 2020-05-23  0:35                                                     ` Rui Salvaterra
  2020-05-23 21:17                                                     ` Rafał Miłecki
  1 sibling, 0 replies; 33+ messages in thread
From: Rui Salvaterra @ 2020-05-23  0:35 UTC (permalink / raw)
  To: Larry Finger; +Cc: Kalle Valo, Michael Büsch, linux-wireless, b43-dev

On Fri, 22 May 2020 at 22:06, Larry Finger <Larry.Finger@lwfinger.net> wrote:
>
> It will do supported ciphers in hardware, and unsupported using software. The
> patch tells mac80211 that we will accept the newer ciphers, then in the
> set_key() callback, we tell it whether the current type will be handled in
> hardware. Operations will be transparent. I will keep the nohwcrypt option just
> in case someone has a hardware malfunction that prohibits hardware use for all
> ciphers, but it will not be needed in cases like yours. Performance will be as
> you did earlier.

Wonderful, I didn't know mac80211 was that smart. But I have even
better news (and it would be great if someone else could verify this):
with your unconditional enablement of MFP, the CPU overhead of WPA3 is
on par with WPA2, I believe it's doing hardware crypto. And it makes
sense when you think of it, WPA3 Personal uses the same AES cypher as
WPA2, but with SAE handshake, if I'm not mistaken.

> Thanks for testing.

My pleasure!

Rui

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-22 21:06                                                   ` Larry Finger
  2020-05-23  0:35                                                     ` Rui Salvaterra
@ 2020-05-23 21:17                                                     ` Rafał Miłecki
  2020-05-25  6:56                                                       ` Kalle Valo
  1 sibling, 1 reply; 33+ messages in thread
From: Rafał Miłecki @ 2020-05-23 21:17 UTC (permalink / raw)
  To: Larry Finger
  Cc: Rui Salvaterra, linux-wireless, Michael Büsch, Kalle Valo, b43-dev

On Fri, 22 May 2020 at 23:06, Larry Finger <Larry.Finger@lwfinger.net> wrote:
> On 5/22/20 3:40 PM, Rui Salvaterra wrote:
> > On Fri, 22 May 2020 at 19:02, Larry Finger <Larry.Finger@lwfinger.net> wrote:
> >>
> >> Rui,
> >>
> >> Does this one-line
> >> patch work for WPA3 without setting the nohwcrypt option?
> >
> > Ok, so it "works", but I don't know what actually happened (I didn't
> > do any performance testing yet). I got this relevant output on my
> > kmsg…
> >
> > rui@mcnugget:~$ dmesg | awk '(/80211/ || /b43/ || /wlan0/)'
> > [    0.000000] Kernel command line: BOOT_IMAGE=/vmlinux-5.7.0-rc6+
> > root=UUID=849bbef3-007e-491e-b187-9e259680c2e2 ro mitigations=off
> > b43.qos=0 b43.verbose=3 usbhid.mousepoll=16 quiet splash
> > [    0.035705] b43-pci-bridge 0001:10:12.0: enabling device (0004 -> 0006)
> > [    0.210299] b43-pci-bridge 0001:10:12.0: Sonics Silicon Backplane
> > found on PCI device 0001:10:12.0
> > [    3.361908] b43-phy0: Broadcom 4318 WLAN found (core revision 9)
> > [    3.454235] b43-phy0: Found PHY: Analog 3, Type 2 (G), Revision 7
> > [    3.454259] b43-phy0: Found Radio: Manuf 0x17F, ID 0x2050, Revision
> > 8, Version 0
> > [    3.485125] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
> > [   28.697945] b43-phy0: Loading firmware version 666.2 (2011-02-23 01:15:07)
> > [   28.730381] b43-phy0 debug: Chip initialized
> > [   28.731389] b43-phy0 debug: 32-bit DMA initialized
> > [   28.731400] b43-phy0 debug: QoS disabled
> > [   28.792272] b43-phy0 debug: Wireless interface started
> > [   28.820318] b43-phy0 debug: Adding Interface type 2
> > [   33.944771] wlan0: authenticate with 04:f0:21:24:28:44
> > [   33.970449] wlan0: send auth to 04:f0:21:24:28:44 (try 1/3)
> > [   34.026222] wlan0: authenticate with 04:f0:21:24:28:44
> > [   34.026241] wlan0: send auth to 04:f0:21:24:28:44 (try 1/3)
> > [   34.028522] wlan0: authenticated
> > [   34.043256] wlan0: associate with 04:f0:21:24:28:44 (try 1/3)
> > [   34.046946] wlan0: RX AssocResp from 04:f0:21:24:28:44 (capab=0x431
> > status=30 aid=1)
> > [   34.046964] wlan0: 04:f0:21:24:28:44 rejected association
> > temporarily; comeback duration 1000 TU (1024 ms)
> > [   35.122051] wlan0: associate with 04:f0:21:24:28:44 (try 2/3)
> > [   35.125547] wlan0: RX AssocResp from 04:f0:21:24:28:44 (capab=0x431
> > status=0 aid=1)
> > [   35.125808] wlan0: associated
> > [   35.268256] b43-phy0 debug: Using hardware based encryption for
> > keyidx: 0, mac: 04:f0:21:24:28:44
> > [   35.268762] b43-phy0 debug: Using hardware based encryption for
> > keyidx: 2, mac: ff:ff:ff:ff:ff:ff
> > [   35.358586] wlan0: failed to set key (5, ff:ff:ff:ff:ff:ff) to hardware (-22)
> > [   35.358977] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
> > [   87.283220] wlan0: failed to set key (4, ff:ff:ff:ff:ff:ff) to hardware (-22)
> > [   87.283521] b43-phy0 debug: Using hardware based encryption for
> > keyidx: 1, mac: ff:ff:ff:ff:ff:ff
> > rui@mcnugget:~$
> >
> > Meanwhile, iw list shows all the possible software cyphers:
> >
> >      Supported Ciphers:
> >          * WEP40 (00-0f-ac:1)
> >          * WEP104 (00-0f-ac:5)
> >          * TKIP (00-0f-ac:2)
> >          * CCMP-128 (00-0f-ac:4)
> >          * CCMP-256 (00-0f-ac:10)
> >          * GCMP-128 (00-0f-ac:8)
> >          * GCMP-256 (00-0f-ac:9)
> >          * CMAC (00-0f-ac:6)
> >          * CMAC-256 (00-0f-ac:13)
> >          * GMAC-128 (00-0f-ac:11)
> >          * GMAC-256 (00-0f-ac:12)
> >
> > What I'm not sure is if b43 is doing all the cyphers it supports in
> > hardware and falling back to software just for the unsupported ones,
> > or if it's doing everything in software.
> It will do supported ciphers in hardware, and unsupported using software. The
> patch tells mac80211 that we will accept the newer ciphers, then in the
> set_key() callback, we tell it whether the current type will be handled in
> hardware. Operations will be transparent. I will keep the nohwcrypt option just
> in case someone has a hardware malfunction that prohibits hardware use for all
> ciphers, but it will not be needed in cases like yours. Performance will be as
> you did earlier.

Nice work Larry, thank you!

-- 
Rafał

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1)
  2020-05-23 21:17                                                     ` Rafał Miłecki
@ 2020-05-25  6:56                                                       ` Kalle Valo
  0 siblings, 0 replies; 33+ messages in thread
From: Kalle Valo @ 2020-05-25  6:56 UTC (permalink / raw)
  To: Rafał Miłecki
  Cc: Larry Finger, Rui Salvaterra, linux-wireless, Michael Büsch,
	b43-dev

Rafał Miłecki <zajec5@gmail.com> writes:

> On Fri, 22 May 2020 at 23:06, Larry Finger <Larry.Finger@lwfinger.net> wrote:
>> On 5/22/20 3:40 PM, Rui Salvaterra wrote:
>> > On Fri, 22 May 2020 at 19:02, Larry Finger <Larry.Finger@lwfinger.net> wrote:
>> >>
>> >> Rui,
>> >>
>> >> Does this one-line
>> >> patch work for WPA3 without setting the nohwcrypt option?
>> >
>> > Ok, so it "works", but I don't know what actually happened (I didn't
>> > do any performance testing yet). I got this relevant output on my
>> > kmsg…
>> >
>> > rui@mcnugget:~$ dmesg | awk '(/80211/ || /b43/ || /wlan0/)'
>> > [    0.000000] Kernel command line: BOOT_IMAGE=/vmlinux-5.7.0-rc6+
>> > root=UUID=849bbef3-007e-491e-b187-9e259680c2e2 ro mitigations=off
>> > b43.qos=0 b43.verbose=3 usbhid.mousepoll=16 quiet splash
>> > [    0.035705] b43-pci-bridge 0001:10:12.0: enabling device (0004 -> 0006)
>> > [    0.210299] b43-pci-bridge 0001:10:12.0: Sonics Silicon Backplane
>> > found on PCI device 0001:10:12.0
>> > [    3.361908] b43-phy0: Broadcom 4318 WLAN found (core revision 9)
>> > [    3.454235] b43-phy0: Found PHY: Analog 3, Type 2 (G), Revision 7
>> > [    3.454259] b43-phy0: Found Radio: Manuf 0x17F, ID 0x2050, Revision
>> > 8, Version 0
>> > [    3.485125] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
>> > [   28.697945] b43-phy0: Loading firmware version 666.2 (2011-02-23 01:15:07)
>> > [   28.730381] b43-phy0 debug: Chip initialized
>> > [   28.731389] b43-phy0 debug: 32-bit DMA initialized
>> > [   28.731400] b43-phy0 debug: QoS disabled
>> > [   28.792272] b43-phy0 debug: Wireless interface started
>> > [   28.820318] b43-phy0 debug: Adding Interface type 2
>> > [   33.944771] wlan0: authenticate with 04:f0:21:24:28:44
>> > [   33.970449] wlan0: send auth to 04:f0:21:24:28:44 (try 1/3)
>> > [   34.026222] wlan0: authenticate with 04:f0:21:24:28:44
>> > [   34.026241] wlan0: send auth to 04:f0:21:24:28:44 (try 1/3)
>> > [   34.028522] wlan0: authenticated
>> > [   34.043256] wlan0: associate with 04:f0:21:24:28:44 (try 1/3)
>> > [   34.046946] wlan0: RX AssocResp from 04:f0:21:24:28:44 (capab=0x431
>> > status=30 aid=1)
>> > [   34.046964] wlan0: 04:f0:21:24:28:44 rejected association
>> > temporarily; comeback duration 1000 TU (1024 ms)
>> > [   35.122051] wlan0: associate with 04:f0:21:24:28:44 (try 2/3)
>> > [   35.125547] wlan0: RX AssocResp from 04:f0:21:24:28:44 (capab=0x431
>> > status=0 aid=1)
>> > [   35.125808] wlan0: associated
>> > [   35.268256] b43-phy0 debug: Using hardware based encryption for
>> > keyidx: 0, mac: 04:f0:21:24:28:44
>> > [   35.268762] b43-phy0 debug: Using hardware based encryption for
>> > keyidx: 2, mac: ff:ff:ff:ff:ff:ff
>> > [   35.358586] wlan0: failed to set key (5, ff:ff:ff:ff:ff:ff) to hardware (-22)
>> > [   35.358977] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
>> > [   87.283220] wlan0: failed to set key (4, ff:ff:ff:ff:ff:ff) to hardware (-22)
>> > [   87.283521] b43-phy0 debug: Using hardware based encryption for
>> > keyidx: 1, mac: ff:ff:ff:ff:ff:ff
>> > rui@mcnugget:~$
>> >
>> > Meanwhile, iw list shows all the possible software cyphers:
>> >
>> >      Supported Ciphers:
>> >          * WEP40 (00-0f-ac:1)
>> >          * WEP104 (00-0f-ac:5)
>> >          * TKIP (00-0f-ac:2)
>> >          * CCMP-128 (00-0f-ac:4)
>> >          * CCMP-256 (00-0f-ac:10)
>> >          * GCMP-128 (00-0f-ac:8)
>> >          * GCMP-256 (00-0f-ac:9)
>> >          * CMAC (00-0f-ac:6)
>> >          * CMAC-256 (00-0f-ac:13)
>> >          * GMAC-128 (00-0f-ac:11)
>> >          * GMAC-256 (00-0f-ac:12)
>> >
>> > What I'm not sure is if b43 is doing all the cyphers it supports in
>> > hardware and falling back to software just for the unsupported ones,
>> > or if it's doing everything in software.
>>
>> It will do supported ciphers in hardware, and unsupported using software. The
>> patch tells mac80211 that we will accept the newer ciphers, then in the
>> set_key() callback, we tell it whether the current type will be handled in
>> hardware. Operations will be transparent. I will keep the nohwcrypt option just
>> in case someone has a hardware malfunction that prohibits hardware use for all
>> ciphers, but it will not be needed in cases like yours. Performance will be as
>> you did earlier.
>
> Nice work Larry, thank you!

Indeed, this is a perfect solution.

-- 
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches

^ permalink raw reply	[flat|nested] 33+ messages in thread

end of thread, other threads:[~2020-05-25  6:56 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-19 14:18 [BUG?] b43: can't connect to WPA3 network (nohwcrypt=1) Rui Salvaterra
2020-05-19 20:30 ` Larry Finger
2020-05-19 20:36   ` Rui Salvaterra
2020-05-19 23:13     ` Rui Salvaterra
2020-05-20  0:16       ` Larry Finger
2020-05-20  8:24         ` Rui Salvaterra
2020-05-20 10:55           ` Rui Salvaterra
2020-05-20 20:08             ` Larry Finger
2020-05-20 20:28               ` Rui Salvaterra
2020-05-20 20:56                 ` Larry Finger
2020-05-21  8:35                   ` Rui Salvaterra
2020-05-21  9:07                     ` Rui Salvaterra
2020-05-21 10:46                       ` Michael Büsch
2020-05-21 11:30                         ` Rui Salvaterra
2020-05-21 11:40                           ` Michael Büsch
2020-05-21 14:10                             ` Larry Finger
2020-05-21 14:52                             ` Rui Salvaterra
2020-05-21 16:17                               ` Rui Salvaterra
2020-05-21 18:59                                 ` Larry Finger
2020-05-21 19:19                                   ` Rui Salvaterra
2020-05-21 20:23                                     ` Rui Salvaterra
2020-05-21 21:47                                       ` Larry Finger
2020-05-22 10:19                                         ` Michael Büsch
2020-05-22 11:49                                           ` Kalle Valo
2020-05-22 13:46                                             ` Rui Salvaterra
2020-05-22 18:02                                               ` Larry Finger
2020-05-22 20:04                                                 ` Rui Salvaterra
2020-05-22 20:40                                                 ` Rui Salvaterra
2020-05-22 21:06                                                   ` Larry Finger
2020-05-23  0:35                                                     ` Rui Salvaterra
2020-05-23 21:17                                                     ` Rafał Miłecki
2020-05-25  6:56                                                       ` Kalle Valo
2020-05-22 17:15                                             ` Larry Finger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).