Bug#1003907: fails to successfully associate

Hans-Peter Jansen hpj at urpla.net
Wed Feb 9 01:21:41 PST 2022


Dear Masashi,

thank you for taking time on this.

Unfortunately, we have logging of NM and WS separated. 

Both attached.

-- 
Best,
Pete
--
Life without chameleons is possible, but pointless.


Am Montag, 7. Februar 2022, 21:11:34 CET schrieb Masashi Honma:
> Hello, Hans-Peter Jansen.
> 
> According to your wpa_supplicant.log, your are using FRITZ!Box 7590.
> Is it true ?
> -----
> 1643725737.260915: wlan1: SME: Trying to authenticate with
> 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5180 MHz)
> -----
> If so, please send more verbose wpa_supplicant.log by trailing step.
> Because I suspect that it has the same bug as FRITZ!Box 7490.
> 
> 1) Edit /etc/systemd/system/multi-user.target.wants/wpa_supplicant.service
> to add -dddddddddd option like this.
> 
> ExecStart=/sbin/wpa_supplicant -u -s -dddddddddd -O /run/wpa_supplicant
> 
> 2) Reboot wpa_supplicant.
> $ sudo systemctl daemon-reload
> 
> 3) Enable NetworkManager logging
> $ sudo nmcli general logging level DEBUG domains ALL
> 
> 4) Get logs
> $ journalctl -u NetworkManager -b
> 
> Regards,
> Masashi Honma.
> 
> 2022年2月7日(月) 23:39 Hans-Peter Jansen <hpj at urpla.net>:
> > Hi,
> > 
> > based on the findings of Michael Biebl and Masashi Honma on this issue
> > that
> > where really helpful, thank you, and thanks to Andrej Shadura for
> > reporting, I would like to share my insights, since wpa_supplicant 2.10
> > hit our openSUSE Tumbleweed repositories, and I'm one of the people
> > affected by this.
> > 
> > In short this issue affects people with old wifi hardware trying to
> > connect
> > to AVM Fritzboxes, that use "WPA2 + WPA3" security (better known as WPA3
> > transition mode), resulting in:
> > 
> > wlp3s0: CTRL-EVENT-ASSOC-REJECT bssid=<mac> status_code=40
> > 
> > Switching the security mode to "WPA2 (CCMP)" in the Fritzbox makes it
> > work,
> > but this is NOT a desired solution of course, since it will degrade
> > security for all devices in that wifi network.
> > 
> > Mine is a "Intel Centrino Advanced-N 6205 [Taylor Peak]" from my ten years
> > old Lenovo X1 Carbon (Gen 1), and from our bug tracking, we saw "Intel
> > Centrino Advanced-N 6235" is affected as well. [1]
> > 
> > With  the change to 2.10, we got among others, full SAE (and PMF) support,
> > which in theory is required for proper WPA3 Personal support.
> > 
> > The whole story boils down to: in the unsupported case:
> > 
> > $ iw phy0 info | grep -A9 'Supported Ciphers'
> > 
> >         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)
> > 
> > while for a working config, it's:
> >         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)
> > 
> > For PMF, these are required:
> > 
> > * CMAC (00-0f-ac:6)
> > * GMAC-128 (00-0f-ac:11)
> > * GMAC-256 (00-0f-ac:12)
> > 
> > Some drivers contain them, the old Intel iwlwifi driver miss them
> > obviously. "Old" in the sense of the driver version, that is contained in
> > Linux kernel 5.16.6, using firmware 18.168.6.1 6000g2a-6.ucode.
> > 
> > I was able to built a properly working wpa_supplicant package by just
> > 
> > reverting one hunk [2]:
> > >From 7a9c36722511ce4df88b76cceceb241d6c6a151e Mon Sep 17 00:00:00 2001
> > 
> > From: Brian Norris <briannorris at chromium.org>
> > Date: Fri, 28 Feb 2020 15:50:47 -0800
> > Subject: [PATCH] DBus: Add "sae" to interface key_mgmt capabilities
> > 
> > This will be present when the driver supports SAE and it's included in
> > the wpa_supplicant build.
> > 
> > Signed-off-by: Brian Norris <briannorris at chromium.org>
> > ---
> > 
> >  doc/dbus.doxygen                        | 2 +-
> >  wpa_supplicant/dbus/dbus_new_handlers.c | 6 ------
> >  2 files changed, 1 insertion(+), 7 deletions(-)
> > 
> > diff --git b/wpa_supplicant/dbus/dbus_new_handlers.c
> > a/wpa_supplicant/dbus/dbus_new_handlers.c index c842c50e9..55c5dbc99
> > 100644
> > --- b/wpa_supplicant/dbus/dbus_new_handlers.c
> > +++ a/wpa_supplicant/dbus/dbus_new_handlers.c
> > @@ -2798,12 +2798,6 @@ dbus_bool_t wpas_dbus_getter_capabilities(
> > 
> >                         goto nomem;
> >  
> >  #endif /* CONFIG_WPS */
> > 
> > -#ifdef CONFIG_SAE
> > -               if ((capa.key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_SAE) &&
> > -                   !wpa_dbus_dict_string_array_add_element(&iter_array,
> > "sae")) -                       goto nomem;
> > -#endif /* CONFIG_SAE */
> > -
> > 
> >  #ifdef CONFIG_OWE
> >  
> >                 if ((capa.key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_OWE) &&
> >                 
> >                     !wpa_dbus_dict_string_array_add_element(&iter_array,
> >                     "owe"))
> > 
> > --
> > 2.34.1
> > 
> > 
> > In my humble opinion, wpa_supplicant should test for sufficient ciphers,
> > and not even try to connect with WPA3 otherwise, in order to cope with
> > drivers, that simply don't have the relevant features.
> > 
> > Meanwhile, one of my mates noted the issue in completely different
> > constellations [3].
> > 
> > Best,
> > Pete
> > --
> > Life without chameleons is possible, but pointless.
> > 
> > [1] https://bugzilla.opensuse.org/show_bug.cgi?id=1195395
> > [2]
> > https://build.opensuse.org/package/show/home:frispete:Tumbleweed/wpa_supp
> > licant [3] https://bugzilla.redhat.com/show_bug.cgi?id=2050840
> > 
> > 
> > 
> > 
> > _______________________________________________
> > Hostap mailing list
> > Hostap at lists.infradead.org
> > http://lists.infradead.org/mailman/listinfo/hostap
> 
> _______________________________________________
> Hostap mailing list
> Hostap at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/hostap

-------------- next part --------------
Feb 08 20:16:26 onkyo systemd[1]: Starting Network Manager...
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2263] monotonic timestamp started counting 1.860509438 seconds ago with an offset of 6.0 seconds to CLOCK_BOOT>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.2264] NetworkManager (version 1.32.12) is starting... (for the first time)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.2264] Read config: /etc/NetworkManager/NetworkManager.conf
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2264] CONFIG: config-data[0x556cd1eae870]: 3 groups
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2264] CONFIG: 
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2264] CONFIG: [main]
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2265] CONFIG:   plugins=keyfile
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2265] CONFIG:   dhcp=dhclient
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2265] CONFIG: 
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2265] CONFIG: [connectivity]
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2265] CONFIG:   uri=http://conncheck.opensuse.org
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2265] CONFIG: 
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2265] CONFIG: [logging]
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2265] CONFIG:   level=DEBUG
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2265] CONFIG: 
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2265] CONFIG: # no-auto-default file "/var/lib/NetworkManager/no-auto-default.state"
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2267] config: state: successfully read state file "/var/lib/NetworkManager/NetworkManager.state"
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2267] WEXT support is enabled
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2268] create NMDBusManager singleton (b8943bcbb33985d6)
Feb 08 20:16:26 onkyo systemd[1]: Started Network Manager.
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.2290] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2290] netns[0x556cd1ec5d20]: new netns (net:8, mnt:9)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2292] platform-linux: create (ignore netns, initial netns, use udev)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2293] platform-linux: Netlink socket for events established: port=1227, fd=12
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2293] platform-linux: populate platform cache
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2294] platform: kernel-support for USER_IPV6LL (IFLA_INET6_ADDR_GEN_MODE support) detected: supported
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2295] platform: (lo) signal: link   added: 1: lo <UP,LOWER_UP;loopback,up,running,lowerup> mtu 65536 arp 772 l>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2296] platform: (eth0) signal: link   added: 2: eth0 <DOWN;broadcast,multicast> mtu 1500 arp 1 ethernet? not-i>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2297] wifi-nl80211 (wlan1): don't know the meaning of NL80211_ATTR_CIPHER_SUITE 0x000fac0a.
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2298] wifi-nl80211 (wlan1): don't know the meaning of NL80211_ATTR_CIPHER_SUITE 0x000fac09.
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2298] wifi-nl80211 (wlan1): using nl80211 for Wi-Fi device control
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2298] platform: (wlan1) signal: link   added: 3: wlan1 <DOWN;broadcast,multicast> mtu 1500 arp 1 wifi? not-ini>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2298] platform: kernel-support for EXTENDED_IFA_FLAGS (IPv6 temporary addresses support) detected: supported
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2299] platform: (lo) signal: address 4   added: 127.0.0.1/8 brd 0.0.0.0 lft forever pref forever lifetime 1-0[>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2299] platform: (lo) signal: address 6   added: ::1/128 lft forever pref forever lifetime 1-0[4294967295,42949>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2299] platform: (lo) signal: route   4   added: type local table 255 127.0.0.0/8 via 0.0.0.0 dev 1 metric 0 ms>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2299] platform: (lo) signal: route   4   added: type local table 255 127.0.0.1/32 via 0.0.0.0 dev 1 metric 0 m>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2300] platform: kernel-support for RTA_PREF (ability to set router preference for IPv6 routes) detected: suppo>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2300] platform: (lo) signal: route   6   added: type unicast ::1/128 via :: dev 1 metric 256 mss 0 rt-src rt-k>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2300] platform: (lo) signal: route   6   added: type local table 255 ::1/128 via :: dev 1 metric 0 mss 0 rt-sr>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2300] platform: kernel-support for FRA_PROTOCOL (FRA_PROTOCOL attribute for policy routing rules) detected: su>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2300] platform: kernel-support for FRA_UID_RANGE (FRA_UID_RANGE attribute for policy routing rules) not detect>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2300] platform: kernel-support for FRA_L3MDEV (FRA_L3MDEV attribute for policy routing rules) not detected: as>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2300] platform: kernel-support for FRA_IP_PROTO (FRA_IP_PROTO, FRA_SPORT_RANGE, FRA_DPORT_RANGE attributes for>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2300] platform: signal: rt-rule   added: [4] 0: from all lookup 255 protocol 2
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2301] platform: signal: rt-rule   added: [4] 32766: from all lookup 254 protocol 2
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2301] platform: signal: rt-rule   added: [4] 32767: from all lookup 253 protocol 2
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2301] platform: signal: rt-rule   added: [6] 0: from all lookup 255 protocol 2
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2301] platform: signal: rt-rule   added: [6] 32766: from all lookup 254 protocol 2
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2301] platform: (lo) signal: qdisc   added: noqueue dev 1 family 0 handle 0 parent ffffffff info 2
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2308] platform: (eth0) signal: link changed: 2: eth0 <DOWN;broadcast,multicast> mtu 1500 arp 1 ethernet? init >
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2310] platform: (wlan1) signal: link changed: 3: wlan1 <DOWN;broadcast,multicast> mtu 1500 arp 1 wifi? init ad>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2312] platform: (lo) signal: link changed: 1: lo <UP,LOWER_UP;loopback,up,running,lowerup> mtu 65536 arp 772 l>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2312] setup NMPlatform singleton (593249b2a639df29)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2313] rules-manager: routing-rule: track [495f4741aeeea2be,0] "[4] 0: from all lookup 255 protocol 2")
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2313] rules-manager: routing-rule: track [495f4741aeeea2be,0] "[4] 32766: from all lookup 254 protocol 2")
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2313] rules-manager: routing-rule: track [495f4741aeeea2be,0] "[4] 32767: from all lookup 253 protocol 2")
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2314] rules-manager: routing-rule: track [495f4741aeeea2be,0] "[6] 0: from all lookup 255 protocol 2")
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2314] rules-manager: routing-rule: track [495f4741aeeea2be,0] "[6] 32766: from all lookup 254 protocol 2")
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2314] rules-manager: routing-rule: track [a4cc157bff0c2d37,0] "[4] 0: from all lookup 255 protocol 2")
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2314] rules-manager: routing-rule: track [a4cc157bff0c2d37,0] "[4] 32766: from all lookup 254 protocol 2")
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2314] rules-manager: routing-rule: track [a4cc157bff0c2d37,0] "[4] 32767: from all lookup 253 protocol 2")
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2314] rules-manager: routing-rule: track [a4cc157bff0c2d37,0] "[6] 0: from all lookup 255 protocol 2")
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2314] rules-manager: routing-rule: track [a4cc157bff0c2d37,0] "[6] 32766: from all lookup 254 protocol 2")
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2314] create NMNetns singleton (7316afb38dc0d324)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2316] auth[0x556cd1ec8120]: create auth-manager: polkit enabled
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2316] auth[0x556cd1ec8120]: set instance
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2316] setup NMAuthManager singleton (5d95751fce47ed57)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.2319] manager[0x556cd1ed8040]: monitoring kernel firmware directory '/lib/firmware'.
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2320] session-monitor: using systemd-logind session tracking
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2320] create NMSessionMonitor singleton (f2035809f3105b3e)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.2320] create NMAgentManager singleton (62cf8b8f81586e9d)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.3225] hostname: hostname: using hostnamed
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.3225] hostname: hostname changed from (none) to "onkyo"
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3225] create NMHostnameManager singleton (dbc307f57eb3272b)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3228] create NMFirewalldManager singleton (1ec33ee986c133a2)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.3230] dns-mgr[0x556cd1eb8220]: init: dns=default,systemd-resolved rc-manager=netconfig
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3231] create NMDnsManager singleton (9f17c80fbbb3465b)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3231] policy: hostname-mode: full
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.3239] rfkill0: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:1c.2/0000:04:00.0/ieee80211/ph>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3241] Wi-Fi rfkill switch rfkill0 state now 1/0
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.3241] manager[0x556cd1ed8040]: rfkill: Wi-Fi hardware radio set enabled
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.3241] manager[0x556cd1ed8040]: rfkill: WWAN hardware radio set enabled
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3242] setup NMManager singleton (0aeaeff621fc5ddc)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3260] create NMConnectivity singleton (5945f049400fa52c)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3261] Loaded device plugin: NM6LowpanDeviceFactory (internal)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3261] Loaded device plugin: NMBondDeviceFactory (internal)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3262] Loaded device plugin: NMBridgeDeviceFactory (internal)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3262] Loaded device plugin: NMDummyDeviceFactory (internal)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3262] Loaded device plugin: NMEthernetDeviceFactory (internal)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3262] Loaded device plugin: NMInfinibandDeviceFactory (internal)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3262] Loaded device plugin: NMIPTunnelDeviceFactory (internal)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3263] Loaded device plugin: NMMacsecDeviceFactory (internal)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3263] Loaded device plugin: NMMacvlanDeviceFactory (internal)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3263] Loaded device plugin: NMPppDeviceFactory (internal)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3263] Loaded device plugin: NMTunDeviceFactory (internal)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3263] Loaded device plugin: NMVethDeviceFactory (internal)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3264] Loaded device plugin: NMVlanDeviceFactory (internal)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3264] Loaded device plugin: NMVrfDeviceFactory (internal)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3264] Loaded device plugin: NMVxlanDeviceFactory (internal)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3264] Loaded device plugin: NMWireGuardDeviceFactory (internal)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3264] Loaded device plugin: NMWpanDeviceFactory (internal)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.3278] Loaded device plugin: NMAtmManager (/usr/lib64/NetworkManager/1.32.12/libnm-device-plugin-adsl.so)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.3329] Loaded device plugin: NMBluezManager (/usr/lib64/NetworkManager/1.32.12/libnm-device-plugin-bluetooth.so)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.3339] Loaded device plugin: NMOvsFactory (/usr/lib64/NetworkManager/1.32.12/libnm-device-plugin-ovs.so)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.3361] Loaded device plugin: NMTeamFactory (/usr/lib64/NetworkManager/1.32.12/libnm-device-plugin-team.so)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.3386] Loaded device plugin: NMWifiFactory (/usr/lib64/NetworkManager/1.32.12/libnm-device-plugin-wifi.so)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.3396] Loaded device plugin: NMWwanFactory (/usr/lib64/NetworkManager/1.32.12/libnm-device-plugin-wwan.so)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3399] create NMModemManager singleton (d2a706f13bedd768)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3400] create NMOvsdb singleton (aa9ea59293ab1549)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.3400] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.3401] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.3401] manager: Networking is enabled by state file
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3402] dispatcher: (1) dispatching action 'hostname'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3406] dhcp-init: enabled DHCP client 'dhclient'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3406] dhcp-init: enabled DHCP client 'internal'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3406] dhcp-init: enabled DHCP client 'systemd' (undocumented internal plugin)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3406] dhcp-init: enabled DHCP client 'nettools' (undocumented internal plugin)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.3407] dhcp-init: Using DHCP client 'dhclient'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3407] create NMDhcpManager singleton (764e1f29d38d1c08)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.3410] settings: Loaded settings plugin: keyfile (internal)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3422] ++ connection 'new connection' (0x556cd1f102f0/NMSimpleConnection/"802-11-wireless"): [/org/freedesktop/>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3422] ++ connection                [ 0x556cd1ee2480 ]
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3422] ++ connection.id             = 'wlan1'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3422] ++ connection.interface-name = 'wlan1'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3422] ++ connection.permissions    = []
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3423] ++ connection.timestamp      = 1643842900
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3423] ++ connection.type           = '802-11-wireless'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3423] ++ connection.uuid           = 'eada3809-386b-4335-a279-f27e866f67be'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3423] ++ connection.zone           = 'home'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3423] ++ 802-11-wireless           [ 0x556cd1eba6d0 ]
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3423] ++ 802-11-wireless.mac-address-blacklist = []
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3423] ++ 802-11-wireless.mode      = 'infrastructure'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3424] ++ 802-11-wireless.ssid      = ((GBytes*) 0x556cd1eedb20)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3424] ++ 802-11-wireless-security  [ 0x556cd1efb170 ]
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3424] ++ 802-11-wireless-security.auth-alg = 'open'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3424] ++ 802-11-wireless-security.key-mgmt = 'wpa-psk'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3424] ++ 802-11-wireless-security.psk = ****
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3424] ++ ipv4                      [ 0x556cd1eae9f0 ]
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3424] ++ ipv4.addresses            = ((GPtrArray*) 0x556cd1f043a0)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3424] ++ ipv4.dns                  = []
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3424] ++ ipv4.dns-search           = []
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3425] ++ ipv4.method               = 'auto'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3425] ++ ipv4.routes               = ((GPtrArray*) 0x556cd1f05440)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3425] ++ ipv4.routing-rules        = <unknown>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3425] ++ ipv6                      [ 0x556cd1eaeac0 ]
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3425] ++ ipv6.addresses            = ((GPtrArray*) 0x556cd1f05460)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3425] ++ ipv6.dns                  = []
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3425] ++ ipv6.dns-search           = []
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3425] ++ ipv6.method               = 'auto'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3426] ++ ipv6.routes               = ((GPtrArray*) 0x556cd1f054a0)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3426] ++ ipv6.routing-rules        = <unknown>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3429] device[87d599d307e24d2b] (lo): ifindex: set ifindex 1
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3429] device[87d599d307e24d2b] (lo): unmanaged: flags set to [platform-init,by-default=0x90/0x90/unmanaged/unr>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3430] device[87d599d307e24d2b] (lo): constructed (NMDeviceGeneric)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3430] device[87d599d307e24d2b] (lo): start setup of NMDeviceGeneric, kernel ifindex 1
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3431] device[87d599d307e24d2b] (lo): assume-state: set guess-assume=1, connection=(null)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3431] platform-linux: error reading net:/sys/class/net/lo/phys_port_id: error reading 4096 bytes from file des>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3432] platform-linux: sysctl: reading 'net:/sys/class/net/lo/dev_id': '0x0'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3432] platform-linux: error reading net:/sys/class/net/lo/device/sriov_numvfs: Failed to open file "device/sri>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3433] device[87d599d307e24d2b] (lo): hw-addr: hardware address now 00:00:00:00:00:00
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3433] device[87d599d307e24d2b] (lo): hw-addr: update initial MAC address 00:00:00:00:00:00
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3433] device[87d599d307e24d2b] (lo): hw-addr: unable to read permanent MAC address (use current: 00:00:00:00:0>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.3433] device (lo): carrier: link connected
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3433] device[87d599d307e24d2b] (lo): unmanaged: flags set to [platform-init,by-default,!external-down=0x90/0x4>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3434] device[87d599d307e24d2b] (lo): unmanaged: flags set to [by-type,platform-init,by-default,!external-down=>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3434] device[87d599d307e24d2b] (lo): unmanaged: flags set to [by-type,platform-init,by-default,!user-settings,>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3434] device[87d599d307e24d2b] (lo): unmanaged: flags set to [by-type,by-default,!platform-init,!user-settings>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3434] device[87d599d307e24d2b] (lo): unmanaged: flags set to [by-type,by-default,!sleeping,!platform-init,!use>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.3436] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/1)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3439] device[87d599d307e24d2b] (lo): assume-state: set guess-assume=0, connection=(null)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3439] device[61fd4c5eff770687] (eth0): ifindex: set ifindex 2
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3439] device[61fd4c5eff770687] (eth0): constructed (NMDeviceEthernet)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3440] device[61fd4c5eff770687] (eth0): start setup of NMDeviceEthernet, kernel ifindex 2
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3440] device[61fd4c5eff770687] (eth0): assume-state: set guess-assume=1, connection=(null)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3440] platform-linux: error reading net:/sys/class/net/eth0/phys_port_id: error reading 4096 bytes from file d>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3441] platform-linux: sysctl: reading 'net:/sys/class/net/eth0/dev_id': '0x0'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3441] platform-linux: error reading net:/sys/class/net/eth0/device/sriov_numvfs: Failed to open file "device/s>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3442] device[61fd4c5eff770687] (eth0): hw-addr: hardware address now 00:90:F5:D0:0C:08
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3442] device[61fd4c5eff770687] (eth0): hw-addr: update initial MAC address 00:90:F5:D0:0C:08
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3442] device[61fd4c5eff770687] (eth0): hw-addr: read permanent MAC address '00:90:F5:D0:0C:08'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3443] device[61fd4c5eff770687] (eth0): unmanaged: flags set to [platform-init,!by-type=0x10/0x18/unmanaged/unr>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3444] device[61fd4c5eff770687] (eth0): unmanaged: flags set to [platform-init,!by-type,!user-settings=0x10/0x5>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3444] device[61fd4c5eff770687] (eth0): unmanaged: flags set to [!by-type,!platform-init,!user-settings=0x0/0x5>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3444] device[61fd4c5eff770687] (eth0): unmanaged: flags set to [!sleeping,!by-type,!platform-init,!user-settin>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.3446] manager: (eth0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3449] /etc/machine-id: afa87cb7f0aa4b6aa23b55bdc502d10c
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3457] ++ connection 'new connection' (0x556cd1f10860/NMSimpleConnection/"802-3-ethernet"): [/org/freedesktop/N>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3458] ++ connection                [ 0x556cd1ee2780 ]
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3458] ++ connection.autoconnect-priority = -999
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3458] ++ connection.id             = 'Kabelgebundene Verbindung 1'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3458] ++ connection.interface-name = 'eth0'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3458] ++ connection.permissions    = []
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3458] ++ connection.timestamp      = 1644347786
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3458] ++ connection.type           = '802-3-ethernet'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3458] ++ connection.uuid           = '53be04dd-2d9f-38b4-8dbf-277320ba5e7e'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3459] ++ 802-3-ethernet            [ 0x556cd1f153b0 ]
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3459] ++ 802-3-ethernet.mac-address-blacklist = []
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3459] ++ 802-3-ethernet.s390-options = ((GHashTable*) 0x556cd1f2ad20)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3459] ++ ipv4                      [ 0x556cd1eaee00 ]
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3459] ++ ipv4.addresses            = ((GPtrArray*) 0x556cd1f2db00)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3459] ++ ipv4.dns                  = []
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3459] ++ ipv4.dns-search           = []
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3460] ++ ipv4.method               = 'auto'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3460] ++ ipv4.routes               = ((GPtrArray*) 0x556cd1f2da40)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3460] ++ ipv4.routing-rules        = <unknown>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3460] ++ ipv6                      [ 0x556cd1eaed30 ]
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3460] ++ ipv6.addresses            = ((GPtrArray*) 0x556cd1f2dac0)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3460] ++ ipv6.dns                  = []
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3460] ++ ipv6.dns-search           = []
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3460] ++ ipv6.method               = 'auto'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3460] ++ ipv6.routes               = ((GPtrArray*) 0x556cd1f2d880)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3460] ++ ipv6.routing-rules        = <unknown>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.3461] settings: (eth0): created default wired connection 'Kabelgebundene Verbindung 1'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3462] device[61fd4c5eff770687] (eth0): ip4-config: update (commit=0, new-config=049b4aa257bd1393, route-table->
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3463] device[61fd4c5eff770687] (eth0): ip4-config: set IP Config instance (/org/freedesktop/NetworkManager/IP4>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3464] dns-mgr: (device_ip_config_changed): queueing DNS updates (1)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3464] dns-mgr: (device_ip_config_changed): DNS configuration did not change
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3464] dns-mgr: (device_ip_config_changed): no DNS changes to commit (0)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3465] device[61fd4c5eff770687] (eth0): ip6-config: update (commit=0, new-config=a43c5747d3eb018c, route-table->
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3466] device[61fd4c5eff770687] (eth0): ip6-config: set IP Config instance (/org/freedesktop/NetworkManager/IP6>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3467] dns-mgr: (device_ip_config_changed): queueing DNS updates (1)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3467] dns-mgr: (device_ip_config_changed): DNS configuration did not change
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3467] dns-mgr: (device_ip_config_changed): no DNS changes to commit (0)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3467] device[61fd4c5eff770687] (eth0): assume-state: set guess-assume=0, connection=(null)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3467] manager: (eth0): assume: cannot generate connection: device has no existing configuration
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.3468] device (eth0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3468] device[61fd4c5eff770687] (eth0): add_pending_action (1): 'in-state-change'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3468] platform-linux: sysctl: reading '/proc/sys/net/ipv6/conf/eth0/accept_ra': '1'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3469] platform-linux: sysctl: reading '/proc/sys/net/ipv6/conf/eth0/forwarding': '0'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3469] platform-linux: sysctl: reading '/proc/sys/net/ipv6/conf/eth0/disable_ipv6': '0'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3469] platform-linux: sysctl: reading '/proc/sys/net/ipv6/conf/eth0/hop_limit': '64'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3470] platform-linux: sysctl: reading '/proc/sys/net/ipv6/conf/eth0/use_tempaddr': '1'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3470] device[61fd4c5eff770687] (eth0): will enable userland IPv6LL
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3470] platform-linux: link: change 2: user-ipv6ll: set IPv6 address generation mode to none
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3470] platform-linux: do-request-link: 2 
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3471] platform: (eth0) signal: link changed: 2: eth0 <DOWN;broadcast,multicast> mtu 1500 arp 1 ethernet? init >
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3471] device[61fd4c5eff770687] (eth0): queued link change for ifindex 2
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3471] platform-linux: do-change-link[2]: success changing link: success
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3472] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/eth0/disable_ipv6' to '1' (current value is '0')
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3472] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/eth0/disable_ipv6' to '0' (current value is '1')
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3472] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/eth0/accept_ra' to '0' (current value is '1')
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3473] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/eth0/use_tempaddr' to '0' (current value is '1')
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3473] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/eth0/forwarding' to '0' (current value is ident>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3473] device[61fd4c5eff770687] (eth0): bringing up device 2
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.3473] platform-linux: link: change 2: flags: set 0x1/0x1 ([up] / [up])
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5460] platform-linux: do-request-link: 2 
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5462] platform: (eth0) signal: link changed: 2: eth0 <UP;broadcast,multicast,up,running> mtu 1500 arp 1 ethern>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5462] platform: (eth0) signal: link changed: 2: eth0 <UP;broadcast,multicast,up> mtu 1500 arp 1 ethernet? init>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5463] platform-linux: do-change-link[2]: success changing link: success
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5465] device[61fd4c5eff770687] (eth0): add_pending_action (2): 'carrier-wait'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5465] device[61fd4c5eff770687] (eth0): preparing device
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5466] device[61fd4c5eff770687] (eth0): clearing queued IP4 config change
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5466] device[61fd4c5eff770687] (eth0): clearing queued IP6 config change
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5467] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/eth0/use_tempaddr' to '0' (current value is ide>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5467] rules-manager: sync
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5468] device[61fd4c5eff770687] (eth0): ip4-config: update (commit=1, new-config=2c5919f76698fedd, route-table->
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5468] device[61fd4c5eff770687] (eth0): ip4-config: clear IP Config instance (/org/freedesktop/NetworkManager/I>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5469] dns-mgr: (device_ip_config_changed): queueing DNS updates (1)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5469] dns-mgr: (device_ip_config_changed): DNS configuration did not change
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5469] dns-mgr: (device_ip_config_changed): no DNS changes to commit (0)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5470] device[61fd4c5eff770687] (eth0): ip6-config: update (commit=1, new-config=2c5919f76698fedd, route-table->
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5470] device[61fd4c5eff770687] (eth0): ip6-config: clear IP Config instance (/org/freedesktop/NetworkManager/I>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5471] dns-mgr: (device_ip_config_changed): queueing DNS updates (1)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5471] dns-mgr: (device_ip_config_changed): DNS configuration did not change
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5471] dns-mgr: (device_ip_config_changed): no DNS changes to commit (0)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5474] device[61fd4c5eff770687] (eth0): device not yet available for transition to DISCONNECTED
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5476] platform-linux: sysctl: reading '/proc/sys/net/ipv4/conf/eth0/rp_filter': '0'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5476] platform-linux: sysctl: reading '/proc/sys/net/ipv4/conf/all/rp_filter': '2'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5476] connectivity: (eth0,IPv4,1) skip connectivity check due to no carrier
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5477] connectivity: (eth0,IPv6,2) skip connectivity check due to no carrier
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5477] device[61fd4c5eff770687] (eth0): remove_pending_action (1): 'in-state-change'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5477] (wlan1) config: backend is (null) (iwd support enabled)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5478] device[cbbf058fd723ebb5] (wlan1): ifindex: set ifindex 3
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5478] device[cbbf058fd723ebb5] (wlan1): constructed (NMDeviceWifi)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.5478] device (wlan1): driver supports Access Point (AP) mode
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5479] create NMSupplicantManager singleton (af580c5f11843bb4)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5480] device[cbbf058fd723ebb5] (wlan1): start setup of NMDeviceWifi, kernel ifindex 3
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5480] device[cbbf058fd723ebb5] (wlan1): assume-state: set guess-assume=1, connection=(null)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5480] platform-linux: error reading net:/sys/class/net/wlan1/phys_port_id: error reading 4096 bytes from file >
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5481] platform-linux: sysctl: reading 'net:/sys/class/net/wlan1/dev_id': '0x0'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5481] platform-linux: error reading net:/sys/class/net/wlan1/device/sriov_numvfs: Failed to open file "device/>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5481] device[cbbf058fd723ebb5] (wlan1): hw-addr: hardware address now C4:85:08:14:A1:B8
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5481] device[cbbf058fd723ebb5] (wlan1): hw-addr: update initial MAC address C4:85:08:14:A1:B8
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5482] device[cbbf058fd723ebb5] (wlan1): hw-addr: read permanent MAC address 'C4:85:08:14:A1:B8'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5482] device[cbbf058fd723ebb5] (wlan1): unmanaged: flags set to [platform-init,!by-type=0x10/0x18/unmanaged/un>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5482] device[cbbf058fd723ebb5] (wlan1): unmanaged: flags set to [platform-init,!by-type,!user-settings=0x10/0x>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5482] device[cbbf058fd723ebb5] (wlan1): unmanaged: flags set to [!by-type,!platform-init,!user-settings=0x0/0x>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5482] manager: rfkill: Wi-Fi hw-enabled 1 sw-enabled 1
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5482] device[cbbf058fd723ebb5] (wlan1): device now enabled
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5482] device[cbbf058fd723ebb5] (wlan1): (enable): device blocked by UNMANAGED state
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5482] device[cbbf058fd723ebb5] (wlan1): unmanaged: flags set to [!sleeping,!by-type,!platform-init,!user-setti>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.5484] manager: (wlan1): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/3)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5487] device[cbbf058fd723ebb5] (wlan1): ip4-config: update (commit=0, new-config=1326ec28a29df01f, route-table>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5488] device[cbbf058fd723ebb5] (wlan1): ip4-config: set IP Config instance (/org/freedesktop/NetworkManager/IP>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5488] dns-mgr: (device_ip_config_changed): queueing DNS updates (1)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5489] dns-mgr: (device_ip_config_changed): DNS configuration did not change
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5489] dns-mgr: (device_ip_config_changed): no DNS changes to commit (0)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5489] device[cbbf058fd723ebb5] (wlan1): ip6-config: update (commit=0, new-config=7ad9ac3ad7b9370e, route-table>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5490] device[cbbf058fd723ebb5] (wlan1): ip6-config: set IP Config instance (/org/freedesktop/NetworkManager/IP>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5490] dns-mgr: (device_ip_config_changed): queueing DNS updates (1)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5491] dns-mgr: (device_ip_config_changed): DNS configuration did not change
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5491] dns-mgr: (device_ip_config_changed): no DNS changes to commit (0)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5491] device[cbbf058fd723ebb5] (wlan1): assume-state: set guess-assume=0, connection=(null)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5491] manager: (wlan1): assume: device cannot assume connection
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.5491] device (wlan1): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5491] device[cbbf058fd723ebb5] (wlan1): add_pending_action (1): 'in-state-change'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5491] platform-linux: sysctl: reading '/proc/sys/net/ipv6/conf/wlan1/accept_ra': '1'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5492] platform-linux: sysctl: reading '/proc/sys/net/ipv6/conf/wlan1/forwarding': '0'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5492] platform-linux: sysctl: reading '/proc/sys/net/ipv6/conf/wlan1/disable_ipv6': '0'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5492] platform-linux: sysctl: reading '/proc/sys/net/ipv6/conf/wlan1/hop_limit': '64'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5492] platform-linux: sysctl: reading '/proc/sys/net/ipv6/conf/wlan1/use_tempaddr': '1'
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5492] device[cbbf058fd723ebb5] (wlan1): will enable userland IPv6LL
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5492] platform-linux: link: change 3: user-ipv6ll: set IPv6 address generation mode to none
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5493] platform-linux: do-request-link: 3 
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5493] platform: (wlan1) signal: link changed: 3: wlan1 <DOWN;broadcast,multicast> mtu 1500 arp 1 wifi? init ad>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5494] device[cbbf058fd723ebb5] (wlan1): queued link change for ifindex 3
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5494] platform-linux: do-change-link[3]: success changing link: success
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5494] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/wlan1/disable_ipv6' to '1' (current value is '0>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5495] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/wlan1/disable_ipv6' to '0' (current value is '1>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5495] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/wlan1/accept_ra' to '0' (current value is '1')
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5495] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/wlan1/use_tempaddr' to '0' (current value is '1>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5496] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/wlan1/forwarding' to '0' (current value is iden>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5496] device[cbbf058fd723ebb5] (wlan1): bringing up device 3
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.5496] platform-linux: link: change 3: flags: set 0x1/0x1 ([up] / [up])
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.9464] platform-linux: do-request-link: 3 
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.9465] platform: (wlan1) signal: link changed: 3: wlan1 <UP;broadcast,multicast,up,running> mtu 1500 arp 1 wifi>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.9466] platform-linux: do-change-link[3]: success changing link: success
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.9466] device[cbbf058fd723ebb5] (wlan1): preparing device
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.9466] device[cbbf058fd723ebb5] (wlan1): clearing queued IP4 config change
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.9466] device[cbbf058fd723ebb5] (wlan1): clearing queued IP6 config change
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.9467] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/wlan1/use_tempaddr' to '0' (current value is id>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.9467] rules-manager: sync
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.9468] device[cbbf058fd723ebb5] (wlan1): taking down device 3
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.9468] platform-linux: link: change 3: flags: set 0x0/0x1 ([] / [up])
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.9589] platform-linux: do-request-link: 3 
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.9589] platform: (wlan1) signal: link changed: 3: wlan1 <DOWN;broadcast,multicast> mtu 1500 arp 1 wifi? init ad>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.9590] platform-linux: do-change-link[3]: success changing link: success
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.9591] platform: (wlan1) link: setting hardware address to 1A:7C:60:78:53:82
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.9591] platform-linux: do-request-link: 3 
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.9591] platform: (wlan1) signal: link changed: 3: wlan1 <DOWN;broadcast,multicast> mtu 1500 arp 1 wifi? init ad>
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.9591] platform-linux: do-change-link[3]: success changing link: success
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.9591] device[cbbf058fd723ebb5] (wlan1): hw-addr: hardware address now 1A:7C:60:78:53:82
Feb 08 20:16:26 onkyo NetworkManager[1227]: <info>  [1644347786.9593] device (wlan1): set-hw-addr: set MAC address to 1A:7C:60:78:53:82 (scanning)
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.9593] device[cbbf058fd723ebb5] (wlan1): bringing up device 3
Feb 08 20:16:26 onkyo NetworkManager[1227]: <debug> [1644347786.9593] platform-linux: link: change 3: flags: set 0x1/0x1 ([up] / [up])
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3556] platform-linux: do-request-link: 3 
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3557] platform: (wlan1) signal: link changed: 3: wlan1 <UP;broadcast,multicast,up,running> mtu 1500 arp 1 wifi>
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3558] platform-linux: do-change-link[3]: success changing link: success
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3558] device[cbbf058fd723ebb5] (wlan1): ip4-config: update (commit=1, new-config=2c5919f76698fedd, route-table>
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3558] device[cbbf058fd723ebb5] (wlan1): ip4-config: clear IP Config instance (/org/freedesktop/NetworkManager/>
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3559] dns-mgr: (device_ip_config_changed): queueing DNS updates (1)
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3559] dns-mgr: (device_ip_config_changed): DNS configuration did not change
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3559] dns-mgr: (device_ip_config_changed): no DNS changes to commit (0)
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3560] device[cbbf058fd723ebb5] (wlan1): ip6-config: update (commit=1, new-config=2c5919f76698fedd, route-table>
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3560] device[cbbf058fd723ebb5] (wlan1): ip6-config: clear IP Config instance (/org/freedesktop/NetworkManager/>
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3560] dns-mgr: (device_ip_config_changed): queueing DNS updates (1)
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3561] dns-mgr: (device_ip_config_changed): DNS configuration did not change
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3561] dns-mgr: (device_ip_config_changed): no DNS changes to commit (0)
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3564] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'waiting-for-supplicant'
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3564] device[cbbf058fd723ebb5] (wlan1): device not yet available for transition to DISCONNECTED
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3567] platform-linux: sysctl: reading '/proc/sys/net/ipv4/conf/wlan1/rp_filter': '0'
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3568] connectivity: (wlan1,IPv4,3) skip connectivity check due to no carrier
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3568] connectivity: (wlan1,IPv6,4) skip connectivity check due to no carrier
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3568] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'in-state-change'
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3613] create NMVpnManager singleton (2d7805bfa664fb18)
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3613] manager: creating virtual devices...
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3613] setting up local loopback
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3614] platform-linux: link: change 1: flags: set 0x1/0x1 ([up] / [up])
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3614] platform-linux: do-request-link: 1 
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3615] platform: (lo) signal: link changed: 1: lo <UP,LOWER_UP;loopback,up,running,lowerup> mtu 65536 arp 772 l>
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3615] device[87d599d307e24d2b] (lo): queued link change for ifindex 1
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3615] platform-linux: do-change-link[1]: success changing link: success
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3624] udev rfkill event: action 'add' device 'rfkill1'
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3626] Wi-Fi rfkill switch rfkill0 state now 1/0
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3630] dispatcher: (1) /etc/NetworkManager/dispatcher.d/20-chrony succeeded
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3630] dispatcher: (1) /usr/lib/NetworkManager/dispatcher.d/90-nm-cloud-setup.sh succeeded
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3630] dispatcher: (1) /etc/NetworkManager/dispatcher.d/99tlp-rdw-nm succeeded
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3630] dispatcher: (1) /etc/NetworkManager/dispatcher.d/autofs succeeded
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3630] dispatcher: (1) /etc/NetworkManager/dispatcher.d/nfs succeeded
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3631] supplicant: wpa_supplicant name owner (null) (not running)
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3631] supplicant: supplicant is now maybe available
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3633] sleep-monitor-sd: inhibit: taking sleep inhibitor...
Feb 08 20:16:27 onkyo NetworkManager[1227]: <info>  [1644347787.3635] ovsdb: Verbindung ist gescheitert: Datei oder Verzeichnis nicht gefunden
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3635] ovsdb: disconnecting from ovsdb, retry 0
Feb 08 20:16:27 onkyo NetworkManager[1227]: <info>  [1644347787.3635] ovsdb: disconnected from ovsdb
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3635] ovsdb: disconnecting from ovsdb, retry 0
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3636] device[87d599d307e24d2b] (lo): ip4-config: update (commit=0, new-config=9208aa9ee0e15bc5, route-table-sy>
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3639] device[87d599d307e24d2b] (lo): ip4-config: set IP Config instance (/org/freedesktop/NetworkManager/IP4Co>
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3640] dns-mgr: (device_ip_config_changed): queueing DNS updates (1)
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3640] dns-mgr: (device_ip_config_changed): DNS configuration did not change
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3640] dns-mgr: (device_ip_config_changed): no DNS changes to commit (0)
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3641] device[87d599d307e24d2b] (lo): ip6-config: update (commit=0, new-config=7ad9ac3ad7b9370e, route-table-sy>
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3643] device[87d599d307e24d2b] (lo): ip6-config: set IP Config instance (/org/freedesktop/NetworkManager/IP6Co>
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3643] dns-mgr: (device_ip_config_changed): queueing DNS updates (1)
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3644] dns-mgr: (device_ip_config_changed): DNS configuration did not change
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3644] dns-mgr: (device_ip_config_changed): no DNS changes to commit (0)
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3644] manager: (eth0): assume: cannot generate connection: device has no existing configuration
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3645] connectivity: (eth0,IPv4,1) check completed: NONE; no carrier
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3645] device[61fd4c5eff770687] (eth0): connectivity state changed from UNKNOWN to NONE
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3646] manager: connectivity checking indicates NONE
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3646] dispatcher: (2) dispatching action 'connectivity-change'
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3648] connectivity: (eth0,IPv6,2) check completed: NONE; no carrier
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3648] device[61fd4c5eff770687] (eth0): connectivity state changed from UNKNOWN to NONE
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3649] connectivity: (wlan1,IPv4,3) check completed: NONE; no carrier
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3649] device[cbbf058fd723ebb5] (wlan1): connectivity state changed from UNKNOWN to NONE
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3650] connectivity: (wlan1,IPv6,4) check completed: NONE; no carrier
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3650] device[cbbf058fd723ebb5] (wlan1): connectivity state changed from UNKNOWN to NONE
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3668] sleep-monitor-sd: inhibit: inhibitor fd is 18
Feb 08 20:16:27 onkyo NetworkManager[1227]: <info>  [1644347787.3669] modem-manager: ModemManager available
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3669] manager: (lo): assume: don't assume because not managed
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.3670] manager: startup complete is waiting for device 'eth0' (carrier-wait)
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.4078] dispatcher: (2) /etc/NetworkManager/dispatcher.d/20-chrony succeeded
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.4078] dispatcher: (2) /usr/lib/NetworkManager/dispatcher.d/90-nm-cloud-setup.sh succeeded
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.4078] dispatcher: (2) /etc/NetworkManager/dispatcher.d/99tlp-rdw-nm succeeded
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.4079] dispatcher: (2) /etc/NetworkManager/dispatcher.d/autofs succeeded
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.4079] dispatcher: (2) /etc/NetworkManager/dispatcher.d/nfs succeeded
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.4348] supplicant: wpa_supplicant name owner ":1.23" disappeared (running)
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.4350] supplicant: supplicant is now available
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.4356] supplicant: supported features: AP+ PMF+ FILS- P2P+ FT- SHA384+ MESH- FAST+ WFD+
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.4374] platform: (wlan1) signal: link changed: 3: wlan1 <UP;broadcast,multicast,up> mtu 1500 arp 1 wifi? init a>
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.4374] device[cbbf058fd723ebb5] (wlan1): queued link change for ifindex 3
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5077] sup-iface[180f51fa4fa3c2ee,1,???]: new supplicant interface /fi/w1/wpa_supplicant1/Interfaces/1 on :1.23
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5094] sup-iface[180f51fa4fa3c2ee,1,???]: supports 16 scan SSIDs (scan: +active +ssid)
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5097] sup-iface[180f51fa4fa3c2ee,1,wlan1]: supplicant interface for ifindex=3, ifname="wlan1", driver="nl80211>
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5098] sup-iface[180f51fa4fa3c2ee,1,wlan1]: interface supported features: AP? FT+ SAE+
Feb 08 20:16:27 onkyo NetworkManager[1227]: <info>  [1644347787.5098] device (wlan1): supplicant interface state: internal-starting -> disconnected
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5098] device[cbbf058fd723ebb5] (wlan1): supplicant ready
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5098] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'recheck-available'
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5098] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'waiting-for-supplicant'
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5098] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'queued-state-change-disconnected'
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5099] device[cbbf058fd723ebb5] (wlan1): queue-state[disconnected, reason:supplicant-available, id:92]: queue s>
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5099] device[cbbf058fd723ebb5] (wlan1): is available, will transition to disconnected
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5099] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'recheck-available'
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5099] device[cbbf058fd723ebb5] (wlan1): queue-state[disconnected, reason:supplicant-available, id:92]: change >
Feb 08 20:16:27 onkyo NetworkManager[1227]: <info>  [1644347787.5099] device (wlan1): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-stat>
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5099] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'in-state-change'
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5100] device[cbbf058fd723ebb5] (wlan1): will enable userland IPv6LL
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5100] platform-linux: link: change 3: user-ipv6ll: set IPv6 address generation mode to none
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5100] platform-linux: do-request-link: 3 
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5101] platform-linux: do-change-link[3]: success changing link: success
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5102] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/wlan1/disable_ipv6' to '1' (current value is '0>
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5103] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/wlan1/disable_ipv6' to '0' (current value is '1>
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5103] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/wlan1/accept_ra' to '0' (current value is ident>
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5103] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/wlan1/use_tempaddr' to '0' (current value is id>
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5104] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/wlan1/forwarding' to '0' (current value is iden>
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5106] device[cbbf058fd723ebb5] (wlan1): wifi-scan: start periodic scan (0 SSIDs to probe scan)
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5107] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: scanning (notify last-scan)
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5107] device[cbbf058fd723ebb5] (wlan1): add_pending_action (3): 'wifi-scan'
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5107] connectivity: (wlan1,IPv4,5) skip connectivity check due to no carrier
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5107] connectivity: (wlan1,IPv6,6) skip connectivity check due to no carrier
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5108] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (2): 'in-state-change'
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5108] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'queued-state-change-disconnected'
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5108] connectivity: (wlan1,IPv4,5) check completed: NONE; no carrier
Feb 08 20:16:27 onkyo NetworkManager[1227]: <debug> [1644347787.5108] connectivity: (wlan1,IPv6,6) check completed: NONE; no carrier
Feb 08 20:16:28 onkyo NetworkManager[1227]: <debug> [1644347788.5474] connectivity: (eth0,IPv6,7) skip connectivity check due to no carrier
Feb 08 20:16:28 onkyo NetworkManager[1227]: <debug> [1644347788.5474] connectivity: (eth0,IPv6,7) check completed: NONE; no carrier
Feb 08 20:16:28 onkyo NetworkManager[1227]: <debug> [1644347788.5485] connectivity: (eth0,IPv4,8) skip connectivity check due to no carrier
Feb 08 20:16:28 onkyo NetworkManager[1227]: <debug> [1644347788.5486] connectivity: (eth0,IPv4,8) check completed: NONE; no carrier
Feb 08 20:16:29 onkyo NetworkManager[1227]: <debug> [1644347789.5107] connectivity: (wlan1,IPv4,9) skip connectivity check due to no carrier
Feb 08 20:16:29 onkyo NetworkManager[1227]: <debug> [1644347789.5107] connectivity: (wlan1,IPv6,10) skip connectivity check due to no carrier
Feb 08 20:16:29 onkyo NetworkManager[1227]: <debug> [1644347789.5108] connectivity: (wlan1,IPv4,9) check completed: NONE; no carrier
Feb 08 20:16:29 onkyo NetworkManager[1227]: <debug> [1644347789.5108] connectivity: (wlan1,IPv6,10) check completed: NONE; no carrier
Feb 08 20:16:29 onkyo NetworkManager[1227]: <debug> [1644347789.5373] agent-manager: agent[75ffa9801bf5833c,:1.22/org.gnome.Shell.NetworkAgent/461]: requesting permissions
Feb 08 20:16:29 onkyo NetworkManager[1227]: <info>  [1644347789.5683] agent-manager: agent[75ffa9801bf5833c,:1.22/org.gnome.Shell.NetworkAgent/461]: agent registered
Feb 08 20:16:29 onkyo NetworkManager[1227]: <debug> [1644347789.5683] policy: re-enabling autoconnect for all connections (only clear no-secrets flag)
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6332] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: idle (notify last-scan)
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6335] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'autoactivate'
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6335] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'wifi-scan'
Feb 08 20:16:30 onkyo NetworkManager[1227]: <info>  [1644347790.6336] policy: auto-activating connection 'wlan1' (eada3809-386b-4335-a279-f27e866f67be)
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6340] active-connection[0x556cd1ee5300]: set device "wlan1" [0x556cd1f33e80]
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6340] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'activation-1'
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6346] active-connection[0x556cd1ee5300]: constructed (NMActRequest, version-id 1, type managed)
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6347] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'autoactivate'
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6348] device[cbbf058fd723ebb5] (wlan1): unmanaged: flags set to [!sleeping,!by-type,!platform-init,!user-expli>
Feb 08 20:16:30 onkyo NetworkManager[1227]: <info>  [1644347790.6355] device (wlan1): Activation: starting connection 'wlan1' (eada3809-386b-4335-a279-f27e866f67be)
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6356] device[cbbf058fd723ebb5] (wlan1): activation-stage: schedule activate_stage1_device_prepare,v4 (id 202)
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6356] device[cbbf058fd723ebb5] (wlan1): activation-stage: invoke activate_stage1_device_prepare,v4 (id 202)
Feb 08 20:16:30 onkyo NetworkManager[1227]: <info>  [1644347790.6358] device (wlan1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6359] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'in-state-change'
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6365] active-connection[0x556cd1ee5300]: set state activating (was unknown)
Feb 08 20:16:30 onkyo NetworkManager[1227]: <info>  [1644347790.6368] manager: NetworkManager state is now CONNECTING
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6371] active-connection[0x556cd1ee5300]: check-master-ready: not signalling (state activating, no master)
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6372] manager: ActivatingConnection now wlan1
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6374] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'in-state-change'
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6376] device[cbbf058fd723ebb5] (wlan1): taking down device 3
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6376] platform-linux: link: change 3: flags: set 0x0/0x1 ([] / [up])
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6509] platform-linux: do-request-link: 3 
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6511] platform: (wlan1) signal: link changed: 3: wlan1 <DOWN;broadcast,multicast> mtu 1500 arp 1 wifi? init ad>
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6512] device[cbbf058fd723ebb5] (wlan1): queued link change for ifindex 3
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6515] platform-linux: do-change-link[3]: success changing link: success
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6515] platform: (wlan1) link: setting hardware address to C4:85:08:14:A1:B8
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6516] platform-linux: do-request-link: 3 
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6517] platform: (wlan1) signal: link changed: 3: wlan1 <DOWN;broadcast,multicast> mtu 1500 arp 1 wifi? init ad>
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6518] platform-linux: do-change-link[3]: success changing link: success
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6518] device[cbbf058fd723ebb5] (wlan1): hw-addr: hardware address now C4:85:08:14:A1:B8
Feb 08 20:16:30 onkyo NetworkManager[1227]: <info>  [1644347790.6521] device (wlan1): set-hw-addr: reset MAC address to C4:85:08:14:A1:B8 (preserve)
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6522] device[cbbf058fd723ebb5] (wlan1): bringing up device 3
Feb 08 20:16:30 onkyo NetworkManager[1227]: <debug> [1644347790.6522] platform-linux: link: change 3: flags: set 0x1/0x1 ([up] / [up])
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0648] platform-linux: do-request-link: 3 
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0650] platform: (wlan1) signal: link changed: 3: wlan1 <UP;broadcast,multicast,up> mtu 1500 arp 1 wifi? init a>
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0652] platform-linux: do-change-link[3]: success changing link: success
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0654] device[cbbf058fd723ebb5] (wlan1): activation-stage: synchronously invoke activate_stage2_device_config,v4
Feb 08 20:16:31 onkyo NetworkManager[1227]: <info>  [1644347791.0655] device (wlan1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0655] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'in-state-change'
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0659] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'in-state-change'
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0661] rules-manager: sync
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0662] device[cbbf058fd723ebb5] (wlan1): bringing up device 3
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0662] platform-linux: link: change 3: flags: set 0x1/0x1 ([up] / [up])
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0662] platform-linux: do-request-link: 3 
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0663] platform-linux: do-change-link[3]: success changing link: success
Feb 08 20:16:31 onkyo NetworkManager[1227]: <info>  [1644347791.0663] device (wlan1): Activation: (wifi) access point 'wlan1' has security, but secrets are required.
Feb 08 20:16:31 onkyo NetworkManager[1227]: <info>  [1644347791.0664] device (wlan1): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0664] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'in-state-change'
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0669] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'in-state-change'
Feb 08 20:16:31 onkyo NetworkManager[1227]: <info>  [1644347791.0669] sup-iface[180f51fa4fa3c2ee,1,wlan1]: wps: type pbc start...
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0677] Secrets requested for connection /org/freedesktop/NetworkManager/Settings/1 (wlan1/802-11-wireless-secur>
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0678] agent-manager: agent[75ffa9801bf5833c,:1.22/org.gnome.Shell.NetworkAgent/461]: agent allowed for secrets>
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0678] settings-connection[42e5f8fede27902a,eada3809-386b-4335-a279-f27e866f67be]: (802-11-wireless-security:0x>
Feb 08 20:16:31 onkyo NetworkManager[1227]: <info>  [1644347791.0680] device (wlan1): supplicant interface state: disconnected -> interface_disabled
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0687] agent-manager: ([4b4e1589dc69a2b7/"wlan1"/"802-11-wireless-security"]) system settings secrets sufficient
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0691] settings-connection[42e5f8fede27902a,eada3809-386b-4335-a279-f27e866f67be]: (802-11-wireless-security:0x>
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0692] settings-connection[42e5f8fede27902a,eada3809-386b-4335-a279-f27e866f67be]: (802-11-wireless-security:0x>
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0697] settings-connection[42e5f8fede27902a,eada3809-386b-4335-a279-f27e866f67be]: (802-11-wireless-security:0x>
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0705] device[cbbf058fd723ebb5] (wlan1): activation-stage: schedule activate_stage1_device_prepare,v4 (id 211)
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0707] device[cbbf058fd723ebb5] (wlan1): activation-stage: invoke activate_stage1_device_prepare,v4 (id 211)
Feb 08 20:16:31 onkyo NetworkManager[1227]: <info>  [1644347791.0707] device (wlan1): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0708] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'in-state-change'
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0714] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'in-state-change'
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0717] device[cbbf058fd723ebb5] (wlan1): activation-stage: synchronously invoke activate_stage2_device_config,v4
Feb 08 20:16:31 onkyo NetworkManager[1227]: <info>  [1644347791.0717] device (wlan1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0717] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'in-state-change'
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0722] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'in-state-change'
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0722] rules-manager: sync
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0723] device[cbbf058fd723ebb5] (wlan1): bringing up device 3
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0723] platform-linux: link: change 3: flags: set 0x1/0x1 ([up] / [up])
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0724] platform-linux: do-request-link: 3 
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0725] platform-linux: do-change-link[3]: success changing link: success
Feb 08 20:16:31 onkyo NetworkManager[1227]: <info>  [1644347791.0726] device (wlan1): Activation: (wifi) connection 'wlan1' has security, and secrets exist.  No new secrets n>
Feb 08 20:16:31 onkyo NetworkManager[1227]: <info>  [1644347791.0727] Config: added 'ssid' value 'FRITZ!Box 7590 TC'
Feb 08 20:16:31 onkyo NetworkManager[1227]: <info>  [1644347791.0727] Config: added 'scan_ssid' value '1'
Feb 08 20:16:31 onkyo NetworkManager[1227]: <info>  [1644347791.0728] Config: added 'bgscan' value 'simple:30:-70:86400'
Feb 08 20:16:31 onkyo NetworkManager[1227]: <info>  [1644347791.0728] Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 SAE'
Feb 08 20:16:31 onkyo NetworkManager[1227]: <info>  [1644347791.0729] Config: added 'auth_alg' value 'OPEN'
Feb 08 20:16:31 onkyo NetworkManager[1227]: <info>  [1644347791.0729] Config: added 'psk' value '<hidden>'
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0731] sup-iface[180f51fa4fa3c2ee,1,wlan1]: assoc[60f1f134e5d9b210]: starting association...
Feb 08 20:16:31 onkyo NetworkManager[1227]: <info>  [1644347791.0908] device (wlan1): supplicant interface state: interface_disabled -> inactive
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.0910] sup-iface[180f51fa4fa3c2ee,1,wlan1]: set bridge (null) result: success
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.1049] sup-iface[180f51fa4fa3c2ee,1,wlan1]: assoc[60f1f134e5d9b210]: association request successful
Feb 08 20:16:31 onkyo NetworkManager[1227]: <info>  [1644347791.1213] device (wlan1): supplicant interface state: inactive -> authenticating
Feb 08 20:16:31 onkyo NetworkManager[1227]: <info>  [1644347791.6088] device (wlan1): supplicant interface state: authenticating -> associating
Feb 08 20:16:31 onkyo NetworkManager[1227]: <info>  [1644347791.6434] device (wlan1): supplicant interface state: associating -> disconnected
Feb 08 20:16:31 onkyo NetworkManager[1227]: <info>  [1644347791.7437] device (wlan1): supplicant interface state: disconnected -> scanning
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.7438] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: scanning
Feb 08 20:16:31 onkyo NetworkManager[1227]: <debug> [1644347791.8423] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: idle (notify last-scan)
Feb 08 20:16:31 onkyo NetworkManager[1227]: <info>  [1644347791.8536] device (wlan1): supplicant interface state: scanning -> authenticating
Feb 08 20:16:32 onkyo NetworkManager[1227]: <info>  [1644347792.2488] device (wlan1): supplicant interface state: authenticating -> associating
Feb 08 20:16:32 onkyo NetworkManager[1227]: <info>  [1644347792.2976] device (wlan1): supplicant interface state: associating -> disconnected
Feb 08 20:16:32 onkyo NetworkManager[1227]: <debug> [1644347792.5471] device[61fd4c5eff770687] (eth0): remove_pending_action (0): 'carrier-wait'
Feb 08 20:16:32 onkyo NetworkManager[1227]: <debug> [1644347792.5472] manager: startup complete is waiting for device 'wlan1' (activation-1)
Feb 08 20:16:32 onkyo NetworkManager[1227]: <debug> [1644347792.5473] connectivity: (eth0,IPv4,11) skip connectivity check due to no carrier
Feb 08 20:16:32 onkyo NetworkManager[1227]: <debug> [1644347792.5474] connectivity: (eth0,IPv4,11) check completed: NONE; no carrier
Feb 08 20:16:32 onkyo NetworkManager[1227]: <debug> [1644347792.5486] connectivity: (eth0,IPv6,12) skip connectivity check due to no carrier
Feb 08 20:16:32 onkyo NetworkManager[1227]: <debug> [1644347792.5487] connectivity: (eth0,IPv6,12) check completed: NONE; no carrier
Feb 08 20:16:32 onkyo NetworkManager[1227]: <info>  [1644347792.7982] device (wlan1): supplicant interface state: disconnected -> scanning
Feb 08 20:16:32 onkyo NetworkManager[1227]: <debug> [1644347792.7983] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: scanning
Feb 08 20:16:32 onkyo NetworkManager[1227]: <debug> [1644347792.8770] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: idle (notify last-scan)
Feb 08 20:16:32 onkyo NetworkManager[1227]: <info>  [1644347792.8934] device (wlan1): supplicant interface state: scanning -> authenticating
Feb 08 20:16:33 onkyo NetworkManager[1227]: <info>  [1644347793.3463] device (wlan1): supplicant interface state: authenticating -> associating
Feb 08 20:16:33 onkyo NetworkManager[1227]: <info>  [1644347793.3848] device (wlan1): supplicant interface state: associating -> disconnected
Feb 08 20:16:33 onkyo NetworkManager[1227]: <debug> [1644347793.5102] connectivity: (wlan1,IPv4,13) skip connectivity check due to no carrier
Feb 08 20:16:33 onkyo NetworkManager[1227]: <debug> [1644347793.5103] connectivity: (wlan1,IPv6,14) skip connectivity check due to no carrier
Feb 08 20:16:33 onkyo NetworkManager[1227]: <debug> [1644347793.5103] connectivity: (wlan1,IPv4,13) check completed: NONE; no carrier
Feb 08 20:16:33 onkyo NetworkManager[1227]: <debug> [1644347793.5104] connectivity: (wlan1,IPv6,14) check completed: NONE; no carrier
Feb 08 20:16:34 onkyo NetworkManager[1227]: <info>  [1644347794.3864] device (wlan1): supplicant interface state: disconnected -> scanning
Feb 08 20:16:34 onkyo NetworkManager[1227]: <debug> [1644347794.3865] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: scanning
Feb 08 20:16:34 onkyo NetworkManager[1227]: <debug> [1644347794.5070] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: idle (notify last-scan)
Feb 08 20:16:34 onkyo NetworkManager[1227]: <info>  [1644347794.5241] device (wlan1): supplicant interface state: scanning -> authenticating
Feb 08 20:16:35 onkyo NetworkManager[1227]: <info>  [1644347795.1992] device (wlan1): supplicant interface state: authenticating -> associating
Feb 08 20:16:35 onkyo NetworkManager[1227]: <info>  [1644347795.2456] device (wlan1): supplicant interface state: associating -> disconnected
Feb 08 20:16:38 onkyo NetworkManager[1227]: <debug> [1644347798.0952] agent-manager: agent[c961f53bf9e2e46d,:1.52/org.gnome.Shell.NetworkAgent/1000]: requesting permissions
Feb 08 20:16:38 onkyo NetworkManager[1227]: <info>  [1644347798.1940] agent-manager: agent[c961f53bf9e2e46d,:1.52/org.gnome.Shell.NetworkAgent/1000]: agent registered
Feb 08 20:16:38 onkyo NetworkManager[1227]: <debug> [1644347798.1941] policy: re-enabling autoconnect for all connections (only clear no-secrets flag)
Feb 08 20:16:39 onkyo NetworkManager[1227]: <debug> [1644347799.6179] agent-manager: agent[75ffa9801bf5833c,:1.22/org.gnome.Shell.NetworkAgent/461]: agent unregistered or dis>
Feb 08 20:16:40 onkyo NetworkManager[1227]: <info>  [1644347800.2464] device (wlan1): supplicant interface state: disconnected -> scanning
Feb 08 20:16:40 onkyo NetworkManager[1227]: <debug> [1644347800.2464] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: scanning
Feb 08 20:16:40 onkyo NetworkManager[1227]: <debug> [1644347800.5478] connectivity: (eth0,IPv4,15) skip connectivity check due to no carrier
Feb 08 20:16:40 onkyo NetworkManager[1227]: <debug> [1644347800.5479] connectivity: (eth0,IPv6,16) skip connectivity check due to no carrier
Feb 08 20:16:40 onkyo NetworkManager[1227]: <debug> [1644347800.5479] connectivity: (eth0,IPv4,15) check completed: NONE; no carrier
Feb 08 20:16:40 onkyo NetworkManager[1227]: <debug> [1644347800.5479] connectivity: (eth0,IPv6,16) check completed: NONE; no carrier
Feb 08 20:16:41 onkyo NetworkManager[1227]: <debug> [1644347801.5120] connectivity: (wlan1,IPv4,17) skip connectivity check due to no carrier
Feb 08 20:16:41 onkyo NetworkManager[1227]: <debug> [1644347801.5122] connectivity: (wlan1,IPv6,18) skip connectivity check due to no carrier
Feb 08 20:16:41 onkyo NetworkManager[1227]: <debug> [1644347801.5122] connectivity: (wlan1,IPv4,17) check completed: NONE; no carrier
Feb 08 20:16:41 onkyo NetworkManager[1227]: <debug> [1644347801.5123] connectivity: (wlan1,IPv6,18) check completed: NONE; no carrier
Feb 08 20:16:43 onkyo NetworkManager[1227]: <debug> [1644347803.5416] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: idle (notify last-scan)
Feb 08 20:16:44 onkyo NetworkManager[1227]: <info>  [1644347804.5451] device (wlan1): supplicant interface state: scanning -> authenticating
Feb 08 20:16:44 onkyo NetworkManager[1227]: <info>  [1644347804.6149] device (wlan1): supplicant interface state: authenticating -> associating
Feb 08 20:16:44 onkyo NetworkManager[1227]: <info>  [1644347804.6709] device (wlan1): supplicant interface state: associating -> authenticating
Feb 08 20:16:45 onkyo NetworkManager[1227]: <info>  [1644347805.1096] device (wlan1): supplicant interface state: authenticating -> associating
Feb 08 20:16:45 onkyo NetworkManager[1227]: <info>  [1644347805.1435] device (wlan1): supplicant interface state: associating -> disconnected
Feb 08 20:16:55 onkyo NetworkManager[1227]: <info>  [1644347815.1441] device (wlan1): supplicant interface state: disconnected -> scanning
Feb 08 20:16:55 onkyo NetworkManager[1227]: <debug> [1644347815.1441] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: scanning
Feb 08 20:16:56 onkyo NetworkManager[1227]: <warn>  [1644347816.3680] device (wlan1): Activation: (wifi) association took too long
Feb 08 20:16:56 onkyo NetworkManager[1227]: <info>  [1644347816.3681] device (wlan1): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3681] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'in-state-change'
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3684] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'in-state-change'
Feb 08 20:16:56 onkyo NetworkManager[1227]: <info>  [1644347816.3685] sup-iface[180f51fa4fa3c2ee,1,wlan1]: wps: type pbc start...
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3687] Secrets requested for connection /org/freedesktop/NetworkManager/Settings/1 (wlan1/802-11-wireless-secur>
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3687] agent-manager: agent[c961f53bf9e2e46d,:1.52/org.gnome.Shell.NetworkAgent/1000]: agent allowed for secret>
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3687] settings-connection[42e5f8fede27902a,eada3809-386b-4335-a279-f27e866f67be]: (802-11-wireless-security:0x>
Feb 08 20:16:56 onkyo NetworkManager[1227]: <warn>  [1644347816.3687] device (wlan1): Activation: (wifi) asking for new secrets
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3690] agent-manager: ([e9106e3cec1b3896/"wlan1"/"802-11-wireless-security"]) system settings secrets sufficient
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3691] settings-connection[42e5f8fede27902a,eada3809-386b-4335-a279-f27e866f67be]: (802-11-wireless-security:0x>
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3691] settings-connection[42e5f8fede27902a,eada3809-386b-4335-a279-f27e866f67be]: (802-11-wireless-security:0x>
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3694] settings-connection[42e5f8fede27902a,eada3809-386b-4335-a279-f27e866f67be]: (802-11-wireless-security:0x>
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3699] device[cbbf058fd723ebb5] (wlan1): activation-stage: schedule activate_stage1_device_prepare,v4 (id 514)
Feb 08 20:16:56 onkyo NetworkManager[1227]: <info>  [1644347816.3701] device (wlan1): supplicant interface state: scanning -> disconnected
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3702] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: idle (notify last-scan)
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3704] device[cbbf058fd723ebb5] (wlan1): activation-stage: invoke activate_stage1_device_prepare,v4 (id 514)
Feb 08 20:16:56 onkyo NetworkManager[1227]: <info>  [1644347816.3704] device (wlan1): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3705] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'in-state-change'
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3707] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'in-state-change'
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3708] device[cbbf058fd723ebb5] (wlan1): activation-stage: synchronously invoke activate_stage2_device_config,v4
Feb 08 20:16:56 onkyo NetworkManager[1227]: <info>  [1644347816.3708] device (wlan1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3708] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'in-state-change'
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3710] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'in-state-change'
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3710] rules-manager: sync
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3710] device[cbbf058fd723ebb5] (wlan1): bringing up device 3
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3710] platform-linux: link: change 3: flags: set 0x1/0x1 ([up] / [up])
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3711] platform-linux: do-request-link: 3 
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3711] platform-linux: do-change-link[3]: success changing link: success
Feb 08 20:16:56 onkyo NetworkManager[1227]: <info>  [1644347816.3712] device (wlan1): Activation: (wifi) connection 'wlan1' has security, and secrets exist.  No new secrets n>
Feb 08 20:16:56 onkyo NetworkManager[1227]: <info>  [1644347816.3712] Config: added 'ssid' value 'FRITZ!Box 7590 TC'
Feb 08 20:16:56 onkyo NetworkManager[1227]: <info>  [1644347816.3712] Config: added 'scan_ssid' value '1'
Feb 08 20:16:56 onkyo NetworkManager[1227]: <info>  [1644347816.3712] Config: added 'bgscan' value 'simple:30:-70:86400'
Feb 08 20:16:56 onkyo NetworkManager[1227]: <info>  [1644347816.3712] Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 SAE'
Feb 08 20:16:56 onkyo NetworkManager[1227]: <info>  [1644347816.3712] Config: added 'auth_alg' value 'OPEN'
Feb 08 20:16:56 onkyo NetworkManager[1227]: <info>  [1644347816.3712] Config: added 'psk' value '<hidden>'
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3713] sup-iface[180f51fa4fa3c2ee,1,wlan1]: assoc[81fb7831b979c0a9]: starting association...
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3753] sup-iface[180f51fa4fa3c2ee,1,wlan1]: set bridge (null) result: success
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.3822] sup-iface[180f51fa4fa3c2ee,1,wlan1]: assoc[81fb7831b979c0a9]: association request successful
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.5481] connectivity: (eth0,IPv4,19) skip connectivity check due to no carrier
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.5482] connectivity: (eth0,IPv6,20) skip connectivity check due to no carrier
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.5483] connectivity: (eth0,IPv4,19) check completed: NONE; no carrier
Feb 08 20:16:56 onkyo NetworkManager[1227]: <debug> [1644347816.5483] connectivity: (eth0,IPv6,20) check completed: NONE; no carrier
Feb 08 20:16:57 onkyo NetworkManager[1227]: <debug> [1644347817.5110] connectivity: (wlan1,IPv4,21) skip connectivity check due to no carrier
Feb 08 20:16:57 onkyo NetworkManager[1227]: <debug> [1644347817.5111] connectivity: (wlan1,IPv6,22) skip connectivity check due to no carrier
Feb 08 20:16:57 onkyo NetworkManager[1227]: <debug> [1644347817.5112] connectivity: (wlan1,IPv4,21) check completed: NONE; no carrier
Feb 08 20:16:57 onkyo NetworkManager[1227]: <debug> [1644347817.5112] connectivity: (wlan1,IPv6,22) check completed: NONE; no carrier
Feb 08 20:16:58 onkyo NetworkManager[1227]: <info>  [1644347818.4001] device (wlan1): supplicant interface state: disconnected -> authenticating
Feb 08 20:16:58 onkyo NetworkManager[1227]: <info>  [1644347818.8447] device (wlan1): supplicant interface state: authenticating -> associating
Feb 08 20:16:58 onkyo NetworkManager[1227]: <info>  [1644347818.8797] device (wlan1): supplicant interface state: associating -> disconnected
Feb 08 20:17:08 onkyo NetworkManager[1227]: <info>  [1644347828.8809] device (wlan1): supplicant interface state: disconnected -> scanning
Feb 08 20:17:08 onkyo NetworkManager[1227]: <debug> [1644347828.8810] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: scanning
Feb 08 20:17:09 onkyo NetworkManager[1227]: <debug> [1644347829.0128] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: idle (notify last-scan)
Feb 08 20:17:09 onkyo NetworkManager[1227]: <info>  [1644347829.0189] device (wlan1): supplicant interface state: scanning -> authenticating
Feb 08 20:17:09 onkyo NetworkManager[1227]: <info>  [1644347829.0889] device (wlan1): supplicant interface state: authenticating -> associating
Feb 08 20:17:09 onkyo NetworkManager[1227]: <info>  [1644347829.1251] device (wlan1): supplicant interface state: associating -> authenticating
Feb 08 20:17:09 onkyo NetworkManager[1227]: <info>  [1644347829.5865] device (wlan1): supplicant interface state: authenticating -> associating
Feb 08 20:17:09 onkyo NetworkManager[1227]: <info>  [1644347829.6267] device (wlan1): supplicant interface state: associating -> disconnected
Feb 08 20:17:19 onkyo NetworkManager[1227]: <info>  [1644347839.6293] device (wlan1): supplicant interface state: disconnected -> scanning
Feb 08 20:17:19 onkyo NetworkManager[1227]: <debug> [1644347839.6294] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: scanning
Feb 08 20:17:21 onkyo NetworkManager[1227]: <warn>  [1644347841.3687] device (wlan1): Activation: (wifi) association took too long
Feb 08 20:17:21 onkyo NetworkManager[1227]: <info>  [1644347841.3688] device (wlan1): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3688] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'in-state-change'
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3693] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'in-state-change'
Feb 08 20:17:21 onkyo NetworkManager[1227]: <info>  [1644347841.3693] sup-iface[180f51fa4fa3c2ee,1,wlan1]: wps: type pbc start...
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3697] Secrets requested for connection /org/freedesktop/NetworkManager/Settings/1 (wlan1/802-11-wireless-secur>
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3697] agent-manager: agent[c961f53bf9e2e46d,:1.52/org.gnome.Shell.NetworkAgent/1000]: agent allowed for secret>
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3698] settings-connection[42e5f8fede27902a,eada3809-386b-4335-a279-f27e866f67be]: (802-11-wireless-security:0x>
Feb 08 20:17:21 onkyo NetworkManager[1227]: <warn>  [1644347841.3698] device (wlan1): Activation: (wifi) asking for new secrets
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3700] agent-manager: ([0124b144d2bf4612/"wlan1"/"802-11-wireless-security"]) system settings secrets sufficient
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3703] settings-connection[42e5f8fede27902a,eada3809-386b-4335-a279-f27e866f67be]: (802-11-wireless-security:0x>
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3703] settings-connection[42e5f8fede27902a,eada3809-386b-4335-a279-f27e866f67be]: (802-11-wireless-security:0x>
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3710] settings-connection[42e5f8fede27902a,eada3809-386b-4335-a279-f27e866f67be]: (802-11-wireless-security:0x>
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3719] device[cbbf058fd723ebb5] (wlan1): activation-stage: schedule activate_stage1_device_prepare,v4 (id 645)
Feb 08 20:17:21 onkyo NetworkManager[1227]: <info>  [1644347841.3722] device (wlan1): supplicant interface state: scanning -> disconnected
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3723] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: idle (notify last-scan)
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3730] device[cbbf058fd723ebb5] (wlan1): activation-stage: invoke activate_stage1_device_prepare,v4 (id 645)
Feb 08 20:17:21 onkyo NetworkManager[1227]: <info>  [1644347841.3730] device (wlan1): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3731] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'in-state-change'
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3737] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'in-state-change'
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3741] device[cbbf058fd723ebb5] (wlan1): activation-stage: synchronously invoke activate_stage2_device_config,v4
Feb 08 20:17:21 onkyo NetworkManager[1227]: <info>  [1644347841.3741] device (wlan1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3742] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'in-state-change'
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3745] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'in-state-change'
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3745] rules-manager: sync
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3746] device[cbbf058fd723ebb5] (wlan1): bringing up device 3
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3746] platform-linux: link: change 3: flags: set 0x1/0x1 ([up] / [up])
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3747] platform-linux: do-request-link: 3 
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3748] platform-linux: do-change-link[3]: success changing link: success
Feb 08 20:17:21 onkyo NetworkManager[1227]: <info>  [1644347841.3748] device (wlan1): Activation: (wifi) connection 'wlan1' has security, and secrets exist.  No new secrets n>
Feb 08 20:17:21 onkyo NetworkManager[1227]: <info>  [1644347841.3749] Config: added 'ssid' value 'FRITZ!Box 7590 TC'
Feb 08 20:17:21 onkyo NetworkManager[1227]: <info>  [1644347841.3749] Config: added 'scan_ssid' value '1'
Feb 08 20:17:21 onkyo NetworkManager[1227]: <info>  [1644347841.3749] Config: added 'bgscan' value 'simple:30:-70:86400'
Feb 08 20:17:21 onkyo NetworkManager[1227]: <info>  [1644347841.3750] Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 SAE'
Feb 08 20:17:21 onkyo NetworkManager[1227]: <info>  [1644347841.3750] Config: added 'auth_alg' value 'OPEN'
Feb 08 20:17:21 onkyo NetworkManager[1227]: <info>  [1644347841.3750] Config: added 'psk' value '<hidden>'
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3753] sup-iface[180f51fa4fa3c2ee,1,wlan1]: assoc[b019fe033a46b906]: starting association...
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3846] sup-iface[180f51fa4fa3c2ee,1,wlan1]: set bridge (null) result: success
Feb 08 20:17:21 onkyo NetworkManager[1227]: <debug> [1644347841.3987] sup-iface[180f51fa4fa3c2ee,1,wlan1]: assoc[b019fe033a46b906]: association request successful
Feb 08 20:17:22 onkyo NetworkManager[1227]: <info>  [1644347842.8704] device (wlan1): supplicant interface state: disconnected -> authenticating
Feb 08 20:17:23 onkyo NetworkManager[1227]: <info>  [1644347843.3096] device (wlan1): supplicant interface state: authenticating -> associating
Feb 08 20:17:23 onkyo NetworkManager[1227]: <info>  [1644347843.3465] device (wlan1): supplicant interface state: associating -> disconnected
Feb 08 20:17:28 onkyo NetworkManager[1227]: <debug> [1644347848.5512] connectivity: (eth0,IPv4,23) skip connectivity check due to no carrier
Feb 08 20:17:28 onkyo NetworkManager[1227]: <debug> [1644347848.5513] connectivity: (eth0,IPv6,24) skip connectivity check due to no carrier
Feb 08 20:17:28 onkyo NetworkManager[1227]: <debug> [1644347848.5513] connectivity: (eth0,IPv4,23) check completed: NONE; no carrier
Feb 08 20:17:28 onkyo NetworkManager[1227]: <debug> [1644347848.5514] connectivity: (eth0,IPv6,24) check completed: NONE; no carrier
Feb 08 20:17:29 onkyo NetworkManager[1227]: <debug> [1644347849.5115] connectivity: (wlan1,IPv4,25) skip connectivity check due to no carrier
Feb 08 20:17:29 onkyo NetworkManager[1227]: <debug> [1644347849.5116] connectivity: (wlan1,IPv6,26) skip connectivity check due to no carrier
Feb 08 20:17:29 onkyo NetworkManager[1227]: <debug> [1644347849.5117] connectivity: (wlan1,IPv4,25) check completed: NONE; no carrier
Feb 08 20:17:29 onkyo NetworkManager[1227]: <debug> [1644347849.5117] connectivity: (wlan1,IPv6,26) check completed: NONE; no carrier
Feb 08 20:17:33 onkyo NetworkManager[1227]: <info>  [1644347853.3527] device (wlan1): supplicant interface state: disconnected -> scanning
Feb 08 20:17:33 onkyo NetworkManager[1227]: <debug> [1644347853.3528] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: scanning
Feb 08 20:17:33 onkyo NetworkManager[1227]: <debug> [1644347853.4884] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: idle (notify last-scan)
Feb 08 20:17:33 onkyo NetworkManager[1227]: <info>  [1644347853.4959] device (wlan1): supplicant interface state: scanning -> authenticating
Feb 08 20:17:33 onkyo NetworkManager[1227]: <info>  [1644347853.5633] device (wlan1): supplicant interface state: authenticating -> associating
Feb 08 20:17:33 onkyo NetworkManager[1227]: <info>  [1644347853.6100] device (wlan1): supplicant interface state: associating -> authenticating
Feb 08 20:17:34 onkyo NetworkManager[1227]: <info>  [1644347854.0669] device (wlan1): supplicant interface state: authenticating -> associating
Feb 08 20:17:34 onkyo NetworkManager[1227]: <info>  [1644347854.0992] device (wlan1): supplicant interface state: associating -> disconnected
Feb 08 20:17:44 onkyo NetworkManager[1227]: <info>  [1644347864.1061] device (wlan1): supplicant interface state: disconnected -> scanning
Feb 08 20:17:44 onkyo NetworkManager[1227]: <debug> [1644347864.1062] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: scanning
Feb 08 20:17:46 onkyo NetworkManager[1227]: <warn>  [1644347866.3690] device (wlan1): Activation: (wifi) association took too long
Feb 08 20:17:46 onkyo NetworkManager[1227]: <info>  [1644347866.3691] device (wlan1): state change: config -> failed (reason 'no-secrets', sys-iface-state: 'managed')
Feb 08 20:17:46 onkyo NetworkManager[1227]: <debug> [1644347866.3691] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'in-state-change'
Feb 08 20:17:46 onkyo NetworkManager[1227]: <debug> [1644347866.3699] active-connection[0x556cd1ee5300]: set state deactivated (was activating)
Feb 08 20:17:46 onkyo NetworkManager[1227]: <info>  [1644347866.3702] manager: NetworkManager state is now DISCONNECTED
Feb 08 20:17:46 onkyo NetworkManager[1227]: <debug> [1644347866.3705] active-connection[0x556cd1ee5300]: check-master-ready: not signalling (state deactivated, no master)
Feb 08 20:17:46 onkyo NetworkManager[1227]: <debug> [1644347866.3705] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'activation-1'
Feb 08 20:17:46 onkyo NetworkManager[1227]: <debug> [1644347866.3708] device[cbbf058fd723ebb5] (wlan1): wifi-scan: start periodic scan (0 SSIDs to probe scan)
Feb 08 20:17:46 onkyo NetworkManager[1227]: <debug> [1644347866.3709] device[cbbf058fd723ebb5] (wlan1): taking down device 3
Feb 08 20:17:46 onkyo NetworkManager[1227]: <debug> [1644347866.3709] platform-linux: link: change 3: flags: set 0x0/0x1 ([] / [up])
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.3277] platform-linux: do-request-link: 3 
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.3279] platform: (wlan1) signal: link changed: 3: wlan1 <DOWN;broadcast,multicast> mtu 1500 arp 1 wifi? init ad>
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.3279] device[cbbf058fd723ebb5] (wlan1): queued link change for ifindex 3
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.3282] platform-linux: do-change-link[3]: success changing link: success
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.3282] platform: (wlan1) link: setting hardware address to 06:0A:DE:EF:7F:49
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.3283] platform-linux: do-request-link: 3 
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.3284] platform: (wlan1) signal: link changed: 3: wlan1 <DOWN;broadcast,multicast> mtu 1500 arp 1 wifi? init ad>
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.3285] platform-linux: do-change-link[3]: success changing link: success
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.3286] device[cbbf058fd723ebb5] (wlan1): hw-addr: hardware address now 06:0A:DE:EF:7F:49
Feb 08 20:17:47 onkyo NetworkManager[1227]: <info>  [1644347867.3290] device (wlan1): set-hw-addr: set MAC address to 06:0A:DE:EF:7F:49 (scanning)
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.3290] device[cbbf058fd723ebb5] (wlan1): bringing up device 3
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.3291] platform-linux: link: change 3: flags: set 0x1/0x1 ([up] / [up])
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7405] platform-linux: do-request-link: 3 
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7407] platform: (wlan1) signal: link changed: 3: wlan1 <UP;broadcast,multicast,up> mtu 1500 arp 1 wifi? init a>
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7409] platform-linux: do-change-link[3]: success changing link: success
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7412] policy: connection 'wlan1' now blocked from autoconnect due to no secrets
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7413] manager: ActivatingConnection now (none)
Feb 08 20:17:47 onkyo NetworkManager[1227]: <warn>  [1644347867.7414] device (wlan1): Activation: failed for connection 'wlan1'
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7415] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'queued-state-change-disconnected'
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7415] device[cbbf058fd723ebb5] (wlan1): queue-state[disconnected, reason:none, id:766]: queue state change
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7415] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'in-state-change'
Feb 08 20:17:47 onkyo NetworkManager[1227]: <info>  [1644347867.7417] device (wlan1): supplicant interface state: scanning -> disconnected
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7423] device[cbbf058fd723ebb5] (wlan1): queue-state[disconnected, reason:none, id:766]: change state
Feb 08 20:17:47 onkyo NetworkManager[1227]: <info>  [1644347867.7424] device (wlan1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7424] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'in-state-change'
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7424] device[cbbf058fd723ebb5] (wlan1): will enable userland IPv6LL
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7424] platform-linux: link: change 3: user-ipv6ll: set IPv6 address generation mode to none
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7426] platform-linux: do-request-link: 3 
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7427] platform-linux: do-change-link[3]: success changing link: success
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7429] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/wlan1/disable_ipv6' to '1' (current value is '0>
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7431] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/wlan1/disable_ipv6' to '0' (current value is '1>
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7431] device[cbbf058fd723ebb5] (wlan1): deactivating device (reason 'none') [0]
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7432] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/wlan1/use_tempaddr' to '0' (current value is id>
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7436] rules-manager: sync
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7436] device[cbbf058fd723ebb5] (wlan1): ip4-config: update (commit=1, new-config=2c5919f76698fedd, route-table>
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7437] device[cbbf058fd723ebb5] (wlan1): ip6-config: update (commit=1, new-config=2c5919f76698fedd, route-table>
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7444] dns-mgr: (update_routing_and_dns): queueing DNS updates (1)
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7445] dns-mgr: (update_routing_and_dns): DNS configuration did not change
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7445] dns-mgr: (update_routing_and_dns): no DNS changes to commit (0)
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7446] connectivity: (wlan1,IPv4,27) skip connectivity check due to no carrier
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7446] connectivity: (wlan1,IPv6,28) skip connectivity check due to no carrier
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7446] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'in-state-change'
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7447] active-connection[0x556cd1ee5300]: disposing
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7448] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (0): 'queued-state-change-disconnected'
Feb 08 20:17:47 onkyo NetworkManager[1227]: <info>  [1644347867.7449] manager: startup complete
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7451] connectivity: (wlan1,IPv4,27) check completed: NONE; no carrier
Feb 08 20:17:47 onkyo NetworkManager[1227]: <debug> [1644347867.7451] connectivity: (wlan1,IPv6,28) check completed: NONE; no carrier
Feb 08 20:17:49 onkyo NetworkManager[1227]: <debug> [1644347869.7466] connectivity: (wlan1,IPv4,29) skip connectivity check due to no carrier
Feb 08 20:17:49 onkyo NetworkManager[1227]: <debug> [1644347869.7467] connectivity: (wlan1,IPv6,30) skip connectivity check due to no carrier
Feb 08 20:17:49 onkyo NetworkManager[1227]: <debug> [1644347869.7467] connectivity: (wlan1,IPv4,29) check completed: NONE; no carrier
Feb 08 20:17:49 onkyo NetworkManager[1227]: <debug> [1644347869.7468] connectivity: (wlan1,IPv6,30) check completed: NONE; no carrier
Feb 08 20:17:50 onkyo NetworkManager[1227]: <debug> [1644347870.9009] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: idle (notify last-scan)
Feb 08 20:17:50 onkyo NetworkManager[1227]: <debug> [1644347870.9012] device[cbbf058fd723ebb5] (wlan1): add_pending_action (1): 'autoactivate'
Feb 08 20:17:50 onkyo NetworkManager[1227]: <debug> [1644347870.9014] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (0): 'autoactivate'
Feb 08 20:17:51 onkyo NetworkManager[1227]: <debug> [1644347871.1025] device[cbbf058fd723ebb5] (wlan1): wifi-scan: start periodic scan (0 SSIDs to probe scan)
Feb 08 20:17:51 onkyo NetworkManager[1227]: <debug> [1644347871.1028] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: scanning
Feb 08 20:17:51 onkyo NetworkManager[1227]: <debug> [1644347871.1029] device[cbbf058fd723ebb5] (wlan1): add_pending_action (1): 'wifi-scan'
Feb 08 20:17:53 onkyo NetworkManager[1227]: <debug> [1644347873.7451] connectivity: (wlan1,IPv4,31) skip connectivity check due to no carrier
Feb 08 20:17:53 onkyo NetworkManager[1227]: <debug> [1644347873.7452] connectivity: (wlan1,IPv6,32) skip connectivity check due to no carrier
Feb 08 20:17:53 onkyo NetworkManager[1227]: <debug> [1644347873.7452] connectivity: (wlan1,IPv4,31) check completed: NONE; no carrier
Feb 08 20:17:53 onkyo NetworkManager[1227]: <debug> [1644347873.7453] connectivity: (wlan1,IPv6,32) check completed: NONE; no carrier
Feb 08 20:17:54 onkyo NetworkManager[1227]: <debug> [1644347874.2828] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: idle (notify last-scan)
Feb 08 20:17:54 onkyo NetworkManager[1227]: <debug> [1644347874.2831] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'autoactivate'
Feb 08 20:17:54 onkyo NetworkManager[1227]: <debug> [1644347874.2832] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'wifi-scan'
Feb 08 20:17:54 onkyo NetworkManager[1227]: <debug> [1644347874.2833] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (0): 'autoactivate'
Feb 08 20:17:54 onkyo NetworkManager[1227]: <debug> [1644347874.4836] device[cbbf058fd723ebb5] (wlan1): wifi-scan: start periodic scan (0 SSIDs to probe scan)
Feb 08 20:17:54 onkyo NetworkManager[1227]: <debug> [1644347874.4838] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: scanning
Feb 08 20:17:54 onkyo NetworkManager[1227]: <debug> [1644347874.4839] device[cbbf058fd723ebb5] (wlan1): add_pending_action (1): 'wifi-scan'
Feb 08 20:17:57 onkyo NetworkManager[1227]: <debug> [1644347877.6582] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: idle (notify last-scan)
Feb 08 20:17:57 onkyo NetworkManager[1227]: <debug> [1644347877.6583] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'autoactivate'
Feb 08 20:17:57 onkyo NetworkManager[1227]: <debug> [1644347877.6584] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'wifi-scan'
Feb 08 20:17:57 onkyo NetworkManager[1227]: <debug> [1644347877.6584] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (0): 'autoactivate'
Feb 08 20:17:59 onkyo NetworkManager[1227]: <debug> [1644347879.3683] device[cbbf058fd723ebb5] (wlan1): wifi-scan: start periodic scan (0 SSIDs to probe scan)
Feb 08 20:17:59 onkyo NetworkManager[1227]: <debug> [1644347879.3687] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: scanning
Feb 08 20:17:59 onkyo NetworkManager[1227]: <debug> [1644347879.3688] device[cbbf058fd723ebb5] (wlan1): add_pending_action (1): 'wifi-scan'
Feb 08 20:18:01 onkyo NetworkManager[1227]: <debug> [1644347881.7465] connectivity: (wlan1,IPv4,33) skip connectivity check due to no carrier
Feb 08 20:18:01 onkyo NetworkManager[1227]: <debug> [1644347881.7466] connectivity: (wlan1,IPv6,34) skip connectivity check due to no carrier
Feb 08 20:18:01 onkyo NetworkManager[1227]: <debug> [1644347881.7466] connectivity: (wlan1,IPv4,33) check completed: NONE; no carrier
Feb 08 20:18:01 onkyo NetworkManager[1227]: <debug> [1644347881.7466] connectivity: (wlan1,IPv6,34) check completed: NONE; no carrier
Feb 08 20:18:02 onkyo NetworkManager[1227]: <debug> [1644347882.5732] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: idle (notify last-scan)
Feb 08 20:18:02 onkyo NetworkManager[1227]: <debug> [1644347882.5732] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'autoactivate'
Feb 08 20:18:02 onkyo NetworkManager[1227]: <debug> [1644347882.5733] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'wifi-scan'
Feb 08 20:18:02 onkyo NetworkManager[1227]: <debug> [1644347882.5733] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (0): 'autoactivate'
Feb 08 20:18:06 onkyo NetworkManager[1227]: <debug> [1644347886.3700] device[cbbf058fd723ebb5] (wlan1): wifi-scan: start periodic scan (0 SSIDs to probe scan)
Feb 08 20:18:06 onkyo NetworkManager[1227]: <debug> [1644347886.3702] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: scanning
Feb 08 20:18:06 onkyo NetworkManager[1227]: <debug> [1644347886.3703] device[cbbf058fd723ebb5] (wlan1): add_pending_action (1): 'wifi-scan'
Feb 08 20:18:09 onkyo NetworkManager[1227]: <debug> [1644347889.6394] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: idle (notify last-scan)
Feb 08 20:18:09 onkyo NetworkManager[1227]: <debug> [1644347889.6396] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'autoactivate'
Feb 08 20:18:09 onkyo NetworkManager[1227]: <debug> [1644347889.6397] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'wifi-scan'
Feb 08 20:18:09 onkyo NetworkManager[1227]: <debug> [1644347889.6398] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (0): 'autoactivate'
Feb 08 20:18:16 onkyo NetworkManager[1227]: <debug> [1644347896.3728] device[cbbf058fd723ebb5] (wlan1): wifi-scan: start periodic scan (0 SSIDs to probe scan)
Feb 08 20:18:16 onkyo NetworkManager[1227]: <debug> [1644347896.3731] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: scanning
Feb 08 20:18:16 onkyo NetworkManager[1227]: <debug> [1644347896.3731] device[cbbf058fd723ebb5] (wlan1): add_pending_action (1): 'wifi-scan'
Feb 08 20:18:17 onkyo NetworkManager[1227]: <debug> [1644347897.7449] connectivity: (wlan1,IPv4,35) skip connectivity check due to no carrier
Feb 08 20:18:17 onkyo NetworkManager[1227]: <debug> [1644347897.7450] connectivity: (wlan1,IPv6,36) skip connectivity check due to no carrier
Feb 08 20:18:17 onkyo NetworkManager[1227]: <debug> [1644347897.7450] connectivity: (wlan1,IPv4,35) check completed: NONE; no carrier
Feb 08 20:18:17 onkyo NetworkManager[1227]: <debug> [1644347897.7451] connectivity: (wlan1,IPv6,36) check completed: NONE; no carrier
Feb 08 20:18:19 onkyo NetworkManager[1227]: <debug> [1644347899.5725] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: idle (notify last-scan)
Feb 08 20:18:19 onkyo NetworkManager[1227]: <debug> [1644347899.5728] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'autoactivate'
Feb 08 20:18:19 onkyo NetworkManager[1227]: <debug> [1644347899.5728] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'wifi-scan'
Feb 08 20:18:19 onkyo NetworkManager[1227]: <debug> [1644347899.5729] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (0): 'autoactivate'
Feb 08 20:18:30 onkyo NetworkManager[1227]: <debug> [1644347910.3670] device[cbbf058fd723ebb5] (wlan1): wifi-scan: start periodic scan (0 SSIDs to probe scan)
Feb 08 20:18:30 onkyo NetworkManager[1227]: <debug> [1644347910.3672] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: scanning
Feb 08 20:18:30 onkyo NetworkManager[1227]: <debug> [1644347910.3673] device[cbbf058fd723ebb5] (wlan1): add_pending_action (1): 'wifi-scan'
Feb 08 20:18:32 onkyo NetworkManager[1227]: <debug> [1644347912.5488] connectivity: (eth0,IPv4,37) skip connectivity check due to no carrier
Feb 08 20:18:32 onkyo NetworkManager[1227]: <debug> [1644347912.5489] connectivity: (eth0,IPv6,38) skip connectivity check due to no carrier
Feb 08 20:18:32 onkyo NetworkManager[1227]: <debug> [1644347912.5489] connectivity: (eth0,IPv4,37) check completed: NONE; no carrier
Feb 08 20:18:32 onkyo NetworkManager[1227]: <debug> [1644347912.5490] connectivity: (eth0,IPv6,38) check completed: NONE; no carrier
Feb 08 20:18:33 onkyo NetworkManager[1227]: <debug> [1644347913.5079] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: idle (notify last-scan)
Feb 08 20:18:33 onkyo NetworkManager[1227]: <debug> [1644347913.5082] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'autoactivate'
Feb 08 20:18:33 onkyo NetworkManager[1227]: <debug> [1644347913.5082] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'wifi-scan'
Feb 08 20:18:33 onkyo NetworkManager[1227]: <debug> [1644347913.5084] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (0): 'autoactivate'
Feb 08 20:18:49 onkyo NetworkManager[1227]: <debug> [1644347929.7509] connectivity: (wlan1,IPv4,39) skip connectivity check due to no carrier
Feb 08 20:18:49 onkyo NetworkManager[1227]: <debug> [1644347929.7510] connectivity: (wlan1,IPv6,40) skip connectivity check due to no carrier
Feb 08 20:18:49 onkyo NetworkManager[1227]: <debug> [1644347929.7511] connectivity: (wlan1,IPv4,39) check completed: NONE; no carrier
Feb 08 20:18:49 onkyo NetworkManager[1227]: <debug> [1644347929.7511] connectivity: (wlan1,IPv6,40) check completed: NONE; no carrier
Feb 08 20:18:50 onkyo NetworkManager[1227]: <debug> [1644347930.3669] device[cbbf058fd723ebb5] (wlan1): wifi-scan: start periodic scan (0 SSIDs to probe scan)
Feb 08 20:18:50 onkyo NetworkManager[1227]: <debug> [1644347930.3672] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: scanning
Feb 08 20:18:50 onkyo NetworkManager[1227]: <debug> [1644347930.3672] device[cbbf058fd723ebb5] (wlan1): add_pending_action (1): 'wifi-scan'
Feb 08 20:18:53 onkyo NetworkManager[1227]: <debug> [1644347933.5701] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: idle (notify last-scan)
Feb 08 20:18:53 onkyo NetworkManager[1227]: <debug> [1644347933.5703] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'autoactivate'
Feb 08 20:18:53 onkyo NetworkManager[1227]: <debug> [1644347933.5704] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'wifi-scan'
Feb 08 20:18:53 onkyo NetworkManager[1227]: <debug> [1644347933.5705] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (0): 'autoactivate'
Feb 08 20:19:19 onkyo NetworkManager[1227]: <debug> [1644347959.3854] device[cbbf058fd723ebb5] (wlan1): wifi-scan: start periodic scan (0 SSIDs to probe scan)
Feb 08 20:19:19 onkyo NetworkManager[1227]: <debug> [1644347959.3857] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: scanning
Feb 08 20:19:19 onkyo NetworkManager[1227]: <debug> [1644347959.3857] device[cbbf058fd723ebb5] (wlan1): add_pending_action (1): 'wifi-scan'
Feb 08 20:19:22 onkyo NetworkManager[1227]: <debug> [1644347962.5497] device[cbbf058fd723ebb5] (wlan1): wifi-scan: scanning-state: idle (notify last-scan)
Feb 08 20:19:22 onkyo NetworkManager[1227]: <debug> [1644347962.5500] device[cbbf058fd723ebb5] (wlan1): add_pending_action (2): 'autoactivate'
Feb 08 20:19:22 onkyo NetworkManager[1227]: <debug> [1644347962.5501] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (1): 'wifi-scan'
Feb 08 20:19:22 onkyo NetworkManager[1227]: <debug> [1644347962.5504] device[cbbf058fd723ebb5] (wlan1): remove_pending_action (0): 'autoactivate'
Feb 08 20:19:53 onkyo NetworkManager[1227]: <debug> [1644347993.7757] connectivity: (wlan1,IPv4,41) skip connectivity check due to no carrier
Feb 08 20:19:53 onkyo NetworkManager[1227]: <debug> [1644347993.7758] connectivity: (wlan1,IPv6,42) skip connectivity check due to no carrier
Feb 08 20:19:53 onkyo NetworkManager[1227]: <debug> [1644347993.7758] connectivity: (wlan1,IPv4,41) check completed: NONE; no carrier
Feb 08 20:19:53 onkyo NetworkManager[1227]: <debug> [1644347993.7758] connectivity: (wlan1,IPv6,42) check completed: NONE; no carrier
lines 824-867/867 (END)

-------------- next part --------------
1644347787.433476: wpa_supplicant v2.10
1644347787.434364: dbus: Register D-Bus object '/fi/w1/wpa_supplicant1'
1644347787.434690: Providing DBus service 'fi.w1.wpa_supplicant1'.
1644347787.434938: Providing DBus service 'fi.epitest.hostap.WPASupplicant'.
1644347787.435061: Successfully initialized wpa_supplicant
1644347787.435389: dbus: org.freedesktop.DBus.Properties.GetAll (/fi/w1/wpa_supplicant1) [s]
1644347787.435898: dbus: fi.w1.wpa_supplicant1.CreateInterface (/fi/w1/wpa_supplicant1) [a{sv}]
1644347787.435920: wpa_dbus_dict_open_read: start reading a dict entry
1644347787.435936: wpa_dbus_dict_get_entry: dict entry key: Driver
1644347787.435948: wpa_dbus_dict_get_entry: dict entry variant content type: s
1644347787.435957: _wpa_dbus_dict_fill_value_from_variant: string value: [omitted]
1644347787.435966: wpa_dbus_dict_get_entry: dict entry key: Ifname
1644347787.435975: wpa_dbus_dict_get_entry: dict entry variant content type: s
1644347787.435983: _wpa_dbus_dict_fill_value_from_variant: string value: [omitted]
1644347787.436000: Initializing interface 'wlan1' conf 'N/A' driver 'nl80211,wext' ctrl_interface 'N/A' bridge 'N/A'
1644347787.436454: nl80211: Supported cipher 00-0f-ac:1
1644347787.436469: nl80211: Supported cipher 00-0f-ac:5
1644347787.436478: nl80211: Supported cipher 00-0f-ac:2
1644347787.436486: nl80211: Supported cipher 00-0f-ac:4
1644347787.436495: nl80211: Supported cipher 00-0f-ac:10
1644347787.436503: nl80211: Supported cipher 00-0f-ac:8
1644347787.436511: nl80211: Supported cipher 00-0f-ac:9
1644347787.436535: nl80211: Using driver-based off-channel TX
1644347787.436549: nl80211: Driver-advertised extended capabilities (default) - hexdump(len=8): 00 00 00 00 00 00 00 40
1644347787.436560: nl80211: Driver-advertised extended capabilities mask (default) - hexdump(len=8): 00 00 00 00 00 00 00 40
1644347787.436576: nl80211: key_mgmt=0x1ff0f enc=0xef auth=0x7 flags=0x840005105b03d0e0 rrm_flags=0x10 probe_resp_offloads=0x0 max_stations=0 max_remain_on_chan=5000 max_scan_ssids=20
1644347787.436587: nl80211: interface wlan1 in phy phy0
1644347787.436619: nl80211: Set mode ifindex 3 iftype 2 (STATION)
1644347787.436646: nl80211: Subscribe to mgmt frames with non-AP handle 0x55a48857daf0
1644347787.436659: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=0104 multicast=0
1644347787.436680: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=040a multicast=0
1644347787.436699: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=040b multicast=0
1644347787.436717: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=040c multicast=0
1644347787.436736: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=040d multicast=0
1644347787.436754: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=090a multicast=0
1644347787.436787: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=090b multicast=0
1644347787.436817: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=090c multicast=0
1644347787.436837: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=090d multicast=0
1644347787.436856: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=0409506f9a09 multicast=0
1644347787.436875: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=7f506f9a09 multicast=0
1644347787.436893: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=0409506f9a1a multicast=0
1644347787.436912: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=0801 multicast=0
1644347787.436930: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=06 multicast=0
1644347787.436949: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=0a07 multicast=0
1644347787.436986: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=0a11 multicast=0
1644347787.437007: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=0a1a multicast=0
1644347787.437026: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=1101 multicast=0
1644347787.437045: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=1102 multicast=0
1644347787.437064: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=0505 multicast=0
1644347787.437083: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=0500 multicast=0
1644347787.437102: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=1301 multicast=0
1644347787.437121: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=1305 multicast=0
1644347787.437140: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x55a48857daf0 match=7e506f9a1a multicast=0
1644347787.437232: rfkill: initial event: idx=0 type=1 op=0 soft=0 hard=0
1644347787.437261: netlink: Operstate: ifindex=3 linkmode=1 (userspace-control), operstate=5 (IF_OPER_DORMANT)
1644347787.437425: Add interface wlan1 to a new radio phy0
1644347787.437565: nl80211: Regulatory information - country=00
1644347787.437578: nl80211: 2402-2472 @ 40 MHz 20 mBm
1644347787.437588: nl80211: 2457-2482 @ 20 MHz 20 mBm (no IR)
1644347787.437598: nl80211: 2474-2494 @ 20 MHz 20 mBm (no OFDM) (no IR)
1644347787.437607: nl80211: 5170-5250 @ 80 MHz 20 mBm (no IR)
1644347787.437617: nl80211: 5250-5330 @ 80 MHz 20 mBm (DFS) (no IR)
1644347787.437627: nl80211: 5490-5730 @ 160 MHz 20 mBm (DFS) (no IR)
1644347787.437636: nl80211: 5735-5835 @ 80 MHz 20 mBm (no IR)
1644347787.437646: nl80211: 57240-63720 @ 2160 MHz 0 mBm
1644347787.437665: nl80211: Added 802.11b mode based on 802.11g information
1644347787.437677: nl80211: Mode IEEE 802.11g: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[NO_IR] 2472[NO_IR]
1644347787.437688: nl80211: Mode IEEE 802.11a: 5180[NO_IR] 5200[NO_IR] 5220[NO_IR] 5240[NO_IR] 5260[NO_IR][RADAR] 5280[NO_IR][RADAR] 5300[NO_IR][RADAR] 5320[NO_IR][RADAR] 5500[NO_IR][RADAR] 5520[NO_IR][RADAR] 5540[NO_IR][RADAR]
1644347787.437699: nl80211: Mode IEEE 802.11b: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[NO_IR] 2472[NO_IR]
1644347787.455522: wlan1: Own MAC address: 1a:7c:60:78:53:82
1644347787.455576: wpa_driver_nl80211_set_key: ifindex=3 (wlan1) alg=0 addr=(nil) key_idx=0 set_tx=0 seq_len=0 key_len=0 key_flag=0x10
1644347787.455598: nl80211: DEL_KEY
1644347787.455614:    broadcast key
1644347787.455676: wpa_driver_nl80211_set_key: ifindex=3 (wlan1) alg=0 addr=(nil) key_idx=1 set_tx=0 seq_len=0 key_len=0 key_flag=0x10
1644347787.455698: nl80211: DEL_KEY
1644347787.455712:    broadcast key
1644347787.455752: wpa_driver_nl80211_set_key: ifindex=3 (wlan1) alg=0 addr=(nil) key_idx=2 set_tx=0 seq_len=0 key_len=0 key_flag=0x10
1644347787.455771: nl80211: DEL_KEY
1644347787.455787:    broadcast key
1644347787.455825: wpa_driver_nl80211_set_key: ifindex=3 (wlan1) alg=0 addr=(nil) key_idx=3 set_tx=0 seq_len=0 key_len=0 key_flag=0x10
1644347787.455843: nl80211: DEL_KEY
1644347787.455858:    broadcast key
1644347787.455895: wpa_driver_nl80211_set_key: ifindex=3 (wlan1) alg=0 addr=(nil) key_idx=4 set_tx=0 seq_len=0 key_len=0 key_flag=0x10
1644347787.455915: nl80211: DEL_KEY
1644347787.455930:    broadcast key
1644347787.455964: nl80211: set_key failed; err=-22 Invalid argument
1644347787.455989: wpa_driver_nl80211_set_key: ifindex=3 (wlan1) alg=0 addr=(nil) key_idx=5 set_tx=0 seq_len=0 key_len=0 key_flag=0x10
1644347787.456000: nl80211: DEL_KEY
1644347787.456010:    broadcast key
1644347787.456029: nl80211: set_key failed; err=-22 Invalid argument
1644347787.456040: wlan1: RSN: flushing PMKID list in the driver
1644347787.456050: nl80211: Flush PMKIDs
1644347787.456080: wlan1: State: DISCONNECTED -> INACTIVE
1644347787.500803: TDLS: TDLS operation not supported by driver
1644347787.500838: TDLS: Driver uses internal link setup
1644347787.500847: TDLS: Driver does not support TDLS channel switching
1644347787.500897: wlan1: WPS: UUID based on MAC address: 0db5fcbe-e2c5-58e6-af6a-b933b8d3a335
1644347787.506607: ENGINE: Loading builtin engines
1644347787.506832: ENGINE: Loading builtin engines
1644347787.506906: EAPOL: SUPP_PAE entering state DISCONNECTED
1644347787.506924: EAPOL: Supplicant port status: Unauthorized
1644347787.506934: nl80211: Skip set_supp_port(unauthorized) while not associated
1644347787.506942: EAPOL: KEY_RX entering state NO_KEY_RECEIVE
1644347787.506950: EAPOL: SUPP_BE entering state INITIALIZE
1644347787.506959: EAP: EAP entering state DISABLED
1644347787.506981: dbus: Register interface object '/fi/w1/wpa_supplicant1/Interfaces/1'
1644347787.507223: wlan1: Added interface wlan1
1644347787.507242: wlan1: State: INACTIVE -> DISCONNECTED
1644347787.507257: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347787.507272: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347787.507415: RTM_NEWLINK: ifi_index=3 ifname=wlan1 operstate=5 linkmode=0 ifi_family=0 ifi_flags=0x1003 ([UP])
1644347787.507458: RTM_NEWLINK: ifi_index=3 ifname=wlan1 operstate=5 linkmode=1 ifi_family=0 ifi_flags=0x1003 ([UP])
1644347787.508213: dbus: org.freedesktop.DBus.Properties.Set (/fi/w1/wpa_supplicant1/Interfaces/1) [ssv]
1644347787.508237: properties_get_or_set: Set(BSSExpireAge)
1644347787.508249: wlan1: Setting bss expiration age: 250 sec
1644347787.508303: dbus: org.freedesktop.DBus.Properties.Set (/fi/w1/wpa_supplicant1/Interfaces/1) [ssv]
1644347787.508316: properties_get_or_set: Set(BSSExpireCount)
1644347787.508327: wlan1: Setting bss expiration scan count: 2
1644347787.508345: dbus: org.freedesktop.DBus.Properties.Set (/fi/w1/wpa_supplicant1/Interfaces/1) [ssv]
1644347787.508357: properties_get_or_set: Set(Pmf)
1644347787.508372: pmf=1
1644347787.508422: dbus: org.freedesktop.DBus.Properties.GetAll (/fi/w1/wpa_supplicant1/Interfaces/1) [s]
1644347787.508643: dbus: org.freedesktop.DBus.Properties.GetAll (/fi/w1/wpa_supplicant1/Interfaces/1) [s]
1644347787.508663: dbus: fill_dict_with_properties dbus_interface=fi.w1.wpa_supplicant1.Interface.P2PDevice dbus_property=P2PDeviceConfig getter failed
1644347787.510083: RTM_NEWLINK: ifi_index=3 ifname=wlan1 operstate=5 linkmode=1 ifi_family=0 ifi_flags=0x1003 ([UP])
1644347787.510976: dbus: fi.w1.wpa_supplicant1.Interface.Scan (/fi/w1/wpa_supplicant1/Interfaces/1) [a{sv}]
1644347787.511017: wlan1: Add radio work 'scan'@0x55a48858ed50
1644347787.511035: wlan1: First radio work item in the queue - schedule start immediately
1644347787.511086: wlan1: Starting radio work 'scan'@0x55a48858ed50 after 0.000049 second wait
1644347787.511123: wlan1: nl80211: scan request
1644347787.511156: nl80211: Scan SSID 
1644347787.511450: Scan requested (ret=0) - scan timeout 10 seconds
1644347787.511475: nl80211: Event message available
1644347787.511498: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan1
1644347787.511509: wlan1: nl80211: Scan trigger
1644347787.511519: wlan1: Event SCAN_STARTED (47) received
1644347787.511530: wlan1: Own scan request started a scan in 0.000058 seconds
1644347787.516186: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347787.572902: RTM_NEWLINK: ifi_index=3 ifname=wlan1 operstate=2 linkmode=1 ifi_family=0 ifi_flags=0x1003 ([UP])
1644347788.507920: EAPOL: disable timer tick
1644347789.476931: dbus: org.freedesktop.DBus.Properties.GetAll (/fi/w1/wpa_supplicant1) [s]
1644347790.611144: nl80211: Event message available
1644347790.611293: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan1
1644347790.611332: wlan1: nl80211: New scan results available
1644347790.611358: nl80211: Scan probed for SSID ''
1644347790.611392: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 5180 5200 5220 5240 5260 5280 5300 5320 5500 5520 5540 5560 5580 5600 5620 5640 5660 5680 5700 5745 5765 5785 5805 5825
1644347790.611455: wlan1: Event SCAN_RESULTS (3) received
1644347790.611484: wlan1: Scan completed in 3.099952 seconds
1644347790.611692: nl80211: Received scan results (6 BSSes)
1644347790.611775: Sorted scan results
1644347790.611802: 2c:91:ab:e0:30:35 freq=5260 qual=0 noise=-92~ level=-46 snr=46* flags=0xb age=2180 est=135000
1644347790.611829: IEs - hexdump(len=458): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff 73 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347790.611966: Beacon IEs - hexdump(len=382): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff 38 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347790.612083: 2c:91:ab:e0:30:34 freq=2437 qual=0 noise=-89~ level=-31 snr=58* flags=0xb age=2988 est=65000
1644347790.612107: IEs - hexdump(len=365): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 0d 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347790.612237: e0:28:6d:7e:94:3c freq=2437 qual=0 noise=-89~ level=-66 snr=23 flags=0xb age=2976 est=62400
1644347790.612264: IEs - hexdump(len=455): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 06 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fd 88 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c dd 08 8c fd f0 01 01 02 01 00
1644347790.612398: e0:28:6d:7e:94:3b freq=5260 qual=0 noise=-92~ level=-80 snr=12 flags=0xb age=2184 est=40500
1644347790.612421: IEs - hexdump(len=491): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 02 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff 41 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347790.612563: Beacon IEs - hexdump(len=415): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 02 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff f9 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00
1644347790.612698: cc:ce:1e:65:97:c5 freq=2437 qual=0 noise=-89~ level=-87 snr=2 flags=0xb age=3008 est=6500
1644347790.612724: IEs - hexdump(len=382): 00 0e 46 52 49 54 5a 21 42 6f 78 20 37 34 39 30 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 00 00 11 00 00 46 05 73 d0 00 00 0c 2d 1a ad 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 07 0c 00 3d 16 06 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 39 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 2d ed c3 d2 7e 38 02 a3 26 a3 cc ce 1e 65 97 c5 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347790.612867: ce:ce:1e:65:97:c5 freq=2437 qual=0 noise=-89~ level=-91 snr=-2 flags=0xb age=3000 est=1000
1644347790.612892: IEs - hexdump(len=364): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 00 00 10 00 00 46 05 73 d0 00 00 0c 2d 1a ad 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 07 0c 00 3d 16 06 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 39 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 52 c7 5a ec 12 74 94 28 0b 9a e4 ef a7 3e b5 fd 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347790.613007: wlan1: BSS: Start scan result update 1
1644347790.613040: wlan1: BSS: Add new id 0 BSSID 2c:91:ab:e0:30:35 SSID 'FRITZ!Box 7590 TC' freq 5260
1644347790.613065: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/0'
1644347790.613194: WPS: attr type=0x104a len=1
1644347790.613223: WPS: attr type=0x1044 len=1
1644347790.613245: WPS: attr type=0x103b len=1
1644347790.613267: WPS: attr type=0x1047 len=16
1644347790.613288: WPS: attr type=0x1021 len=3
1644347790.613309: WPS: attr type=0x1023 len=4
1644347790.613331: WPS: attr type=0x1024 len=4
1644347790.613352: WPS: attr type=0x1042 len=4
1644347790.613373: WPS: attr type=0x1054 len=8
1644347790.613394: WPS: attr type=0x1011 len=4
1644347790.613415: WPS: attr type=0x1008 len=2
1644347790.613436: WPS: attr type=0x103c len=1
1644347790.613458: WPS: attr type=0x1049 len=6
1644347790.613479: WPS: WFA subelement id=0 len=1
1644347790.613501: WPS: attr type=0x104a len=1
1644347790.613522: WPS: attr type=0x1044 len=1
1644347790.613560: WPS: attr type=0x103b len=1
1644347790.613582: WPS: attr type=0x1047 len=16
1644347790.613603: WPS: attr type=0x1021 len=3
1644347790.613625: WPS: attr type=0x1023 len=4
1644347790.613646: WPS: attr type=0x1024 len=4
1644347790.613667: WPS: attr type=0x1042 len=4
1644347790.613689: WPS: attr type=0x1054 len=8
1644347790.613710: WPS: attr type=0x1011 len=4
1644347790.613731: WPS: attr type=0x1008 len=2
1644347790.613752: WPS: attr type=0x103c len=1
1644347790.613773: WPS: attr type=0x1049 len=6
1644347790.613795: WPS: WFA subelement id=0 len=1
1644347790.613922: wlan1: BSS: Add new id 1 BSSID 2c:91:ab:e0:30:34 SSID 'FRITZ!Box 7590 TC' freq 2437
1644347790.613954: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/1'
1644347790.614046: WPS: attr type=0x104a len=1
1644347790.614073: WPS: attr type=0x1044 len=1
1644347790.614095: WPS: attr type=0x103b len=1
1644347790.614116: WPS: attr type=0x1047 len=16
1644347790.614137: WPS: attr type=0x1021 len=3
1644347790.614158: WPS: attr type=0x1023 len=4
1644347790.614180: WPS: attr type=0x1024 len=4
1644347790.614201: WPS: attr type=0x1042 len=4
1644347790.614222: WPS: attr type=0x1054 len=8
1644347790.614243: WPS: attr type=0x1011 len=4
1644347790.614264: WPS: attr type=0x1008 len=2
1644347790.614285: WPS: attr type=0x103c len=1
1644347790.614306: WPS: attr type=0x1049 len=6
1644347790.614327: WPS: WFA subelement id=0 len=1
1644347790.614349: WPS: attr type=0x104a len=1
1644347790.614370: WPS: attr type=0x1044 len=1
1644347790.614391: WPS: attr type=0x103b len=1
1644347790.614412: WPS: attr type=0x1047 len=16
1644347790.614433: WPS: attr type=0x1021 len=3
1644347790.614454: WPS: attr type=0x1023 len=4
1644347790.614475: WPS: attr type=0x1024 len=4
1644347790.614495: WPS: attr type=0x1042 len=4
1644347790.614516: WPS: attr type=0x1054 len=8
1644347790.614537: WPS: attr type=0x1011 len=4
1644347790.614558: WPS: attr type=0x1008 len=2
1644347790.614579: WPS: attr type=0x103c len=1
1644347790.614600: WPS: attr type=0x1049 len=6
1644347790.614621: WPS: WFA subelement id=0 len=1
1644347790.614727: wlan1: BSS: Add new id 2 BSSID e0:28:6d:7e:94:3c SSID 'FRITZ!Box 7590 TC' freq 2437
1644347790.614757: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/2'
1644347790.614847: WPS: attr type=0x104a len=1
1644347790.614873: WPS: attr type=0x1044 len=1
1644347790.614895: WPS: attr type=0x103b len=1
1644347790.614917: WPS: attr type=0x1047 len=16
1644347790.614938: WPS: attr type=0x1021 len=3
1644347790.614959: WPS: attr type=0x1023 len=4
1644347790.614980: WPS: attr type=0x1024 len=4
1644347790.615001: WPS: attr type=0x1042 len=4
1644347790.615022: WPS: attr type=0x1054 len=8
1644347790.615043: WPS: attr type=0x1011 len=4
1644347790.615064: WPS: attr type=0x1008 len=2
1644347790.615085: WPS: attr type=0x103c len=1
1644347790.615107: WPS: attr type=0x1049 len=6
1644347790.615128: WPS: WFA subelement id=0 len=1
1644347790.615149: WPS: attr type=0x104a len=1
1644347790.615171: WPS: attr type=0x1044 len=1
1644347790.615192: WPS: attr type=0x103b len=1
1644347790.615213: WPS: attr type=0x1047 len=16
1644347790.615234: WPS: attr type=0x1021 len=3
1644347790.615254: WPS: attr type=0x1023 len=4
1644347790.615275: WPS: attr type=0x1024 len=4
1644347790.615296: WPS: attr type=0x1042 len=4
1644347790.615317: WPS: attr type=0x1054 len=8
1644347790.615338: WPS: attr type=0x1011 len=4
1644347790.615358: WPS: attr type=0x1008 len=2
1644347790.615379: WPS: attr type=0x103c len=1
1644347790.615400: WPS: attr type=0x1049 len=6
1644347790.615420: WPS: WFA subelement id=0 len=1
1644347790.615534: wlan1: BSS: Add new id 3 BSSID e0:28:6d:7e:94:3b SSID 'FRITZ!Box 7590 TC' freq 5260
1644347790.615563: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/3'
1644347790.615650: WPS: attr type=0x104a len=1
1644347790.615677: WPS: attr type=0x1044 len=1
1644347790.615698: WPS: attr type=0x103b len=1
1644347790.615719: WPS: attr type=0x1047 len=16
1644347790.615740: WPS: attr type=0x1021 len=3
1644347790.615762: WPS: attr type=0x1023 len=4
1644347790.615799: WPS: attr type=0x1024 len=4
1644347790.615822: WPS: attr type=0x1042 len=4
1644347790.615843: WPS: attr type=0x1054 len=8
1644347790.615864: WPS: attr type=0x1011 len=4
1644347790.615885: WPS: attr type=0x1008 len=2
1644347790.615906: WPS: attr type=0x103c len=1
1644347790.615928: WPS: attr type=0x1049 len=6
1644347790.615948: WPS: WFA subelement id=0 len=1
1644347790.615970: WPS: attr type=0x104a len=1
1644347790.615991: WPS: attr type=0x1044 len=1
1644347790.616011: WPS: attr type=0x103b len=1
1644347790.616032: WPS: attr type=0x1047 len=16
1644347790.616053: WPS: attr type=0x1021 len=3
1644347790.616074: WPS: attr type=0x1023 len=4
1644347790.616094: WPS: attr type=0x1024 len=4
1644347790.616115: WPS: attr type=0x1042 len=4
1644347790.616135: WPS: attr type=0x1054 len=8
1644347790.616156: WPS: attr type=0x1011 len=4
1644347790.616177: WPS: attr type=0x1008 len=2
1644347790.616198: WPS: attr type=0x103c len=1
1644347790.616218: WPS: attr type=0x1049 len=6
1644347790.616239: WPS: WFA subelement id=0 len=1
1644347790.616358: wlan1: BSS: Add new id 4 BSSID cc:ce:1e:65:97:c5 SSID 'FRITZ!Box 7490' freq 2437
1644347790.616387: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/4'
1644347790.616475: WPS: attr type=0x104a len=1
1644347790.616501: WPS: attr type=0x1044 len=1
1644347790.616523: WPS: attr type=0x103b len=1
1644347790.616545: WPS: attr type=0x1047 len=16
1644347790.616566: WPS: attr type=0x1021 len=3
1644347790.616587: WPS: attr type=0x1023 len=4
1644347790.616608: WPS: attr type=0x1024 len=4
1644347790.616629: WPS: attr type=0x1042 len=4
1644347790.616650: WPS: attr type=0x1054 len=8
1644347790.616672: WPS: attr type=0x1011 len=4
1644347790.616693: WPS: attr type=0x1008 len=2
1644347790.616714: WPS: attr type=0x103c len=1
1644347790.616735: WPS: attr type=0x1049 len=6
1644347790.616756: WPS: WFA subelement id=0 len=1
1644347790.616793: WPS: attr type=0x104a len=1
1644347790.616815: WPS: attr type=0x1044 len=1
1644347790.616836: WPS: attr type=0x103b len=1
1644347790.616857: WPS: attr type=0x1047 len=16
1644347790.616878: WPS: attr type=0x1021 len=3
1644347790.616899: WPS: attr type=0x1023 len=4
1644347790.616920: WPS: attr type=0x1024 len=4
1644347790.616941: WPS: attr type=0x1042 len=4
1644347790.616962: WPS: attr type=0x1054 len=8
1644347790.616983: WPS: attr type=0x1011 len=4
1644347790.617004: WPS: attr type=0x1008 len=2
1644347790.617025: WPS: attr type=0x103c len=1
1644347790.617046: WPS: attr type=0x1049 len=6
1644347790.617067: WPS: WFA subelement id=0 len=1
1644347790.617175: wlan1: BSS: Add new id 5 BSSID ce:ce:1e:65:97:c5 SSID 'FRITZ!Box Gastzugang' freq 2437
1644347790.617205: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/5'
1644347790.617293: WPS: attr type=0x104a len=1
1644347790.617319: WPS: attr type=0x1044 len=1
1644347790.617340: WPS: attr type=0x103b len=1
1644347790.617361: WPS: attr type=0x1047 len=16
1644347790.617382: WPS: attr type=0x1021 len=3
1644347790.617404: WPS: attr type=0x1023 len=4
1644347790.617424: WPS: attr type=0x1024 len=4
1644347790.617445: WPS: attr type=0x1042 len=4
1644347790.617466: WPS: attr type=0x1054 len=8
1644347790.617487: WPS: attr type=0x1011 len=4
1644347790.617508: WPS: attr type=0x1008 len=2
1644347790.617529: WPS: attr type=0x103c len=1
1644347790.617550: WPS: attr type=0x1049 len=6
1644347790.617571: WPS: WFA subelement id=0 len=1
1644347790.617592: WPS: attr type=0x104a len=1
1644347790.617613: WPS: attr type=0x1044 len=1
1644347790.617634: WPS: attr type=0x103b len=1
1644347790.617655: WPS: attr type=0x1047 len=16
1644347790.617676: WPS: attr type=0x1021 len=3
1644347790.617697: WPS: attr type=0x1023 len=4
1644347790.617718: WPS: attr type=0x1024 len=4
1644347790.617739: WPS: attr type=0x1042 len=4
1644347790.617759: WPS: attr type=0x1054 len=8
1644347790.617780: WPS: attr type=0x1011 len=4
1644347790.617801: WPS: attr type=0x1008 len=2
1644347790.617822: WPS: attr type=0x103c len=1
1644347790.617843: WPS: attr type=0x1049 len=6
1644347790.617865: WPS: WFA subelement id=0 len=1
1644347790.617979: BSS: last_scan_res_used=6/32
1644347790.618011: wlan1: Scan-only results received
1644347790.618052: WPS: attr type=0x104a len=1
1644347790.618077: WPS: attr type=0x1044 len=1
1644347790.618099: WPS: attr type=0x103b len=1
1644347790.618120: WPS: attr type=0x1047 len=16
1644347790.618142: WPS: attr type=0x1021 len=3
1644347790.618163: WPS: attr type=0x1023 len=4
1644347790.618184: WPS: attr type=0x1024 len=4
1644347790.618205: WPS: attr type=0x1042 len=4
1644347790.618226: WPS: attr type=0x1054 len=8
1644347790.618247: WPS: attr type=0x1011 len=4
1644347790.618269: WPS: attr type=0x1008 len=2
1644347790.618290: WPS: attr type=0x103c len=1
1644347790.618311: WPS: attr type=0x1049 len=6
1644347790.618332: WPS: WFA subelement id=0 len=1
1644347790.618354: WPS: attr type=0x104a len=1
1644347790.618375: WPS: attr type=0x1044 len=1
1644347790.618396: WPS: attr type=0x103b len=1
1644347790.618417: WPS: attr type=0x1047 len=16
1644347790.618438: WPS: attr type=0x1021 len=3
1644347790.618459: WPS: attr type=0x1023 len=4
1644347790.618480: WPS: attr type=0x1024 len=4
1644347790.618501: WPS: attr type=0x1042 len=4
1644347790.618521: WPS: attr type=0x1054 len=8
1644347790.618542: WPS: attr type=0x1011 len=4
1644347790.618563: WPS: attr type=0x1008 len=2
1644347790.618585: WPS: attr type=0x103c len=1
1644347790.618606: WPS: attr type=0x1049 len=6
1644347790.618627: WPS: WFA subelement id=0 len=1
1644347790.618648: WPS: attr type=0x104a len=1
1644347790.618669: WPS: attr type=0x1044 len=1
1644347790.618690: WPS: attr type=0x103b len=1
1644347790.618711: WPS: attr type=0x1047 len=16
1644347790.618732: WPS: attr type=0x1021 len=3
1644347790.618753: WPS: attr type=0x1023 len=4
1644347790.618774: WPS: attr type=0x1024 len=4
1644347790.618795: WPS: attr type=0x1042 len=4
1644347790.618816: WPS: attr type=0x1054 len=8
1644347790.618837: WPS: attr type=0x1011 len=4
1644347790.618858: WPS: attr type=0x1008 len=2
1644347790.618879: WPS: attr type=0x103c len=1
1644347790.618900: WPS: attr type=0x1049 len=6
1644347790.618921: WPS: WFA subelement id=0 len=1
1644347790.618944: WPS: attr type=0x104a len=1
1644347790.618965: WPS: attr type=0x1044 len=1
1644347790.618986: WPS: attr type=0x103b len=1
1644347790.619007: WPS: attr type=0x1047 len=16
1644347790.619029: WPS: attr type=0x1021 len=3
1644347790.619049: WPS: attr type=0x1023 len=4
1644347790.619070: WPS: attr type=0x1024 len=4
1644347790.619091: WPS: attr type=0x1042 len=4
1644347790.619112: WPS: attr type=0x1054 len=8
1644347790.619133: WPS: attr type=0x1011 len=4
1644347790.619154: WPS: attr type=0x1008 len=2
1644347790.619176: WPS: attr type=0x103c len=1
1644347790.619197: WPS: attr type=0x1049 len=6
1644347790.619218: WPS: WFA subelement id=0 len=1
1644347790.619239: WPS: attr type=0x104a len=1
1644347790.619260: WPS: attr type=0x1044 len=1
1644347790.619281: WPS: attr type=0x103b len=1
1644347790.619302: WPS: attr type=0x1047 len=16
1644347790.619323: WPS: attr type=0x1021 len=3
1644347790.619344: WPS: attr type=0x1023 len=4
1644347790.619365: WPS: attr type=0x1024 len=4
1644347790.619385: WPS: attr type=0x1042 len=4
1644347790.619406: WPS: attr type=0x1054 len=8
1644347790.619427: WPS: attr type=0x1011 len=4
1644347790.619448: WPS: attr type=0x1008 len=2
1644347790.619469: WPS: attr type=0x103c len=1
1644347790.619490: WPS: attr type=0x1049 len=6
1644347790.619511: WPS: WFA subelement id=0 len=1
1644347790.619532: WPS: attr type=0x104a len=1
1644347790.619553: WPS: attr type=0x1044 len=1
1644347790.619574: WPS: attr type=0x103b len=1
1644347790.619595: WPS: attr type=0x1047 len=16
1644347790.619616: WPS: attr type=0x1021 len=3
1644347790.619637: WPS: attr type=0x1023 len=4
1644347790.619657: WPS: attr type=0x1024 len=4
1644347790.619678: WPS: attr type=0x1042 len=4
1644347790.619699: WPS: attr type=0x1054 len=8
1644347790.619720: WPS: attr type=0x1011 len=4
1644347790.619741: WPS: attr type=0x1008 len=2
1644347790.619762: WPS: attr type=0x103c len=1
1644347790.619783: WPS: attr type=0x1049 len=6
1644347790.619803: WPS: WFA subelement id=0 len=1
1644347790.619826: WPS: attr type=0x104a len=1
1644347790.619862: WPS: attr type=0x1044 len=1
1644347790.619884: WPS: attr type=0x103b len=1
1644347790.619906: WPS: attr type=0x1047 len=16
1644347790.619927: WPS: attr type=0x1021 len=3
1644347790.619949: WPS: attr type=0x1023 len=4
1644347790.619970: WPS: attr type=0x1024 len=4
1644347790.619991: WPS: attr type=0x1042 len=4
1644347790.620012: WPS: attr type=0x1054 len=8
1644347790.620033: WPS: attr type=0x1011 len=4
1644347790.620054: WPS: attr type=0x1008 len=2
1644347790.620090: WPS: attr type=0x103c len=1
1644347790.620124: WPS: attr type=0x1049 len=6
1644347790.620146: WPS: WFA subelement id=0 len=1
1644347790.620168: WPS: attr type=0x104a len=1
1644347790.620189: WPS: attr type=0x1044 len=1
1644347790.620211: WPS: attr type=0x103b len=1
1644347790.620232: WPS: attr type=0x1047 len=16
1644347790.620253: WPS: attr type=0x1021 len=3
1644347790.620274: WPS: attr type=0x1023 len=4
1644347790.620295: WPS: attr type=0x1024 len=4
1644347790.620316: WPS: attr type=0x1042 len=4
1644347790.620337: WPS: attr type=0x1054 len=8
1644347790.620358: WPS: attr type=0x1011 len=4
1644347790.620379: WPS: attr type=0x1008 len=2
1644347790.620400: WPS: attr type=0x103c len=1
1644347790.620421: WPS: attr type=0x1049 len=6
1644347790.620442: WPS: WFA subelement id=0 len=1
1644347790.620463: WPS: attr type=0x104a len=1
1644347790.620484: WPS: attr type=0x1044 len=1
1644347790.620505: WPS: attr type=0x103b len=1
1644347790.620526: WPS: attr type=0x1047 len=16
1644347790.620547: WPS: attr type=0x1021 len=3
1644347790.620568: WPS: attr type=0x1023 len=4
1644347790.620589: WPS: attr type=0x1024 len=4
1644347790.620610: WPS: attr type=0x1042 len=4
1644347790.620630: WPS: attr type=0x1054 len=8
1644347790.620651: WPS: attr type=0x1011 len=4
1644347790.620672: WPS: attr type=0x1008 len=2
1644347790.620693: WPS: attr type=0x103c len=1
1644347790.620714: WPS: attr type=0x1049 len=6
1644347790.620734: WPS: WFA subelement id=0 len=1
1644347790.620757: WPS: attr type=0x104a len=1
1644347790.620792: WPS: attr type=0x1044 len=1
1644347790.620813: WPS: attr type=0x103b len=1
1644347790.620835: WPS: attr type=0x1047 len=16
1644347790.620856: WPS: attr type=0x1021 len=3
1644347790.620877: WPS: attr type=0x1023 len=4
1644347790.620898: WPS: attr type=0x1024 len=4
1644347790.620920: WPS: attr type=0x1042 len=4
1644347790.620941: WPS: attr type=0x1054 len=8
1644347790.620962: WPS: attr type=0x1011 len=4
1644347790.620983: WPS: attr type=0x1008 len=2
1644347790.621004: WPS: attr type=0x103c len=1
1644347790.621025: WPS: attr type=0x1049 len=6
1644347790.621047: WPS: WFA subelement id=0 len=1
1644347790.621069: WPS: attr type=0x104a len=1
1644347790.621090: WPS: attr type=0x1044 len=1
1644347790.621111: WPS: attr type=0x103b len=1
1644347790.621132: WPS: attr type=0x1047 len=16
1644347790.621153: WPS: attr type=0x1021 len=3
1644347790.621174: WPS: attr type=0x1023 len=4
1644347790.621195: WPS: attr type=0x1024 len=4
1644347790.621215: WPS: attr type=0x1042 len=4
1644347790.621236: WPS: attr type=0x1054 len=8
1644347790.621257: WPS: attr type=0x1011 len=4
1644347790.621278: WPS: attr type=0x1008 len=2
1644347790.621298: WPS: attr type=0x103c len=1
1644347790.621319: WPS: attr type=0x1049 len=6
1644347790.621340: WPS: WFA subelement id=0 len=1
1644347790.621361: WPS: attr type=0x104a len=1
1644347790.621382: WPS: attr type=0x1044 len=1
1644347790.621404: WPS: attr type=0x103b len=1
1644347790.621425: WPS: attr type=0x1047 len=16
1644347790.621446: WPS: attr type=0x1021 len=3
1644347790.621467: WPS: attr type=0x1023 len=4
1644347790.621488: WPS: attr type=0x1024 len=4
1644347790.621509: WPS: attr type=0x1042 len=4
1644347790.621530: WPS: attr type=0x1054 len=8
1644347790.621551: WPS: attr type=0x1011 len=4
1644347790.621572: WPS: attr type=0x1008 len=2
1644347790.621593: WPS: attr type=0x103c len=1
1644347790.621614: WPS: attr type=0x1049 len=6
1644347790.621635: WPS: WFA subelement id=0 len=1
1644347790.621657: WPS: attr type=0x104a len=1
1644347790.621679: WPS: attr type=0x1044 len=1
1644347790.621700: WPS: attr type=0x103b len=1
1644347790.621720: WPS: attr type=0x1047 len=16
1644347790.621758: WPS: attr type=0x1021 len=3
1644347790.621779: WPS: attr type=0x1023 len=4
1644347790.621800: WPS: attr type=0x1024 len=4
1644347790.621821: WPS: attr type=0x1042 len=4
1644347790.621842: WPS: attr type=0x1054 len=8
1644347790.621863: WPS: attr type=0x1011 len=4
1644347790.621884: WPS: attr type=0x1008 len=2
1644347790.621905: WPS: attr type=0x103c len=1
1644347790.621926: WPS: attr type=0x1049 len=6
1644347790.621946: WPS: WFA subelement id=0 len=1
1644347790.621968: WPS: attr type=0x104a len=1
1644347790.621989: WPS: attr type=0x1044 len=1
1644347790.622010: WPS: attr type=0x103b len=1
1644347790.622031: WPS: attr type=0x1047 len=16
1644347790.622052: WPS: attr type=0x1021 len=3
1644347790.622073: WPS: attr type=0x1023 len=4
1644347790.622094: WPS: attr type=0x1024 len=4
1644347790.622115: WPS: attr type=0x1042 len=4
1644347790.622136: WPS: attr type=0x1054 len=8
1644347790.622157: WPS: attr type=0x1011 len=4
1644347790.622178: WPS: attr type=0x1008 len=2
1644347790.622199: WPS: attr type=0x103c len=1
1644347790.622220: WPS: attr type=0x1049 len=6
1644347790.622241: WPS: WFA subelement id=0 len=1
1644347790.622262: WPS: attr type=0x104a len=1
1644347790.622283: WPS: attr type=0x1044 len=1
1644347790.622305: WPS: attr type=0x103b len=1
1644347790.622325: WPS: attr type=0x1047 len=16
1644347790.622346: WPS: attr type=0x1021 len=3
1644347790.622367: WPS: attr type=0x1023 len=4
1644347790.622388: WPS: attr type=0x1024 len=4
1644347790.622409: WPS: attr type=0x1042 len=4
1644347790.622430: WPS: attr type=0x1054 len=8
1644347790.622450: WPS: attr type=0x1011 len=4
1644347790.622471: WPS: attr type=0x1008 len=2
1644347790.622492: WPS: attr type=0x103c len=1
1644347790.622513: WPS: attr type=0x1049 len=6
1644347790.622534: WPS: WFA subelement id=0 len=1
1644347790.622556: WPS: attr type=0x104a len=1
1644347790.622578: WPS: attr type=0x1044 len=1
1644347790.622599: WPS: attr type=0x103b len=1
1644347790.622619: WPS: attr type=0x1047 len=16
1644347790.622640: WPS: attr type=0x1021 len=3
1644347790.622661: WPS: attr type=0x1023 len=4
1644347790.622682: WPS: attr type=0x1024 len=4
1644347790.622703: WPS: attr type=0x1042 len=4
1644347790.622724: WPS: attr type=0x1054 len=8
1644347790.622745: WPS: attr type=0x1011 len=4
1644347790.622766: WPS: attr type=0x1008 len=2
1644347790.622787: WPS: attr type=0x103c len=1
1644347790.622808: WPS: attr type=0x1049 len=6
1644347790.622829: WPS: WFA subelement id=0 len=1
1644347790.622851: WPS: attr type=0x104a len=1
1644347790.622872: WPS: attr type=0x1044 len=1
1644347790.622893: WPS: attr type=0x103b len=1
1644347790.622913: WPS: attr type=0x1047 len=16
1644347790.622934: WPS: attr type=0x1021 len=3
1644347790.622955: WPS: attr type=0x1023 len=4
1644347790.622976: WPS: attr type=0x1024 len=4
1644347790.622996: WPS: attr type=0x1042 len=4
1644347790.623017: WPS: attr type=0x1054 len=8
1644347790.623038: WPS: attr type=0x1011 len=4
1644347790.623058: WPS: attr type=0x1008 len=2
1644347790.623079: WPS: attr type=0x103c len=1
1644347790.623100: WPS: attr type=0x1049 len=6
1644347790.623121: WPS: WFA subelement id=0 len=1
1644347790.623142: WPS: attr type=0x104a len=1
1644347790.623163: WPS: attr type=0x1044 len=1
1644347790.623183: WPS: attr type=0x103b len=1
1644347790.623204: WPS: attr type=0x1047 len=16
1644347790.623225: WPS: attr type=0x1021 len=3
1644347790.623246: WPS: attr type=0x1023 len=4
1644347790.623267: WPS: attr type=0x1024 len=4
1644347790.623288: WPS: attr type=0x1042 len=4
1644347790.623309: WPS: attr type=0x1054 len=8
1644347790.623356: WPS: attr type=0x1011 len=4
1644347790.623378: WPS: attr type=0x1008 len=2
1644347790.623399: WPS: attr type=0x103c len=1
1644347790.623421: WPS: attr type=0x1049 len=6
1644347790.623442: WPS: WFA subelement id=0 len=1
1644347790.623501: wlan1: Radio work 'scan'@0x55a48858ed50 done in 3.112413 seconds
1644347790.623531: wlan1: radio_work_free('scan'@0x55a48858ed50): num_active_works --> 0
1644347790.623567: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347790.623878: dbus: org.freedesktop.DBus.Properties.GetAll (/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/0) [s]
1644347790.623980: WPS: attr type=0x104a len=1
1644347790.624007: WPS: attr type=0x1044 len=1
1644347790.624029: WPS: attr type=0x103b len=1
1644347790.624051: WPS: attr type=0x1047 len=16
1644347790.624072: WPS: attr type=0x1021 len=3
1644347790.624094: WPS: attr type=0x1023 len=4
1644347790.624115: WPS: attr type=0x1024 len=4
1644347790.624136: WPS: attr type=0x1042 len=4
1644347790.624157: WPS: attr type=0x1054 len=8
1644347790.624178: WPS: attr type=0x1011 len=4
1644347790.624200: WPS: attr type=0x1008 len=2
1644347790.624221: WPS: attr type=0x103c len=1
1644347790.624242: WPS: attr type=0x1049 len=6
1644347790.624263: WPS: WFA subelement id=0 len=1
1644347790.624285: WPS: attr type=0x104a len=1
1644347790.624306: WPS: attr type=0x1044 len=1
1644347790.624327: WPS: attr type=0x103b len=1
1644347790.624348: WPS: attr type=0x1047 len=16
1644347790.624369: WPS: attr type=0x1021 len=3
1644347790.624390: WPS: attr type=0x1023 len=4
1644347790.624411: WPS: attr type=0x1024 len=4
1644347790.624432: WPS: attr type=0x1042 len=4
1644347790.624453: WPS: attr type=0x1054 len=8
1644347790.624474: WPS: attr type=0x1011 len=4
1644347790.624495: WPS: attr type=0x1008 len=2
1644347790.624516: WPS: attr type=0x103c len=1
1644347790.624537: WPS: attr type=0x1049 len=6
1644347790.624558: WPS: WFA subelement id=0 len=1
1644347790.624702: dbus: org.freedesktop.DBus.Properties.GetAll (/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/1) [s]
1644347790.624822: WPS: attr type=0x104a len=1
1644347790.624852: WPS: attr type=0x1044 len=1
1644347790.624873: WPS: attr type=0x103b len=1
1644347790.624894: WPS: attr type=0x1047 len=16
1644347790.624915: WPS: attr type=0x1021 len=3
1644347790.624936: WPS: attr type=0x1023 len=4
1644347790.624957: WPS: attr type=0x1024 len=4
1644347790.624978: WPS: attr type=0x1042 len=4
1644347790.624999: WPS: attr type=0x1054 len=8
1644347790.625020: WPS: attr type=0x1011 len=4
1644347790.625041: WPS: attr type=0x1008 len=2
1644347790.625062: WPS: attr type=0x103c len=1
1644347790.625083: WPS: attr type=0x1049 len=6
1644347790.625104: WPS: WFA subelement id=0 len=1
1644347790.625125: WPS: attr type=0x104a len=1
1644347790.625147: WPS: attr type=0x1044 len=1
1644347790.625168: WPS: attr type=0x103b len=1
1644347790.625189: WPS: attr type=0x1047 len=16
1644347790.625210: WPS: attr type=0x1021 len=3
1644347790.625231: WPS: attr type=0x1023 len=4
1644347790.625252: WPS: attr type=0x1024 len=4
1644347790.625272: WPS: attr type=0x1042 len=4
1644347790.625294: WPS: attr type=0x1054 len=8
1644347790.625315: WPS: attr type=0x1011 len=4
1644347790.625335: WPS: attr type=0x1008 len=2
1644347790.625374: WPS: attr type=0x103c len=1
1644347790.625397: WPS: attr type=0x1049 len=6
1644347790.625419: WPS: WFA subelement id=0 len=1
1644347790.625543: dbus: org.freedesktop.DBus.Properties.GetAll (/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/2) [s]
1644347790.625630: WPS: attr type=0x104a len=1
1644347790.625657: WPS: attr type=0x1044 len=1
1644347790.625678: WPS: attr type=0x103b len=1
1644347790.625700: WPS: attr type=0x1047 len=16
1644347790.625722: WPS: attr type=0x1021 len=3
1644347790.625743: WPS: attr type=0x1023 len=4
1644347790.625764: WPS: attr type=0x1024 len=4
1644347790.625786: WPS: attr type=0x1042 len=4
1644347790.625807: WPS: attr type=0x1054 len=8
1644347790.625828: WPS: attr type=0x1011 len=4
1644347790.625849: WPS: attr type=0x1008 len=2
1644347790.625871: WPS: attr type=0x103c len=1
1644347790.625892: WPS: attr type=0x1049 len=6
1644347790.625913: WPS: WFA subelement id=0 len=1
1644347790.625935: WPS: attr type=0x104a len=1
1644347790.625956: WPS: attr type=0x1044 len=1
1644347790.625977: WPS: attr type=0x103b len=1
1644347790.625998: WPS: attr type=0x1047 len=16
1644347790.626020: WPS: attr type=0x1021 len=3
1644347790.626040: WPS: attr type=0x1023 len=4
1644347790.626061: WPS: attr type=0x1024 len=4
1644347790.626082: WPS: attr type=0x1042 len=4
1644347790.626103: WPS: attr type=0x1054 len=8
1644347790.626141: WPS: attr type=0x1011 len=4
1644347790.626164: WPS: attr type=0x1008 len=2
1644347790.626186: WPS: attr type=0x103c len=1
1644347790.626207: WPS: attr type=0x1049 len=6
1644347790.626228: WPS: WFA subelement id=0 len=1
1644347790.626357: dbus: org.freedesktop.DBus.Properties.GetAll (/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/3) [s]
1644347790.626443: WPS: attr type=0x104a len=1
1644347790.626470: WPS: attr type=0x1044 len=1
1644347790.626491: WPS: attr type=0x103b len=1
1644347790.626513: WPS: attr type=0x1047 len=16
1644347790.626535: WPS: attr type=0x1021 len=3
1644347790.626556: WPS: attr type=0x1023 len=4
1644347790.626577: WPS: attr type=0x1024 len=4
1644347790.626598: WPS: attr type=0x1042 len=4
1644347790.626619: WPS: attr type=0x1054 len=8
1644347790.626640: WPS: attr type=0x1011 len=4
1644347790.626661: WPS: attr type=0x1008 len=2
1644347790.626681: WPS: attr type=0x103c len=1
1644347790.626702: WPS: attr type=0x1049 len=6
1644347790.626723: WPS: WFA subelement id=0 len=1
1644347790.626745: WPS: attr type=0x104a len=1
1644347790.626766: WPS: attr type=0x1044 len=1
1644347790.626787: WPS: attr type=0x103b len=1
1644347790.626808: WPS: attr type=0x1047 len=16
1644347790.626829: WPS: attr type=0x1021 len=3
1644347790.626850: WPS: attr type=0x1023 len=4
1644347790.626871: WPS: attr type=0x1024 len=4
1644347790.626892: WPS: attr type=0x1042 len=4
1644347790.626913: WPS: attr type=0x1054 len=8
1644347790.626949: WPS: attr type=0x1011 len=4
1644347790.626983: WPS: attr type=0x1008 len=2
1644347790.627022: WPS: attr type=0x103c len=1
1644347790.627036: WPS: attr type=0x1049 len=6
1644347790.627050: WPS: WFA subelement id=0 len=1
1644347790.627140: dbus: org.freedesktop.DBus.Properties.GetAll (/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/4) [s]
1644347790.627204: WPS: attr type=0x104a len=1
1644347790.627224: WPS: attr type=0x1044 len=1
1644347790.627238: WPS: attr type=0x103b len=1
1644347790.627253: WPS: attr type=0x1047 len=16
1644347790.627269: WPS: attr type=0x1021 len=3
1644347790.627284: WPS: attr type=0x1023 len=4
1644347790.627315: WPS: attr type=0x1024 len=4
1644347790.627337: WPS: attr type=0x1042 len=4
1644347790.627358: WPS: attr type=0x1054 len=8
1644347790.627379: WPS: attr type=0x1011 len=4
1644347790.627407: WPS: attr type=0x1008 len=2
1644347790.627444: WPS: attr type=0x103c len=1
1644347790.627483: WPS: attr type=0x1049 len=6
1644347790.627522: WPS: WFA subelement id=0 len=1
1644347790.627560: WPS: attr type=0x104a len=1
1644347790.627598: WPS: attr type=0x1044 len=1
1644347790.627634: WPS: attr type=0x103b len=1
1644347790.627672: WPS: attr type=0x1047 len=16
1644347790.627708: WPS: attr type=0x1021 len=3
1644347790.627730: WPS: attr type=0x1023 len=4
1644347790.627751: WPS: attr type=0x1024 len=4
1644347790.627772: WPS: attr type=0x1042 len=4
1644347790.627793: WPS: attr type=0x1054 len=8
1644347790.627815: WPS: attr type=0x1011 len=4
1644347790.627836: WPS: attr type=0x1008 len=2
1644347790.627856: WPS: attr type=0x103c len=1
1644347790.627878: WPS: attr type=0x1049 len=6
1644347790.627899: WPS: WFA subelement id=0 len=1
1644347790.628079: dbus: org.freedesktop.DBus.Properties.GetAll (/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/5) [s]
1644347790.628262: WPS: attr type=0x104a len=1
1644347790.628314: WPS: attr type=0x1044 len=1
1644347790.628343: WPS: attr type=0x103b len=1
1644347790.628365: WPS: attr type=0x1047 len=16
1644347790.628392: WPS: attr type=0x1021 len=3
1644347790.628430: WPS: attr type=0x1023 len=4
1644347790.628471: WPS: attr type=0x1024 len=4
1644347790.628509: WPS: attr type=0x1042 len=4
1644347790.628547: WPS: attr type=0x1054 len=8
1644347790.628584: WPS: attr type=0x1011 len=4
1644347790.628622: WPS: attr type=0x1008 len=2
1644347790.628659: WPS: attr type=0x103c len=1
1644347790.628702: WPS: attr type=0x1049 len=6
1644347790.628727: WPS: WFA subelement id=0 len=1
1644347790.628748: WPS: attr type=0x104a len=1
1644347790.628802: WPS: attr type=0x1044 len=1
1644347790.628826: WPS: attr type=0x103b len=1
1644347790.628848: WPS: attr type=0x1047 len=16
1644347790.628870: WPS: attr type=0x1021 len=3
1644347790.628910: WPS: attr type=0x1023 len=4
1644347790.628933: WPS: attr type=0x1024 len=4
1644347790.628954: WPS: attr type=0x1042 len=4
1644347790.628976: WPS: attr type=0x1054 len=8
1644347790.628997: WPS: attr type=0x1011 len=4
1644347790.629018: WPS: attr type=0x1008 len=2
1644347790.629040: WPS: attr type=0x103c len=1
1644347790.629061: WPS: attr type=0x1049 len=6
1644347790.629082: WPS: WFA subelement id=0 len=1
1644347790.629226: RTM_NEWLINK: ifi_index=3 ifname=wlan1 wext ifi_family=0 ifi_flags=0x1003 ([UP])
1644347790.650941: RTM_NEWLINK: ifi_index=3 ifname=wlan1 operstate=2 linkmode=1 ifi_family=0 ifi_flags=0x1002 ()
1644347790.651113: nl80211: Interface down (wlan1/wlan1)
1644347790.651186: wlan1: Event INTERFACE_DISABLED (26) received
1644347790.651231: wlan1: Interface was disabled
1644347790.651394: nl80211: Data frame filter flags=0x0
1644347790.651518: nl80211: Failed to open /proc/sys/net/ipv4/conf/wlan1/drop_unicast_in_l2_multicast: Read-only file system
1644347790.651558: nl80211: Failed to set IPv4 unicast in multicast filter
1644347790.651584: wlan1: State: DISCONNECTED -> DISCONNECTED
1644347790.651607: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347790.651631: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347790.651672: EAPOL: External notification - portEnabled=0
1644347790.651700: EAPOL: External notification - portValid=0
1644347790.651728: wlan1: State: DISCONNECTED -> INTERFACE_DISABLED
1644347790.651885: RTM_NEWLINK: ifi_index=3 ifname=wlan1 operstate=2 linkmode=1 ifi_family=0 ifi_flags=0x1002 ()
1644347790.651956: l2_packet_receive - recvfrom: Network is down
1644347790.656920: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347791.064855: RTM_NEWLINK: ifi_index=3 ifname=wlan1 operstate=2 linkmode=1 ifi_family=0 ifi_flags=0x1003 ([UP])
1644347791.065012: nl80211: Interface up (wlan1/wlan1)
1644347791.065088: nl80211: Own MAC address on ifindex 3 (wlan1) changed from 1a:7c:60:78:53:82 to c4:85:08:14:a1:b8
1644347791.065139: wlan1: Event INTERFACE_ENABLED (25) received
1644347791.065172: wlan1: Interface was enabled
1644347791.089105: wlan1: State: INTERFACE_DISABLED -> DISCONNECTED
1644347791.089187: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347791.089215: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347791.089368: wlan1: Setting scan request: 0.000000 sec
1644347791.089466: wlan1: No enabled networks - do not scan
1644347791.089503: wlan1: State: DISCONNECTED -> INACTIVE
1644347791.089758: dbus: org.freedesktop.DBus.Properties.Set (/fi/w1/wpa_supplicant1/Interfaces/1) [ssv]
1644347791.089808: properties_get_or_set: Set(ProcessCredentials)
1644347791.090000: dbus: fi.w1.wpa_supplicant1.Interface.WPS.Cancel (/fi/w1/wpa_supplicant1/Interfaces/1) []
1644347791.090069: wlan1: WPS-CANCEL 
1644347791.090169: dbus: org.freedesktop.DBus.Properties.Set (/fi/w1/wpa_supplicant1/Interfaces/1) [ssv]
1644347791.090215: properties_get_or_set: Set(BridgeIfname)
1644347791.090325: dbus: org.freedesktop.DBus.Properties.Set (/fi/w1/wpa_supplicant1/Interfaces/1) [ssv]
1644347791.090377: properties_get_or_set: Set(ApScan)
1644347791.090483: dbus: org.freedesktop.DBus.Properties.Set (/fi/w1/wpa_supplicant1/Interfaces/1) [ssv]
1644347791.090537: properties_get_or_set: Set(ApIsolate)
1644347791.090588: ap_isolate=0
1644347791.091641: dbus: fi.w1.wpa_supplicant1.Interface.AddNetwork (/fi/w1/wpa_supplicant1/Interfaces/1) [a{sv}]
1644347791.091717: dbus: Register network object '/fi/w1/wpa_supplicant1/Interfaces/1/Networks/0'
1644347791.091959: wpa_dbus_dict_open_read: start reading a dict entry
1644347791.091993: wpa_dbus_dict_get_entry: dict entry key: psk
1644347791.092017: wpa_dbus_dict_get_entry: dict entry variant content type: s
1644347791.092040: _wpa_dbus_dict_fill_value_from_variant: string value: [omitted]
1644347791.092076: PSK (ASCII passphrase) - hexdump_ascii(len=20): [REMOVED]
1644347791.092104: wpa_dbus_dict_get_entry: dict entry key: scan_ssid
1644347791.092167: wpa_dbus_dict_get_entry: dict entry variant content type: i
1644347791.092191: _wpa_dbus_dict_fill_value_from_variant: int32 value: 1
1644347791.092217: scan_ssid=1 (0x1)
1644347791.092242: wpa_dbus_dict_get_entry: dict entry key: key_mgmt
1644347791.092264: wpa_dbus_dict_get_entry: dict entry variant content type: s
1644347791.092286: _wpa_dbus_dict_fill_value_from_variant: string value: [omitted]
1644347791.092311: key_mgmt: 0x502
1644347791.092335: wpa_dbus_dict_get_entry: dict entry key: bgscan
1644347791.092358: wpa_dbus_dict_get_entry: dict entry variant content type: a
1644347791.092380: _wpa_dbus_dict_entry_get_array: array_type y
1644347791.092408: dbus: byte array contents - hexdump(len=19): [REMOVED]
1644347791.092446: bgscan - hexdump_ascii(len=19):
     73 69 6d 70 6c 65 3a 33 30 3a 2d 37 30 3a 38 36   simple:30:-70:86
     34 30 30                                          400             
1644347791.092501: wpa_dbus_dict_get_entry: dict entry key: ssid
1644347791.092524: wpa_dbus_dict_get_entry: dict entry variant content type: a
1644347791.092546: _wpa_dbus_dict_entry_get_array: array_type y
1644347791.092572: dbus: byte array contents - hexdump(len=17): [REMOVED]
1644347791.092601: ssid - hexdump_ascii(len=17):
     46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54   FRITZ!Box 7590 T
     43                                                C               
1644347791.102469: PSK (from passphrase) - hexdump(len=32): [REMOVED]
1644347791.102505: wpa_dbus_dict_get_entry: dict entry key: auth_alg
1644347791.102528: wpa_dbus_dict_get_entry: dict entry variant content type: s
1644347791.102549: _wpa_dbus_dict_fill_value_from_variant: string value: [omitted]
1644347791.102574: auth_alg: 0x1
1644347791.103644: dbus: fi.w1.wpa_supplicant1.Interface.SelectNetwork (/fi/w1/wpa_supplicant1/Interfaces/1) [o]
1644347791.103726: wlan1: Scan results matching the currently selected network
1644347791.103773: wlan1: 0: 2c:91:ab:e0:30:35 freq=5260 level=-46 snr=46 est_throughput=135000
1644347791.103807: wlan1: 1: 2c:91:ab:e0:30:34 freq=2437 level=-31 snr=58 est_throughput=65000
1644347791.103838: wlan1: 2: e0:28:6d:7e:94:3c freq=2437 level=-66 snr=23 est_throughput=62400
1644347791.103868: wlan1: 3: e0:28:6d:7e:94:3b freq=5260 level=-80 snr=12 est_throughput=40500
1644347791.103896: wlan1: Selecting BSS from priority group 0
1644347791.103930: wlan1: 0: 2c:91:ab:e0:30:35 ssid='FRITZ!Box 7590 TC' wpa_ie_len=0 rsn_ie_len=24 caps=0x1511 level=-46 freq=5260  wps
1644347791.103956: wlan1:    selected based on RSN IE
1644347791.103984: wlan1:    selected BSS 2c:91:ab:e0:30:35 ssid='FRITZ!Box 7590 TC'
1644347791.104019: wlan1: Considering connect request: reassociate: 1  selected: 2c:91:ab:e0:30:35  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: INACTIVE  ssid=0x55a488595780  current_ssid=0x55a488595780
1644347791.104044: wlan1: Request association with 2c:91:ab:e0:30:35
1644347791.104070: unknown vendor specific information element ignored (vendor OUI 00:03:7f len=9)
1644347791.104093: unknown vendor specific information element ignored (vendor OUI 00:04:0e len=12)
1644347791.104116: unknown vendor specific information element ignored (vendor OUI 00:03:7f len=7)
1644347791.104138: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=22)
1644347791.104159: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=8)
1644347791.104181: TDLS: TDLS is allowed in the target BSS
1644347791.104202: TDLS: TDLS channel switch allowed in the target BSS
1644347791.104225: wlan1: No ongoing scan/p2p-scan found to abort
1644347791.104251: wlan1: Add radio work 'sme-connect'@0x55a4885940d0
1644347791.104274: wlan1: First radio work item in the queue - schedule start immediately
1644347791.104482: wlan1: Starting radio work 'sme-connect'@0x55a4885940d0 after 0.000205 second wait
1644347791.104517: wlan1: WPA: clearing own WPA/RSN IE
1644347791.104541: wlan1: RSN: clearing own RSNXE
1644347791.104565: wlan1: Automatic auth_alg selection: 0x1
1644347791.104616: wlan1: Overriding auth_alg selection: 0x1
1644347791.104642: wlan1: Using SAE auth_alg
1644347791.104666: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x0
1644347791.104689: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347791.104726: RSN: No PMKSA cache entry found
1644347791.104752: wlan1: RSN: using IEEE 802.11i/D9.0
1644347791.104804: wlan1: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1026 proto 2
1644347791.104836: wlan1: WPA: Selected mgmt group cipher 32
1644347791.104860: wlan1: WPA: clearing AP WPA IE
1644347791.104882: WPA: set AP RSN IE - hexdump(len=26): 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347791.104913: wlan1: WPA: clearing AP RSNXE
1644347791.104938: wlan1: WPA: AP group 0x10 network profile group 0x18; available group 0x10
1644347791.104962: wlan1: WPA: using GTK CCMP
1644347791.104986: wlan1: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
1644347791.105009: wlan1: WPA: using PTK CCMP
1644347791.105041: wlan1: WPA: AP key_mgmt 0x402 network profile key_mgmt 0x502; available key_mgmt 0x402
1644347791.105082: wlan1: RSN: using KEY_MGMT SAE
1644347791.105121: wlan1: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
1644347791.105136: wlan1: WPA: not using MGMT group cipher
1644347791.105152: 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
1644347791.105170: RSN: Set own RSNXE default - hexdump(len=0):
1644347791.105184: PSK (set in config) - hexdump(len=32): [REMOVED]
1644347791.105199: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347791.105222: RRM: Determining whether RRM can be used - device support: 0x10
1644347791.105245: RRM: Adding RRM IE to Association Request
1644347791.105280: Added supported operating classes IE - hexdump(len=19): 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347791.105315: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x400
1644347791.105339: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347791.105361: RSN: No PMKSA cache entry found
1644347791.105489: SAE: Selecting supported ECC group 19
1644347791.105522: wlan1: SME: Selected SAE group 19
1644347791.105781: SAE: password - hexdump_ascii(len=20): [REMOVED]
1644347791.105811: SAE: PWE derivation - addr1=c4:85:08:14:a1:b8 addr2=2c:91:ab:e0:30:35
1644347791.105836: SAE: counter = 001
1644347791.105881: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.105917: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.106062: SAE: pwd-seed result 1 found=0xff
1644347791.106090: SAE: counter = 002
1644347791.106121: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.106153: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.106281: SAE: pwd-seed result 1 found=0xff
1644347791.106308: SAE: counter = 003
1644347791.106338: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.106370: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.106496: SAE: pwd-seed result 1 found=0xff
1644347791.106522: SAE: counter = 004
1644347791.106552: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.106584: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.106710: SAE: pwd-seed result 0 found=0xff
1644347791.106737: SAE: counter = 005
1644347791.106767: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.106799: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.106924: SAE: pwd-seed result 0 found=0xff
1644347791.106951: SAE: counter = 006
1644347791.106981: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.107013: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.107137: SAE: pwd-seed result 0 found=0xff
1644347791.107164: SAE: counter = 007
1644347791.107194: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.107226: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.107352: SAE: pwd-seed result 0 found=0xff
1644347791.107378: SAE: counter = 008
1644347791.107408: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.107465: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.107593: SAE: pwd-seed result 1 found=0xff
1644347791.107619: SAE: counter = 009
1644347791.107649: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.107681: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.107805: SAE: pwd-seed result 1 found=0xff
1644347791.107832: SAE: counter = 010
1644347791.107862: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.107894: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.108019: SAE: pwd-seed result 1 found=0xff
1644347791.108045: SAE: counter = 011
1644347791.108075: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.108107: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.108232: SAE: pwd-seed result 1 found=0xff
1644347791.108258: SAE: counter = 012
1644347791.108288: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.108320: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.108444: SAE: pwd-seed result 0 found=0xff
1644347791.108470: SAE: counter = 013
1644347791.108500: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.108532: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.108657: SAE: pwd-seed result 1 found=0xff
1644347791.108684: SAE: counter = 014
1644347791.108714: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.108746: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.108900: SAE: pwd-seed result 1 found=0xff
1644347791.108930: SAE: counter = 015
1644347791.108962: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.108994: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.109119: SAE: pwd-seed result 0 found=0xff
1644347791.109146: SAE: counter = 016
1644347791.109176: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.109207: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.109333: SAE: pwd-seed result 0 found=0xff
1644347791.109359: SAE: counter = 017
1644347791.109390: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.109422: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.109547: SAE: pwd-seed result 0 found=0xff
1644347791.109574: SAE: counter = 018
1644347791.109603: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.109635: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.109760: SAE: pwd-seed result 1 found=0xff
1644347791.109786: SAE: counter = 019
1644347791.109816: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.109848: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.109973: SAE: pwd-seed result 1 found=0xff
1644347791.110000: SAE: counter = 020
1644347791.110030: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.110062: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.110187: SAE: pwd-seed result 0 found=0xff
1644347791.110213: SAE: counter = 021
1644347791.110243: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.110275: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.110400: SAE: pwd-seed result 0 found=0xff
1644347791.110426: SAE: counter = 022
1644347791.110456: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.110488: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.110613: SAE: pwd-seed result 1 found=0xff
1644347791.110639: SAE: counter = 023
1644347791.110669: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.110701: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.110825: SAE: pwd-seed result 1 found=0xff
1644347791.110852: SAE: counter = 024
1644347791.110881: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.110913: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.111037: SAE: pwd-seed result 1 found=0xff
1644347791.111064: SAE: counter = 025
1644347791.111094: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.111126: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.111250: SAE: pwd-seed result 1 found=0xff
1644347791.111277: SAE: counter = 026
1644347791.111307: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.111338: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.111463: SAE: pwd-seed result 0 found=0xff
1644347791.111489: SAE: counter = 027
1644347791.111519: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.111577: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.111705: SAE: pwd-seed result 0 found=0xff
1644347791.111732: SAE: counter = 028
1644347791.111762: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.111795: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.111920: SAE: pwd-seed result 0 found=0xff
1644347791.111946: SAE: counter = 029
1644347791.111976: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.112008: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.112132: SAE: pwd-seed result 0 found=0xff
1644347791.112159: SAE: counter = 030
1644347791.112189: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.112220: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.112345: SAE: pwd-seed result 1 found=0xff
1644347791.112375: SAE: counter = 031
1644347791.112405: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.112437: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.112562: SAE: pwd-seed result 0 found=0xff
1644347791.112588: SAE: counter = 032
1644347791.112618: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.112650: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.112797: SAE: pwd-seed result 1 found=0xff
1644347791.112829: SAE: counter = 033
1644347791.112860: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.112892: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.113020: SAE: pwd-seed result 0 found=0xff
1644347791.113047: SAE: counter = 034
1644347791.113077: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.113109: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.113234: SAE: pwd-seed result 0 found=0xff
1644347791.113261: SAE: counter = 035
1644347791.113291: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.113322: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.113448: SAE: pwd-seed result 1 found=0xff
1644347791.113474: SAE: counter = 036
1644347791.113504: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.113536: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.113661: SAE: pwd-seed result 1 found=0xff
1644347791.113687: SAE: counter = 037
1644347791.113717: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.113750: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.113875: SAE: pwd-seed result 1 found=0xff
1644347791.113901: SAE: counter = 038
1644347791.113931: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.113963: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.114088: SAE: pwd-seed result 1 found=0xff
1644347791.114114: SAE: counter = 039
1644347791.114144: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.114176: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.114302: SAE: pwd-seed result 0 found=0xff
1644347791.114328: SAE: counter = 040
1644347791.114358: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.114390: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.114515: SAE: pwd-seed result 1 found=0xff
1644347791.114628: SAE: PWE - hexdump(len=64): [REMOVED]
1644347791.114937: SAE: own commit-scalar - hexdump(len=32): bc 08 9d c1 77 85 2f 19 bb 0a a9 df ee b0 88 03 8d ad 34 69 1a ad 27 a5 82 18 33 a6 ef 74 2e 63
1644347791.114997: SAE: own commit-element(x) - hexdump(len=32): b8 b8 f5 3d 34 39 0f 82 2d 47 fd b1 7b a0 3c 88 7f fa b7 7b c9 9a e0 1c 05 12 4e f1 c3 68 de d7
1644347791.115028: SAE: own commit-element(y) - hexdump(len=32): e3 d3 0d f6 35 b8 da f2 93 99 ac a5 df fe 61 f9 ea c8 c2 6e 2f f2 b4 ad da 90 5d 53 ea 1e 9b 89
1644347791.115059: EAPOL: External notification - EAP success=0
1644347791.115084: EAPOL: External notification - EAP fail=0
1644347791.115106: EAPOL: External notification - portControl=Auto
1644347791.115131: wlan1: Cancelling scan request
1644347791.115159: wlan1: SME: Trying to authenticate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347791.115181: EAPOL: External notification - portValid=0
1644347791.115206: wlan1: State: INACTIVE -> AUTHENTICATING
1644347791.115300: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
1644347791.115352: wlan1: Determining shared radio frequencies (max len 1)
1644347791.115378: wlan1: Shared frequencies (len=0): completed iteration
1644347791.115402: nl80211: Authenticate (ifindex=3)
1644347791.115438:   * bssid=2c:91:ab:e0:30:35
1644347791.115464:   * freq=5260
1644347791.115486:   * SSID=FRITZ!Box 7590 TC
1644347791.115508:   * IEs - hexdump(len=0): [NULL]
1644347791.115530:   * auth_data - hexdump(len=102): 01 00 00 00 13 00 bc 08 9d c1 77 85 2f 19 bb 0a a9 df ee b0 88 03 8d ad 34 69 1a ad 27 a5 82 18 33 a6 ef 74 2e 63 b8 b8 f5 3d 34 39 0f 82 2d 47 fd b1 7b a0 3c 88 7f fa b7 7b c9 9a e0 1c 05 12 4e f1 c3 68 de d7 e3 d3 0d f6 35 b8 da f2 93 99 ac a5 df fe 61 f9 ea c8 c2 6e 2f f2 b4 ad da 90 5d 53 ea 1e 9b 89
1644347791.115577:   * Auth Type 4
1644347791.120078: nl80211: Authentication request send successfully
1644347791.120174: nl80211: Event message available
1644347791.120217: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan1
1644347791.120248: nl80211: New station 2c:91:ab:e0:30:35
1644347791.120359: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347791.490056: nl80211: Event message available
1644347791.490188: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan1
1644347791.490222: nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347791.490255: nl80211: MLME event frame - hexdump(len=128): b0 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 80 cf 03 00 01 00 00 00 13 00 b1 5d da 45 27 56 c8 75 b3 c7 b6 8a 7b d8 1b 0d 90 a6 82 c5 e8 31 c1 97 9c 65 a0 b7 c3 5a a3 78 cc 5a 3e 81 48 92 04 04 2a 5c e7 6b f4 45 33 96 a9 62 cf 02 df 4b f6 4b 74 44 a7 75 56 0e 7a 10 34 39 ad d4 78 a3 f1 d0 fb c0 29 a1 08 eb 87 48 73 ee d4 66 c4 e2 54 02 5a cb 25 a7 e1 90 07 fd
1644347791.490313: nl80211: Authenticate event
1644347791.490346: wlan1: Event AUTH (10) received
1644347791.490380: wlan1: SME: Authentication response: peer=2c:91:ab:e0:30:35 auth_type=3 auth_transaction=1 status_code=0
1644347791.490406: SME: Authentication response IEs - hexdump(len=98): 13 00 b1 5d da 45 27 56 c8 75 b3 c7 b6 8a 7b d8 1b 0d 90 a6 82 c5 e8 31 c1 97 9c 65 a0 b7 c3 5a a3 78 cc 5a 3e 81 48 92 04 04 2a 5c e7 6b f4 45 33 96 a9 62 cf 02 df 4b f6 4b 74 44 a7 75 56 0e 7a 10 34 39 ad d4 78 a3 f1 d0 fb c0 29 a1 08 eb 87 48 73 ee d4 66 c4 e2 54 02 5a cb 25 a7 e1 90 07 fd
1644347791.490461: wlan1: SME: SAE authentication transaction 1 status code 0
1644347791.490488: wlan1: SME SAE commit
1644347791.490528: SAE: Peer commit-scalar - hexdump(len=32): b1 5d da 45 27 56 c8 75 b3 c7 b6 8a 7b d8 1b 0d 90 a6 82 c5 e8 31 c1 97 9c 65 a0 b7 c3 5a a3 78
1644347791.490566: SAE: Peer commit-element(x) - hexdump(len=32): cc 5a 3e 81 48 92 04 04 2a 5c e7 6b f4 45 33 96 a9 62 cf 02 df 4b f6 4b 74 44 a7 75 56 0e 7a 10
1644347791.490599: SAE: Peer commit-element(y) - hexdump(len=32): 34 39 ad d4 78 a3 f1 d0 fb c0 29 a1 08 eb 87 48 73 ee d4 66 c4 e2 54 02 5a cb 25 a7 e1 90 07 fd
1644347791.490659: SAE: Possible elements at the end of the frame - hexdump(len=0):
1644347791.491166: SAE: k - hexdump(len=32): [REMOVED]
1644347791.491198: SAE: salt for keyseed derivation - hexdump(len=32): 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 00 00 00 00 00 00 00
1644347791.491252: SAE: keyseed - hexdump(len=32): [REMOVED]
1644347791.491288: SAE: PMKID - hexdump(len=16): 6d 66 78 07 9e db f7 8e 6e d2 60 6a 6a 88 a3 11
1644347791.491333: SAE: KCK - hexdump(len=32): [REMOVED]
1644347791.491362: SAE: PMK - hexdump(len=32): [REMOVED]
1644347791.491394: wlan1: Automatic auth_alg selection: 0x1
1644347791.491423: wlan1: Overriding auth_alg selection: 0x1
1644347791.491451: wlan1: Using SAE auth_alg
1644347791.491479: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x0
1644347791.491507: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347791.491535: RSN: No PMKSA cache entry found
1644347791.491562: wlan1: RSN: using IEEE 802.11i/D9.0
1644347791.491636: wlan1: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1026 proto 2
1644347791.491668: wlan1: WPA: Selected mgmt group cipher 32
1644347791.491696: wlan1: WPA: clearing AP WPA IE
1644347791.491723: WPA: set AP RSN IE - hexdump(len=26): 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347791.491759: wlan1: WPA: clearing AP RSNXE
1644347791.491790: wlan1: WPA: AP group 0x10 network profile group 0x18; available group 0x10
1644347791.491819: wlan1: WPA: using GTK CCMP
1644347791.491848: wlan1: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
1644347791.491876: wlan1: WPA: using PTK CCMP
1644347791.491906: wlan1: WPA: AP key_mgmt 0x402 network profile key_mgmt 0x502; available key_mgmt 0x402
1644347791.491934: wlan1: RSN: using KEY_MGMT SAE
1644347791.491966: wlan1: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
1644347791.491995: wlan1: WPA: not using MGMT group cipher
1644347791.492024: 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
1644347791.492058: 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
1644347791.492092: RSN: Set own RSNXE default - hexdump(len=0):
1644347791.492119: PSK (set in config) - hexdump(len=32): [REMOVED]
1644347791.492145: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347791.492173: RRM: Determining whether RRM can be used - device support: 0x10
1644347791.492200: RRM: Adding RRM IE to Association Request
1644347791.492239: Added supported operating classes IE - hexdump(len=19): 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347791.492273: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x400
1644347791.492300: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347791.492326: RSN: No PMKSA cache entry found
1644347791.492405: EAPOL: External notification - EAP success=0
1644347791.492436: EAPOL: External notification - EAP fail=0
1644347791.492462: EAPOL: External notification - portControl=Auto
1644347791.492489: wlan1: Cancelling scan request
1644347791.492522: wlan1: SME: Trying to authenticate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347791.492547: EAPOL: External notification - portValid=0
1644347791.492576: wlan1: State: AUTHENTICATING -> AUTHENTICATING
1644347791.492603: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
1644347791.492636: wlan1: Determining shared radio frequencies (max len 1)
1644347791.492664: wlan1: Shared frequencies (len=0): completed iteration
1644347791.492690: nl80211: Authenticate (ifindex=3)
1644347791.492720:   * bssid=2c:91:ab:e0:30:35
1644347791.492747:   * freq=5260
1644347791.492813:   * SSID=FRITZ!Box 7590 TC
1644347791.492842:   * IEs - hexdump(len=0): [NULL]
1644347791.492868:   * auth_data - hexdump(len=38): 02 00 00 00 01 00 29 0c 41 c1 ed df 47 42 2c 6e d0 be 05 6d de 7a fb 5a 0b 49 51 7f 70 8a 12 a1 09 75 5b 78 52 50
1644347791.492903:   * Auth Type 4
1644347791.493053: nl80211: Authentication request send successfully
1644347791.606304: nl80211: Event message available
1644347791.606438: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan1
1644347791.606471: nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347791.606500: nl80211: MLME event frame - hexdump(len=64): b0 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 90 cf 03 00 02 00 00 00 00 00 5e 65 f9 19 b5 4c 69 f3 65 a7 e6 bc 3b 52 65 7f b9 5f 9f be 35 3a 9e 22 31 8e 4b 89 0c bb f5 01
1644347791.606543: nl80211: Authenticate event
1644347791.606574: wlan1: Event AUTH (10) received
1644347791.606608: wlan1: SME: Authentication response: peer=2c:91:ab:e0:30:35 auth_type=3 auth_transaction=2 status_code=0
1644347791.606633: SME: Authentication response IEs - hexdump(len=34): 00 00 5e 65 f9 19 b5 4c 69 f3 65 a7 e6 bc 3b 52 65 7f b9 5f 9f be 35 3a 9e 22 31 8e 4b 89 0c bb f5 01
1644347791.606712: wlan1: SME: SAE authentication transaction 2 status code 0
1644347791.606741: wlan1: SME SAE confirm
1644347791.606765: SAE: peer-send-confirm 0
1644347791.606874: SME: SAE completed - setting PMK for 4-way handshake
1644347791.606906: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347791.606939: RSN: Added PMKSA cache entry for 2c:91:ab:e0:30:35 network_ctx=0x55a488595780 akmp=0x400
1644347791.606975: wlan1: PMKSA-CACHE-ADDED 2c:91:ab:e0:30:35 0
1644347791.607000: nl80211: Add PMKID for 2c:91:ab:e0:30:35
1644347791.607101: nl80211: NL80211_CMD_SET_PMKSA failed: -95 (Operation not supported)
1644347791.607136: SME: Association Request IEs - hexdump(len=61): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347791.607185: wlan1: Trying to associate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347791.607212: wlan1: State: AUTHENTICATING -> ASSOCIATING
1644347791.607239: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347791.607266: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347791.607395: 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
1644347791.607443: wlan1: RSN: clearing own RSNXE
1644347791.607470: nl80211: Associate (ifindex=3)
1644347791.607503:   * bssid=2c:91:ab:e0:30:35
1644347791.607533:   * freq=5260
1644347791.607563:   * SSID=FRITZ!Box 7590 TC
1644347791.607592:   * IEs - hexdump(len=61): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347791.607635:   * WPA Versions 0x2
1644347791.607662:   * pairwise=0xfac04
1644347791.607688:   * group=0xfac04
1644347791.607715:   * akm=0xfac08
1644347791.607803: nl80211: Association request send successfully
1644347791.632967: nl80211: Event message available
1644347791.633092: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan1
1644347791.633124: nl80211: Delete station 2c:91:ab:e0:30:35
1644347791.635974: nl80211: Event message available
1644347791.636098: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan1
1644347791.636129: nl80211: MLME event 38 (NL80211_CMD_ASSOCIATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347791.636159: nl80211: MLME event frame - hexdump(len=196): 10 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 a0 cf 11 15 28 00 0f 24 01 08 8c 12 98 24 b0 48 60 6c 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 08 8c fd f0 01 01 02 01 00 dd 18 00 50 f2 04 10 4a 00 01 10 10 3b 00 01 03 10 49 00 06 00 37 2a 00 01 20 dd 07 00 03 7f 05 01 00 01
1644347791.636235: nl80211: Associate event
1644347791.636266: wlan1: Event ASSOC_REJECT (12) received
1644347791.636301: wlan1: CTRL-EVENT-ASSOC-REJECT bssid=2c:91:ab:e0:30:35 status_code=40
1644347791.636480: wlan1: SME: Association with 2c:91:ab:e0:30:35 failed: status code 40
1644347791.636519: wpa_driver_nl80211_deauthenticate(addr=2c:91:ab:e0:30:35 reason_code=3)
1644347791.636621: wlan1: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
1644347791.636658: wlan1: SME: Deauth request to the driver failed
1644347791.636694: wlan1: Radio work 'sme-connect'@0x55a4885940d0 done in 0.532210 seconds
1644347791.636727: wlan1: radio_work_free('sme-connect'@0x55a4885940d0): num_active_works --> 0
1644347791.636760: Added BSSID 2c:91:ab:e0:30:35 into ignore list, ignoring for 10 seconds
1644347791.636866: wlan1: Another BSS in this ESS has been seen; try it next
1644347791.636962: BSSID 2c:91:ab:e0:30:35 ignore list count incremented to 2, ignoring for 10 seconds
1644347791.637008: wlan1: Consecutive connection failures: 1 --> request scan in 100 ms
1644347791.637046: wlan1: Setting scan request: 0.100000 sec
1644347791.637078: wlan1: State: ASSOCIATING -> DISCONNECTED
1644347791.637106: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347791.637134: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347791.637277: nl80211: Event message available
1644347791.637345: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan1
1644347791.637386: nl80211: Ignore connect event (cmd=46) when using userspace SME
1644347791.642400: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347791.737321: wlan1: State: DISCONNECTED -> SCANNING
1644347791.737512: Scan SSID - hexdump_ascii(len=17):
     46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54   FRITZ!Box 7590 T
     43                                                C               
1644347791.737590: wlan1: Starting AP scan for wildcard SSID
1644347791.737627: wlan1: Optimize scan based on previously generated frequency list
1644347791.737664: wlan1: Add radio work 'scan'@0x55a488595df0
1644347791.737696: wlan1: First radio work item in the queue - schedule start immediately
1644347791.737740: wlan1: Starting radio work 'scan'@0x55a488595df0 after 0.000041 second wait
1644347791.737809: wlan1: nl80211: scan request
1644347791.737854: nl80211: Scan SSID FRITZ!Box 7590 TC
1644347791.737886: nl80211: Scan SSID 
1644347791.737914: nl80211: Scan extra IEs - hexdump(len=13): 7f 0b 00 00 00 00 01 00 40 40 00 00 20
1644347791.737951: nl80211: Scan frequency 2437 MHz
1644347791.737983: nl80211: Scan frequency 5260 MHz
1644347791.739626: Scan requested (ret=0) - scan timeout 30 seconds
1644347791.739735: nl80211: Event message available
1644347791.739777: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan1
1644347791.739812: wlan1: nl80211: Scan trigger
1644347791.739841: wlan1: Event SCAN_STARTED (47) received
1644347791.739871: wlan1: Own scan request started a scan in 0.000152 seconds
1644347791.742655: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347791.827285: RTM_NEWLINK: ifi_index=3 ifname=wlan1 wext ifi_family=0 ifi_flags=0x1003 ([UP])
1644347791.827421: nl80211: Event message available
1644347791.827472: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan1
1644347791.827502: wlan1: nl80211: New scan results available
1644347791.827528: nl80211: Scan probed for SSID 'FRITZ!Box 7590 TC'
1644347791.827551: nl80211: Scan probed for SSID ''
1644347791.827574: nl80211: Scan included frequencies: 2437 5260
1644347791.827598: wlan1: Event SCAN_RESULTS (3) received
1644347791.827624: wlan1: Scan completed in 0.087753 seconds
1644347791.827824: nl80211: Received scan results (6 BSSes)
1644347791.827904: Sorted scan results
1644347791.827931: 2c:91:ab:e0:30:35 freq=5260 qual=0 noise=-92~ level=-44 snr=48* flags=0xb age=16 est=135000
1644347791.827958: IEs - hexdump(len=458): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff 00 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347791.828222: Beacon IEs - hexdump(len=382): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff 00 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347791.828346: 2c:91:ab:e0:30:34 freq=2437 qual=0 noise=-89~ level=-35 snr=54* flags=0xb age=68 est=65000
1644347791.828372: IEs - hexdump(len=365): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 2c 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347791.828484: Beacon IEs - hexdump(len=289): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 2c 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347791.828578: e0:28:6d:7e:94:3c freq=2437 qual=0 noise=-89~ level=-65 snr=24 flags=0xb age=68 est=63700
1644347791.828602: IEs - hexdump(len=455): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 06 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fe a3 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c dd 08 8c fd f0 01 01 02 01 00
1644347791.828751: e0:28:6d:7e:94:3b freq=5260 qual=0 noise=-92~ level=-79 snr=13 flags=0xb age=20 est=47250
1644347791.828809: IEs - hexdump(len=491): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff ea 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347791.828953: Beacon IEs - hexdump(len=415): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff 12 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00
1644347791.829091: cc:ce:1e:65:97:c5 freq=2437 qual=0 noise=-89~ level=-87 snr=2 flags=0xb age=4224 est=6500
1644347791.829116: IEs - hexdump(len=382): 00 0e 46 52 49 54 5a 21 42 6f 78 20 37 34 39 30 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 00 00 11 00 00 46 05 73 d0 00 00 0c 2d 1a ad 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 07 0c 00 3d 16 06 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 39 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 2d ed c3 d2 7e 38 02 a3 26 a3 cc ce 1e 65 97 c5 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347791.829232: ce:ce:1e:65:97:c5 freq=2437 qual=0 noise=-89~ level=-91 snr=-2 flags=0xb age=4216 est=1000
1644347791.829256: IEs - hexdump(len=364): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 00 00 10 00 00 46 05 73 d0 00 00 0c 2d 1a ad 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 07 0c 00 3d 16 06 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 39 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 52 c7 5a ec 12 74 94 28 0b 9a e4 ef a7 3e b5 fd 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347791.829372: wlan1: BSS: Start scan result update 2
1644347791.829460: BSS: last_scan_res_used=6/32
1644347791.829489: wlan1: New scan results available (own=1 ext=0)
1644347791.829543: WPS: attr type=0x104a len=1
1644347791.829570: WPS: attr type=0x1044 len=1
1644347791.829592: WPS: attr type=0x103b len=1
1644347791.829614: WPS: attr type=0x1047 len=16
1644347791.829635: WPS: attr type=0x1021 len=3
1644347791.829657: WPS: attr type=0x1023 len=4
1644347791.829678: WPS: attr type=0x1024 len=4
1644347791.829699: WPS: attr type=0x1042 len=4
1644347791.829721: WPS: attr type=0x1054 len=8
1644347791.829742: WPS: attr type=0x1011 len=4
1644347791.829763: WPS: attr type=0x1008 len=2
1644347791.829784: WPS: attr type=0x103c len=1
1644347791.829806: WPS: attr type=0x1049 len=6
1644347791.829827: WPS: WFA subelement id=0 len=1
1644347791.829848: WPS: attr type=0x104a len=1
1644347791.829870: WPS: attr type=0x1044 len=1
1644347791.829891: WPS: attr type=0x103b len=1
1644347791.829912: WPS: attr type=0x1047 len=16
1644347791.829934: WPS: attr type=0x1021 len=3
1644347791.829954: WPS: attr type=0x1023 len=4
1644347791.829975: WPS: attr type=0x1024 len=4
1644347791.829996: WPS: attr type=0x1042 len=4
1644347791.830017: WPS: attr type=0x1054 len=8
1644347791.830038: WPS: attr type=0x1011 len=4
1644347791.830059: WPS: attr type=0x1008 len=2
1644347791.830080: WPS: attr type=0x103c len=1
1644347791.830117: WPS: attr type=0x1049 len=6
1644347791.830140: WPS: WFA subelement id=0 len=1
1644347791.830162: WPS: attr type=0x104a len=1
1644347791.830183: WPS: attr type=0x1044 len=1
1644347791.830205: WPS: attr type=0x103b len=1
1644347791.830226: WPS: attr type=0x1047 len=16
1644347791.830247: WPS: attr type=0x1021 len=3
1644347791.830268: WPS: attr type=0x1023 len=4
1644347791.830289: WPS: attr type=0x1024 len=4
1644347791.830310: WPS: attr type=0x1042 len=4
1644347791.830331: WPS: attr type=0x1054 len=8
1644347791.830353: WPS: attr type=0x1011 len=4
1644347791.830374: WPS: attr type=0x1008 len=2
1644347791.830395: WPS: attr type=0x103c len=1
1644347791.830416: WPS: attr type=0x1049 len=6
1644347791.830437: WPS: WFA subelement id=0 len=1
1644347791.830460: WPS: attr type=0x104a len=1
1644347791.830483: WPS: attr type=0x1044 len=1
1644347791.830504: WPS: attr type=0x103b len=1
1644347791.830525: WPS: attr type=0x1047 len=16
1644347791.830546: WPS: attr type=0x1021 len=3
1644347791.830568: WPS: attr type=0x1023 len=4
1644347791.830589: WPS: attr type=0x1024 len=4
1644347791.830610: WPS: attr type=0x1042 len=4
1644347791.830631: WPS: attr type=0x1054 len=8
1644347791.830652: WPS: attr type=0x1011 len=4
1644347791.830673: WPS: attr type=0x1008 len=2
1644347791.830694: WPS: attr type=0x103c len=1
1644347791.830715: WPS: attr type=0x1049 len=6
1644347791.830736: WPS: WFA subelement id=0 len=1
1644347791.830758: WPS: attr type=0x104a len=1
1644347791.830779: WPS: attr type=0x1044 len=1
1644347791.830800: WPS: attr type=0x103b len=1
1644347791.830821: WPS: attr type=0x1047 len=16
1644347791.830842: WPS: attr type=0x1021 len=3
1644347791.830863: WPS: attr type=0x1023 len=4
1644347791.830884: WPS: attr type=0x1024 len=4
1644347791.830905: WPS: attr type=0x1042 len=4
1644347791.830926: WPS: attr type=0x1054 len=8
1644347791.830947: WPS: attr type=0x1011 len=4
1644347791.830968: WPS: attr type=0x1008 len=2
1644347791.830989: WPS: attr type=0x103c len=1
1644347791.831010: WPS: attr type=0x1049 len=6
1644347791.831031: WPS: WFA subelement id=0 len=1
1644347791.831052: WPS: attr type=0x104a len=1
1644347791.831073: WPS: attr type=0x1044 len=1
1644347791.831094: WPS: attr type=0x103b len=1
1644347791.831115: WPS: attr type=0x1047 len=16
1644347791.831136: WPS: attr type=0x1021 len=3
1644347791.831158: WPS: attr type=0x1023 len=4
1644347791.831179: WPS: attr type=0x1024 len=4
1644347791.831200: WPS: attr type=0x1042 len=4
1644347791.831221: WPS: attr type=0x1054 len=8
1644347791.831242: WPS: attr type=0x1011 len=4
1644347791.831263: WPS: attr type=0x1008 len=2
1644347791.831284: WPS: attr type=0x103c len=1
1644347791.831305: WPS: attr type=0x1049 len=6
1644347791.831326: WPS: WFA subelement id=0 len=1
1644347791.831349: WPS: attr type=0x104a len=1
1644347791.831371: WPS: attr type=0x1044 len=1
1644347791.831392: WPS: attr type=0x103b len=1
1644347791.831413: WPS: attr type=0x1047 len=16
1644347791.831434: WPS: attr type=0x1021 len=3
1644347791.831455: WPS: attr type=0x1023 len=4
1644347791.831476: WPS: attr type=0x1024 len=4
1644347791.831497: WPS: attr type=0x1042 len=4
1644347791.831518: WPS: attr type=0x1054 len=8
1644347791.831539: WPS: attr type=0x1011 len=4
1644347791.831561: WPS: attr type=0x1008 len=2
1644347791.831582: WPS: attr type=0x103c len=1
1644347791.831603: WPS: attr type=0x1049 len=6
1644347791.831625: WPS: WFA subelement id=0 len=1
1644347791.831646: WPS: attr type=0x104a len=1
1644347791.831668: WPS: attr type=0x1044 len=1
1644347791.831689: WPS: attr type=0x103b len=1
1644347791.831710: WPS: attr type=0x1047 len=16
1644347791.831731: WPS: attr type=0x1021 len=3
1644347791.831752: WPS: attr type=0x1023 len=4
1644347791.831773: WPS: attr type=0x1024 len=4
1644347791.831793: WPS: attr type=0x1042 len=4
1644347791.831814: WPS: attr type=0x1054 len=8
1644347791.831835: WPS: attr type=0x1011 len=4
1644347791.831856: WPS: attr type=0x1008 len=2
1644347791.831877: WPS: attr type=0x103c len=1
1644347791.831898: WPS: attr type=0x1049 len=6
1644347791.831919: WPS: WFA subelement id=0 len=1
1644347791.831940: WPS: attr type=0x104a len=1
1644347791.831975: WPS: attr type=0x1044 len=1
1644347791.831996: WPS: attr type=0x103b len=1
1644347791.832018: WPS: attr type=0x1047 len=16
1644347791.832039: WPS: attr type=0x1021 len=3
1644347791.832060: WPS: attr type=0x1023 len=4
1644347791.832081: WPS: attr type=0x1024 len=4
1644347791.832102: WPS: attr type=0x1042 len=4
1644347791.832123: WPS: attr type=0x1054 len=8
1644347791.832145: WPS: attr type=0x1011 len=4
1644347791.832166: WPS: attr type=0x1008 len=2
1644347791.832187: WPS: attr type=0x103c len=1
1644347791.832208: WPS: attr type=0x1049 len=6
1644347791.832229: WPS: WFA subelement id=0 len=1
1644347791.832252: WPS: attr type=0x104a len=1
1644347791.832274: WPS: attr type=0x1044 len=1
1644347791.832295: WPS: attr type=0x103b len=1
1644347791.832316: WPS: attr type=0x1047 len=16
1644347791.832337: WPS: attr type=0x1021 len=3
1644347791.832359: WPS: attr type=0x1023 len=4
1644347791.832380: WPS: attr type=0x1024 len=4
1644347791.832401: WPS: attr type=0x1042 len=4
1644347791.832422: WPS: attr type=0x1054 len=8
1644347791.832443: WPS: attr type=0x1011 len=4
1644347791.832464: WPS: attr type=0x1008 len=2
1644347791.832486: WPS: attr type=0x103c len=1
1644347791.832507: WPS: attr type=0x1049 len=6
1644347791.832528: WPS: WFA subelement id=0 len=1
1644347791.832549: WPS: attr type=0x104a len=1
1644347791.832570: WPS: attr type=0x1044 len=1
1644347791.832592: WPS: attr type=0x103b len=1
1644347791.832613: WPS: attr type=0x1047 len=16
1644347791.832634: WPS: attr type=0x1021 len=3
1644347791.832656: WPS: attr type=0x1023 len=4
1644347791.832677: WPS: attr type=0x1024 len=4
1644347791.832698: WPS: attr type=0x1042 len=4
1644347791.832719: WPS: attr type=0x1054 len=8
1644347791.832740: WPS: attr type=0x1011 len=4
1644347791.832761: WPS: attr type=0x1008 len=2
1644347791.832810: WPS: attr type=0x103c len=1
1644347791.832832: WPS: attr type=0x1049 len=6
1644347791.832853: WPS: WFA subelement id=0 len=1
1644347791.832874: WPS: attr type=0x104a len=1
1644347791.832896: WPS: attr type=0x1044 len=1
1644347791.832917: WPS: attr type=0x103b len=1
1644347791.832939: WPS: attr type=0x1047 len=16
1644347791.832959: WPS: attr type=0x1021 len=3
1644347791.832980: WPS: attr type=0x1023 len=4
1644347791.833002: WPS: attr type=0x1024 len=4
1644347791.833023: WPS: attr type=0x1042 len=4
1644347791.833044: WPS: attr type=0x1054 len=8
1644347791.833065: WPS: attr type=0x1011 len=4
1644347791.833086: WPS: attr type=0x1008 len=2
1644347791.833108: WPS: attr type=0x103c len=1
1644347791.833129: WPS: attr type=0x1049 len=6
1644347791.833150: WPS: WFA subelement id=0 len=1
1644347791.833173: WPS: attr type=0x104a len=1
1644347791.833195: WPS: attr type=0x1044 len=1
1644347791.833216: WPS: attr type=0x103b len=1
1644347791.833237: WPS: attr type=0x1047 len=16
1644347791.833259: WPS: attr type=0x1021 len=3
1644347791.833280: WPS: attr type=0x1023 len=4
1644347791.833301: WPS: attr type=0x1024 len=4
1644347791.833321: WPS: attr type=0x1042 len=4
1644347791.833342: WPS: attr type=0x1054 len=8
1644347791.833363: WPS: attr type=0x1011 len=4
1644347791.833384: WPS: attr type=0x1008 len=2
1644347791.833406: WPS: attr type=0x103c len=1
1644347791.833427: WPS: attr type=0x1049 len=6
1644347791.833448: WPS: WFA subelement id=0 len=1
1644347791.833469: WPS: attr type=0x104a len=1
1644347791.833490: WPS: attr type=0x1044 len=1
1644347791.833512: WPS: attr type=0x103b len=1
1644347791.833533: WPS: attr type=0x1047 len=16
1644347791.833554: WPS: attr type=0x1021 len=3
1644347791.833574: WPS: attr type=0x1023 len=4
1644347791.833595: WPS: attr type=0x1024 len=4
1644347791.833616: WPS: attr type=0x1042 len=4
1644347791.833637: WPS: attr type=0x1054 len=8
1644347791.833658: WPS: attr type=0x1011 len=4
1644347791.833679: WPS: attr type=0x1008 len=2
1644347791.833701: WPS: attr type=0x103c len=1
1644347791.833722: WPS: attr type=0x1049 len=6
1644347791.833742: WPS: WFA subelement id=0 len=1
1644347791.833764: WPS: attr type=0x104a len=1
1644347791.833785: WPS: attr type=0x1044 len=1
1644347791.833806: WPS: attr type=0x103b len=1
1644347791.833841: WPS: attr type=0x1047 len=16
1644347791.833864: WPS: attr type=0x1021 len=3
1644347791.833886: WPS: attr type=0x1023 len=4
1644347791.833907: WPS: attr type=0x1024 len=4
1644347791.833928: WPS: attr type=0x1042 len=4
1644347791.833949: WPS: attr type=0x1054 len=8
1644347791.833970: WPS: attr type=0x1011 len=4
1644347791.833991: WPS: attr type=0x1008 len=2
1644347791.834011: WPS: attr type=0x103c len=1
1644347791.834033: WPS: attr type=0x1049 len=6
1644347791.834054: WPS: WFA subelement id=0 len=1
1644347791.834076: WPS: attr type=0x104a len=1
1644347791.834098: WPS: attr type=0x1044 len=1
1644347791.834120: WPS: attr type=0x103b len=1
1644347791.834141: WPS: attr type=0x1047 len=16
1644347791.834162: WPS: attr type=0x1021 len=3
1644347791.834183: WPS: attr type=0x1023 len=4
1644347791.834204: WPS: attr type=0x1024 len=4
1644347791.834225: WPS: attr type=0x1042 len=4
1644347791.834246: WPS: attr type=0x1054 len=8
1644347791.834267: WPS: attr type=0x1011 len=4
1644347791.834288: WPS: attr type=0x1008 len=2
1644347791.834309: WPS: attr type=0x103c len=1
1644347791.834331: WPS: attr type=0x1049 len=6
1644347791.834352: WPS: WFA subelement id=0 len=1
1644347791.834373: WPS: attr type=0x104a len=1
1644347791.834395: WPS: attr type=0x1044 len=1
1644347791.834416: WPS: attr type=0x103b len=1
1644347791.834437: WPS: attr type=0x1047 len=16
1644347791.834458: WPS: attr type=0x1021 len=3
1644347791.834479: WPS: attr type=0x1023 len=4
1644347791.834500: WPS: attr type=0x1024 len=4
1644347791.834521: WPS: attr type=0x1042 len=4
1644347791.834542: WPS: attr type=0x1054 len=8
1644347791.834563: WPS: attr type=0x1011 len=4
1644347791.834584: WPS: attr type=0x1008 len=2
1644347791.834605: WPS: attr type=0x103c len=1
1644347791.834626: WPS: attr type=0x1049 len=6
1644347791.834647: WPS: WFA subelement id=0 len=1
1644347791.834668: WPS: attr type=0x104a len=1
1644347791.834689: WPS: attr type=0x1044 len=1
1644347791.834711: WPS: attr type=0x103b len=1
1644347791.834732: WPS: attr type=0x1047 len=16
1644347791.834753: WPS: attr type=0x1021 len=3
1644347791.834774: WPS: attr type=0x1023 len=4
1644347791.834796: WPS: attr type=0x1024 len=4
1644347791.834816: WPS: attr type=0x1042 len=4
1644347791.834837: WPS: attr type=0x1054 len=8
1644347791.834859: WPS: attr type=0x1011 len=4
1644347791.834880: WPS: attr type=0x1008 len=2
1644347791.834901: WPS: attr type=0x103c len=1
1644347791.834922: WPS: attr type=0x1049 len=6
1644347791.834943: WPS: WFA subelement id=0 len=1
1644347791.835002: WPS: attr type=0x104a len=1
1644347791.835029: WPS: attr type=0x1044 len=1
1644347791.835051: WPS: attr type=0x103b len=1
1644347791.835072: WPS: attr type=0x1047 len=16
1644347791.835094: WPS: attr type=0x1021 len=3
1644347791.835115: WPS: attr type=0x1023 len=4
1644347791.835136: WPS: attr type=0x1024 len=4
1644347791.835158: WPS: attr type=0x1042 len=4
1644347791.835179: WPS: attr type=0x1054 len=8
1644347791.835200: WPS: attr type=0x1011 len=4
1644347791.835221: WPS: attr type=0x1008 len=2
1644347791.835242: WPS: attr type=0x103c len=1
1644347791.835263: WPS: attr type=0x1049 len=6
1644347791.835284: WPS: WFA subelement id=0 len=1
1644347791.835306: WPS: attr type=0x104a len=1
1644347791.835328: WPS: attr type=0x1044 len=1
1644347791.835349: WPS: attr type=0x103b len=1
1644347791.835370: WPS: attr type=0x1047 len=16
1644347791.835392: WPS: attr type=0x1021 len=3
1644347791.835413: WPS: attr type=0x1023 len=4
1644347791.835434: WPS: attr type=0x1024 len=4
1644347791.835454: WPS: attr type=0x1042 len=4
1644347791.835475: WPS: attr type=0x1054 len=8
1644347791.835496: WPS: attr type=0x1011 len=4
1644347791.835517: WPS: attr type=0x1008 len=2
1644347791.835539: WPS: attr type=0x103c len=1
1644347791.835560: WPS: attr type=0x1049 len=6
1644347791.835581: WPS: WFA subelement id=0 len=1
1644347791.835602: WPS: attr type=0x104a len=1
1644347791.835623: WPS: attr type=0x1044 len=1
1644347791.835644: WPS: attr type=0x103b len=1
1644347791.835665: WPS: attr type=0x1047 len=16
1644347791.835686: WPS: attr type=0x1021 len=3
1644347791.835707: WPS: attr type=0x1023 len=4
1644347791.835743: WPS: attr type=0x1024 len=4
1644347791.835766: WPS: attr type=0x1042 len=4
1644347791.835787: WPS: attr type=0x1054 len=8
1644347791.835870: WPS: attr type=0x1011 len=4
1644347791.835892: WPS: attr type=0x1008 len=2
1644347791.835913: WPS: attr type=0x103c len=1
1644347791.835935: WPS: attr type=0x1049 len=6
1644347791.835956: WPS: WFA subelement id=0 len=1
1644347791.835978: WPS: AP 2c:91:ab:e0:30:35 type 0 added
1644347791.836004: WPS: attr type=0x104a len=1
1644347791.836026: WPS: attr type=0x1044 len=1
1644347791.836048: WPS: attr type=0x103b len=1
1644347791.836069: WPS: attr type=0x1047 len=16
1644347791.836090: WPS: attr type=0x1021 len=3
1644347791.836111: WPS: attr type=0x1023 len=4
1644347791.836133: WPS: attr type=0x1024 len=4
1644347791.836154: WPS: attr type=0x1042 len=4
1644347791.836183: WPS: attr type=0x1054 len=8
1644347791.836219: WPS: attr type=0x1011 len=4
1644347791.836241: WPS: attr type=0x1008 len=2
1644347791.836263: WPS: attr type=0x103c len=1
1644347791.836284: WPS: attr type=0x1049 len=6
1644347791.836305: WPS: WFA subelement id=0 len=1
1644347791.836326: WPS: attr type=0x104a len=1
1644347791.836348: WPS: attr type=0x1044 len=1
1644347791.836369: WPS: attr type=0x103b len=1
1644347791.836390: WPS: attr type=0x1047 len=16
1644347791.836412: WPS: attr type=0x1021 len=3
1644347791.836433: WPS: attr type=0x1023 len=4
1644347791.836454: WPS: attr type=0x1024 len=4
1644347791.836475: WPS: attr type=0x1042 len=4
1644347791.836496: WPS: attr type=0x1054 len=8
1644347791.836517: WPS: attr type=0x1011 len=4
1644347791.836537: WPS: attr type=0x1008 len=2
1644347791.836558: WPS: attr type=0x103c len=1
1644347791.836579: WPS: attr type=0x1049 len=6
1644347791.836600: WPS: WFA subelement id=0 len=1
1644347791.836622: WPS: attr type=0x104a len=1
1644347791.836643: WPS: attr type=0x1044 len=1
1644347791.836664: WPS: attr type=0x103b len=1
1644347791.836685: WPS: attr type=0x1047 len=16
1644347791.836705: WPS: attr type=0x1021 len=3
1644347791.836726: WPS: attr type=0x1023 len=4
1644347791.836747: WPS: attr type=0x1024 len=4
1644347791.836780: WPS: attr type=0x1042 len=4
1644347791.836811: WPS: attr type=0x1054 len=8
1644347791.836832: WPS: attr type=0x1011 len=4
1644347791.836853: WPS: attr type=0x1008 len=2
1644347791.836874: WPS: attr type=0x103c len=1
1644347791.836895: WPS: attr type=0x1049 len=6
1644347791.836917: WPS: WFA subelement id=0 len=1
1644347791.836940: WPS: AP 2c:91:ab:e0:30:34 type 0 added
1644347791.836964: WPS: attr type=0x104a len=1
1644347791.836986: WPS: attr type=0x1044 len=1
1644347791.837007: WPS: attr type=0x103b len=1
1644347791.837028: WPS: attr type=0x1047 len=16
1644347791.837049: WPS: attr type=0x1021 len=3
1644347791.837070: WPS: attr type=0x1023 len=4
1644347791.837091: WPS: attr type=0x1024 len=4
1644347791.837112: WPS: attr type=0x1042 len=4
1644347791.837132: WPS: attr type=0x1054 len=8
1644347791.837153: WPS: attr type=0x1011 len=4
1644347791.837174: WPS: attr type=0x1008 len=2
1644347791.837195: WPS: attr type=0x103c len=1
1644347791.837216: WPS: attr type=0x1049 len=6
1644347791.837237: WPS: WFA subelement id=0 len=1
1644347791.837259: WPS: attr type=0x104a len=1
1644347791.837280: WPS: attr type=0x1044 len=1
1644347791.837301: WPS: attr type=0x103b len=1
1644347791.837322: WPS: attr type=0x1047 len=16
1644347791.837343: WPS: attr type=0x1021 len=3
1644347791.837364: WPS: attr type=0x1023 len=4
1644347791.837385: WPS: attr type=0x1024 len=4
1644347791.837406: WPS: attr type=0x1042 len=4
1644347791.837427: WPS: attr type=0x1054 len=8
1644347791.837448: WPS: attr type=0x1011 len=4
1644347791.837469: WPS: attr type=0x1008 len=2
1644347791.837490: WPS: attr type=0x103c len=1
1644347791.837511: WPS: attr type=0x1049 len=6
1644347791.837532: WPS: WFA subelement id=0 len=1
1644347791.837554: WPS: attr type=0x104a len=1
1644347791.837575: WPS: attr type=0x1044 len=1
1644347791.837596: WPS: attr type=0x103b len=1
1644347791.837617: WPS: attr type=0x1047 len=16
1644347791.837639: WPS: attr type=0x1021 len=3
1644347791.837660: WPS: attr type=0x1023 len=4
1644347791.837701: WPS: attr type=0x1024 len=4
1644347791.837724: WPS: attr type=0x1042 len=4
1644347791.837746: WPS: attr type=0x1054 len=8
1644347791.837768: WPS: attr type=0x1011 len=4
1644347791.837789: WPS: attr type=0x1008 len=2
1644347791.837810: WPS: attr type=0x103c len=1
1644347791.837832: WPS: attr type=0x1049 len=6
1644347791.837854: WPS: WFA subelement id=0 len=1
1644347791.837877: WPS: AP e0:28:6d:7e:94:3c type 0 added
1644347791.837902: WPS: attr type=0x104a len=1
1644347791.837924: WPS: attr type=0x1044 len=1
1644347791.837946: WPS: attr type=0x103b len=1
1644347791.837967: WPS: attr type=0x1047 len=16
1644347791.837989: WPS: attr type=0x1021 len=3
1644347791.838010: WPS: attr type=0x1023 len=4
1644347791.838035: WPS: attr type=0x1024 len=4
1644347791.838056: WPS: attr type=0x1042 len=4
1644347791.838077: WPS: attr type=0x1054 len=8
1644347791.838098: WPS: attr type=0x1011 len=4
1644347791.838119: WPS: attr type=0x1008 len=2
1644347791.838140: WPS: attr type=0x103c len=1
1644347791.838161: WPS: attr type=0x1049 len=6
1644347791.838183: WPS: WFA subelement id=0 len=1
1644347791.838204: WPS: attr type=0x104a len=1
1644347791.838226: WPS: attr type=0x1044 len=1
1644347791.838247: WPS: attr type=0x103b len=1
1644347791.838268: WPS: attr type=0x1047 len=16
1644347791.838289: WPS: attr type=0x1021 len=3
1644347791.838310: WPS: attr type=0x1023 len=4
1644347791.838331: WPS: attr type=0x1024 len=4
1644347791.838352: WPS: attr type=0x1042 len=4
1644347791.838373: WPS: attr type=0x1054 len=8
1644347791.838394: WPS: attr type=0x1011 len=4
1644347791.838415: WPS: attr type=0x1008 len=2
1644347791.838436: WPS: attr type=0x103c len=1
1644347791.838457: WPS: attr type=0x1049 len=6
1644347791.838478: WPS: WFA subelement id=0 len=1
1644347791.838500: WPS: attr type=0x104a len=1
1644347791.838521: WPS: attr type=0x1044 len=1
1644347791.838542: WPS: attr type=0x103b len=1
1644347791.838563: WPS: attr type=0x1047 len=16
1644347791.838584: WPS: attr type=0x1021 len=3
1644347791.838605: WPS: attr type=0x1023 len=4
1644347791.838626: WPS: attr type=0x1024 len=4
1644347791.838647: WPS: attr type=0x1042 len=4
1644347791.838668: WPS: attr type=0x1054 len=8
1644347791.838689: WPS: attr type=0x1011 len=4
1644347791.838710: WPS: attr type=0x1008 len=2
1644347791.838731: WPS: attr type=0x103c len=1
1644347791.838752: WPS: attr type=0x1049 len=6
1644347791.838773: WPS: WFA subelement id=0 len=1
1644347791.838795: WPS: AP e0:28:6d:7e:94:3b type 0 added
1644347791.838819: WPS: attr type=0x104a len=1
1644347791.838841: WPS: attr type=0x1044 len=1
1644347791.838862: WPS: attr type=0x103b len=1
1644347791.838883: WPS: attr type=0x1047 len=16
1644347791.838904: WPS: attr type=0x1021 len=3
1644347791.838925: WPS: attr type=0x1023 len=4
1644347791.838946: WPS: attr type=0x1024 len=4
1644347791.838967: WPS: attr type=0x1042 len=4
1644347791.838988: WPS: attr type=0x1054 len=8
1644347791.839010: WPS: attr type=0x1011 len=4
1644347791.839031: WPS: attr type=0x1008 len=2
1644347791.839052: WPS: attr type=0x103c len=1
1644347791.839073: WPS: attr type=0x1049 len=6
1644347791.839094: WPS: WFA subelement id=0 len=1
1644347791.839116: WPS: attr type=0x104a len=1
1644347791.839137: WPS: attr type=0x1044 len=1
1644347791.839158: WPS: attr type=0x103b len=1
1644347791.839179: WPS: attr type=0x1047 len=16
1644347791.839200: WPS: attr type=0x1021 len=3
1644347791.839221: WPS: attr type=0x1023 len=4
1644347791.839243: WPS: attr type=0x1024 len=4
1644347791.839264: WPS: attr type=0x1042 len=4
1644347791.839285: WPS: attr type=0x1054 len=8
1644347791.839306: WPS: attr type=0x1011 len=4
1644347791.839327: WPS: attr type=0x1008 len=2
1644347791.839349: WPS: attr type=0x103c len=1
1644347791.839370: WPS: attr type=0x1049 len=6
1644347791.839391: WPS: WFA subelement id=0 len=1
1644347791.839412: WPS: attr type=0x104a len=1
1644347791.839433: WPS: attr type=0x1044 len=1
1644347791.839454: WPS: attr type=0x103b len=1
1644347791.839476: WPS: attr type=0x1047 len=16
1644347791.839497: WPS: attr type=0x1021 len=3
1644347791.839518: WPS: attr type=0x1023 len=4
1644347791.839551: WPS: attr type=0x1024 len=4
1644347791.839574: WPS: attr type=0x1042 len=4
1644347791.839596: WPS: attr type=0x1054 len=8
1644347791.839617: WPS: attr type=0x1011 len=4
1644347791.839638: WPS: attr type=0x1008 len=2
1644347791.839660: WPS: attr type=0x103c len=1
1644347791.839681: WPS: attr type=0x1049 len=6
1644347791.839702: WPS: WFA subelement id=0 len=1
1644347791.839725: WPS: AP cc:ce:1e:65:97:c5 type 0 added
1644347791.839749: WPS: attr type=0x104a len=1
1644347791.839771: WPS: attr type=0x1044 len=1
1644347791.839792: WPS: attr type=0x103b len=1
1644347791.839813: WPS: attr type=0x1047 len=16
1644347791.839835: WPS: attr type=0x1021 len=3
1644347791.839856: WPS: attr type=0x1023 len=4
1644347791.839877: WPS: attr type=0x1024 len=4
1644347791.839898: WPS: attr type=0x1042 len=4
1644347791.839919: WPS: attr type=0x1054 len=8
1644347791.839940: WPS: attr type=0x1011 len=4
1644347791.839961: WPS: attr type=0x1008 len=2
1644347791.839982: WPS: attr type=0x103c len=1
1644347791.840004: WPS: attr type=0x1049 len=6
1644347791.840025: WPS: WFA subelement id=0 len=1
1644347791.840046: WPS: attr type=0x104a len=1
1644347791.840068: WPS: attr type=0x1044 len=1
1644347791.840089: WPS: attr type=0x103b len=1
1644347791.840110: WPS: attr type=0x1047 len=16
1644347791.840132: WPS: attr type=0x1021 len=3
1644347791.840153: WPS: attr type=0x1023 len=4
1644347791.840174: WPS: attr type=0x1024 len=4
1644347791.840195: WPS: attr type=0x1042 len=4
1644347791.840216: WPS: attr type=0x1054 len=8
1644347791.840237: WPS: attr type=0x1011 len=4
1644347791.840258: WPS: attr type=0x1008 len=2
1644347791.840279: WPS: attr type=0x103c len=1
1644347791.840300: WPS: attr type=0x1049 len=6
1644347791.840321: WPS: WFA subelement id=0 len=1
1644347791.840342: WPS: attr type=0x104a len=1
1644347791.840363: WPS: attr type=0x1044 len=1
1644347791.840384: WPS: attr type=0x103b len=1
1644347791.840406: WPS: attr type=0x1047 len=16
1644347791.840427: WPS: attr type=0x1021 len=3
1644347791.840448: WPS: attr type=0x1023 len=4
1644347791.840469: WPS: attr type=0x1024 len=4
1644347791.840490: WPS: attr type=0x1042 len=4
1644347791.840511: WPS: attr type=0x1054 len=8
1644347791.840532: WPS: attr type=0x1011 len=4
1644347791.840553: WPS: attr type=0x1008 len=2
1644347791.840574: WPS: attr type=0x103c len=1
1644347791.840595: WPS: attr type=0x1049 len=6
1644347791.840616: WPS: WFA subelement id=0 len=1
1644347791.840638: WPS: AP ce:ce:1e:65:97:c5 type 0 added
1644347791.840663: WPS: AP[0] 2c:91:ab:e0:30:35 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=2
1644347791.840687: WPS: AP[1] 2c:91:ab:e0:30:34 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347791.840710: WPS: AP[2] e0:28:6d:7e:94:3c type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347791.840733: WPS: AP[3] e0:28:6d:7e:94:3b type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347791.840756: WPS: AP[4] cc:ce:1e:65:97:c5 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347791.840798: WPS: AP[5] ce:ce:1e:65:97:c5 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347791.840830: wlan1: Radio work 'scan'@0x55a488595df0 done in 0.103089 seconds
1644347791.840856: wlan1: radio_work_free('scan'@0x55a488595df0): num_active_works --> 0
1644347791.840882: wlan1: Scan results matching the currently selected network
1644347791.840922: wlan1: 1: 2c:91:ab:e0:30:34 freq=2437 level=-35 snr=54 est_throughput=65000
1644347791.840954: wlan1: 2: e0:28:6d:7e:94:3c freq=2437 level=-65 snr=24 est_throughput=63700
1644347791.840985: wlan1: 3: e0:28:6d:7e:94:3b freq=5260 level=-79 snr=13 est_throughput=47250
1644347791.841013: wlan1: Selecting BSS from priority group 0
1644347791.841046: wlan1: 0: 2c:91:ab:e0:30:35 ssid='FRITZ!Box 7590 TC' wpa_ie_len=0 rsn_ie_len=24 caps=0x1511 level=-44 freq=5260  wps
1644347791.841071: wlan1:    skip - BSSID ignored (count=2 limit=0)
1644347791.841101: wlan1: 1: 2c:91:ab:e0:30:34 ssid='FRITZ!Box 7590 TC' wpa_ie_len=0 rsn_ie_len=24 caps=0x1431 level=-35 freq=2437  wps
1644347791.841126: wlan1:    selected based on RSN IE
1644347791.841154: wlan1:    selected BSS 2c:91:ab:e0:30:34 ssid='FRITZ!Box 7590 TC'
1644347791.841206: wlan1: Considering connect request: reassociate: 0  selected: 2c:91:ab:e0:30:34  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid=0x55a488595780  current_ssid=0x55a488595780
1644347791.841232: wlan1: Request association with 2c:91:ab:e0:30:34
1644347791.841255: wlan1: Re-association to the same ESS
1644347791.841281: unknown vendor specific information element ignored (vendor OUI 00:03:7f len=9)
1644347791.841305: unknown vendor specific information element ignored (vendor OUI 00:04:0e len=12)
1644347791.841328: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=22)
1644347791.841350: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=8)
1644347791.841372: TDLS: TDLS is allowed in the target BSS
1644347791.841394: TDLS: TDLS channel switch allowed in the target BSS
1644347791.841417: wlan1: No ongoing scan/p2p-scan found to abort
1644347791.841442: wlan1: Add radio work 'sme-connect'@0x55a488595df0
1644347791.841465: wlan1: First radio work item in the queue - schedule start immediately
1644347791.841509: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347791.841643: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/0
1644347791.841854: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/1
1644347791.842037: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/2
1644347791.842234: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/3
1644347791.842491: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/4
1644347791.842557: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/5
1644347791.842614: wlan1: Starting radio work 'sme-connect'@0x55a488595df0 after 0.001148 second wait
1644347791.842665: wlan1: WPA: clearing own WPA/RSN IE
1644347791.842681: wlan1: RSN: clearing own RSNXE
1644347791.842698: wlan1: Automatic auth_alg selection: 0x1
1644347791.842714: wlan1: Overriding auth_alg selection: 0x1
1644347791.842729: wlan1: Using SAE auth_alg
1644347791.842743: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x0
1644347791.842756: RSN: Search for BSSID 2c:91:ab:e0:30:34
1644347791.842771: RSN: No PMKSA cache entry found
1644347791.842786: wlan1: RSN: using IEEE 802.11i/D9.0
1644347791.842803: wlan1: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1026 proto 2
1644347791.842818: wlan1: WPA: Selected mgmt group cipher 32
1644347791.842834: wlan1: WPA: clearing AP WPA IE
1644347791.842849: WPA: set AP RSN IE - hexdump(len=26): 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347791.842871: wlan1: WPA: clearing AP RSNXE
1644347791.842887: wlan1: WPA: AP group 0x10 network profile group 0x18; available group 0x10
1644347791.842904: wlan1: WPA: using GTK CCMP
1644347791.842919: wlan1: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
1644347791.842950: wlan1: WPA: using PTK CCMP
1644347791.842975: wlan1: WPA: AP key_mgmt 0x402 network profile key_mgmt 0x502; available key_mgmt 0x402
1644347791.842998: wlan1: RSN: using KEY_MGMT SAE
1644347791.843023: wlan1: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
1644347791.843046: wlan1: WPA: not using MGMT group cipher
1644347791.843070: 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
1644347791.843099: RSN: Set own RSNXE default - hexdump(len=0):
1644347791.843121: PSK (set in config) - hexdump(len=32): [REMOVED]
1644347791.843167: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347791.843192: RRM: Determining whether RRM can be used - device support: 0x10
1644347791.843214: RRM: Adding RRM IE to Association Request
1644347791.843250: Added supported operating classes IE - hexdump(len=19): 3b 11 51 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347791.843280: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x400
1644347791.843304: RSN: Search for BSSID 2c:91:ab:e0:30:34
1644347791.843326: RSN: No PMKSA cache entry found
1644347791.843460: SAE: Selecting supported ECC group 19
1644347791.843498: wlan1: SME: Selected SAE group 19
1644347791.843774: SAE: password - hexdump_ascii(len=20): [REMOVED]
1644347791.843797: SAE: PWE derivation - addr1=c4:85:08:14:a1:b8 addr2=2c:91:ab:e0:30:34
1644347791.843813: SAE: counter = 001
1644347791.843862: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.843915: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.844010: SAE: pwd-seed result 0 found=0x00
1644347791.844032: SAE: counter = 002
1644347791.844053: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.844076: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.844189: SAE: pwd-seed result 0 found=0x00
1644347791.844223: SAE: counter = 003
1644347791.844268: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.844334: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.844420: SAE: pwd-seed result 1 found=0xff
1644347791.844464: SAE: counter = 004
1644347791.844511: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.844566: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.844650: SAE: pwd-seed result 0 found=0xff
1644347791.844672: SAE: counter = 005
1644347791.844693: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.844715: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.844830: SAE: pwd-seed result 0 found=0xff
1644347791.844844: SAE: counter = 006
1644347791.844857: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.844870: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.844921: SAE: pwd-seed result 1 found=0xff
1644347791.844932: SAE: counter = 007
1644347791.844944: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.844956: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.845005: SAE: pwd-seed result 1 found=0xff
1644347791.845016: SAE: counter = 008
1644347791.845028: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.845040: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.845089: SAE: pwd-seed result 0 found=0xff
1644347791.845100: SAE: counter = 009
1644347791.845111: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.845124: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.845172: SAE: pwd-seed result 0 found=0xff
1644347791.845183: SAE: counter = 010
1644347791.845195: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.845207: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.845256: SAE: pwd-seed result 0 found=0xff
1644347791.845266: SAE: counter = 011
1644347791.845278: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.845290: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.845339: SAE: pwd-seed result 0 found=0xff
1644347791.845349: SAE: counter = 012
1644347791.845361: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.845373: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.845422: SAE: pwd-seed result 0 found=0xff
1644347791.845432: SAE: counter = 013
1644347791.845444: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.845456: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.845505: SAE: pwd-seed result 0 found=0xff
1644347791.845515: SAE: counter = 014
1644347791.845527: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.845539: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.845588: SAE: pwd-seed result 0 found=0xff
1644347791.845598: SAE: counter = 015
1644347791.845610: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.845622: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.845671: SAE: pwd-seed result 0 found=0xff
1644347791.845692: SAE: counter = 016
1644347791.845705: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.845718: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.845767: SAE: pwd-seed result 0 found=0xff
1644347791.845778: SAE: counter = 017
1644347791.845789: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.845802: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.845850: SAE: pwd-seed result 1 found=0xff
1644347791.845860: SAE: counter = 018
1644347791.845872: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.845884: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.845932: SAE: pwd-seed result 0 found=0xff
1644347791.845943: SAE: counter = 019
1644347791.845954: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.845967: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.846015: SAE: pwd-seed result 1 found=0xff
1644347791.846025: SAE: counter = 020
1644347791.846037: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.846049: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.846098: SAE: pwd-seed result 0 found=0xff
1644347791.846108: SAE: counter = 021
1644347791.846120: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.846132: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.846181: SAE: pwd-seed result 1 found=0xff
1644347791.846191: SAE: counter = 022
1644347791.846203: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.846215: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.846264: SAE: pwd-seed result 1 found=0xff
1644347791.846274: SAE: counter = 023
1644347791.846286: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.846298: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.846346: SAE: pwd-seed result 0 found=0xff
1644347791.846356: SAE: counter = 024
1644347791.846368: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.846380: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.846429: SAE: pwd-seed result 0 found=0xff
1644347791.846439: SAE: counter = 025
1644347791.846450: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.846462: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.846511: SAE: pwd-seed result 0 found=0xff
1644347791.846521: SAE: counter = 026
1644347791.846533: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.846545: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.846593: SAE: pwd-seed result 1 found=0xff
1644347791.846604: SAE: counter = 027
1644347791.846615: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.846628: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.846676: SAE: pwd-seed result 0 found=0xff
1644347791.846686: SAE: counter = 028
1644347791.846698: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.846710: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.846759: SAE: pwd-seed result 0 found=0xff
1644347791.846769: SAE: counter = 029
1644347791.846781: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.846793: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.846841: SAE: pwd-seed result 1 found=0xff
1644347791.846852: SAE: counter = 030
1644347791.846863: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.846876: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.846924: SAE: pwd-seed result 1 found=0xff
1644347791.846934: SAE: counter = 031
1644347791.846946: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.846958: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.847007: SAE: pwd-seed result 0 found=0xff
1644347791.847017: SAE: counter = 032
1644347791.847029: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.847041: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.847090: SAE: pwd-seed result 0 found=0xff
1644347791.847100: SAE: counter = 033
1644347791.847112: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.847124: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.847173: SAE: pwd-seed result 0 found=0xff
1644347791.847183: SAE: counter = 034
1644347791.847194: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.847207: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.847255: SAE: pwd-seed result 1 found=0xff
1644347791.847273: SAE: counter = 035
1644347791.847286: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.847298: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.847347: SAE: pwd-seed result 0 found=0xff
1644347791.847357: SAE: counter = 036
1644347791.847369: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.847381: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.847430: SAE: pwd-seed result 1 found=0xff
1644347791.847440: SAE: counter = 037
1644347791.847451: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.847464: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.847512: SAE: pwd-seed result 1 found=0xff
1644347791.847523: SAE: counter = 038
1644347791.847534: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.847547: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.847595: SAE: pwd-seed result 0 found=0xff
1644347791.847605: SAE: counter = 039
1644347791.847617: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.847630: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.847678: SAE: pwd-seed result 1 found=0xff
1644347791.847688: SAE: counter = 040
1644347791.847700: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347791.847712: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347791.847760: SAE: pwd-seed result 0 found=0xff
1644347791.847803: SAE: PWE - hexdump(len=64): [REMOVED]
1644347791.847921: SAE: own commit-scalar - hexdump(len=32): e9 bf fd d0 c4 0f 59 c2 68 5b 5b 7b 58 f8 3c 4e 6a f5 42 fa c0 31 b8 24 4e 6a 40 59 69 ac 36 06
1644347791.847944: SAE: own commit-element(x) - hexdump(len=32): 46 6a f1 9c 6e 3d f7 48 5e 35 03 25 65 70 f7 3f b2 3e 7f a1 78 ad f0 fa 08 78 b2 c7 33 5b 8e 25
1644347791.847956: SAE: own commit-element(y) - hexdump(len=32): 15 f8 c3 eb 5e 71 1a 2f 22 dc f8 a7 c7 94 45 43 ce ac d6 f3 b7 6a 00 8e fb 34 b0 c0 06 ee 72 85
1644347791.847969: EAPOL: External notification - EAP success=0
1644347791.847979: EAPOL: External notification - EAP fail=0
1644347791.847988: EAPOL: External notification - portControl=Auto
1644347791.847998: wlan1: Cancelling scan request
1644347791.848010: wlan1: SME: Trying to authenticate with 2c:91:ab:e0:30:34 (SSID='FRITZ!Box 7590 TC' freq=2437 MHz)
1644347791.848018: EAPOL: External notification - portValid=0
1644347791.848028: wlan1: State: SCANNING -> AUTHENTICATING
1644347791.848073: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
1644347791.848087: wlan1: Determining shared radio frequencies (max len 1)
1644347791.848097: wlan1: Shared frequencies (len=0): completed iteration
1644347791.848106: nl80211: Authenticate (ifindex=3)
1644347791.848121:   * bssid=2c:91:ab:e0:30:34
1644347791.848132:   * freq=2437
1644347791.848140:   * SSID=FRITZ!Box 7590 TC
1644347791.848149:   * IEs - hexdump(len=0): [NULL]
1644347791.848158:   * auth_data - hexdump(len=102): 01 00 00 00 13 00 e9 bf fd d0 c4 0f 59 c2 68 5b 5b 7b 58 f8 3c 4e 6a f5 42 fa c0 31 b8 24 4e 6a 40 59 69 ac 36 06 46 6a f1 9c 6e 3d f7 48 5e 35 03 25 65 70 f7 3f b2 3e 7f a1 78 ad f0 fa 08 78 b2 c7 33 5b 8e 25 15 f8 c3 eb 5e 71 1a 2f 22 dc f8 a7 c7 94 45 43 ce ac d6 f3 b7 6a 00 8e fb 34 b0 c0 06 ee 72 85
1644347791.848176:   * Auth Type 4
1644347791.851306: nl80211: Authentication request send successfully
1644347791.851357: nl80211: Event message available
1644347791.851377: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan1
1644347791.851390: nl80211: New station 2c:91:ab:e0:30:34
1644347791.853135: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347792.130951: nl80211: Event message available
1644347792.131072: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan1
1644347792.131100: nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:34
1644347792.131127: nl80211: MLME event frame - hexdump(len=128): b0 00 3a 01 c4 85 08 14 a1 b8 2c 91 ab e0 30 34 2c 91 ab e0 30 34 70 3c 03 00 01 00 00 00 13 00 89 73 00 71 ac 32 a7 05 bf 49 12 58 6c 15 81 72 92 1b ff fd e4 dc 0a e7 3c 54 97 60 6b 3d 39 a7 15 a0 49 7b 23 2a 96 e8 cd 74 3d 04 fd ac d3 54 c8 05 34 c3 db cf 98 59 1c c5 a8 c4 13 3c 9d 44 a3 bd 09 cd 73 0d e3 e4 f5 c2 bb 08 cc 3e d8 c5 a2 00 98 67 2d 5a 27 bb 65 59 bc 4b e1 c3 85 2b
1644347792.131219: nl80211: Authenticate event
1644347792.131250: wlan1: Event AUTH (10) received
1644347792.131280: wlan1: SME: Authentication response: peer=2c:91:ab:e0:30:34 auth_type=3 auth_transaction=1 status_code=0
1644347792.131303: SME: Authentication response IEs - hexdump(len=98): 13 00 89 73 00 71 ac 32 a7 05 bf 49 12 58 6c 15 81 72 92 1b ff fd e4 dc 0a e7 3c 54 97 60 6b 3d 39 a7 15 a0 49 7b 23 2a 96 e8 cd 74 3d 04 fd ac d3 54 c8 05 34 c3 db cf 98 59 1c c5 a8 c4 13 3c 9d 44 a3 bd 09 cd 73 0d e3 e4 f5 c2 bb 08 cc 3e d8 c5 a2 00 98 67 2d 5a 27 bb 65 59 bc 4b e1 c3 85 2b
1644347792.131376: wlan1: SME: SAE authentication transaction 1 status code 0
1644347792.131408: wlan1: SME SAE commit
1644347792.131436: SAE: Peer commit-scalar - hexdump(len=32): 89 73 00 71 ac 32 a7 05 bf 49 12 58 6c 15 81 72 92 1b ff fd e4 dc 0a e7 3c 54 97 60 6b 3d 39 a7
1644347792.131468: SAE: Peer commit-element(x) - hexdump(len=32): 15 a0 49 7b 23 2a 96 e8 cd 74 3d 04 fd ac d3 54 c8 05 34 c3 db cf 98 59 1c c5 a8 c4 13 3c 9d 44
1644347792.131497: SAE: Peer commit-element(y) - hexdump(len=32): a3 bd 09 cd 73 0d e3 e4 f5 c2 bb 08 cc 3e d8 c5 a2 00 98 67 2d 5a 27 bb 65 59 bc 4b e1 c3 85 2b
1644347792.131546: SAE: Possible elements at the end of the frame - hexdump(len=0):
1644347792.132069: SAE: k - hexdump(len=32): [REMOVED]
1644347792.132097: SAE: salt for keyseed derivation - hexdump(len=32): 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 00 00 00 00 00 00 00
1644347792.132147: SAE: keyseed - hexdump(len=32): [REMOVED]
1644347792.132177: SAE: PMKID - hexdump(len=16): 73 32 fe 43 70 42 00 c7 27 a4 6d d3 c5 0d bd c1
1644347792.132219: SAE: KCK - hexdump(len=32): [REMOVED]
1644347792.132243: SAE: PMK - hexdump(len=32): [REMOVED]
1644347792.132268: wlan1: Automatic auth_alg selection: 0x1
1644347792.132292: wlan1: Overriding auth_alg selection: 0x1
1644347792.132318: wlan1: Using SAE auth_alg
1644347792.132341: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x0
1644347792.132364: RSN: Search for BSSID 2c:91:ab:e0:30:34
1644347792.132387: RSN: No PMKSA cache entry found
1644347792.132411: wlan1: RSN: using IEEE 802.11i/D9.0
1644347792.132436: wlan1: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1026 proto 2
1644347792.132459: wlan1: WPA: Selected mgmt group cipher 32
1644347792.132483: wlan1: WPA: clearing AP WPA IE
1644347792.132505: WPA: set AP RSN IE - hexdump(len=26): 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347792.132535: wlan1: WPA: clearing AP RSNXE
1644347792.132560: wlan1: WPA: AP group 0x10 network profile group 0x18; available group 0x10
1644347792.132583: wlan1: WPA: using GTK CCMP
1644347792.132607: wlan1: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
1644347792.132630: wlan1: WPA: using PTK CCMP
1644347792.132655: wlan1: WPA: AP key_mgmt 0x402 network profile key_mgmt 0x502; available key_mgmt 0x402
1644347792.132678: wlan1: RSN: using KEY_MGMT SAE
1644347792.132703: wlan1: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
1644347792.132726: wlan1: WPA: not using MGMT group cipher
1644347792.132749: 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
1644347792.132803: 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
1644347792.132831: RSN: Set own RSNXE default - hexdump(len=0):
1644347792.132853: PSK (set in config) - hexdump(len=32): [REMOVED]
1644347792.132875: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347792.132898: RRM: Determining whether RRM can be used - device support: 0x10
1644347792.132919: RRM: Adding RRM IE to Association Request
1644347792.132975: Added supported operating classes IE - hexdump(len=19): 3b 11 51 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347792.133007: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x400
1644347792.133030: RSN: Search for BSSID 2c:91:ab:e0:30:34
1644347792.133052: RSN: No PMKSA cache entry found
1644347792.133124: EAPOL: External notification - EAP success=0
1644347792.133151: EAPOL: External notification - EAP fail=0
1644347792.133174: EAPOL: External notification - portControl=Auto
1644347792.133199: wlan1: Cancelling scan request
1644347792.133227: wlan1: SME: Trying to authenticate with 2c:91:ab:e0:30:34 (SSID='FRITZ!Box 7590 TC' freq=2437 MHz)
1644347792.133249: EAPOL: External notification - portValid=0
1644347792.133274: wlan1: State: AUTHENTICATING -> AUTHENTICATING
1644347792.133297: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
1644347792.133323: wlan1: Determining shared radio frequencies (max len 1)
1644347792.133348: wlan1: Shared frequencies (len=0): completed iteration
1644347792.133371: nl80211: Authenticate (ifindex=3)
1644347792.133399:   * bssid=2c:91:ab:e0:30:34
1644347792.133422:   * freq=2437
1644347792.133444:   * SSID=FRITZ!Box 7590 TC
1644347792.133466:   * IEs - hexdump(len=0): [NULL]
1644347792.133488:   * auth_data - hexdump(len=38): 02 00 00 00 01 00 d8 67 db 84 9d 7b 1f 7a ff e0 f4 8a 52 a1 3d fc 46 06 84 08 b9 b5 8d af 89 11 63 0f ce 3d 09 d4
1644347792.133520:   * Auth Type 4
1644347792.133651: nl80211: Authentication request send successfully
1644347792.246296: nl80211: Event message available
1644347792.246440: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan1
1644347792.246475: nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:34
1644347792.246505: nl80211: MLME event frame - hexdump(len=64): b0 00 3a 01 c4 85 08 14 a1 b8 2c 91 ab e0 30 34 2c 91 ab e0 30 34 90 3c 03 00 02 00 00 00 00 00 cb 69 d1 9d c3 b5 bb 58 68 bf f2 25 2e b1 11 86 01 0f 5f 1b 95 61 09 fc 48 91 c2 dd fa 65 24 59
1644347792.246547: nl80211: Authenticate event
1644347792.246579: wlan1: Event AUTH (10) received
1644347792.246614: wlan1: SME: Authentication response: peer=2c:91:ab:e0:30:34 auth_type=3 auth_transaction=2 status_code=0
1644347792.246639: SME: Authentication response IEs - hexdump(len=34): 00 00 cb 69 d1 9d c3 b5 bb 58 68 bf f2 25 2e b1 11 86 01 0f 5f 1b 95 61 09 fc 48 91 c2 dd fa 65 24 59
1644347792.246679: wlan1: SME: SAE authentication transaction 2 status code 0
1644347792.246705: wlan1: SME SAE confirm
1644347792.246729: SAE: peer-send-confirm 0
1644347792.246833: SME: SAE completed - setting PMK for 4-way handshake
1644347792.246862: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347792.246892: RSN: Added PMKSA cache entry for 2c:91:ab:e0:30:34 network_ctx=0x55a488595780 akmp=0x400
1644347792.246928: wlan1: PMKSA-CACHE-ADDED 2c:91:ab:e0:30:34 0
1644347792.246955: nl80211: Add PMKID for 2c:91:ab:e0:30:34
1644347792.247058: nl80211: NL80211_CMD_SET_PMKSA failed: -95 (Operation not supported)
1644347792.247093: SME: Association Request IEs - hexdump(len=61): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 51 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347792.247142: wlan1: Trying to associate with 2c:91:ab:e0:30:34 (SSID='FRITZ!Box 7590 TC' freq=2437 MHz)
1644347792.247170: wlan1: State: AUTHENTICATING -> ASSOCIATING
1644347792.247196: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347792.247223: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347792.247365: 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
1644347792.247440: wlan1: RSN: clearing own RSNXE
1644347792.247486: nl80211: Associate (ifindex=3)
1644347792.247537:   * bssid=2c:91:ab:e0:30:34
1644347792.247575:   * freq=2437
1644347792.247601:   * SSID=FRITZ!Box 7590 TC
1644347792.247667:   * IEs - hexdump(len=61): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 51 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347792.247713:   * WPA Versions 0x2
1644347792.247737:   * pairwise=0xfac04
1644347792.247762:   * group=0xfac04
1644347792.247786:   * akm=0xfac08
1644347792.247877: nl80211: Association request send successfully
1644347792.288966: nl80211: Event message available
1644347792.289092: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan1
1644347792.289124: nl80211: Delete station 2c:91:ab:e0:30:34
1644347792.290293: nl80211: Event message available
1644347792.290418: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan1
1644347792.290450: nl80211: MLME event 38 (NL80211_CMD_ASSOCIATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:34
1644347792.290481: nl80211: MLME event frame - hexdump(len=193): 10 00 3a 01 c4 85 08 14 a1 b8 2c 91 ab e0 30 34 2c 91 ab e0 30 34 10 10 31 14 28 00 01 43 01 08 82 84 8b 96 8c 12 98 24 32 04 b0 48 60 6c 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 08 8c fd f0 01 01 02 01 00 dd 18 00 50 f2 04 10 4a 00 01 10 10 3b 00 01 03 10 49 00 06 00 37 2a 00 01 20
1644347792.290556: nl80211: Associate event
1644347792.290587: wlan1: Event ASSOC_REJECT (12) received
1644347792.290620: wlan1: CTRL-EVENT-ASSOC-REJECT bssid=2c:91:ab:e0:30:34 status_code=40
1644347792.290807: wlan1: SME: Association with 2c:91:ab:e0:30:34 failed: status code 40
1644347792.290846: wpa_driver_nl80211_deauthenticate(addr=2c:91:ab:e0:30:34 reason_code=3)
1644347792.290950: wlan1: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
1644347792.290989: wlan1: SME: Deauth request to the driver failed
1644347792.291024: wlan1: Radio work 'sme-connect'@0x55a488595df0 done in 0.448407 seconds
1644347792.291059: wlan1: radio_work_free('sme-connect'@0x55a488595df0): num_active_works --> 0
1644347792.291092: Added BSSID 2c:91:ab:e0:30:34 into ignore list, ignoring for 10 seconds
1644347792.291130: wlan1: Another BSS in this ESS has been seen; try it next
1644347792.291159: BSSID 2c:91:ab:e0:30:34 ignore list count incremented to 2, ignoring for 10 seconds
1644347792.291196: wlan1: Consecutive connection failures: 2 --> request scan in 500 ms
1644347792.291235: wlan1: Setting scan request: 0.500000 sec
1644347792.291268: wlan1: State: ASSOCIATING -> DISCONNECTED
1644347792.291310: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347792.291349: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347792.291475: nl80211: Event message available
1644347792.291538: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan1
1644347792.291574: nl80211: Ignore connect event (cmd=46) when using userspace SME
1644347792.296455: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347792.791850: wlan1: State: DISCONNECTED -> SCANNING
1644347792.792054: Scan SSID - hexdump_ascii(len=17):
     46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54   FRITZ!Box 7590 T
     43                                                C               
1644347792.792136: wlan1: Starting AP scan for wildcard SSID
1644347792.792173: wlan1: Optimize scan based on previously generated frequency list
1644347792.792212: wlan1: Add radio work 'scan'@0x55a48859e760
1644347792.792245: wlan1: First radio work item in the queue - schedule start immediately
1644347792.792289: wlan1: Starting radio work 'scan'@0x55a48859e760 after 0.000040 second wait
1644347792.792357: wlan1: nl80211: scan request
1644347792.792401: nl80211: Scan SSID FRITZ!Box 7590 TC
1644347792.792431: nl80211: Scan SSID 
1644347792.792505: nl80211: Scan extra IEs - hexdump(len=13): 7f 0b 00 00 00 00 01 00 40 40 00 00 20
1644347792.792544: nl80211: Scan frequency 2437 MHz
1644347792.792570: nl80211: Scan frequency 5260 MHz
1644347792.793063: Scan requested (ret=0) - scan timeout 30 seconds
1644347792.793152: nl80211: Event message available
1644347792.793195: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan1
1644347792.793230: wlan1: nl80211: Scan trigger
1644347792.793260: wlan1: Event SCAN_STARTED (47) received
1644347792.793290: wlan1: Own scan request started a scan in 0.000150 seconds
1644347792.797142: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347792.860710: RTM_NEWLINK: ifi_index=3 ifname=wlan1 wext ifi_family=0 ifi_flags=0x1003 ([UP])
1644347792.860886: nl80211: Event message available
1644347792.860958: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan1
1644347792.860994: wlan1: nl80211: New scan results available
1644347792.861024: nl80211: Scan probed for SSID 'FRITZ!Box 7590 TC'
1644347792.861050: nl80211: Scan probed for SSID ''
1644347792.861075: nl80211: Scan included frequencies: 2437 5260
1644347792.861103: wlan1: Event SCAN_RESULTS (3) received
1644347792.861134: wlan1: Scan completed in 0.067843 seconds
1644347792.861376: nl80211: Received scan results (6 BSSes)
1644347792.861483: Sorted scan results
1644347792.861515: 2c:91:ab:e0:30:35 freq=5260 qual=0 noise=-92~ level=-45 snr=47* flags=0xb age=24 est=135000
1644347792.861546: IEs - hexdump(len=458): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff 69 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347792.861686: Beacon IEs - hexdump(len=382): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff 00 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347792.861843: 2c:91:ab:e0:30:34 freq=2437 qual=0 noise=-89~ level=-33 snr=56* flags=0xb age=60 est=65000
1644347792.861877: IEs - hexdump(len=365): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 4e 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347792.861992: Beacon IEs - hexdump(len=289): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 2c 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347792.862090: e0:28:6d:7e:94:3c freq=2437 qual=0 noise=-89~ level=-66 snr=23 flags=0xb age=44 est=62400
1644347792.862116: IEs - hexdump(len=455): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 0a 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fe b5 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c dd 08 8c fd f0 01 01 02 01 00
1644347792.862253: Beacon IEs - hexdump(len=379): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 0a 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fe b5 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c
1644347792.862387: e0:28:6d:7e:94:3b freq=5260 qual=0 noise=-92~ level=-78 snr=14 flags=0xb age=24 est=54000
1644347792.862416: IEs - hexdump(len=491): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 fe 4f 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347792.862562: Beacon IEs - hexdump(len=415): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff 12 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00
1644347792.862691: cc:ce:1e:65:97:c5 freq=2437 qual=0 noise=-89~ level=-87 snr=2 flags=0xb age=5260 est=6500
1644347792.862718: IEs - hexdump(len=382): 00 0e 46 52 49 54 5a 21 42 6f 78 20 37 34 39 30 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 00 00 11 00 00 46 05 73 d0 00 00 0c 2d 1a ad 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 07 0c 00 3d 16 06 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 39 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 2d ed c3 d2 7e 38 02 a3 26 a3 cc ce 1e 65 97 c5 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347792.862850: ce:ce:1e:65:97:c5 freq=2437 qual=0 noise=-89~ level=-91 snr=-2 flags=0xb age=5252 est=1000
1644347792.862879: IEs - hexdump(len=364): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 00 00 10 00 00 46 05 73 d0 00 00 0c 2d 1a ad 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 07 0c 00 3d 16 06 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 39 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 52 c7 5a ec 12 74 94 28 0b 9a e4 ef a7 3e b5 fd 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347792.862998: wlan1: BSS: Start scan result update 3
1644347792.863099: BSS: last_scan_res_used=6/32
1644347792.863131: wlan1: New scan results available (own=1 ext=0)
1644347792.863194: WPS: attr type=0x104a len=1
1644347792.863227: WPS: attr type=0x1044 len=1
1644347792.863257: WPS: attr type=0x103b len=1
1644347792.863284: WPS: attr type=0x1047 len=16
1644347792.863312: WPS: attr type=0x1021 len=3
1644347792.863343: WPS: attr type=0x1023 len=4
1644347792.863374: WPS: attr type=0x1024 len=4
1644347792.863398: WPS: attr type=0x1042 len=4
1644347792.863422: WPS: attr type=0x1054 len=8
1644347792.863447: WPS: attr type=0x1011 len=4
1644347792.863472: WPS: attr type=0x1008 len=2
1644347792.863496: WPS: attr type=0x103c len=1
1644347792.863520: WPS: attr type=0x1049 len=6
1644347792.863544: WPS: WFA subelement id=0 len=1
1644347792.863569: WPS: attr type=0x104a len=1
1644347792.863594: WPS: attr type=0x1044 len=1
1644347792.863617: WPS: attr type=0x103b len=1
1644347792.863642: WPS: attr type=0x1047 len=16
1644347792.863666: WPS: attr type=0x1021 len=3
1644347792.863691: WPS: attr type=0x1023 len=4
1644347792.863714: WPS: attr type=0x1024 len=4
1644347792.863738: WPS: attr type=0x1042 len=4
1644347792.863762: WPS: attr type=0x1054 len=8
1644347792.863786: WPS: attr type=0x1011 len=4
1644347792.863811: WPS: attr type=0x1008 len=2
1644347792.863835: WPS: attr type=0x103c len=1
1644347792.863859: WPS: attr type=0x1049 len=6
1644347792.863883: WPS: WFA subelement id=0 len=1
1644347792.863908: WPS: attr type=0x104a len=1
1644347792.863932: WPS: attr type=0x1044 len=1
1644347792.863955: WPS: attr type=0x103b len=1
1644347792.863979: WPS: attr type=0x1047 len=16
1644347792.864003: WPS: attr type=0x1021 len=3
1644347792.864027: WPS: attr type=0x1023 len=4
1644347792.864051: WPS: attr type=0x1024 len=4
1644347792.864075: WPS: attr type=0x1042 len=4
1644347792.864120: WPS: attr type=0x1054 len=8
1644347792.864149: WPS: attr type=0x1011 len=4
1644347792.864176: WPS: attr type=0x1008 len=2
1644347792.864203: WPS: attr type=0x103c len=1
1644347792.864228: WPS: attr type=0x1049 len=6
1644347792.864253: WPS: WFA subelement id=0 len=1
1644347792.864280: WPS: attr type=0x104a len=1
1644347792.864306: WPS: attr type=0x1044 len=1
1644347792.864333: WPS: attr type=0x103b len=1
1644347792.864358: WPS: attr type=0x1047 len=16
1644347792.864382: WPS: attr type=0x1021 len=3
1644347792.864407: WPS: attr type=0x1023 len=4
1644347792.864431: WPS: attr type=0x1024 len=4
1644347792.864455: WPS: attr type=0x1042 len=4
1644347792.864479: WPS: attr type=0x1054 len=8
1644347792.864503: WPS: attr type=0x1011 len=4
1644347792.864528: WPS: attr type=0x1008 len=2
1644347792.864553: WPS: attr type=0x103c len=1
1644347792.864578: WPS: attr type=0x1049 len=6
1644347792.864602: WPS: WFA subelement id=0 len=1
1644347792.864627: WPS: attr type=0x104a len=1
1644347792.864651: WPS: attr type=0x1044 len=1
1644347792.864676: WPS: attr type=0x103b len=1
1644347792.864701: WPS: attr type=0x1047 len=16
1644347792.864725: WPS: attr type=0x1021 len=3
1644347792.864749: WPS: attr type=0x1023 len=4
1644347792.864795: WPS: attr type=0x1024 len=4
1644347792.864825: WPS: attr type=0x1042 len=4
1644347792.864851: WPS: attr type=0x1054 len=8
1644347792.864875: WPS: attr type=0x1011 len=4
1644347792.864900: WPS: attr type=0x1008 len=2
1644347792.864924: WPS: attr type=0x103c len=1
1644347792.864949: WPS: attr type=0x1049 len=6
1644347792.864974: WPS: WFA subelement id=0 len=1
1644347792.864998: WPS: attr type=0x104a len=1
1644347792.865023: WPS: attr type=0x1044 len=1
1644347792.865047: WPS: attr type=0x103b len=1
1644347792.865071: WPS: attr type=0x1047 len=16
1644347792.865096: WPS: attr type=0x1021 len=3
1644347792.865120: WPS: attr type=0x1023 len=4
1644347792.865145: WPS: attr type=0x1024 len=4
1644347792.865169: WPS: attr type=0x1042 len=4
1644347792.865193: WPS: attr type=0x1054 len=8
1644347792.865217: WPS: attr type=0x1011 len=4
1644347792.865242: WPS: attr type=0x1008 len=2
1644347792.865267: WPS: attr type=0x103c len=1
1644347792.865293: WPS: attr type=0x1049 len=6
1644347792.865317: WPS: WFA subelement id=0 len=1
1644347792.865345: WPS: attr type=0x104a len=1
1644347792.865372: WPS: attr type=0x1044 len=1
1644347792.865400: WPS: attr type=0x103b len=1
1644347792.865427: WPS: attr type=0x1047 len=16
1644347792.865454: WPS: attr type=0x1021 len=3
1644347792.865482: WPS: attr type=0x1023 len=4
1644347792.865509: WPS: attr type=0x1024 len=4
1644347792.865537: WPS: attr type=0x1042 len=4
1644347792.865564: WPS: attr type=0x1054 len=8
1644347792.865591: WPS: attr type=0x1011 len=4
1644347792.865619: WPS: attr type=0x1008 len=2
1644347792.865647: WPS: attr type=0x103c len=1
1644347792.865675: WPS: attr type=0x1049 len=6
1644347792.865702: WPS: WFA subelement id=0 len=1
1644347792.865729: WPS: attr type=0x104a len=1
1644347792.865757: WPS: attr type=0x1044 len=1
1644347792.865785: WPS: attr type=0x103b len=1
1644347792.865811: WPS: attr type=0x1047 len=16
1644347792.865839: WPS: attr type=0x1021 len=3
1644347792.865866: WPS: attr type=0x1023 len=4
1644347792.865894: WPS: attr type=0x1024 len=4
1644347792.865921: WPS: attr type=0x1042 len=4
1644347792.865948: WPS: attr type=0x1054 len=8
1644347792.865975: WPS: attr type=0x1011 len=4
1644347792.866003: WPS: attr type=0x1008 len=2
1644347792.866030: WPS: attr type=0x103c len=1
1644347792.866058: WPS: attr type=0x1049 len=6
1644347792.866085: WPS: WFA subelement id=0 len=1
1644347792.866113: WPS: attr type=0x104a len=1
1644347792.866140: WPS: attr type=0x1044 len=1
1644347792.866168: WPS: attr type=0x103b len=1
1644347792.866196: WPS: attr type=0x1047 len=16
1644347792.866224: WPS: attr type=0x1021 len=3
1644347792.866251: WPS: attr type=0x1023 len=4
1644347792.866279: WPS: attr type=0x1024 len=4
1644347792.866306: WPS: attr type=0x1042 len=4
1644347792.866334: WPS: attr type=0x1054 len=8
1644347792.866362: WPS: attr type=0x1011 len=4
1644347792.866389: WPS: attr type=0x1008 len=2
1644347792.866434: WPS: attr type=0x103c len=1
1644347792.866461: WPS: attr type=0x1049 len=6
1644347792.866488: WPS: WFA subelement id=0 len=1
1644347792.866516: WPS: attr type=0x104a len=1
1644347792.866543: WPS: attr type=0x1044 len=1
1644347792.866570: WPS: attr type=0x103b len=1
1644347792.866596: WPS: attr type=0x1047 len=16
1644347792.866622: WPS: attr type=0x1021 len=3
1644347792.866649: WPS: attr type=0x1023 len=4
1644347792.866675: WPS: attr type=0x1024 len=4
1644347792.866700: WPS: attr type=0x1042 len=4
1644347792.866727: WPS: attr type=0x1054 len=8
1644347792.866753: WPS: attr type=0x1011 len=4
1644347792.866779: WPS: attr type=0x1008 len=2
1644347792.866806: WPS: attr type=0x103c len=1
1644347792.866830: WPS: attr type=0x1049 len=6
1644347792.866855: WPS: WFA subelement id=0 len=1
1644347792.866882: WPS: attr type=0x104a len=1
1644347792.866908: WPS: attr type=0x1044 len=1
1644347792.866933: WPS: attr type=0x103b len=1
1644347792.866959: WPS: attr type=0x1047 len=16
1644347792.866985: WPS: attr type=0x1021 len=3
1644347792.867011: WPS: attr type=0x1023 len=4
1644347792.867038: WPS: attr type=0x1024 len=4
1644347792.867064: WPS: attr type=0x1042 len=4
1644347792.867091: WPS: attr type=0x1054 len=8
1644347792.867117: WPS: attr type=0x1011 len=4
1644347792.867143: WPS: attr type=0x1008 len=2
1644347792.867168: WPS: attr type=0x103c len=1
1644347792.867194: WPS: attr type=0x1049 len=6
1644347792.867220: WPS: WFA subelement id=0 len=1
1644347792.867247: WPS: attr type=0x104a len=1
1644347792.867274: WPS: attr type=0x1044 len=1
1644347792.867299: WPS: attr type=0x103b len=1
1644347792.867325: WPS: attr type=0x1047 len=16
1644347792.867351: WPS: attr type=0x1021 len=3
1644347792.867378: WPS: attr type=0x1023 len=4
1644347792.867404: WPS: attr type=0x1024 len=4
1644347792.867430: WPS: attr type=0x1042 len=4
1644347792.867456: WPS: attr type=0x1054 len=8
1644347792.867482: WPS: attr type=0x1011 len=4
1644347792.867507: WPS: attr type=0x1008 len=2
1644347792.867533: WPS: attr type=0x103c len=1
1644347792.867559: WPS: attr type=0x1049 len=6
1644347792.867584: WPS: WFA subelement id=0 len=1
1644347792.867611: WPS: attr type=0x104a len=1
1644347792.867638: WPS: attr type=0x1044 len=1
1644347792.867664: WPS: attr type=0x103b len=1
1644347792.867689: WPS: attr type=0x1047 len=16
1644347792.867717: WPS: attr type=0x1021 len=3
1644347792.867743: WPS: attr type=0x1023 len=4
1644347792.867770: WPS: attr type=0x1024 len=4
1644347792.867796: WPS: attr type=0x1042 len=4
1644347792.867821: WPS: attr type=0x1054 len=8
1644347792.867847: WPS: attr type=0x1011 len=4
1644347792.867873: WPS: attr type=0x1008 len=2
1644347792.867899: WPS: attr type=0x103c len=1
1644347792.867925: WPS: attr type=0x1049 len=6
1644347792.867951: WPS: WFA subelement id=0 len=1
1644347792.867978: WPS: attr type=0x104a len=1
1644347792.868004: WPS: attr type=0x1044 len=1
1644347792.868031: WPS: attr type=0x103b len=1
1644347792.868056: WPS: attr type=0x1047 len=16
1644347792.868081: WPS: attr type=0x1021 len=3
1644347792.868107: WPS: attr type=0x1023 len=4
1644347792.868133: WPS: attr type=0x1024 len=4
1644347792.868159: WPS: attr type=0x1042 len=4
1644347792.868185: WPS: attr type=0x1054 len=8
1644347792.868211: WPS: attr type=0x1011 len=4
1644347792.868237: WPS: attr type=0x1008 len=2
1644347792.868262: WPS: attr type=0x103c len=1
1644347792.868288: WPS: attr type=0x1049 len=6
1644347792.868314: WPS: WFA subelement id=0 len=1
1644347792.868340: WPS: attr type=0x104a len=1
1644347792.868366: WPS: attr type=0x1044 len=1
1644347792.868392: WPS: attr type=0x103b len=1
1644347792.868418: WPS: attr type=0x1047 len=16
1644347792.868444: WPS: attr type=0x1021 len=3
1644347792.868470: WPS: attr type=0x1023 len=4
1644347792.868496: WPS: attr type=0x1024 len=4
1644347792.868522: WPS: attr type=0x1042 len=4
1644347792.868547: WPS: attr type=0x1054 len=8
1644347792.868573: WPS: attr type=0x1011 len=4
1644347792.868599: WPS: attr type=0x1008 len=2
1644347792.868625: WPS: attr type=0x103c len=1
1644347792.868652: WPS: attr type=0x1049 len=6
1644347792.868677: WPS: WFA subelement id=0 len=1
1644347792.868720: WPS: attr type=0x104a len=1
1644347792.868746: WPS: attr type=0x1044 len=1
1644347792.868786: WPS: attr type=0x103b len=1
1644347792.868822: WPS: attr type=0x1047 len=16
1644347792.868850: WPS: attr type=0x1021 len=3
1644347792.868877: WPS: attr type=0x1023 len=4
1644347792.868904: WPS: attr type=0x1024 len=4
1644347792.868932: WPS: attr type=0x1042 len=4
1644347792.868959: WPS: attr type=0x1054 len=8
1644347792.868985: WPS: attr type=0x1011 len=4
1644347792.869012: WPS: attr type=0x1008 len=2
1644347792.869038: WPS: attr type=0x103c len=1
1644347792.869063: WPS: attr type=0x1049 len=6
1644347792.869089: WPS: WFA subelement id=0 len=1
1644347792.869116: WPS: attr type=0x104a len=1
1644347792.869142: WPS: attr type=0x1044 len=1
1644347792.869168: WPS: attr type=0x103b len=1
1644347792.869193: WPS: attr type=0x1047 len=16
1644347792.869218: WPS: attr type=0x1021 len=3
1644347792.869244: WPS: attr type=0x1023 len=4
1644347792.869270: WPS: attr type=0x1024 len=4
1644347792.869295: WPS: attr type=0x1042 len=4
1644347792.869321: WPS: attr type=0x1054 len=8
1644347792.869347: WPS: attr type=0x1011 len=4
1644347792.869373: WPS: attr type=0x1008 len=2
1644347792.869399: WPS: attr type=0x103c len=1
1644347792.869424: WPS: attr type=0x1049 len=6
1644347792.869449: WPS: WFA subelement id=0 len=1
1644347792.869476: WPS: attr type=0x104a len=1
1644347792.869502: WPS: attr type=0x1044 len=1
1644347792.869529: WPS: attr type=0x103b len=1
1644347792.869562: WPS: attr type=0x1047 len=16
1644347792.869591: WPS: attr type=0x1021 len=3
1644347792.869617: WPS: attr type=0x1023 len=4
1644347792.869643: WPS: attr type=0x1024 len=4
1644347792.869669: WPS: attr type=0x1042 len=4
1644347792.869696: WPS: attr type=0x1054 len=8
1644347792.869722: WPS: attr type=0x1011 len=4
1644347792.869748: WPS: attr type=0x1008 len=2
1644347792.869774: WPS: attr type=0x103c len=1
1644347792.869800: WPS: attr type=0x1049 len=6
1644347792.869826: WPS: WFA subelement id=0 len=1
1644347792.869903: WPS: attr type=0x104a len=1
1644347792.869937: WPS: attr type=0x1044 len=1
1644347792.869964: WPS: attr type=0x103b len=1
1644347792.869992: WPS: attr type=0x1047 len=16
1644347792.870022: WPS: attr type=0x1021 len=3
1644347792.870053: WPS: attr type=0x1023 len=4
1644347792.870083: WPS: attr type=0x1024 len=4
1644347792.870112: WPS: attr type=0x1042 len=4
1644347792.870144: WPS: attr type=0x1054 len=8
1644347792.870174: WPS: attr type=0x1011 len=4
1644347792.870203: WPS: attr type=0x1008 len=2
1644347792.870225: WPS: attr type=0x103c len=1
1644347792.870246: WPS: attr type=0x1049 len=6
1644347792.870267: WPS: WFA subelement id=0 len=1
1644347792.870289: WPS: attr type=0x104a len=1
1644347792.870310: WPS: attr type=0x1044 len=1
1644347792.870331: WPS: attr type=0x103b len=1
1644347792.870352: WPS: attr type=0x1047 len=16
1644347792.870373: WPS: attr type=0x1021 len=3
1644347792.870394: WPS: attr type=0x1023 len=4
1644347792.870415: WPS: attr type=0x1024 len=4
1644347792.870436: WPS: attr type=0x1042 len=4
1644347792.870457: WPS: attr type=0x1054 len=8
1644347792.870477: WPS: attr type=0x1011 len=4
1644347792.870498: WPS: attr type=0x1008 len=2
1644347792.870519: WPS: attr type=0x103c len=1
1644347792.870540: WPS: attr type=0x1049 len=6
1644347792.870561: WPS: WFA subelement id=0 len=1
1644347792.870583: WPS: attr type=0x104a len=1
1644347792.870604: WPS: attr type=0x1044 len=1
1644347792.870625: WPS: attr type=0x103b len=1
1644347792.870646: WPS: attr type=0x1047 len=16
1644347792.870667: WPS: attr type=0x1021 len=3
1644347792.870688: WPS: attr type=0x1023 len=4
1644347792.870709: WPS: attr type=0x1024 len=4
1644347792.870730: WPS: attr type=0x1042 len=4
1644347792.870751: WPS: attr type=0x1054 len=8
1644347792.870771: WPS: attr type=0x1011 len=4
1644347792.870792: WPS: attr type=0x1008 len=2
1644347792.870813: WPS: attr type=0x103c len=1
1644347792.870834: WPS: attr type=0x1049 len=6
1644347792.870855: WPS: WFA subelement id=0 len=1
1644347792.870878: WPS: attr type=0x104a len=1
1644347792.870900: WPS: attr type=0x1044 len=1
1644347792.870943: WPS: attr type=0x103b len=1
1644347792.870966: WPS: attr type=0x1047 len=16
1644347792.870988: WPS: attr type=0x1021 len=3
1644347792.871009: WPS: attr type=0x1023 len=4
1644347792.871030: WPS: attr type=0x1024 len=4
1644347792.871051: WPS: attr type=0x1042 len=4
1644347792.871072: WPS: attr type=0x1054 len=8
1644347792.871093: WPS: attr type=0x1011 len=4
1644347792.871114: WPS: attr type=0x1008 len=2
1644347792.871136: WPS: attr type=0x103c len=1
1644347792.871157: WPS: attr type=0x1049 len=6
1644347792.871178: WPS: WFA subelement id=0 len=1
1644347792.871199: WPS: attr type=0x104a len=1
1644347792.871220: WPS: attr type=0x1044 len=1
1644347792.871241: WPS: attr type=0x103b len=1
1644347792.871262: WPS: attr type=0x1047 len=16
1644347792.871283: WPS: attr type=0x1021 len=3
1644347792.871304: WPS: attr type=0x1023 len=4
1644347792.871325: WPS: attr type=0x1024 len=4
1644347792.871346: WPS: attr type=0x1042 len=4
1644347792.871367: WPS: attr type=0x1054 len=8
1644347792.871387: WPS: attr type=0x1011 len=4
1644347792.871408: WPS: attr type=0x1008 len=2
1644347792.871429: WPS: attr type=0x103c len=1
1644347792.871450: WPS: attr type=0x1049 len=6
1644347792.871471: WPS: WFA subelement id=0 len=1
1644347792.871492: WPS: attr type=0x104a len=1
1644347792.871513: WPS: attr type=0x1044 len=1
1644347792.871534: WPS: attr type=0x103b len=1
1644347792.871555: WPS: attr type=0x1047 len=16
1644347792.871576: WPS: attr type=0x1021 len=3
1644347792.871597: WPS: attr type=0x1023 len=4
1644347792.871618: WPS: attr type=0x1024 len=4
1644347792.871639: WPS: attr type=0x1042 len=4
1644347792.871660: WPS: attr type=0x1054 len=8
1644347792.871681: WPS: attr type=0x1011 len=4
1644347792.871701: WPS: attr type=0x1008 len=2
1644347792.871722: WPS: attr type=0x103c len=1
1644347792.871743: WPS: attr type=0x1049 len=6
1644347792.871764: WPS: WFA subelement id=0 len=1
1644347792.871786: WPS: attr type=0x104a len=1
1644347792.871808: WPS: attr type=0x1044 len=1
1644347792.871829: WPS: attr type=0x103b len=1
1644347792.871851: WPS: attr type=0x1047 len=16
1644347792.871872: WPS: attr type=0x1021 len=3
1644347792.871892: WPS: attr type=0x1023 len=4
1644347792.871913: WPS: attr type=0x1024 len=4
1644347792.871934: WPS: attr type=0x1042 len=4
1644347792.871955: WPS: attr type=0x1054 len=8
1644347792.871976: WPS: attr type=0x1011 len=4
1644347792.871996: WPS: attr type=0x1008 len=2
1644347792.872017: WPS: attr type=0x103c len=1
1644347792.872038: WPS: attr type=0x1049 len=6
1644347792.872059: WPS: WFA subelement id=0 len=1
1644347792.872080: WPS: attr type=0x104a len=1
1644347792.872101: WPS: attr type=0x1044 len=1
1644347792.872123: WPS: attr type=0x103b len=1
1644347792.872144: WPS: attr type=0x1047 len=16
1644347792.872165: WPS: attr type=0x1021 len=3
1644347792.872185: WPS: attr type=0x1023 len=4
1644347792.872206: WPS: attr type=0x1024 len=4
1644347792.872227: WPS: attr type=0x1042 len=4
1644347792.872248: WPS: attr type=0x1054 len=8
1644347792.872269: WPS: attr type=0x1011 len=4
1644347792.872290: WPS: attr type=0x1008 len=2
1644347792.872311: WPS: attr type=0x103c len=1
1644347792.872332: WPS: attr type=0x1049 len=6
1644347792.872353: WPS: WFA subelement id=0 len=1
1644347792.872375: WPS: attr type=0x104a len=1
1644347792.872396: WPS: attr type=0x1044 len=1
1644347792.872417: WPS: attr type=0x103b len=1
1644347792.872438: WPS: attr type=0x1047 len=16
1644347792.872459: WPS: attr type=0x1021 len=3
1644347792.872480: WPS: attr type=0x1023 len=4
1644347792.872501: WPS: attr type=0x1024 len=4
1644347792.872522: WPS: attr type=0x1042 len=4
1644347792.872542: WPS: attr type=0x1054 len=8
1644347792.872564: WPS: attr type=0x1011 len=4
1644347792.872585: WPS: attr type=0x1008 len=2
1644347792.872605: WPS: attr type=0x103c len=1
1644347792.872626: WPS: attr type=0x1049 len=6
1644347792.872647: WPS: WFA subelement id=0 len=1
1644347792.872670: WPS: attr type=0x104a len=1
1644347792.872692: WPS: attr type=0x1044 len=1
1644347792.872713: WPS: attr type=0x103b len=1
1644347792.872735: WPS: attr type=0x1047 len=16
1644347792.872756: WPS: attr type=0x1021 len=3
1644347792.872793: WPS: attr type=0x1023 len=4
1644347792.872820: WPS: attr type=0x1024 len=4
1644347792.872841: WPS: attr type=0x1042 len=4
1644347792.872863: WPS: attr type=0x1054 len=8
1644347792.872884: WPS: attr type=0x1011 len=4
1644347792.872905: WPS: attr type=0x1008 len=2
1644347792.872926: WPS: attr type=0x103c len=1
1644347792.872947: WPS: attr type=0x1049 len=6
1644347792.872968: WPS: WFA subelement id=0 len=1
1644347792.872989: WPS: attr type=0x104a len=1
1644347792.873011: WPS: attr type=0x1044 len=1
1644347792.873031: WPS: attr type=0x103b len=1
1644347792.873052: WPS: attr type=0x1047 len=16
1644347792.873073: WPS: attr type=0x1021 len=3
1644347792.873094: WPS: attr type=0x1023 len=4
1644347792.873115: WPS: attr type=0x1024 len=4
1644347792.873136: WPS: attr type=0x1042 len=4
1644347792.873157: WPS: attr type=0x1054 len=8
1644347792.873178: WPS: attr type=0x1011 len=4
1644347792.873198: WPS: attr type=0x1008 len=2
1644347792.873219: WPS: attr type=0x103c len=1
1644347792.873240: WPS: attr type=0x1049 len=6
1644347792.873261: WPS: WFA subelement id=0 len=1
1644347792.873282: WPS: attr type=0x104a len=1
1644347792.873303: WPS: attr type=0x1044 len=1
1644347792.873324: WPS: attr type=0x103b len=1
1644347792.873345: WPS: attr type=0x1047 len=16
1644347792.873366: WPS: attr type=0x1021 len=3
1644347792.873387: WPS: attr type=0x1023 len=4
1644347792.873407: WPS: attr type=0x1024 len=4
1644347792.873428: WPS: attr type=0x1042 len=4
1644347792.873449: WPS: attr type=0x1054 len=8
1644347792.873470: WPS: attr type=0x1011 len=4
1644347792.873491: WPS: attr type=0x1008 len=2
1644347792.873511: WPS: attr type=0x103c len=1
1644347792.873532: WPS: attr type=0x1049 len=6
1644347792.873553: WPS: WFA subelement id=0 len=1
1644347792.873575: WPS: attr type=0x104a len=1
1644347792.873597: WPS: attr type=0x1044 len=1
1644347792.873618: WPS: attr type=0x103b len=1
1644347792.873639: WPS: attr type=0x1047 len=16
1644347792.873659: WPS: attr type=0x1021 len=3
1644347792.873680: WPS: attr type=0x1023 len=4
1644347792.873701: WPS: attr type=0x1024 len=4
1644347792.873722: WPS: attr type=0x1042 len=4
1644347792.873742: WPS: attr type=0x1054 len=8
1644347792.873763: WPS: attr type=0x1011 len=4
1644347792.873784: WPS: attr type=0x1008 len=2
1644347792.873805: WPS: attr type=0x103c len=1
1644347792.873826: WPS: attr type=0x1049 len=6
1644347792.873846: WPS: WFA subelement id=0 len=1
1644347792.873868: WPS: attr type=0x104a len=1
1644347792.873889: WPS: attr type=0x1044 len=1
1644347792.873909: WPS: attr type=0x103b len=1
1644347792.873930: WPS: attr type=0x1047 len=16
1644347792.873951: WPS: attr type=0x1021 len=3
1644347792.873971: WPS: attr type=0x1023 len=4
1644347792.873992: WPS: attr type=0x1024 len=4
1644347792.874012: WPS: attr type=0x1042 len=4
1644347792.874033: WPS: attr type=0x1054 len=8
1644347792.874054: WPS: attr type=0x1011 len=4
1644347792.874075: WPS: attr type=0x1008 len=2
1644347792.874095: WPS: attr type=0x103c len=1
1644347792.874116: WPS: attr type=0x1049 len=6
1644347792.874137: WPS: WFA subelement id=0 len=1
1644347792.874158: WPS: attr type=0x104a len=1
1644347792.874179: WPS: attr type=0x1044 len=1
1644347792.874200: WPS: attr type=0x103b len=1
1644347792.874221: WPS: attr type=0x1047 len=16
1644347792.874242: WPS: attr type=0x1021 len=3
1644347792.874263: WPS: attr type=0x1023 len=4
1644347792.874284: WPS: attr type=0x1024 len=4
1644347792.874305: WPS: attr type=0x1042 len=4
1644347792.874325: WPS: attr type=0x1054 len=8
1644347792.874346: WPS: attr type=0x1011 len=4
1644347792.874367: WPS: attr type=0x1008 len=2
1644347792.874388: WPS: attr type=0x103c len=1
1644347792.874409: WPS: attr type=0x1049 len=6
1644347792.874430: WPS: WFA subelement id=0 len=1
1644347792.874452: WPS: attr type=0x104a len=1
1644347792.874474: WPS: attr type=0x1044 len=1
1644347792.874495: WPS: attr type=0x103b len=1
1644347792.874516: WPS: attr type=0x1047 len=16
1644347792.874537: WPS: attr type=0x1021 len=3
1644347792.874558: WPS: attr type=0x1023 len=4
1644347792.874579: WPS: attr type=0x1024 len=4
1644347792.874600: WPS: attr type=0x1042 len=4
1644347792.874634: WPS: attr type=0x1054 len=8
1644347792.874655: WPS: attr type=0x1011 len=4
1644347792.874677: WPS: attr type=0x1008 len=2
1644347792.874698: WPS: attr type=0x103c len=1
1644347792.874719: WPS: attr type=0x1049 len=6
1644347792.874740: WPS: WFA subelement id=0 len=1
1644347792.874761: WPS: attr type=0x104a len=1
1644347792.874783: WPS: attr type=0x1044 len=1
1644347792.874804: WPS: attr type=0x103b len=1
1644347792.874825: WPS: attr type=0x1047 len=16
1644347792.874846: WPS: attr type=0x1021 len=3
1644347792.874867: WPS: attr type=0x1023 len=4
1644347792.874888: WPS: attr type=0x1024 len=4
1644347792.874909: WPS: attr type=0x1042 len=4
1644347792.874930: WPS: attr type=0x1054 len=8
1644347792.874951: WPS: attr type=0x1011 len=4
1644347792.874972: WPS: attr type=0x1008 len=2
1644347792.874993: WPS: attr type=0x103c len=1
1644347792.875014: WPS: attr type=0x1049 len=6
1644347792.875035: WPS: WFA subelement id=0 len=1
1644347792.875056: WPS: attr type=0x104a len=1
1644347792.875077: WPS: attr type=0x1044 len=1
1644347792.875098: WPS: attr type=0x103b len=1
1644347792.875119: WPS: attr type=0x1047 len=16
1644347792.875140: WPS: attr type=0x1021 len=3
1644347792.875161: WPS: attr type=0x1023 len=4
1644347792.875182: WPS: attr type=0x1024 len=4
1644347792.875203: WPS: attr type=0x1042 len=4
1644347792.875224: WPS: attr type=0x1054 len=8
1644347792.875245: WPS: attr type=0x1011 len=4
1644347792.875265: WPS: attr type=0x1008 len=2
1644347792.875287: WPS: attr type=0x103c len=1
1644347792.875308: WPS: attr type=0x1049 len=6
1644347792.875329: WPS: WFA subelement id=0 len=1
1644347792.875353: WPS: AP[0] 2c:91:ab:e0:30:35 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=2
1644347792.875377: WPS: AP[1] 2c:91:ab:e0:30:34 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=2
1644347792.875400: WPS: AP[2] e0:28:6d:7e:94:3c type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347792.875423: WPS: AP[3] e0:28:6d:7e:94:3b type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347792.875446: WPS: AP[4] cc:ce:1e:65:97:c5 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347792.875469: WPS: AP[5] ce:ce:1e:65:97:c5 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347792.875499: wlan1: Radio work 'scan'@0x55a48859e760 done in 0.083210 seconds
1644347792.875525: wlan1: radio_work_free('scan'@0x55a48859e760): num_active_works --> 0
1644347792.875550: wlan1: Scan results matching the currently selected network
1644347792.875590: wlan1: 2: e0:28:6d:7e:94:3c freq=2437 level=-66 snr=23 est_throughput=62400
1644347792.875622: wlan1: 3: e0:28:6d:7e:94:3b freq=5260 level=-78 snr=14 est_throughput=54000
1644347792.875651: wlan1: Selecting BSS from priority group 0
1644347792.875684: wlan1: 0: 2c:91:ab:e0:30:35 ssid='FRITZ!Box 7590 TC' wpa_ie_len=0 rsn_ie_len=24 caps=0x1511 level=-45 freq=5260  wps
1644347792.875710: wlan1:    skip - BSSID ignored (count=2 limit=0)
1644347792.875740: wlan1: 1: 2c:91:ab:e0:30:34 ssid='FRITZ!Box 7590 TC' wpa_ie_len=0 rsn_ie_len=24 caps=0x1431 level=-33 freq=2437  wps
1644347792.875764: wlan1:    skip - BSSID ignored (count=2 limit=0)
1644347792.875794: wlan1: 2: e0:28:6d:7e:94:3c ssid='FRITZ!Box 7590 TC' wpa_ie_len=0 rsn_ie_len=24 caps=0x1431 level=-66 freq=2437  wps
1644347792.875819: wlan1:    selected based on RSN IE
1644347792.875847: wlan1:    selected BSS e0:28:6d:7e:94:3c ssid='FRITZ!Box 7590 TC'
1644347792.875881: wlan1: Considering connect request: reassociate: 0  selected: e0:28:6d:7e:94:3c  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid=0x55a488595780  current_ssid=0x55a488595780
1644347792.875907: wlan1: Request association with e0:28:6d:7e:94:3c
1644347792.875930: wlan1: Re-association to the same ESS
1644347792.875956: unknown vendor specific information element ignored (vendor OUI 00:03:7f len=9)
1644347792.875979: unknown vendor specific information element ignored (vendor OUI 00:04:0e len=12)
1644347792.876001: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=22)
1644347792.876037: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=31)
1644347792.876061: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=8)
1644347792.876083: TDLS: TDLS is allowed in the target BSS
1644347792.876104: TDLS: TDLS channel switch allowed in the target BSS
1644347792.876127: wlan1: No ongoing scan/p2p-scan found to abort
1644347792.876152: wlan1: Add radio work 'sme-connect'@0x55a48859e760
1644347792.876176: wlan1: First radio work item in the queue - schedule start immediately
1644347792.876220: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347792.876352: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/0
1644347792.876560: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/1
1644347792.876740: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/2
1644347792.876948: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/3
1644347792.877153: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/4
1644347792.877250: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/5
1644347792.877351: wlan1: Starting radio work 'sme-connect'@0x55a48859e760 after 0.001172 second wait
1644347792.877382: wlan1: WPA: clearing own WPA/RSN IE
1644347792.877405: wlan1: RSN: clearing own RSNXE
1644347792.877430: wlan1: Automatic auth_alg selection: 0x1
1644347792.877454: wlan1: Overriding auth_alg selection: 0x1
1644347792.877478: wlan1: Using SAE auth_alg
1644347792.877501: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x0
1644347792.877525: RSN: Search for BSSID e0:28:6d:7e:94:3c
1644347792.877548: RSN: No PMKSA cache entry found
1644347792.877572: wlan1: RSN: using IEEE 802.11i/D9.0
1644347792.877597: wlan1: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1026 proto 2
1644347792.877621: wlan1: WPA: Selected mgmt group cipher 32
1644347792.877643: wlan1: WPA: clearing AP WPA IE
1644347792.877665: WPA: set AP RSN IE - hexdump(len=26): 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347792.877697: wlan1: WPA: clearing AP RSNXE
1644347792.877722: wlan1: WPA: AP group 0x10 network profile group 0x18; available group 0x10
1644347792.877746: wlan1: WPA: using GTK CCMP
1644347792.877770: wlan1: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
1644347792.877794: wlan1: WPA: using PTK CCMP
1644347792.877818: wlan1: WPA: AP key_mgmt 0x402 network profile key_mgmt 0x502; available key_mgmt 0x402
1644347792.877841: wlan1: RSN: using KEY_MGMT SAE
1644347792.877866: wlan1: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
1644347792.877889: wlan1: WPA: not using MGMT group cipher
1644347792.877912: 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
1644347792.877941: RSN: Set own RSNXE default - hexdump(len=0):
1644347792.877963: PSK (set in config) - hexdump(len=32): [REMOVED]
1644347792.877986: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347792.878008: RRM: Determining whether RRM can be used - device support: 0x10
1644347792.878030: RRM: Adding RRM IE to Association Request
1644347792.878064: Added supported operating classes IE - hexdump(len=19): 3b 11 51 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347792.878094: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x400
1644347792.878117: RSN: Search for BSSID e0:28:6d:7e:94:3c
1644347792.878139: RSN: No PMKSA cache entry found
1644347792.878263: SAE: Selecting supported ECC group 19
1644347792.878296: wlan1: SME: Selected SAE group 19
1644347792.878451: SAE: password - hexdump_ascii(len=20): [REMOVED]
1644347792.878471: SAE: PWE derivation - addr1=c4:85:08:14:a1:b8 addr2=e0:28:6d:7e:94:3c
1644347792.878488: SAE: counter = 001
1644347792.878515: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.878539: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.878619: SAE: pwd-seed result 0 found=0x00
1644347792.878640: SAE: counter = 002
1644347792.878662: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.878685: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.878750: SAE: pwd-seed result 1 found=0xff
1644347792.878763: SAE: counter = 003
1644347792.878776: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.878797: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.878889: SAE: pwd-seed result 1 found=0xff
1644347792.878903: SAE: counter = 004
1644347792.878916: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.878935: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.879027: SAE: pwd-seed result 1 found=0xff
1644347792.879042: SAE: counter = 005
1644347792.879054: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.879094: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.879267: SAE: pwd-seed result 1 found=0xff
1644347792.879289: SAE: counter = 006
1644347792.879304: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.879317: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.879402: SAE: pwd-seed result 1 found=0xff
1644347792.879431: SAE: counter = 007
1644347792.879461: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.879494: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.879619: SAE: pwd-seed result 1 found=0xff
1644347792.879646: SAE: counter = 008
1644347792.879676: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.879709: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.879835: SAE: pwd-seed result 0 found=0xff
1644347792.879861: SAE: counter = 009
1644347792.879892: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.879924: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.880049: SAE: pwd-seed result 1 found=0xff
1644347792.880076: SAE: counter = 010
1644347792.880106: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.880138: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.880263: SAE: pwd-seed result 1 found=0xff
1644347792.880289: SAE: counter = 011
1644347792.880320: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.880352: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.880477: SAE: pwd-seed result 1 found=0xff
1644347792.880504: SAE: counter = 012
1644347792.880534: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.880566: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.880691: SAE: pwd-seed result 0 found=0xff
1644347792.880717: SAE: counter = 013
1644347792.880747: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.880792: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.880919: SAE: pwd-seed result 1 found=0xff
1644347792.880946: SAE: counter = 014
1644347792.880976: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.881008: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.881133: SAE: pwd-seed result 1 found=0xff
1644347792.881160: SAE: counter = 015
1644347792.881190: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.881222: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.881347: SAE: pwd-seed result 0 found=0xff
1644347792.881374: SAE: counter = 016
1644347792.881404: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.881436: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.881561: SAE: pwd-seed result 0 found=0xff
1644347792.881587: SAE: counter = 017
1644347792.881618: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.881650: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.881775: SAE: pwd-seed result 0 found=0xff
1644347792.881802: SAE: counter = 018
1644347792.881831: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.881864: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.881989: SAE: pwd-seed result 0 found=0xff
1644347792.882037: SAE: counter = 019
1644347792.882069: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.882102: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.882229: SAE: pwd-seed result 0 found=0xff
1644347792.882256: SAE: counter = 020
1644347792.882286: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.882317: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.882442: SAE: pwd-seed result 0 found=0xff
1644347792.882468: SAE: counter = 021
1644347792.882498: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.882530: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.882654: SAE: pwd-seed result 1 found=0xff
1644347792.882680: SAE: counter = 022
1644347792.882710: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.882742: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.882867: SAE: pwd-seed result 0 found=0xff
1644347792.882894: SAE: counter = 023
1644347792.882923: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.882955: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.883080: SAE: pwd-seed result 0 found=0xff
1644347792.883107: SAE: counter = 024
1644347792.883137: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.883169: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.883294: SAE: pwd-seed result 0 found=0xff
1644347792.883320: SAE: counter = 025
1644347792.883350: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.883382: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.883507: SAE: pwd-seed result 0 found=0xff
1644347792.883533: SAE: counter = 026
1644347792.883563: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.883595: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.883720: SAE: pwd-seed result 1 found=0xff
1644347792.883746: SAE: counter = 027
1644347792.883776: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.883808: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.883933: SAE: pwd-seed result 1 found=0xff
1644347792.883959: SAE: counter = 028
1644347792.883989: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.884021: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.884145: SAE: pwd-seed result 0 found=0xff
1644347792.884172: SAE: counter = 029
1644347792.884202: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.884234: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.884360: SAE: pwd-seed result 1 found=0xff
1644347792.884386: SAE: counter = 030
1644347792.884415: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.884447: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.884572: SAE: pwd-seed result 1 found=0xff
1644347792.884598: SAE: counter = 031
1644347792.884627: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.884660: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.884797: SAE: pwd-seed result 1 found=0xff
1644347792.884826: SAE: counter = 032
1644347792.884876: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.884909: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.885053: SAE: pwd-seed result 1 found=0xff
1644347792.885079: SAE: counter = 033
1644347792.885110: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.885142: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.885268: SAE: pwd-seed result 0 found=0xff
1644347792.885294: SAE: counter = 034
1644347792.885325: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.885357: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.885482: SAE: pwd-seed result 0 found=0xff
1644347792.885509: SAE: counter = 035
1644347792.885539: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.885571: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.885696: SAE: pwd-seed result 0 found=0xff
1644347792.885722: SAE: counter = 036
1644347792.885752: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.885784: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.885909: SAE: pwd-seed result 1 found=0xff
1644347792.885934: SAE: counter = 037
1644347792.885965: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.885996: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.886121: SAE: pwd-seed result 1 found=0xff
1644347792.886170: SAE: counter = 038
1644347792.886201: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.886234: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.886361: SAE: pwd-seed result 1 found=0xff
1644347792.886387: SAE: counter = 039
1644347792.886418: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.886450: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.886576: SAE: pwd-seed result 1 found=0xff
1644347792.886602: SAE: counter = 040
1644347792.886632: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347792.886665: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347792.886790: SAE: pwd-seed result 0 found=0xff
1644347792.886899: SAE: PWE - hexdump(len=64): [REMOVED]
1644347792.887184: SAE: own commit-scalar - hexdump(len=32): b8 d4 aa ba 71 d8 03 9b 83 a8 0d ef e0 7b a2 2a 7e ae 95 49 ea 2f 07 a6 23 62 1e 25 99 36 d4 50
1644347792.887244: SAE: own commit-element(x) - hexdump(len=32): 4e a7 7a 8f b5 33 77 0d cd e2 e5 b7 aa 31 8c 17 5d 6e f0 c1 01 ca 73 8c fe 3e 0e a7 24 77 21 92
1644347792.887274: SAE: own commit-element(y) - hexdump(len=32): 4b 91 29 65 2c 53 17 ff eb 7a d6 e9 13 e8 88 ea 67 fe 66 dc 6d 3e b9 4b 05 6c 9f 4e a3 da b5 fc
1644347792.887305: EAPOL: External notification - EAP success=0
1644347792.887331: EAPOL: External notification - EAP fail=0
1644347792.887353: EAPOL: External notification - portControl=Auto
1644347792.887379: wlan1: Cancelling scan request
1644347792.887407: wlan1: SME: Trying to authenticate with e0:28:6d:7e:94:3c (SSID='FRITZ!Box 7590 TC' freq=2437 MHz)
1644347792.887430: EAPOL: External notification - portValid=0
1644347792.887455: wlan1: State: SCANNING -> AUTHENTICATING
1644347792.887541: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
1644347792.887575: wlan1: Determining shared radio frequencies (max len 1)
1644347792.887600: wlan1: Shared frequencies (len=0): completed iteration
1644347792.887624: nl80211: Authenticate (ifindex=3)
1644347792.887652:   * bssid=e0:28:6d:7e:94:3c
1644347792.887676:   * freq=2437
1644347792.887699:   * SSID=FRITZ!Box 7590 TC
1644347792.887721:   * IEs - hexdump(len=0): [NULL]
1644347792.887743:   * auth_data - hexdump(len=102): 01 00 00 00 13 00 b8 d4 aa ba 71 d8 03 9b 83 a8 0d ef e0 7b a2 2a 7e ae 95 49 ea 2f 07 a6 23 62 1e 25 99 36 d4 50 4e a7 7a 8f b5 33 77 0d cd e2 e5 b7 aa 31 8c 17 5d 6e f0 c1 01 ca 73 8c fe 3e 0e a7 24 77 21 92 4b 91 29 65 2c 53 17 ff eb 7a d6 e9 13 e8 88 ea 67 fe 66 dc 6d 3e b9 4b 05 6c 9f 4e a3 da b5 fc
1644347792.887789:   * Auth Type 4
1644347792.889748: nl80211: Authentication request send successfully
1644347792.889815: nl80211: Event message available
1644347792.889851: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan1
1644347792.889876: nl80211: New station e0:28:6d:7e:94:3c
1644347792.892623: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347793.256031: nl80211: Event message available
1644347793.256193: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan1
1644347793.256258: nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=e0:28:6d:7e:94:3c
1644347793.256309: nl80211: MLME event frame - hexdump(len=128): b0 00 3a 01 c4 85 08 14 a1 b8 e0 28 6d 7e 94 3c e0 28 6d 7e 94 3c 90 ca 03 00 01 00 00 00 13 00 dd 1c ee 4f ee 0e 54 54 e7 17 53 c4 a6 59 45 34 50 43 9f 36 53 60 b4 e0 0d 36 9e 62 76 21 a4 70 0a 1b ad 33 6e 2d 47 29 1c c2 e0 02 61 53 7b 22 c2 ec 3a 90 e7 ca 73 12 6f 75 5f 91 80 47 68 db 63 86 44 a2 27 a8 88 a9 d5 03 fd a0 92 78 ba 0e b0 ad 9f e5 31 57 d7 ed 9e 36 77 52 59 ee d9 6d
1644347793.256411: nl80211: Authenticate event
1644347793.256459: wlan1: Event AUTH (10) received
1644347793.256514: wlan1: SME: Authentication response: peer=e0:28:6d:7e:94:3c auth_type=3 auth_transaction=1 status_code=0
1644347793.256555: SME: Authentication response IEs - hexdump(len=98): 13 00 dd 1c ee 4f ee 0e 54 54 e7 17 53 c4 a6 59 45 34 50 43 9f 36 53 60 b4 e0 0d 36 9e 62 76 21 a4 70 0a 1b ad 33 6e 2d 47 29 1c c2 e0 02 61 53 7b 22 c2 ec 3a 90 e7 ca 73 12 6f 75 5f 91 80 47 68 db 63 86 44 a2 27 a8 88 a9 d5 03 fd a0 92 78 ba 0e b0 ad 9f e5 31 57 d7 ed 9e 36 77 52 59 ee d9 6d
1644347793.256709: wlan1: SME: SAE authentication transaction 1 status code 0
1644347793.256762: wlan1: SME SAE commit
1644347793.256864: SAE: Peer commit-scalar - hexdump(len=32): dd 1c ee 4f ee 0e 54 54 e7 17 53 c4 a6 59 45 34 50 43 9f 36 53 60 b4 e0 0d 36 9e 62 76 21 a4 70
1644347793.256932: SAE: Peer commit-element(x) - hexdump(len=32): 0a 1b ad 33 6e 2d 47 29 1c c2 e0 02 61 53 7b 22 c2 ec 3a 90 e7 ca 73 12 6f 75 5f 91 80 47 68 db
1644347793.256989: SAE: Peer commit-element(y) - hexdump(len=32): 63 86 44 a2 27 a8 88 a9 d5 03 fd a0 92 78 ba 0e b0 ad 9f e5 31 57 d7 ed 9e 36 77 52 59 ee d9 6d
1644347793.257075: SAE: Possible elements at the end of the frame - hexdump(len=0):
1644347793.257639: SAE: k - hexdump(len=32): [REMOVED]
1644347793.257685: SAE: salt for keyseed derivation - hexdump(len=32): 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 00 00 00 00 00 00 00
1644347793.257740: SAE: keyseed - hexdump(len=32): [REMOVED]
1644347793.257778: SAE: PMKID - hexdump(len=16): 95 f1 99 0b 5f e6 57 ef 6a bf 61 b4 86 d4 e7 5f
1644347793.257826: SAE: KCK - hexdump(len=32): [REMOVED]
1644347793.257855: SAE: PMK - hexdump(len=32): [REMOVED]
1644347793.257888: wlan1: Automatic auth_alg selection: 0x1
1644347793.257917: wlan1: Overriding auth_alg selection: 0x1
1644347793.257947: wlan1: Using SAE auth_alg
1644347793.257975: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x0
1644347793.258005: RSN: Search for BSSID e0:28:6d:7e:94:3c
1644347793.258033: RSN: No PMKSA cache entry found
1644347793.258061: wlan1: RSN: using IEEE 802.11i/D9.0
1644347793.258090: wlan1: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1026 proto 2
1644347793.258117: wlan1: WPA: Selected mgmt group cipher 32
1644347793.258144: wlan1: WPA: clearing AP WPA IE
1644347793.258171: WPA: set AP RSN IE - hexdump(len=26): 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347793.258209: wlan1: WPA: clearing AP RSNXE
1644347793.258239: wlan1: WPA: AP group 0x10 network profile group 0x18; available group 0x10
1644347793.258266: wlan1: WPA: using GTK CCMP
1644347793.258297: wlan1: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
1644347793.258324: wlan1: WPA: using PTK CCMP
1644347793.258354: wlan1: WPA: AP key_mgmt 0x402 network profile key_mgmt 0x502; available key_mgmt 0x402
1644347793.258381: wlan1: RSN: using KEY_MGMT SAE
1644347793.258411: wlan1: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
1644347793.258438: wlan1: WPA: not using MGMT group cipher
1644347793.258466: 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
1644347793.258500: 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
1644347793.258535: RSN: Set own RSNXE default - hexdump(len=0):
1644347793.258562: PSK (set in config) - hexdump(len=32): [REMOVED]
1644347793.258588: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347793.258616: RRM: Determining whether RRM can be used - device support: 0x10
1644347793.258642: RRM: Adding RRM IE to Association Request
1644347793.258681: Added supported operating classes IE - hexdump(len=19): 3b 11 51 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347793.258716: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x400
1644347793.258744: RSN: Search for BSSID e0:28:6d:7e:94:3c
1644347793.258771: RSN: No PMKSA cache entry found
1644347793.258850: EAPOL: External notification - EAP success=0
1644347793.258885: EAPOL: External notification - EAP fail=0
1644347793.258910: EAPOL: External notification - portControl=Auto
1644347793.258938: wlan1: Cancelling scan request
1644347793.258970: wlan1: SME: Trying to authenticate with e0:28:6d:7e:94:3c (SSID='FRITZ!Box 7590 TC' freq=2437 MHz)
1644347793.259027: EAPOL: External notification - portValid=0
1644347793.259060: wlan1: State: AUTHENTICATING -> AUTHENTICATING
1644347793.259087: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
1644347793.259118: wlan1: Determining shared radio frequencies (max len 1)
1644347793.259146: wlan1: Shared frequencies (len=0): completed iteration
1644347793.259172: nl80211: Authenticate (ifindex=3)
1644347793.259206:   * bssid=e0:28:6d:7e:94:3c
1644347793.259235:   * freq=2437
1644347793.259260:   * SSID=FRITZ!Box 7590 TC
1644347793.259285:   * IEs - hexdump(len=0): [NULL]
1644347793.259311:   * auth_data - hexdump(len=38): 02 00 00 00 01 00 ff 46 5f d1 df fa a6 60 c7 64 6b 42 44 a8 1f 85 d7 2e de ce 9d 1a c8 08 18 1c 76 81 de 12 8f 08
1644347793.259345:   * Auth Type 4
1644347793.259498: nl80211: Authentication request send successfully
1644347793.344181: nl80211: Event message available
1644347793.344294: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan1
1644347793.344321: nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=e0:28:6d:7e:94:3c
1644347793.344348: nl80211: MLME event frame - hexdump(len=64): b0 00 3a 01 c4 85 08 14 a1 b8 e0 28 6d 7e 94 3c e0 28 6d 7e 94 3c a0 ca 03 00 02 00 00 00 00 00 dd 54 a2 1c 97 06 4e 8c de 05 53 68 4e 65 0c 2c 59 f2 55 da 75 7f 99 0f a9 dd 94 5f 87 da 1b c1
1644347793.344386: nl80211: Authenticate event
1644347793.344414: wlan1: Event AUTH (10) received
1644347793.344445: wlan1: SME: Authentication response: peer=e0:28:6d:7e:94:3c auth_type=3 auth_transaction=2 status_code=0
1644347793.344467: SME: Authentication response IEs - hexdump(len=34): 00 00 dd 54 a2 1c 97 06 4e 8c de 05 53 68 4e 65 0c 2c 59 f2 55 da 75 7f 99 0f a9 dd 94 5f 87 da 1b c1
1644347793.344501: wlan1: SME: SAE authentication transaction 2 status code 0
1644347793.344525: wlan1: SME SAE confirm
1644347793.344548: SAE: peer-send-confirm 0
1644347793.344646: SME: SAE completed - setting PMK for 4-way handshake
1644347793.344672: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347793.344697: RSN: Added PMKSA cache entry for e0:28:6d:7e:94:3c network_ctx=0x55a488595780 akmp=0x400
1644347793.344726: wlan1: PMKSA-CACHE-ADDED e0:28:6d:7e:94:3c 0
1644347793.344749: nl80211: Add PMKID for e0:28:6d:7e:94:3c
1644347793.344876: nl80211: NL80211_CMD_SET_PMKSA failed: -95 (Operation not supported)
1644347793.344909: SME: Association Request IEs - hexdump(len=61): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 51 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347793.344954: wlan1: Trying to associate with e0:28:6d:7e:94:3c (SSID='FRITZ!Box 7590 TC' freq=2437 MHz)
1644347793.344979: wlan1: State: AUTHENTICATING -> ASSOCIATING
1644347793.345002: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347793.345025: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347793.345146: 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
1644347793.345186: wlan1: RSN: clearing own RSNXE
1644347793.345210: nl80211: Associate (ifindex=3)
1644347793.345235:   * bssid=e0:28:6d:7e:94:3c
1644347793.345259:   * freq=2437
1644347793.345282:   * SSID=FRITZ!Box 7590 TC
1644347793.345303:   * IEs - hexdump(len=61): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 51 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347793.345341:   * WPA Versions 0x2
1644347793.345363:   * pairwise=0xfac04
1644347793.345385:   * group=0xfac04
1644347793.345407:   * akm=0xfac08
1644347793.345475: nl80211: Association request send successfully
1644347793.376882: nl80211: Event message available
1644347793.376971: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan1
1644347793.376998: nl80211: Delete station e0:28:6d:7e:94:3c
1644347793.378146: nl80211: Event message available
1644347793.378227: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan1
1644347793.378254: nl80211: MLME event 38 (NL80211_CMD_ASSOCIATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=e0:28:6d:7e:94:3c
1644347793.378281: nl80211: MLME event frame - hexdump(len=226): 10 00 3a 01 c4 85 08 14 a1 b8 e0 28 6d 7e 94 3c e0 28 6d 7e 94 3c b0 ca 31 14 28 00 00 00 01 08 82 84 8b 96 8c 12 98 24 32 04 b0 48 60 6c 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c dd 08 8c fd f0 01 01 02 01 00 dd 18 00 50 f2 04 10 4a 00 01 10 10 3b 00 01 03 10 49 00 06 00 37 2a 00 01 20
1644347793.378360: nl80211: Associate event
1644347793.378386: wlan1: Event ASSOC_REJECT (12) received
1644347793.378414: wlan1: CTRL-EVENT-ASSOC-REJECT bssid=e0:28:6d:7e:94:3c status_code=40
1644347793.378558: wlan1: SME: Association with e0:28:6d:7e:94:3c failed: status code 40
1644347793.378589: wpa_driver_nl80211_deauthenticate(addr=e0:28:6d:7e:94:3c reason_code=3)
1644347793.378661: wlan1: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
1644347793.378689: wlan1: SME: Deauth request to the driver failed
1644347793.378718: wlan1: Radio work 'sme-connect'@0x55a48859e760 done in 0.501367 seconds
1644347793.378743: wlan1: radio_work_free('sme-connect'@0x55a48859e760): num_active_works --> 0
1644347793.378768: Added BSSID e0:28:6d:7e:94:3c into ignore list, ignoring for 10 seconds
1644347793.378796: wlan1: Another BSS in this ESS has been seen; try it next
1644347793.378819: BSSID e0:28:6d:7e:94:3c ignore list count incremented to 2, ignoring for 10 seconds
1644347793.378845: wlan1: Consecutive connection failures: 3 --> request scan in 1000 ms
1644347793.378870: wlan1: Setting scan request: 1.000000 sec
1644347793.378895: wlan1: State: ASSOCIATING -> DISCONNECTED
1644347793.378922: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347793.378946: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347793.379034: nl80211: Event message available
1644347793.379076: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan1
1644347793.379101: nl80211: Ignore connect event (cmd=46) when using userspace SME
1644347793.384004: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347794.380004: wlan1: State: DISCONNECTED -> SCANNING
1644347794.380197: Scan SSID - hexdump_ascii(len=17):
     46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54   FRITZ!Box 7590 T
     43                                                C               
1644347794.380281: wlan1: Starting AP scan for wildcard SSID
1644347794.380315: wlan1: Optimize scan based on previously generated frequency list
1644347794.380352: wlan1: Add radio work 'scan'@0x55a48858ed90
1644347794.380384: wlan1: First radio work item in the queue - schedule start immediately
1644347794.380429: wlan1: Starting radio work 'scan'@0x55a48858ed90 after 0.000041 second wait
1644347794.380499: wlan1: nl80211: scan request
1644347794.380544: nl80211: Scan SSID FRITZ!Box 7590 TC
1644347794.380575: nl80211: Scan SSID 
1644347794.380603: nl80211: Scan extra IEs - hexdump(len=13): 7f 0b 00 00 00 00 01 00 40 40 00 00 20
1644347794.380640: nl80211: Scan frequency 5260 MHz
1644347794.382344: Scan requested (ret=0) - scan timeout 30 seconds
1644347794.382454: nl80211: Event message available
1644347794.382497: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan1
1644347794.382531: wlan1: nl80211: Scan trigger
1644347794.382561: wlan1: Event SCAN_STARTED (47) received
1644347794.382590: wlan1: Own scan request started a scan in 0.000152 seconds
1644347794.385286: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347794.491005: RTM_NEWLINK: ifi_index=3 ifname=wlan1 wext ifi_family=0 ifi_flags=0x1003 ([UP])
1644347794.491166: nl80211: Event message available
1644347794.491227: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan1
1644347794.491263: wlan1: nl80211: New scan results available
1644347794.491292: nl80211: Scan probed for SSID 'FRITZ!Box 7590 TC'
1644347794.491317: nl80211: Scan probed for SSID ''
1644347794.491344: nl80211: Scan included frequencies: 5260
1644347794.491373: wlan1: Event SCAN_RESULTS (3) received
1644347794.491403: wlan1: Scan completed in 0.108813 seconds
1644347794.491646: nl80211: Received scan results (6 BSSes)
1644347794.491754: Sorted scan results
1644347794.491785: 2c:91:ab:e0:30:35 freq=5260 qual=0 noise=-92~ level=-47 snr=45* flags=0xb age=16 est=135000
1644347794.491817: IEs - hexdump(len=458): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff 1a 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347794.491960: Beacon IEs - hexdump(len=382): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 04 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff 1a 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347794.492082: 2c:91:ab:e0:30:34 freq=2437 qual=0 noise=-89~ level=-33 snr=56* flags=0xb age=1688 est=65000
1644347794.492113: IEs - hexdump(len=365): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 4e 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347794.492266: Beacon IEs - hexdump(len=289): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 2c 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347794.492367: e0:28:6d:7e:94:3c freq=2437 qual=0 noise=-89~ level=-66 snr=23 flags=0xb age=1672 est=62400
1644347794.492395: IEs - hexdump(len=455): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 0a 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fe b5 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c dd 08 8c fd f0 01 01 02 01 00
1644347794.492532: Beacon IEs - hexdump(len=379): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 0a 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fe b5 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c
1644347794.492663: e0:28:6d:7e:94:3b freq=5260 qual=0 noise=-92~ level=-77 snr=15 flags=0xb age=20 est=60750
1644347794.492692: IEs - hexdump(len=491): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 04 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff 27 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347794.492883: Beacon IEs - hexdump(len=415): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 04 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff cc 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00
1644347794.493017: cc:ce:1e:65:97:c5 freq=2437 qual=0 noise=-89~ level=-87 snr=2 flags=0xb age=6888 est=6500
1644347794.493044: IEs - hexdump(len=382): 00 0e 46 52 49 54 5a 21 42 6f 78 20 37 34 39 30 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 00 00 11 00 00 46 05 73 d0 00 00 0c 2d 1a ad 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 07 0c 00 3d 16 06 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 39 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 2d ed c3 d2 7e 38 02 a3 26 a3 cc ce 1e 65 97 c5 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347794.493182: ce:ce:1e:65:97:c5 freq=2437 qual=0 noise=-89~ level=-91 snr=-2 flags=0xb age=6880 est=1000
1644347794.493210: IEs - hexdump(len=364): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 00 00 10 00 00 46 05 73 d0 00 00 0c 2d 1a ad 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 07 0c 00 3d 16 06 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 39 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 52 c7 5a ec 12 74 94 28 0b 9a e4 ef a7 3e b5 fd 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347794.493330: wlan1: BSS: Start scan result update 4
1644347794.493471: BSS: last_scan_res_used=6/32
1644347794.493538: wlan1: New scan results available (own=1 ext=0)
1644347794.493641: WPS: attr type=0x104a len=1
1644347794.493707: WPS: attr type=0x1044 len=1
1644347794.493762: WPS: attr type=0x103b len=1
1644347794.493805: WPS: attr type=0x1047 len=16
1644347794.493835: WPS: attr type=0x1021 len=3
1644347794.493860: WPS: attr type=0x1023 len=4
1644347794.493885: WPS: attr type=0x1024 len=4
1644347794.493910: WPS: attr type=0x1042 len=4
1644347794.493934: WPS: attr type=0x1054 len=8
1644347794.493958: WPS: attr type=0x1011 len=4
1644347794.493982: WPS: attr type=0x1008 len=2
1644347794.494006: WPS: attr type=0x103c len=1
1644347794.494031: WPS: attr type=0x1049 len=6
1644347794.494056: WPS: WFA subelement id=0 len=1
1644347794.494081: WPS: attr type=0x104a len=1
1644347794.494106: WPS: attr type=0x1044 len=1
1644347794.494130: WPS: attr type=0x103b len=1
1644347794.494154: WPS: attr type=0x1047 len=16
1644347794.494178: WPS: attr type=0x1021 len=3
1644347794.494203: WPS: attr type=0x1023 len=4
1644347794.494227: WPS: attr type=0x1024 len=4
1644347794.494252: WPS: attr type=0x1042 len=4
1644347794.494276: WPS: attr type=0x1054 len=8
1644347794.494299: WPS: attr type=0x1011 len=4
1644347794.494324: WPS: attr type=0x1008 len=2
1644347794.494349: WPS: attr type=0x103c len=1
1644347794.494373: WPS: attr type=0x1049 len=6
1644347794.494397: WPS: WFA subelement id=0 len=1
1644347794.494421: WPS: attr type=0x104a len=1
1644347794.494445: WPS: attr type=0x1044 len=1
1644347794.494472: WPS: attr type=0x103b len=1
1644347794.494497: WPS: attr type=0x1047 len=16
1644347794.494522: WPS: attr type=0x1021 len=3
1644347794.494547: WPS: attr type=0x1023 len=4
1644347794.494571: WPS: attr type=0x1024 len=4
1644347794.494595: WPS: attr type=0x1042 len=4
1644347794.494619: WPS: attr type=0x1054 len=8
1644347794.494643: WPS: attr type=0x1011 len=4
1644347794.494667: WPS: attr type=0x1008 len=2
1644347794.494691: WPS: attr type=0x103c len=1
1644347794.494716: WPS: attr type=0x1049 len=6
1644347794.494740: WPS: WFA subelement id=0 len=1
1644347794.494767: WPS: attr type=0x104a len=1
1644347794.494794: WPS: attr type=0x1044 len=1
1644347794.494820: WPS: attr type=0x103b len=1
1644347794.494845: WPS: attr type=0x1047 len=16
1644347794.494871: WPS: attr type=0x1021 len=3
1644347794.494897: WPS: attr type=0x1023 len=4
1644347794.494923: WPS: attr type=0x1024 len=4
1644347794.494980: WPS: attr type=0x1042 len=4
1644347794.495005: WPS: attr type=0x1054 len=8
1644347794.495029: WPS: attr type=0x1011 len=4
1644347794.495053: WPS: attr type=0x1008 len=2
1644347794.495078: WPS: attr type=0x103c len=1
1644347794.495102: WPS: attr type=0x1049 len=6
1644347794.495125: WPS: WFA subelement id=0 len=1
1644347794.495150: WPS: attr type=0x104a len=1
1644347794.495174: WPS: attr type=0x1044 len=1
1644347794.495198: WPS: attr type=0x103b len=1
1644347794.495222: WPS: attr type=0x1047 len=16
1644347794.495246: WPS: attr type=0x1021 len=3
1644347794.495271: WPS: attr type=0x1023 len=4
1644347794.495294: WPS: attr type=0x1024 len=4
1644347794.495318: WPS: attr type=0x1042 len=4
1644347794.495342: WPS: attr type=0x1054 len=8
1644347794.495367: WPS: attr type=0x1011 len=4
1644347794.495391: WPS: attr type=0x1008 len=2
1644347794.495415: WPS: attr type=0x103c len=1
1644347794.495440: WPS: attr type=0x1049 len=6
1644347794.495464: WPS: WFA subelement id=0 len=1
1644347794.495489: WPS: attr type=0x104a len=1
1644347794.495513: WPS: attr type=0x1044 len=1
1644347794.495537: WPS: attr type=0x103b len=1
1644347794.495560: WPS: attr type=0x1047 len=16
1644347794.495585: WPS: attr type=0x1021 len=3
1644347794.495608: WPS: attr type=0x1023 len=4
1644347794.495633: WPS: attr type=0x1024 len=4
1644347794.495657: WPS: attr type=0x1042 len=4
1644347794.495681: WPS: attr type=0x1054 len=8
1644347794.495705: WPS: attr type=0x1011 len=4
1644347794.495729: WPS: attr type=0x1008 len=2
1644347794.495752: WPS: attr type=0x103c len=1
1644347794.495776: WPS: attr type=0x1049 len=6
1644347794.495800: WPS: WFA subelement id=0 len=1
1644347794.495826: WPS: attr type=0x104a len=1
1644347794.495851: WPS: attr type=0x1044 len=1
1644347794.495875: WPS: attr type=0x103b len=1
1644347794.495899: WPS: attr type=0x1047 len=16
1644347794.495923: WPS: attr type=0x1021 len=3
1644347794.495946: WPS: attr type=0x1023 len=4
1644347794.495970: WPS: attr type=0x1024 len=4
1644347794.495994: WPS: attr type=0x1042 len=4
1644347794.496017: WPS: attr type=0x1054 len=8
1644347794.496040: WPS: attr type=0x1011 len=4
1644347794.496064: WPS: attr type=0x1008 len=2
1644347794.496088: WPS: attr type=0x103c len=1
1644347794.496112: WPS: attr type=0x1049 len=6
1644347794.496136: WPS: WFA subelement id=0 len=1
1644347794.496159: WPS: attr type=0x104a len=1
1644347794.496183: WPS: attr type=0x1044 len=1
1644347794.496207: WPS: attr type=0x103b len=1
1644347794.496230: WPS: attr type=0x1047 len=16
1644347794.496253: WPS: attr type=0x1021 len=3
1644347794.496277: WPS: attr type=0x1023 len=4
1644347794.496301: WPS: attr type=0x1024 len=4
1644347794.496325: WPS: attr type=0x1042 len=4
1644347794.496348: WPS: attr type=0x1054 len=8
1644347794.496372: WPS: attr type=0x1011 len=4
1644347794.496396: WPS: attr type=0x1008 len=2
1644347794.496420: WPS: attr type=0x103c len=1
1644347794.496443: WPS: attr type=0x1049 len=6
1644347794.496466: WPS: WFA subelement id=0 len=1
1644347794.496490: WPS: attr type=0x104a len=1
1644347794.496514: WPS: attr type=0x1044 len=1
1644347794.496538: WPS: attr type=0x103b len=1
1644347794.496561: WPS: attr type=0x1047 len=16
1644347794.496585: WPS: attr type=0x1021 len=3
1644347794.496609: WPS: attr type=0x1023 len=4
1644347794.496632: WPS: attr type=0x1024 len=4
1644347794.496656: WPS: attr type=0x1042 len=4
1644347794.496680: WPS: attr type=0x1054 len=8
1644347794.496704: WPS: attr type=0x1011 len=4
1644347794.496728: WPS: attr type=0x1008 len=2
1644347794.496752: WPS: attr type=0x103c len=1
1644347794.496794: WPS: attr type=0x1049 len=6
1644347794.496822: WPS: WFA subelement id=0 len=1
1644347794.496854: WPS: attr type=0x104a len=1
1644347794.496881: WPS: attr type=0x1044 len=1
1644347794.496904: WPS: attr type=0x103b len=1
1644347794.496929: WPS: attr type=0x1047 len=16
1644347794.496953: WPS: attr type=0x1021 len=3
1644347794.496976: WPS: attr type=0x1023 len=4
1644347794.497000: WPS: attr type=0x1024 len=4
1644347794.497023: WPS: attr type=0x1042 len=4
1644347794.497046: WPS: attr type=0x1054 len=8
1644347794.497087: WPS: attr type=0x1011 len=4
1644347794.497114: WPS: attr type=0x1008 len=2
1644347794.497139: WPS: attr type=0x103c len=1
1644347794.497163: WPS: attr type=0x1049 len=6
1644347794.497188: WPS: WFA subelement id=0 len=1
1644347794.497212: WPS: attr type=0x104a len=1
1644347794.497237: WPS: attr type=0x1044 len=1
1644347794.497262: WPS: attr type=0x103b len=1
1644347794.497286: WPS: attr type=0x1047 len=16
1644347794.497310: WPS: attr type=0x1021 len=3
1644347794.497334: WPS: attr type=0x1023 len=4
1644347794.497359: WPS: attr type=0x1024 len=4
1644347794.497383: WPS: attr type=0x1042 len=4
1644347794.497407: WPS: attr type=0x1054 len=8
1644347794.497432: WPS: attr type=0x1011 len=4
1644347794.497456: WPS: attr type=0x1008 len=2
1644347794.497480: WPS: attr type=0x103c len=1
1644347794.497504: WPS: attr type=0x1049 len=6
1644347794.497528: WPS: WFA subelement id=0 len=1
1644347794.497552: WPS: attr type=0x104a len=1
1644347794.497576: WPS: attr type=0x1044 len=1
1644347794.497601: WPS: attr type=0x103b len=1
1644347794.497625: WPS: attr type=0x1047 len=16
1644347794.497649: WPS: attr type=0x1021 len=3
1644347794.497673: WPS: attr type=0x1023 len=4
1644347794.497697: WPS: attr type=0x1024 len=4
1644347794.497721: WPS: attr type=0x1042 len=4
1644347794.497745: WPS: attr type=0x1054 len=8
1644347794.497769: WPS: attr type=0x1011 len=4
1644347794.497794: WPS: attr type=0x1008 len=2
1644347794.497817: WPS: attr type=0x103c len=1
1644347794.497841: WPS: attr type=0x1049 len=6
1644347794.497865: WPS: WFA subelement id=0 len=1
1644347794.497890: WPS: attr type=0x104a len=1
1644347794.497916: WPS: attr type=0x1044 len=1
1644347794.497940: WPS: attr type=0x103b len=1
1644347794.497964: WPS: attr type=0x1047 len=16
1644347794.497989: WPS: attr type=0x1021 len=3
1644347794.498013: WPS: attr type=0x1023 len=4
1644347794.498037: WPS: attr type=0x1024 len=4
1644347794.498061: WPS: attr type=0x1042 len=4
1644347794.498085: WPS: attr type=0x1054 len=8
1644347794.498109: WPS: attr type=0x1011 len=4
1644347794.498133: WPS: attr type=0x1008 len=2
1644347794.498157: WPS: attr type=0x103c len=1
1644347794.498181: WPS: attr type=0x1049 len=6
1644347794.498205: WPS: WFA subelement id=0 len=1
1644347794.498229: WPS: attr type=0x104a len=1
1644347794.498253: WPS: attr type=0x1044 len=1
1644347794.498277: WPS: attr type=0x103b len=1
1644347794.498300: WPS: attr type=0x1047 len=16
1644347794.498324: WPS: attr type=0x1021 len=3
1644347794.498348: WPS: attr type=0x1023 len=4
1644347794.498372: WPS: attr type=0x1024 len=4
1644347794.498396: WPS: attr type=0x1042 len=4
1644347794.498421: WPS: attr type=0x1054 len=8
1644347794.498445: WPS: attr type=0x1011 len=4
1644347794.498469: WPS: attr type=0x1008 len=2
1644347794.498492: WPS: attr type=0x103c len=1
1644347794.498516: WPS: attr type=0x1049 len=6
1644347794.498540: WPS: WFA subelement id=0 len=1
1644347794.498564: WPS: attr type=0x104a len=1
1644347794.498587: WPS: attr type=0x1044 len=1
1644347794.498611: WPS: attr type=0x103b len=1
1644347794.498635: WPS: attr type=0x1047 len=16
1644347794.498659: WPS: attr type=0x1021 len=3
1644347794.498683: WPS: attr type=0x1023 len=4
1644347794.498707: WPS: attr type=0x1024 len=4
1644347794.498731: WPS: attr type=0x1042 len=4
1644347794.498755: WPS: attr type=0x1054 len=8
1644347794.498779: WPS: attr type=0x1011 len=4
1644347794.498804: WPS: attr type=0x1008 len=2
1644347794.498828: WPS: attr type=0x103c len=1
1644347794.498851: WPS: attr type=0x1049 len=6
1644347794.498876: WPS: WFA subelement id=0 len=1
1644347794.498901: WPS: attr type=0x104a len=1
1644347794.498925: WPS: attr type=0x1044 len=1
1644347794.498950: WPS: attr type=0x103b len=1
1644347794.498974: WPS: attr type=0x1047 len=16
1644347794.498998: WPS: attr type=0x1021 len=3
1644347794.499022: WPS: attr type=0x1023 len=4
1644347794.499046: WPS: attr type=0x1024 len=4
1644347794.499070: WPS: attr type=0x1042 len=4
1644347794.499094: WPS: attr type=0x1054 len=8
1644347794.499118: WPS: attr type=0x1011 len=4
1644347794.499142: WPS: attr type=0x1008 len=2
1644347794.499166: WPS: attr type=0x103c len=1
1644347794.499202: WPS: attr type=0x1049 len=6
1644347794.499228: WPS: WFA subelement id=0 len=1
1644347794.499252: WPS: attr type=0x104a len=1
1644347794.499275: WPS: attr type=0x1044 len=1
1644347794.499299: WPS: attr type=0x103b len=1
1644347794.499323: WPS: attr type=0x1047 len=16
1644347794.499346: WPS: attr type=0x1021 len=3
1644347794.499370: WPS: attr type=0x1023 len=4
1644347794.499394: WPS: attr type=0x1024 len=4
1644347794.499418: WPS: attr type=0x1042 len=4
1644347794.499441: WPS: attr type=0x1054 len=8
1644347794.499465: WPS: attr type=0x1011 len=4
1644347794.499489: WPS: attr type=0x1008 len=2
1644347794.499513: WPS: attr type=0x103c len=1
1644347794.499536: WPS: attr type=0x1049 len=6
1644347794.499559: WPS: WFA subelement id=0 len=1
1644347794.499584: WPS: attr type=0x104a len=1
1644347794.499607: WPS: attr type=0x1044 len=1
1644347794.499630: WPS: attr type=0x103b len=1
1644347794.499654: WPS: attr type=0x1047 len=16
1644347794.499677: WPS: attr type=0x1021 len=3
1644347794.499701: WPS: attr type=0x1023 len=4
1644347794.499724: WPS: attr type=0x1024 len=4
1644347794.499748: WPS: attr type=0x1042 len=4
1644347794.499774: WPS: attr type=0x1054 len=8
1644347794.499799: WPS: attr type=0x1011 len=4
1644347794.499826: WPS: attr type=0x1008 len=2
1644347794.499856: WPS: attr type=0x103c len=1
1644347794.499886: WPS: attr type=0x1049 len=6
1644347794.499913: WPS: WFA subelement id=0 len=1
1644347794.499995: WPS: attr type=0x104a len=1
1644347794.500023: WPS: attr type=0x1044 len=1
1644347794.500045: WPS: attr type=0x103b len=1
1644347794.500066: WPS: attr type=0x1047 len=16
1644347794.500088: WPS: attr type=0x1021 len=3
1644347794.500109: WPS: attr type=0x1023 len=4
1644347794.500130: WPS: attr type=0x1024 len=4
1644347794.500151: WPS: attr type=0x1042 len=4
1644347794.500172: WPS: attr type=0x1054 len=8
1644347794.500192: WPS: attr type=0x1011 len=4
1644347794.500213: WPS: attr type=0x1008 len=2
1644347794.500235: WPS: attr type=0x103c len=1
1644347794.500256: WPS: attr type=0x1049 len=6
1644347794.500277: WPS: WFA subelement id=0 len=1
1644347794.500298: WPS: attr type=0x104a len=1
1644347794.500320: WPS: attr type=0x1044 len=1
1644347794.500341: WPS: attr type=0x103b len=1
1644347794.500362: WPS: attr type=0x1047 len=16
1644347794.500383: WPS: attr type=0x1021 len=3
1644347794.500404: WPS: attr type=0x1023 len=4
1644347794.500425: WPS: attr type=0x1024 len=4
1644347794.500446: WPS: attr type=0x1042 len=4
1644347794.500466: WPS: attr type=0x1054 len=8
1644347794.500487: WPS: attr type=0x1011 len=4
1644347794.500508: WPS: attr type=0x1008 len=2
1644347794.500529: WPS: attr type=0x103c len=1
1644347794.500550: WPS: attr type=0x1049 len=6
1644347794.500571: WPS: WFA subelement id=0 len=1
1644347794.500592: WPS: attr type=0x104a len=1
1644347794.500613: WPS: attr type=0x1044 len=1
1644347794.500634: WPS: attr type=0x103b len=1
1644347794.500655: WPS: attr type=0x1047 len=16
1644347794.500676: WPS: attr type=0x1021 len=3
1644347794.500697: WPS: attr type=0x1023 len=4
1644347794.500718: WPS: attr type=0x1024 len=4
1644347794.500739: WPS: attr type=0x1042 len=4
1644347794.500760: WPS: attr type=0x1054 len=8
1644347794.500800: WPS: attr type=0x1011 len=4
1644347794.500822: WPS: attr type=0x1008 len=2
1644347794.500843: WPS: attr type=0x103c len=1
1644347794.500864: WPS: attr type=0x1049 len=6
1644347794.500885: WPS: WFA subelement id=0 len=1
1644347794.500909: WPS: attr type=0x104a len=1
1644347794.500931: WPS: attr type=0x1044 len=1
1644347794.500953: WPS: attr type=0x103b len=1
1644347794.500974: WPS: attr type=0x1047 len=16
1644347794.500995: WPS: attr type=0x1021 len=3
1644347794.501016: WPS: attr type=0x1023 len=4
1644347794.501038: WPS: attr type=0x1024 len=4
1644347794.501059: WPS: attr type=0x1042 len=4
1644347794.501080: WPS: attr type=0x1054 len=8
1644347794.501101: WPS: attr type=0x1011 len=4
1644347794.501122: WPS: attr type=0x1008 len=2
1644347794.501143: WPS: attr type=0x103c len=1
1644347794.501164: WPS: attr type=0x1049 len=6
1644347794.501186: WPS: WFA subelement id=0 len=1
1644347794.501207: WPS: attr type=0x104a len=1
1644347794.501246: WPS: attr type=0x1044 len=1
1644347794.501268: WPS: attr type=0x103b len=1
1644347794.501289: WPS: attr type=0x1047 len=16
1644347794.501310: WPS: attr type=0x1021 len=3
1644347794.501331: WPS: attr type=0x1023 len=4
1644347794.501352: WPS: attr type=0x1024 len=4
1644347794.501373: WPS: attr type=0x1042 len=4
1644347794.501394: WPS: attr type=0x1054 len=8
1644347794.501415: WPS: attr type=0x1011 len=4
1644347794.501436: WPS: attr type=0x1008 len=2
1644347794.501457: WPS: attr type=0x103c len=1
1644347794.501478: WPS: attr type=0x1049 len=6
1644347794.501499: WPS: WFA subelement id=0 len=1
1644347794.501520: WPS: attr type=0x104a len=1
1644347794.501541: WPS: attr type=0x1044 len=1
1644347794.501562: WPS: attr type=0x103b len=1
1644347794.501583: WPS: attr type=0x1047 len=16
1644347794.501605: WPS: attr type=0x1021 len=3
1644347794.501626: WPS: attr type=0x1023 len=4
1644347794.501647: WPS: attr type=0x1024 len=4
1644347794.501668: WPS: attr type=0x1042 len=4
1644347794.501689: WPS: attr type=0x1054 len=8
1644347794.501710: WPS: attr type=0x1011 len=4
1644347794.501731: WPS: attr type=0x1008 len=2
1644347794.501752: WPS: attr type=0x103c len=1
1644347794.501773: WPS: attr type=0x1049 len=6
1644347794.501794: WPS: WFA subelement id=0 len=1
1644347794.501817: WPS: attr type=0x104a len=1
1644347794.501839: WPS: attr type=0x1044 len=1
1644347794.501860: WPS: attr type=0x103b len=1
1644347794.501882: WPS: attr type=0x1047 len=16
1644347794.501903: WPS: attr type=0x1021 len=3
1644347794.501924: WPS: attr type=0x1023 len=4
1644347794.501945: WPS: attr type=0x1024 len=4
1644347794.501966: WPS: attr type=0x1042 len=4
1644347794.501987: WPS: attr type=0x1054 len=8
1644347794.502008: WPS: attr type=0x1011 len=4
1644347794.502029: WPS: attr type=0x1008 len=2
1644347794.502050: WPS: attr type=0x103c len=1
1644347794.502071: WPS: attr type=0x1049 len=6
1644347794.502092: WPS: WFA subelement id=0 len=1
1644347794.502113: WPS: attr type=0x104a len=1
1644347794.502134: WPS: attr type=0x1044 len=1
1644347794.502155: WPS: attr type=0x103b len=1
1644347794.502176: WPS: attr type=0x1047 len=16
1644347794.502197: WPS: attr type=0x1021 len=3
1644347794.502218: WPS: attr type=0x1023 len=4
1644347794.502239: WPS: attr type=0x1024 len=4
1644347794.502260: WPS: attr type=0x1042 len=4
1644347794.502281: WPS: attr type=0x1054 len=8
1644347794.502301: WPS: attr type=0x1011 len=4
1644347794.502322: WPS: attr type=0x1008 len=2
1644347794.502343: WPS: attr type=0x103c len=1
1644347794.502364: WPS: attr type=0x1049 len=6
1644347794.502385: WPS: WFA subelement id=0 len=1
1644347794.502406: WPS: attr type=0x104a len=1
1644347794.502427: WPS: attr type=0x1044 len=1
1644347794.502448: WPS: attr type=0x103b len=1
1644347794.502469: WPS: attr type=0x1047 len=16
1644347794.502490: WPS: attr type=0x1021 len=3
1644347794.502511: WPS: attr type=0x1023 len=4
1644347794.502532: WPS: attr type=0x1024 len=4
1644347794.502552: WPS: attr type=0x1042 len=4
1644347794.502573: WPS: attr type=0x1054 len=8
1644347794.502594: WPS: attr type=0x1011 len=4
1644347794.502615: WPS: attr type=0x1008 len=2
1644347794.502636: WPS: attr type=0x103c len=1
1644347794.502656: WPS: attr type=0x1049 len=6
1644347794.502677: WPS: WFA subelement id=0 len=1
1644347794.502699: WPS: attr type=0x104a len=1
1644347794.502721: WPS: attr type=0x1044 len=1
1644347794.502742: WPS: attr type=0x103b len=1
1644347794.502763: WPS: attr type=0x1047 len=16
1644347794.502784: WPS: attr type=0x1021 len=3
1644347794.502805: WPS: attr type=0x1023 len=4
1644347794.502826: WPS: attr type=0x1024 len=4
1644347794.502847: WPS: attr type=0x1042 len=4
1644347794.502868: WPS: attr type=0x1054 len=8
1644347794.502889: WPS: attr type=0x1011 len=4
1644347794.502910: WPS: attr type=0x1008 len=2
1644347794.502931: WPS: attr type=0x103c len=1
1644347794.502952: WPS: attr type=0x1049 len=6
1644347794.502973: WPS: WFA subelement id=0 len=1
1644347794.502995: WPS: attr type=0x104a len=1
1644347794.503016: WPS: attr type=0x1044 len=1
1644347794.503037: WPS: attr type=0x103b len=1
1644347794.503070: WPS: attr type=0x1047 len=16
1644347794.503092: WPS: attr type=0x1021 len=3
1644347794.503114: WPS: attr type=0x1023 len=4
1644347794.503135: WPS: attr type=0x1024 len=4
1644347794.503156: WPS: attr type=0x1042 len=4
1644347794.503177: WPS: attr type=0x1054 len=8
1644347794.503199: WPS: attr type=0x1011 len=4
1644347794.503220: WPS: attr type=0x1008 len=2
1644347794.503241: WPS: attr type=0x103c len=1
1644347794.503262: WPS: attr type=0x1049 len=6
1644347794.503283: WPS: WFA subelement id=0 len=1
1644347794.503304: WPS: attr type=0x104a len=1
1644347794.503325: WPS: attr type=0x1044 len=1
1644347794.503346: WPS: attr type=0x103b len=1
1644347794.503368: WPS: attr type=0x1047 len=16
1644347794.503389: WPS: attr type=0x1021 len=3
1644347794.503410: WPS: attr type=0x1023 len=4
1644347794.503431: WPS: attr type=0x1024 len=4
1644347794.503451: WPS: attr type=0x1042 len=4
1644347794.503472: WPS: attr type=0x1054 len=8
1644347794.503493: WPS: attr type=0x1011 len=4
1644347794.503514: WPS: attr type=0x1008 len=2
1644347794.503535: WPS: attr type=0x103c len=1
1644347794.503556: WPS: attr type=0x1049 len=6
1644347794.503577: WPS: WFA subelement id=0 len=1
1644347794.503600: WPS: attr type=0x104a len=1
1644347794.503622: WPS: attr type=0x1044 len=1
1644347794.503643: WPS: attr type=0x103b len=1
1644347794.503664: WPS: attr type=0x1047 len=16
1644347794.503685: WPS: attr type=0x1021 len=3
1644347794.503706: WPS: attr type=0x1023 len=4
1644347794.503727: WPS: attr type=0x1024 len=4
1644347794.503748: WPS: attr type=0x1042 len=4
1644347794.503769: WPS: attr type=0x1054 len=8
1644347794.503790: WPS: attr type=0x1011 len=4
1644347794.503811: WPS: attr type=0x1008 len=2
1644347794.503832: WPS: attr type=0x103c len=1
1644347794.503853: WPS: attr type=0x1049 len=6
1644347794.503875: WPS: WFA subelement id=0 len=1
1644347794.503896: WPS: attr type=0x104a len=1
1644347794.503917: WPS: attr type=0x1044 len=1
1644347794.503938: WPS: attr type=0x103b len=1
1644347794.503959: WPS: attr type=0x1047 len=16
1644347794.503981: WPS: attr type=0x1021 len=3
1644347794.504002: WPS: attr type=0x1023 len=4
1644347794.504023: WPS: attr type=0x1024 len=4
1644347794.504044: WPS: attr type=0x1042 len=4
1644347794.504064: WPS: attr type=0x1054 len=8
1644347794.504086: WPS: attr type=0x1011 len=4
1644347794.504107: WPS: attr type=0x1008 len=2
1644347794.504128: WPS: attr type=0x103c len=1
1644347794.504149: WPS: attr type=0x1049 len=6
1644347794.504170: WPS: WFA subelement id=0 len=1
1644347794.504191: WPS: attr type=0x104a len=1
1644347794.504212: WPS: attr type=0x1044 len=1
1644347794.504233: WPS: attr type=0x103b len=1
1644347794.504254: WPS: attr type=0x1047 len=16
1644347794.504275: WPS: attr type=0x1021 len=3
1644347794.504296: WPS: attr type=0x1023 len=4
1644347794.504317: WPS: attr type=0x1024 len=4
1644347794.504338: WPS: attr type=0x1042 len=4
1644347794.504359: WPS: attr type=0x1054 len=8
1644347794.504380: WPS: attr type=0x1011 len=4
1644347794.504402: WPS: attr type=0x1008 len=2
1644347794.504423: WPS: attr type=0x103c len=1
1644347794.504444: WPS: attr type=0x1049 len=6
1644347794.504465: WPS: WFA subelement id=0 len=1
1644347794.504487: WPS: attr type=0x104a len=1
1644347794.504509: WPS: attr type=0x1044 len=1
1644347794.504530: WPS: attr type=0x103b len=1
1644347794.504551: WPS: attr type=0x1047 len=16
1644347794.504572: WPS: attr type=0x1021 len=3
1644347794.504593: WPS: attr type=0x1023 len=4
1644347794.504614: WPS: attr type=0x1024 len=4
1644347794.504635: WPS: attr type=0x1042 len=4
1644347794.504656: WPS: attr type=0x1054 len=8
1644347794.504677: WPS: attr type=0x1011 len=4
1644347794.504698: WPS: attr type=0x1008 len=2
1644347794.504719: WPS: attr type=0x103c len=1
1644347794.504740: WPS: attr type=0x1049 len=6
1644347794.504761: WPS: WFA subelement id=0 len=1
1644347794.504793: WPS: attr type=0x104a len=1
1644347794.504815: WPS: attr type=0x1044 len=1
1644347794.504836: WPS: attr type=0x103b len=1
1644347794.504858: WPS: attr type=0x1047 len=16
1644347794.504879: WPS: attr type=0x1021 len=3
1644347794.504900: WPS: attr type=0x1023 len=4
1644347794.504938: WPS: attr type=0x1024 len=4
1644347794.504959: WPS: attr type=0x1042 len=4
1644347794.504981: WPS: attr type=0x1054 len=8
1644347794.505002: WPS: attr type=0x1011 len=4
1644347794.505023: WPS: attr type=0x1008 len=2
1644347794.505044: WPS: attr type=0x103c len=1
1644347794.505064: WPS: attr type=0x1049 len=6
1644347794.505085: WPS: WFA subelement id=0 len=1
1644347794.505107: WPS: attr type=0x104a len=1
1644347794.505127: WPS: attr type=0x1044 len=1
1644347794.505148: WPS: attr type=0x103b len=1
1644347794.505170: WPS: attr type=0x1047 len=16
1644347794.505191: WPS: attr type=0x1021 len=3
1644347794.505212: WPS: attr type=0x1023 len=4
1644347794.505232: WPS: attr type=0x1024 len=4
1644347794.505253: WPS: attr type=0x1042 len=4
1644347794.505274: WPS: attr type=0x1054 len=8
1644347794.505295: WPS: attr type=0x1011 len=4
1644347794.505316: WPS: attr type=0x1008 len=2
1644347794.505337: WPS: attr type=0x103c len=1
1644347794.505358: WPS: attr type=0x1049 len=6
1644347794.505379: WPS: WFA subelement id=0 len=1
1644347794.505402: WPS: AP[0] 2c:91:ab:e0:30:35 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=2
1644347794.505427: WPS: AP[1] 2c:91:ab:e0:30:34 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=2
1644347794.505451: WPS: AP[2] e0:28:6d:7e:94:3c type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=2
1644347794.505474: WPS: AP[3] e0:28:6d:7e:94:3b type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347794.505496: WPS: AP[4] cc:ce:1e:65:97:c5 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347794.505519: WPS: AP[5] ce:ce:1e:65:97:c5 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347794.505550: wlan1: Radio work 'scan'@0x55a48858ed90 done in 0.125121 seconds
1644347794.505576: wlan1: radio_work_free('scan'@0x55a48858ed90): num_active_works --> 0
1644347794.505601: wlan1: Scan results matching the currently selected network
1644347794.505643: wlan1: 3: e0:28:6d:7e:94:3b freq=5260 level=-77 snr=15 est_throughput=60750
1644347794.505673: wlan1: Selecting BSS from priority group 0
1644347794.505706: wlan1: 0: 2c:91:ab:e0:30:35 ssid='FRITZ!Box 7590 TC' wpa_ie_len=0 rsn_ie_len=24 caps=0x1511 level=-47 freq=5260  wps
1644347794.505732: wlan1:    skip - BSSID ignored (count=2 limit=0)
1644347794.505761: wlan1: 1: 2c:91:ab:e0:30:34 ssid='FRITZ!Box 7590 TC' wpa_ie_len=0 rsn_ie_len=24 caps=0x1431 level=-33 freq=2437  wps
1644347794.505786: wlan1:    skip - BSSID ignored (count=2 limit=0)
1644347794.505815: wlan1: 2: e0:28:6d:7e:94:3c ssid='FRITZ!Box 7590 TC' wpa_ie_len=0 rsn_ie_len=24 caps=0x1431 level=-66 freq=2437  wps
1644347794.505839: wlan1:    skip - BSSID ignored (count=2 limit=0)
1644347794.505869: wlan1: 3: e0:28:6d:7e:94:3b ssid='FRITZ!Box 7590 TC' wpa_ie_len=0 rsn_ie_len=24 caps=0x1511 level=-77 freq=5260  wps
1644347794.505894: wlan1:    selected based on RSN IE
1644347794.505922: wlan1:    selected BSS e0:28:6d:7e:94:3b ssid='FRITZ!Box 7590 TC'
1644347794.505957: wlan1: Considering connect request: reassociate: 0  selected: e0:28:6d:7e:94:3b  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid=0x55a488595780  current_ssid=0x55a488595780
1644347794.505983: wlan1: Request association with e0:28:6d:7e:94:3b
1644347794.506006: wlan1: Re-association to the same ESS
1644347794.506031: unknown vendor specific information element ignored (vendor OUI 00:03:7f len=9)
1644347794.506055: unknown vendor specific information element ignored (vendor OUI 00:04:0e len=12)
1644347794.506078: unknown vendor specific information element ignored (vendor OUI 00:03:7f len=7)
1644347794.506100: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=22)
1644347794.506122: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=31)
1644347794.506144: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=8)
1644347794.506165: TDLS: TDLS is allowed in the target BSS
1644347794.506186: TDLS: TDLS channel switch allowed in the target BSS
1644347794.506209: wlan1: No ongoing scan/p2p-scan found to abort
1644347794.506248: wlan1: Add radio work 'sme-connect'@0x55a48858ed90
1644347794.506273: wlan1: First radio work item in the queue - schedule start immediately
1644347794.506317: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347794.506446: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/0
1644347794.506655: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/1
1644347794.506754: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/2
1644347794.506852: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/3
1644347794.507056: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/4
1644347794.507153: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/5
1644347794.507254: wlan1: Starting radio work 'sme-connect'@0x55a48858ed90 after 0.000978 second wait
1644347794.507285: wlan1: WPA: clearing own WPA/RSN IE
1644347794.507309: wlan1: RSN: clearing own RSNXE
1644347794.507334: wlan1: Automatic auth_alg selection: 0x1
1644347794.507357: wlan1: Overriding auth_alg selection: 0x1
1644347794.507382: wlan1: Using SAE auth_alg
1644347794.507405: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x0
1644347794.507428: RSN: Search for BSSID e0:28:6d:7e:94:3b
1644347794.507451: RSN: No PMKSA cache entry found
1644347794.507475: wlan1: RSN: using IEEE 802.11i/D9.0
1644347794.507500: wlan1: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1026 proto 2
1644347794.507524: wlan1: WPA: Selected mgmt group cipher 32
1644347794.507547: wlan1: WPA: clearing AP WPA IE
1644347794.507569: WPA: set AP RSN IE - hexdump(len=26): 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347794.507601: wlan1: WPA: clearing AP RSNXE
1644347794.507625: wlan1: WPA: AP group 0x10 network profile group 0x18; available group 0x10
1644347794.507650: wlan1: WPA: using GTK CCMP
1644347794.507674: wlan1: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
1644347794.507698: wlan1: WPA: using PTK CCMP
1644347794.507722: wlan1: WPA: AP key_mgmt 0x402 network profile key_mgmt 0x502; available key_mgmt 0x402
1644347794.507745: wlan1: RSN: using KEY_MGMT SAE
1644347794.507771: wlan1: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
1644347794.507794: wlan1: WPA: not using MGMT group cipher
1644347794.507817: 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
1644347794.507846: RSN: Set own RSNXE default - hexdump(len=0):
1644347794.507868: PSK (set in config) - hexdump(len=32): [REMOVED]
1644347794.507891: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347794.507913: RRM: Determining whether RRM can be used - device support: 0x10
1644347794.507935: RRM: Adding RRM IE to Association Request
1644347794.507970: Added supported operating classes IE - hexdump(len=19): 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347794.508000: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x400
1644347794.508023: RSN: Search for BSSID e0:28:6d:7e:94:3b
1644347794.508045: RSN: No PMKSA cache entry found
1644347794.508158: SAE: Selecting supported ECC group 19
1644347794.508187: wlan1: SME: Selected SAE group 19
1644347794.508413: SAE: password - hexdump_ascii(len=20): [REMOVED]
1644347794.508436: SAE: PWE derivation - addr1=c4:85:08:14:a1:b8 addr2=e0:28:6d:7e:94:3b
1644347794.508454: SAE: counter = 001
1644347794.508480: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.508504: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.508613: SAE: pwd-seed result 0 found=0x00
1644347794.508636: SAE: counter = 002
1644347794.508655: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.508685: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.508848: SAE: pwd-seed result 0 found=0x00
1644347794.508887: SAE: counter = 003
1644347794.508943: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.508986: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.509123: SAE: pwd-seed result 0 found=0x00
1644347794.509156: SAE: counter = 004
1644347794.509208: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.509267: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.509349: SAE: pwd-seed result 0 found=0x00
1644347794.509387: SAE: counter = 005
1644347794.509427: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.509494: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.509619: SAE: pwd-seed result 0 found=0x00
1644347794.509656: SAE: counter = 006
1644347794.509688: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.509727: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.509861: SAE: pwd-seed result 0 found=0x00
1644347794.509878: SAE: counter = 007
1644347794.509891: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.509904: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.510029: SAE: pwd-seed result 1 found=0xff
1644347794.510058: SAE: counter = 008
1644347794.510089: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.510121: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.510248: SAE: pwd-seed result 1 found=0xff
1644347794.510275: SAE: counter = 009
1644347794.510305: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.510337: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.510463: SAE: pwd-seed result 1 found=0xff
1644347794.510490: SAE: counter = 010
1644347794.510520: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.510553: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.510679: SAE: pwd-seed result 0 found=0xff
1644347794.510706: SAE: counter = 011
1644347794.510736: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.510769: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.510894: SAE: pwd-seed result 0 found=0xff
1644347794.510921: SAE: counter = 012
1644347794.510951: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.510983: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.511109: SAE: pwd-seed result 1 found=0xff
1644347794.511135: SAE: counter = 013
1644347794.511165: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.511198: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.511323: SAE: pwd-seed result 1 found=0xff
1644347794.511350: SAE: counter = 014
1644347794.511380: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.511413: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.511538: SAE: pwd-seed result 0 found=0xff
1644347794.511565: SAE: counter = 015
1644347794.511595: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.511627: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.511752: SAE: pwd-seed result 1 found=0xff
1644347794.511779: SAE: counter = 016
1644347794.511809: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.511842: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.511967: SAE: pwd-seed result 1 found=0xff
1644347794.511994: SAE: counter = 017
1644347794.512024: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.512057: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.512183: SAE: pwd-seed result 0 found=0xff
1644347794.512209: SAE: counter = 018
1644347794.512239: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.512272: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.512397: SAE: pwd-seed result 0 found=0xff
1644347794.512424: SAE: counter = 019
1644347794.512454: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.512486: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.512612: SAE: pwd-seed result 1 found=0xff
1644347794.512639: SAE: counter = 020
1644347794.512669: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.512701: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.512879: SAE: pwd-seed result 1 found=0xff
1644347794.512913: SAE: counter = 021
1644347794.512945: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.512978: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.513105: SAE: pwd-seed result 0 found=0xff
1644347794.513132: SAE: counter = 022
1644347794.513163: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.513195: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.513321: SAE: pwd-seed result 0 found=0xff
1644347794.513348: SAE: counter = 023
1644347794.513378: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.513411: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.513536: SAE: pwd-seed result 0 found=0xff
1644347794.513563: SAE: counter = 024
1644347794.513594: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.513630: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.513756: SAE: pwd-seed result 1 found=0xff
1644347794.513783: SAE: counter = 025
1644347794.513813: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.513845: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.513970: SAE: pwd-seed result 1 found=0xff
1644347794.513997: SAE: counter = 026
1644347794.514027: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.514059: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.514185: SAE: pwd-seed result 0 found=0xff
1644347794.514212: SAE: counter = 027
1644347794.514242: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.514274: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.514399: SAE: pwd-seed result 1 found=0xff
1644347794.514426: SAE: counter = 028
1644347794.514456: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.514488: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.514613: SAE: pwd-seed result 0 found=0xff
1644347794.514639: SAE: counter = 029
1644347794.514669: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.514701: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.514825: SAE: pwd-seed result 0 found=0xff
1644347794.514852: SAE: counter = 030
1644347794.514882: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.514915: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.515040: SAE: pwd-seed result 0 found=0xff
1644347794.515067: SAE: counter = 031
1644347794.515097: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.515129: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.515254: SAE: pwd-seed result 0 found=0xff
1644347794.515281: SAE: counter = 032
1644347794.515311: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.515343: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.515469: SAE: pwd-seed result 1 found=0xff
1644347794.515496: SAE: counter = 033
1644347794.515526: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.515558: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.515683: SAE: pwd-seed result 0 found=0xff
1644347794.515710: SAE: counter = 034
1644347794.515740: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.515772: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.515898: SAE: pwd-seed result 0 found=0xff
1644347794.515925: SAE: counter = 035
1644347794.515955: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.515987: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.516112: SAE: pwd-seed result 1 found=0xff
1644347794.516139: SAE: counter = 036
1644347794.516168: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.516201: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.516326: SAE: pwd-seed result 1 found=0xff
1644347794.516353: SAE: counter = 037
1644347794.516382: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.516414: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.516540: SAE: pwd-seed result 1 found=0xff
1644347794.516567: SAE: counter = 038
1644347794.516597: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.516628: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.516753: SAE: pwd-seed result 0 found=0xff
1644347794.516799: SAE: counter = 039
1644347794.516831: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.516863: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.517011: SAE: pwd-seed result 0 found=0xff
1644347794.517039: SAE: counter = 040
1644347794.517069: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347794.517101: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347794.517226: SAE: pwd-seed result 0 found=0xff
1644347794.517337: SAE: PWE - hexdump(len=64): [REMOVED]
1644347794.517622: SAE: own commit-scalar - hexdump(len=32): 10 7f c0 50 e6 36 d3 5e 24 7c 64 de ed 1e 2e 0d a3 7d 23 49 f3 33 b1 17 0b 51 dd 97 54 80 b8 35
1644347794.517678: SAE: own commit-element(x) - hexdump(len=32): 06 ee b4 b9 c0 ed 50 1d 70 3c 57 4c f5 0c bc 45 5f 52 a0 01 e5 e6 a9 79 01 94 f1 b8 b0 29 80 a8
1644347794.517709: SAE: own commit-element(y) - hexdump(len=32): d4 2e 32 b7 6e d6 a7 68 64 c4 4b 49 4a c4 7f 15 69 0b dd b3 fb b0 6f fb a1 a6 8a 17 2a f7 86 e4
1644347794.517740: EAPOL: External notification - EAP success=0
1644347794.517765: EAPOL: External notification - EAP fail=0
1644347794.517787: EAPOL: External notification - portControl=Auto
1644347794.517813: wlan1: Cancelling scan request
1644347794.517841: wlan1: SME: Trying to authenticate with e0:28:6d:7e:94:3b (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347794.517864: EAPOL: External notification - portValid=0
1644347794.517888: wlan1: State: SCANNING -> AUTHENTICATING
1644347794.517974: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
1644347794.518008: wlan1: Determining shared radio frequencies (max len 1)
1644347794.518033: wlan1: Shared frequencies (len=0): completed iteration
1644347794.518056: nl80211: Authenticate (ifindex=3)
1644347794.518085:   * bssid=e0:28:6d:7e:94:3b
1644347794.518109:   * freq=5260
1644347794.518131:   * SSID=FRITZ!Box 7590 TC
1644347794.518153:   * IEs - hexdump(len=0): [NULL]
1644347794.518175:   * auth_data - hexdump(len=102): 01 00 00 00 13 00 10 7f c0 50 e6 36 d3 5e 24 7c 64 de ed 1e 2e 0d a3 7d 23 49 f3 33 b1 17 0b 51 dd 97 54 80 b8 35 06 ee b4 b9 c0 ed 50 1d 70 3c 57 4c f5 0c bc 45 5f 52 a0 01 e5 e6 a9 79 01 94 f1 b8 b0 29 80 a8 d4 2e 32 b7 6e d6 a7 68 64 c4 4b 49 4a c4 7f 15 69 0b dd b3 fb b0 6f fb a1 a6 8a 17 2a f7 86 e4
1644347794.518221:   * Auth Type 4
1644347794.521998: nl80211: Authentication request send successfully
1644347794.522101: nl80211: Event message available
1644347794.522144: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan1
1644347794.522173: nl80211: New station e0:28:6d:7e:94:3b
1644347794.523106: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347795.049845: nl80211: Event message available
1644347795.049930: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan1
1644347795.049945: nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=e0:28:6d:7e:94:3b
1644347795.049958: nl80211: MLME event frame - hexdump(len=128): b0 00 3c 00 c4 85 08 14 a1 b8 e0 28 6d 7e 94 3b e0 28 6d 7e 94 3b 80 b9 03 00 01 00 00 00 13 00 2e b3 0a 14 1f b5 bc 60 82 f1 fa d2 d6 d0 d9 77 8e 59 b6 96 93 af 09 7f 59 ae fe 80 5e 79 8e a8 7c 60 c6 0f 8a 3b c2 74 b4 a2 0a ca dd fd 46 c6 14 a3 37 07 26 b7 12 5a c6 bf 4c 14 61 15 cc aa e0 f7 4c d2 53 7f fc a5 57 09 af 47 ca 74 82 76 65 39 94 6a 14 1d 9e 6a 41 71 cb 91 7f 2d df 4c
1644347795.049984: nl80211: Authenticate event
1644347795.049999: wlan1: Event AUTH (10) received
1644347795.050014: wlan1: SME: Authentication response: peer=e0:28:6d:7e:94:3b auth_type=3 auth_transaction=1 status_code=0
1644347795.050024: SME: Authentication response IEs - hexdump(len=98): 13 00 2e b3 0a 14 1f b5 bc 60 82 f1 fa d2 d6 d0 d9 77 8e 59 b6 96 93 af 09 7f 59 ae fe 80 5e 79 8e a8 7c 60 c6 0f 8a 3b c2 74 b4 a2 0a ca dd fd 46 c6 14 a3 37 07 26 b7 12 5a c6 bf 4c 14 61 15 cc aa e0 f7 4c d2 53 7f fc a5 57 09 af 47 ca 74 82 76 65 39 94 6a 14 1d 9e 6a 41 71 cb 91 7f 2d df 4c
1644347795.050046: wlan1: SME: SAE authentication transaction 1 status code 0
1644347795.050058: wlan1: SME SAE commit
1644347795.050072: SAE: Peer commit-scalar - hexdump(len=32): 2e b3 0a 14 1f b5 bc 60 82 f1 fa d2 d6 d0 d9 77 8e 59 b6 96 93 af 09 7f 59 ae fe 80 5e 79 8e a8
1644347795.050110: SAE: Peer commit-element(x) - hexdump(len=32): 7c 60 c6 0f 8a 3b c2 74 b4 a2 0a ca dd fd 46 c6 14 a3 37 07 26 b7 12 5a c6 bf 4c 14 61 15 cc aa
1644347795.050125: SAE: Peer commit-element(y) - hexdump(len=32): e0 f7 4c d2 53 7f fc a5 57 09 af 47 ca 74 82 76 65 39 94 6a 14 1d 9e 6a 41 71 cb 91 7f 2d df 4c
1644347795.050148: SAE: Possible elements at the end of the frame - hexdump(len=0):
1644347795.050344: SAE: k - hexdump(len=32): [REMOVED]
1644347795.050358: SAE: salt for keyseed derivation - hexdump(len=32): 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 00 00 00 00 00 00 00
1644347795.050382: SAE: keyseed - hexdump(len=32): [REMOVED]
1644347795.050397: SAE: PMKID - hexdump(len=16): 3f 32 ca 65 05 ec 8f be a7 6e 5f b1 c3 ef 07 85
1644347795.050416: SAE: KCK - hexdump(len=32): [REMOVED]
1644347795.050428: SAE: PMK - hexdump(len=32): [REMOVED]
1644347795.050442: wlan1: Automatic auth_alg selection: 0x1
1644347795.050454: wlan1: Overriding auth_alg selection: 0x1
1644347795.050467: wlan1: Using SAE auth_alg
1644347795.050478: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x0
1644347795.050489: RSN: Search for BSSID e0:28:6d:7e:94:3b
1644347795.050500: RSN: No PMKSA cache entry found
1644347795.050510: wlan1: RSN: using IEEE 802.11i/D9.0
1644347795.050522: wlan1: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1026 proto 2
1644347795.050534: wlan1: WPA: Selected mgmt group cipher 32
1644347795.050547: wlan1: WPA: clearing AP WPA IE
1644347795.050557: WPA: set AP RSN IE - hexdump(len=26): 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347795.050571: wlan1: WPA: clearing AP RSNXE
1644347795.050582: wlan1: WPA: AP group 0x10 network profile group 0x18; available group 0x10
1644347795.050594: wlan1: WPA: using GTK CCMP
1644347795.050606: wlan1: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
1644347795.050617: wlan1: WPA: using PTK CCMP
1644347795.050629: wlan1: WPA: AP key_mgmt 0x402 network profile key_mgmt 0x502; available key_mgmt 0x402
1644347795.050641: wlan1: RSN: using KEY_MGMT SAE
1644347795.050654: wlan1: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
1644347795.050666: wlan1: WPA: not using MGMT group cipher
1644347795.050677: 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
1644347795.050691: 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
1644347795.050705: RSN: Set own RSNXE default - hexdump(len=0):
1644347795.050717: PSK (set in config) - hexdump(len=32): [REMOVED]
1644347795.050728: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347795.050738: RRM: Determining whether RRM can be used - device support: 0x10
1644347795.050749: RRM: Adding RRM IE to Association Request
1644347795.050766: Added supported operating classes IE - hexdump(len=19): 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347795.050780: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x400
1644347795.050791: RSN: Search for BSSID e0:28:6d:7e:94:3b
1644347795.050803: RSN: No PMKSA cache entry found
1644347795.050835: EAPOL: External notification - EAP success=0
1644347795.050849: EAPOL: External notification - EAP fail=0
1644347795.050860: EAPOL: External notification - portControl=Auto
1644347795.050872: wlan1: Cancelling scan request
1644347795.050885: wlan1: SME: Trying to authenticate with e0:28:6d:7e:94:3b (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347795.050896: EAPOL: External notification - portValid=0
1644347795.050909: wlan1: State: AUTHENTICATING -> AUTHENTICATING
1644347795.050920: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
1644347795.050935: wlan1: Determining shared radio frequencies (max len 1)
1644347795.050958: wlan1: Shared frequencies (len=0): completed iteration
1644347795.050970: nl80211: Authenticate (ifindex=3)
1644347795.050984:   * bssid=e0:28:6d:7e:94:3b
1644347795.050996:   * freq=5260
1644347795.051007:   * SSID=FRITZ!Box 7590 TC
1644347795.051017:   * IEs - hexdump(len=0): [NULL]
1644347795.051028:   * auth_data - hexdump(len=38): 02 00 00 00 01 00 21 42 c0 fa 6e ce b6 84 19 4b da 98 80 89 f5 9b 22 7b d9 a5 a7 d6 1a 77 3f 6a b9 0d 18 55 5e 19
1644347795.051042:   * Auth Type 4
1644347795.051109: nl80211: Authentication request send successfully
1644347795.197884: nl80211: Event message available
1644347795.197953: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan1
1644347795.197968: nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=e0:28:6d:7e:94:3b
1644347795.197981: nl80211: MLME event frame - hexdump(len=64): b0 00 3c 00 c4 85 08 14 a1 b8 e0 28 6d 7e 94 3b e0 28 6d 7e 94 3b 90 b9 03 00 02 00 00 00 00 00 cf df 3f 2b e9 bb 41 7a 34 8f 6e a7 44 7a e5 bc 6d 02 4c d0 76 25 8e fd 80 24 de 51 dd 75 00 51
1644347795.197999: nl80211: Authenticate event
1644347795.198012: wlan1: Event AUTH (10) received
1644347795.198027: wlan1: SME: Authentication response: peer=e0:28:6d:7e:94:3b auth_type=3 auth_transaction=2 status_code=0
1644347795.198038: SME: Authentication response IEs - hexdump(len=34): 00 00 cf df 3f 2b e9 bb 41 7a 34 8f 6e a7 44 7a e5 bc 6d 02 4c d0 76 25 8e fd 80 24 de 51 dd 75 00 51
1644347795.198055: wlan1: SME: SAE authentication transaction 2 status code 0
1644347795.198066: wlan1: SME SAE confirm
1644347795.198077: SAE: peer-send-confirm 0
1644347795.198124: SME: SAE completed - setting PMK for 4-way handshake
1644347795.198138: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347795.198150: RSN: Added PMKSA cache entry for e0:28:6d:7e:94:3b network_ctx=0x55a488595780 akmp=0x400
1644347795.198163: wlan1: PMKSA-CACHE-ADDED e0:28:6d:7e:94:3b 0
1644347795.198173: nl80211: Add PMKID for e0:28:6d:7e:94:3b
1644347795.198221: nl80211: NL80211_CMD_SET_PMKSA failed: -95 (Operation not supported)
1644347795.198235: SME: Association Request IEs - hexdump(len=61): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347795.198255: wlan1: Trying to associate with e0:28:6d:7e:94:3b (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347795.198266: wlan1: State: AUTHENTICATING -> ASSOCIATING
1644347795.198277: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347795.198287: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347795.198355: 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
1644347795.198385: wlan1: RSN: clearing own RSNXE
1644347795.198402: nl80211: Associate (ifindex=3)
1644347795.198423:   * bssid=e0:28:6d:7e:94:3b
1644347795.198445:   * freq=5260
1644347795.198460:   * SSID=FRITZ!Box 7590 TC
1644347795.198470:   * IEs - hexdump(len=61): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347795.198487:   * WPA Versions 0x2
1644347795.198498:   * pairwise=0xfac04
1644347795.198509:   * group=0xfac04
1644347795.198520:   * akm=0xfac08
1644347795.198562: nl80211: Association request send successfully
1644347795.236933: nl80211: Event message available
1644347795.237050: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan1
1644347795.237078: nl80211: Delete station e0:28:6d:7e:94:3b
1644347795.239414: nl80211: Event message available
1644347795.239454: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan1
1644347795.239473: nl80211: MLME event 38 (NL80211_CMD_ASSOCIATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=e0:28:6d:7e:94:3b
1644347795.239492: nl80211: MLME event frame - hexdump(len=229): 10 00 3c 00 c4 85 08 14 a1 b8 e0 28 6d 7e 94 3b e0 28 6d 7e 94 3b a0 b9 11 15 28 00 00 00 01 08 8c 12 98 24 b0 48 60 6c 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00 dd 08 8c fd f0 01 01 02 01 00 dd 18 00 50 f2 04 10 4a 00 01 10 10 3b 00 01 03 10 49 00 06 00 37 2a 00 01 20 dd 07 00 03 7f 05 01 00 01
1644347795.239572: nl80211: Associate event
1644347795.239593: wlan1: Event ASSOC_REJECT (12) received
1644347795.239613: wlan1: CTRL-EVENT-ASSOC-REJECT bssid=e0:28:6d:7e:94:3b status_code=40
1644347795.239678: wlan1: SME: Association with e0:28:6d:7e:94:3b failed: status code 40
1644347795.239690: wpa_driver_nl80211_deauthenticate(addr=e0:28:6d:7e:94:3b reason_code=3)
1644347795.239728: wlan1: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
1644347795.239739: wlan1: SME: Deauth request to the driver failed
1644347795.239750: wlan1: Radio work 'sme-connect'@0x55a48858ed90 done in 0.732498 seconds
1644347795.239760: wlan1: radio_work_free('sme-connect'@0x55a48858ed90): num_active_works --> 0
1644347795.239770: Added BSSID e0:28:6d:7e:94:3b into ignore list, ignoring for 10 seconds
1644347795.239781: Continuous association failures - consider temporary network disabling
1644347795.239792: wlan1: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="FRITZ!Box 7590 TC" auth_failures=1 duration=10 reason=CONN_FAILED
1644347795.239802: wlan1: Consecutive connection failures: 4 --> request scan in 5000 ms
1644347795.239812: wlan1: Setting scan request: 5.000000 sec
1644347795.239822: wlan1: State: ASSOCIATING -> DISCONNECTED
1644347795.239833: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347795.239842: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347795.239879: nl80211: Event message available
1644347795.239896: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan1
1644347795.239906: nl80211: Ignore connect event (cmd=46) when using userspace SME
1644347795.244915: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347800.240801: wlan1: State: DISCONNECTED -> SCANNING
1644347800.240886: Scan SSID - hexdump_ascii(len=17):
     46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54   FRITZ!Box 7590 T
     43                                                C               
1644347800.240935: wlan1: Starting AP scan for wildcard SSID
1644347800.240961: wlan1: Add radio work 'scan'@0x55a488594650
1644347800.240971: wlan1: First radio work item in the queue - schedule start immediately
1644347800.240986: wlan1: Starting radio work 'scan'@0x55a488594650 after 0.000014 second wait
1644347800.241009: wlan1: nl80211: scan request
1644347800.241025: nl80211: Scan SSID FRITZ!Box 7590 TC
1644347800.241034: nl80211: Scan SSID 
1644347800.241042: nl80211: Scan extra IEs - hexdump(len=13): 7f 0b 00 00 00 00 01 00 40 40 00 00 20
1644347800.242229: Scan requested (ret=0) - scan timeout 30 seconds
1644347800.242259: nl80211: Event message available
1644347800.242278: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan1
1644347800.242290: wlan1: nl80211: Scan trigger
1644347800.242300: wlan1: Event SCAN_STARTED (47) received
1644347800.242310: wlan1: Own scan request started a scan in 0.000054 seconds
1644347800.245948: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347803.516135: nl80211: Event message available
1644347803.516270: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan1
1644347803.516314: wlan1: nl80211: New scan results available
1644347803.516350: nl80211: Scan probed for SSID 'FRITZ!Box 7590 TC'
1644347803.516378: nl80211: Scan probed for SSID ''
1644347803.516458: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 5180 5200 5220 5240 5260 5280 5300 5320 5500 5520 5540 5560 5580 5600 5620 5640 5660 5680 5700 5745 5765 5785 5805 5825
1644347803.516488: wlan1: Event SCAN_RESULTS (3) received
1644347803.516517: wlan1: Scan completed in 3.274204 seconds
1644347803.516798: nl80211: Received scan results (8 BSSes)
1644347803.516925: Sorted scan results
1644347803.516956: 2c:91:ab:e0:30:35 freq=5260 qual=0 noise=-92~ level=-47 snr=45* flags=0xb age=2180 est=135000
1644347803.516986: IEs - hexdump(len=458): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 04 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff 75 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347803.517126: Beacon IEs - hexdump(len=382): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 04 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff e8 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347803.517246: 2c:91:ab:e0:30:34 freq=2437 qual=0 noise=-89~ level=-30 snr=59* flags=0xb age=3048 est=65000
1644347803.517274: IEs - hexdump(len=365): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 34 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347803.517415: Beacon IEs - hexdump(len=289): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 2c 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347803.517515: e0:28:6d:7e:94:3c freq=2437 qual=0 noise=-89~ level=-64 snr=25* flags=0xb age=3004 est=65000
1644347803.517543: IEs - hexdump(len=455): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 05 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fe fe 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c dd 08 8c fd f0 01 01 02 01 00
1644347803.517680: Beacon IEs - hexdump(len=379): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 0a 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fe b5 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c
1644347803.517799: e0:28:6d:7e:94:3b freq=5260 qual=0 noise=-92~ level=-79 snr=13 flags=0xb age=2184 est=47250
1644347803.517841: IEs - hexdump(len=491): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 04 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff fa 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347803.517988: Beacon IEs - hexdump(len=415): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 04 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff fa 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00
1644347803.518116: cc:ce:1e:65:97:c5 freq=2437 qual=0 noise=-89~ level=-87 snr=2 flags=0xb age=15912 est=6500
1644347803.518144: IEs - hexdump(len=382): 00 0e 46 52 49 54 5a 21 42 6f 78 20 37 34 39 30 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 00 00 11 00 00 46 05 73 d0 00 00 0c 2d 1a ad 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 07 0c 00 3d 16 06 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 39 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 2d ed c3 d2 7e 38 02 a3 26 a3 cc ce 1e 65 97 c5 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347803.518278: ea:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-87 snr=2 flags=0xb age=3244 est=6500
1644347803.518308: IEs - hexdump(len=312): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 0d 6c e1 a2 99 69 66 06 3c 4c d5 04 45 20 1d 8a 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347803.518413: Beacon IEs - hexdump(len=224): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347803.518496: e8:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-89 snr=0 flags=0xb age=3244 est=1000
1644347803.518524: IEs - hexdump(len=300): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 09 e8 5a 0f d4 6d ec 63 ca 08 e8 df 70 07 6f c2 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347803.518623: Beacon IEs - hexdump(len=212): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347803.518701: ce:ce:1e:65:97:c5 freq=2437 qual=0 noise=-89~ level=-91 snr=-2 flags=0xb age=15904 est=1000
1644347803.518728: IEs - hexdump(len=364): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 00 00 10 00 00 46 05 73 d0 00 00 0c 2d 1a ad 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 07 0c 00 3d 16 06 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 39 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 52 c7 5a ec 12 74 94 28 0b 9a e4 ef a7 3e b5 fd 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347803.518860: wlan1: BSS: Start scan result update 5
1644347803.518960: wlan1: BSS: Add new id 6 BSSID ea:df:70:07:6f:c2 SSID 'FRITZ!Box Gastzugang' freq 2412
1644347803.518992: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/6'
1644347803.519114: WPS: attr type=0x104a len=1
1644347803.519148: WPS: attr type=0x1044 len=1
1644347803.519174: WPS: attr type=0x103b len=1
1644347803.519201: WPS: attr type=0x1047 len=16
1644347803.519226: WPS: attr type=0x1021 len=3
1644347803.519250: WPS: attr type=0x1023 len=4
1644347803.519274: WPS: attr type=0x1024 len=4
1644347803.519298: WPS: attr type=0x1042 len=4
1644347803.519323: WPS: attr type=0x1054 len=8
1644347803.519347: WPS: attr type=0x1011 len=4
1644347803.519372: WPS: attr type=0x1008 len=2
1644347803.519396: WPS: attr type=0x103c len=1
1644347803.519420: WPS: attr type=0x1049 len=6
1644347803.519445: WPS: WFA subelement id=0 len=1
1644347803.519470: WPS: attr type=0x104a len=1
1644347803.519495: WPS: attr type=0x1044 len=1
1644347803.519519: WPS: attr type=0x103b len=1
1644347803.519544: WPS: attr type=0x1047 len=16
1644347803.519569: WPS: attr type=0x1021 len=3
1644347803.519593: WPS: attr type=0x1023 len=4
1644347803.519618: WPS: attr type=0x1024 len=4
1644347803.519645: WPS: attr type=0x1042 len=4
1644347803.519671: WPS: attr type=0x1054 len=8
1644347803.519697: WPS: attr type=0x1011 len=4
1644347803.519723: WPS: attr type=0x1008 len=2
1644347803.519748: WPS: attr type=0x103c len=1
1644347803.519773: WPS: attr type=0x1049 len=6
1644347803.519799: WPS: WFA subelement id=0 len=1
1644347803.519930: wlan1: BSS: Add new id 7 BSSID e8:df:70:07:6f:c2 SSID 'Zimmer10' freq 2412
1644347803.519968: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/7'
1644347803.520071: WPS: attr type=0x104a len=1
1644347803.520109: WPS: attr type=0x1044 len=1
1644347803.520140: WPS: attr type=0x103b len=1
1644347803.520171: WPS: attr type=0x1047 len=16
1644347803.520204: WPS: attr type=0x1021 len=3
1644347803.520234: WPS: attr type=0x1023 len=4
1644347803.520264: WPS: attr type=0x1024 len=4
1644347803.520296: WPS: attr type=0x1042 len=4
1644347803.520326: WPS: attr type=0x1054 len=8
1644347803.520356: WPS: attr type=0x1011 len=4
1644347803.520386: WPS: attr type=0x1008 len=2
1644347803.520417: WPS: attr type=0x103c len=1
1644347803.520448: WPS: attr type=0x1049 len=6
1644347803.520476: WPS: WFA subelement id=0 len=1
1644347803.520506: WPS: attr type=0x104a len=1
1644347803.520534: WPS: attr type=0x1044 len=1
1644347803.520563: WPS: attr type=0x103b len=1
1644347803.520593: WPS: attr type=0x1047 len=16
1644347803.520622: WPS: attr type=0x1021 len=3
1644347803.520650: WPS: attr type=0x1023 len=4
1644347803.520679: WPS: attr type=0x1024 len=4
1644347803.520708: WPS: attr type=0x1042 len=4
1644347803.520731: WPS: attr type=0x1054 len=8
1644347803.520752: WPS: attr type=0x1011 len=4
1644347803.520790: WPS: attr type=0x1008 len=2
1644347803.520812: WPS: attr type=0x103c len=1
1644347803.520833: WPS: attr type=0x1049 len=6
1644347803.520855: WPS: WFA subelement id=0 len=1
1644347803.520976: BSS: last_scan_res_used=8/32
1644347803.521009: wlan1: New scan results available (own=1 ext=0)
1644347803.521050: WPS: attr type=0x104a len=1
1644347803.521076: WPS: attr type=0x1044 len=1
1644347803.521097: WPS: attr type=0x103b len=1
1644347803.521119: WPS: attr type=0x1047 len=16
1644347803.521166: WPS: attr type=0x1021 len=3
1644347803.521190: WPS: attr type=0x1023 len=4
1644347803.521211: WPS: attr type=0x1024 len=4
1644347803.521232: WPS: attr type=0x1042 len=4
1644347803.521253: WPS: attr type=0x1054 len=8
1644347803.521274: WPS: attr type=0x1011 len=4
1644347803.521295: WPS: attr type=0x1008 len=2
1644347803.521316: WPS: attr type=0x103c len=1
1644347803.521338: WPS: attr type=0x1049 len=6
1644347803.521359: WPS: WFA subelement id=0 len=1
1644347803.521381: WPS: attr type=0x104a len=1
1644347803.521402: WPS: attr type=0x1044 len=1
1644347803.521423: WPS: attr type=0x103b len=1
1644347803.521444: WPS: attr type=0x1047 len=16
1644347803.521465: WPS: attr type=0x1021 len=3
1644347803.521486: WPS: attr type=0x1023 len=4
1644347803.521507: WPS: attr type=0x1024 len=4
1644347803.521528: WPS: attr type=0x1042 len=4
1644347803.521549: WPS: attr type=0x1054 len=8
1644347803.521570: WPS: attr type=0x1011 len=4
1644347803.521591: WPS: attr type=0x1008 len=2
1644347803.521612: WPS: attr type=0x103c len=1
1644347803.521633: WPS: attr type=0x1049 len=6
1644347803.521654: WPS: WFA subelement id=0 len=1
1644347803.521675: WPS: attr type=0x104a len=1
1644347803.521696: WPS: attr type=0x1044 len=1
1644347803.521717: WPS: attr type=0x103b len=1
1644347803.521738: WPS: attr type=0x1047 len=16
1644347803.521760: WPS: attr type=0x1021 len=3
1644347803.521780: WPS: attr type=0x1023 len=4
1644347803.521801: WPS: attr type=0x1024 len=4
1644347803.521822: WPS: attr type=0x1042 len=4
1644347803.521843: WPS: attr type=0x1054 len=8
1644347803.521864: WPS: attr type=0x1011 len=4
1644347803.521885: WPS: attr type=0x1008 len=2
1644347803.521906: WPS: attr type=0x103c len=1
1644347803.521927: WPS: attr type=0x1049 len=6
1644347803.521948: WPS: WFA subelement id=0 len=1
1644347803.521972: WPS: attr type=0x104a len=1
1644347803.521993: WPS: attr type=0x1044 len=1
1644347803.522014: WPS: attr type=0x103b len=1
1644347803.522035: WPS: attr type=0x1047 len=16
1644347803.522056: WPS: attr type=0x1021 len=3
1644347803.522077: WPS: attr type=0x1023 len=4
1644347803.522097: WPS: attr type=0x1024 len=4
1644347803.522118: WPS: attr type=0x1042 len=4
1644347803.522138: WPS: attr type=0x1054 len=8
1644347803.522159: WPS: attr type=0x1011 len=4
1644347803.522180: WPS: attr type=0x1008 len=2
1644347803.522201: WPS: attr type=0x103c len=1
1644347803.522222: WPS: attr type=0x1049 len=6
1644347803.522242: WPS: WFA subelement id=0 len=1
1644347803.522264: WPS: attr type=0x104a len=1
1644347803.522284: WPS: attr type=0x1044 len=1
1644347803.522305: WPS: attr type=0x103b len=1
1644347803.522326: WPS: attr type=0x1047 len=16
1644347803.522347: WPS: attr type=0x1021 len=3
1644347803.522367: WPS: attr type=0x1023 len=4
1644347803.522388: WPS: attr type=0x1024 len=4
1644347803.522409: WPS: attr type=0x1042 len=4
1644347803.522429: WPS: attr type=0x1054 len=8
1644347803.522450: WPS: attr type=0x1011 len=4
1644347803.522471: WPS: attr type=0x1008 len=2
1644347803.522492: WPS: attr type=0x103c len=1
1644347803.522513: WPS: attr type=0x1049 len=6
1644347803.522534: WPS: WFA subelement id=0 len=1
1644347803.522555: WPS: attr type=0x104a len=1
1644347803.522576: WPS: attr type=0x1044 len=1
1644347803.522597: WPS: attr type=0x103b len=1
1644347803.522618: WPS: attr type=0x1047 len=16
1644347803.522639: WPS: attr type=0x1021 len=3
1644347803.522660: WPS: attr type=0x1023 len=4
1644347803.522680: WPS: attr type=0x1024 len=4
1644347803.522701: WPS: attr type=0x1042 len=4
1644347803.522722: WPS: attr type=0x1054 len=8
1644347803.522742: WPS: attr type=0x1011 len=4
1644347803.522763: WPS: attr type=0x1008 len=2
1644347803.522784: WPS: attr type=0x103c len=1
1644347803.522805: WPS: attr type=0x1049 len=6
1644347803.522825: WPS: WFA subelement id=0 len=1
1644347803.522848: WPS: attr type=0x104a len=1
1644347803.522870: WPS: attr type=0x1044 len=1
1644347803.522891: WPS: attr type=0x103b len=1
1644347803.522912: WPS: attr type=0x1047 len=16
1644347803.522933: WPS: attr type=0x1021 len=3
1644347803.522954: WPS: attr type=0x1023 len=4
1644347803.522975: WPS: attr type=0x1024 len=4
1644347803.523009: WPS: attr type=0x1042 len=4
1644347803.523031: WPS: attr type=0x1054 len=8
1644347803.523052: WPS: attr type=0x1011 len=4
1644347803.523074: WPS: attr type=0x1008 len=2
1644347803.523095: WPS: attr type=0x103c len=1
1644347803.523116: WPS: attr type=0x1049 len=6
1644347803.523137: WPS: WFA subelement id=0 len=1
1644347803.523159: WPS: attr type=0x104a len=1
1644347803.523180: WPS: attr type=0x1044 len=1
1644347803.523201: WPS: attr type=0x103b len=1
1644347803.523222: WPS: attr type=0x1047 len=16
1644347803.523243: WPS: attr type=0x1021 len=3
1644347803.523263: WPS: attr type=0x1023 len=4
1644347803.523284: WPS: attr type=0x1024 len=4
1644347803.523305: WPS: attr type=0x1042 len=4
1644347803.523325: WPS: attr type=0x1054 len=8
1644347803.523346: WPS: attr type=0x1011 len=4
1644347803.523367: WPS: attr type=0x1008 len=2
1644347803.523388: WPS: attr type=0x103c len=1
1644347803.523409: WPS: attr type=0x1049 len=6
1644347803.523430: WPS: WFA subelement id=0 len=1
1644347803.523452: WPS: attr type=0x104a len=1
1644347803.523473: WPS: attr type=0x1044 len=1
1644347803.523494: WPS: attr type=0x103b len=1
1644347803.523514: WPS: attr type=0x1047 len=16
1644347803.523535: WPS: attr type=0x1021 len=3
1644347803.523556: WPS: attr type=0x1023 len=4
1644347803.523577: WPS: attr type=0x1024 len=4
1644347803.523598: WPS: attr type=0x1042 len=4
1644347803.523619: WPS: attr type=0x1054 len=8
1644347803.523640: WPS: attr type=0x1011 len=4
1644347803.523661: WPS: attr type=0x1008 len=2
1644347803.523682: WPS: attr type=0x103c len=1
1644347803.523703: WPS: attr type=0x1049 len=6
1644347803.523724: WPS: WFA subelement id=0 len=1
1644347803.523747: WPS: attr type=0x104a len=1
1644347803.523768: WPS: attr type=0x1044 len=1
1644347803.523789: WPS: attr type=0x103b len=1
1644347803.523810: WPS: attr type=0x1047 len=16
1644347803.523832: WPS: attr type=0x1021 len=3
1644347803.523853: WPS: attr type=0x1023 len=4
1644347803.523874: WPS: attr type=0x1024 len=4
1644347803.523894: WPS: attr type=0x1042 len=4
1644347803.523915: WPS: attr type=0x1054 len=8
1644347803.523936: WPS: attr type=0x1011 len=4
1644347803.523957: WPS: attr type=0x1008 len=2
1644347803.523978: WPS: attr type=0x103c len=1
1644347803.523999: WPS: attr type=0x1049 len=6
1644347803.524020: WPS: WFA subelement id=0 len=1
1644347803.524041: WPS: attr type=0x104a len=1
1644347803.524063: WPS: attr type=0x1044 len=1
1644347803.524083: WPS: attr type=0x103b len=1
1644347803.524104: WPS: attr type=0x1047 len=16
1644347803.524125: WPS: attr type=0x1021 len=3
1644347803.524146: WPS: attr type=0x1023 len=4
1644347803.524167: WPS: attr type=0x1024 len=4
1644347803.524188: WPS: attr type=0x1042 len=4
1644347803.524209: WPS: attr type=0x1054 len=8
1644347803.524230: WPS: attr type=0x1011 len=4
1644347803.524251: WPS: attr type=0x1008 len=2
1644347803.524271: WPS: attr type=0x103c len=1
1644347803.524292: WPS: attr type=0x1049 len=6
1644347803.524313: WPS: WFA subelement id=0 len=1
1644347803.524334: WPS: attr type=0x104a len=1
1644347803.524356: WPS: attr type=0x1044 len=1
1644347803.524376: WPS: attr type=0x103b len=1
1644347803.524397: WPS: attr type=0x1047 len=16
1644347803.524418: WPS: attr type=0x1021 len=3
1644347803.524439: WPS: attr type=0x1023 len=4
1644347803.524460: WPS: attr type=0x1024 len=4
1644347803.524481: WPS: attr type=0x1042 len=4
1644347803.524501: WPS: attr type=0x1054 len=8
1644347803.524522: WPS: attr type=0x1011 len=4
1644347803.524543: WPS: attr type=0x1008 len=2
1644347803.524564: WPS: attr type=0x103c len=1
1644347803.524585: WPS: attr type=0x1049 len=6
1644347803.524606: WPS: WFA subelement id=0 len=1
1644347803.524628: WPS: attr type=0x104a len=1
1644347803.524650: WPS: attr type=0x1044 len=1
1644347803.524671: WPS: attr type=0x103b len=1
1644347803.524692: WPS: attr type=0x1047 len=16
1644347803.524713: WPS: attr type=0x1021 len=3
1644347803.524734: WPS: attr type=0x1023 len=4
1644347803.524755: WPS: attr type=0x1024 len=4
1644347803.524789: WPS: attr type=0x1042 len=4
1644347803.524810: WPS: attr type=0x1054 len=8
1644347803.524844: WPS: attr type=0x1011 len=4
1644347803.524866: WPS: attr type=0x1008 len=2
1644347803.524888: WPS: attr type=0x103c len=1
1644347803.524909: WPS: attr type=0x1049 len=6
1644347803.524929: WPS: WFA subelement id=0 len=1
1644347803.524951: WPS: attr type=0x104a len=1
1644347803.524972: WPS: attr type=0x1044 len=1
1644347803.524993: WPS: attr type=0x103b len=1
1644347803.525014: WPS: attr type=0x1047 len=16
1644347803.525035: WPS: attr type=0x1021 len=3
1644347803.525056: WPS: attr type=0x1023 len=4
1644347803.525076: WPS: attr type=0x1024 len=4
1644347803.525097: WPS: attr type=0x1042 len=4
1644347803.525126: WPS: attr type=0x1054 len=8
1644347803.525157: WPS: attr type=0x1011 len=4
1644347803.525177: WPS: attr type=0x1008 len=2
1644347803.525198: WPS: attr type=0x103c len=1
1644347803.525219: WPS: attr type=0x1049 len=6
1644347803.525240: WPS: WFA subelement id=0 len=1
1644347803.525261: WPS: attr type=0x104a len=1
1644347803.525282: WPS: attr type=0x1044 len=1
1644347803.525303: WPS: attr type=0x103b len=1
1644347803.525323: WPS: attr type=0x1047 len=16
1644347803.525344: WPS: attr type=0x1021 len=3
1644347803.525365: WPS: attr type=0x1023 len=4
1644347803.525386: WPS: attr type=0x1024 len=4
1644347803.525406: WPS: attr type=0x1042 len=4
1644347803.525427: WPS: attr type=0x1054 len=8
1644347803.525448: WPS: attr type=0x1011 len=4
1644347803.525469: WPS: attr type=0x1008 len=2
1644347803.525490: WPS: attr type=0x103c len=1
1644347803.525510: WPS: attr type=0x1049 len=6
1644347803.525531: WPS: WFA subelement id=0 len=1
1644347803.525554: WPS: attr type=0x104a len=1
1644347803.525575: WPS: attr type=0x1044 len=1
1644347803.525596: WPS: attr type=0x103b len=1
1644347803.525616: WPS: attr type=0x1047 len=16
1644347803.525637: WPS: attr type=0x1021 len=3
1644347803.525657: WPS: attr type=0x1023 len=4
1644347803.525678: WPS: attr type=0x1024 len=4
1644347803.525698: WPS: attr type=0x1042 len=4
1644347803.525719: WPS: attr type=0x1054 len=8
1644347803.525739: WPS: attr type=0x1011 len=4
1644347803.525760: WPS: attr type=0x1008 len=2
1644347803.525781: WPS: attr type=0x103c len=1
1644347803.525802: WPS: attr type=0x1049 len=6
1644347803.525822: WPS: WFA subelement id=0 len=1
1644347803.525843: WPS: attr type=0x104a len=1
1644347803.525865: WPS: attr type=0x1044 len=1
1644347803.525885: WPS: attr type=0x103b len=1
1644347803.525906: WPS: attr type=0x1047 len=16
1644347803.525927: WPS: attr type=0x1021 len=3
1644347803.525948: WPS: attr type=0x1023 len=4
1644347803.525969: WPS: attr type=0x1024 len=4
1644347803.525989: WPS: attr type=0x1042 len=4
1644347803.526010: WPS: attr type=0x1054 len=8
1644347803.526031: WPS: attr type=0x1011 len=4
1644347803.526051: WPS: attr type=0x1008 len=2
1644347803.526072: WPS: attr type=0x103c len=1
1644347803.526093: WPS: attr type=0x1049 len=6
1644347803.526113: WPS: WFA subelement id=0 len=1
1644347803.526135: WPS: attr type=0x104a len=1
1644347803.526156: WPS: attr type=0x1044 len=1
1644347803.526177: WPS: attr type=0x103b len=1
1644347803.526197: WPS: attr type=0x1047 len=16
1644347803.526218: WPS: attr type=0x1021 len=3
1644347803.526239: WPS: attr type=0x1023 len=4
1644347803.526260: WPS: attr type=0x1024 len=4
1644347803.526281: WPS: attr type=0x1042 len=4
1644347803.526301: WPS: attr type=0x1054 len=8
1644347803.526322: WPS: attr type=0x1011 len=4
1644347803.526343: WPS: attr type=0x1008 len=2
1644347803.526364: WPS: attr type=0x103c len=1
1644347803.526384: WPS: attr type=0x1049 len=6
1644347803.526405: WPS: WFA subelement id=0 len=1
1644347803.526428: WPS: attr type=0x104a len=1
1644347803.526449: WPS: attr type=0x1044 len=1
1644347803.526470: WPS: attr type=0x103b len=1
1644347803.526491: WPS: attr type=0x1047 len=16
1644347803.526512: WPS: attr type=0x1021 len=3
1644347803.526532: WPS: attr type=0x1023 len=4
1644347803.526553: WPS: attr type=0x1024 len=4
1644347803.526574: WPS: attr type=0x1042 len=4
1644347803.526595: WPS: attr type=0x1054 len=8
1644347803.526616: WPS: attr type=0x1011 len=4
1644347803.526636: WPS: attr type=0x1008 len=2
1644347803.526657: WPS: attr type=0x103c len=1
1644347803.526690: WPS: attr type=0x1049 len=6
1644347803.526713: WPS: WFA subelement id=0 len=1
1644347803.526734: WPS: attr type=0x104a len=1
1644347803.526756: WPS: attr type=0x1044 len=1
1644347803.526777: WPS: attr type=0x103b len=1
1644347803.526798: WPS: attr type=0x1047 len=16
1644347803.526819: WPS: attr type=0x1021 len=3
1644347803.526840: WPS: attr type=0x1023 len=4
1644347803.526860: WPS: attr type=0x1024 len=4
1644347803.526881: WPS: attr type=0x1042 len=4
1644347803.526902: WPS: attr type=0x1054 len=8
1644347803.526923: WPS: attr type=0x1011 len=4
1644347803.526944: WPS: attr type=0x1008 len=2
1644347803.526964: WPS: attr type=0x103c len=1
1644347803.526985: WPS: attr type=0x1049 len=6
1644347803.527006: WPS: WFA subelement id=0 len=1
1644347803.527027: WPS: attr type=0x104a len=1
1644347803.527048: WPS: attr type=0x1044 len=1
1644347803.527069: WPS: attr type=0x103b len=1
1644347803.527090: WPS: attr type=0x1047 len=16
1644347803.527111: WPS: attr type=0x1021 len=3
1644347803.527131: WPS: attr type=0x1023 len=4
1644347803.527152: WPS: attr type=0x1024 len=4
1644347803.527172: WPS: attr type=0x1042 len=4
1644347803.527193: WPS: attr type=0x1054 len=8
1644347803.527214: WPS: attr type=0x1011 len=4
1644347803.527235: WPS: attr type=0x1008 len=2
1644347803.527256: WPS: attr type=0x103c len=1
1644347803.527277: WPS: attr type=0x1049 len=6
1644347803.527298: WPS: WFA subelement id=0 len=1
1644347803.527320: WPS: attr type=0x104a len=1
1644347803.527341: WPS: attr type=0x1044 len=1
1644347803.527362: WPS: attr type=0x103b len=1
1644347803.527383: WPS: attr type=0x1047 len=16
1644347803.527404: WPS: attr type=0x1021 len=3
1644347803.527424: WPS: attr type=0x1023 len=4
1644347803.527445: WPS: attr type=0x1024 len=4
1644347803.527466: WPS: attr type=0x1042 len=4
1644347803.527487: WPS: attr type=0x1054 len=8
1644347803.527508: WPS: attr type=0x1011 len=4
1644347803.527529: WPS: attr type=0x1008 len=2
1644347803.527550: WPS: attr type=0x103c len=1
1644347803.527571: WPS: attr type=0x1049 len=6
1644347803.527592: WPS: WFA subelement id=0 len=1
1644347803.527613: WPS: attr type=0x104a len=1
1644347803.527634: WPS: attr type=0x1044 len=1
1644347803.527655: WPS: attr type=0x103b len=1
1644347803.527675: WPS: attr type=0x1047 len=16
1644347803.527696: WPS: attr type=0x1021 len=3
1644347803.527716: WPS: attr type=0x1023 len=4
1644347803.527737: WPS: attr type=0x1024 len=4
1644347803.527757: WPS: attr type=0x1042 len=4
1644347803.527778: WPS: attr type=0x1054 len=8
1644347803.527798: WPS: attr type=0x1011 len=4
1644347803.527819: WPS: attr type=0x1008 len=2
1644347803.527840: WPS: attr type=0x103c len=1
1644347803.527861: WPS: attr type=0x1049 len=6
1644347803.527882: WPS: WFA subelement id=0 len=1
1644347803.527903: WPS: attr type=0x104a len=1
1644347803.527924: WPS: attr type=0x1044 len=1
1644347803.527945: WPS: attr type=0x103b len=1
1644347803.527966: WPS: attr type=0x1047 len=16
1644347803.527986: WPS: attr type=0x1021 len=3
1644347803.528007: WPS: attr type=0x1023 len=4
1644347803.528028: WPS: attr type=0x1024 len=4
1644347803.528049: WPS: attr type=0x1042 len=4
1644347803.528069: WPS: attr type=0x1054 len=8
1644347803.528090: WPS: attr type=0x1011 len=4
1644347803.528111: WPS: attr type=0x1008 len=2
1644347803.528132: WPS: attr type=0x103c len=1
1644347803.528153: WPS: attr type=0x1049 len=6
1644347803.528174: WPS: WFA subelement id=0 len=1
1644347803.528229: WPS: attr type=0x104a len=1
1644347803.528256: WPS: attr type=0x1044 len=1
1644347803.528277: WPS: attr type=0x103b len=1
1644347803.528299: WPS: attr type=0x1047 len=16
1644347803.528320: WPS: attr type=0x1021 len=3
1644347803.528341: WPS: attr type=0x1023 len=4
1644347803.528363: WPS: attr type=0x1024 len=4
1644347803.528384: WPS: attr type=0x1042 len=4
1644347803.528405: WPS: attr type=0x1054 len=8
1644347803.528426: WPS: attr type=0x1011 len=4
1644347803.528447: WPS: attr type=0x1008 len=2
1644347803.528468: WPS: attr type=0x103c len=1
1644347803.528489: WPS: attr type=0x1049 len=6
1644347803.528510: WPS: WFA subelement id=0 len=1
1644347803.528532: WPS: attr type=0x104a len=1
1644347803.528568: WPS: attr type=0x1044 len=1
1644347803.528590: WPS: attr type=0x103b len=1
1644347803.528611: WPS: attr type=0x1047 len=16
1644347803.528632: WPS: attr type=0x1021 len=3
1644347803.528653: WPS: attr type=0x1023 len=4
1644347803.528674: WPS: attr type=0x1024 len=4
1644347803.528696: WPS: attr type=0x1042 len=4
1644347803.528717: WPS: attr type=0x1054 len=8
1644347803.528738: WPS: attr type=0x1011 len=4
1644347803.528759: WPS: attr type=0x1008 len=2
1644347803.528791: WPS: attr type=0x103c len=1
1644347803.528812: WPS: attr type=0x1049 len=6
1644347803.528833: WPS: WFA subelement id=0 len=1
1644347803.528855: WPS: attr type=0x104a len=1
1644347803.528876: WPS: attr type=0x1044 len=1
1644347803.528897: WPS: attr type=0x103b len=1
1644347803.528918: WPS: attr type=0x1047 len=16
1644347803.528938: WPS: attr type=0x1021 len=3
1644347803.528959: WPS: attr type=0x1023 len=4
1644347803.528980: WPS: attr type=0x1024 len=4
1644347803.529001: WPS: attr type=0x1042 len=4
1644347803.529022: WPS: attr type=0x1054 len=8
1644347803.529042: WPS: attr type=0x1011 len=4
1644347803.529063: WPS: attr type=0x1008 len=2
1644347803.529084: WPS: attr type=0x103c len=1
1644347803.529105: WPS: attr type=0x1049 len=6
1644347803.529126: WPS: WFA subelement id=0 len=1
1644347803.529150: WPS: attr type=0x104a len=1
1644347803.529172: WPS: attr type=0x1044 len=1
1644347803.529193: WPS: attr type=0x103b len=1
1644347803.529214: WPS: attr type=0x1047 len=16
1644347803.529235: WPS: attr type=0x1021 len=3
1644347803.529256: WPS: attr type=0x1023 len=4
1644347803.529277: WPS: attr type=0x1024 len=4
1644347803.529298: WPS: attr type=0x1042 len=4
1644347803.529319: WPS: attr type=0x1054 len=8
1644347803.529340: WPS: attr type=0x1011 len=4
1644347803.529361: WPS: attr type=0x1008 len=2
1644347803.529382: WPS: attr type=0x103c len=1
1644347803.529403: WPS: attr type=0x1049 len=6
1644347803.529424: WPS: WFA subelement id=0 len=1
1644347803.529445: WPS: attr type=0x104a len=1
1644347803.529466: WPS: attr type=0x1044 len=1
1644347803.529487: WPS: attr type=0x103b len=1
1644347803.529508: WPS: attr type=0x1047 len=16
1644347803.529529: WPS: attr type=0x1021 len=3
1644347803.529550: WPS: attr type=0x1023 len=4
1644347803.529571: WPS: attr type=0x1024 len=4
1644347803.529592: WPS: attr type=0x1042 len=4
1644347803.529613: WPS: attr type=0x1054 len=8
1644347803.529634: WPS: attr type=0x1011 len=4
1644347803.529654: WPS: attr type=0x1008 len=2
1644347803.529675: WPS: attr type=0x103c len=1
1644347803.529696: WPS: attr type=0x1049 len=6
1644347803.529717: WPS: WFA subelement id=0 len=1
1644347803.529738: WPS: attr type=0x104a len=1
1644347803.529759: WPS: attr type=0x1044 len=1
1644347803.529780: WPS: attr type=0x103b len=1
1644347803.529801: WPS: attr type=0x1047 len=16
1644347803.529822: WPS: attr type=0x1021 len=3
1644347803.529843: WPS: attr type=0x1023 len=4
1644347803.529864: WPS: attr type=0x1024 len=4
1644347803.529885: WPS: attr type=0x1042 len=4
1644347803.529905: WPS: attr type=0x1054 len=8
1644347803.529926: WPS: attr type=0x1011 len=4
1644347803.529947: WPS: attr type=0x1008 len=2
1644347803.529968: WPS: attr type=0x103c len=1
1644347803.529989: WPS: attr type=0x1049 len=6
1644347803.530009: WPS: WFA subelement id=0 len=1
1644347803.530032: WPS: attr type=0x104a len=1
1644347803.530054: WPS: attr type=0x1044 len=1
1644347803.530075: WPS: attr type=0x103b len=1
1644347803.530096: WPS: attr type=0x1047 len=16
1644347803.530117: WPS: attr type=0x1021 len=3
1644347803.530138: WPS: attr type=0x1023 len=4
1644347803.530159: WPS: attr type=0x1024 len=4
1644347803.530180: WPS: attr type=0x1042 len=4
1644347803.530201: WPS: attr type=0x1054 len=8
1644347803.530222: WPS: attr type=0x1011 len=4
1644347803.530243: WPS: attr type=0x1008 len=2
1644347803.530264: WPS: attr type=0x103c len=1
1644347803.530285: WPS: attr type=0x1049 len=6
1644347803.530306: WPS: WFA subelement id=0 len=1
1644347803.530327: WPS: attr type=0x104a len=1
1644347803.530348: WPS: attr type=0x1044 len=1
1644347803.530370: WPS: attr type=0x103b len=1
1644347803.530402: WPS: attr type=0x1047 len=16
1644347803.530425: WPS: attr type=0x1021 len=3
1644347803.530446: WPS: attr type=0x1023 len=4
1644347803.530467: WPS: attr type=0x1024 len=4
1644347803.530488: WPS: attr type=0x1042 len=4
1644347803.530509: WPS: attr type=0x1054 len=8
1644347803.530530: WPS: attr type=0x1011 len=4
1644347803.530551: WPS: attr type=0x1008 len=2
1644347803.530572: WPS: attr type=0x103c len=1
1644347803.530593: WPS: attr type=0x1049 len=6
1644347803.530614: WPS: WFA subelement id=0 len=1
1644347803.530635: WPS: attr type=0x104a len=1
1644347803.530656: WPS: attr type=0x1044 len=1
1644347803.530677: WPS: attr type=0x103b len=1
1644347803.530698: WPS: attr type=0x1047 len=16
1644347803.530719: WPS: attr type=0x1021 len=3
1644347803.530739: WPS: attr type=0x1023 len=4
1644347803.530760: WPS: attr type=0x1024 len=4
1644347803.530781: WPS: attr type=0x1042 len=4
1644347803.530802: WPS: attr type=0x1054 len=8
1644347803.530823: WPS: attr type=0x1011 len=4
1644347803.530844: WPS: attr type=0x1008 len=2
1644347803.530865: WPS: attr type=0x103c len=1
1644347803.530886: WPS: attr type=0x1049 len=6
1644347803.530907: WPS: WFA subelement id=0 len=1
1644347803.530929: WPS: attr type=0x104a len=1
1644347803.530951: WPS: attr type=0x1044 len=1
1644347803.530972: WPS: attr type=0x103b len=1
1644347803.530993: WPS: attr type=0x1047 len=16
1644347803.531014: WPS: attr type=0x1021 len=3
1644347803.531035: WPS: attr type=0x1023 len=4
1644347803.531056: WPS: attr type=0x1024 len=4
1644347803.531076: WPS: attr type=0x1042 len=4
1644347803.531097: WPS: attr type=0x1054 len=8
1644347803.531118: WPS: attr type=0x1011 len=4
1644347803.531139: WPS: attr type=0x1008 len=2
1644347803.531160: WPS: attr type=0x103c len=1
1644347803.531181: WPS: attr type=0x1049 len=6
1644347803.531201: WPS: WFA subelement id=0 len=1
1644347803.531223: WPS: attr type=0x104a len=1
1644347803.531244: WPS: attr type=0x1044 len=1
1644347803.531265: WPS: attr type=0x103b len=1
1644347803.531286: WPS: attr type=0x1047 len=16
1644347803.531307: WPS: attr type=0x1021 len=3
1644347803.531328: WPS: attr type=0x1023 len=4
1644347803.531349: WPS: attr type=0x1024 len=4
1644347803.531370: WPS: attr type=0x1042 len=4
1644347803.531391: WPS: attr type=0x1054 len=8
1644347803.531411: WPS: attr type=0x1011 len=4
1644347803.531432: WPS: attr type=0x1008 len=2
1644347803.531453: WPS: attr type=0x103c len=1
1644347803.531474: WPS: attr type=0x1049 len=6
1644347803.531495: WPS: WFA subelement id=0 len=1
1644347803.531516: WPS: attr type=0x104a len=1
1644347803.531537: WPS: attr type=0x1044 len=1
1644347803.531558: WPS: attr type=0x103b len=1
1644347803.531579: WPS: attr type=0x1047 len=16
1644347803.531600: WPS: attr type=0x1021 len=3
1644347803.531620: WPS: attr type=0x1023 len=4
1644347803.531641: WPS: attr type=0x1024 len=4
1644347803.531662: WPS: attr type=0x1042 len=4
1644347803.531683: WPS: attr type=0x1054 len=8
1644347803.531704: WPS: attr type=0x1011 len=4
1644347803.531725: WPS: attr type=0x1008 len=2
1644347803.531745: WPS: attr type=0x103c len=1
1644347803.531766: WPS: attr type=0x1049 len=6
1644347803.531787: WPS: WFA subelement id=0 len=1
1644347803.531810: WPS: attr type=0x104a len=1
1644347803.531832: WPS: attr type=0x1044 len=1
1644347803.531853: WPS: attr type=0x103b len=1
1644347803.531874: WPS: attr type=0x1047 len=16
1644347803.531895: WPS: attr type=0x1021 len=3
1644347803.531916: WPS: attr type=0x1023 len=4
1644347803.531937: WPS: attr type=0x1024 len=4
1644347803.531958: WPS: attr type=0x1042 len=4
1644347803.531979: WPS: attr type=0x1054 len=8
1644347803.532000: WPS: attr type=0x1011 len=4
1644347803.532021: WPS: attr type=0x1008 len=2
1644347803.532042: WPS: attr type=0x103c len=1
1644347803.532063: WPS: attr type=0x1049 len=6
1644347803.532083: WPS: WFA subelement id=0 len=1
1644347803.532105: WPS: attr type=0x104a len=1
1644347803.532126: WPS: attr type=0x1044 len=1
1644347803.532147: WPS: attr type=0x103b len=1
1644347803.532168: WPS: attr type=0x1047 len=16
1644347803.532189: WPS: attr type=0x1021 len=3
1644347803.532210: WPS: attr type=0x1023 len=4
1644347803.532243: WPS: attr type=0x1024 len=4
1644347803.532265: WPS: attr type=0x1042 len=4
1644347803.532286: WPS: attr type=0x1054 len=8
1644347803.532307: WPS: attr type=0x1011 len=4
1644347803.532328: WPS: attr type=0x1008 len=2
1644347803.532350: WPS: attr type=0x103c len=1
1644347803.532371: WPS: attr type=0x1049 len=6
1644347803.532392: WPS: WFA subelement id=0 len=1
1644347803.532414: WPS: attr type=0x104a len=1
1644347803.532435: WPS: attr type=0x1044 len=1
1644347803.532456: WPS: attr type=0x103b len=1
1644347803.532477: WPS: attr type=0x1047 len=16
1644347803.532498: WPS: attr type=0x1021 len=3
1644347803.532519: WPS: attr type=0x1023 len=4
1644347803.532540: WPS: attr type=0x1024 len=4
1644347803.532561: WPS: attr type=0x1042 len=4
1644347803.532582: WPS: attr type=0x1054 len=8
1644347803.532602: WPS: attr type=0x1011 len=4
1644347803.532623: WPS: attr type=0x1008 len=2
1644347803.532644: WPS: attr type=0x103c len=1
1644347803.532665: WPS: attr type=0x1049 len=6
1644347803.532686: WPS: WFA subelement id=0 len=1
1644347803.532709: WPS: attr type=0x104a len=1
1644347803.532731: WPS: attr type=0x1044 len=1
1644347803.532752: WPS: attr type=0x103b len=1
1644347803.532781: WPS: attr type=0x1047 len=16
1644347803.532804: WPS: attr type=0x1021 len=3
1644347803.532825: WPS: attr type=0x1023 len=4
1644347803.532846: WPS: attr type=0x1024 len=4
1644347803.532867: WPS: attr type=0x1042 len=4
1644347803.532888: WPS: attr type=0x1054 len=8
1644347803.532909: WPS: attr type=0x1011 len=4
1644347803.532930: WPS: attr type=0x1008 len=2
1644347803.532951: WPS: attr type=0x103c len=1
1644347803.532972: WPS: attr type=0x1049 len=6
1644347803.532993: WPS: WFA subelement id=0 len=1
1644347803.533014: WPS: attr type=0x104a len=1
1644347803.533035: WPS: attr type=0x1044 len=1
1644347803.533056: WPS: attr type=0x103b len=1
1644347803.533077: WPS: attr type=0x1047 len=16
1644347803.533098: WPS: attr type=0x1021 len=3
1644347803.533119: WPS: attr type=0x1023 len=4
1644347803.533140: WPS: attr type=0x1024 len=4
1644347803.533161: WPS: attr type=0x1042 len=4
1644347803.533182: WPS: attr type=0x1054 len=8
1644347803.533203: WPS: attr type=0x1011 len=4
1644347803.533223: WPS: attr type=0x1008 len=2
1644347803.533244: WPS: attr type=0x103c len=1
1644347803.533265: WPS: attr type=0x1049 len=6
1644347803.533286: WPS: WFA subelement id=0 len=1
1644347803.533307: WPS: attr type=0x104a len=1
1644347803.533328: WPS: attr type=0x1044 len=1
1644347803.533349: WPS: attr type=0x103b len=1
1644347803.533370: WPS: attr type=0x1047 len=16
1644347803.533391: WPS: attr type=0x1021 len=3
1644347803.533412: WPS: attr type=0x1023 len=4
1644347803.533432: WPS: attr type=0x1024 len=4
1644347803.533453: WPS: attr type=0x1042 len=4
1644347803.533474: WPS: attr type=0x1054 len=8
1644347803.533495: WPS: attr type=0x1011 len=4
1644347803.533516: WPS: attr type=0x1008 len=2
1644347803.533537: WPS: attr type=0x103c len=1
1644347803.533558: WPS: attr type=0x1049 len=6
1644347803.533578: WPS: WFA subelement id=0 len=1
1644347803.533601: WPS: AP ea:df:70:07:6f:c2 type 0 added
1644347803.533625: WPS: attr type=0x104a len=1
1644347803.533647: WPS: attr type=0x1044 len=1
1644347803.533669: WPS: attr type=0x103b len=1
1644347803.533690: WPS: attr type=0x1047 len=16
1644347803.533711: WPS: attr type=0x1021 len=3
1644347803.533731: WPS: attr type=0x1023 len=4
1644347803.533752: WPS: attr type=0x1024 len=4
1644347803.533773: WPS: attr type=0x1042 len=4
1644347803.533794: WPS: attr type=0x1054 len=8
1644347803.533815: WPS: attr type=0x1011 len=4
1644347803.533836: WPS: attr type=0x1008 len=2
1644347803.533857: WPS: attr type=0x103c len=1
1644347803.533878: WPS: attr type=0x1049 len=6
1644347803.533899: WPS: WFA subelement id=0 len=1
1644347803.533920: WPS: attr type=0x104a len=1
1644347803.533941: WPS: attr type=0x1044 len=1
1644347803.533962: WPS: attr type=0x103b len=1
1644347803.533983: WPS: attr type=0x1047 len=16
1644347803.534003: WPS: attr type=0x1021 len=3
1644347803.534024: WPS: attr type=0x1023 len=4
1644347803.534045: WPS: attr type=0x1024 len=4
1644347803.534083: WPS: attr type=0x1042 len=4
1644347803.534105: WPS: attr type=0x1054 len=8
1644347803.534127: WPS: attr type=0x1011 len=4
1644347803.534148: WPS: attr type=0x1008 len=2
1644347803.534169: WPS: attr type=0x103c len=1
1644347803.534191: WPS: attr type=0x1049 len=6
1644347803.534212: WPS: WFA subelement id=0 len=1
1644347803.534234: WPS: attr type=0x104a len=1
1644347803.534255: WPS: attr type=0x1044 len=1
1644347803.534276: WPS: attr type=0x103b len=1
1644347803.534298: WPS: attr type=0x1047 len=16
1644347803.534319: WPS: attr type=0x1021 len=3
1644347803.534340: WPS: attr type=0x1023 len=4
1644347803.534361: WPS: attr type=0x1024 len=4
1644347803.534382: WPS: attr type=0x1042 len=4
1644347803.534407: WPS: attr type=0x1054 len=8
1644347803.534428: WPS: attr type=0x1011 len=4
1644347803.534449: WPS: attr type=0x1008 len=2
1644347803.534470: WPS: attr type=0x103c len=1
1644347803.534490: WPS: attr type=0x1049 len=6
1644347803.534511: WPS: WFA subelement id=0 len=1
1644347803.534533: WPS: AP e8:df:70:07:6f:c2 type 0 added
1644347803.534558: WPS: attr type=0x104a len=1
1644347803.534580: WPS: attr type=0x1044 len=1
1644347803.534602: WPS: attr type=0x103b len=1
1644347803.534623: WPS: attr type=0x1047 len=16
1644347803.534643: WPS: attr type=0x1021 len=3
1644347803.534664: WPS: attr type=0x1023 len=4
1644347803.534685: WPS: attr type=0x1024 len=4
1644347803.534706: WPS: attr type=0x1042 len=4
1644347803.534727: WPS: attr type=0x1054 len=8
1644347803.534748: WPS: attr type=0x1011 len=4
1644347803.534769: WPS: attr type=0x1008 len=2
1644347803.534790: WPS: attr type=0x103c len=1
1644347803.534811: WPS: attr type=0x1049 len=6
1644347803.534831: WPS: WFA subelement id=0 len=1
1644347803.534853: WPS: attr type=0x104a len=1
1644347803.534874: WPS: attr type=0x1044 len=1
1644347803.534895: WPS: attr type=0x103b len=1
1644347803.534915: WPS: attr type=0x1047 len=16
1644347803.534936: WPS: attr type=0x1021 len=3
1644347803.534957: WPS: attr type=0x1023 len=4
1644347803.534978: WPS: attr type=0x1024 len=4
1644347803.534998: WPS: attr type=0x1042 len=4
1644347803.535019: WPS: attr type=0x1054 len=8
1644347803.535040: WPS: attr type=0x1011 len=4
1644347803.535061: WPS: attr type=0x1008 len=2
1644347803.535082: WPS: attr type=0x103c len=1
1644347803.535102: WPS: attr type=0x1049 len=6
1644347803.535123: WPS: WFA subelement id=0 len=1
1644347803.535144: WPS: attr type=0x104a len=1
1644347803.535165: WPS: attr type=0x1044 len=1
1644347803.535186: WPS: attr type=0x103b len=1
1644347803.535207: WPS: attr type=0x1047 len=16
1644347803.535227: WPS: attr type=0x1021 len=3
1644347803.535248: WPS: attr type=0x1023 len=4
1644347803.535269: WPS: attr type=0x1024 len=4
1644347803.535290: WPS: attr type=0x1042 len=4
1644347803.535310: WPS: attr type=0x1054 len=8
1644347803.535331: WPS: attr type=0x1011 len=4
1644347803.535352: WPS: attr type=0x1008 len=2
1644347803.535373: WPS: attr type=0x103c len=1
1644347803.535394: WPS: attr type=0x1049 len=6
1644347803.535414: WPS: WFA subelement id=0 len=1
1644347803.535438: WPS: AP[0] 2c:91:ab:e0:30:35 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=2
1644347803.535462: WPS: AP[1] 2c:91:ab:e0:30:34 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=2
1644347803.535485: WPS: AP[2] e0:28:6d:7e:94:3c type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=2
1644347803.535508: WPS: AP[3] e0:28:6d:7e:94:3b type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=1
1644347803.535531: WPS: AP[4] cc:ce:1e:65:97:c5 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347803.535553: WPS: AP[5] ce:ce:1e:65:97:c5 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347803.535576: WPS: AP[6] ea:df:70:07:6f:c2 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347803.535599: WPS: AP[7] e8:df:70:07:6f:c2 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347803.535629: wlan1: Radio work 'scan'@0x55a488594650 done in 3.294639 seconds
1644347803.535655: wlan1: radio_work_free('scan'@0x55a488594650): num_active_works --> 0
1644347803.535680: wlan1: Postpone network selection by 1 seconds since all networks are disabled
1644347803.535733: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347803.535963: dbus: org.freedesktop.DBus.Properties.GetAll (/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/6) [s]
1644347803.536065: WPS: attr type=0x104a len=1
1644347803.536092: WPS: attr type=0x1044 len=1
1644347803.536114: WPS: attr type=0x103b len=1
1644347803.536135: WPS: attr type=0x1047 len=16
1644347803.536157: WPS: attr type=0x1021 len=3
1644347803.536178: WPS: attr type=0x1023 len=4
1644347803.536199: WPS: attr type=0x1024 len=4
1644347803.536220: WPS: attr type=0x1042 len=4
1644347803.536241: WPS: attr type=0x1054 len=8
1644347803.536263: WPS: attr type=0x1011 len=4
1644347803.536284: WPS: attr type=0x1008 len=2
1644347803.536305: WPS: attr type=0x103c len=1
1644347803.536326: WPS: attr type=0x1049 len=6
1644347803.536348: WPS: WFA subelement id=0 len=1
1644347803.536370: WPS: attr type=0x104a len=1
1644347803.536391: WPS: attr type=0x1044 len=1
1644347803.536413: WPS: attr type=0x103b len=1
1644347803.536434: WPS: attr type=0x1047 len=16
1644347803.536456: WPS: attr type=0x1021 len=3
1644347803.536477: WPS: attr type=0x1023 len=4
1644347803.536498: WPS: attr type=0x1024 len=4
1644347803.536519: WPS: attr type=0x1042 len=4
1644347803.536541: WPS: attr type=0x1054 len=8
1644347803.536562: WPS: attr type=0x1011 len=4
1644347803.536583: WPS: attr type=0x1008 len=2
1644347803.536604: WPS: attr type=0x103c len=1
1644347803.536626: WPS: attr type=0x1049 len=6
1644347803.536647: WPS: WFA subelement id=0 len=1
1644347803.537560: dbus: org.freedesktop.DBus.Properties.GetAll (/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/7) [s]
1644347803.537653: WPS: attr type=0x104a len=1
1644347803.537679: WPS: attr type=0x1044 len=1
1644347803.537702: WPS: attr type=0x103b len=1
1644347803.537723: WPS: attr type=0x1047 len=16
1644347803.537745: WPS: attr type=0x1021 len=3
1644347803.537767: WPS: attr type=0x1023 len=4
1644347803.537789: WPS: attr type=0x1024 len=4
1644347803.537810: WPS: attr type=0x1042 len=4
1644347803.537831: WPS: attr type=0x1054 len=8
1644347803.537853: WPS: attr type=0x1011 len=4
1644347803.537874: WPS: attr type=0x1008 len=2
1644347803.537896: WPS: attr type=0x103c len=1
1644347803.537917: WPS: attr type=0x1049 len=6
1644347803.537938: WPS: WFA subelement id=0 len=1
1644347803.537961: WPS: attr type=0x104a len=1
1644347803.537982: WPS: attr type=0x1044 len=1
1644347803.538004: WPS: attr type=0x103b len=1
1644347803.538025: WPS: attr type=0x1047 len=16
1644347803.538047: WPS: attr type=0x1021 len=3
1644347803.538068: WPS: attr type=0x1023 len=4
1644347803.538089: WPS: attr type=0x1024 len=4
1644347803.538111: WPS: attr type=0x1042 len=4
1644347803.538132: WPS: attr type=0x1054 len=8
1644347803.538153: WPS: attr type=0x1011 len=4
1644347803.538175: WPS: attr type=0x1008 len=2
1644347803.538196: WPS: attr type=0x103c len=1
1644347803.538217: WPS: attr type=0x1049 len=6
1644347803.538238: WPS: WFA subelement id=0 len=1
1644347803.538371: RTM_NEWLINK: ifi_index=3 ifname=wlan1 wext ifi_family=0 ifi_flags=0x1003 ([UP])
1644347804.536833: wlan1: Try to associate due to network getting re-enabled
1644347804.536932: wlan1: CTRL-EVENT-SSID-REENABLED id=0 ssid="FRITZ!Box 7590 TC"
1644347804.536961: wlan1: Scan results matching the currently selected network
1644347804.537009: wlan1: 0: 2c:91:ab:e0:30:35 freq=5260 level=-47 snr=45 est_throughput=135000
1644347804.537048: wlan1: 1: 2c:91:ab:e0:30:34 freq=2437 level=-30 snr=59 est_throughput=65000
1644347804.537085: wlan1: 2: e0:28:6d:7e:94:3c freq=2437 level=-64 snr=25 est_throughput=65000
1644347804.537124: wlan1: Selecting BSS from priority group 0
1644347804.537164: wlan1: 0: 2c:91:ab:e0:30:35 ssid='FRITZ!Box 7590 TC' wpa_ie_len=0 rsn_ie_len=24 caps=0x1511 level=-47 freq=5260  wps
1644347804.537194: wlan1:    selected based on RSN IE
1644347804.537228: wlan1:    selected BSS 2c:91:ab:e0:30:35 ssid='FRITZ!Box 7590 TC'
1644347804.537268: wlan1: Considering connect request: reassociate: 0  selected: 2c:91:ab:e0:30:35  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid=0x55a488595780  current_ssid=0x55a488595780
1644347804.537341: wlan1: Request association with 2c:91:ab:e0:30:35
1644347804.537371: wlan1: Re-association to the same ESS
1644347804.537402: unknown vendor specific information element ignored (vendor OUI 00:03:7f len=9)
1644347804.537431: unknown vendor specific information element ignored (vendor OUI 00:04:0e len=12)
1644347804.537458: unknown vendor specific information element ignored (vendor OUI 00:03:7f len=7)
1644347804.537486: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=22)
1644347804.537512: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=8)
1644347804.537539: TDLS: TDLS is allowed in the target BSS
1644347804.537564: TDLS: TDLS channel switch allowed in the target BSS
1644347804.537592: wlan1: No ongoing scan/p2p-scan found to abort
1644347804.537624: wlan1: Add radio work 'sme-connect'@0x55a488594650
1644347804.537652: wlan1: First radio work item in the queue - schedule start immediately
1644347804.537694: wlan1: Starting radio work 'sme-connect'@0x55a488594650 after 0.000038 second wait
1644347804.537725: wlan1: WPA: clearing own WPA/RSN IE
1644347804.537752: wlan1: RSN: clearing own RSNXE
1644347804.537781: wlan1: Automatic auth_alg selection: 0x1
1644347804.537808: wlan1: Overriding auth_alg selection: 0x1
1644347804.537836: wlan1: Using SAE auth_alg
1644347804.537860: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x0
1644347804.537886: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347804.537912: RSN: PMKSA cache entry found - PMKID - hexdump(len=16): 6d 66 78 07 9e db f7 8e 6e d2 60 6a 6a 88 a3 11
1644347804.537943: RSN: Trying to use cached PMKSA
1644347804.537972: wlan1: RSN: using IEEE 802.11i/D9.0
1644347804.538002: wlan1: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1026 proto 2
1644347804.538030: wlan1: WPA: Selected mgmt group cipher 32
1644347804.538058: wlan1: WPA: clearing AP WPA IE
1644347804.538085: WPA: set AP RSN IE - hexdump(len=26): 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347804.538121: wlan1: WPA: clearing AP RSNXE
1644347804.538150: wlan1: WPA: AP group 0x10 network profile group 0x18; available group 0x10
1644347804.538177: wlan1: WPA: using GTK CCMP
1644347804.538205: wlan1: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
1644347804.538233: wlan1: WPA: using PTK CCMP
1644347804.538261: wlan1: WPA: AP key_mgmt 0x402 network profile key_mgmt 0x502; available key_mgmt 0x402
1644347804.538287: wlan1: RSN: using KEY_MGMT SAE
1644347804.538317: wlan1: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
1644347804.538344: wlan1: WPA: not using MGMT group cipher
1644347804.538371: 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 6d 66 78 07 9e db f7 8e 6e d2 60 6a 6a 88 a3 11
1644347804.538409: RSN: Set own RSNXE default - hexdump(len=0):
1644347804.538434: PSK (set in config) - hexdump(len=32): [REMOVED]
1644347804.538459: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347804.538486: RRM: Determining whether RRM can be used - device support: 0x10
1644347804.538514: RRM: Adding RRM IE to Association Request
1644347804.538551: Added supported operating classes IE - hexdump(len=19): 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347804.538585: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x400
1644347804.538613: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347804.538640: RSN: PMKSA cache entry found - PMKID - hexdump(len=16): 6d 66 78 07 9e db f7 8e 6e d2 60 6a 6a 88 a3 11
1644347804.538674: wlan1: PMKSA cache entry found - try to use PMKSA caching instead of new SAE authentication
1644347804.538698: WPA: Set PMK based on current PMKSA - hexdump(len=32): [REMOVED]
1644347804.538725: EAPOL: External notification - EAP success=0
1644347804.538775: EAPOL: External notification - EAP fail=0
1644347804.538804: EAPOL: External notification - portControl=Auto
1644347804.538831: wlan1: Cancelling scan request
1644347804.538864: wlan1: SME: Trying to authenticate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347804.538889: EAPOL: External notification - portValid=0
1644347804.538919: wlan1: State: SCANNING -> AUTHENTICATING
1644347804.539041: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
1644347804.539084: wlan1: Determining shared radio frequencies (max len 1)
1644347804.539115: wlan1: Shared frequencies (len=0): completed iteration
1644347804.539144: nl80211: Authenticate (ifindex=3)
1644347804.539188:   * bssid=2c:91:ab:e0:30:35
1644347804.539221:   * freq=5260
1644347804.539249:   * SSID=FRITZ!Box 7590 TC
1644347804.539273:   * IEs - hexdump(len=0): [NULL]
1644347804.539298:   * Auth Type 0
1644347804.542989: nl80211: Authentication request send successfully
1644347804.543093: nl80211: Event message available
1644347804.543136: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan1
1644347804.543164: nl80211: New station 2c:91:ab:e0:30:35
1644347804.544111: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347804.612870: nl80211: Event message available
1644347804.612992: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan1
1644347804.613023: nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347804.613053: nl80211: MLME event frame - hexdump(len=30): b0 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 30 d0 00 00 02 00 00 00
1644347804.613087: nl80211: Authenticate event
1644347804.613117: wlan1: Event AUTH (10) received
1644347804.613152: wlan1: SME: Authentication response: peer=2c:91:ab:e0:30:35 auth_type=0 auth_transaction=2 status_code=0
1644347804.613177: SME: Authentication response IEs - hexdump(len=0): [NULL]
1644347804.613205: SME: Association Request IEs - hexdump(len=79): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 6d 66 78 07 9e db f7 8e 6e d2 60 6a 6a 88 a3 11 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347804.613258: wlan1: Trying to associate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347804.613285: wlan1: State: AUTHENTICATING -> ASSOCIATING
1644347804.613311: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347804.613338: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347804.613477: 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 6d 66 78 07 9e db f7 8e 6e d2 60 6a 6a 88 a3 11
1644347804.613528: wlan1: RSN: clearing own RSNXE
1644347804.613556: nl80211: Associate (ifindex=3)
1644347804.613588:   * bssid=2c:91:ab:e0:30:35
1644347804.613618:   * freq=5260
1644347804.613649:   * SSID=FRITZ!Box 7590 TC
1644347804.613679:   * IEs - hexdump(len=79): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 6d 66 78 07 9e db f7 8e 6e d2 60 6a 6a 88 a3 11 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347804.613728:   * WPA Versions 0x2
1644347804.613756:   * pairwise=0xfac04
1644347804.613783:   * group=0xfac04
1644347804.613809:   * akm=0xfac08
1644347804.613923: nl80211: Association request send successfully
1644347804.648943: nl80211: Event message available
1644347804.649090: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan1
1644347804.649125: nl80211: Delete station 2c:91:ab:e0:30:35
1644347804.651957: nl80211: Event message available
1644347804.652078: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan1
1644347804.652109: nl80211: MLME event 38 (NL80211_CMD_ASSOCIATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347804.652180: nl80211: MLME event frame - hexdump(len=196): 10 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 40 d0 11 15 28 00 00 00 01 08 8c 12 98 24 b0 48 60 6c 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 08 8c fd f0 01 01 02 01 00 dd 18 00 50 f2 04 10 4a 00 01 10 10 3b 00 01 03 10 49 00 06 00 37 2a 00 01 20 dd 07 00 03 7f 05 01 00 01
1644347804.652261: nl80211: Associate event
1644347804.652292: wlan1: Event ASSOC_REJECT (12) received
1644347804.652326: wlan1: CTRL-EVENT-ASSOC-REJECT bssid=2c:91:ab:e0:30:35 status_code=40
1644347804.652504: wlan1: SME: Association with 2c:91:ab:e0:30:35 failed: status code 40
1644347804.652543: wlan1: PMKSA caching attempt rejected - drop PMKSA cache entry and fall back to SAE authentication
1644347804.652573: wlan1: RSN: Cancelling PMKSA caching attempt
1644347804.652601: RSN: Flush PMKSA cache entry for 2c:91:ab:e0:30:35
1644347804.652636: wlan1: PMKSA-CACHE-REMOVED 2c:91:ab:e0:30:35 0
1644347804.652664: nl80211: Delete PMKID for 2c:91:ab:e0:30:35
1644347804.652762: nl80211: NL80211_CMD_DEL_PMKSA failed: -95 (Operation not supported)
1644347804.652857: wlan1: RSN: PMKSA cache entry free_cb: 2c:91:ab:e0:30:35 reason=0
1644347804.652888: RSN: Flush PMKSA cache entry for 2c:91:ab:e0:30:34
1644347804.652938: wlan1: PMKSA-CACHE-REMOVED 2c:91:ab:e0:30:34 0
1644347804.652988: nl80211: Delete PMKID for 2c:91:ab:e0:30:34
1644347804.653125: nl80211: NL80211_CMD_DEL_PMKSA failed: -95 (Operation not supported)
1644347804.653193: wlan1: RSN: PMKSA cache entry free_cb: 2c:91:ab:e0:30:34 reason=0
1644347804.653234: RSN: Flush PMKSA cache entry for e0:28:6d:7e:94:3c
1644347804.653285: wlan1: PMKSA-CACHE-REMOVED e0:28:6d:7e:94:3c 0
1644347804.653329: nl80211: Delete PMKID for e0:28:6d:7e:94:3c
1644347804.653453: nl80211: NL80211_CMD_DEL_PMKSA failed: -95 (Operation not supported)
1644347804.653534: wlan1: RSN: PMKSA cache entry free_cb: e0:28:6d:7e:94:3c reason=0
1644347804.653582: RSN: Flush PMKSA cache entry for e0:28:6d:7e:94:3b
1644347804.653638: wlan1: PMKSA-CACHE-REMOVED e0:28:6d:7e:94:3b 0
1644347804.653689: nl80211: Delete PMKID for e0:28:6d:7e:94:3b
1644347804.653801: nl80211: NL80211_CMD_DEL_PMKSA failed: -95 (Operation not supported)
1644347804.653840: wlan1: RSN: PMKSA cache entry free_cb: e0:28:6d:7e:94:3b reason=0
1644347804.653867: wpa_driver_nl80211_deauthenticate(addr=2c:91:ab:e0:30:35 reason_code=3)
1644347804.653932: wlan1: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
1644347804.653966: wlan1: Radio work 'sme-connect'@0x55a488594650 done in 0.116273 seconds
1644347804.653995: wlan1: radio_work_free('sme-connect'@0x55a488594650): num_active_works --> 0
1644347804.654066: nl80211: Data frame filter flags=0x0
1644347804.654135: nl80211: Failed to open /proc/sys/net/ipv4/conf/wlan1/drop_unicast_in_l2_multicast: Read-only file system
1644347804.654163: nl80211: Failed to set IPv4 unicast in multicast filter
1644347804.654190: wlan1: State: ASSOCIATING -> DISCONNECTED
1644347804.654227: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347804.654254: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347804.654362: EAPOL: External notification - portEnabled=0
1644347804.654401: EAPOL: External notification - portValid=0
1644347804.654429: EAPOL: External notification - EAP success=0
1644347804.654474: wlan1: Considering connect request: reassociate: 0  selected: 2c:91:ab:e0:30:35  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: DISCONNECTED  ssid=0x55a488595780  current_ssid=(nil)
1644347804.654510: wlan1: Request association with 2c:91:ab:e0:30:35
1644347804.654541: wlan1: Re-association to the same ESS
1644347804.654573: unknown vendor specific information element ignored (vendor OUI 00:03:7f len=9)
1644347804.654638: unknown vendor specific information element ignored (vendor OUI 00:04:0e len=12)
1644347804.654668: unknown vendor specific information element ignored (vendor OUI 00:03:7f len=7)
1644347804.654694: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=22)
1644347804.654719: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=8)
1644347804.654745: TDLS: TDLS is allowed in the target BSS
1644347804.654770: TDLS: TDLS channel switch allowed in the target BSS
1644347804.654798: wlan1: No ongoing scan/p2p-scan found to abort
1644347804.654827: wlan1: Add radio work 'sme-connect'@0x55a488596eb0
1644347804.654854: wlan1: First radio work item in the queue - schedule start immediately
1644347804.654903: wlan1: Starting radio work 'sme-connect'@0x55a488596eb0 after 0.000045 second wait
1644347804.654933: wlan1: WPA: clearing own WPA/RSN IE
1644347804.654960: wlan1: RSN: clearing own RSNXE
1644347804.654987: wlan1: Automatic auth_alg selection: 0x1
1644347804.655014: wlan1: Overriding auth_alg selection: 0x1
1644347804.655042: wlan1: Using SAE auth_alg
1644347804.655068: RSN: PMKSA cache search - network_ctx=(nil) try_opportunistic=0 akmp=0x0
1644347804.655096: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347804.655123: RSN: No PMKSA cache entry found
1644347804.655151: wlan1: RSN: using IEEE 802.11i/D9.0
1644347804.655180: wlan1: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1026 proto 2
1644347804.655208: wlan1: WPA: Selected mgmt group cipher 32
1644347804.655234: wlan1: WPA: clearing AP WPA IE
1644347804.655261: WPA: set AP RSN IE - hexdump(len=26): 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347804.655298: wlan1: WPA: clearing AP RSNXE
1644347804.655327: wlan1: WPA: AP group 0x10 network profile group 0x18; available group 0x10
1644347804.655355: wlan1: WPA: using GTK CCMP
1644347804.655384: wlan1: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
1644347804.655411: wlan1: WPA: using PTK CCMP
1644347804.655439: wlan1: WPA: AP key_mgmt 0x402 network profile key_mgmt 0x502; available key_mgmt 0x402
1644347804.655466: wlan1: RSN: using KEY_MGMT SAE
1644347804.655497: wlan1: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
1644347804.655525: wlan1: WPA: not using MGMT group cipher
1644347804.655553: 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
1644347804.655586: RSN: Set own RSNXE default - hexdump(len=0):
1644347804.655613: PSK (set in config) - hexdump(len=32): [REMOVED]
1644347804.655639: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347804.655665: RRM: Determining whether RRM can be used - device support: 0x10
1644347804.655692: RRM: Adding RRM IE to Association Request
1644347804.655731: Added supported operating classes IE - hexdump(len=19): 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347804.655766: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x400
1644347804.655793: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347804.655819: RSN: No PMKSA cache entry found
1644347804.655938: SAE: Selecting supported ECC group 19
1644347804.655974: wlan1: SME: Selected SAE group 19
1644347804.656295: SAE: password - hexdump_ascii(len=20): [REMOVED]
1644347804.656328: SAE: PWE derivation - addr1=c4:85:08:14:a1:b8 addr2=2c:91:ab:e0:30:35
1644347804.656355: SAE: counter = 001
1644347804.656396: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.656435: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.656571: SAE: pwd-seed result 1 found=0xff
1644347804.656598: SAE: counter = 002
1644347804.656628: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.656660: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.656818: SAE: pwd-seed result 0 found=0xff
1644347804.656851: SAE: counter = 003
1644347804.656882: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.656914: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.657067: SAE: pwd-seed result 1 found=0xff
1644347804.657095: SAE: counter = 004
1644347804.657126: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.657159: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.657284: SAE: pwd-seed result 1 found=0xff
1644347804.657311: SAE: counter = 005
1644347804.657341: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.657373: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.657499: SAE: pwd-seed result 0 found=0xff
1644347804.657525: SAE: counter = 006
1644347804.657555: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.657588: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.657713: SAE: pwd-seed result 0 found=0xff
1644347804.657739: SAE: counter = 007
1644347804.657769: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.657801: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.657926: SAE: pwd-seed result 0 found=0xff
1644347804.657953: SAE: counter = 008
1644347804.657983: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.658016: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.658141: SAE: pwd-seed result 1 found=0xff
1644347804.658167: SAE: counter = 009
1644347804.658197: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.658230: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.658355: SAE: pwd-seed result 1 found=0xff
1644347804.658381: SAE: counter = 010
1644347804.658412: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.658444: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.658569: SAE: pwd-seed result 1 found=0xff
1644347804.658596: SAE: counter = 011
1644347804.658626: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.658658: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.658784: SAE: pwd-seed result 1 found=0xff
1644347804.658810: SAE: counter = 012
1644347804.658840: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.658872: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.658997: SAE: pwd-seed result 0 found=0xff
1644347804.659023: SAE: counter = 013
1644347804.659053: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.659085: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.659210: SAE: pwd-seed result 0 found=0xff
1644347804.659236: SAE: counter = 014
1644347804.659267: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.659299: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.659424: SAE: pwd-seed result 1 found=0xff
1644347804.659450: SAE: counter = 015
1644347804.659480: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.659512: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.659637: SAE: pwd-seed result 1 found=0xff
1644347804.659663: SAE: counter = 016
1644347804.659693: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.659725: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.659850: SAE: pwd-seed result 1 found=0xff
1644347804.659876: SAE: counter = 017
1644347804.659906: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.659938: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.660063: SAE: pwd-seed result 0 found=0xff
1644347804.660090: SAE: counter = 018
1644347804.660120: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.660152: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.660276: SAE: pwd-seed result 0 found=0xff
1644347804.660303: SAE: counter = 019
1644347804.660333: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.660365: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.660489: SAE: pwd-seed result 1 found=0xff
1644347804.660516: SAE: counter = 020
1644347804.660546: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.660578: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.660703: SAE: pwd-seed result 1 found=0xff
1644347804.660729: SAE: counter = 021
1644347804.660759: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.660813: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.660941: SAE: pwd-seed result 1 found=0xff
1644347804.660969: SAE: counter = 022
1644347804.660999: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.661050: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.661179: SAE: pwd-seed result 1 found=0xff
1644347804.661206: SAE: counter = 023
1644347804.661237: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.661269: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.661395: SAE: pwd-seed result 1 found=0xff
1644347804.661421: SAE: counter = 024
1644347804.661451: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.661484: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.661609: SAE: pwd-seed result 1 found=0xff
1644347804.661635: SAE: counter = 025
1644347804.661665: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.661698: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.661823: SAE: pwd-seed result 1 found=0xff
1644347804.661849: SAE: counter = 026
1644347804.661879: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.661911: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.662036: SAE: pwd-seed result 0 found=0xff
1644347804.662063: SAE: counter = 027
1644347804.662094: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.662126: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.662251: SAE: pwd-seed result 1 found=0xff
1644347804.662277: SAE: counter = 028
1644347804.662308: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.662340: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.662465: SAE: pwd-seed result 0 found=0xff
1644347804.662492: SAE: counter = 029
1644347804.662522: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.662555: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.662679: SAE: pwd-seed result 0 found=0xff
1644347804.662706: SAE: counter = 030
1644347804.662736: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.662768: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.662894: SAE: pwd-seed result 1 found=0xff
1644347804.662920: SAE: counter = 031
1644347804.662951: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.662983: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.663108: SAE: pwd-seed result 0 found=0xff
1644347804.663134: SAE: counter = 032
1644347804.663165: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.663197: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.663322: SAE: pwd-seed result 0 found=0xff
1644347804.663349: SAE: counter = 033
1644347804.663379: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.663412: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.663537: SAE: pwd-seed result 0 found=0xff
1644347804.663563: SAE: counter = 034
1644347804.663594: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.663627: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.663752: SAE: pwd-seed result 0 found=0xff
1644347804.663778: SAE: counter = 035
1644347804.663809: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.663841: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.663967: SAE: pwd-seed result 0 found=0xff
1644347804.663993: SAE: counter = 036
1644347804.664023: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.664056: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.664181: SAE: pwd-seed result 1 found=0xff
1644347804.664207: SAE: counter = 037
1644347804.664237: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.664270: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.664394: SAE: pwd-seed result 1 found=0xff
1644347804.664421: SAE: counter = 038
1644347804.664451: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.664484: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.664609: SAE: pwd-seed result 0 found=0xff
1644347804.664635: SAE: counter = 039
1644347804.664665: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.664698: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.664852: SAE: pwd-seed result 0 found=0xff
1644347804.664885: SAE: counter = 040
1644347804.664917: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347804.664949: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347804.665078: SAE: pwd-seed result 0 found=0xff
1644347804.665187: SAE: PWE - hexdump(len=64): [REMOVED]
1644347804.665473: SAE: own commit-scalar - hexdump(len=32): 06 d0 3c ff b4 11 1b 8d 9d f3 e6 d8 64 e0 c0 e2 1c 9c a3 e1 9f 44 73 8e a5 e9 bf c0 51 07 f1 ce
1644347804.665546: SAE: own commit-element(x) - hexdump(len=32): 0e 98 b9 e5 10 2b e7 22 f4 5f 41 4a c5 d3 e7 e5 61 66 7f fb 99 8c 8c 69 43 97 44 4e 6e 2b 2a 6d
1644347804.665578: SAE: own commit-element(y) - hexdump(len=32): 8c 14 1b 5c 74 a7 d3 57 57 9f 4e 08 4c 0d 48 9e 8a 4f 10 60 ad 32 74 d0 72 c9 34 30 82 cd 9c 05
1644347804.665609: EAPOL: External notification - EAP success=0
1644347804.665633: EAPOL: External notification - EAP fail=0
1644347804.665655: EAPOL: External notification - portControl=Auto
1644347804.665681: wlan1: Cancelling scan request
1644347804.665710: wlan1: SME: Trying to authenticate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347804.665733: EAPOL: External notification - portValid=0
1644347804.665758: wlan1: State: DISCONNECTED -> AUTHENTICATING
1644347804.665850: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
1644347804.665883: wlan1: Determining shared radio frequencies (max len 1)
1644347804.665908: wlan1: Shared frequencies (len=0): completed iteration
1644347804.665931: nl80211: Authenticate (ifindex=3)
1644347804.665971:   * bssid=2c:91:ab:e0:30:35
1644347804.665997:   * freq=5260
1644347804.666019:   * SSID=FRITZ!Box 7590 TC
1644347804.666041:   * IEs - hexdump(len=0): [NULL]
1644347804.666063:   * auth_data - hexdump(len=102): 01 00 00 00 13 00 06 d0 3c ff b4 11 1b 8d 9d f3 e6 d8 64 e0 c0 e2 1c 9c a3 e1 9f 44 73 8e a5 e9 bf c0 51 07 f1 ce 0e 98 b9 e5 10 2b e7 22 f4 5f 41 4a c5 d3 e7 e5 61 66 7f fb 99 8c 8c 69 43 97 44 4e 6e 2b 2a 6d 8c 14 1b 5c 74 a7 d3 57 57 9f 4e 08 4c 0d 48 9e 8a 4f 10 60 ad 32 74 d0 72 c9 34 30 82 cd 9c 05
1644347804.666110:   * Auth Type 4
1644347804.669628: nl80211: Authentication request send successfully
1644347804.669713: nl80211: Event message available
1644347804.669757: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan1
1644347804.669788: nl80211: Ignore connect event (cmd=46) when using userspace SME
1644347804.669831: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347804.670018: nl80211: Event message available
1644347804.670070: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan1
1644347804.670102: nl80211: New station 2c:91:ab:e0:30:35
1644347804.990705: nl80211: Event message available
1644347804.990835: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan1
1644347804.990868: nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347804.990902: nl80211: MLME event frame - hexdump(len=128): b0 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 50 d0 03 00 01 00 00 00 13 00 22 49 19 48 f8 45 ed ad f3 2c c4 0a d2 b2 d7 8a 12 33 e6 a8 16 3d b8 22 06 93 e0 5f 1e 41 b3 95 a2 6d 3a d3 83 7f 5a 64 fc 2f a3 34 a0 46 c3 74 0d 20 b3 b2 b6 8a ba 2f 28 c3 6d 02 04 ae fd d5 11 fc 0f 29 f1 2b e9 37 35 5a ff 97 81 47 49 8f a2 86 bc 2a 25 48 64 d4 5e 81 c5 92 27 61 dc a9
1644347804.990959: nl80211: Authenticate event
1644347804.990993: wlan1: Event AUTH (10) received
1644347804.991027: wlan1: SME: Authentication response: peer=2c:91:ab:e0:30:35 auth_type=3 auth_transaction=1 status_code=0
1644347804.991053: SME: Authentication response IEs - hexdump(len=98): 13 00 22 49 19 48 f8 45 ed ad f3 2c c4 0a d2 b2 d7 8a 12 33 e6 a8 16 3d b8 22 06 93 e0 5f 1e 41 b3 95 a2 6d 3a d3 83 7f 5a 64 fc 2f a3 34 a0 46 c3 74 0d 20 b3 b2 b6 8a ba 2f 28 c3 6d 02 04 ae fd d5 11 fc 0f 29 f1 2b e9 37 35 5a ff 97 81 47 49 8f a2 86 bc 2a 25 48 64 d4 5e 81 c5 92 27 61 dc a9
1644347804.991107: wlan1: SME: SAE authentication transaction 1 status code 0
1644347804.991135: wlan1: SME SAE commit
1644347804.991166: SAE: Peer commit-scalar - hexdump(len=32): 22 49 19 48 f8 45 ed ad f3 2c c4 0a d2 b2 d7 8a 12 33 e6 a8 16 3d b8 22 06 93 e0 5f 1e 41 b3 95
1644347804.991205: SAE: Peer commit-element(x) - hexdump(len=32): a2 6d 3a d3 83 7f 5a 64 fc 2f a3 34 a0 46 c3 74 0d 20 b3 b2 b6 8a ba 2f 28 c3 6d 02 04 ae fd d5
1644347804.991281: SAE: Peer commit-element(y) - hexdump(len=32): 11 fc 0f 29 f1 2b e9 37 35 5a ff 97 81 47 49 8f a2 86 bc 2a 25 48 64 d4 5e 81 c5 92 27 61 dc a9
1644347804.991338: SAE: Possible elements at the end of the frame - hexdump(len=0):
1644347804.991838: SAE: k - hexdump(len=32): [REMOVED]
1644347804.991870: SAE: salt for keyseed derivation - hexdump(len=32): 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 00 00 00 00 00 00 00
1644347804.991926: SAE: keyseed - hexdump(len=32): [REMOVED]
1644347804.991961: SAE: PMKID - hexdump(len=16): 29 19 56 48 ac 57 09 3b 91 20 aa e3 37 93 98 6c
1644347804.992006: SAE: KCK - hexdump(len=32): [REMOVED]
1644347804.992035: SAE: PMK - hexdump(len=32): [REMOVED]
1644347804.992068: wlan1: Automatic auth_alg selection: 0x1
1644347804.992096: wlan1: Overriding auth_alg selection: 0x1
1644347804.992125: wlan1: Using SAE auth_alg
1644347804.992152: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x0
1644347804.992180: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347804.992208: RSN: No PMKSA cache entry found
1644347804.992236: wlan1: RSN: using IEEE 802.11i/D9.0
1644347804.992267: wlan1: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1026 proto 2
1644347804.992296: wlan1: WPA: Selected mgmt group cipher 32
1644347804.992323: wlan1: WPA: clearing AP WPA IE
1644347804.992351: WPA: set AP RSN IE - hexdump(len=26): 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347804.992387: wlan1: WPA: clearing AP RSNXE
1644347804.992417: wlan1: WPA: AP group 0x10 network profile group 0x18; available group 0x10
1644347804.992445: wlan1: WPA: using GTK CCMP
1644347804.992474: wlan1: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
1644347804.992502: wlan1: WPA: using PTK CCMP
1644347804.992532: wlan1: WPA: AP key_mgmt 0x402 network profile key_mgmt 0x502; available key_mgmt 0x402
1644347804.992561: wlan1: RSN: using KEY_MGMT SAE
1644347804.992591: wlan1: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
1644347804.992617: wlan1: WPA: not using MGMT group cipher
1644347804.992644: 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
1644347804.992679: 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
1644347804.992712: RSN: Set own RSNXE default - hexdump(len=0):
1644347804.992738: PSK (set in config) - hexdump(len=32): [REMOVED]
1644347804.992788: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347804.992822: RRM: Determining whether RRM can be used - device support: 0x10
1644347804.992848: RRM: Adding RRM IE to Association Request
1644347804.992886: Added supported operating classes IE - hexdump(len=19): 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347804.992920: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x400
1644347804.992948: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347804.992975: RSN: No PMKSA cache entry found
1644347804.993053: EAPOL: External notification - EAP success=0
1644347804.993086: EAPOL: External notification - EAP fail=0
1644347804.993112: EAPOL: External notification - portControl=Auto
1644347804.993139: wlan1: Cancelling scan request
1644347804.993173: wlan1: SME: Trying to authenticate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347804.993199: EAPOL: External notification - portValid=0
1644347804.993227: wlan1: State: AUTHENTICATING -> AUTHENTICATING
1644347804.993254: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
1644347804.993285: wlan1: Determining shared radio frequencies (max len 1)
1644347804.993312: wlan1: Shared frequencies (len=0): completed iteration
1644347804.993337: nl80211: Authenticate (ifindex=3)
1644347804.993368:   * bssid=2c:91:ab:e0:30:35
1644347804.993422:   * freq=5260
1644347804.993450:   * SSID=FRITZ!Box 7590 TC
1644347804.993474:   * IEs - hexdump(len=0): [NULL]
1644347804.993501:   * auth_data - hexdump(len=38): 02 00 00 00 01 00 1a fd 69 97 5b a2 f1 48 1a 1a 0a 22 fd c9 d3 5a 8f 00 12 67 7a 4b 26 44 c9 ac b6 b9 a3 5b 01 ae
1644347804.993539:   * Auth Type 4
1644347804.993674: nl80211: Authentication request send successfully
1644347805.107163: nl80211: Event message available
1644347805.107297: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan1
1644347805.107331: nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347805.107361: nl80211: MLME event frame - hexdump(len=64): b0 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 60 d0 03 00 02 00 00 00 00 00 28 c9 b5 b3 5f f0 9d 1e 41 7f 70 20 7a 2c a6 41 93 b3 7c d9 7d a8 92 62 29 e1 56 28 da aa 8c 23
1644347805.107403: nl80211: Authenticate event
1644347805.107434: wlan1: Event AUTH (10) received
1644347805.107469: wlan1: SME: Authentication response: peer=2c:91:ab:e0:30:35 auth_type=3 auth_transaction=2 status_code=0
1644347805.107494: SME: Authentication response IEs - hexdump(len=34): 00 00 28 c9 b5 b3 5f f0 9d 1e 41 7f 70 20 7a 2c a6 41 93 b3 7c d9 7d a8 92 62 29 e1 56 28 da aa 8c 23
1644347805.107534: wlan1: SME: SAE authentication transaction 2 status code 0
1644347805.107561: wlan1: SME SAE confirm
1644347805.107587: SAE: peer-send-confirm 0
1644347805.107693: SME: SAE completed - setting PMK for 4-way handshake
1644347805.107722: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347805.107754: RSN: Added PMKSA cache entry for 2c:91:ab:e0:30:35 network_ctx=0x55a488595780 akmp=0x400
1644347805.107789: wlan1: PMKSA-CACHE-ADDED 2c:91:ab:e0:30:35 0
1644347805.107814: nl80211: Add PMKID for 2c:91:ab:e0:30:35
1644347805.107912: nl80211: NL80211_CMD_SET_PMKSA failed: -95 (Operation not supported)
1644347805.107946: SME: Association Request IEs - hexdump(len=61): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347805.107994: wlan1: Trying to associate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347805.108021: wlan1: State: AUTHENTICATING -> ASSOCIATING
1644347805.108046: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347805.108072: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347805.108207: 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
1644347805.108255: wlan1: RSN: clearing own RSNXE
1644347805.108282: nl80211: Associate (ifindex=3)
1644347805.108315:   * bssid=2c:91:ab:e0:30:35
1644347805.108345:   * freq=5260
1644347805.108375:   * SSID=FRITZ!Box 7590 TC
1644347805.108405:   * IEs - hexdump(len=61): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347805.108448:   * WPA Versions 0x2
1644347805.108474:   * pairwise=0xfac04
1644347805.108500:   * group=0xfac04
1644347805.108529:   * akm=0xfac08
1644347805.108620: nl80211: Association request send successfully
1644347805.132949: nl80211: Event message available
1644347805.133079: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan1
1644347805.133111: nl80211: Delete station 2c:91:ab:e0:30:35
1644347805.135905: nl80211: Event message available
1644347805.136029: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan1
1644347805.136060: nl80211: MLME event 38 (NL80211_CMD_ASSOCIATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347805.136090: nl80211: MLME event frame - hexdump(len=196): 10 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 70 d0 11 15 28 00 0f 24 01 08 8c 12 98 24 b0 48 60 6c 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 08 8c fd f0 01 01 02 01 00 dd 18 00 50 f2 04 10 4a 00 01 10 10 3b 00 01 03 10 49 00 06 00 37 2a 00 01 20 dd 07 00 03 7f 05 01 00 01
1644347805.136207: nl80211: Associate event
1644347805.136242: wlan1: Event ASSOC_REJECT (12) received
1644347805.136276: wlan1: CTRL-EVENT-ASSOC-REJECT bssid=2c:91:ab:e0:30:35 status_code=40
1644347805.136457: wlan1: SME: Association with 2c:91:ab:e0:30:35 failed: status code 40
1644347805.136495: wpa_driver_nl80211_deauthenticate(addr=2c:91:ab:e0:30:35 reason_code=3)
1644347805.136598: wlan1: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
1644347805.136636: wlan1: SME: Deauth request to the driver failed
1644347805.136670: wlan1: Radio work 'sme-connect'@0x55a488596eb0 done in 0.481767 seconds
1644347805.136703: wlan1: radio_work_free('sme-connect'@0x55a488596eb0): num_active_works --> 0
1644347805.136735: BSSID 2c:91:ab:e0:30:35 ignore list count incremented to 3, ignoring for 60 seconds
1644347805.136793: Continuous association failures - consider temporary network disabling
1644347805.136839: wlan1: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="FRITZ!Box 7590 TC" auth_failures=2 duration=20 reason=CONN_FAILED
1644347805.136883: wlan1: Consecutive connection failures: 5 --> request scan in 10000 ms
1644347805.136949: wlan1: Setting scan request: 10.000000 sec
1644347805.137016: wlan1: State: ASSOCIATING -> DISCONNECTED
1644347805.137070: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347805.137118: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347805.137309: nl80211: Event message available
1644347805.137423: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan1
1644347805.137492: nl80211: Ignore connect event (cmd=46) when using userspace SME
1644347805.142432: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347814.482458: dbus: org.freedesktop.DBus.Properties.GetAll (/fi/w1/wpa_supplicant1/Interfaces/1) [s]
1644347815.137801: wlan1: State: DISCONNECTED -> SCANNING
1644347815.137997: Scan SSID - hexdump_ascii(len=17):
     46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54   FRITZ!Box 7590 T
     43                                                C               
1644347815.138076: wlan1: Starting AP scan for wildcard SSID
1644347815.138104: wlan1: Add radio work 'scan'@0x55a4885a1be0
1644347815.138126: wlan1: First radio work item in the queue - schedule start immediately
1644347815.138157: wlan1: Starting radio work 'scan'@0x55a4885a1be0 after 0.000030 second wait
1644347815.138238: wlan1: nl80211: scan request
1644347815.138293: nl80211: Scan SSID FRITZ!Box 7590 TC
1644347815.138314: nl80211: Scan SSID 
1644347815.138331: nl80211: Scan extra IEs - hexdump(len=13): 7f 0b 00 00 00 00 01 00 40 40 00 00 20
1644347815.139753: Scan requested (ret=0) - scan timeout 30 seconds
1644347815.139863: nl80211: Event message available
1644347815.139906: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan1
1644347815.139941: wlan1: nl80211: Scan trigger
1644347815.139971: wlan1: Event SCAN_STARTED (47) received
1644347815.140001: wlan1: Own scan request started a scan in 0.000154 seconds
1644347815.143141: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347816.368539: dbus: fi.w1.wpa_supplicant1.Interface.Disconnect (/fi/w1/wpa_supplicant1/Interfaces/1) []
1644347816.368595: wlan1: Cancelling scan request
1644347816.368621: wlan1: Request to deauthenticate - bssid=00:00:00:00:00:00 pending_bssid=00:00:00:00:00:00 reason=3 (DEAUTH_LEAVING) state=SCANNING
1644347816.368634: TDLS: Tear down peers
1644347816.368683: nl80211: Data frame filter flags=0x0
1644347816.368713: nl80211: Failed to open /proc/sys/net/ipv4/conf/wlan1/drop_unicast_in_l2_multicast: Read-only file system
1644347816.368743: nl80211: Failed to set IPv4 unicast in multicast filter
1644347816.368755: wlan1: State: SCANNING -> DISCONNECTED
1644347816.368843: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347816.368865: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347816.368916: EAPOL: External notification - portEnabled=0
1644347816.368937: EAPOL: External notification - portValid=0
1644347816.368953: EAPOL: External notification - EAP success=0
1644347816.368970: QM: Clear all active DSCP policies
1644347816.368988: wlan1: CTRL-EVENT-DSCP-POLICY clear_all
1644347816.369135: dbus: fi.w1.wpa_supplicant1.Interface.RemoveNetwork (/fi/w1/wpa_supplicant1/Interfaces/1) [o]
1644347816.369165: RSN: Flush PMKSA cache entry for 2c:91:ab:e0:30:35
1644347816.369184: wlan1: PMKSA-CACHE-REMOVED 2c:91:ab:e0:30:35 0
1644347816.369201: nl80211: Delete PMKID for 2c:91:ab:e0:30:35
1644347816.369236: nl80211: NL80211_CMD_DEL_PMKSA failed: -95 (Operation not supported)
1644347816.369256: wlan1: RSN: PMKSA cache entry free_cb: 2c:91:ab:e0:30:35 reason=0
1644347816.369270: wlan1: RSN: removed current PMKSA entry
1644347816.369283: RSN: Clear current PMKSA entry selection
1644347816.369301: wlan1: Request to deauthenticate - bssid=00:00:00:00:00:00 pending_bssid=00:00:00:00:00:00 reason=1 (UNSPECIFIED) state=DISCONNECTED
1644347816.369317: TDLS: Tear down peers
1644347816.369354: nl80211: Data frame filter flags=0x0
1644347816.369386: nl80211: Failed to open /proc/sys/net/ipv4/conf/wlan1/drop_unicast_in_l2_multicast: Read-only file system
1644347816.369404: nl80211: Failed to set IPv4 unicast in multicast filter
1644347816.369419: wlan1: State: DISCONNECTED -> DISCONNECTED
1644347816.369433: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347816.369448: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347816.369468: EAPOL: External notification - portEnabled=0
1644347816.369482: EAPOL: External notification - portValid=0
1644347816.369496: QM: Clear all active DSCP policies
1644347816.369511: wlan1: CTRL-EVENT-DSCP-POLICY clear_all
1644347816.369527: wlan1: Setting scan request: 5.000000 sec
1644347816.369543: dbus: Unregister network object '/fi/w1/wpa_supplicant1/Interfaces/1/Networks/0'
1644347816.369667: dbus: fi.w1.wpa_supplicant1.Interface.Disconnect (/fi/w1/wpa_supplicant1/Interfaces/1) []
1644347816.369733: dbus: org.freedesktop.DBus.Properties.Set (/fi/w1/wpa_supplicant1/Interfaces/1) [ssv]
1644347816.369755: properties_get_or_set: Set(ProcessCredentials)
1644347816.371332: dbus: fi.w1.wpa_supplicant1.Interface.WPS.Start (/fi/w1/wpa_supplicant1/Interfaces/1) [a{sv}]
1644347816.371370: dbus: Register network object '/fi/w1/wpa_supplicant1/Interfaces/1/Networks/0'
1644347816.371466: key_mgmt: 0x200
1644347816.371492: eap methods - hexdump(len=16): 2a 37 00 00 01 00 00 00 00 00 00 00 00 00 00 00
1644347816.371515: identity - hexdump_ascii(len=29):
     57 46 41 2d 53 69 6d 70 6c 65 43 6f 6e 66 69 67   WFA-SimpleConfig
     2d 45 6e 72 6f 6c 6c 65 65 2d 31 2d 30            -Enrollee-1-0   
1644347816.371555: phase1 - hexdump_ascii(len=5):
     70 62 63 3d 31                                    pbc=1           
1644347816.371583: wlan1: WPS-PBC-ACTIVE 
1644347816.371604: wlan1: Rescheduling scan request: 0.000000 sec
1644347816.371662: wlan1: State: DISCONNECTED -> SCANNING
1644347816.371704: wlan1: Starting AP scan for wildcard SSID
1644347816.371718: wlan1: WPS: Scan only frequency 5260 MHz
1644347816.371732: WPS: Building WPS IE for Probe Request
1644347816.371748: WPS:  * Version (hardcoded 0x10)
1644347816.371760: WPS:  * Request Type
1644347816.371769: WPS:  * Config Methods (3148)
1644347816.371777: WPS:  * UUID-E
1644347816.371785: WPS:  * Primary Device Type
1644347816.371794: WPS:  * RF Bands (3)
1644347816.371807: WPS:  * Association State
1644347816.371821: WPS:  * Configuration Error (0)
1644347816.371836: WPS:  * Device Password ID (4)
1644347816.371851: WPS:  * Manufacturer
1644347816.371880: WPS:  * Model Name
1644347816.371896: WPS:  * Model Number
1644347816.371911: WPS:  * Device Name
1644347816.371926: WPS:  * Version2 (0x20)
1644347816.371942: WPS:  * Request to Enroll (1)
1644347816.371963: wlan1: Reject scan trigger since one is already pending
1644347816.371974: wlan1: Failed to initiate AP scan
1644347816.371984: wlan1: State: SCANNING -> DISCONNECTED
1644347816.371993: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347816.372007: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347816.372048: wlan1: Setting scan request: 1.000000 sec
1644347816.372525: dbus: fi.w1.wpa_supplicant1.Interface.WPS.Cancel (/fi/w1/wpa_supplicant1/Interfaces/1) []
1644347816.372546: WPS: Cancel operation - cancel scan
1644347816.372555: wlan1: Cancelling scan request
1644347816.372566: dbus: Unregister network object '/fi/w1/wpa_supplicant1/Interfaces/1/Networks/0'
1644347816.372591: wlan1: WPS-CANCEL 
1644347816.373145: dbus: org.freedesktop.DBus.Properties.Set (/fi/w1/wpa_supplicant1/Interfaces/1) [ssv]
1644347816.373170: properties_get_or_set: Set(BridgeIfname)
1644347816.373210: dbus: org.freedesktop.DBus.Properties.Set (/fi/w1/wpa_supplicant1/Interfaces/1) [ssv]
1644347816.373222: properties_get_or_set: Set(ApScan)
1644347816.373274: dbus: org.freedesktop.DBus.Properties.Set (/fi/w1/wpa_supplicant1/Interfaces/1) [ssv]
1644347816.373288: properties_get_or_set: Set(ApIsolate)
1644347816.373301: ap_isolate=0
1644347816.375619: dbus: fi.w1.wpa_supplicant1.Interface.AddNetwork (/fi/w1/wpa_supplicant1/Interfaces/1) [a{sv}]
1644347816.375656: dbus: Register network object '/fi/w1/wpa_supplicant1/Interfaces/1/Networks/0'
1644347816.375777: wpa_dbus_dict_open_read: start reading a dict entry
1644347816.375793: wpa_dbus_dict_get_entry: dict entry key: psk
1644347816.375805: wpa_dbus_dict_get_entry: dict entry variant content type: s
1644347816.375817: _wpa_dbus_dict_fill_value_from_variant: string value: [omitted]
1644347816.375831: PSK (ASCII passphrase) - hexdump_ascii(len=20): [REMOVED]
1644347816.375844: wpa_dbus_dict_get_entry: dict entry key: scan_ssid
1644347816.375855: wpa_dbus_dict_get_entry: dict entry variant content type: i
1644347816.375874: _wpa_dbus_dict_fill_value_from_variant: int32 value: 1
1644347816.375883: scan_ssid=1 (0x1)
1644347816.375893: wpa_dbus_dict_get_entry: dict entry key: key_mgmt
1644347816.375901: wpa_dbus_dict_get_entry: dict entry variant content type: s
1644347816.375910: _wpa_dbus_dict_fill_value_from_variant: string value: [omitted]
1644347816.375919: key_mgmt: 0x502
1644347816.375928: wpa_dbus_dict_get_entry: dict entry key: bgscan
1644347816.375937: wpa_dbus_dict_get_entry: dict entry variant content type: a
1644347816.375955: _wpa_dbus_dict_entry_get_array: array_type y
1644347816.375969: dbus: byte array contents - hexdump(len=19): [REMOVED]
1644347816.375985: bgscan - hexdump_ascii(len=19):
     73 69 6d 70 6c 65 3a 33 30 3a 2d 37 30 3a 38 36   simple:30:-70:86
     34 30 30                                          400             
1644347816.376010: wpa_dbus_dict_get_entry: dict entry key: ssid
1644347816.376020: wpa_dbus_dict_get_entry: dict entry variant content type: a
1644347816.376030: _wpa_dbus_dict_entry_get_array: array_type y
1644347816.376042: dbus: byte array contents - hexdump(len=17): [REMOVED]
1644347816.376056: ssid - hexdump_ascii(len=17):
     46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54   FRITZ!Box 7590 T
     43                                                C               
1644347816.380985: PSK (from passphrase) - hexdump(len=32): [REMOVED]
1644347816.381002: wpa_dbus_dict_get_entry: dict entry key: auth_alg
1644347816.381013: wpa_dbus_dict_get_entry: dict entry variant content type: s
1644347816.381025: _wpa_dbus_dict_fill_value_from_variant: string value: [omitted]
1644347816.381037: auth_alg: 0x1
1644347816.381750: dbus: fi.w1.wpa_supplicant1.Interface.SelectNetwork (/fi/w1/wpa_supplicant1/Interfaces/1) [o]
1644347816.381789: Fast associate: Old scan results
1644347816.381804: wlan1: Setting scan request: 0.000000 sec
1644347816.381931: wlan1: State: DISCONNECTED -> SCANNING
1644347816.381969: Scan SSID - hexdump_ascii(len=17):
     46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54   FRITZ!Box 7590 T
     43                                                C               
1644347816.381992: wlan1: Starting AP scan for wildcard SSID
1644347816.382003: wlan1: Reject scan trigger since one is already pending
1644347816.382013: wlan1: Failed to initiate AP scan
1644347816.382022: wlan1: State: SCANNING -> DISCONNECTED
1644347816.382031: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347816.382040: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347816.382071: wlan1: Setting scan request: 1.000000 sec
1644347816.387111: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347817.383105: wlan1: State: DISCONNECTED -> SCANNING
1644347817.383208: Scan SSID - hexdump_ascii(len=17):
     46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54   FRITZ!Box 7590 T
     43                                                C               
1644347817.383234: wlan1: Starting AP scan for wildcard SSID
1644347817.383246: wlan1: Reject scan trigger since one is already pending
1644347817.383256: wlan1: Failed to initiate AP scan
1644347817.383265: wlan1: State: SCANNING -> DISCONNECTED
1644347817.383274: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347817.383283: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347817.383339: wlan1: Setting scan request: 1.000000 sec
1644347817.388273: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347818.364460: RTM_NEWLINK: ifi_index=3 ifname=wlan1 wext ifi_family=0 ifi_flags=0x1003 ([UP])
1644347818.364633: nl80211: Event message available
1644347818.364746: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan1
1644347818.364841: wlan1: nl80211: New scan results available
1644347818.364891: nl80211: Scan probed for SSID 'FRITZ!Box 7590 TC'
1644347818.364923: nl80211: Scan probed for SSID ''
1644347818.364968: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 5180 5200 5220 5240 5260 5280 5300 5320 5500 5520 5540 5560 5580 5600 5620 5640 5660 5680 5700 5745 5765 5785 5805 5825
1644347818.365041: wlan1: Event SCAN_RESULTS (3) received
1644347818.365081: wlan1: Scan completed in 3.225080 seconds
1644347818.365267: nl80211: Received scan results (6 BSSes)
1644347818.365359: Sorted scan results
1644347818.365389: 2c:91:ab:e0:30:35 freq=5260 qual=0 noise=-92~ level=-48 snr=44* flags=0xb age=2184 est=135000
1644347818.365419: IEs - hexdump(len=458): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff af 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347818.365595: Beacon IEs - hexdump(len=382): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff 52 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347818.365718: 2c:91:ab:e0:30:34 freq=2437 qual=0 noise=-89~ level=-36 snr=53* flags=0xb age=3032 est=65000
1644347818.365746: IEs - hexdump(len=365): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 15 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347818.365862: Beacon IEs - hexdump(len=289): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 01 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 15 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347818.365959: e0:28:6d:7e:94:3c freq=2437 qual=0 noise=-89~ level=-63 snr=26* flags=0xb age=2992 est=65000
1644347818.365986: IEs - hexdump(len=455): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 05 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fd 67 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c dd 08 8c fd f0 01 01 02 01 00
1644347818.366137: Beacon IEs - hexdump(len=379): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 0a 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fe b5 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c
1644347818.366259: e0:28:6d:7e:94:3b freq=5260 qual=0 noise=-92~ level=-77 snr=15 flags=0xb age=2188 est=60750
1644347818.366287: IEs - hexdump(len=491): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff 51 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347818.366435: Beacon IEs - hexdump(len=415): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff fd 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00
1644347818.366576: ea:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-84 snr=5 flags=0xb age=3220 est=13000
1644347818.366606: IEs - hexdump(len=312): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 0d 6c e1 a2 99 69 66 06 3c 4c d5 04 45 20 1d 8a 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347818.366707: Beacon IEs - hexdump(len=224): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347818.366786: e8:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-86 snr=3 flags=0xb age=3220 est=8666
1644347818.366813: IEs - hexdump(len=300): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 09 e8 5a 0f d4 6d ec 63 ca 08 e8 df 70 07 6f c2 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347818.366911: Beacon IEs - hexdump(len=212): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347818.367005: wlan1: BSS: Start scan result update 6
1644347818.367124: BSS: last_scan_res_used=6/32
1644347818.367157: wlan1: New scan results available (own=1 ext=0)
1644347818.367237: WPS: attr type=0x104a len=1
1644347818.367271: WPS: attr type=0x1044 len=1
1644347818.367299: WPS: attr type=0x103b len=1
1644347818.367327: WPS: attr type=0x1047 len=16
1644347818.367355: WPS: attr type=0x1021 len=3
1644347818.367382: WPS: attr type=0x1023 len=4
1644347818.367410: WPS: attr type=0x1024 len=4
1644347818.367441: WPS: attr type=0x1042 len=4
1644347818.367470: WPS: attr type=0x1054 len=8
1644347818.367497: WPS: attr type=0x1011 len=4
1644347818.367523: WPS: attr type=0x1008 len=2
1644347818.367550: WPS: attr type=0x103c len=1
1644347818.367576: WPS: attr type=0x1049 len=6
1644347818.367603: WPS: WFA subelement id=0 len=1
1644347818.367630: WPS: attr type=0x104a len=1
1644347818.367657: WPS: attr type=0x1044 len=1
1644347818.367683: WPS: attr type=0x103b len=1
1644347818.367712: WPS: attr type=0x1047 len=16
1644347818.367738: WPS: attr type=0x1021 len=3
1644347818.367764: WPS: attr type=0x1023 len=4
1644347818.367790: WPS: attr type=0x1024 len=4
1644347818.367816: WPS: attr type=0x1042 len=4
1644347818.367842: WPS: attr type=0x1054 len=8
1644347818.367868: WPS: attr type=0x1011 len=4
1644347818.367895: WPS: attr type=0x1008 len=2
1644347818.367921: WPS: attr type=0x103c len=1
1644347818.367947: WPS: attr type=0x1049 len=6
1644347818.367973: WPS: WFA subelement id=0 len=1
1644347818.368000: WPS: attr type=0x104a len=1
1644347818.368026: WPS: attr type=0x1044 len=1
1644347818.368052: WPS: attr type=0x103b len=1
1644347818.368078: WPS: attr type=0x1047 len=16
1644347818.368103: WPS: attr type=0x1021 len=3
1644347818.368130: WPS: attr type=0x1023 len=4
1644347818.368154: WPS: attr type=0x1024 len=4
1644347818.368179: WPS: attr type=0x1042 len=4
1644347818.368205: WPS: attr type=0x1054 len=8
1644347818.368231: WPS: attr type=0x1011 len=4
1644347818.368258: WPS: attr type=0x1008 len=2
1644347818.368284: WPS: attr type=0x103c len=1
1644347818.368309: WPS: attr type=0x1049 len=6
1644347818.368334: WPS: WFA subelement id=0 len=1
1644347818.368362: WPS: attr type=0x104a len=1
1644347818.368390: WPS: attr type=0x1044 len=1
1644347818.368415: WPS: attr type=0x103b len=1
1644347818.368440: WPS: attr type=0x1047 len=16
1644347818.368466: WPS: attr type=0x1021 len=3
1644347818.368492: WPS: attr type=0x1023 len=4
1644347818.368518: WPS: attr type=0x1024 len=4
1644347818.368543: WPS: attr type=0x1042 len=4
1644347818.368569: WPS: attr type=0x1054 len=8
1644347818.368595: WPS: attr type=0x1011 len=4
1644347818.368622: WPS: attr type=0x1008 len=2
1644347818.368648: WPS: attr type=0x103c len=1
1644347818.368675: WPS: attr type=0x1049 len=6
1644347818.368701: WPS: WFA subelement id=0 len=1
1644347818.368728: WPS: attr type=0x104a len=1
1644347818.368755: WPS: attr type=0x1044 len=1
1644347818.368805: WPS: attr type=0x103b len=1
1644347818.368834: WPS: attr type=0x1047 len=16
1644347818.368862: WPS: attr type=0x1021 len=3
1644347818.368888: WPS: attr type=0x1023 len=4
1644347818.368914: WPS: attr type=0x1024 len=4
1644347818.368941: WPS: attr type=0x1042 len=4
1644347818.368967: WPS: attr type=0x1054 len=8
1644347818.368992: WPS: attr type=0x1011 len=4
1644347818.369019: WPS: attr type=0x1008 len=2
1644347818.369044: WPS: attr type=0x103c len=1
1644347818.369071: WPS: attr type=0x1049 len=6
1644347818.369097: WPS: WFA subelement id=0 len=1
1644347818.369123: WPS: attr type=0x104a len=1
1644347818.369150: WPS: attr type=0x1044 len=1
1644347818.369176: WPS: attr type=0x103b len=1
1644347818.369202: WPS: attr type=0x1047 len=16
1644347818.369228: WPS: attr type=0x1021 len=3
1644347818.369254: WPS: attr type=0x1023 len=4
1644347818.369303: WPS: attr type=0x1024 len=4
1644347818.369331: WPS: attr type=0x1042 len=4
1644347818.369357: WPS: attr type=0x1054 len=8
1644347818.369382: WPS: attr type=0x1011 len=4
1644347818.369406: WPS: attr type=0x1008 len=2
1644347818.369431: WPS: attr type=0x103c len=1
1644347818.369455: WPS: attr type=0x1049 len=6
1644347818.369480: WPS: WFA subelement id=0 len=1
1644347818.369507: WPS: attr type=0x104a len=1
1644347818.369534: WPS: attr type=0x1044 len=1
1644347818.369562: WPS: attr type=0x103b len=1
1644347818.369589: WPS: attr type=0x1047 len=16
1644347818.369617: WPS: attr type=0x1021 len=3
1644347818.369643: WPS: attr type=0x1023 len=4
1644347818.369669: WPS: attr type=0x1024 len=4
1644347818.369695: WPS: attr type=0x1042 len=4
1644347818.369721: WPS: attr type=0x1054 len=8
1644347818.369746: WPS: attr type=0x1011 len=4
1644347818.369773: WPS: attr type=0x1008 len=2
1644347818.369799: WPS: attr type=0x103c len=1
1644347818.369826: WPS: attr type=0x1049 len=6
1644347818.369853: WPS: WFA subelement id=0 len=1
1644347818.369880: WPS: attr type=0x104a len=1
1644347818.369907: WPS: attr type=0x1044 len=1
1644347818.369933: WPS: attr type=0x103b len=1
1644347818.369959: WPS: attr type=0x1047 len=16
1644347818.369985: WPS: attr type=0x1021 len=3
1644347818.370011: WPS: attr type=0x1023 len=4
1644347818.370036: WPS: attr type=0x1024 len=4
1644347818.370062: WPS: attr type=0x1042 len=4
1644347818.370088: WPS: attr type=0x1054 len=8
1644347818.370113: WPS: attr type=0x1011 len=4
1644347818.370140: WPS: attr type=0x1008 len=2
1644347818.370166: WPS: attr type=0x103c len=1
1644347818.370193: WPS: attr type=0x1049 len=6
1644347818.370218: WPS: WFA subelement id=0 len=1
1644347818.370243: WPS: attr type=0x104a len=1
1644347818.370268: WPS: attr type=0x1044 len=1
1644347818.370294: WPS: attr type=0x103b len=1
1644347818.370319: WPS: attr type=0x1047 len=16
1644347818.370344: WPS: attr type=0x1021 len=3
1644347818.370370: WPS: attr type=0x1023 len=4
1644347818.370395: WPS: attr type=0x1024 len=4
1644347818.370421: WPS: attr type=0x1042 len=4
1644347818.370447: WPS: attr type=0x1054 len=8
1644347818.370473: WPS: attr type=0x1011 len=4
1644347818.370499: WPS: attr type=0x1008 len=2
1644347818.370525: WPS: attr type=0x103c len=1
1644347818.370551: WPS: attr type=0x1049 len=6
1644347818.370577: WPS: WFA subelement id=0 len=1
1644347818.370605: WPS: attr type=0x104a len=1
1644347818.370632: WPS: attr type=0x1044 len=1
1644347818.370659: WPS: attr type=0x103b len=1
1644347818.370684: WPS: attr type=0x1047 len=16
1644347818.370709: WPS: attr type=0x1021 len=3
1644347818.370736: WPS: attr type=0x1023 len=4
1644347818.370761: WPS: attr type=0x1024 len=4
1644347818.370788: WPS: attr type=0x1042 len=4
1644347818.370814: WPS: attr type=0x1054 len=8
1644347818.370838: WPS: attr type=0x1011 len=4
1644347818.370864: WPS: attr type=0x1008 len=2
1644347818.370889: WPS: attr type=0x103c len=1
1644347818.370915: WPS: attr type=0x1049 len=6
1644347818.370941: WPS: WFA subelement id=0 len=1
1644347818.370967: WPS: attr type=0x104a len=1
1644347818.370993: WPS: attr type=0x1044 len=1
1644347818.371019: WPS: attr type=0x103b len=1
1644347818.371045: WPS: attr type=0x1047 len=16
1644347818.371070: WPS: attr type=0x1021 len=3
1644347818.371096: WPS: attr type=0x1023 len=4
1644347818.371121: WPS: attr type=0x1024 len=4
1644347818.371146: WPS: attr type=0x1042 len=4
1644347818.371172: WPS: attr type=0x1054 len=8
1644347818.371198: WPS: attr type=0x1011 len=4
1644347818.371224: WPS: attr type=0x1008 len=2
1644347818.371250: WPS: attr type=0x103c len=1
1644347818.371275: WPS: attr type=0x1049 len=6
1644347818.371301: WPS: WFA subelement id=0 len=1
1644347818.371327: WPS: attr type=0x104a len=1
1644347818.371354: WPS: attr type=0x1044 len=1
1644347818.371379: WPS: attr type=0x103b len=1
1644347818.371404: WPS: attr type=0x1047 len=16
1644347818.371429: WPS: attr type=0x1021 len=3
1644347818.371454: WPS: attr type=0x1023 len=4
1644347818.371479: WPS: attr type=0x1024 len=4
1644347818.371502: WPS: attr type=0x1042 len=4
1644347818.371523: WPS: attr type=0x1054 len=8
1644347818.371558: WPS: attr type=0x1011 len=4
1644347818.371580: WPS: attr type=0x1008 len=2
1644347818.371601: WPS: attr type=0x103c len=1
1644347818.371623: WPS: attr type=0x1049 len=6
1644347818.371644: WPS: WFA subelement id=0 len=1
1644347818.371667: WPS: attr type=0x104a len=1
1644347818.371689: WPS: attr type=0x1044 len=1
1644347818.371710: WPS: attr type=0x103b len=1
1644347818.371731: WPS: attr type=0x1047 len=16
1644347818.371752: WPS: attr type=0x1021 len=3
1644347818.371773: WPS: attr type=0x1023 len=4
1644347818.371794: WPS: attr type=0x1024 len=4
1644347818.371815: WPS: attr type=0x1042 len=4
1644347818.371836: WPS: attr type=0x1054 len=8
1644347818.371857: WPS: attr type=0x1011 len=4
1644347818.371877: WPS: attr type=0x1008 len=2
1644347818.371898: WPS: attr type=0x103c len=1
1644347818.371919: WPS: attr type=0x1049 len=6
1644347818.371940: WPS: WFA subelement id=0 len=1
1644347818.371961: WPS: attr type=0x104a len=1
1644347818.371982: WPS: attr type=0x1044 len=1
1644347818.372003: WPS: attr type=0x103b len=1
1644347818.372024: WPS: attr type=0x1047 len=16
1644347818.372044: WPS: attr type=0x1021 len=3
1644347818.372065: WPS: attr type=0x1023 len=4
1644347818.372086: WPS: attr type=0x1024 len=4
1644347818.372106: WPS: attr type=0x1042 len=4
1644347818.372127: WPS: attr type=0x1054 len=8
1644347818.372148: WPS: attr type=0x1011 len=4
1644347818.372169: WPS: attr type=0x1008 len=2
1644347818.372189: WPS: attr type=0x103c len=1
1644347818.372210: WPS: attr type=0x1049 len=6
1644347818.372231: WPS: WFA subelement id=0 len=1
1644347818.372252: WPS: attr type=0x104a len=1
1644347818.372273: WPS: attr type=0x1044 len=1
1644347818.372294: WPS: attr type=0x103b len=1
1644347818.372314: WPS: attr type=0x1047 len=16
1644347818.372335: WPS: attr type=0x1021 len=3
1644347818.372356: WPS: attr type=0x1023 len=4
1644347818.372377: WPS: attr type=0x1024 len=4
1644347818.372397: WPS: attr type=0x1042 len=4
1644347818.372418: WPS: attr type=0x1054 len=8
1644347818.372439: WPS: attr type=0x1011 len=4
1644347818.372459: WPS: attr type=0x1008 len=2
1644347818.372480: WPS: attr type=0x103c len=1
1644347818.372501: WPS: attr type=0x1049 len=6
1644347818.372522: WPS: WFA subelement id=0 len=1
1644347818.372544: WPS: attr type=0x104a len=1
1644347818.372566: WPS: attr type=0x1044 len=1
1644347818.372587: WPS: attr type=0x103b len=1
1644347818.372607: WPS: attr type=0x1047 len=16
1644347818.372628: WPS: attr type=0x1021 len=3
1644347818.372649: WPS: attr type=0x1023 len=4
1644347818.372670: WPS: attr type=0x1024 len=4
1644347818.372690: WPS: attr type=0x1042 len=4
1644347818.372711: WPS: attr type=0x1054 len=8
1644347818.372732: WPS: attr type=0x1011 len=4
1644347818.372753: WPS: attr type=0x1008 len=2
1644347818.372796: WPS: attr type=0x103c len=1
1644347818.372836: WPS: attr type=0x1049 len=6
1644347818.372858: WPS: WFA subelement id=0 len=1
1644347818.372881: WPS: attr type=0x104a len=1
1644347818.372902: WPS: attr type=0x1044 len=1
1644347818.372923: WPS: attr type=0x103b len=1
1644347818.372944: WPS: attr type=0x1047 len=16
1644347818.372965: WPS: attr type=0x1021 len=3
1644347818.372986: WPS: attr type=0x1023 len=4
1644347818.373007: WPS: attr type=0x1024 len=4
1644347818.373028: WPS: attr type=0x1042 len=4
1644347818.373049: WPS: attr type=0x1054 len=8
1644347818.373071: WPS: attr type=0x1011 len=4
1644347818.373091: WPS: attr type=0x1008 len=2
1644347818.373112: WPS: attr type=0x103c len=1
1644347818.373133: WPS: attr type=0x1049 len=6
1644347818.373154: WPS: WFA subelement id=0 len=1
1644347818.373176: WPS: attr type=0x104a len=1
1644347818.373197: WPS: attr type=0x1044 len=1
1644347818.373218: WPS: attr type=0x103b len=1
1644347818.373239: WPS: attr type=0x1047 len=16
1644347818.373260: WPS: attr type=0x1021 len=3
1644347818.373281: WPS: attr type=0x1023 len=4
1644347818.373302: WPS: attr type=0x1024 len=4
1644347818.373323: WPS: attr type=0x1042 len=4
1644347818.373344: WPS: attr type=0x1054 len=8
1644347818.373365: WPS: attr type=0x1011 len=4
1644347818.373386: WPS: attr type=0x1008 len=2
1644347818.373407: WPS: attr type=0x103c len=1
1644347818.373445: WPS: attr type=0x1049 len=6
1644347818.373466: WPS: WFA subelement id=0 len=1
1644347818.373490: WPS: attr type=0x104a len=1
1644347818.373512: WPS: attr type=0x1044 len=1
1644347818.373533: WPS: attr type=0x103b len=1
1644347818.373554: WPS: attr type=0x1047 len=16
1644347818.373575: WPS: attr type=0x1021 len=3
1644347818.373596: WPS: attr type=0x1023 len=4
1644347818.373617: WPS: attr type=0x1024 len=4
1644347818.373637: WPS: attr type=0x1042 len=4
1644347818.373658: WPS: attr type=0x1054 len=8
1644347818.373679: WPS: attr type=0x1011 len=4
1644347818.373700: WPS: attr type=0x1008 len=2
1644347818.373720: WPS: attr type=0x103c len=1
1644347818.373742: WPS: attr type=0x1049 len=6
1644347818.373763: WPS: WFA subelement id=0 len=1
1644347818.373784: WPS: attr type=0x104a len=1
1644347818.373805: WPS: attr type=0x1044 len=1
1644347818.373827: WPS: attr type=0x103b len=1
1644347818.373848: WPS: attr type=0x1047 len=16
1644347818.373869: WPS: attr type=0x1021 len=3
1644347818.373890: WPS: attr type=0x1023 len=4
1644347818.373911: WPS: attr type=0x1024 len=4
1644347818.373932: WPS: attr type=0x1042 len=4
1644347818.373953: WPS: attr type=0x1054 len=8
1644347818.373974: WPS: attr type=0x1011 len=4
1644347818.373994: WPS: attr type=0x1008 len=2
1644347818.374015: WPS: attr type=0x103c len=1
1644347818.374037: WPS: attr type=0x1049 len=6
1644347818.374058: WPS: WFA subelement id=0 len=1
1644347818.374079: WPS: attr type=0x104a len=1
1644347818.374100: WPS: attr type=0x1044 len=1
1644347818.374121: WPS: attr type=0x103b len=1
1644347818.374142: WPS: attr type=0x1047 len=16
1644347818.374163: WPS: attr type=0x1021 len=3
1644347818.374184: WPS: attr type=0x1023 len=4
1644347818.374205: WPS: attr type=0x1024 len=4
1644347818.374226: WPS: attr type=0x1042 len=4
1644347818.374247: WPS: attr type=0x1054 len=8
1644347818.374268: WPS: attr type=0x1011 len=4
1644347818.374289: WPS: attr type=0x1008 len=2
1644347818.374310: WPS: attr type=0x103c len=1
1644347818.374331: WPS: attr type=0x1049 len=6
1644347818.374352: WPS: WFA subelement id=0 len=1
1644347818.374375: WPS: attr type=0x104a len=1
1644347818.374396: WPS: attr type=0x1044 len=1
1644347818.374418: WPS: attr type=0x103b len=1
1644347818.374439: WPS: attr type=0x1047 len=16
1644347818.374460: WPS: attr type=0x1021 len=3
1644347818.374481: WPS: attr type=0x1023 len=4
1644347818.374501: WPS: attr type=0x1024 len=4
1644347818.374522: WPS: attr type=0x1042 len=4
1644347818.374543: WPS: attr type=0x1054 len=8
1644347818.374564: WPS: attr type=0x1011 len=4
1644347818.374585: WPS: attr type=0x1008 len=2
1644347818.374606: WPS: attr type=0x103c len=1
1644347818.374627: WPS: attr type=0x1049 len=6
1644347818.374649: WPS: WFA subelement id=0 len=1
1644347818.374670: WPS: attr type=0x104a len=1
1644347818.374691: WPS: attr type=0x1044 len=1
1644347818.374712: WPS: attr type=0x103b len=1
1644347818.374733: WPS: attr type=0x1047 len=16
1644347818.374754: WPS: attr type=0x1021 len=3
1644347818.374775: WPS: attr type=0x1023 len=4
1644347818.374796: WPS: attr type=0x1024 len=4
1644347818.374817: WPS: attr type=0x1042 len=4
1644347818.374837: WPS: attr type=0x1054 len=8
1644347818.374858: WPS: attr type=0x1011 len=4
1644347818.374878: WPS: attr type=0x1008 len=2
1644347818.374899: WPS: attr type=0x103c len=1
1644347818.374920: WPS: attr type=0x1049 len=6
1644347818.374941: WPS: WFA subelement id=0 len=1
1644347818.374962: WPS: attr type=0x104a len=1
1644347818.374983: WPS: attr type=0x1044 len=1
1644347818.375004: WPS: attr type=0x103b len=1
1644347818.375025: WPS: attr type=0x1047 len=16
1644347818.375046: WPS: attr type=0x1021 len=3
1644347818.375067: WPS: attr type=0x1023 len=4
1644347818.375087: WPS: attr type=0x1024 len=4
1644347818.375108: WPS: attr type=0x1042 len=4
1644347818.375129: WPS: attr type=0x1054 len=8
1644347818.375150: WPS: attr type=0x1011 len=4
1644347818.375171: WPS: attr type=0x1008 len=2
1644347818.375192: WPS: attr type=0x103c len=1
1644347818.375213: WPS: attr type=0x1049 len=6
1644347818.375233: WPS: WFA subelement id=0 len=1
1644347818.375316: WPS: attr type=0x104a len=1
1644347818.375344: WPS: attr type=0x1044 len=1
1644347818.375366: WPS: attr type=0x103b len=1
1644347818.375388: WPS: attr type=0x1047 len=16
1644347818.375409: WPS: attr type=0x1021 len=3
1644347818.375430: WPS: attr type=0x1023 len=4
1644347818.375451: WPS: attr type=0x1024 len=4
1644347818.375472: WPS: attr type=0x1042 len=4
1644347818.375493: WPS: attr type=0x1054 len=8
1644347818.375514: WPS: attr type=0x1011 len=4
1644347818.375535: WPS: attr type=0x1008 len=2
1644347818.375557: WPS: attr type=0x103c len=1
1644347818.375578: WPS: attr type=0x1049 len=6
1644347818.375599: WPS: WFA subelement id=0 len=1
1644347818.375620: WPS: attr type=0x104a len=1
1644347818.375641: WPS: attr type=0x1044 len=1
1644347818.375663: WPS: attr type=0x103b len=1
1644347818.375684: WPS: attr type=0x1047 len=16
1644347818.375705: WPS: attr type=0x1021 len=3
1644347818.375726: WPS: attr type=0x1023 len=4
1644347818.375749: WPS: attr type=0x1024 len=4
1644347818.375757: WPS: attr type=0x1042 len=4
1644347818.375765: WPS: attr type=0x1054 len=8
1644347818.375773: WPS: attr type=0x1011 len=4
1644347818.375780: WPS: attr type=0x1008 len=2
1644347818.375788: WPS: attr type=0x103c len=1
1644347818.375796: WPS: attr type=0x1049 len=6
1644347818.375804: WPS: WFA subelement id=0 len=1
1644347818.375812: WPS: attr type=0x104a len=1
1644347818.375820: WPS: attr type=0x1044 len=1
1644347818.375828: WPS: attr type=0x103b len=1
1644347818.375836: WPS: attr type=0x1047 len=16
1644347818.375844: WPS: attr type=0x1021 len=3
1644347818.375861: WPS: attr type=0x1023 len=4
1644347818.375870: WPS: attr type=0x1024 len=4
1644347818.375878: WPS: attr type=0x1042 len=4
1644347818.375886: WPS: attr type=0x1054 len=8
1644347818.375894: WPS: attr type=0x1011 len=4
1644347818.375902: WPS: attr type=0x1008 len=2
1644347818.375926: WPS: attr type=0x103c len=1
1644347818.375948: WPS: attr type=0x1049 len=6
1644347818.375969: WPS: WFA subelement id=0 len=1
1644347818.375990: WPS: AP 2c:91:ab:e0:30:35 type 0 added
1644347818.376015: WPS: attr type=0x104a len=1
1644347818.376037: WPS: attr type=0x1044 len=1
1644347818.376059: WPS: attr type=0x103b len=1
1644347818.376080: WPS: attr type=0x1047 len=16
1644347818.376101: WPS: attr type=0x1021 len=3
1644347818.376122: WPS: attr type=0x1023 len=4
1644347818.376144: WPS: attr type=0x1024 len=4
1644347818.376165: WPS: attr type=0x1042 len=4
1644347818.376186: WPS: attr type=0x1054 len=8
1644347818.376207: WPS: attr type=0x1011 len=4
1644347818.376228: WPS: attr type=0x1008 len=2
1644347818.376249: WPS: attr type=0x103c len=1
1644347818.376270: WPS: attr type=0x1049 len=6
1644347818.376291: WPS: WFA subelement id=0 len=1
1644347818.376313: WPS: attr type=0x104a len=1
1644347818.376334: WPS: attr type=0x1044 len=1
1644347818.376356: WPS: attr type=0x103b len=1
1644347818.376377: WPS: attr type=0x1047 len=16
1644347818.376398: WPS: attr type=0x1021 len=3
1644347818.376419: WPS: attr type=0x1023 len=4
1644347818.376440: WPS: attr type=0x1024 len=4
1644347818.376461: WPS: attr type=0x1042 len=4
1644347818.376483: WPS: attr type=0x1054 len=8
1644347818.376504: WPS: attr type=0x1011 len=4
1644347818.376525: WPS: attr type=0x1008 len=2
1644347818.376546: WPS: attr type=0x103c len=1
1644347818.376567: WPS: attr type=0x1049 len=6
1644347818.376588: WPS: WFA subelement id=0 len=1
1644347818.376610: WPS: attr type=0x104a len=1
1644347818.376631: WPS: attr type=0x1044 len=1
1644347818.376652: WPS: attr type=0x103b len=1
1644347818.376673: WPS: attr type=0x1047 len=16
1644347818.376694: WPS: attr type=0x1021 len=3
1644347818.376715: WPS: attr type=0x1023 len=4
1644347818.376736: WPS: attr type=0x1024 len=4
1644347818.376757: WPS: attr type=0x1042 len=4
1644347818.376813: WPS: attr type=0x1054 len=8
1644347818.376835: WPS: attr type=0x1011 len=4
1644347818.376857: WPS: attr type=0x1008 len=2
1644347818.376878: WPS: attr type=0x103c len=1
1644347818.376899: WPS: attr type=0x1049 len=6
1644347818.376920: WPS: WFA subelement id=0 len=1
1644347818.376943: WPS: AP 2c:91:ab:e0:30:34 type 0 added
1644347818.376983: WPS: attr type=0x104a len=1
1644347818.377006: WPS: attr type=0x1044 len=1
1644347818.377028: WPS: attr type=0x103b len=1
1644347818.377049: WPS: attr type=0x1047 len=16
1644347818.377070: WPS: attr type=0x1021 len=3
1644347818.377091: WPS: attr type=0x1023 len=4
1644347818.377112: WPS: attr type=0x1024 len=4
1644347818.377133: WPS: attr type=0x1042 len=4
1644347818.377154: WPS: attr type=0x1054 len=8
1644347818.377175: WPS: attr type=0x1011 len=4
1644347818.377196: WPS: attr type=0x1008 len=2
1644347818.377217: WPS: attr type=0x103c len=1
1644347818.377238: WPS: attr type=0x1049 len=6
1644347818.377259: WPS: WFA subelement id=0 len=1
1644347818.377280: WPS: attr type=0x104a len=1
1644347818.377302: WPS: attr type=0x1044 len=1
1644347818.377323: WPS: attr type=0x103b len=1
1644347818.377344: WPS: attr type=0x1047 len=16
1644347818.377365: WPS: attr type=0x1021 len=3
1644347818.377385: WPS: attr type=0x1023 len=4
1644347818.377406: WPS: attr type=0x1024 len=4
1644347818.377427: WPS: attr type=0x1042 len=4
1644347818.377448: WPS: attr type=0x1054 len=8
1644347818.377469: WPS: attr type=0x1011 len=4
1644347818.377490: WPS: attr type=0x1008 len=2
1644347818.377511: WPS: attr type=0x103c len=1
1644347818.377533: WPS: attr type=0x1049 len=6
1644347818.377554: WPS: WFA subelement id=0 len=1
1644347818.377575: WPS: attr type=0x104a len=1
1644347818.377596: WPS: attr type=0x1044 len=1
1644347818.377617: WPS: attr type=0x103b len=1
1644347818.377638: WPS: attr type=0x1047 len=16
1644347818.377659: WPS: attr type=0x1021 len=3
1644347818.377679: WPS: attr type=0x1023 len=4
1644347818.377700: WPS: attr type=0x1024 len=4
1644347818.377721: WPS: attr type=0x1042 len=4
1644347818.377742: WPS: attr type=0x1054 len=8
1644347818.377763: WPS: attr type=0x1011 len=4
1644347818.377783: WPS: attr type=0x1008 len=2
1644347818.377804: WPS: attr type=0x103c len=1
1644347818.377825: WPS: attr type=0x1049 len=6
1644347818.377846: WPS: WFA subelement id=0 len=1
1644347818.377868: WPS: AP e0:28:6d:7e:94:3c type 0 added
1644347818.377892: WPS: attr type=0x104a len=1
1644347818.377913: WPS: attr type=0x1044 len=1
1644347818.377935: WPS: attr type=0x103b len=1
1644347818.377956: WPS: attr type=0x1047 len=16
1644347818.377977: WPS: attr type=0x1021 len=3
1644347818.377998: WPS: attr type=0x1023 len=4
1644347818.378019: WPS: attr type=0x1024 len=4
1644347818.378040: WPS: attr type=0x1042 len=4
1644347818.378061: WPS: attr type=0x1054 len=8
1644347818.378082: WPS: attr type=0x1011 len=4
1644347818.378102: WPS: attr type=0x1008 len=2
1644347818.378123: WPS: attr type=0x103c len=1
1644347818.378144: WPS: attr type=0x1049 len=6
1644347818.378165: WPS: WFA subelement id=0 len=1
1644347818.378186: WPS: attr type=0x104a len=1
1644347818.378207: WPS: attr type=0x1044 len=1
1644347818.378228: WPS: attr type=0x103b len=1
1644347818.378249: WPS: attr type=0x1047 len=16
1644347818.378270: WPS: attr type=0x1021 len=3
1644347818.378290: WPS: attr type=0x1023 len=4
1644347818.378311: WPS: attr type=0x1024 len=4
1644347818.378332: WPS: attr type=0x1042 len=4
1644347818.378353: WPS: attr type=0x1054 len=8
1644347818.378374: WPS: attr type=0x1011 len=4
1644347818.378395: WPS: attr type=0x1008 len=2
1644347818.378416: WPS: attr type=0x103c len=1
1644347818.378437: WPS: attr type=0x1049 len=6
1644347818.378458: WPS: WFA subelement id=0 len=1
1644347818.378479: WPS: attr type=0x104a len=1
1644347818.378500: WPS: attr type=0x1044 len=1
1644347818.378521: WPS: attr type=0x103b len=1
1644347818.378542: WPS: attr type=0x1047 len=16
1644347818.378564: WPS: attr type=0x1021 len=3
1644347818.378585: WPS: attr type=0x1023 len=4
1644347818.378606: WPS: attr type=0x1024 len=4
1644347818.378627: WPS: attr type=0x1042 len=4
1644347818.378648: WPS: attr type=0x1054 len=8
1644347818.378669: WPS: attr type=0x1011 len=4
1644347818.378690: WPS: attr type=0x1008 len=2
1644347818.378710: WPS: attr type=0x103c len=1
1644347818.378731: WPS: attr type=0x1049 len=6
1644347818.378752: WPS: WFA subelement id=0 len=1
1644347818.378774: WPS: AP e0:28:6d:7e:94:3b type 0 added
1644347818.378810: WPS: attr type=0x104a len=1
1644347818.378833: WPS: attr type=0x1044 len=1
1644347818.378855: WPS: attr type=0x103b len=1
1644347818.378876: WPS: attr type=0x1047 len=16
1644347818.378897: WPS: attr type=0x1021 len=3
1644347818.378918: WPS: attr type=0x1023 len=4
1644347818.378940: WPS: attr type=0x1024 len=4
1644347818.378961: WPS: attr type=0x1042 len=4
1644347818.378982: WPS: attr type=0x1054 len=8
1644347818.379003: WPS: attr type=0x1011 len=4
1644347818.379024: WPS: attr type=0x1008 len=2
1644347818.379045: WPS: attr type=0x103c len=1
1644347818.379066: WPS: attr type=0x1049 len=6
1644347818.379088: WPS: WFA subelement id=0 len=1
1644347818.379109: WPS: attr type=0x104a len=1
1644347818.379131: WPS: attr type=0x1044 len=1
1644347818.379152: WPS: attr type=0x103b len=1
1644347818.379173: WPS: attr type=0x1047 len=16
1644347818.379194: WPS: attr type=0x1021 len=3
1644347818.379214: WPS: attr type=0x1023 len=4
1644347818.379235: WPS: attr type=0x1024 len=4
1644347818.379256: WPS: attr type=0x1042 len=4
1644347818.379277: WPS: attr type=0x1054 len=8
1644347818.379298: WPS: attr type=0x1011 len=4
1644347818.379319: WPS: attr type=0x1008 len=2
1644347818.379340: WPS: attr type=0x103c len=1
1644347818.379361: WPS: attr type=0x1049 len=6
1644347818.379382: WPS: WFA subelement id=0 len=1
1644347818.379404: WPS: attr type=0x104a len=1
1644347818.379425: WPS: attr type=0x1044 len=1
1644347818.379446: WPS: attr type=0x103b len=1
1644347818.379467: WPS: attr type=0x1047 len=16
1644347818.379488: WPS: attr type=0x1021 len=3
1644347818.379509: WPS: attr type=0x1023 len=4
1644347818.379530: WPS: attr type=0x1024 len=4
1644347818.379551: WPS: attr type=0x1042 len=4
1644347818.379572: WPS: attr type=0x1054 len=8
1644347818.379593: WPS: attr type=0x1011 len=4
1644347818.379614: WPS: attr type=0x1008 len=2
1644347818.379634: WPS: attr type=0x103c len=1
1644347818.379656: WPS: attr type=0x1049 len=6
1644347818.379677: WPS: WFA subelement id=0 len=1
1644347818.379698: WPS: AP ea:df:70:07:6f:c2 type 0 added
1644347818.379723: WPS: attr type=0x104a len=1
1644347818.379745: WPS: attr type=0x1044 len=1
1644347818.379766: WPS: attr type=0x103b len=1
1644347818.379787: WPS: attr type=0x1047 len=16
1644347818.379808: WPS: attr type=0x1021 len=3
1644347818.379829: WPS: attr type=0x1023 len=4
1644347818.379850: WPS: attr type=0x1024 len=4
1644347818.379871: WPS: attr type=0x1042 len=4
1644347818.379892: WPS: attr type=0x1054 len=8
1644347818.379913: WPS: attr type=0x1011 len=4
1644347818.379933: WPS: attr type=0x1008 len=2
1644347818.379954: WPS: attr type=0x103c len=1
1644347818.379975: WPS: attr type=0x1049 len=6
1644347818.379996: WPS: WFA subelement id=0 len=1
1644347818.380017: WPS: attr type=0x104a len=1
1644347818.380038: WPS: attr type=0x1044 len=1
1644347818.380059: WPS: attr type=0x103b len=1
1644347818.380080: WPS: attr type=0x1047 len=16
1644347818.380101: WPS: attr type=0x1021 len=3
1644347818.380122: WPS: attr type=0x1023 len=4
1644347818.380143: WPS: attr type=0x1024 len=4
1644347818.380164: WPS: attr type=0x1042 len=4
1644347818.380185: WPS: attr type=0x1054 len=8
1644347818.380206: WPS: attr type=0x1011 len=4
1644347818.380227: WPS: attr type=0x1008 len=2
1644347818.380247: WPS: attr type=0x103c len=1
1644347818.380268: WPS: attr type=0x1049 len=6
1644347818.380289: WPS: WFA subelement id=0 len=1
1644347818.380311: WPS: attr type=0x104a len=1
1644347818.380332: WPS: attr type=0x1044 len=1
1644347818.380353: WPS: attr type=0x103b len=1
1644347818.380374: WPS: attr type=0x1047 len=16
1644347818.380395: WPS: attr type=0x1021 len=3
1644347818.380416: WPS: attr type=0x1023 len=4
1644347818.380436: WPS: attr type=0x1024 len=4
1644347818.380457: WPS: attr type=0x1042 len=4
1644347818.380478: WPS: attr type=0x1054 len=8
1644347818.380499: WPS: attr type=0x1011 len=4
1644347818.380520: WPS: attr type=0x1008 len=2
1644347818.380541: WPS: attr type=0x103c len=1
1644347818.380562: WPS: attr type=0x1049 len=6
1644347818.380583: WPS: WFA subelement id=0 len=1
1644347818.380604: WPS: AP e8:df:70:07:6f:c2 type 0 added
1644347818.380628: Removed BSSID e0:28:6d:7e:94:3b from ignore list (clear)
1644347818.380663: Removed BSSID e0:28:6d:7e:94:3c from ignore list (clear)
1644347818.380686: Removed BSSID 2c:91:ab:e0:30:34 from ignore list (clear)
1644347818.380708: Removed BSSID 2c:91:ab:e0:30:35 from ignore list (clear)
1644347818.380730: WPS: AP[0] 2c:91:ab:e0:30:35 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347818.380755: WPS: AP[1] 2c:91:ab:e0:30:34 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347818.380790: WPS: AP[2] e0:28:6d:7e:94:3c type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347818.380813: WPS: AP[3] e0:28:6d:7e:94:3b type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347818.380836: WPS: AP[4] ea:df:70:07:6f:c2 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347818.380860: WPS: AP[5] e8:df:70:07:6f:c2 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347818.380891: wlan1: Radio work 'scan'@0x55a4885a1be0 done in 3.242731 seconds
1644347818.380917: wlan1: radio_work_free('scan'@0x55a4885a1be0): num_active_works --> 0
1644347818.380943: wlan1: Scan results matching the currently selected network
1644347818.380981: wlan1: 0: 2c:91:ab:e0:30:35 freq=5260 level=-48 snr=44 est_throughput=135000
1644347818.381014: wlan1: 1: 2c:91:ab:e0:30:34 freq=2437 level=-36 snr=53 est_throughput=65000
1644347818.381044: wlan1: 2: e0:28:6d:7e:94:3c freq=2437 level=-63 snr=26 est_throughput=65000
1644347818.381075: wlan1: 3: e0:28:6d:7e:94:3b freq=5260 level=-77 snr=15 est_throughput=60750
1644347818.381102: wlan1: Selecting BSS from priority group 0
1644347818.381135: wlan1: 0: 2c:91:ab:e0:30:35 ssid='FRITZ!Box 7590 TC' wpa_ie_len=0 rsn_ie_len=24 caps=0x1511 level=-48 freq=5260  wps
1644347818.381161: wlan1:    selected based on RSN IE
1644347818.381189: wlan1:    selected BSS 2c:91:ab:e0:30:35 ssid='FRITZ!Box 7590 TC'
1644347818.381225: wlan1: Considering connect request: reassociate: 1  selected: 2c:91:ab:e0:30:35  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: DISCONNECTED  ssid=0x55a488595780  current_ssid=0x55a488595780
1644347818.381251: wlan1: Request association with 2c:91:ab:e0:30:35
1644347818.381277: unknown vendor specific information element ignored (vendor OUI 00:03:7f len=9)
1644347818.381301: unknown vendor specific information element ignored (vendor OUI 00:04:0e len=12)
1644347818.381323: unknown vendor specific information element ignored (vendor OUI 00:03:7f len=7)
1644347818.381346: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=22)
1644347818.381368: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=8)
1644347818.381390: TDLS: TDLS is allowed in the target BSS
1644347818.381411: TDLS: TDLS channel switch allowed in the target BSS
1644347818.381434: wlan1: No ongoing scan/p2p-scan found to abort
1644347818.381459: wlan1: Add radio work 'sme-connect'@0x55a4885a1be0
1644347818.381484: wlan1: First radio work item in the queue - schedule start immediately
1644347818.381529: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/0
1644347818.381764: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/1
1644347818.381949: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/2
1644347818.382149: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/3
1644347818.382354: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/6
1644347818.382522: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/7
1644347818.382693: wlan1: Starting radio work 'sme-connect'@0x55a4885a1be0 after 0.001205 second wait
1644347818.382723: wlan1: WPA: clearing own WPA/RSN IE
1644347818.382747: wlan1: RSN: clearing own RSNXE
1644347818.382789: wlan1: Automatic auth_alg selection: 0x1
1644347818.382814: wlan1: Overriding auth_alg selection: 0x1
1644347818.382839: wlan1: Using SAE auth_alg
1644347818.382862: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x0
1644347818.382885: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347818.382908: RSN: No PMKSA cache entry found
1644347818.382932: wlan1: RSN: using IEEE 802.11i/D9.0
1644347818.382957: wlan1: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1026 proto 2
1644347818.382980: wlan1: WPA: Selected mgmt group cipher 32
1644347818.383003: wlan1: WPA: clearing AP WPA IE
1644347818.383024: WPA: set AP RSN IE - hexdump(len=26): 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347818.383056: wlan1: WPA: clearing AP RSNXE
1644347818.383080: wlan1: WPA: AP group 0x10 network profile group 0x18; available group 0x10
1644347818.383104: wlan1: WPA: using GTK CCMP
1644347818.383128: wlan1: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
1644347818.383150: wlan1: WPA: using PTK CCMP
1644347818.383185: wlan1: WPA: AP key_mgmt 0x402 network profile key_mgmt 0x502; available key_mgmt 0x402
1644347818.383222: wlan1: RSN: using KEY_MGMT SAE
1644347818.383263: wlan1: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
1644347818.383304: wlan1: WPA: not using MGMT group cipher
1644347818.383342: 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
1644347818.383392: RSN: Set own RSNXE default - hexdump(len=0):
1644347818.383429: PSK (set in config) - hexdump(len=32): [REMOVED]
1644347818.383468: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347818.383506: RRM: Determining whether RRM can be used - device support: 0x10
1644347818.383544: RRM: Adding RRM IE to Association Request
1644347818.383606: Added supported operating classes IE - hexdump(len=19): 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347818.383662: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x400
1644347818.383679: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347818.383694: RSN: No PMKSA cache entry found
1644347818.383770: SAE: Selecting supported ECC group 19
1644347818.383800: wlan1: SME: Selected SAE group 19
1644347818.384118: SAE: password - hexdump_ascii(len=20): [REMOVED]
1644347818.384139: SAE: PWE derivation - addr1=c4:85:08:14:a1:b8 addr2=2c:91:ab:e0:30:35
1644347818.384157: SAE: counter = 001
1644347818.384183: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.384227: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.384409: SAE: pwd-seed result 1 found=0xff
1644347818.384468: SAE: counter = 002
1644347818.384489: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.384512: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.384583: SAE: pwd-seed result 0 found=0xff
1644347818.384597: SAE: counter = 003
1644347818.384647: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.384709: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.384948: SAE: pwd-seed result 0 found=0xff
1644347818.384985: SAE: counter = 004
1644347818.385018: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.385052: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.385185: SAE: pwd-seed result 0 found=0xff
1644347818.385212: SAE: counter = 005
1644347818.385243: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.385276: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.385403: SAE: pwd-seed result 1 found=0xff
1644347818.385430: SAE: counter = 006
1644347818.385460: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.385492: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.385619: SAE: pwd-seed result 0 found=0xff
1644347818.385646: SAE: counter = 007
1644347818.385676: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.385709: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.385834: SAE: pwd-seed result 1 found=0xff
1644347818.385861: SAE: counter = 008
1644347818.385922: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.385955: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.386084: SAE: pwd-seed result 0 found=0xff
1644347818.386111: SAE: counter = 009
1644347818.386141: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.386173: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.386299: SAE: pwd-seed result 0 found=0xff
1644347818.386326: SAE: counter = 010
1644347818.386357: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.386389: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.386515: SAE: pwd-seed result 0 found=0xff
1644347818.386542: SAE: counter = 011
1644347818.386572: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.386604: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.386733: SAE: pwd-seed result 0 found=0xff
1644347818.386760: SAE: counter = 012
1644347818.386790: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.386822: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.386948: SAE: pwd-seed result 0 found=0xff
1644347818.386975: SAE: counter = 013
1644347818.387004: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.387036: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.387162: SAE: pwd-seed result 0 found=0xff
1644347818.387188: SAE: counter = 014
1644347818.387218: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.387250: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.387379: SAE: pwd-seed result 1 found=0xff
1644347818.387406: SAE: counter = 015
1644347818.387436: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.387467: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.387592: SAE: pwd-seed result 1 found=0xff
1644347818.387619: SAE: counter = 016
1644347818.387649: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.387681: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.387806: SAE: pwd-seed result 0 found=0xff
1644347818.387833: SAE: counter = 017
1644347818.387863: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.387895: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.388021: SAE: pwd-seed result 1 found=0xff
1644347818.388047: SAE: counter = 018
1644347818.388077: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.388109: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.388234: SAE: pwd-seed result 0 found=0xff
1644347818.388261: SAE: counter = 019
1644347818.388290: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.388322: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.388448: SAE: pwd-seed result 1 found=0xff
1644347818.388475: SAE: counter = 020
1644347818.388505: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.388537: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.388663: SAE: pwd-seed result 1 found=0xff
1644347818.388689: SAE: counter = 021
1644347818.388719: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.388751: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.388908: SAE: pwd-seed result 1 found=0xff
1644347818.388936: SAE: counter = 022
1644347818.388967: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.388999: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.389124: SAE: pwd-seed result 0 found=0xff
1644347818.389151: SAE: counter = 023
1644347818.389181: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.389213: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.389338: SAE: pwd-seed result 0 found=0xff
1644347818.389365: SAE: counter = 024
1644347818.389395: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.389427: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.389553: SAE: pwd-seed result 0 found=0xff
1644347818.389580: SAE: counter = 025
1644347818.389609: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.389641: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.389766: SAE: pwd-seed result 0 found=0xff
1644347818.389793: SAE: counter = 026
1644347818.389823: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.389855: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.389984: SAE: pwd-seed result 1 found=0xff
1644347818.390010: SAE: counter = 027
1644347818.390059: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.390092: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.390219: SAE: pwd-seed result 1 found=0xff
1644347818.390245: SAE: counter = 028
1644347818.390275: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.390307: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.390432: SAE: pwd-seed result 1 found=0xff
1644347818.390458: SAE: counter = 029
1644347818.390489: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.390521: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.390646: SAE: pwd-seed result 0 found=0xff
1644347818.390673: SAE: counter = 030
1644347818.390703: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.390735: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.390860: SAE: pwd-seed result 0 found=0xff
1644347818.390886: SAE: counter = 031
1644347818.390916: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.390948: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.391073: SAE: pwd-seed result 1 found=0xff
1644347818.391100: SAE: counter = 032
1644347818.391130: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.391161: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.391287: SAE: pwd-seed result 0 found=0xff
1644347818.391313: SAE: counter = 033
1644347818.391343: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.391375: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.391500: SAE: pwd-seed result 1 found=0xff
1644347818.391527: SAE: counter = 034
1644347818.391557: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.391589: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.391714: SAE: pwd-seed result 0 found=0xff
1644347818.391740: SAE: counter = 035
1644347818.391770: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.391802: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.391927: SAE: pwd-seed result 1 found=0xff
1644347818.391953: SAE: counter = 036
1644347818.391983: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.392015: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.392141: SAE: pwd-seed result 0 found=0xff
1644347818.392168: SAE: counter = 037
1644347818.392198: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.392231: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.392356: SAE: pwd-seed result 0 found=0xff
1644347818.392383: SAE: counter = 038
1644347818.392413: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.392444: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.392573: SAE: pwd-seed result 1 found=0xff
1644347818.392600: SAE: counter = 039
1644347818.392630: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.392662: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.392823: SAE: pwd-seed result 0 found=0xff
1644347818.392857: SAE: counter = 040
1644347818.392888: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347818.392920: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347818.393049: SAE: pwd-seed result 1 found=0xff
1644347818.393157: SAE: PWE - hexdump(len=64): [REMOVED]
1644347818.393442: SAE: own commit-scalar - hexdump(len=32): ff 55 33 66 0e 73 77 67 87 ec bc ae a0 c3 c4 7a 6c 2c 05 aa a4 cd 2f c0 ad eb f8 01 4f c4 44 de
1644347818.393499: SAE: own commit-element(x) - hexdump(len=32): 9b ee 2c 58 1a bd 7e b2 14 94 f6 97 ba 98 c2 1f 00 3b 40 82 3c 0f ae 97 f7 71 b5 b1 07 12 6a 7b
1644347818.393530: SAE: own commit-element(y) - hexdump(len=32): 37 70 32 64 99 16 9d 6f 9c aa 6b 66 bd d7 06 0a ec 50 6f 67 64 7d 57 48 4a 95 2b d5 51 a2 9a 51
1644347818.393560: EAPOL: External notification - EAP success=0
1644347818.393585: EAPOL: External notification - EAP fail=0
1644347818.393608: EAPOL: External notification - portControl=Auto
1644347818.393633: wlan1: Cancelling scan request
1644347818.393662: wlan1: SME: Trying to authenticate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347818.393685: EAPOL: External notification - portValid=0
1644347818.393710: wlan1: State: DISCONNECTED -> AUTHENTICATING
1644347818.393793: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
1644347818.393846: wlan1: Determining shared radio frequencies (max len 1)
1644347818.393874: wlan1: Shared frequencies (len=0): completed iteration
1644347818.393897: nl80211: Authenticate (ifindex=3)
1644347818.393924:   * bssid=2c:91:ab:e0:30:35
1644347818.393949:   * freq=5260
1644347818.393971:   * SSID=FRITZ!Box 7590 TC
1644347818.393993:   * IEs - hexdump(len=0): [NULL]
1644347818.394015:   * auth_data - hexdump(len=102): 01 00 00 00 13 00 ff 55 33 66 0e 73 77 67 87 ec bc ae a0 c3 c4 7a 6c 2c 05 aa a4 cd 2f c0 ad eb f8 01 4f c4 44 de 9b ee 2c 58 1a bd 7e b2 14 94 f6 97 ba 98 c2 1f 00 3b 40 82 3c 0f ae 97 f7 71 b5 b1 07 12 6a 7b 37 70 32 64 99 16 9d 6f 9c aa 6b 66 bd d7 06 0a ec 50 6f 67 64 7d 57 48 4a 95 2b d5 51 a2 9a 51
1644347818.394061:   * Auth Type 4
1644347818.397528: nl80211: Authentication request send successfully
1644347818.397628: nl80211: Event message available
1644347818.397675: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan1
1644347818.397706: nl80211: New station 2c:91:ab:e0:30:35
1644347818.398938: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347818.725125: nl80211: Event message available
1644347818.725252: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan1
1644347818.725280: nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347818.725307: nl80211: MLME event frame - hexdump(len=128): b0 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 a0 d0 03 00 01 00 00 00 13 00 85 d5 08 82 93 b9 f8 b3 d6 b2 09 81 aa 4c 47 ec cb 4b ca 92 05 62 92 a7 e5 57 c4 19 cc 08 79 89 9d 9c 58 53 9f 9b 6c ef 02 b9 05 ad 1a 33 6a ba 23 c5 b1 2f d9 ed 53 65 42 a8 79 93 f0 df 63 45 c1 aa 23 50 d3 a7 f8 93 4b 76 0a 64 4a 56 26 b9 76 f7 f4 bf 5c 3a 5d a3 2a 31 df f4 8c 39 76 b1
1644347818.725359: nl80211: Authenticate event
1644347818.725387: wlan1: Event AUTH (10) received
1644347818.725417: wlan1: SME: Authentication response: peer=2c:91:ab:e0:30:35 auth_type=3 auth_transaction=1 status_code=0
1644347818.725439: SME: Authentication response IEs - hexdump(len=98): 13 00 85 d5 08 82 93 b9 f8 b3 d6 b2 09 81 aa 4c 47 ec cb 4b ca 92 05 62 92 a7 e5 57 c4 19 cc 08 79 89 9d 9c 58 53 9f 9b 6c ef 02 b9 05 ad 1a 33 6a ba 23 c5 b1 2f d9 ed 53 65 42 a8 79 93 f0 df 63 45 c1 aa 23 50 d3 a7 f8 93 4b 76 0a 64 4a 56 26 b9 76 f7 f4 bf 5c 3a 5d a3 2a 31 df f4 8c 39 76 b1
1644347818.725486: wlan1: SME: SAE authentication transaction 1 status code 0
1644347818.725510: wlan1: SME SAE commit
1644347818.725537: SAE: Peer commit-scalar - hexdump(len=32): 85 d5 08 82 93 b9 f8 b3 d6 b2 09 81 aa 4c 47 ec cb 4b ca 92 05 62 92 a7 e5 57 c4 19 cc 08 79 89
1644347818.725570: SAE: Peer commit-element(x) - hexdump(len=32): 9d 9c 58 53 9f 9b 6c ef 02 b9 05 ad 1a 33 6a ba 23 c5 b1 2f d9 ed 53 65 42 a8 79 93 f0 df 63 45
1644347818.725599: SAE: Peer commit-element(y) - hexdump(len=32): c1 aa 23 50 d3 a7 f8 93 4b 76 0a 64 4a 56 26 b9 76 f7 f4 bf 5c 3a 5d a3 2a 31 df f4 8c 39 76 b1
1644347818.725648: SAE: Possible elements at the end of the frame - hexdump(len=0):
1644347818.726141: SAE: k - hexdump(len=32): [REMOVED]
1644347818.726169: SAE: salt for keyseed derivation - hexdump(len=32): 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 00 00 00 00 00 00 00
1644347818.726218: SAE: keyseed - hexdump(len=32): [REMOVED]
1644347818.726249: SAE: PMKID - hexdump(len=16): 85 2a 3b e9 a2 2d 70 1a 5e 9e c6 30 4b 10 0c 67
1644347818.726291: SAE: KCK - hexdump(len=32): [REMOVED]
1644347818.726314: SAE: PMK - hexdump(len=32): [REMOVED]
1644347818.726340: wlan1: Automatic auth_alg selection: 0x1
1644347818.726365: wlan1: Overriding auth_alg selection: 0x1
1644347818.726391: wlan1: Using SAE auth_alg
1644347818.726414: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x0
1644347818.726438: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347818.726460: RSN: No PMKSA cache entry found
1644347818.726526: wlan1: RSN: using IEEE 802.11i/D9.0
1644347818.726554: wlan1: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1026 proto 2
1644347818.726579: wlan1: WPA: Selected mgmt group cipher 32
1644347818.726602: wlan1: WPA: clearing AP WPA IE
1644347818.726624: WPA: set AP RSN IE - hexdump(len=26): 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347818.726655: wlan1: WPA: clearing AP RSNXE
1644347818.726680: wlan1: WPA: AP group 0x10 network profile group 0x18; available group 0x10
1644347818.726704: wlan1: WPA: using GTK CCMP
1644347818.726728: wlan1: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
1644347818.726751: wlan1: WPA: using PTK CCMP
1644347818.726775: wlan1: WPA: AP key_mgmt 0x402 network profile key_mgmt 0x502; available key_mgmt 0x402
1644347818.726798: wlan1: RSN: using KEY_MGMT SAE
1644347818.726823: wlan1: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
1644347818.726845: wlan1: WPA: not using MGMT group cipher
1644347818.726868: 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
1644347818.726896: 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
1644347818.726924: RSN: Set own RSNXE default - hexdump(len=0):
1644347818.726946: PSK (set in config) - hexdump(len=32): [REMOVED]
1644347818.726967: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347818.726989: RRM: Determining whether RRM can be used - device support: 0x10
1644347818.727011: RRM: Adding RRM IE to Association Request
1644347818.727046: Added supported operating classes IE - hexdump(len=19): 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347818.727076: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x400
1644347818.727098: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347818.727120: RSN: No PMKSA cache entry found
1644347818.727192: EAPOL: External notification - EAP success=0
1644347818.727218: EAPOL: External notification - EAP fail=0
1644347818.727241: EAPOL: External notification - portControl=Auto
1644347818.727265: wlan1: Cancelling scan request
1644347818.727293: wlan1: SME: Trying to authenticate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347818.727315: EAPOL: External notification - portValid=0
1644347818.727340: wlan1: State: AUTHENTICATING -> AUTHENTICATING
1644347818.727363: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
1644347818.727389: wlan1: Determining shared radio frequencies (max len 1)
1644347818.727414: wlan1: Shared frequencies (len=0): completed iteration
1644347818.727436: nl80211: Authenticate (ifindex=3)
1644347818.727464:   * bssid=2c:91:ab:e0:30:35
1644347818.727488:   * freq=5260
1644347818.727510:   * SSID=FRITZ!Box 7590 TC
1644347818.727532:   * IEs - hexdump(len=0): [NULL]
1644347818.727554:   * auth_data - hexdump(len=38): 02 00 00 00 01 00 73 87 55 29 11 66 bd f7 08 ab 58 d5 1b 98 c8 af dd af 92 13 1c e2 09 bf 95 64 4b 43 0f 74 cd 0e
1644347818.727585:   * Auth Type 4
1644347818.727711: nl80211: Authentication request send successfully
1644347818.842006: nl80211: Event message available
1644347818.842136: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan1
1644347818.842170: nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347818.842201: nl80211: MLME event frame - hexdump(len=64): b0 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 b0 d0 03 00 02 00 00 00 00 00 01 e1 ed 3d fa f8 66 fa c0 d1 75 da 17 ee c6 17 4e 60 af 10 45 1f 40 b1 f1 ec 4c ae fa 12 63 4b
1644347818.842243: nl80211: Authenticate event
1644347818.842274: wlan1: Event AUTH (10) received
1644347818.842310: wlan1: SME: Authentication response: peer=2c:91:ab:e0:30:35 auth_type=3 auth_transaction=2 status_code=0
1644347818.842334: SME: Authentication response IEs - hexdump(len=34): 00 00 01 e1 ed 3d fa f8 66 fa c0 d1 75 da 17 ee c6 17 4e 60 af 10 45 1f 40 b1 f1 ec 4c ae fa 12 63 4b
1644347818.842417: wlan1: SME: SAE authentication transaction 2 status code 0
1644347818.842448: wlan1: SME SAE confirm
1644347818.842474: SAE: peer-send-confirm 0
1644347818.842580: SME: SAE completed - setting PMK for 4-way handshake
1644347818.842610: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347818.842642: RSN: Added PMKSA cache entry for 2c:91:ab:e0:30:35 network_ctx=0x55a488595780 akmp=0x400
1644347818.842677: wlan1: PMKSA-CACHE-ADDED 2c:91:ab:e0:30:35 0
1644347818.842701: nl80211: Add PMKID for 2c:91:ab:e0:30:35
1644347818.842799: nl80211: NL80211_CMD_SET_PMKSA failed: -95 (Operation not supported)
1644347818.842834: SME: Association Request IEs - hexdump(len=61): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347818.842883: wlan1: Trying to associate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347818.842911: wlan1: State: AUTHENTICATING -> ASSOCIATING
1644347818.842937: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347818.842965: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347818.843101: 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
1644347818.843150: wlan1: RSN: clearing own RSNXE
1644347818.843178: nl80211: Associate (ifindex=3)
1644347818.843212:   * bssid=2c:91:ab:e0:30:35
1644347818.843244:   * freq=5260
1644347818.843273:   * SSID=FRITZ!Box 7590 TC
1644347818.843302:   * IEs - hexdump(len=61): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347818.843346:   * WPA Versions 0x2
1644347818.843373:   * pairwise=0xfac04
1644347818.843399:   * group=0xfac04
1644347818.843426:   * akm=0xfac08
1644347818.843514: nl80211: Association request send successfully
1644347818.868991: nl80211: Event message available
1644347818.869127: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan1
1644347818.869161: nl80211: Delete station 2c:91:ab:e0:30:35
1644347818.872001: nl80211: Event message available
1644347818.872128: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan1
1644347818.872160: nl80211: MLME event 38 (NL80211_CMD_ASSOCIATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347818.872191: nl80211: MLME event frame - hexdump(len=196): 10 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 c0 d0 11 15 28 00 0f 24 01 08 8c 12 98 24 b0 48 60 6c 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 08 8c fd f0 01 01 02 01 00 dd 18 00 50 f2 04 10 4a 00 01 10 10 3b 00 01 03 10 49 00 06 00 37 2a 00 01 20 dd 07 00 03 7f 05 01 00 01
1644347818.872268: nl80211: Associate event
1644347818.872300: wlan1: Event ASSOC_REJECT (12) received
1644347818.872334: wlan1: CTRL-EVENT-ASSOC-REJECT bssid=2c:91:ab:e0:30:35 status_code=40
1644347818.872513: wlan1: SME: Association with 2c:91:ab:e0:30:35 failed: status code 40
1644347818.872553: wpa_driver_nl80211_deauthenticate(addr=2c:91:ab:e0:30:35 reason_code=3)
1644347818.872655: wlan1: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
1644347818.872694: wlan1: SME: Deauth request to the driver failed
1644347818.872729: wlan1: Radio work 'sme-connect'@0x55a4885a1be0 done in 0.490036 seconds
1644347818.872761: wlan1: radio_work_free('sme-connect'@0x55a4885a1be0): num_active_works --> 0
1644347818.872841: Added BSSID 2c:91:ab:e0:30:35 into ignore list, ignoring for 10 seconds
1644347818.872931: wlan1: Another BSS in this ESS has been seen; try it next
1644347818.872965: BSSID 2c:91:ab:e0:30:35 ignore list count incremented to 2, ignoring for 10 seconds
1644347818.872999: Continuous association failures - consider temporary network disabling
1644347818.873034: wlan1: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="FRITZ!Box 7590 TC" auth_failures=1 duration=10 reason=CONN_FAILED
1644347818.873071: wlan1: Consecutive connection failures: 6 --> request scan in 10000 ms
1644347818.873111: wlan1: Setting scan request: 10.000000 sec
1644347818.873149: wlan1: State: ASSOCIATING -> DISCONNECTED
1644347818.873185: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347818.873221: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347818.873370: nl80211: Event message available
1644347818.873451: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan1
1644347818.873495: nl80211: Ignore connect event (cmd=46) when using userspace SME
1644347818.878500: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347828.874692: wlan1: State: DISCONNECTED -> SCANNING
1644347828.874900: Scan SSID - hexdump_ascii(len=17):
     46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54   FRITZ!Box 7590 T
     43                                                C               
1644347828.874985: wlan1: Starting AP scan for wildcard SSID
1644347828.875012: wlan1: Optimize scan based on previously generated frequency list
1644347828.875032: wlan1: Add radio work 'scan'@0x55a4885946c0
1644347828.875046: wlan1: First radio work item in the queue - schedule start immediately
1644347828.875091: wlan1: Starting radio work 'scan'@0x55a4885946c0 after 0.000040 second wait
1644347828.875165: wlan1: nl80211: scan request
1644347828.875208: nl80211: Scan SSID FRITZ!Box 7590 TC
1644347828.875238: nl80211: Scan SSID 
1644347828.875270: nl80211: Scan extra IEs - hexdump(len=13): 7f 0b 00 00 00 00 01 00 40 40 00 00 20
1644347828.875286: nl80211: Scan frequency 2437 MHz
1644347828.875300: nl80211: Scan frequency 5260 MHz
1644347828.876996: Scan requested (ret=0) - scan timeout 30 seconds
1644347828.877108: nl80211: Event message available
1644347828.877150: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan1
1644347828.877183: wlan1: nl80211: Scan trigger
1644347828.877213: wlan1: Event SCAN_STARTED (47) received
1644347828.877241: wlan1: Own scan request started a scan in 0.000148 seconds
1644347828.880043: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347828.998906: RTM_NEWLINK: ifi_index=3 ifname=wlan1 wext ifi_family=0 ifi_flags=0x1003 ([UP])
1644347828.999086: nl80211: Event message available
1644347828.999149: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan1
1644347828.999182: wlan1: nl80211: New scan results available
1644347828.999213: nl80211: Scan probed for SSID 'FRITZ!Box 7590 TC'
1644347828.999238: nl80211: Scan probed for SSID ''
1644347828.999264: nl80211: Scan included frequencies: 2437 5260
1644347828.999291: wlan1: Event SCAN_RESULTS (3) received
1644347828.999319: wlan1: Scan completed in 0.122079 seconds
1644347828.999544: nl80211: Received scan results (6 BSSes)
1644347828.999625: Sorted scan results
1644347828.999656: 2c:91:ab:e0:30:35 freq=5260 qual=0 noise=-92~ level=-48 snr=44* flags=0xb age=16 est=135000
1644347828.999688: IEs - hexdump(len=458): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff 86 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347828.999868: Beacon IEs - hexdump(len=382): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff 7a 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347828.999993: 2c:91:ab:e0:30:34 freq=2437 qual=0 noise=-89~ level=-36 snr=53* flags=0xb age=92 est=65000
1644347829.000021: IEs - hexdump(len=365): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 10 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347829.000136: Beacon IEs - hexdump(len=289): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 10 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347829.000247: e0:28:6d:7e:94:3c freq=2437 qual=0 noise=-89~ level=-66 snr=23 flags=0xb age=104 est=62400
1644347829.000277: IEs - hexdump(len=455): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 07 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fd 2e 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c dd 08 8c fd f0 01 01 02 01 00
1644347829.000414: Beacon IEs - hexdump(len=379): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 0a 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fe b5 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c
1644347829.000534: e0:28:6d:7e:94:3b freq=5260 qual=0 noise=-92~ level=-79 snr=13 flags=0xb age=20 est=47250
1644347829.000563: IEs - hexdump(len=491): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff 1e 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347829.000721: Beacon IEs - hexdump(len=415): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff 1e 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00
1644347829.000898: ea:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-84 snr=5 flags=0xb age=13852 est=13000
1644347829.000929: IEs - hexdump(len=312): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 0d 6c e1 a2 99 69 66 06 3c 4c d5 04 45 20 1d 8a 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347829.001031: Beacon IEs - hexdump(len=224): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347829.001113: e8:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-86 snr=3 flags=0xb age=13852 est=8666
1644347829.001141: IEs - hexdump(len=300): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 09 e8 5a 0f d4 6d ec 63 ca 08 e8 df 70 07 6f c2 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347829.001258: Beacon IEs - hexdump(len=212): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347829.001344: wlan1: BSS: Start scan result update 7
1644347829.001441: wlan1: BSS: Remove id 4 BSSID cc:ce:1e:65:97:c5 SSID 'FRITZ!Box 7490' due to no match in scan
1644347829.001472: dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/4'
1644347829.001561: wlan1: BSS: Remove id 5 BSSID ce:ce:1e:65:97:c5 SSID 'FRITZ!Box Gastzugang' due to no match in scan
1644347829.001596: dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/5'
1644347829.001661: BSS: last_scan_res_used=6/32
1644347829.001680: wlan1: New scan results available (own=1 ext=0)
1644347829.001700: WPS: attr type=0x104a len=1
1644347829.001726: WPS: attr type=0x1044 len=1
1644347829.001739: WPS: attr type=0x103b len=1
1644347829.001755: WPS: attr type=0x1047 len=16
1644347829.001769: WPS: attr type=0x1021 len=3
1644347829.001784: WPS: attr type=0x1023 len=4
1644347829.001798: WPS: attr type=0x1024 len=4
1644347829.001811: WPS: attr type=0x1042 len=4
1644347829.001824: WPS: attr type=0x1054 len=8
1644347829.001838: WPS: attr type=0x1011 len=4
1644347829.001853: WPS: attr type=0x1008 len=2
1644347829.001870: WPS: attr type=0x103c len=1
1644347829.001887: WPS: attr type=0x1049 len=6
1644347829.001903: WPS: WFA subelement id=0 len=1
1644347829.001913: WPS: attr type=0x104a len=1
1644347829.001921: WPS: attr type=0x1044 len=1
1644347829.001930: WPS: attr type=0x103b len=1
1644347829.001938: WPS: attr type=0x1047 len=16
1644347829.001946: WPS: attr type=0x1021 len=3
1644347829.001954: WPS: attr type=0x1023 len=4
1644347829.001963: WPS: attr type=0x1024 len=4
1644347829.001971: WPS: attr type=0x1042 len=4
1644347829.001979: WPS: attr type=0x1054 len=8
1644347829.001987: WPS: attr type=0x1011 len=4
1644347829.001995: WPS: attr type=0x1008 len=2
1644347829.002003: WPS: attr type=0x103c len=1
1644347829.002012: WPS: attr type=0x1049 len=6
1644347829.002020: WPS: WFA subelement id=0 len=1
1644347829.002028: WPS: attr type=0x104a len=1
1644347829.002049: WPS: attr type=0x1044 len=1
1644347829.002071: WPS: attr type=0x103b len=1
1644347829.002092: WPS: attr type=0x1047 len=16
1644347829.002113: WPS: attr type=0x1021 len=3
1644347829.002134: WPS: attr type=0x1023 len=4
1644347829.002155: WPS: attr type=0x1024 len=4
1644347829.002176: WPS: attr type=0x1042 len=4
1644347829.002197: WPS: attr type=0x1054 len=8
1644347829.002218: WPS: attr type=0x1011 len=4
1644347829.002239: WPS: attr type=0x1008 len=2
1644347829.002260: WPS: attr type=0x103c len=1
1644347829.002281: WPS: attr type=0x1049 len=6
1644347829.002302: WPS: WFA subelement id=0 len=1
1644347829.002325: WPS: attr type=0x104a len=1
1644347829.002347: WPS: attr type=0x1044 len=1
1644347829.002368: WPS: attr type=0x103b len=1
1644347829.002389: WPS: attr type=0x1047 len=16
1644347829.002411: WPS: attr type=0x1021 len=3
1644347829.002431: WPS: attr type=0x1023 len=4
1644347829.002452: WPS: attr type=0x1024 len=4
1644347829.002473: WPS: attr type=0x1042 len=4
1644347829.002503: WPS: attr type=0x1054 len=8
1644347829.002512: WPS: attr type=0x1011 len=4
1644347829.002534: WPS: attr type=0x1008 len=2
1644347829.002543: WPS: attr type=0x103c len=1
1644347829.002551: WPS: attr type=0x1049 len=6
1644347829.002559: WPS: WFA subelement id=0 len=1
1644347829.002568: WPS: attr type=0x104a len=1
1644347829.002576: WPS: attr type=0x1044 len=1
1644347829.002584: WPS: attr type=0x103b len=1
1644347829.002592: WPS: attr type=0x1047 len=16
1644347829.002600: WPS: attr type=0x1021 len=3
1644347829.002608: WPS: attr type=0x1023 len=4
1644347829.002616: WPS: attr type=0x1024 len=4
1644347829.002624: WPS: attr type=0x1042 len=4
1644347829.002633: WPS: attr type=0x1054 len=8
1644347829.002641: WPS: attr type=0x1011 len=4
1644347829.002649: WPS: attr type=0x1008 len=2
1644347829.002657: WPS: attr type=0x103c len=1
1644347829.002665: WPS: attr type=0x1049 len=6
1644347829.002673: WPS: WFA subelement id=0 len=1
1644347829.002681: WPS: attr type=0x104a len=1
1644347829.002689: WPS: attr type=0x1044 len=1
1644347829.002698: WPS: attr type=0x103b len=1
1644347829.002706: WPS: attr type=0x1047 len=16
1644347829.002714: WPS: attr type=0x1021 len=3
1644347829.002722: WPS: attr type=0x1023 len=4
1644347829.002730: WPS: attr type=0x1024 len=4
1644347829.002738: WPS: attr type=0x1042 len=4
1644347829.002746: WPS: attr type=0x1054 len=8
1644347829.002754: WPS: attr type=0x1011 len=4
1644347829.002762: WPS: attr type=0x1008 len=2
1644347829.002770: WPS: attr type=0x103c len=1
1644347829.002778: WPS: attr type=0x1049 len=6
1644347829.002786: WPS: WFA subelement id=0 len=1
1644347829.002795: WPS: attr type=0x104a len=1
1644347829.002804: WPS: attr type=0x1044 len=1
1644347829.002812: WPS: attr type=0x103b len=1
1644347829.002820: WPS: attr type=0x1047 len=16
1644347829.002829: WPS: attr type=0x1021 len=3
1644347829.002843: WPS: attr type=0x1023 len=4
1644347829.002856: WPS: attr type=0x1024 len=4
1644347829.002870: WPS: attr type=0x1042 len=4
1644347829.002884: WPS: attr type=0x1054 len=8
1644347829.002898: WPS: attr type=0x1011 len=4
1644347829.002912: WPS: attr type=0x1008 len=2
1644347829.002926: WPS: attr type=0x103c len=1
1644347829.002941: WPS: attr type=0x1049 len=6
1644347829.002955: WPS: WFA subelement id=0 len=1
1644347829.002969: WPS: attr type=0x104a len=1
1644347829.002978: WPS: attr type=0x1044 len=1
1644347829.002987: WPS: attr type=0x103b len=1
1644347829.002995: WPS: attr type=0x1047 len=16
1644347829.003003: WPS: attr type=0x1021 len=3
1644347829.003011: WPS: attr type=0x1023 len=4
1644347829.003019: WPS: attr type=0x1024 len=4
1644347829.003027: WPS: attr type=0x1042 len=4
1644347829.003036: WPS: attr type=0x1054 len=8
1644347829.003044: WPS: attr type=0x1011 len=4
1644347829.003052: WPS: attr type=0x1008 len=2
1644347829.003060: WPS: attr type=0x103c len=1
1644347829.003068: WPS: attr type=0x1049 len=6
1644347829.003076: WPS: WFA subelement id=0 len=1
1644347829.003085: WPS: attr type=0x104a len=1
1644347829.003093: WPS: attr type=0x1044 len=1
1644347829.003102: WPS: attr type=0x103b len=1
1644347829.003110: WPS: attr type=0x1047 len=16
1644347829.003118: WPS: attr type=0x1021 len=3
1644347829.003126: WPS: attr type=0x1023 len=4
1644347829.003134: WPS: attr type=0x1024 len=4
1644347829.003142: WPS: attr type=0x1042 len=4
1644347829.003150: WPS: attr type=0x1054 len=8
1644347829.003159: WPS: attr type=0x1011 len=4
1644347829.003167: WPS: attr type=0x1008 len=2
1644347829.003180: WPS: attr type=0x103c len=1
1644347829.003218: WPS: attr type=0x1049 len=6
1644347829.003257: WPS: WFA subelement id=0 len=1
1644347829.003298: WPS: attr type=0x104a len=1
1644347829.003331: WPS: attr type=0x1044 len=1
1644347829.003355: WPS: attr type=0x103b len=1
1644347829.003393: WPS: attr type=0x1047 len=16
1644347829.003430: WPS: attr type=0x1021 len=3
1644347829.003466: WPS: attr type=0x1023 len=4
1644347829.003487: WPS: attr type=0x1024 len=4
1644347829.003508: WPS: attr type=0x1042 len=4
1644347829.003530: WPS: attr type=0x1054 len=8
1644347829.003551: WPS: attr type=0x1011 len=4
1644347829.003572: WPS: attr type=0x1008 len=2
1644347829.003593: WPS: attr type=0x103c len=1
1644347829.003632: WPS: attr type=0x1049 len=6
1644347829.003655: WPS: WFA subelement id=0 len=1
1644347829.003678: WPS: attr type=0x104a len=1
1644347829.003699: WPS: attr type=0x1044 len=1
1644347829.003721: WPS: attr type=0x103b len=1
1644347829.003742: WPS: attr type=0x1047 len=16
1644347829.003763: WPS: attr type=0x1021 len=3
1644347829.003784: WPS: attr type=0x1023 len=4
1644347829.003806: WPS: attr type=0x1024 len=4
1644347829.003827: WPS: attr type=0x1042 len=4
1644347829.003848: WPS: attr type=0x1054 len=8
1644347829.003869: WPS: attr type=0x1011 len=4
1644347829.003890: WPS: attr type=0x1008 len=2
1644347829.003911: WPS: attr type=0x103c len=1
1644347829.003933: WPS: attr type=0x1049 len=6
1644347829.003954: WPS: WFA subelement id=0 len=1
1644347829.003976: WPS: attr type=0x104a len=1
1644347829.003997: WPS: attr type=0x1044 len=1
1644347829.004018: WPS: attr type=0x103b len=1
1644347829.004040: WPS: attr type=0x1047 len=16
1644347829.004061: WPS: attr type=0x1021 len=3
1644347829.004082: WPS: attr type=0x1023 len=4
1644347829.004103: WPS: attr type=0x1024 len=4
1644347829.004124: WPS: attr type=0x1042 len=4
1644347829.004145: WPS: attr type=0x1054 len=8
1644347829.004166: WPS: attr type=0x1011 len=4
1644347829.004187: WPS: attr type=0x1008 len=2
1644347829.004208: WPS: attr type=0x103c len=1
1644347829.004229: WPS: attr type=0x1049 len=6
1644347829.004250: WPS: WFA subelement id=0 len=1
1644347829.004274: WPS: attr type=0x104a len=1
1644347829.004297: WPS: attr type=0x1044 len=1
1644347829.004318: WPS: attr type=0x103b len=1
1644347829.004340: WPS: attr type=0x1047 len=16
1644347829.004361: WPS: attr type=0x1021 len=3
1644347829.004382: WPS: attr type=0x1023 len=4
1644347829.004403: WPS: attr type=0x1024 len=4
1644347829.004424: WPS: attr type=0x1042 len=4
1644347829.004445: WPS: attr type=0x1054 len=8
1644347829.004466: WPS: attr type=0x1011 len=4
1644347829.004487: WPS: attr type=0x1008 len=2
1644347829.004508: WPS: attr type=0x103c len=1
1644347829.004530: WPS: attr type=0x1049 len=6
1644347829.004551: WPS: WFA subelement id=0 len=1
1644347829.004572: WPS: attr type=0x104a len=1
1644347829.004594: WPS: attr type=0x1044 len=1
1644347829.004615: WPS: attr type=0x103b len=1
1644347829.004636: WPS: attr type=0x1047 len=16
1644347829.004657: WPS: attr type=0x1021 len=3
1644347829.004678: WPS: attr type=0x1023 len=4
1644347829.004700: WPS: attr type=0x1024 len=4
1644347829.004721: WPS: attr type=0x1042 len=4
1644347829.004742: WPS: attr type=0x1054 len=8
1644347829.004763: WPS: attr type=0x1011 len=4
1644347829.004817: WPS: attr type=0x1008 len=2
1644347829.004839: WPS: attr type=0x103c len=1
1644347829.004860: WPS: attr type=0x1049 len=6
1644347829.004882: WPS: WFA subelement id=0 len=1
1644347829.004904: WPS: attr type=0x104a len=1
1644347829.004925: WPS: attr type=0x1044 len=1
1644347829.004947: WPS: attr type=0x103b len=1
1644347829.004968: WPS: attr type=0x1047 len=16
1644347829.004989: WPS: attr type=0x1021 len=3
1644347829.005010: WPS: attr type=0x1023 len=4
1644347829.005031: WPS: attr type=0x1024 len=4
1644347829.005053: WPS: attr type=0x1042 len=4
1644347829.005074: WPS: attr type=0x1054 len=8
1644347829.005095: WPS: attr type=0x1011 len=4
1644347829.005116: WPS: attr type=0x1008 len=2
1644347829.005137: WPS: attr type=0x103c len=1
1644347829.005158: WPS: attr type=0x1049 len=6
1644347829.005179: WPS: WFA subelement id=0 len=1
1644347829.005203: WPS: attr type=0x104a len=1
1644347829.005225: WPS: attr type=0x1044 len=1
1644347829.005246: WPS: attr type=0x103b len=1
1644347829.005268: WPS: attr type=0x1047 len=16
1644347829.005289: WPS: attr type=0x1021 len=3
1644347829.005310: WPS: attr type=0x1023 len=4
1644347829.005331: WPS: attr type=0x1024 len=4
1644347829.005352: WPS: attr type=0x1042 len=4
1644347829.005373: WPS: attr type=0x1054 len=8
1644347829.005394: WPS: attr type=0x1011 len=4
1644347829.005416: WPS: attr type=0x1008 len=2
1644347829.005437: WPS: attr type=0x103c len=1
1644347829.005458: WPS: attr type=0x1049 len=6
1644347829.005479: WPS: WFA subelement id=0 len=1
1644347829.005501: WPS: attr type=0x104a len=1
1644347829.005537: WPS: attr type=0x1044 len=1
1644347829.005560: WPS: attr type=0x103b len=1
1644347829.005581: WPS: attr type=0x1047 len=16
1644347829.005603: WPS: attr type=0x1021 len=3
1644347829.005624: WPS: attr type=0x1023 len=4
1644347829.005645: WPS: attr type=0x1024 len=4
1644347829.005666: WPS: attr type=0x1042 len=4
1644347829.005687: WPS: attr type=0x1054 len=8
1644347829.005708: WPS: attr type=0x1011 len=4
1644347829.005729: WPS: attr type=0x1008 len=2
1644347829.005751: WPS: attr type=0x103c len=1
1644347829.005772: WPS: attr type=0x1049 len=6
1644347829.005793: WPS: WFA subelement id=0 len=1
1644347829.005815: WPS: attr type=0x104a len=1
1644347829.005836: WPS: attr type=0x1044 len=1
1644347829.005857: WPS: attr type=0x103b len=1
1644347829.005878: WPS: attr type=0x1047 len=16
1644347829.005899: WPS: attr type=0x1021 len=3
1644347829.005920: WPS: attr type=0x1023 len=4
1644347829.005941: WPS: attr type=0x1024 len=4
1644347829.005962: WPS: attr type=0x1042 len=4
1644347829.005983: WPS: attr type=0x1054 len=8
1644347829.006004: WPS: attr type=0x1011 len=4
1644347829.006025: WPS: attr type=0x1008 len=2
1644347829.006046: WPS: attr type=0x103c len=1
1644347829.006066: WPS: attr type=0x1049 len=6
1644347829.006087: WPS: WFA subelement id=0 len=1
1644347829.006151: WPS: attr type=0x104a len=1
1644347829.006178: WPS: attr type=0x1044 len=1
1644347829.006200: WPS: attr type=0x103b len=1
1644347829.006222: WPS: attr type=0x1047 len=16
1644347829.006252: WPS: attr type=0x1021 len=3
1644347829.006261: WPS: attr type=0x1023 len=4
1644347829.006269: WPS: attr type=0x1024 len=4
1644347829.006277: WPS: attr type=0x1042 len=4
1644347829.006285: WPS: attr type=0x1054 len=8
1644347829.006293: WPS: attr type=0x1011 len=4
1644347829.006301: WPS: attr type=0x1008 len=2
1644347829.006310: WPS: attr type=0x103c len=1
1644347829.006318: WPS: attr type=0x1049 len=6
1644347829.006326: WPS: WFA subelement id=0 len=1
1644347829.006334: WPS: attr type=0x104a len=1
1644347829.006342: WPS: attr type=0x1044 len=1
1644347829.006350: WPS: attr type=0x103b len=1
1644347829.006375: WPS: attr type=0x1047 len=16
1644347829.006396: WPS: attr type=0x1021 len=3
1644347829.006417: WPS: attr type=0x1023 len=4
1644347829.006438: WPS: attr type=0x1024 len=4
1644347829.006459: WPS: attr type=0x1042 len=4
1644347829.006480: WPS: attr type=0x1054 len=8
1644347829.006500: WPS: attr type=0x1011 len=4
1644347829.006521: WPS: attr type=0x1008 len=2
1644347829.006542: WPS: attr type=0x103c len=1
1644347829.006563: WPS: attr type=0x1049 len=6
1644347829.006584: WPS: WFA subelement id=0 len=1
1644347829.006605: WPS: attr type=0x104a len=1
1644347829.006627: WPS: attr type=0x1044 len=1
1644347829.006648: WPS: attr type=0x103b len=1
1644347829.006669: WPS: attr type=0x1047 len=16
1644347829.006690: WPS: attr type=0x1021 len=3
1644347829.006711: WPS: attr type=0x1023 len=4
1644347829.006731: WPS: attr type=0x1024 len=4
1644347829.006752: WPS: attr type=0x1042 len=4
1644347829.006773: WPS: attr type=0x1054 len=8
1644347829.006794: WPS: attr type=0x1011 len=4
1644347829.006815: WPS: attr type=0x1008 len=2
1644347829.006836: WPS: attr type=0x103c len=1
1644347829.006857: WPS: attr type=0x1049 len=6
1644347829.006878: WPS: WFA subelement id=0 len=1
1644347829.006902: WPS: attr type=0x104a len=1
1644347829.006924: WPS: attr type=0x1044 len=1
1644347829.006945: WPS: attr type=0x103b len=1
1644347829.006966: WPS: attr type=0x1047 len=16
1644347829.006987: WPS: attr type=0x1021 len=3
1644347829.007008: WPS: attr type=0x1023 len=4
1644347829.007029: WPS: attr type=0x1024 len=4
1644347829.007050: WPS: attr type=0x1042 len=4
1644347829.007071: WPS: attr type=0x1054 len=8
1644347829.007092: WPS: attr type=0x1011 len=4
1644347829.007113: WPS: attr type=0x1008 len=2
1644347829.007134: WPS: attr type=0x103c len=1
1644347829.007155: WPS: attr type=0x1049 len=6
1644347829.007176: WPS: WFA subelement id=0 len=1
1644347829.007197: WPS: attr type=0x104a len=1
1644347829.007218: WPS: attr type=0x1044 len=1
1644347829.007239: WPS: attr type=0x103b len=1
1644347829.007260: WPS: attr type=0x1047 len=16
1644347829.007297: WPS: attr type=0x1021 len=3
1644347829.007319: WPS: attr type=0x1023 len=4
1644347829.007340: WPS: attr type=0x1024 len=4
1644347829.007361: WPS: attr type=0x1042 len=4
1644347829.007383: WPS: attr type=0x1054 len=8
1644347829.007404: WPS: attr type=0x1011 len=4
1644347829.007425: WPS: attr type=0x1008 len=2
1644347829.007446: WPS: attr type=0x103c len=1
1644347829.007467: WPS: attr type=0x1049 len=6
1644347829.007489: WPS: WFA subelement id=0 len=1
1644347829.007510: WPS: attr type=0x104a len=1
1644347829.007531: WPS: attr type=0x1044 len=1
1644347829.007553: WPS: attr type=0x103b len=1
1644347829.007574: WPS: attr type=0x1047 len=16
1644347829.007595: WPS: attr type=0x1021 len=3
1644347829.007616: WPS: attr type=0x1023 len=4
1644347829.007637: WPS: attr type=0x1024 len=4
1644347829.007658: WPS: attr type=0x1042 len=4
1644347829.007679: WPS: attr type=0x1054 len=8
1644347829.007700: WPS: attr type=0x1011 len=4
1644347829.007721: WPS: attr type=0x1008 len=2
1644347829.007742: WPS: attr type=0x103c len=1
1644347829.007763: WPS: attr type=0x1049 len=6
1644347829.007784: WPS: WFA subelement id=0 len=1
1644347829.007807: WPS: attr type=0x104a len=1
1644347829.007829: WPS: attr type=0x1044 len=1
1644347829.007851: WPS: attr type=0x103b len=1
1644347829.007872: WPS: attr type=0x1047 len=16
1644347829.007892: WPS: attr type=0x1021 len=3
1644347829.007913: WPS: attr type=0x1023 len=4
1644347829.007934: WPS: attr type=0x1024 len=4
1644347829.007955: WPS: attr type=0x1042 len=4
1644347829.007976: WPS: attr type=0x1054 len=8
1644347829.007997: WPS: attr type=0x1011 len=4
1644347829.008018: WPS: attr type=0x1008 len=2
1644347829.008039: WPS: attr type=0x103c len=1
1644347829.008060: WPS: attr type=0x1049 len=6
1644347829.008081: WPS: WFA subelement id=0 len=1
1644347829.008102: WPS: attr type=0x104a len=1
1644347829.008123: WPS: attr type=0x1044 len=1
1644347829.008144: WPS: attr type=0x103b len=1
1644347829.008165: WPS: attr type=0x1047 len=16
1644347829.008186: WPS: attr type=0x1021 len=3
1644347829.008207: WPS: attr type=0x1023 len=4
1644347829.008227: WPS: attr type=0x1024 len=4
1644347829.008248: WPS: attr type=0x1042 len=4
1644347829.008269: WPS: attr type=0x1054 len=8
1644347829.008290: WPS: attr type=0x1011 len=4
1644347829.008311: WPS: attr type=0x1008 len=2
1644347829.008332: WPS: attr type=0x103c len=1
1644347829.008353: WPS: attr type=0x1049 len=6
1644347829.008374: WPS: WFA subelement id=0 len=1
1644347829.008395: WPS: attr type=0x104a len=1
1644347829.008416: WPS: attr type=0x1044 len=1
1644347829.008437: WPS: attr type=0x103b len=1
1644347829.008458: WPS: attr type=0x1047 len=16
1644347829.008479: WPS: attr type=0x1021 len=3
1644347829.008500: WPS: attr type=0x1023 len=4
1644347829.008521: WPS: attr type=0x1024 len=4
1644347829.008542: WPS: attr type=0x1042 len=4
1644347829.008563: WPS: attr type=0x1054 len=8
1644347829.008584: WPS: attr type=0x1011 len=4
1644347829.008605: WPS: attr type=0x1008 len=2
1644347829.008626: WPS: attr type=0x103c len=1
1644347829.008647: WPS: attr type=0x1049 len=6
1644347829.008667: WPS: WFA subelement id=0 len=1
1644347829.008690: WPS: attr type=0x104a len=1
1644347829.008712: WPS: attr type=0x1044 len=1
1644347829.008733: WPS: attr type=0x103b len=1
1644347829.008754: WPS: attr type=0x1047 len=16
1644347829.008799: WPS: attr type=0x1021 len=3
1644347829.008822: WPS: attr type=0x1023 len=4
1644347829.008844: WPS: attr type=0x1024 len=4
1644347829.008865: WPS: attr type=0x1042 len=4
1644347829.008886: WPS: attr type=0x1054 len=8
1644347829.008907: WPS: attr type=0x1011 len=4
1644347829.008929: WPS: attr type=0x1008 len=2
1644347829.008950: WPS: attr type=0x103c len=1
1644347829.008972: WPS: attr type=0x1049 len=6
1644347829.008993: WPS: WFA subelement id=0 len=1
1644347829.009015: WPS: attr type=0x104a len=1
1644347829.009036: WPS: attr type=0x1044 len=1
1644347829.009057: WPS: attr type=0x103b len=1
1644347829.009078: WPS: attr type=0x1047 len=16
1644347829.009099: WPS: attr type=0x1021 len=3
1644347829.009120: WPS: attr type=0x1023 len=4
1644347829.009155: WPS: attr type=0x1024 len=4
1644347829.009178: WPS: attr type=0x1042 len=4
1644347829.009199: WPS: attr type=0x1054 len=8
1644347829.009221: WPS: attr type=0x1011 len=4
1644347829.009242: WPS: attr type=0x1008 len=2
1644347829.009263: WPS: attr type=0x103c len=1
1644347829.009284: WPS: attr type=0x1049 len=6
1644347829.009305: WPS: WFA subelement id=0 len=1
1644347829.009327: WPS: attr type=0x104a len=1
1644347829.009348: WPS: attr type=0x1044 len=1
1644347829.009369: WPS: attr type=0x103b len=1
1644347829.009390: WPS: attr type=0x1047 len=16
1644347829.009411: WPS: attr type=0x1021 len=3
1644347829.009432: WPS: attr type=0x1023 len=4
1644347829.009453: WPS: attr type=0x1024 len=4
1644347829.009474: WPS: attr type=0x1042 len=4
1644347829.009494: WPS: attr type=0x1054 len=8
1644347829.009515: WPS: attr type=0x1011 len=4
1644347829.009536: WPS: attr type=0x1008 len=2
1644347829.009557: WPS: attr type=0x103c len=1
1644347829.009578: WPS: attr type=0x1049 len=6
1644347829.009599: WPS: WFA subelement id=0 len=1
1644347829.009622: WPS: attr type=0x104a len=1
1644347829.009644: WPS: attr type=0x1044 len=1
1644347829.009666: WPS: attr type=0x103b len=1
1644347829.009686: WPS: attr type=0x1047 len=16
1644347829.009708: WPS: attr type=0x1021 len=3
1644347829.009728: WPS: attr type=0x1023 len=4
1644347829.009749: WPS: attr type=0x1024 len=4
1644347829.009770: WPS: attr type=0x1042 len=4
1644347829.009791: WPS: attr type=0x1054 len=8
1644347829.009812: WPS: attr type=0x1011 len=4
1644347829.009833: WPS: attr type=0x1008 len=2
1644347829.009854: WPS: attr type=0x103c len=1
1644347829.009875: WPS: attr type=0x1049 len=6
1644347829.009896: WPS: WFA subelement id=0 len=1
1644347829.009917: WPS: attr type=0x104a len=1
1644347829.009938: WPS: attr type=0x1044 len=1
1644347829.009959: WPS: attr type=0x103b len=1
1644347829.009980: WPS: attr type=0x1047 len=16
1644347829.010001: WPS: attr type=0x1021 len=3
1644347829.010022: WPS: attr type=0x1023 len=4
1644347829.010043: WPS: attr type=0x1024 len=4
1644347829.010064: WPS: attr type=0x1042 len=4
1644347829.010084: WPS: attr type=0x1054 len=8
1644347829.010105: WPS: attr type=0x1011 len=4
1644347829.010126: WPS: attr type=0x1008 len=2
1644347829.010147: WPS: attr type=0x103c len=1
1644347829.010168: WPS: attr type=0x1049 len=6
1644347829.010189: WPS: WFA subelement id=0 len=1
1644347829.010210: WPS: attr type=0x104a len=1
1644347829.010231: WPS: attr type=0x1044 len=1
1644347829.010252: WPS: attr type=0x103b len=1
1644347829.010273: WPS: attr type=0x1047 len=16
1644347829.010294: WPS: attr type=0x1021 len=3
1644347829.010315: WPS: attr type=0x1023 len=4
1644347829.010336: WPS: attr type=0x1024 len=4
1644347829.010357: WPS: attr type=0x1042 len=4
1644347829.010378: WPS: attr type=0x1054 len=8
1644347829.010399: WPS: attr type=0x1011 len=4
1644347829.010419: WPS: attr type=0x1008 len=2
1644347829.010440: WPS: attr type=0x103c len=1
1644347829.010461: WPS: attr type=0x1049 len=6
1644347829.010482: WPS: WFA subelement id=0 len=1
1644347829.010505: WPS: attr type=0x104a len=1
1644347829.010527: WPS: attr type=0x1044 len=1
1644347829.010548: WPS: attr type=0x103b len=1
1644347829.010569: WPS: attr type=0x1047 len=16
1644347829.010590: WPS: attr type=0x1021 len=3
1644347829.010611: WPS: attr type=0x1023 len=4
1644347829.010632: WPS: attr type=0x1024 len=4
1644347829.010653: WPS: attr type=0x1042 len=4
1644347829.010673: WPS: attr type=0x1054 len=8
1644347829.010694: WPS: attr type=0x1011 len=4
1644347829.010716: WPS: attr type=0x1008 len=2
1644347829.010737: WPS: attr type=0x103c len=1
1644347829.010758: WPS: attr type=0x1049 len=6
1644347829.010779: WPS: WFA subelement id=0 len=1
1644347829.010800: WPS: attr type=0x104a len=1
1644347829.010821: WPS: attr type=0x1044 len=1
1644347829.010842: WPS: attr type=0x103b len=1
1644347829.010863: WPS: attr type=0x1047 len=16
1644347829.010884: WPS: attr type=0x1021 len=3
1644347829.010905: WPS: attr type=0x1023 len=4
1644347829.010926: WPS: attr type=0x1024 len=4
1644347829.010947: WPS: attr type=0x1042 len=4
1644347829.010968: WPS: attr type=0x1054 len=8
1644347829.011000: WPS: attr type=0x1011 len=4
1644347829.011023: WPS: attr type=0x1008 len=2
1644347829.011044: WPS: attr type=0x103c len=1
1644347829.011065: WPS: attr type=0x1049 len=6
1644347829.011086: WPS: WFA subelement id=0 len=1
1644347829.011108: WPS: attr type=0x104a len=1
1644347829.011130: WPS: attr type=0x1044 len=1
1644347829.011151: WPS: attr type=0x103b len=1
1644347829.011172: WPS: attr type=0x1047 len=16
1644347829.011193: WPS: attr type=0x1021 len=3
1644347829.011214: WPS: attr type=0x1023 len=4
1644347829.011235: WPS: attr type=0x1024 len=4
1644347829.011256: WPS: attr type=0x1042 len=4
1644347829.011277: WPS: attr type=0x1054 len=8
1644347829.011297: WPS: attr type=0x1011 len=4
1644347829.011318: WPS: attr type=0x1008 len=2
1644347829.011339: WPS: attr type=0x103c len=1
1644347829.011360: WPS: attr type=0x1049 len=6
1644347829.011382: WPS: WFA subelement id=0 len=1
1644347829.011405: WPS: AP[0] 2c:91:ab:e0:30:35 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=2
1644347829.011430: WPS: AP[1] 2c:91:ab:e0:30:34 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347829.011454: WPS: AP[2] e0:28:6d:7e:94:3c type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347829.011477: WPS: AP[3] e0:28:6d:7e:94:3b type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347829.011500: WPS: AP[4] ea:df:70:07:6f:c2 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347829.011524: WPS: AP[5] e8:df:70:07:6f:c2 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347829.011555: wlan1: Radio work 'scan'@0x55a4885946c0 done in 0.136464 seconds
1644347829.011581: wlan1: radio_work_free('scan'@0x55a4885946c0): num_active_works --> 0
1644347829.011608: wlan1: CTRL-EVENT-SSID-REENABLED id=0 ssid="FRITZ!Box 7590 TC"
1644347829.011632: wlan1: Scan results matching the currently selected network
1644347829.011670: wlan1: 0: 2c:91:ab:e0:30:35 freq=5260 level=-48 snr=44 est_throughput=135000
1644347829.011702: wlan1: 1: 2c:91:ab:e0:30:34 freq=2437 level=-36 snr=53 est_throughput=65000
1644347829.011733: wlan1: 2: e0:28:6d:7e:94:3c freq=2437 level=-66 snr=23 est_throughput=62400
1644347829.011763: wlan1: 3: e0:28:6d:7e:94:3b freq=5260 level=-79 snr=13 est_throughput=47250
1644347829.011791: wlan1: Selecting BSS from priority group 0
1644347829.011824: wlan1: 0: 2c:91:ab:e0:30:35 ssid='FRITZ!Box 7590 TC' wpa_ie_len=0 rsn_ie_len=24 caps=0x1511 level=-48 freq=5260  wps
1644347829.011850: wlan1:    selected based on RSN IE
1644347829.011878: wlan1:    selected current BSS 2c:91:ab:e0:30:35 ssid='FRITZ!Box 7590 TC'
1644347829.011913: wlan1: Considering connect request: reassociate: 0  selected: 2c:91:ab:e0:30:35  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid=0x55a488595780  current_ssid=0x55a488595780
1644347829.011939: wlan1: Request association with 2c:91:ab:e0:30:35
1644347829.011962: wlan1: Re-association to the same ESS
1644347829.011984: WMM AC: Save last configured tspecs
1644347829.012009: unknown vendor specific information element ignored (vendor OUI 00:03:7f len=9)
1644347829.012032: unknown vendor specific information element ignored (vendor OUI 00:04:0e len=12)
1644347829.012055: unknown vendor specific information element ignored (vendor OUI 00:03:7f len=7)
1644347829.012077: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=22)
1644347829.012100: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=8)
1644347829.012122: TDLS: TDLS is allowed in the target BSS
1644347829.012143: TDLS: TDLS channel switch allowed in the target BSS
1644347829.012166: wlan1: No ongoing scan/p2p-scan found to abort
1644347829.012191: wlan1: Add radio work 'sme-connect'@0x55a4885946c0
1644347829.012215: wlan1: First radio work item in the queue - schedule start immediately
1644347829.012259: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347829.012413: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/0
1644347829.012544: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/1
1644347829.012613: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/2
1644347829.012690: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/3
1644347829.012780: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/6
1644347829.012821: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/7
1644347829.012861: wlan1: Starting radio work 'sme-connect'@0x55a4885946c0 after 0.000646 second wait
1644347829.012873: wlan1: WPA: clearing own WPA/RSN IE
1644347829.012883: wlan1: RSN: clearing own RSNXE
1644347829.012893: wlan1: Automatic auth_alg selection: 0x1
1644347829.012902: wlan1: Overriding auth_alg selection: 0x1
1644347829.012911: wlan1: Using SAE auth_alg
1644347829.012926: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x0
1644347829.012941: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347829.012956: RSN: PMKSA cache entry found - PMKID - hexdump(len=16): 85 2a 3b e9 a2 2d 70 1a 5e 9e c6 30 4b 10 0c 67
1644347829.012968: RSN: Trying to use cached PMKSA
1644347829.012978: wlan1: RSN: using IEEE 802.11i/D9.0
1644347829.012989: wlan1: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1026 proto 2
1644347829.013000: wlan1: WPA: Selected mgmt group cipher 32
1644347829.013014: wlan1: WPA: clearing AP WPA IE
1644347829.013022: WPA: set AP RSN IE - hexdump(len=26): 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347829.013035: wlan1: WPA: clearing AP RSNXE
1644347829.013044: wlan1: WPA: AP group 0x10 network profile group 0x18; available group 0x10
1644347829.013054: wlan1: WPA: using GTK CCMP
1644347829.013063: wlan1: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
1644347829.013072: wlan1: WPA: using PTK CCMP
1644347829.013082: wlan1: WPA: AP key_mgmt 0x402 network profile key_mgmt 0x502; available key_mgmt 0x402
1644347829.013091: wlan1: RSN: using KEY_MGMT SAE
1644347829.013101: wlan1: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
1644347829.013110: wlan1: WPA: not using MGMT group cipher
1644347829.013119: 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 85 2a 3b e9 a2 2d 70 1a 5e 9e c6 30 4b 10 0c 67
1644347829.013132: RSN: Set own RSNXE default - hexdump(len=0):
1644347829.013140: PSK (set in config) - hexdump(len=32): [REMOVED]
1644347829.013149: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347829.013157: RRM: Determining whether RRM can be used - device support: 0x10
1644347829.013166: RRM: Adding RRM IE to Association Request
1644347829.013180: Added supported operating classes IE - hexdump(len=19): 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347829.013192: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x400
1644347829.013201: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347829.013210: RSN: PMKSA cache entry found - PMKID - hexdump(len=16): 85 2a 3b e9 a2 2d 70 1a 5e 9e c6 30 4b 10 0c 67
1644347829.013220: wlan1: PMKSA cache entry found - try to use PMKSA caching instead of new SAE authentication
1644347829.013229: WPA: Set PMK based on current PMKSA - hexdump(len=32): [REMOVED]
1644347829.013237: EAPOL: External notification - EAP success=0
1644347829.013247: EAPOL: External notification - EAP fail=0
1644347829.013256: EAPOL: External notification - portControl=Auto
1644347829.013265: wlan1: Cancelling scan request
1644347829.013276: wlan1: SME: Trying to authenticate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347829.013285: EAPOL: External notification - portValid=0
1644347829.013305: wlan1: State: SCANNING -> AUTHENTICATING
1644347829.013333: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
1644347829.013346: wlan1: Determining shared radio frequencies (max len 1)
1644347829.013355: wlan1: Shared frequencies (len=0): completed iteration
1644347829.013365: nl80211: Authenticate (ifindex=3)
1644347829.013378:   * bssid=2c:91:ab:e0:30:35
1644347829.013387:   * freq=5260
1644347829.013396:   * SSID=FRITZ!Box 7590 TC
1644347829.013405:   * IEs - hexdump(len=0): [NULL]
1644347829.013419:   * Auth Type 0
1644347829.016063: nl80211: Authentication request send successfully
1644347829.016133: nl80211: Event message available
1644347829.016170: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan1
1644347829.016195: nl80211: New station 2c:91:ab:e0:30:35
1644347829.018415: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347829.087179: nl80211: Event message available
1644347829.087314: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan1
1644347829.087349: nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347829.087379: nl80211: MLME event frame - hexdump(len=30): b0 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 f0 d0 00 00 02 00 00 00
1644347829.087414: nl80211: Authenticate event
1644347829.087446: wlan1: Event AUTH (10) received
1644347829.087481: wlan1: SME: Authentication response: peer=2c:91:ab:e0:30:35 auth_type=0 auth_transaction=2 status_code=0
1644347829.087507: SME: Authentication response IEs - hexdump(len=0): [NULL]
1644347829.087537: SME: Association Request IEs - hexdump(len=79): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 85 2a 3b e9 a2 2d 70 1a 5e 9e c6 30 4b 10 0c 67 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347829.087592: wlan1: Trying to associate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347829.087625: wlan1: State: AUTHENTICATING -> ASSOCIATING
1644347829.087652: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347829.087679: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347829.087822: 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 85 2a 3b e9 a2 2d 70 1a 5e 9e c6 30 4b 10 0c 67
1644347829.087878: wlan1: RSN: clearing own RSNXE
1644347829.087910: nl80211: Associate (ifindex=3)
1644347829.087927:   * bssid=2c:91:ab:e0:30:35
1644347829.087942:   * freq=5260
1644347829.087955:   * SSID=FRITZ!Box 7590 TC
1644347829.087967:   * IEs - hexdump(len=79): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 85 2a 3b e9 a2 2d 70 1a 5e 9e c6 30 4b 10 0c 67 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347829.088013:   * WPA Versions 0x2
1644347829.088039:   * pairwise=0xfac04
1644347829.088066:   * group=0xfac04
1644347829.088093:   * akm=0xfac08
1644347829.088189: nl80211: Association request send successfully
1644347829.104968: nl80211: Event message available
1644347829.105104: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan1
1644347829.105137: nl80211: Delete station 2c:91:ab:e0:30:35
1644347829.107960: nl80211: Event message available
1644347829.108085: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan1
1644347829.108117: nl80211: MLME event 38 (NL80211_CMD_ASSOCIATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347829.108147: nl80211: MLME event frame - hexdump(len=196): 10 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 00 d1 11 15 28 00 01 43 01 08 8c 12 98 24 b0 48 60 6c 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 08 8c fd f0 01 01 02 01 00 dd 18 00 50 f2 04 10 4a 00 01 10 10 3b 00 01 03 10 49 00 06 00 37 2a 00 01 20 dd 07 00 03 7f 05 01 00 01
1644347829.108265: nl80211: Associate event
1644347829.108299: wlan1: Event ASSOC_REJECT (12) received
1644347829.108333: wlan1: CTRL-EVENT-ASSOC-REJECT bssid=2c:91:ab:e0:30:35 status_code=40
1644347829.108513: wlan1: SME: Association with 2c:91:ab:e0:30:35 failed: status code 40
1644347829.108553: wlan1: PMKSA caching attempt rejected - drop PMKSA cache entry and fall back to SAE authentication
1644347829.108590: wlan1: RSN: Cancelling PMKSA caching attempt
1644347829.108601: RSN: Flush PMKSA cache entry for 2c:91:ab:e0:30:35
1644347829.108617: wlan1: PMKSA-CACHE-REMOVED 2c:91:ab:e0:30:35 0
1644347829.108629: nl80211: Delete PMKID for 2c:91:ab:e0:30:35
1644347829.108677: nl80211: NL80211_CMD_DEL_PMKSA failed: -95 (Operation not supported)
1644347829.108697: wlan1: RSN: PMKSA cache entry free_cb: 2c:91:ab:e0:30:35 reason=0
1644347829.108710: wpa_driver_nl80211_deauthenticate(addr=2c:91:ab:e0:30:35 reason_code=3)
1644347829.108749: wlan1: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
1644347829.108800: wlan1: Radio work 'sme-connect'@0x55a4885946c0 done in 0.095937 seconds
1644347829.108827: wlan1: radio_work_free('sme-connect'@0x55a4885946c0): num_active_works --> 0
1644347829.108894: nl80211: Data frame filter flags=0x0
1644347829.108965: nl80211: Failed to open /proc/sys/net/ipv4/conf/wlan1/drop_unicast_in_l2_multicast: Read-only file system
1644347829.108999: nl80211: Failed to set IPv4 unicast in multicast filter
1644347829.109038: wlan1: State: ASSOCIATING -> DISCONNECTED
1644347829.109073: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347829.109143: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347829.109336: EAPOL: External notification - portEnabled=0
1644347829.109390: EAPOL: External notification - portValid=0
1644347829.109413: EAPOL: External notification - EAP success=0
1644347829.109444: wlan1: Considering connect request: reassociate: 0  selected: 2c:91:ab:e0:30:35  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: DISCONNECTED  ssid=0x55a488595780  current_ssid=(nil)
1644347829.109455: wlan1: Request association with 2c:91:ab:e0:30:35
1644347829.109464: wlan1: Re-association to the same ESS
1644347829.109474: unknown vendor specific information element ignored (vendor OUI 00:03:7f len=9)
1644347829.109506: unknown vendor specific information element ignored (vendor OUI 00:04:0e len=12)
1644347829.109529: unknown vendor specific information element ignored (vendor OUI 00:03:7f len=7)
1644347829.109552: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=22)
1644347829.109574: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=8)
1644347829.109596: TDLS: TDLS is allowed in the target BSS
1644347829.109618: TDLS: TDLS channel switch allowed in the target BSS
1644347829.109641: wlan1: No ongoing scan/p2p-scan found to abort
1644347829.109666: wlan1: Add radio work 'sme-connect'@0x55a48859e580
1644347829.109690: wlan1: First radio work item in the queue - schedule start immediately
1644347829.109733: wlan1: Starting radio work 'sme-connect'@0x55a48859e580 after 0.000040 second wait
1644347829.109760: wlan1: WPA: clearing own WPA/RSN IE
1644347829.109783: wlan1: RSN: clearing own RSNXE
1644347829.109809: wlan1: Automatic auth_alg selection: 0x1
1644347829.109832: wlan1: Overriding auth_alg selection: 0x1
1644347829.109857: wlan1: Using SAE auth_alg
1644347829.109880: RSN: PMKSA cache search - network_ctx=(nil) try_opportunistic=0 akmp=0x0
1644347829.109902: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347829.109925: RSN: No PMKSA cache entry found
1644347829.109949: wlan1: RSN: using IEEE 802.11i/D9.0
1644347829.109974: wlan1: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1026 proto 2
1644347829.110031: wlan1: WPA: Selected mgmt group cipher 32
1644347829.110057: wlan1: WPA: clearing AP WPA IE
1644347829.110079: WPA: set AP RSN IE - hexdump(len=26): 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347829.110111: wlan1: WPA: clearing AP RSNXE
1644347829.110136: wlan1: WPA: AP group 0x10 network profile group 0x18; available group 0x10
1644347829.110160: wlan1: WPA: using GTK CCMP
1644347829.110184: wlan1: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
1644347829.110207: wlan1: WPA: using PTK CCMP
1644347829.110231: wlan1: WPA: AP key_mgmt 0x402 network profile key_mgmt 0x502; available key_mgmt 0x402
1644347829.110253: wlan1: RSN: using KEY_MGMT SAE
1644347829.110278: wlan1: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
1644347829.110301: wlan1: WPA: not using MGMT group cipher
1644347829.110324: 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
1644347829.110352: RSN: Set own RSNXE default - hexdump(len=0):
1644347829.110374: PSK (set in config) - hexdump(len=32): [REMOVED]
1644347829.110397: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347829.110419: RRM: Determining whether RRM can be used - device support: 0x10
1644347829.110441: RRM: Adding RRM IE to Association Request
1644347829.110475: Added supported operating classes IE - hexdump(len=19): 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347829.110505: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x400
1644347829.110528: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347829.110550: RSN: No PMKSA cache entry found
1644347829.110662: SAE: Selecting supported ECC group 19
1644347829.110691: wlan1: SME: Selected SAE group 19
1644347829.111003: SAE: password - hexdump_ascii(len=20): [REMOVED]
1644347829.111031: SAE: PWE derivation - addr1=c4:85:08:14:a1:b8 addr2=2c:91:ab:e0:30:35
1644347829.111056: SAE: counter = 001
1644347829.111093: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.111127: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.111262: SAE: pwd-seed result 1 found=0xff
1644347829.111290: SAE: counter = 002
1644347829.111320: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.111352: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.111479: SAE: pwd-seed result 1 found=0xff
1644347829.111505: SAE: counter = 003
1644347829.111535: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.111567: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.111693: SAE: pwd-seed result 0 found=0xff
1644347829.111719: SAE: counter = 004
1644347829.111748: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.111780: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.111905: SAE: pwd-seed result 1 found=0xff
1644347829.111930: SAE: counter = 005
1644347829.111960: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.111992: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.112116: SAE: pwd-seed result 1 found=0xff
1644347829.112142: SAE: counter = 006
1644347829.112172: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.112203: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.112328: SAE: pwd-seed result 0 found=0xff
1644347829.112354: SAE: counter = 007
1644347829.112384: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.112416: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.112540: SAE: pwd-seed result 0 found=0xff
1644347829.112566: SAE: counter = 008
1644347829.112596: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.112628: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.112755: SAE: pwd-seed result 1 found=0xff
1644347829.112801: SAE: counter = 009
1644347829.112832: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.112864: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.112991: SAE: pwd-seed result 1 found=0xff
1644347829.113017: SAE: counter = 010
1644347829.113047: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.113099: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.113227: SAE: pwd-seed result 0 found=0xff
1644347829.113254: SAE: counter = 011
1644347829.113284: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.113316: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.113441: SAE: pwd-seed result 1 found=0xff
1644347829.113467: SAE: counter = 012
1644347829.113497: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.113528: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.113653: SAE: pwd-seed result 1 found=0xff
1644347829.113679: SAE: counter = 013
1644347829.113709: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.113741: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.113866: SAE: pwd-seed result 0 found=0xff
1644347829.113892: SAE: counter = 014
1644347829.113922: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.113953: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.114078: SAE: pwd-seed result 1 found=0xff
1644347829.114104: SAE: counter = 015
1644347829.114134: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.114166: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.114291: SAE: pwd-seed result 0 found=0xff
1644347829.114317: SAE: counter = 016
1644347829.114347: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.114379: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.114507: SAE: pwd-seed result 1 found=0xff
1644347829.114533: SAE: counter = 017
1644347829.114563: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.114594: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.114719: SAE: pwd-seed result 1 found=0xff
1644347829.114745: SAE: counter = 018
1644347829.114775: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.114807: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.114932: SAE: pwd-seed result 0 found=0xff
1644347829.114958: SAE: counter = 019
1644347829.114988: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.115020: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.115144: SAE: pwd-seed result 0 found=0xff
1644347829.115170: SAE: counter = 020
1644347829.115200: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.115232: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.115357: SAE: pwd-seed result 1 found=0xff
1644347829.115383: SAE: counter = 021
1644347829.115413: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.115445: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.115569: SAE: pwd-seed result 1 found=0xff
1644347829.115595: SAE: counter = 022
1644347829.115625: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.115656: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.115781: SAE: pwd-seed result 1 found=0xff
1644347829.115807: SAE: counter = 023
1644347829.115836: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.115868: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.115993: SAE: pwd-seed result 0 found=0xff
1644347829.116019: SAE: counter = 024
1644347829.116049: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.116081: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.116209: SAE: pwd-seed result 1 found=0xff
1644347829.116235: SAE: counter = 025
1644347829.116264: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.116297: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.116421: SAE: pwd-seed result 0 found=0xff
1644347829.116447: SAE: counter = 026
1644347829.116477: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.116509: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.116633: SAE: pwd-seed result 1 found=0xff
1644347829.116659: SAE: counter = 027
1644347829.116689: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.116721: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.116847: SAE: pwd-seed result 1 found=0xff
1644347829.116877: SAE: counter = 028
1644347829.116907: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.116940: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.117065: SAE: pwd-seed result 0 found=0xff
1644347829.117092: SAE: counter = 029
1644347829.117122: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.117170: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.117298: SAE: pwd-seed result 0 found=0xff
1644347829.117324: SAE: counter = 030
1644347829.117354: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.117385: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.117510: SAE: pwd-seed result 0 found=0xff
1644347829.117536: SAE: counter = 031
1644347829.117566: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.117598: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.117722: SAE: pwd-seed result 1 found=0xff
1644347829.117749: SAE: counter = 032
1644347829.117778: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.117810: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.117938: SAE: pwd-seed result 1 found=0xff
1644347829.117964: SAE: counter = 033
1644347829.117993: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.118025: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.118150: SAE: pwd-seed result 0 found=0xff
1644347829.118177: SAE: counter = 034
1644347829.118207: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.118238: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.118363: SAE: pwd-seed result 1 found=0xff
1644347829.118389: SAE: counter = 035
1644347829.118419: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.118451: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.118576: SAE: pwd-seed result 0 found=0xff
1644347829.118602: SAE: counter = 036
1644347829.118631: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.118663: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.118788: SAE: pwd-seed result 1 found=0xff
1644347829.118814: SAE: counter = 037
1644347829.118844: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.118876: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.119000: SAE: pwd-seed result 0 found=0xff
1644347829.119026: SAE: counter = 038
1644347829.119055: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.119087: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.119212: SAE: pwd-seed result 1 found=0xff
1644347829.119238: SAE: counter = 039
1644347829.119267: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.119299: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.119424: SAE: pwd-seed result 0 found=0xff
1644347829.119450: SAE: counter = 040
1644347829.119480: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347829.119512: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347829.119640: SAE: pwd-seed result 1 found=0xff
1644347829.119747: SAE: PWE - hexdump(len=64): [REMOVED]
1644347829.120031: SAE: own commit-scalar - hexdump(len=32): 40 35 74 de a9 4f 6a a7 56 35 e6 64 ea d0 3d 7e e1 3c 3e dc 58 88 50 81 43 66 c6 01 84 af 47 22
1644347829.120086: SAE: own commit-element(x) - hexdump(len=32): 97 49 00 e0 47 f1 ef aa 75 f1 95 b8 b2 c0 24 f3 85 6f 87 a2 28 f8 29 94 b9 74 ea fb 8a 70 5b 6a
1644347829.120116: SAE: own commit-element(y) - hexdump(len=32): 57 a7 c4 79 5f c4 db 38 12 f0 cb ba 3f 5b f8 ba f2 90 48 dc fe 17 69 51 b5 eb fd 6b fb 02 05 09
1644347829.120146: EAPOL: External notification - EAP success=0
1644347829.120170: EAPOL: External notification - EAP fail=0
1644347829.120192: EAPOL: External notification - portControl=Auto
1644347829.120216: wlan1: Cancelling scan request
1644347829.120245: wlan1: SME: Trying to authenticate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347829.120267: EAPOL: External notification - portValid=0
1644347829.120291: wlan1: State: DISCONNECTED -> AUTHENTICATING
1644347829.120374: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
1644347829.120408: wlan1: Determining shared radio frequencies (max len 1)
1644347829.120433: wlan1: Shared frequencies (len=0): completed iteration
1644347829.120456: nl80211: Authenticate (ifindex=3)
1644347829.120485:   * bssid=2c:91:ab:e0:30:35
1644347829.120494:   * freq=5260
1644347829.120502:   * SSID=FRITZ!Box 7590 TC
1644347829.120525:   * IEs - hexdump(len=0): [NULL]
1644347829.120548:   * auth_data - hexdump(len=102): 01 00 00 00 13 00 40 35 74 de a9 4f 6a a7 56 35 e6 64 ea d0 3d 7e e1 3c 3e dc 58 88 50 81 43 66 c6 01 84 af 47 22 97 49 00 e0 47 f1 ef aa 75 f1 95 b8 b2 c0 24 f3 85 6f 87 a2 28 f8 29 94 b9 74 ea fb 8a 70 5b 6a 57 a7 c4 79 5f c4 db 38 12 f0 cb ba 3f 5b f8 ba f2 90 48 dc fe 17 69 51 b5 eb fd 6b fb 02 05 09
1644347829.120612:   * Auth Type 4
1644347829.124218: nl80211: Authentication request send successfully
1644347829.124300: nl80211: Event message available
1644347829.124344: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan1
1644347829.124375: nl80211: Ignore connect event (cmd=46) when using userspace SME
1644347829.124416: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347829.124590: nl80211: Event message available
1644347829.124642: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan1
1644347829.124656: nl80211: New station 2c:91:ab:e0:30:35
1644347829.467634: nl80211: Event message available
1644347829.467769: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan1
1644347829.467803: nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347829.467833: nl80211: MLME event frame - hexdump(len=128): b0 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 10 d1 03 00 01 00 00 00 13 00 7e d2 3c 41 d2 eb be 31 ce 6e 15 97 89 8a e1 93 a8 88 e0 5e 30 09 f3 84 9b 82 d7 52 40 c7 90 e6 36 b0 99 f5 f6 cf cd 30 bf 83 c0 80 42 f4 dd 84 c8 62 59 95 71 a7 03 a2 e1 54 b0 64 0f 56 e9 f3 2f f3 69 1b 57 74 24 88 2d 4e 9c 1a 64 85 ca ee ba b5 26 bb f9 f3 e7 97 b8 8e bb 11 95 82 d7 e8
1644347829.467889: nl80211: Authenticate event
1644347829.467921: wlan1: Event AUTH (10) received
1644347829.467956: wlan1: SME: Authentication response: peer=2c:91:ab:e0:30:35 auth_type=3 auth_transaction=1 status_code=0
1644347829.467981: SME: Authentication response IEs - hexdump(len=98): 13 00 7e d2 3c 41 d2 eb be 31 ce 6e 15 97 89 8a e1 93 a8 88 e0 5e 30 09 f3 84 9b 82 d7 52 40 c7 90 e6 36 b0 99 f5 f6 cf cd 30 bf 83 c0 80 42 f4 dd 84 c8 62 59 95 71 a7 03 a2 e1 54 b0 64 0f 56 e9 f3 2f f3 69 1b 57 74 24 88 2d 4e 9c 1a 64 85 ca ee ba b5 26 bb f9 f3 e7 97 b8 8e bb 11 95 82 d7 e8
1644347829.468033: wlan1: SME: SAE authentication transaction 1 status code 0
1644347829.468060: wlan1: SME SAE commit
1644347829.468090: SAE: Peer commit-scalar - hexdump(len=32): 7e d2 3c 41 d2 eb be 31 ce 6e 15 97 89 8a e1 93 a8 88 e0 5e 30 09 f3 84 9b 82 d7 52 40 c7 90 e6
1644347829.468126: SAE: Peer commit-element(x) - hexdump(len=32): 36 b0 99 f5 f6 cf cd 30 bf 83 c0 80 42 f4 dd 84 c8 62 59 95 71 a7 03 a2 e1 54 b0 64 0f 56 e9 f3
1644347829.468159: SAE: Peer commit-element(y) - hexdump(len=32): 2f f3 69 1b 57 74 24 88 2d 4e 9c 1a 64 85 ca ee ba b5 26 bb f9 f3 e7 97 b8 8e bb 11 95 82 d7 e8
1644347829.468211: SAE: Possible elements at the end of the frame - hexdump(len=0):
1644347829.468739: SAE: k - hexdump(len=32): [REMOVED]
1644347829.468804: SAE: salt for keyseed derivation - hexdump(len=32): 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 00 00 00 00 00 00 00
1644347829.468900: SAE: keyseed - hexdump(len=32): [REMOVED]
1644347829.468950: SAE: PMKID - hexdump(len=16): bf 07 b1 20 7c 3b 28 d9 24 a3 fb fc 74 5b 1f 12
1644347829.469026: SAE: KCK - hexdump(len=32): [REMOVED]
1644347829.469059: SAE: PMK - hexdump(len=32): [REMOVED]
1644347829.469091: wlan1: Automatic auth_alg selection: 0x1
1644347829.469119: wlan1: Overriding auth_alg selection: 0x1
1644347829.469148: wlan1: Using SAE auth_alg
1644347829.469174: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x0
1644347829.469202: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347829.469227: RSN: No PMKSA cache entry found
1644347829.469253: wlan1: RSN: using IEEE 802.11i/D9.0
1644347829.469282: wlan1: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1026 proto 2
1644347829.469311: wlan1: WPA: Selected mgmt group cipher 32
1644347829.469339: wlan1: WPA: clearing AP WPA IE
1644347829.469407: WPA: set AP RSN IE - hexdump(len=26): 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347829.469447: wlan1: WPA: clearing AP RSNXE
1644347829.469478: wlan1: WPA: AP group 0x10 network profile group 0x18; available group 0x10
1644347829.469506: wlan1: WPA: using GTK CCMP
1644347829.469537: wlan1: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
1644347829.469565: wlan1: WPA: using PTK CCMP
1644347829.469595: wlan1: WPA: AP key_mgmt 0x402 network profile key_mgmt 0x502; available key_mgmt 0x402
1644347829.469622: wlan1: RSN: using KEY_MGMT SAE
1644347829.469653: wlan1: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
1644347829.469680: wlan1: WPA: not using MGMT group cipher
1644347829.469709: 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
1644347829.469741: 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
1644347829.469773: RSN: Set own RSNXE default - hexdump(len=0):
1644347829.469798: PSK (set in config) - hexdump(len=32): [REMOVED]
1644347829.469823: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347829.469848: RRM: Determining whether RRM can be used - device support: 0x10
1644347829.469873: RRM: Adding RRM IE to Association Request
1644347829.469912: Added supported operating classes IE - hexdump(len=19): 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347829.469945: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x400
1644347829.469972: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347829.469998: RSN: No PMKSA cache entry found
1644347829.470078: EAPOL: External notification - EAP success=0
1644347829.470110: EAPOL: External notification - EAP fail=0
1644347829.470135: EAPOL: External notification - portControl=Auto
1644347829.470162: wlan1: Cancelling scan request
1644347829.470195: wlan1: SME: Trying to authenticate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347829.470220: EAPOL: External notification - portValid=0
1644347829.470248: wlan1: State: AUTHENTICATING -> AUTHENTICATING
1644347829.470275: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
1644347829.470307: wlan1: Determining shared radio frequencies (max len 1)
1644347829.470335: wlan1: Shared frequencies (len=0): completed iteration
1644347829.470361: nl80211: Authenticate (ifindex=3)
1644347829.470394:   * bssid=2c:91:ab:e0:30:35
1644347829.470422:   * freq=5260
1644347829.470449:   * SSID=FRITZ!Box 7590 TC
1644347829.470473:   * IEs - hexdump(len=0): [NULL]
1644347829.470500:   * auth_data - hexdump(len=38): 02 00 00 00 01 00 62 e4 7d 4f cb ac ab 40 d0 7b 52 ec 4e 78 5b f2 85 a1 4f cf 4e 7e a6 7a 27 4c 83 78 9a 94 dc f0
1644347829.470536:   * Auth Type 4
1644347829.470671: nl80211: Authentication request send successfully
1644347829.584202: nl80211: Event message available
1644347829.584334: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan1
1644347829.584368: nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347829.584400: nl80211: MLME event frame - hexdump(len=64): b0 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 20 d1 03 00 02 00 00 00 00 00 95 27 2c 49 1e ae 0b d1 1f c2 37 e0 06 c8 01 02 f6 9f 44 18 34 5d cc ce df 48 f2 c1 05 1d 68 97
1644347829.584443: nl80211: Authenticate event
1644347829.584475: wlan1: Event AUTH (10) received
1644347829.584510: wlan1: SME: Authentication response: peer=2c:91:ab:e0:30:35 auth_type=3 auth_transaction=2 status_code=0
1644347829.584534: SME: Authentication response IEs - hexdump(len=34): 00 00 95 27 2c 49 1e ae 0b d1 1f c2 37 e0 06 c8 01 02 f6 9f 44 18 34 5d cc ce df 48 f2 c1 05 1d 68 97
1644347829.584574: wlan1: SME: SAE authentication transaction 2 status code 0
1644347829.584601: wlan1: SME SAE confirm
1644347829.584627: SAE: peer-send-confirm 0
1644347829.584828: SME: SAE completed - setting PMK for 4-way handshake
1644347829.584894: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347829.584949: RSN: Added PMKSA cache entry for 2c:91:ab:e0:30:35 network_ctx=0x55a488595780 akmp=0x400
1644347829.584986: wlan1: PMKSA-CACHE-ADDED 2c:91:ab:e0:30:35 0
1644347829.585015: nl80211: Add PMKID for 2c:91:ab:e0:30:35
1644347829.585131: nl80211: NL80211_CMD_SET_PMKSA failed: -95 (Operation not supported)
1644347829.585166: SME: Association Request IEs - hexdump(len=61): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347829.585216: wlan1: Trying to associate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347829.585243: wlan1: State: AUTHENTICATING -> ASSOCIATING
1644347829.585268: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347829.585294: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347829.585426: 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
1644347829.585474: wlan1: RSN: clearing own RSNXE
1644347829.585502: nl80211: Associate (ifindex=3)
1644347829.585535:   * bssid=2c:91:ab:e0:30:35
1644347829.585549:   * freq=5260
1644347829.585561:   * SSID=FRITZ!Box 7590 TC
1644347829.585574:   * IEs - hexdump(len=61): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347829.585607:   * WPA Versions 0x2
1644347829.585634:   * pairwise=0xfac04
1644347829.585660:   * group=0xfac04
1644347829.585685:   * akm=0xfac08
1644347829.585772: nl80211: Association request send successfully
1644347829.616936: nl80211: Event message available
1644347829.617075: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan1
1644347829.617110: nl80211: Delete station 2c:91:ab:e0:30:35
1644347829.619884: nl80211: Event message available
1644347829.620011: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan1
1644347829.620043: nl80211: MLME event 38 (NL80211_CMD_ASSOCIATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347829.620073: nl80211: MLME event frame - hexdump(len=196): 10 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 30 d1 11 15 28 00 0f 24 01 08 8c 12 98 24 b0 48 60 6c 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 08 8c fd f0 01 01 02 01 00 dd 18 00 50 f2 04 10 4a 00 01 10 10 3b 00 01 03 10 49 00 06 00 37 2a 00 01 20 dd 07 00 03 7f 05 01 00 01
1644347829.620149: nl80211: Associate event
1644347829.620180: wlan1: Event ASSOC_REJECT (12) received
1644347829.620214: wlan1: CTRL-EVENT-ASSOC-REJECT bssid=2c:91:ab:e0:30:35 status_code=40
1644347829.620392: wlan1: SME: Association with 2c:91:ab:e0:30:35 failed: status code 40
1644347829.620429: wpa_driver_nl80211_deauthenticate(addr=2c:91:ab:e0:30:35 reason_code=3)
1644347829.620503: wlan1: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
1644347829.620520: wlan1: SME: Deauth request to the driver failed
1644347829.620534: wlan1: Radio work 'sme-connect'@0x55a48859e580 done in 0.510803 seconds
1644347829.620548: wlan1: radio_work_free('sme-connect'@0x55a48859e580): num_active_works --> 0
1644347829.620561: BSSID 2c:91:ab:e0:30:35 ignore list count incremented to 3, ignoring for 60 seconds
1644347829.620575: Continuous association failures - consider temporary network disabling
1644347829.620591: wlan1: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="FRITZ!Box 7590 TC" auth_failures=2 duration=20 reason=CONN_FAILED
1644347829.620607: wlan1: Consecutive connection failures: 7 --> request scan in 10000 ms
1644347829.620647: wlan1: Setting scan request: 10.000000 sec
1644347829.620663: wlan1: State: ASSOCIATING -> DISCONNECTED
1644347829.620688: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347829.620703: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347829.620789: nl80211: Event message available
1644347829.620830: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan1
1644347829.620840: nl80211: Ignore connect event (cmd=46) when using userspace SME
1644347829.625896: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347839.622944: wlan1: State: DISCONNECTED -> SCANNING
1644347839.623140: Scan SSID - hexdump_ascii(len=17):
     46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54   FRITZ!Box 7590 T
     43                                                C               
1644347839.623231: wlan1: Starting AP scan for wildcard SSID
1644347839.623250: wlan1: Add radio work 'scan'@0x55a4885a3e20
1644347839.623265: wlan1: First radio work item in the queue - schedule start immediately
1644347839.623288: wlan1: Starting radio work 'scan'@0x55a4885a3e20 after 0.000021 second wait
1644347839.623355: wlan1: nl80211: scan request
1644347839.623402: nl80211: Scan SSID FRITZ!Box 7590 TC
1644347839.623441: nl80211: Scan SSID 
1644347839.623453: nl80211: Scan extra IEs - hexdump(len=13): 7f 0b 00 00 00 00 01 00 40 40 00 00 20
1644347839.624944: Scan requested (ret=0) - scan timeout 30 seconds
1644347839.625054: nl80211: Event message available
1644347839.625097: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan1
1644347839.625132: wlan1: nl80211: Scan trigger
1644347839.625161: wlan1: Event SCAN_STARTED (47) received
1644347839.625190: wlan1: Own scan request started a scan in 0.000152 seconds
1644347839.628284: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347841.369186: dbus: fi.w1.wpa_supplicant1.Interface.Disconnect (/fi/w1/wpa_supplicant1/Interfaces/1) []
1644347841.369297: wlan1: Cancelling scan request
1644347841.369358: wlan1: Request to deauthenticate - bssid=00:00:00:00:00:00 pending_bssid=00:00:00:00:00:00 reason=3 (DEAUTH_LEAVING) state=SCANNING
1644347841.369399: TDLS: Tear down peers
1644347841.369474: nl80211: Data frame filter flags=0x0
1644347841.369518: nl80211: Failed to open /proc/sys/net/ipv4/conf/wlan1/drop_unicast_in_l2_multicast: Read-only file system
1644347841.369536: nl80211: Failed to set IPv4 unicast in multicast filter
1644347841.369554: wlan1: State: SCANNING -> DISCONNECTED
1644347841.369593: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347841.369613: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347841.369665: EAPOL: External notification - portEnabled=0
1644347841.369687: EAPOL: External notification - portValid=0
1644347841.369703: EAPOL: External notification - EAP success=0
1644347841.369720: QM: Clear all active DSCP policies
1644347841.369737: wlan1: CTRL-EVENT-DSCP-POLICY clear_all
1644347841.369859: dbus: fi.w1.wpa_supplicant1.Interface.RemoveNetwork (/fi/w1/wpa_supplicant1/Interfaces/1) [o]
1644347841.369886: RSN: Flush PMKSA cache entry for 2c:91:ab:e0:30:35
1644347841.369907: wlan1: PMKSA-CACHE-REMOVED 2c:91:ab:e0:30:35 0
1644347841.369922: nl80211: Delete PMKID for 2c:91:ab:e0:30:35
1644347841.369962: nl80211: NL80211_CMD_DEL_PMKSA failed: -95 (Operation not supported)
1644347841.369987: wlan1: RSN: PMKSA cache entry free_cb: 2c:91:ab:e0:30:35 reason=0
1644347841.370004: wlan1: RSN: removed current PMKSA entry
1644347841.370020: RSN: Clear current PMKSA entry selection
1644347841.370042: wlan1: Request to deauthenticate - bssid=00:00:00:00:00:00 pending_bssid=00:00:00:00:00:00 reason=1 (UNSPECIFIED) state=DISCONNECTED
1644347841.370058: TDLS: Tear down peers
1644347841.370098: nl80211: Data frame filter flags=0x0
1644347841.370133: nl80211: Failed to open /proc/sys/net/ipv4/conf/wlan1/drop_unicast_in_l2_multicast: Read-only file system
1644347841.370172: nl80211: Failed to set IPv4 unicast in multicast filter
1644347841.370191: wlan1: State: DISCONNECTED -> DISCONNECTED
1644347841.370207: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347841.370224: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347841.370246: EAPOL: External notification - portEnabled=0
1644347841.370287: EAPOL: External notification - portValid=0
1644347841.370327: QM: Clear all active DSCP policies
1644347841.370369: wlan1: CTRL-EVENT-DSCP-POLICY clear_all
1644347841.370414: wlan1: Setting scan request: 5.000000 sec
1644347841.370460: dbus: Unregister network object '/fi/w1/wpa_supplicant1/Interfaces/1/Networks/0'
1644347841.370795: dbus: fi.w1.wpa_supplicant1.Interface.Disconnect (/fi/w1/wpa_supplicant1/Interfaces/1) []
1644347841.370969: dbus: org.freedesktop.DBus.Properties.Set (/fi/w1/wpa_supplicant1/Interfaces/1) [ssv]
1644347841.371027: properties_get_or_set: Set(ProcessCredentials)
1644347841.374309: dbus: fi.w1.wpa_supplicant1.Interface.WPS.Start (/fi/w1/wpa_supplicant1/Interfaces/1) [a{sv}]
1644347841.374412: dbus: Register network object '/fi/w1/wpa_supplicant1/Interfaces/1/Networks/0'
1644347841.374713: key_mgmt: 0x200
1644347841.374759: eap methods - hexdump(len=16): 2a 37 00 00 01 00 00 00 00 00 00 00 00 00 00 00
1644347841.374792: identity - hexdump_ascii(len=29):
     57 46 41 2d 53 69 6d 70 6c 65 43 6f 6e 66 69 67   WFA-SimpleConfig
     2d 45 6e 72 6f 6c 6c 65 65 2d 31 2d 30            -Enrollee-1-0   
1644347841.374878: phase1 - hexdump_ascii(len=5):
     70 62 63 3d 31                                    pbc=1           
1644347841.374918: wlan1: WPS-PBC-ACTIVE 
1644347841.374948: wlan1: Rescheduling scan request: 0.000000 sec
1644347841.375091: wlan1: State: DISCONNECTED -> SCANNING
1644347841.375183: wlan1: Starting AP scan for wildcard SSID
1644347841.375232: wlan1: WPS: Scan only frequency 5260 MHz
1644347841.375280: WPS: Building WPS IE for Probe Request
1644347841.375324: WPS:  * Version (hardcoded 0x10)
1644347841.375362: WPS:  * Request Type
1644347841.375399: WPS:  * Config Methods (3148)
1644347841.375437: WPS:  * UUID-E
1644347841.375476: WPS:  * Primary Device Type
1644347841.375497: WPS:  * RF Bands (3)
1644347841.375527: WPS:  * Association State
1644347841.375564: WPS:  * Configuration Error (0)
1644347841.375603: WPS:  * Device Password ID (4)
1644347841.375641: WPS:  * Manufacturer
1644347841.375679: WPS:  * Model Name
1644347841.375717: WPS:  * Model Number
1644347841.375754: WPS:  * Device Name
1644347841.375792: WPS:  * Version2 (0x20)
1644347841.375827: WPS:  * Request to Enroll (1)
1644347841.375885: wlan1: Reject scan trigger since one is already pending
1644347841.375930: wlan1: Failed to initiate AP scan
1644347841.375972: wlan1: State: SCANNING -> DISCONNECTED
1644347841.376004: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347841.376029: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347841.376142: wlan1: Setting scan request: 1.000000 sec
1644347841.377654: dbus: fi.w1.wpa_supplicant1.Interface.WPS.Cancel (/fi/w1/wpa_supplicant1/Interfaces/1) []
1644347841.377696: WPS: Cancel operation - cancel scan
1644347841.377717: wlan1: Cancelling scan request
1644347841.377739: dbus: Unregister network object '/fi/w1/wpa_supplicant1/Interfaces/1/Networks/0'
1644347841.377790: wlan1: WPS-CANCEL 
1644347841.379023: dbus: org.freedesktop.DBus.Properties.Set (/fi/w1/wpa_supplicant1/Interfaces/1) [ssv]
1644347841.379088: properties_get_or_set: Set(BridgeIfname)
1644347841.379188: dbus: org.freedesktop.DBus.Properties.Set (/fi/w1/wpa_supplicant1/Interfaces/1) [ssv]
1644347841.379221: properties_get_or_set: Set(ApScan)
1644347841.379401: dbus: org.freedesktop.DBus.Properties.Set (/fi/w1/wpa_supplicant1/Interfaces/1) [ssv]
1644347841.379454: properties_get_or_set: Set(ApIsolate)
1644347841.379501: ap_isolate=0
1644347841.385444: dbus: fi.w1.wpa_supplicant1.Interface.AddNetwork (/fi/w1/wpa_supplicant1/Interfaces/1) [a{sv}]
1644347841.385560: dbus: Register network object '/fi/w1/wpa_supplicant1/Interfaces/1/Networks/0'
1644347841.385797: wpa_dbus_dict_open_read: start reading a dict entry
1644347841.385830: wpa_dbus_dict_get_entry: dict entry key: psk
1644347841.385854: wpa_dbus_dict_get_entry: dict entry variant content type: s
1644347841.385877: _wpa_dbus_dict_fill_value_from_variant: string value: [omitted]
1644347841.385904: PSK (ASCII passphrase) - hexdump_ascii(len=20): [REMOVED]
1644347841.385931: wpa_dbus_dict_get_entry: dict entry key: scan_ssid
1644347841.385954: wpa_dbus_dict_get_entry: dict entry variant content type: i
1644347841.385976: _wpa_dbus_dict_fill_value_from_variant: int32 value: 1
1644347841.386002: scan_ssid=1 (0x1)
1644347841.386026: wpa_dbus_dict_get_entry: dict entry key: key_mgmt
1644347841.386049: wpa_dbus_dict_get_entry: dict entry variant content type: s
1644347841.386070: _wpa_dbus_dict_fill_value_from_variant: string value: [omitted]
1644347841.386095: key_mgmt: 0x502
1644347841.386118: wpa_dbus_dict_get_entry: dict entry key: bgscan
1644347841.386140: wpa_dbus_dict_get_entry: dict entry variant content type: a
1644347841.386162: _wpa_dbus_dict_entry_get_array: array_type y
1644347841.386209: dbus: byte array contents - hexdump(len=19): [REMOVED]
1644347841.386272: bgscan - hexdump_ascii(len=19):
     73 69 6d 70 6c 65 3a 33 30 3a 2d 37 30 3a 38 36   simple:30:-70:86
     34 30 30                                          400             
1644347841.386369: wpa_dbus_dict_get_entry: dict entry key: ssid
1644347841.386409: wpa_dbus_dict_get_entry: dict entry variant content type: a
1644347841.386451: _wpa_dbus_dict_entry_get_array: array_type y
1644347841.386500: dbus: byte array contents - hexdump(len=17): [REMOVED]
1644347841.386553: ssid - hexdump_ascii(len=17):
     46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54   FRITZ!Box 7590 T
     43                                                C               
1644347841.396562: PSK (from passphrase) - hexdump(len=32): [REMOVED]
1644347841.396603: wpa_dbus_dict_get_entry: dict entry key: auth_alg
1644347841.396627: wpa_dbus_dict_get_entry: dict entry variant content type: s
1644347841.396650: _wpa_dbus_dict_fill_value_from_variant: string value: [omitted]
1644347841.396676: auth_alg: 0x1
1644347841.397783: dbus: fi.w1.wpa_supplicant1.Interface.SelectNetwork (/fi/w1/wpa_supplicant1/Interfaces/1) [o]
1644347841.397855: Fast associate: Old scan results
1644347841.397884: wlan1: Setting scan request: 0.000000 sec
1644347841.398095: wlan1: State: DISCONNECTED -> SCANNING
1644347841.398165: Scan SSID - hexdump_ascii(len=17):
     46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54   FRITZ!Box 7590 T
     43                                                C               
1644347841.398223: wlan1: Starting AP scan for wildcard SSID
1644347841.398251: wlan1: Reject scan trigger since one is already pending
1644347841.398286: wlan1: Failed to initiate AP scan
1644347841.398327: wlan1: State: SCANNING -> DISCONNECTED
1644347841.398366: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347841.398406: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347841.398535: wlan1: Setting scan request: 1.000000 sec
1644347841.403310: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347842.399701: wlan1: State: DISCONNECTED -> SCANNING
1644347842.399899: Scan SSID - hexdump_ascii(len=17):
     46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54   FRITZ!Box 7590 T
     43                                                C               
1644347842.399992: wlan1: Starting AP scan for wildcard SSID
1644347842.400019: wlan1: Reject scan trigger since one is already pending
1644347842.400032: wlan1: Failed to initiate AP scan
1644347842.400046: wlan1: State: SCANNING -> DISCONNECTED
1644347842.400058: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347842.400084: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347842.400193: wlan1: Setting scan request: 1.000000 sec
1644347842.404995: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347842.838313: RTM_NEWLINK: ifi_index=3 ifname=wlan1 wext ifi_family=0 ifi_flags=0x1003 ([UP])
1644347842.838504: nl80211: Event message available
1644347842.838626: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan1
1644347842.838664: wlan1: nl80211: New scan results available
1644347842.838696: nl80211: Scan probed for SSID 'FRITZ!Box 7590 TC'
1644347842.838727: nl80211: Scan probed for SSID ''
1644347842.838816: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 5180 5200 5220 5240 5260 5280 5300 5320 5500 5520 5540 5560 5580 5600 5620 5640 5660 5680 5700 5745 5765 5785 5805 5825
1644347842.838846: wlan1: Event SCAN_RESULTS (3) received
1644347842.838877: wlan1: Scan completed in 3.213687 seconds
1644347842.839044: nl80211: Received scan results (6 BSSes)
1644347842.839134: Sorted scan results
1644347842.839166: 2c:91:ab:e0:30:35 freq=5260 qual=0 noise=-92~ level=-48 snr=44* flags=0xb age=2184 est=135000
1644347842.839200: IEs - hexdump(len=458): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff 61 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347842.839342: Beacon IEs - hexdump(len=382): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff c4 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347842.839464: 2c:91:ab:e0:30:34 freq=2437 qual=0 noise=-89~ level=-31 snr=58* flags=0xb age=2992 est=65000
1644347842.839493: IEs - hexdump(len=365): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 0f 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347842.839643: Beacon IEs - hexdump(len=289): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 10 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347842.839745: e0:28:6d:7e:94:3c freq=2437 qual=0 noise=-89~ level=-65 snr=24 flags=0xb age=2988 est=63700
1644347842.839774: IEs - hexdump(len=455): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 05 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fd 0c 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c dd 08 8c fd f0 01 01 02 01 00
1644347842.839911: Beacon IEs - hexdump(len=379): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 0a 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fe b5 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c
1644347842.840045: e0:28:6d:7e:94:3b freq=5260 qual=0 noise=-92~ level=-78 snr=14 flags=0xb age=2188 est=54000
1644347842.840075: IEs - hexdump(len=491): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff b9 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347842.840220: Beacon IEs - hexdump(len=415): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff 8b 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00
1644347842.840347: e8:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-85 snr=4 flags=0xb age=3208 est=10833
1644347842.840375: IEs - hexdump(len=300): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 09 e8 5a 0f d4 6d ec 63 ca 08 e8 df 70 07 6f c2 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347842.840485: Beacon IEs - hexdump(len=212): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347842.840565: ea:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-86 snr=3 flags=0xb age=3200 est=8666
1644347842.840592: IEs - hexdump(len=312): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 0d 6c e1 a2 99 69 66 06 3c 4c d5 04 45 20 1d 8a 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347842.840693: Beacon IEs - hexdump(len=224): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347842.840816: wlan1: BSS: Start scan result update 8
1644347842.840939: BSS: last_scan_res_used=6/32
1644347842.840975: wlan1: New scan results available (own=1 ext=0)
1644347842.841053: WPS: attr type=0x104a len=1
1644347842.841089: WPS: attr type=0x1044 len=1
1644347842.841116: WPS: attr type=0x103b len=1
1644347842.841153: WPS: attr type=0x1047 len=16
1644347842.841165: WPS: attr type=0x1021 len=3
1644347842.841178: WPS: attr type=0x1023 len=4
1644347842.841190: WPS: attr type=0x1024 len=4
1644347842.841203: WPS: attr type=0x1042 len=4
1644347842.841214: WPS: attr type=0x1054 len=8
1644347842.841247: WPS: attr type=0x1011 len=4
1644347842.841273: WPS: attr type=0x1008 len=2
1644347842.841299: WPS: attr type=0x103c len=1
1644347842.841325: WPS: attr type=0x1049 len=6
1644347842.841350: WPS: WFA subelement id=0 len=1
1644347842.841377: WPS: attr type=0x104a len=1
1644347842.841402: WPS: attr type=0x1044 len=1
1644347842.841427: WPS: attr type=0x103b len=1
1644347842.841452: WPS: attr type=0x1047 len=16
1644347842.841476: WPS: attr type=0x1021 len=3
1644347842.841501: WPS: attr type=0x1023 len=4
1644347842.841524: WPS: attr type=0x1024 len=4
1644347842.841549: WPS: attr type=0x1042 len=4
1644347842.841573: WPS: attr type=0x1054 len=8
1644347842.841622: WPS: attr type=0x1011 len=4
1644347842.841649: WPS: attr type=0x1008 len=2
1644347842.841676: WPS: attr type=0x103c len=1
1644347842.841701: WPS: attr type=0x1049 len=6
1644347842.841728: WPS: WFA subelement id=0 len=1
1644347842.841755: WPS: attr type=0x104a len=1
1644347842.841782: WPS: attr type=0x1044 len=1
1644347842.841807: WPS: attr type=0x103b len=1
1644347842.841833: WPS: attr type=0x1047 len=16
1644347842.841859: WPS: attr type=0x1021 len=3
1644347842.841885: WPS: attr type=0x1023 len=4
1644347842.841910: WPS: attr type=0x1024 len=4
1644347842.841936: WPS: attr type=0x1042 len=4
1644347842.841961: WPS: attr type=0x1054 len=8
1644347842.841987: WPS: attr type=0x1011 len=4
1644347842.842014: WPS: attr type=0x1008 len=2
1644347842.842040: WPS: attr type=0x103c len=1
1644347842.842066: WPS: attr type=0x1049 len=6
1644347842.842093: WPS: WFA subelement id=0 len=1
1644347842.842122: WPS: attr type=0x104a len=1
1644347842.842149: WPS: attr type=0x1044 len=1
1644347842.842176: WPS: attr type=0x103b len=1
1644347842.842202: WPS: attr type=0x1047 len=16
1644347842.842228: WPS: attr type=0x1021 len=3
1644347842.842255: WPS: attr type=0x1023 len=4
1644347842.842281: WPS: attr type=0x1024 len=4
1644347842.842307: WPS: attr type=0x1042 len=4
1644347842.842333: WPS: attr type=0x1054 len=8
1644347842.842359: WPS: attr type=0x1011 len=4
1644347842.842384: WPS: attr type=0x1008 len=2
1644347842.842409: WPS: attr type=0x103c len=1
1644347842.842434: WPS: attr type=0x1049 len=6
1644347842.842460: WPS: WFA subelement id=0 len=1
1644347842.842486: WPS: attr type=0x104a len=1
1644347842.842513: WPS: attr type=0x1044 len=1
1644347842.842538: WPS: attr type=0x103b len=1
1644347842.842564: WPS: attr type=0x1047 len=16
1644347842.842590: WPS: attr type=0x1021 len=3
1644347842.842616: WPS: attr type=0x1023 len=4
1644347842.842642: WPS: attr type=0x1024 len=4
1644347842.842667: WPS: attr type=0x1042 len=4
1644347842.842692: WPS: attr type=0x1054 len=8
1644347842.842717: WPS: attr type=0x1011 len=4
1644347842.842741: WPS: attr type=0x1008 len=2
1644347842.842766: WPS: attr type=0x103c len=1
1644347842.842791: WPS: attr type=0x1049 len=6
1644347842.842817: WPS: WFA subelement id=0 len=1
1644347842.842842: WPS: attr type=0x104a len=1
1644347842.842867: WPS: attr type=0x1044 len=1
1644347842.842893: WPS: attr type=0x103b len=1
1644347842.842917: WPS: attr type=0x1047 len=16
1644347842.842943: WPS: attr type=0x1021 len=3
1644347842.842968: WPS: attr type=0x1023 len=4
1644347842.842994: WPS: attr type=0x1024 len=4
1644347842.843019: WPS: attr type=0x1042 len=4
1644347842.843044: WPS: attr type=0x1054 len=8
1644347842.843070: WPS: attr type=0x1011 len=4
1644347842.843097: WPS: attr type=0x1008 len=2
1644347842.843123: WPS: attr type=0x103c len=1
1644347842.843149: WPS: attr type=0x1049 len=6
1644347842.843173: WPS: WFA subelement id=0 len=1
1644347842.843201: WPS: attr type=0x104a len=1
1644347842.843228: WPS: attr type=0x1044 len=1
1644347842.843254: WPS: attr type=0x103b len=1
1644347842.843281: WPS: attr type=0x1047 len=16
1644347842.843306: WPS: attr type=0x1021 len=3
1644347842.843330: WPS: attr type=0x1023 len=4
1644347842.843354: WPS: attr type=0x1024 len=4
1644347842.843379: WPS: attr type=0x1042 len=4
1644347842.843403: WPS: attr type=0x1054 len=8
1644347842.843428: WPS: attr type=0x1011 len=4
1644347842.843452: WPS: attr type=0x1008 len=2
1644347842.843477: WPS: attr type=0x103c len=1
1644347842.843502: WPS: attr type=0x1049 len=6
1644347842.843526: WPS: WFA subelement id=0 len=1
1644347842.843550: WPS: attr type=0x104a len=1
1644347842.843574: WPS: attr type=0x1044 len=1
1644347842.843599: WPS: attr type=0x103b len=1
1644347842.843624: WPS: attr type=0x1047 len=16
1644347842.843648: WPS: attr type=0x1021 len=3
1644347842.843673: WPS: attr type=0x1023 len=4
1644347842.843697: WPS: attr type=0x1024 len=4
1644347842.843721: WPS: attr type=0x1042 len=4
1644347842.843746: WPS: attr type=0x1054 len=8
1644347842.843771: WPS: attr type=0x1011 len=4
1644347842.843795: WPS: attr type=0x1008 len=2
1644347842.843820: WPS: attr type=0x103c len=1
1644347842.843860: WPS: attr type=0x1049 len=6
1644347842.843884: WPS: WFA subelement id=0 len=1
1644347842.843909: WPS: attr type=0x104a len=1
1644347842.843934: WPS: attr type=0x1044 len=1
1644347842.843958: WPS: attr type=0x103b len=1
1644347842.843982: WPS: attr type=0x1047 len=16
1644347842.844006: WPS: attr type=0x1021 len=3
1644347842.844031: WPS: attr type=0x1023 len=4
1644347842.844055: WPS: attr type=0x1024 len=4
1644347842.844080: WPS: attr type=0x1042 len=4
1644347842.844104: WPS: attr type=0x1054 len=8
1644347842.844128: WPS: attr type=0x1011 len=4
1644347842.844153: WPS: attr type=0x1008 len=2
1644347842.844177: WPS: attr type=0x103c len=1
1644347842.844202: WPS: attr type=0x1049 len=6
1644347842.844226: WPS: WFA subelement id=0 len=1
1644347842.844253: WPS: attr type=0x104a len=1
1644347842.844278: WPS: attr type=0x1044 len=1
1644347842.844303: WPS: attr type=0x103b len=1
1644347842.844327: WPS: attr type=0x1047 len=16
1644347842.844350: WPS: attr type=0x1021 len=3
1644347842.844375: WPS: attr type=0x1023 len=4
1644347842.844400: WPS: attr type=0x1024 len=4
1644347842.844424: WPS: attr type=0x1042 len=4
1644347842.844449: WPS: attr type=0x1054 len=8
1644347842.844473: WPS: attr type=0x1011 len=4
1644347842.844497: WPS: attr type=0x1008 len=2
1644347842.844522: WPS: attr type=0x103c len=1
1644347842.844546: WPS: attr type=0x1049 len=6
1644347842.844570: WPS: WFA subelement id=0 len=1
1644347842.844594: WPS: attr type=0x104a len=1
1644347842.844619: WPS: attr type=0x1044 len=1
1644347842.844643: WPS: attr type=0x103b len=1
1644347842.844668: WPS: attr type=0x1047 len=16
1644347842.844692: WPS: attr type=0x1021 len=3
1644347842.844716: WPS: attr type=0x1023 len=4
1644347842.844741: WPS: attr type=0x1024 len=4
1644347842.844765: WPS: attr type=0x1042 len=4
1644347842.844811: WPS: attr type=0x1054 len=8
1644347842.844840: WPS: attr type=0x1011 len=4
1644347842.844866: WPS: attr type=0x1008 len=2
1644347842.844893: WPS: attr type=0x103c len=1
1644347842.844918: WPS: attr type=0x1049 len=6
1644347842.844944: WPS: WFA subelement id=0 len=1
1644347842.844970: WPS: attr type=0x104a len=1
1644347842.844996: WPS: attr type=0x1044 len=1
1644347842.845022: WPS: attr type=0x103b len=1
1644347842.845046: WPS: attr type=0x1047 len=16
1644347842.845071: WPS: attr type=0x1021 len=3
1644347842.845097: WPS: attr type=0x1023 len=4
1644347842.845122: WPS: attr type=0x1024 len=4
1644347842.845148: WPS: attr type=0x1042 len=4
1644347842.845173: WPS: attr type=0x1054 len=8
1644347842.845199: WPS: attr type=0x1011 len=4
1644347842.845224: WPS: attr type=0x1008 len=2
1644347842.845251: WPS: attr type=0x103c len=1
1644347842.845277: WPS: attr type=0x1049 len=6
1644347842.845303: WPS: WFA subelement id=0 len=1
1644347842.845330: WPS: attr type=0x104a len=1
1644347842.845358: WPS: attr type=0x1044 len=1
1644347842.845384: WPS: attr type=0x103b len=1
1644347842.845409: WPS: attr type=0x1047 len=16
1644347842.845435: WPS: attr type=0x1021 len=3
1644347842.845461: WPS: attr type=0x1023 len=4
1644347842.845486: WPS: attr type=0x1024 len=4
1644347842.845512: WPS: attr type=0x1042 len=4
1644347842.845540: WPS: attr type=0x1054 len=8
1644347842.845566: WPS: attr type=0x1011 len=4
1644347842.845592: WPS: attr type=0x1008 len=2
1644347842.845618: WPS: attr type=0x103c len=1
1644347842.845644: WPS: attr type=0x1049 len=6
1644347842.845672: WPS: WFA subelement id=0 len=1
1644347842.845698: WPS: attr type=0x104a len=1
1644347842.845723: WPS: attr type=0x1044 len=1
1644347842.845747: WPS: attr type=0x103b len=1
1644347842.845773: WPS: attr type=0x1047 len=16
1644347842.845799: WPS: attr type=0x1021 len=3
1644347842.845825: WPS: attr type=0x1023 len=4
1644347842.845850: WPS: attr type=0x1024 len=4
1644347842.845875: WPS: attr type=0x1042 len=4
1644347842.845900: WPS: attr type=0x1054 len=8
1644347842.845924: WPS: attr type=0x1011 len=4
1644347842.845948: WPS: attr type=0x1008 len=2
1644347842.845973: WPS: attr type=0x103c len=1
1644347842.845997: WPS: attr type=0x1049 len=6
1644347842.846021: WPS: WFA subelement id=0 len=1
1644347842.846061: WPS: attr type=0x104a len=1
1644347842.846089: WPS: attr type=0x1044 len=1
1644347842.846115: WPS: attr type=0x103b len=1
1644347842.846140: WPS: attr type=0x1047 len=16
1644347842.846165: WPS: attr type=0x1021 len=3
1644347842.846192: WPS: attr type=0x1023 len=4
1644347842.846218: WPS: attr type=0x1024 len=4
1644347842.846244: WPS: attr type=0x1042 len=4
1644347842.846269: WPS: attr type=0x1054 len=8
1644347842.846295: WPS: attr type=0x1011 len=4
1644347842.846321: WPS: attr type=0x1008 len=2
1644347842.846347: WPS: attr type=0x103c len=1
1644347842.846374: WPS: attr type=0x1049 len=6
1644347842.846400: WPS: WFA subelement id=0 len=1
1644347842.846428: WPS: attr type=0x104a len=1
1644347842.846454: WPS: attr type=0x1044 len=1
1644347842.846479: WPS: attr type=0x103b len=1
1644347842.846505: WPS: attr type=0x1047 len=16
1644347842.846531: WPS: attr type=0x1021 len=3
1644347842.846558: WPS: attr type=0x1023 len=4
1644347842.846584: WPS: attr type=0x1024 len=4
1644347842.846610: WPS: attr type=0x1042 len=4
1644347842.846636: WPS: attr type=0x1054 len=8
1644347842.846661: WPS: attr type=0x1011 len=4
1644347842.846687: WPS: attr type=0x1008 len=2
1644347842.846712: WPS: attr type=0x103c len=1
1644347842.846739: WPS: attr type=0x1049 len=6
1644347842.846765: WPS: WFA subelement id=0 len=1
1644347842.846790: WPS: attr type=0x104a len=1
1644347842.846815: WPS: attr type=0x1044 len=1
1644347842.846839: WPS: attr type=0x103b len=1
1644347842.846863: WPS: attr type=0x1047 len=16
1644347842.846888: WPS: attr type=0x1021 len=3
1644347842.846912: WPS: attr type=0x1023 len=4
1644347842.846936: WPS: attr type=0x1024 len=4
1644347842.846960: WPS: attr type=0x1042 len=4
1644347842.846985: WPS: attr type=0x1054 len=8
1644347842.847009: WPS: attr type=0x1011 len=4
1644347842.847033: WPS: attr type=0x1008 len=2
1644347842.847057: WPS: attr type=0x103c len=1
1644347842.847081: WPS: attr type=0x1049 len=6
1644347842.847105: WPS: WFA subelement id=0 len=1
1644347842.847129: WPS: attr type=0x104a len=1
1644347842.847154: WPS: attr type=0x1044 len=1
1644347842.847178: WPS: attr type=0x103b len=1
1644347842.847203: WPS: attr type=0x1047 len=16
1644347842.847227: WPS: attr type=0x1021 len=3
1644347842.847251: WPS: attr type=0x1023 len=4
1644347842.847275: WPS: attr type=0x1024 len=4
1644347842.847299: WPS: attr type=0x1042 len=4
1644347842.847324: WPS: attr type=0x1054 len=8
1644347842.847348: WPS: attr type=0x1011 len=4
1644347842.847372: WPS: attr type=0x1008 len=2
1644347842.847396: WPS: attr type=0x103c len=1
1644347842.847420: WPS: attr type=0x1049 len=6
1644347842.847444: WPS: WFA subelement id=0 len=1
1644347842.847519: WPS: attr type=0x104a len=1
1644347842.847553: WPS: attr type=0x1044 len=1
1644347842.847582: WPS: attr type=0x103b len=1
1644347842.847612: WPS: attr type=0x1047 len=16
1644347842.847638: WPS: attr type=0x1021 len=3
1644347842.847652: WPS: attr type=0x1023 len=4
1644347842.847662: WPS: attr type=0x1024 len=4
1644347842.847670: WPS: attr type=0x1042 len=4
1644347842.847678: WPS: attr type=0x1054 len=8
1644347842.847686: WPS: attr type=0x1011 len=4
1644347842.847694: WPS: attr type=0x1008 len=2
1644347842.847702: WPS: attr type=0x103c len=1
1644347842.847710: WPS: attr type=0x1049 len=6
1644347842.847718: WPS: WFA subelement id=0 len=1
1644347842.847726: WPS: attr type=0x104a len=1
1644347842.847734: WPS: attr type=0x1044 len=1
1644347842.847742: WPS: attr type=0x103b len=1
1644347842.847749: WPS: attr type=0x1047 len=16
1644347842.847757: WPS: attr type=0x1021 len=3
1644347842.847765: WPS: attr type=0x1023 len=4
1644347842.847777: WPS: attr type=0x1024 len=4
1644347842.847791: WPS: attr type=0x1042 len=4
1644347842.847818: WPS: attr type=0x1054 len=8
1644347842.847855: WPS: attr type=0x1011 len=4
1644347842.847892: WPS: attr type=0x1008 len=2
1644347842.847928: WPS: attr type=0x103c len=1
1644347842.847965: WPS: attr type=0x1049 len=6
1644347842.848001: WPS: WFA subelement id=0 len=1
1644347842.848038: WPS: attr type=0x104a len=1
1644347842.848077: WPS: attr type=0x1044 len=1
1644347842.848114: WPS: attr type=0x103b len=1
1644347842.848165: WPS: attr type=0x1047 len=16
1644347842.848187: WPS: attr type=0x1021 len=3
1644347842.848209: WPS: attr type=0x1023 len=4
1644347842.848230: WPS: attr type=0x1024 len=4
1644347842.848251: WPS: attr type=0x1042 len=4
1644347842.848271: WPS: attr type=0x1054 len=8
1644347842.848292: WPS: attr type=0x1011 len=4
1644347842.848313: WPS: attr type=0x1008 len=2
1644347842.848334: WPS: attr type=0x103c len=1
1644347842.848355: WPS: attr type=0x1049 len=6
1644347842.848376: WPS: WFA subelement id=0 len=1
1644347842.848399: WPS: AP 2c:91:ab:e0:30:35 type 0 added
1644347842.848425: WPS: attr type=0x104a len=1
1644347842.848447: WPS: attr type=0x1044 len=1
1644347842.848468: WPS: attr type=0x103b len=1
1644347842.848489: WPS: attr type=0x1047 len=16
1644347842.848510: WPS: attr type=0x1021 len=3
1644347842.848531: WPS: attr type=0x1023 len=4
1644347842.848552: WPS: attr type=0x1024 len=4
1644347842.848573: WPS: attr type=0x1042 len=4
1644347842.848594: WPS: attr type=0x1054 len=8
1644347842.848615: WPS: attr type=0x1011 len=4
1644347842.848636: WPS: attr type=0x1008 len=2
1644347842.848657: WPS: attr type=0x103c len=1
1644347842.848678: WPS: attr type=0x1049 len=6
1644347842.848699: WPS: WFA subelement id=0 len=1
1644347842.848720: WPS: attr type=0x104a len=1
1644347842.848741: WPS: attr type=0x1044 len=1
1644347842.848762: WPS: attr type=0x103b len=1
1644347842.848799: WPS: attr type=0x1047 len=16
1644347842.848821: WPS: attr type=0x1021 len=3
1644347842.848842: WPS: attr type=0x1023 len=4
1644347842.848863: WPS: attr type=0x1024 len=4
1644347842.848884: WPS: attr type=0x1042 len=4
1644347842.848905: WPS: attr type=0x1054 len=8
1644347842.848926: WPS: attr type=0x1011 len=4
1644347842.848947: WPS: attr type=0x1008 len=2
1644347842.848968: WPS: attr type=0x103c len=1
1644347842.848989: WPS: attr type=0x1049 len=6
1644347842.849010: WPS: WFA subelement id=0 len=1
1644347842.849032: WPS: attr type=0x104a len=1
1644347842.849053: WPS: attr type=0x1044 len=1
1644347842.849074: WPS: attr type=0x103b len=1
1644347842.849095: WPS: attr type=0x1047 len=16
1644347842.849116: WPS: attr type=0x1021 len=3
1644347842.849137: WPS: attr type=0x1023 len=4
1644347842.849158: WPS: attr type=0x1024 len=4
1644347842.849179: WPS: attr type=0x1042 len=4
1644347842.849200: WPS: attr type=0x1054 len=8
1644347842.849222: WPS: attr type=0x1011 len=4
1644347842.849243: WPS: attr type=0x1008 len=2
1644347842.849264: WPS: attr type=0x103c len=1
1644347842.849285: WPS: attr type=0x1049 len=6
1644347842.849306: WPS: WFA subelement id=0 len=1
1644347842.849329: WPS: AP 2c:91:ab:e0:30:34 type 0 added
1644347842.849353: WPS: attr type=0x104a len=1
1644347842.849375: WPS: attr type=0x1044 len=1
1644347842.849396: WPS: attr type=0x103b len=1
1644347842.849417: WPS: attr type=0x1047 len=16
1644347842.849438: WPS: attr type=0x1021 len=3
1644347842.849459: WPS: attr type=0x1023 len=4
1644347842.849480: WPS: attr type=0x1024 len=4
1644347842.849501: WPS: attr type=0x1042 len=4
1644347842.849522: WPS: attr type=0x1054 len=8
1644347842.849542: WPS: attr type=0x1011 len=4
1644347842.849563: WPS: attr type=0x1008 len=2
1644347842.849584: WPS: attr type=0x103c len=1
1644347842.849605: WPS: attr type=0x1049 len=6
1644347842.849626: WPS: WFA subelement id=0 len=1
1644347842.849648: WPS: attr type=0x104a len=1
1644347842.849669: WPS: attr type=0x1044 len=1
1644347842.849690: WPS: attr type=0x103b len=1
1644347842.849711: WPS: attr type=0x1047 len=16
1644347842.849732: WPS: attr type=0x1021 len=3
1644347842.849753: WPS: attr type=0x1023 len=4
1644347842.849774: WPS: attr type=0x1024 len=4
1644347842.849795: WPS: attr type=0x1042 len=4
1644347842.849816: WPS: attr type=0x1054 len=8
1644347842.849837: WPS: attr type=0x1011 len=4
1644347842.849858: WPS: attr type=0x1008 len=2
1644347842.849879: WPS: attr type=0x103c len=1
1644347842.849900: WPS: attr type=0x1049 len=6
1644347842.849921: WPS: WFA subelement id=0 len=1
1644347842.849942: WPS: attr type=0x104a len=1
1644347842.849963: WPS: attr type=0x1044 len=1
1644347842.849984: WPS: attr type=0x103b len=1
1644347842.850018: WPS: attr type=0x1047 len=16
1644347842.850041: WPS: attr type=0x1021 len=3
1644347842.850062: WPS: attr type=0x1023 len=4
1644347842.850084: WPS: attr type=0x1024 len=4
1644347842.850105: WPS: attr type=0x1042 len=4
1644347842.850126: WPS: attr type=0x1054 len=8
1644347842.850146: WPS: attr type=0x1011 len=4
1644347842.850167: WPS: attr type=0x1008 len=2
1644347842.850188: WPS: attr type=0x103c len=1
1644347842.850209: WPS: attr type=0x1049 len=6
1644347842.850230: WPS: WFA subelement id=0 len=1
1644347842.850253: WPS: AP e0:28:6d:7e:94:3c type 0 added
1644347842.850277: WPS: attr type=0x104a len=1
1644347842.850299: WPS: attr type=0x1044 len=1
1644347842.850320: WPS: attr type=0x103b len=1
1644347842.850341: WPS: attr type=0x1047 len=16
1644347842.850362: WPS: attr type=0x1021 len=3
1644347842.850384: WPS: attr type=0x1023 len=4
1644347842.850405: WPS: attr type=0x1024 len=4
1644347842.850426: WPS: attr type=0x1042 len=4
1644347842.850447: WPS: attr type=0x1054 len=8
1644347842.850468: WPS: attr type=0x1011 len=4
1644347842.850489: WPS: attr type=0x1008 len=2
1644347842.850510: WPS: attr type=0x103c len=1
1644347842.850531: WPS: attr type=0x1049 len=6
1644347842.850551: WPS: WFA subelement id=0 len=1
1644347842.850573: WPS: attr type=0x104a len=1
1644347842.850594: WPS: attr type=0x1044 len=1
1644347842.850615: WPS: attr type=0x103b len=1
1644347842.850636: WPS: attr type=0x1047 len=16
1644347842.850657: WPS: attr type=0x1021 len=3
1644347842.850678: WPS: attr type=0x1023 len=4
1644347842.850700: WPS: attr type=0x1024 len=4
1644347842.850721: WPS: attr type=0x1042 len=4
1644347842.850742: WPS: attr type=0x1054 len=8
1644347842.850763: WPS: attr type=0x1011 len=4
1644347842.850784: WPS: attr type=0x1008 len=2
1644347842.850805: WPS: attr type=0x103c len=1
1644347842.850826: WPS: attr type=0x1049 len=6
1644347842.850847: WPS: WFA subelement id=0 len=1
1644347842.850868: WPS: attr type=0x104a len=1
1644347842.850890: WPS: attr type=0x1044 len=1
1644347842.850910: WPS: attr type=0x103b len=1
1644347842.850931: WPS: attr type=0x1047 len=16
1644347842.850952: WPS: attr type=0x1021 len=3
1644347842.850973: WPS: attr type=0x1023 len=4
1644347842.850994: WPS: attr type=0x1024 len=4
1644347842.851015: WPS: attr type=0x1042 len=4
1644347842.851036: WPS: attr type=0x1054 len=8
1644347842.851057: WPS: attr type=0x1011 len=4
1644347842.851078: WPS: attr type=0x1008 len=2
1644347842.851099: WPS: attr type=0x103c len=1
1644347842.851120: WPS: attr type=0x1049 len=6
1644347842.851141: WPS: WFA subelement id=0 len=1
1644347842.851163: WPS: AP e0:28:6d:7e:94:3b type 0 added
1644347842.851188: WPS: attr type=0x104a len=1
1644347842.851209: WPS: attr type=0x1044 len=1
1644347842.851231: WPS: attr type=0x103b len=1
1644347842.851252: WPS: attr type=0x1047 len=16
1644347842.851273: WPS: attr type=0x1021 len=3
1644347842.851294: WPS: attr type=0x1023 len=4
1644347842.851315: WPS: attr type=0x1024 len=4
1644347842.851336: WPS: attr type=0x1042 len=4
1644347842.851357: WPS: attr type=0x1054 len=8
1644347842.851378: WPS: attr type=0x1011 len=4
1644347842.851399: WPS: attr type=0x1008 len=2
1644347842.851420: WPS: attr type=0x103c len=1
1644347842.851441: WPS: attr type=0x1049 len=6
1644347842.851462: WPS: WFA subelement id=0 len=1
1644347842.851483: WPS: attr type=0x104a len=1
1644347842.851504: WPS: attr type=0x1044 len=1
1644347842.851525: WPS: attr type=0x103b len=1
1644347842.851546: WPS: attr type=0x1047 len=16
1644347842.851567: WPS: attr type=0x1021 len=3
1644347842.851588: WPS: attr type=0x1023 len=4
1644347842.851609: WPS: attr type=0x1024 len=4
1644347842.851630: WPS: attr type=0x1042 len=4
1644347842.851651: WPS: attr type=0x1054 len=8
1644347842.851672: WPS: attr type=0x1011 len=4
1644347842.851693: WPS: attr type=0x1008 len=2
1644347842.851714: WPS: attr type=0x103c len=1
1644347842.851735: WPS: attr type=0x1049 len=6
1644347842.851756: WPS: WFA subelement id=0 len=1
1644347842.851778: WPS: attr type=0x104a len=1
1644347842.851799: WPS: attr type=0x1044 len=1
1644347842.851820: WPS: attr type=0x103b len=1
1644347842.851852: WPS: attr type=0x1047 len=16
1644347842.851875: WPS: attr type=0x1021 len=3
1644347842.851897: WPS: attr type=0x1023 len=4
1644347842.851918: WPS: attr type=0x1024 len=4
1644347842.851939: WPS: attr type=0x1042 len=4
1644347842.851960: WPS: attr type=0x1054 len=8
1644347842.851981: WPS: attr type=0x1011 len=4
1644347842.852003: WPS: attr type=0x1008 len=2
1644347842.852024: WPS: attr type=0x103c len=1
1644347842.852045: WPS: attr type=0x1049 len=6
1644347842.852066: WPS: WFA subelement id=0 len=1
1644347842.852089: WPS: AP e8:df:70:07:6f:c2 type 0 added
1644347842.852114: WPS: attr type=0x104a len=1
1644347842.852136: WPS: attr type=0x1044 len=1
1644347842.852157: WPS: attr type=0x103b len=1
1644347842.852179: WPS: attr type=0x1047 len=16
1644347842.852200: WPS: attr type=0x1021 len=3
1644347842.852221: WPS: attr type=0x1023 len=4
1644347842.852242: WPS: attr type=0x1024 len=4
1644347842.852263: WPS: attr type=0x1042 len=4
1644347842.852284: WPS: attr type=0x1054 len=8
1644347842.852306: WPS: attr type=0x1011 len=4
1644347842.852327: WPS: attr type=0x1008 len=2
1644347842.852348: WPS: attr type=0x103c len=1
1644347842.852369: WPS: attr type=0x1049 len=6
1644347842.852390: WPS: WFA subelement id=0 len=1
1644347842.852411: WPS: attr type=0x104a len=1
1644347842.852433: WPS: attr type=0x1044 len=1
1644347842.852454: WPS: attr type=0x103b len=1
1644347842.852475: WPS: attr type=0x1047 len=16
1644347842.852496: WPS: attr type=0x1021 len=3
1644347842.852516: WPS: attr type=0x1023 len=4
1644347842.852537: WPS: attr type=0x1024 len=4
1644347842.852558: WPS: attr type=0x1042 len=4
1644347842.852579: WPS: attr type=0x1054 len=8
1644347842.852600: WPS: attr type=0x1011 len=4
1644347842.852620: WPS: attr type=0x1008 len=2
1644347842.852641: WPS: attr type=0x103c len=1
1644347842.852662: WPS: attr type=0x1049 len=6
1644347842.852683: WPS: WFA subelement id=0 len=1
1644347842.852705: WPS: attr type=0x104a len=1
1644347842.852726: WPS: attr type=0x1044 len=1
1644347842.852747: WPS: attr type=0x103b len=1
1644347842.852777: WPS: attr type=0x1047 len=16
1644347842.852800: WPS: attr type=0x1021 len=3
1644347842.852821: WPS: attr type=0x1023 len=4
1644347842.852843: WPS: attr type=0x1024 len=4
1644347842.852864: WPS: attr type=0x1042 len=4
1644347842.852885: WPS: attr type=0x1054 len=8
1644347842.852907: WPS: attr type=0x1011 len=4
1644347842.852928: WPS: attr type=0x1008 len=2
1644347842.852950: WPS: attr type=0x103c len=1
1644347842.852971: WPS: attr type=0x1049 len=6
1644347842.852992: WPS: WFA subelement id=0 len=1
1644347842.853015: WPS: AP ea:df:70:07:6f:c2 type 0 added
1644347842.853040: Removed BSSID 2c:91:ab:e0:30:35 from ignore list (clear)
1644347842.853063: WPS: AP[0] 2c:91:ab:e0:30:35 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347842.853087: WPS: AP[1] 2c:91:ab:e0:30:34 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347842.853110: WPS: AP[2] e0:28:6d:7e:94:3c type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347842.853133: WPS: AP[3] e0:28:6d:7e:94:3b type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347842.853156: WPS: AP[4] e8:df:70:07:6f:c2 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347842.853179: WPS: AP[5] ea:df:70:07:6f:c2 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347842.853210: wlan1: Radio work 'scan'@0x55a4885a3e20 done in 3.229920 seconds
1644347842.853236: wlan1: radio_work_free('scan'@0x55a4885a3e20): num_active_works --> 0
1644347842.853262: wlan1: Scan results matching the currently selected network
1644347842.853300: wlan1: 0: 2c:91:ab:e0:30:35 freq=5260 level=-48 snr=44 est_throughput=135000
1644347842.853333: wlan1: 1: 2c:91:ab:e0:30:34 freq=2437 level=-31 snr=58 est_throughput=65000
1644347842.853364: wlan1: 2: e0:28:6d:7e:94:3c freq=2437 level=-65 snr=24 est_throughput=63700
1644347842.853394: wlan1: 3: e0:28:6d:7e:94:3b freq=5260 level=-78 snr=14 est_throughput=54000
1644347842.853422: wlan1: Selecting BSS from priority group 0
1644347842.853455: wlan1: 0: 2c:91:ab:e0:30:35 ssid='FRITZ!Box 7590 TC' wpa_ie_len=0 rsn_ie_len=24 caps=0x1511 level=-48 freq=5260  wps
1644347842.853495: wlan1:    selected based on RSN IE
1644347842.853525: wlan1:    selected BSS 2c:91:ab:e0:30:35 ssid='FRITZ!Box 7590 TC'
1644347842.853560: wlan1: Considering connect request: reassociate: 1  selected: 2c:91:ab:e0:30:35  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: DISCONNECTED  ssid=0x55a488595780  current_ssid=0x55a488595780
1644347842.853586: wlan1: Request association with 2c:91:ab:e0:30:35
1644347842.853612: unknown vendor specific information element ignored (vendor OUI 00:03:7f len=9)
1644347842.853636: unknown vendor specific information element ignored (vendor OUI 00:04:0e len=12)
1644347842.853659: unknown vendor specific information element ignored (vendor OUI 00:03:7f len=7)
1644347842.853681: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=22)
1644347842.853704: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=8)
1644347842.853726: TDLS: TDLS is allowed in the target BSS
1644347842.853747: TDLS: TDLS channel switch allowed in the target BSS
1644347842.853770: wlan1: No ongoing scan/p2p-scan found to abort
1644347842.853795: wlan1: Add radio work 'sme-connect'@0x55a4885a3e20
1644347842.853818: wlan1: First radio work item in the queue - schedule start immediately
1644347842.853861: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/0
1644347842.854097: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/1
1644347842.854192: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/2
1644347842.854308: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/3
1644347842.854535: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/7
1644347842.854655: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/6
1644347842.854780: wlan1: Starting radio work 'sme-connect'@0x55a4885a3e20 after 0.000959 second wait
1644347842.854802: wlan1: WPA: clearing own WPA/RSN IE
1644347842.854812: wlan1: RSN: clearing own RSNXE
1644347842.854822: wlan1: Automatic auth_alg selection: 0x1
1644347842.854831: wlan1: Overriding auth_alg selection: 0x1
1644347842.854841: wlan1: Using SAE auth_alg
1644347842.854850: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x0
1644347842.854862: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347842.854878: RSN: No PMKSA cache entry found
1644347842.854894: wlan1: RSN: using IEEE 802.11i/D9.0
1644347842.854910: wlan1: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1026 proto 2
1644347842.854919: wlan1: WPA: Selected mgmt group cipher 32
1644347842.854929: wlan1: WPA: clearing AP WPA IE
1644347842.854937: WPA: set AP RSN IE - hexdump(len=26): 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347842.854950: wlan1: WPA: clearing AP RSNXE
1644347842.854959: wlan1: WPA: AP group 0x10 network profile group 0x18; available group 0x10
1644347842.854969: wlan1: WPA: using GTK CCMP
1644347842.854978: wlan1: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
1644347842.854988: wlan1: WPA: using PTK CCMP
1644347842.854997: wlan1: WPA: AP key_mgmt 0x402 network profile key_mgmt 0x502; available key_mgmt 0x402
1644347842.855006: wlan1: RSN: using KEY_MGMT SAE
1644347842.855016: wlan1: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
1644347842.855025: wlan1: WPA: not using MGMT group cipher
1644347842.855035: 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
1644347842.855046: RSN: Set own RSNXE default - hexdump(len=0):
1644347842.855055: PSK (set in config) - hexdump(len=32): [REMOVED]
1644347842.855077: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347842.855090: RRM: Determining whether RRM can be used - device support: 0x10
1644347842.855105: RRM: Adding RRM IE to Association Request
1644347842.855127: Added supported operating classes IE - hexdump(len=19): 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347842.855149: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x400
1644347842.855159: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347842.855167: RSN: No PMKSA cache entry found
1644347842.855218: SAE: Selecting supported ECC group 19
1644347842.855236: wlan1: SME: Selected SAE group 19
1644347842.855380: SAE: password - hexdump_ascii(len=20): [REMOVED]
1644347842.855395: SAE: PWE derivation - addr1=c4:85:08:14:a1:b8 addr2=2c:91:ab:e0:30:35
1644347842.855404: SAE: counter = 001
1644347842.855421: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.855434: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.855585: SAE: pwd-seed result 1 found=0xff
1644347842.855638: SAE: counter = 002
1644347842.855671: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.855693: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.855776: SAE: pwd-seed result 1 found=0xff
1644347842.855790: SAE: counter = 003
1644347842.855803: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.855816: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.855868: SAE: pwd-seed result 1 found=0xff
1644347842.855878: SAE: counter = 004
1644347842.855890: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.855904: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.855980: SAE: pwd-seed result 1 found=0xff
1644347842.855994: SAE: counter = 005
1644347842.856006: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.856019: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.856145: SAE: pwd-seed result 0 found=0xff
1644347842.856173: SAE: counter = 006
1644347842.856204: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.856255: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.856429: SAE: pwd-seed result 0 found=0xff
1644347842.856464: SAE: counter = 007
1644347842.856496: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.856528: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.856656: SAE: pwd-seed result 0 found=0xff
1644347842.856683: SAE: counter = 008
1644347842.856713: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.856745: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.856887: SAE: pwd-seed result 1 found=0xff
1644347842.856915: SAE: counter = 009
1644347842.856945: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.856978: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.857103: SAE: pwd-seed result 1 found=0xff
1644347842.857130: SAE: counter = 010
1644347842.857160: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.857192: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.857318: SAE: pwd-seed result 1 found=0xff
1644347842.857345: SAE: counter = 011
1644347842.857375: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.857407: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.857533: SAE: pwd-seed result 0 found=0xff
1644347842.857559: SAE: counter = 012
1644347842.857589: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.857621: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.857746: SAE: pwd-seed result 1 found=0xff
1644347842.857773: SAE: counter = 013
1644347842.857803: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.857835: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.857960: SAE: pwd-seed result 0 found=0xff
1644347842.857987: SAE: counter = 014
1644347842.858017: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.858049: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.858175: SAE: pwd-seed result 0 found=0xff
1644347842.858202: SAE: counter = 015
1644347842.858232: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.858264: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.858389: SAE: pwd-seed result 1 found=0xff
1644347842.858440: SAE: counter = 016
1644347842.858471: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.858503: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.858631: SAE: pwd-seed result 0 found=0xff
1644347842.858658: SAE: counter = 017
1644347842.858688: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.858721: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.858849: SAE: pwd-seed result 0 found=0xff
1644347842.858875: SAE: counter = 018
1644347842.858905: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.858938: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.859063: SAE: pwd-seed result 0 found=0xff
1644347842.859089: SAE: counter = 019
1644347842.859119: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.859151: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.859276: SAE: pwd-seed result 0 found=0xff
1644347842.859303: SAE: counter = 020
1644347842.859333: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.859366: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.859490: SAE: pwd-seed result 1 found=0xff
1644347842.859517: SAE: counter = 021
1644347842.859547: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.859579: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.859704: SAE: pwd-seed result 0 found=0xff
1644347842.859731: SAE: counter = 022
1644347842.859761: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.859793: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.859918: SAE: pwd-seed result 1 found=0xff
1644347842.859944: SAE: counter = 023
1644347842.859974: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.860006: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.860132: SAE: pwd-seed result 1 found=0xff
1644347842.860159: SAE: counter = 024
1644347842.860189: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.860221: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.860346: SAE: pwd-seed result 1 found=0xff
1644347842.860372: SAE: counter = 025
1644347842.860402: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.860434: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.860559: SAE: pwd-seed result 1 found=0xff
1644347842.860585: SAE: counter = 026
1644347842.860615: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.860648: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.860792: SAE: pwd-seed result 0 found=0xff
1644347842.860822: SAE: counter = 027
1644347842.860853: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.860884: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.861012: SAE: pwd-seed result 1 found=0xff
1644347842.861038: SAE: counter = 028
1644347842.861069: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.861101: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.861226: SAE: pwd-seed result 1 found=0xff
1644347842.861252: SAE: counter = 029
1644347842.861282: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.861314: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.861439: SAE: pwd-seed result 1 found=0xff
1644347842.861465: SAE: counter = 030
1644347842.861495: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.861527: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.861655: SAE: pwd-seed result 1 found=0xff
1644347842.861682: SAE: counter = 031
1644347842.861712: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.861744: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.861868: SAE: pwd-seed result 0 found=0xff
1644347842.861895: SAE: counter = 032
1644347842.861925: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.861957: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.862083: SAE: pwd-seed result 0 found=0xff
1644347842.862109: SAE: counter = 033
1644347842.862139: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.862171: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.862296: SAE: pwd-seed result 1 found=0xff
1644347842.862322: SAE: counter = 034
1644347842.862352: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.862384: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.862509: SAE: pwd-seed result 1 found=0xff
1644347842.862552: SAE: counter = 035
1644347842.862584: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.862616: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.862743: SAE: pwd-seed result 0 found=0xff
1644347842.862770: SAE: counter = 036
1644347842.862800: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.862832: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.862958: SAE: pwd-seed result 0 found=0xff
1644347842.862984: SAE: counter = 037
1644347842.863013: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.863045: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.863170: SAE: pwd-seed result 1 found=0xff
1644347842.863196: SAE: counter = 038
1644347842.863226: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.863258: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.863383: SAE: pwd-seed result 0 found=0xff
1644347842.863409: SAE: counter = 039
1644347842.863439: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.863471: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.863596: SAE: pwd-seed result 0 found=0xff
1644347842.863622: SAE: counter = 040
1644347842.863652: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347842.863684: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347842.863809: SAE: pwd-seed result 0 found=0xff
1644347842.863919: SAE: PWE - hexdump(len=64): [REMOVED]
1644347842.864203: SAE: own commit-scalar - hexdump(len=32): 44 f3 41 26 26 aa 0e 19 62 a0 ef 7a e2 f1 0c 97 26 cd cf a5 1f d4 af 2c d2 dc d7 11 ae 41 93 da
1644347842.864259: SAE: own commit-element(x) - hexdump(len=32): bb 63 79 ca 20 b9 97 50 60 94 1c 35 ac b5 97 d2 69 32 0b 33 2c cb 06 a0 1d c6 ab e3 52 06 bc a6
1644347842.864290: SAE: own commit-element(y) - hexdump(len=32): 1e 36 03 a9 43 41 5c 00 76 d0 48 9b 6b a4 6d 88 ed 10 fc 0d 90 11 f3 17 d7 b6 81 01 78 3b bc 31
1644347842.864321: EAPOL: External notification - EAP success=0
1644347842.864346: EAPOL: External notification - EAP fail=0
1644347842.864369: EAPOL: External notification - portControl=Auto
1644347842.864394: wlan1: Cancelling scan request
1644347842.864423: wlan1: SME: Trying to authenticate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347842.864445: EAPOL: External notification - portValid=0
1644347842.864471: wlan1: State: DISCONNECTED -> AUTHENTICATING
1644347842.864555: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
1644347842.864589: wlan1: Determining shared radio frequencies (max len 1)
1644347842.864614: wlan1: Shared frequencies (len=0): completed iteration
1644347842.864638: nl80211: Authenticate (ifindex=3)
1644347842.864665:   * bssid=2c:91:ab:e0:30:35
1644347842.864674:   * freq=5260
1644347842.864683:   * SSID=FRITZ!Box 7590 TC
1644347842.864705:   * IEs - hexdump(len=0): [NULL]
1644347842.864729:   * auth_data - hexdump(len=102): 01 00 00 00 13 00 44 f3 41 26 26 aa 0e 19 62 a0 ef 7a e2 f1 0c 97 26 cd cf a5 1f d4 af 2c d2 dc d7 11 ae 41 93 da bb 63 79 ca 20 b9 97 50 60 94 1c 35 ac b5 97 d2 69 32 0b 33 2c cb 06 a0 1d c6 ab e3 52 06 bc a6 1e 36 03 a9 43 41 5c 00 76 d0 48 9b 6b a4 6d 88 ed 10 fc 0d 90 11 f3 17 d7 b6 81 01 78 3b bc 31
1644347842.864795:   * Auth Type 4
1644347842.868333: nl80211: Authentication request send successfully
1644347842.868439: nl80211: Event message available
1644347842.868481: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan1
1644347842.868511: nl80211: New station 2c:91:ab:e0:30:35
1644347842.869631: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347843.189743: nl80211: Event message available
1644347843.189876: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan1
1644347843.189911: nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347843.189944: nl80211: MLME event frame - hexdump(len=128): b0 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 60 d1 03 00 01 00 00 00 13 00 f9 12 81 3d 38 cc ac c2 bf 32 83 f2 6b da b7 00 5d e7 e4 02 fd f3 6d a6 70 69 e1 7e 70 9a 64 9b 44 94 f9 51 b9 ed 42 39 e5 b0 5a 32 f2 ef b8 bf df bb d7 2b 99 f6 3d 67 3d 13 af 62 88 59 15 85 af 67 29 0c 06 dd 79 fe 64 0d f0 4e 7b b7 1f 5b 38 9f 5e 50 39 a9 1f 8a 02 1b ef 85 b7 47 c8 af
1644347843.190050: nl80211: Authenticate event
1644347843.190087: wlan1: Event AUTH (10) received
1644347843.190121: wlan1: SME: Authentication response: peer=2c:91:ab:e0:30:35 auth_type=3 auth_transaction=1 status_code=0
1644347843.190146: SME: Authentication response IEs - hexdump(len=98): 13 00 f9 12 81 3d 38 cc ac c2 bf 32 83 f2 6b da b7 00 5d e7 e4 02 fd f3 6d a6 70 69 e1 7e 70 9a 64 9b 44 94 f9 51 b9 ed 42 39 e5 b0 5a 32 f2 ef b8 bf df bb d7 2b 99 f6 3d 67 3d 13 af 62 88 59 15 85 af 67 29 0c 06 dd 79 fe 64 0d f0 4e 7b b7 1f 5b 38 9f 5e 50 39 a9 1f 8a 02 1b ef 85 b7 47 c8 af
1644347843.190197: wlan1: SME: SAE authentication transaction 1 status code 0
1644347843.190223: wlan1: SME SAE commit
1644347843.190254: SAE: Peer commit-scalar - hexdump(len=32): f9 12 81 3d 38 cc ac c2 bf 32 83 f2 6b da b7 00 5d e7 e4 02 fd f3 6d a6 70 69 e1 7e 70 9a 64 9b
1644347843.190290: SAE: Peer commit-element(x) - hexdump(len=32): 44 94 f9 51 b9 ed 42 39 e5 b0 5a 32 f2 ef b8 bf df bb d7 2b 99 f6 3d 67 3d 13 af 62 88 59 15 85
1644347843.190324: SAE: Peer commit-element(y) - hexdump(len=32): af 67 29 0c 06 dd 79 fe 64 0d f0 4e 7b b7 1f 5b 38 9f 5e 50 39 a9 1f 8a 02 1b ef 85 b7 47 c8 af
1644347843.190378: SAE: Possible elements at the end of the frame - hexdump(len=0):
1644347843.190879: SAE: k - hexdump(len=32): [REMOVED]
1644347843.190912: SAE: salt for keyseed derivation - hexdump(len=32): 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 00 00 00 00 00 00 00
1644347843.190968: SAE: keyseed - hexdump(len=32): [REMOVED]
1644347843.191004: SAE: PMKID - hexdump(len=16): 3e 05 c2 64 5f 76 ba db 21 d3 73 6d 4e cb c3 97
1644347843.191051: SAE: KCK - hexdump(len=32): [REMOVED]
1644347843.191084: SAE: PMK - hexdump(len=32): [REMOVED]
1644347843.191115: wlan1: Automatic auth_alg selection: 0x1
1644347843.191144: wlan1: Overriding auth_alg selection: 0x1
1644347843.191173: wlan1: Using SAE auth_alg
1644347843.191199: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x0
1644347843.191225: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347843.191251: RSN: No PMKSA cache entry found
1644347843.191277: wlan1: RSN: using IEEE 802.11i/D9.0
1644347843.191308: wlan1: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1026 proto 2
1644347843.191337: wlan1: WPA: Selected mgmt group cipher 32
1644347843.191366: wlan1: WPA: clearing AP WPA IE
1644347843.191393: WPA: set AP RSN IE - hexdump(len=26): 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347843.191428: wlan1: WPA: clearing AP RSNXE
1644347843.191456: wlan1: WPA: AP group 0x10 network profile group 0x18; available group 0x10
1644347843.191482: wlan1: WPA: using GTK CCMP
1644347843.191512: wlan1: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
1644347843.191540: wlan1: WPA: using PTK CCMP
1644347843.191571: wlan1: WPA: AP key_mgmt 0x402 network profile key_mgmt 0x502; available key_mgmt 0x402
1644347843.191599: wlan1: RSN: using KEY_MGMT SAE
1644347843.191630: wlan1: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
1644347843.191658: wlan1: WPA: not using MGMT group cipher
1644347843.191687: 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
1644347843.191721: 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
1644347843.191754: RSN: Set own RSNXE default - hexdump(len=0):
1644347843.191780: PSK (set in config) - hexdump(len=32): [REMOVED]
1644347843.191806: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347843.191832: RRM: Determining whether RRM can be used - device support: 0x10
1644347843.191857: RRM: Adding RRM IE to Association Request
1644347843.191918: Added supported operating classes IE - hexdump(len=19): 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347843.191955: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x400
1644347843.191983: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347843.192008: RSN: No PMKSA cache entry found
1644347843.192085: EAPOL: External notification - EAP success=0
1644347843.192118: EAPOL: External notification - EAP fail=0
1644347843.192144: EAPOL: External notification - portControl=Auto
1644347843.192172: wlan1: Cancelling scan request
1644347843.192205: wlan1: SME: Trying to authenticate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347843.192230: EAPOL: External notification - portValid=0
1644347843.192257: wlan1: State: AUTHENTICATING -> AUTHENTICATING
1644347843.192282: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
1644347843.192314: wlan1: Determining shared radio frequencies (max len 1)
1644347843.192343: wlan1: Shared frequencies (len=0): completed iteration
1644347843.192369: nl80211: Authenticate (ifindex=3)
1644347843.192403:   * bssid=2c:91:ab:e0:30:35
1644347843.192435:   * freq=5260
1644347843.192461:   * SSID=FRITZ!Box 7590 TC
1644347843.192485:   * IEs - hexdump(len=0): [NULL]
1644347843.192510:   * auth_data - hexdump(len=38): 02 00 00 00 01 00 33 ce e3 c7 06 f4 de 75 4a 08 b6 2d ee 1e c8 92 1a 60 aa c5 3c 86 88 3f a4 74 45 82 2f 7a 99 3b
1644347843.192544:   * Auth Type 4
1644347843.192675: nl80211: Authentication request send successfully
1644347843.307001: nl80211: Event message available
1644347843.307138: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan1
1644347843.307171: nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347843.307202: nl80211: MLME event frame - hexdump(len=64): b0 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 70 d1 03 00 02 00 00 00 00 00 82 a3 3c e4 17 39 98 fe 85 e0 ed 67 d8 c2 b5 41 a4 52 00 5b c4 37 e2 e4 0a e6 2b 19 39 47 6b ad
1644347843.307244: nl80211: Authenticate event
1644347843.307277: wlan1: Event AUTH (10) received
1644347843.307312: wlan1: SME: Authentication response: peer=2c:91:ab:e0:30:35 auth_type=3 auth_transaction=2 status_code=0
1644347843.307338: SME: Authentication response IEs - hexdump(len=34): 00 00 82 a3 3c e4 17 39 98 fe 85 e0 ed 67 d8 c2 b5 41 a4 52 00 5b c4 37 e2 e4 0a e6 2b 19 39 47 6b ad
1644347843.307378: wlan1: SME: SAE authentication transaction 2 status code 0
1644347843.307405: wlan1: SME SAE confirm
1644347843.307431: SAE: peer-send-confirm 0
1644347843.307538: SME: SAE completed - setting PMK for 4-way handshake
1644347843.307568: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347843.307599: RSN: Added PMKSA cache entry for 2c:91:ab:e0:30:35 network_ctx=0x55a488595780 akmp=0x400
1644347843.307633: wlan1: PMKSA-CACHE-ADDED 2c:91:ab:e0:30:35 0
1644347843.307657: nl80211: Add PMKID for 2c:91:ab:e0:30:35
1644347843.307758: nl80211: NL80211_CMD_SET_PMKSA failed: -95 (Operation not supported)
1644347843.307794: SME: Association Request IEs - hexdump(len=61): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347843.307843: wlan1: Trying to associate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347843.307872: wlan1: State: AUTHENTICATING -> ASSOCIATING
1644347843.307899: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347843.307927: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347843.308063: 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
1644347843.308112: wlan1: RSN: clearing own RSNXE
1644347843.308139: nl80211: Associate (ifindex=3)
1644347843.308171:   * bssid=2c:91:ab:e0:30:35
1644347843.308186:   * freq=5260
1644347843.308198:   * SSID=FRITZ!Box 7590 TC
1644347843.308255:   * IEs - hexdump(len=61): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347843.308297:   * WPA Versions 0x2
1644347843.308324:   * pairwise=0xfac04
1644347843.308350:   * group=0xfac04
1644347843.308376:   * akm=0xfac08
1644347843.308465: nl80211: Association request send successfully
1644347843.336968: nl80211: Event message available
1644347843.337105: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan1
1644347843.337138: nl80211: Delete station 2c:91:ab:e0:30:35
1644347843.339649: nl80211: Event message available
1644347843.339775: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan1
1644347843.339806: nl80211: MLME event 38 (NL80211_CMD_ASSOCIATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347843.339836: nl80211: MLME event frame - hexdump(len=196): 10 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 80 d1 11 15 28 00 01 43 01 08 8c 12 98 24 b0 48 60 6c 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 08 8c fd f0 01 01 02 01 00 dd 18 00 50 f2 04 10 4a 00 01 10 10 3b 00 01 03 10 49 00 06 00 37 2a 00 01 20 dd 07 00 03 7f 05 01 00 01
1644347843.339911: nl80211: Associate event
1644347843.339942: wlan1: Event ASSOC_REJECT (12) received
1644347843.339976: wlan1: CTRL-EVENT-ASSOC-REJECT bssid=2c:91:ab:e0:30:35 status_code=40
1644347843.340161: wlan1: SME: Association with 2c:91:ab:e0:30:35 failed: status code 40
1644347843.340198: wpa_driver_nl80211_deauthenticate(addr=2c:91:ab:e0:30:35 reason_code=3)
1644347843.340271: wlan1: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
1644347843.340288: wlan1: SME: Deauth request to the driver failed
1644347843.340302: wlan1: Radio work 'sme-connect'@0x55a4885a3e20 done in 0.485524 seconds
1644347843.340316: wlan1: radio_work_free('sme-connect'@0x55a4885a3e20): num_active_works --> 0
1644347843.340330: Added BSSID 2c:91:ab:e0:30:35 into ignore list, ignoring for 10 seconds
1644347843.340345: wlan1: Another BSS in this ESS has been seen; try it next
1644347843.340358: BSSID 2c:91:ab:e0:30:35 ignore list count incremented to 2, ignoring for 10 seconds
1644347843.340372: Continuous association failures - consider temporary network disabling
1644347843.340387: wlan1: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="FRITZ!Box 7590 TC" auth_failures=1 duration=10 reason=CONN_FAILED
1644347843.340401: wlan1: Consecutive connection failures: 8 --> request scan in 10000 ms
1644347843.340418: wlan1: Setting scan request: 10.000000 sec
1644347843.340432: wlan1: State: ASSOCIATING -> DISCONNECTED
1644347843.340445: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347843.340470: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347843.340564: nl80211: Event message available
1644347843.340621: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan1
1644347843.340661: nl80211: Ignore connect event (cmd=46) when using userspace SME
1644347843.345684: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347853.346417: wlan1: State: DISCONNECTED -> SCANNING
1644347853.346616: Scan SSID - hexdump_ascii(len=17):
     46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54   FRITZ!Box 7590 T
     43                                                C               
1644347853.346698: wlan1: Starting AP scan for wildcard SSID
1644347853.346730: wlan1: Optimize scan based on previously generated frequency list
1644347853.346745: wlan1: Add radio work 'scan'@0x55a4885a4340
1644347853.346758: wlan1: First radio work item in the queue - schedule start immediately
1644347853.346845: wlan1: Starting radio work 'scan'@0x55a4885a4340 after 0.000081 second wait
1644347853.346924: wlan1: nl80211: scan request
1644347853.346971: nl80211: Scan SSID FRITZ!Box 7590 TC
1644347853.347001: nl80211: Scan SSID 
1644347853.347026: nl80211: Scan extra IEs - hexdump(len=13): 7f 0b 00 00 00 00 01 00 40 40 00 00 20
1644347853.347041: nl80211: Scan frequency 2437 MHz
1644347853.347054: nl80211: Scan frequency 5260 MHz
1644347853.348716: Scan requested (ret=0) - scan timeout 30 seconds
1644347853.348856: nl80211: Event message available
1644347853.348901: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan1
1644347853.348935: wlan1: nl80211: Scan trigger
1644347853.348966: wlan1: Event SCAN_STARTED (47) received
1644347853.348995: wlan1: Own scan request started a scan in 0.000155 seconds
1644347853.351760: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347853.472709: RTM_NEWLINK: ifi_index=3 ifname=wlan1 wext ifi_family=0 ifi_flags=0x1003 ([UP])
1644347853.472909: nl80211: Event message available
1644347853.472984: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan1
1644347853.473026: wlan1: nl80211: New scan results available
1644347853.473054: nl80211: Scan probed for SSID 'FRITZ!Box 7590 TC'
1644347853.473077: nl80211: Scan probed for SSID ''
1644347853.473103: nl80211: Scan included frequencies: 2437 5260
1644347853.473130: wlan1: Event SCAN_RESULTS (3) received
1644347853.473158: wlan1: Scan completed in 0.124163 seconds
1644347853.473368: nl80211: Received scan results (6 BSSes)
1644347853.473430: Sorted scan results
1644347853.473463: 2c:91:ab:e0:30:35 freq=5260 qual=0 noise=-92~ level=-46 snr=46* flags=0xb age=20 est=135000
1644347853.473494: IEs - hexdump(len=458): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff 55 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347853.473634: Beacon IEs - hexdump(len=382): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff 6a 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347853.473797: 2c:91:ab:e0:30:34 freq=2437 qual=0 noise=-89~ level=-36 snr=53* flags=0xb age=108 est=65000
1644347853.473830: IEs - hexdump(len=365): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 0e 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347853.473946: Beacon IEs - hexdump(len=289): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 01 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 0e 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347853.474044: e0:28:6d:7e:94:3c freq=2437 qual=0 noise=-89~ level=-63 snr=26* flags=0xb age=108 est=65000
1644347853.474070: IEs - hexdump(len=455): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 0a 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 f2 a0 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c dd 08 8c fd f0 01 01 02 01 00
1644347853.474206: Beacon IEs - hexdump(len=379): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 0a 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fe b5 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c
1644347853.474341: e0:28:6d:7e:94:3b freq=5260 qual=0 noise=-92~ level=-79 snr=13 flags=0xb age=24 est=47250
1644347853.474371: IEs - hexdump(len=491): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff ce 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347853.474517: Beacon IEs - hexdump(len=415): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff 0a 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00
1644347853.474646: e8:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-85 snr=4 flags=0xb age=13844 est=10833
1644347853.474688: IEs - hexdump(len=300): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 09 e8 5a 0f d4 6d ec 63 ca 08 e8 df 70 07 6f c2 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347853.474789: Beacon IEs - hexdump(len=212): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347853.474867: ea:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-86 snr=3 flags=0xb age=13836 est=8666
1644347853.474895: IEs - hexdump(len=312): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 0d 6c e1 a2 99 69 66 06 3c 4c d5 04 45 20 1d 8a 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347853.474996: Beacon IEs - hexdump(len=224): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347853.475081: wlan1: BSS: Start scan result update 9
1644347853.475180: BSS: last_scan_res_used=6/32
1644347853.475215: wlan1: New scan results available (own=1 ext=0)
1644347853.475278: WPS: attr type=0x104a len=1
1644347853.475311: WPS: attr type=0x1044 len=1
1644347853.475340: WPS: attr type=0x103b len=1
1644347853.475377: WPS: attr type=0x1047 len=16
1644347853.475390: WPS: attr type=0x1021 len=3
1644347853.475404: WPS: attr type=0x1023 len=4
1644347853.475417: WPS: attr type=0x1024 len=4
1644347853.475437: WPS: attr type=0x1042 len=4
1644347853.475465: WPS: attr type=0x1054 len=8
1644347853.475489: WPS: attr type=0x1011 len=4
1644347853.475538: WPS: attr type=0x1008 len=2
1644347853.475564: WPS: attr type=0x103c len=1
1644347853.475589: WPS: attr type=0x1049 len=6
1644347853.475614: WPS: WFA subelement id=0 len=1
1644347853.475639: WPS: attr type=0x104a len=1
1644347853.475664: WPS: attr type=0x1044 len=1
1644347853.475689: WPS: attr type=0x103b len=1
1644347853.475714: WPS: attr type=0x1047 len=16
1644347853.475740: WPS: attr type=0x1021 len=3
1644347853.475764: WPS: attr type=0x1023 len=4
1644347853.475789: WPS: attr type=0x1024 len=4
1644347853.475813: WPS: attr type=0x1042 len=4
1644347853.475837: WPS: attr type=0x1054 len=8
1644347853.475861: WPS: attr type=0x1011 len=4
1644347853.475885: WPS: attr type=0x1008 len=2
1644347853.475909: WPS: attr type=0x103c len=1
1644347853.475934: WPS: attr type=0x1049 len=6
1644347853.475958: WPS: WFA subelement id=0 len=1
1644347853.475983: WPS: attr type=0x104a len=1
1644347853.476006: WPS: attr type=0x1044 len=1
1644347853.476031: WPS: attr type=0x103b len=1
1644347853.476055: WPS: attr type=0x1047 len=16
1644347853.476079: WPS: attr type=0x1021 len=3
1644347853.476103: WPS: attr type=0x1023 len=4
1644347853.476128: WPS: attr type=0x1024 len=4
1644347853.476152: WPS: attr type=0x1042 len=4
1644347853.476176: WPS: attr type=0x1054 len=8
1644347853.476201: WPS: attr type=0x1011 len=4
1644347853.476226: WPS: attr type=0x1008 len=2
1644347853.476250: WPS: attr type=0x103c len=1
1644347853.476275: WPS: attr type=0x1049 len=6
1644347853.476298: WPS: WFA subelement id=0 len=1
1644347853.476325: WPS: attr type=0x104a len=1
1644347853.476351: WPS: attr type=0x1044 len=1
1644347853.476376: WPS: attr type=0x103b len=1
1644347853.476401: WPS: attr type=0x1047 len=16
1644347853.476425: WPS: attr type=0x1021 len=3
1644347853.476449: WPS: attr type=0x1023 len=4
1644347853.476474: WPS: attr type=0x1024 len=4
1644347853.476498: WPS: attr type=0x1042 len=4
1644347853.476523: WPS: attr type=0x1054 len=8
1644347853.476548: WPS: attr type=0x1011 len=4
1644347853.476571: WPS: attr type=0x1008 len=2
1644347853.476596: WPS: attr type=0x103c len=1
1644347853.476621: WPS: attr type=0x1049 len=6
1644347853.476645: WPS: WFA subelement id=0 len=1
1644347853.476669: WPS: attr type=0x104a len=1
1644347853.476693: WPS: attr type=0x1044 len=1
1644347853.476717: WPS: attr type=0x103b len=1
1644347853.476740: WPS: attr type=0x1047 len=16
1644347853.476764: WPS: attr type=0x1021 len=3
1644347853.476813: WPS: attr type=0x1023 len=4
1644347853.476839: WPS: attr type=0x1024 len=4
1644347853.476875: WPS: attr type=0x1042 len=4
1644347853.476903: WPS: attr type=0x1054 len=8
1644347853.476930: WPS: attr type=0x1011 len=4
1644347853.476956: WPS: attr type=0x1008 len=2
1644347853.476982: WPS: attr type=0x103c len=1
1644347853.477008: WPS: attr type=0x1049 len=6
1644347853.477034: WPS: WFA subelement id=0 len=1
1644347853.477059: WPS: attr type=0x104a len=1
1644347853.477085: WPS: attr type=0x1044 len=1
1644347853.477111: WPS: attr type=0x103b len=1
1644347853.477137: WPS: attr type=0x1047 len=16
1644347853.477163: WPS: attr type=0x1021 len=3
1644347853.477190: WPS: attr type=0x1023 len=4
1644347853.477215: WPS: attr type=0x1024 len=4
1644347853.477241: WPS: attr type=0x1042 len=4
1644347853.477266: WPS: attr type=0x1054 len=8
1644347853.477292: WPS: attr type=0x1011 len=4
1644347853.477317: WPS: attr type=0x1008 len=2
1644347853.477342: WPS: attr type=0x103c len=1
1644347853.477368: WPS: attr type=0x1049 len=6
1644347853.477393: WPS: WFA subelement id=0 len=1
1644347853.477422: WPS: attr type=0x104a len=1
1644347853.477449: WPS: attr type=0x1044 len=1
1644347853.477475: WPS: attr type=0x103b len=1
1644347853.477503: WPS: attr type=0x1047 len=16
1644347853.477529: WPS: attr type=0x1021 len=3
1644347853.477556: WPS: attr type=0x1023 len=4
1644347853.477582: WPS: attr type=0x1024 len=4
1644347853.477608: WPS: attr type=0x1042 len=4
1644347853.477634: WPS: attr type=0x1054 len=8
1644347853.477660: WPS: attr type=0x1011 len=4
1644347853.477686: WPS: attr type=0x1008 len=2
1644347853.477712: WPS: attr type=0x103c len=1
1644347853.477758: WPS: attr type=0x1049 len=6
1644347853.477788: WPS: WFA subelement id=0 len=1
1644347853.477814: WPS: attr type=0x104a len=1
1644347853.477839: WPS: attr type=0x1044 len=1
1644347853.477865: WPS: attr type=0x103b len=1
1644347853.477890: WPS: attr type=0x1047 len=16
1644347853.477916: WPS: attr type=0x1021 len=3
1644347853.477942: WPS: attr type=0x1023 len=4
1644347853.477966: WPS: attr type=0x1024 len=4
1644347853.477991: WPS: attr type=0x1042 len=4
1644347853.478017: WPS: attr type=0x1054 len=8
1644347853.478042: WPS: attr type=0x1011 len=4
1644347853.478068: WPS: attr type=0x1008 len=2
1644347853.478093: WPS: attr type=0x103c len=1
1644347853.478119: WPS: attr type=0x1049 len=6
1644347853.478146: WPS: WFA subelement id=0 len=1
1644347853.478173: WPS: attr type=0x104a len=1
1644347853.478200: WPS: attr type=0x1044 len=1
1644347853.478227: WPS: attr type=0x103b len=1
1644347853.478253: WPS: attr type=0x1047 len=16
1644347853.478281: WPS: attr type=0x1021 len=3
1644347853.478306: WPS: attr type=0x1023 len=4
1644347853.478332: WPS: attr type=0x1024 len=4
1644347853.478358: WPS: attr type=0x1042 len=4
1644347853.478384: WPS: attr type=0x1054 len=8
1644347853.478410: WPS: attr type=0x1011 len=4
1644347853.478436: WPS: attr type=0x1008 len=2
1644347853.478463: WPS: attr type=0x103c len=1
1644347853.478489: WPS: attr type=0x1049 len=6
1644347853.478515: WPS: WFA subelement id=0 len=1
1644347853.478543: WPS: attr type=0x104a len=1
1644347853.478571: WPS: attr type=0x1044 len=1
1644347853.478597: WPS: attr type=0x103b len=1
1644347853.478623: WPS: attr type=0x1047 len=16
1644347853.478649: WPS: attr type=0x1021 len=3
1644347853.478676: WPS: attr type=0x1023 len=4
1644347853.478701: WPS: attr type=0x1024 len=4
1644347853.478728: WPS: attr type=0x1042 len=4
1644347853.478754: WPS: attr type=0x1054 len=8
1644347853.478780: WPS: attr type=0x1011 len=4
1644347853.478805: WPS: attr type=0x1008 len=2
1644347853.478831: WPS: attr type=0x103c len=1
1644347853.478857: WPS: attr type=0x1049 len=6
1644347853.478883: WPS: WFA subelement id=0 len=1
1644347853.478910: WPS: attr type=0x104a len=1
1644347853.478936: WPS: attr type=0x1044 len=1
1644347853.478961: WPS: attr type=0x103b len=1
1644347853.478987: WPS: attr type=0x1047 len=16
1644347853.479012: WPS: attr type=0x1021 len=3
1644347853.479037: WPS: attr type=0x1023 len=4
1644347853.479063: WPS: attr type=0x1024 len=4
1644347853.479091: WPS: attr type=0x1042 len=4
1644347853.479117: WPS: attr type=0x1054 len=8
1644347853.479143: WPS: attr type=0x1011 len=4
1644347853.479168: WPS: attr type=0x1008 len=2
1644347853.479194: WPS: attr type=0x103c len=1
1644347853.479221: WPS: attr type=0x1049 len=6
1644347853.479246: WPS: WFA subelement id=0 len=1
1644347853.479272: WPS: attr type=0x104a len=1
1644347853.479298: WPS: attr type=0x1044 len=1
1644347853.479324: WPS: attr type=0x103b len=1
1644347853.479351: WPS: attr type=0x1047 len=16
1644347853.479377: WPS: attr type=0x1021 len=3
1644347853.479402: WPS: attr type=0x1023 len=4
1644347853.479428: WPS: attr type=0x1024 len=4
1644347853.479454: WPS: attr type=0x1042 len=4
1644347853.479479: WPS: attr type=0x1054 len=8
1644347853.479504: WPS: attr type=0x1011 len=4
1644347853.479530: WPS: attr type=0x1008 len=2
1644347853.479555: WPS: attr type=0x103c len=1
1644347853.479581: WPS: attr type=0x1049 len=6
1644347853.479606: WPS: WFA subelement id=0 len=1
1644347853.479633: WPS: attr type=0x104a len=1
1644347853.479659: WPS: attr type=0x1044 len=1
1644347853.479684: WPS: attr type=0x103b len=1
1644347853.479709: WPS: attr type=0x1047 len=16
1644347853.479735: WPS: attr type=0x1021 len=3
1644347853.479760: WPS: attr type=0x1023 len=4
1644347853.479787: WPS: attr type=0x1024 len=4
1644347853.479813: WPS: attr type=0x1042 len=4
1644347853.479839: WPS: attr type=0x1054 len=8
1644347853.479865: WPS: attr type=0x1011 len=4
1644347853.479891: WPS: attr type=0x1008 len=2
1644347853.479917: WPS: attr type=0x103c len=1
1644347853.479942: WPS: attr type=0x1049 len=6
1644347853.479967: WPS: WFA subelement id=0 len=1
1644347853.479992: WPS: attr type=0x104a len=1
1644347853.480040: WPS: attr type=0x1044 len=1
1644347853.480065: WPS: attr type=0x103b len=1
1644347853.480089: WPS: attr type=0x1047 len=16
1644347853.480113: WPS: attr type=0x1021 len=3
1644347853.480137: WPS: attr type=0x1023 len=4
1644347853.480161: WPS: attr type=0x1024 len=4
1644347853.480185: WPS: attr type=0x1042 len=4
1644347853.480209: WPS: attr type=0x1054 len=8
1644347853.480234: WPS: attr type=0x1011 len=4
1644347853.480259: WPS: attr type=0x1008 len=2
1644347853.480284: WPS: attr type=0x103c len=1
1644347853.480309: WPS: attr type=0x1049 len=6
1644347853.480333: WPS: WFA subelement id=0 len=1
1644347853.480358: WPS: attr type=0x104a len=1
1644347853.480383: WPS: attr type=0x1044 len=1
1644347853.480408: WPS: attr type=0x103b len=1
1644347853.480432: WPS: attr type=0x1047 len=16
1644347853.480455: WPS: attr type=0x1021 len=3
1644347853.480480: WPS: attr type=0x1023 len=4
1644347853.480504: WPS: attr type=0x1024 len=4
1644347853.480528: WPS: attr type=0x1042 len=4
1644347853.480552: WPS: attr type=0x1054 len=8
1644347853.480577: WPS: attr type=0x1011 len=4
1644347853.480601: WPS: attr type=0x1008 len=2
1644347853.480625: WPS: attr type=0x103c len=1
1644347853.480648: WPS: attr type=0x1049 len=6
1644347853.480671: WPS: WFA subelement id=0 len=1
1644347853.480697: WPS: attr type=0x104a len=1
1644347853.480724: WPS: attr type=0x1044 len=1
1644347853.480750: WPS: attr type=0x103b len=1
1644347853.480791: WPS: attr type=0x1047 len=16
1644347853.480819: WPS: attr type=0x1021 len=3
1644347853.480840: WPS: attr type=0x1023 len=4
1644347853.480862: WPS: attr type=0x1024 len=4
1644347853.480883: WPS: attr type=0x1042 len=4
1644347853.480904: WPS: attr type=0x1054 len=8
1644347853.480925: WPS: attr type=0x1011 len=4
1644347853.480946: WPS: attr type=0x1008 len=2
1644347853.480967: WPS: attr type=0x103c len=1
1644347853.480988: WPS: attr type=0x1049 len=6
1644347853.481009: WPS: WFA subelement id=0 len=1
1644347853.481031: WPS: attr type=0x104a len=1
1644347853.481052: WPS: attr type=0x1044 len=1
1644347853.481073: WPS: attr type=0x103b len=1
1644347853.481094: WPS: attr type=0x1047 len=16
1644347853.481115: WPS: attr type=0x1021 len=3
1644347853.481136: WPS: attr type=0x1023 len=4
1644347853.481157: WPS: attr type=0x1024 len=4
1644347853.481178: WPS: attr type=0x1042 len=4
1644347853.481199: WPS: attr type=0x1054 len=8
1644347853.481220: WPS: attr type=0x1011 len=4
1644347853.481241: WPS: attr type=0x1008 len=2
1644347853.481262: WPS: attr type=0x103c len=1
1644347853.481283: WPS: attr type=0x1049 len=6
1644347853.481304: WPS: WFA subelement id=0 len=1
1644347853.481325: WPS: attr type=0x104a len=1
1644347853.481346: WPS: attr type=0x1044 len=1
1644347853.481367: WPS: attr type=0x103b len=1
1644347853.481388: WPS: attr type=0x1047 len=16
1644347853.481409: WPS: attr type=0x1021 len=3
1644347853.481430: WPS: attr type=0x1023 len=4
1644347853.481451: WPS: attr type=0x1024 len=4
1644347853.481472: WPS: attr type=0x1042 len=4
1644347853.481493: WPS: attr type=0x1054 len=8
1644347853.481514: WPS: attr type=0x1011 len=4
1644347853.481535: WPS: attr type=0x1008 len=2
1644347853.481555: WPS: attr type=0x103c len=1
1644347853.481577: WPS: attr type=0x1049 len=6
1644347853.481597: WPS: WFA subelement id=0 len=1
1644347853.481663: WPS: attr type=0x104a len=1
1644347853.481691: WPS: attr type=0x1044 len=1
1644347853.481712: WPS: attr type=0x103b len=1
1644347853.481734: WPS: attr type=0x1047 len=16
1644347853.481763: WPS: attr type=0x1021 len=3
1644347853.481772: WPS: attr type=0x1023 len=4
1644347853.481781: WPS: attr type=0x1024 len=4
1644347853.481789: WPS: attr type=0x1042 len=4
1644347853.481797: WPS: attr type=0x1054 len=8
1644347853.481805: WPS: attr type=0x1011 len=4
1644347853.481813: WPS: attr type=0x1008 len=2
1644347853.481822: WPS: attr type=0x103c len=1
1644347853.481830: WPS: attr type=0x1049 len=6
1644347853.481838: WPS: WFA subelement id=0 len=1
1644347853.481846: WPS: attr type=0x104a len=1
1644347853.481854: WPS: attr type=0x1044 len=1
1644347853.481862: WPS: attr type=0x103b len=1
1644347853.481879: WPS: attr type=0x1047 len=16
1644347853.481894: WPS: attr type=0x1021 len=3
1644347853.481919: WPS: attr type=0x1023 len=4
1644347853.481954: WPS: attr type=0x1024 len=4
1644347853.481991: WPS: attr type=0x1042 len=4
1644347853.482028: WPS: attr type=0x1054 len=8
1644347853.482063: WPS: attr type=0x1011 len=4
1644347853.482100: WPS: attr type=0x1008 len=2
1644347853.482135: WPS: attr type=0x103c len=1
1644347853.482173: WPS: attr type=0x1049 len=6
1644347853.482211: WPS: WFA subelement id=0 len=1
1644347853.482248: WPS: attr type=0x104a len=1
1644347853.482271: WPS: attr type=0x1044 len=1
1644347853.482292: WPS: attr type=0x103b len=1
1644347853.482314: WPS: attr type=0x1047 len=16
1644347853.482334: WPS: attr type=0x1021 len=3
1644347853.482355: WPS: attr type=0x1023 len=4
1644347853.482376: WPS: attr type=0x1024 len=4
1644347853.482397: WPS: attr type=0x1042 len=4
1644347853.482418: WPS: attr type=0x1054 len=8
1644347853.482439: WPS: attr type=0x1011 len=4
1644347853.482460: WPS: attr type=0x1008 len=2
1644347853.482481: WPS: attr type=0x103c len=1
1644347853.482502: WPS: attr type=0x1049 len=6
1644347853.482523: WPS: WFA subelement id=0 len=1
1644347853.482547: WPS: attr type=0x104a len=1
1644347853.482569: WPS: attr type=0x1044 len=1
1644347853.482590: WPS: attr type=0x103b len=1
1644347853.482611: WPS: attr type=0x1047 len=16
1644347853.482632: WPS: attr type=0x1021 len=3
1644347853.482653: WPS: attr type=0x1023 len=4
1644347853.482674: WPS: attr type=0x1024 len=4
1644347853.482695: WPS: attr type=0x1042 len=4
1644347853.482716: WPS: attr type=0x1054 len=8
1644347853.482737: WPS: attr type=0x1011 len=4
1644347853.482758: WPS: attr type=0x1008 len=2
1644347853.482779: WPS: attr type=0x103c len=1
1644347853.482800: WPS: attr type=0x1049 len=6
1644347853.482821: WPS: WFA subelement id=0 len=1
1644347853.482843: WPS: attr type=0x104a len=1
1644347853.482864: WPS: attr type=0x1044 len=1
1644347853.482885: WPS: attr type=0x103b len=1
1644347853.482906: WPS: attr type=0x1047 len=16
1644347853.482927: WPS: attr type=0x1021 len=3
1644347853.482948: WPS: attr type=0x1023 len=4
1644347853.482970: WPS: attr type=0x1024 len=4
1644347853.482991: WPS: attr type=0x1042 len=4
1644347853.483012: WPS: attr type=0x1054 len=8
1644347853.483032: WPS: attr type=0x1011 len=4
1644347853.483054: WPS: attr type=0x1008 len=2
1644347853.483075: WPS: attr type=0x103c len=1
1644347853.483096: WPS: attr type=0x1049 len=6
1644347853.483117: WPS: WFA subelement id=0 len=1
1644347853.483138: WPS: attr type=0x104a len=1
1644347853.483160: WPS: attr type=0x1044 len=1
1644347853.483181: WPS: attr type=0x103b len=1
1644347853.483202: WPS: attr type=0x1047 len=16
1644347853.483223: WPS: attr type=0x1021 len=3
1644347853.483244: WPS: attr type=0x1023 len=4
1644347853.483265: WPS: attr type=0x1024 len=4
1644347853.483286: WPS: attr type=0x1042 len=4
1644347853.483307: WPS: attr type=0x1054 len=8
1644347853.483328: WPS: attr type=0x1011 len=4
1644347853.483349: WPS: attr type=0x1008 len=2
1644347853.483370: WPS: attr type=0x103c len=1
1644347853.483391: WPS: attr type=0x1049 len=6
1644347853.483412: WPS: WFA subelement id=0 len=1
1644347853.483435: WPS: attr type=0x104a len=1
1644347853.483457: WPS: attr type=0x1044 len=1
1644347853.483478: WPS: attr type=0x103b len=1
1644347853.483499: WPS: attr type=0x1047 len=16
1644347853.483520: WPS: attr type=0x1021 len=3
1644347853.483541: WPS: attr type=0x1023 len=4
1644347853.483562: WPS: attr type=0x1024 len=4
1644347853.483583: WPS: attr type=0x1042 len=4
1644347853.483604: WPS: attr type=0x1054 len=8
1644347853.483625: WPS: attr type=0x1011 len=4
1644347853.483646: WPS: attr type=0x1008 len=2
1644347853.483667: WPS: attr type=0x103c len=1
1644347853.483688: WPS: attr type=0x1049 len=6
1644347853.483709: WPS: WFA subelement id=0 len=1
1644347853.483731: WPS: attr type=0x104a len=1
1644347853.483752: WPS: attr type=0x1044 len=1
1644347853.483773: WPS: attr type=0x103b len=1
1644347853.483794: WPS: attr type=0x1047 len=16
1644347853.483815: WPS: attr type=0x1021 len=3
1644347853.483836: WPS: attr type=0x1023 len=4
1644347853.483875: WPS: attr type=0x1024 len=4
1644347853.483898: WPS: attr type=0x1042 len=4
1644347853.483920: WPS: attr type=0x1054 len=8
1644347853.483942: WPS: attr type=0x1011 len=4
1644347853.483963: WPS: attr type=0x1008 len=2
1644347853.483984: WPS: attr type=0x103c len=1
1644347853.484006: WPS: attr type=0x1049 len=6
1644347853.484027: WPS: WFA subelement id=0 len=1
1644347853.484048: WPS: attr type=0x104a len=1
1644347853.484070: WPS: attr type=0x1044 len=1
1644347853.484091: WPS: attr type=0x103b len=1
1644347853.484113: WPS: attr type=0x1047 len=16
1644347853.484134: WPS: attr type=0x1021 len=3
1644347853.484155: WPS: attr type=0x1023 len=4
1644347853.484176: WPS: attr type=0x1024 len=4
1644347853.484198: WPS: attr type=0x1042 len=4
1644347853.484219: WPS: attr type=0x1054 len=8
1644347853.484240: WPS: attr type=0x1011 len=4
1644347853.484261: WPS: attr type=0x1008 len=2
1644347853.484283: WPS: attr type=0x103c len=1
1644347853.484304: WPS: attr type=0x1049 len=6
1644347853.484325: WPS: WFA subelement id=0 len=1
1644347853.484349: WPS: attr type=0x104a len=1
1644347853.484371: WPS: attr type=0x1044 len=1
1644347853.484392: WPS: attr type=0x103b len=1
1644347853.484413: WPS: attr type=0x1047 len=16
1644347853.484434: WPS: attr type=0x1021 len=3
1644347853.484455: WPS: attr type=0x1023 len=4
1644347853.484476: WPS: attr type=0x1024 len=4
1644347853.484497: WPS: attr type=0x1042 len=4
1644347853.484518: WPS: attr type=0x1054 len=8
1644347853.484539: WPS: attr type=0x1011 len=4
1644347853.484560: WPS: attr type=0x1008 len=2
1644347853.484581: WPS: attr type=0x103c len=1
1644347853.484602: WPS: attr type=0x1049 len=6
1644347853.484623: WPS: WFA subelement id=0 len=1
1644347853.484644: WPS: attr type=0x104a len=1
1644347853.484665: WPS: attr type=0x1044 len=1
1644347853.484686: WPS: attr type=0x103b len=1
1644347853.484707: WPS: attr type=0x1047 len=16
1644347853.484728: WPS: attr type=0x1021 len=3
1644347853.484749: WPS: attr type=0x1023 len=4
1644347853.484782: WPS: attr type=0x1024 len=4
1644347853.484804: WPS: attr type=0x1042 len=4
1644347853.484826: WPS: attr type=0x1054 len=8
1644347853.484847: WPS: attr type=0x1011 len=4
1644347853.484868: WPS: attr type=0x1008 len=2
1644347853.484889: WPS: attr type=0x103c len=1
1644347853.484910: WPS: attr type=0x1049 len=6
1644347853.484931: WPS: WFA subelement id=0 len=1
1644347853.484953: WPS: attr type=0x104a len=1
1644347853.484974: WPS: attr type=0x1044 len=1
1644347853.484996: WPS: attr type=0x103b len=1
1644347853.485017: WPS: attr type=0x1047 len=16
1644347853.485038: WPS: attr type=0x1021 len=3
1644347853.485059: WPS: attr type=0x1023 len=4
1644347853.485079: WPS: attr type=0x1024 len=4
1644347853.485100: WPS: attr type=0x1042 len=4
1644347853.485121: WPS: attr type=0x1054 len=8
1644347853.485142: WPS: attr type=0x1011 len=4
1644347853.485163: WPS: attr type=0x1008 len=2
1644347853.485184: WPS: attr type=0x103c len=1
1644347853.485205: WPS: attr type=0x1049 len=6
1644347853.485226: WPS: WFA subelement id=0 len=1
1644347853.485249: WPS: attr type=0x104a len=1
1644347853.485271: WPS: attr type=0x1044 len=1
1644347853.485292: WPS: attr type=0x103b len=1
1644347853.485313: WPS: attr type=0x1047 len=16
1644347853.485334: WPS: attr type=0x1021 len=3
1644347853.485355: WPS: attr type=0x1023 len=4
1644347853.485376: WPS: attr type=0x1024 len=4
1644347853.485396: WPS: attr type=0x1042 len=4
1644347853.485417: WPS: attr type=0x1054 len=8
1644347853.485438: WPS: attr type=0x1011 len=4
1644347853.485459: WPS: attr type=0x1008 len=2
1644347853.485479: WPS: attr type=0x103c len=1
1644347853.485500: WPS: attr type=0x1049 len=6
1644347853.485521: WPS: WFA subelement id=0 len=1
1644347853.485542: WPS: attr type=0x104a len=1
1644347853.485563: WPS: attr type=0x1044 len=1
1644347853.485584: WPS: attr type=0x103b len=1
1644347853.485605: WPS: attr type=0x1047 len=16
1644347853.485625: WPS: attr type=0x1021 len=3
1644347853.485646: WPS: attr type=0x1023 len=4
1644347853.485667: WPS: attr type=0x1024 len=4
1644347853.485688: WPS: attr type=0x1042 len=4
1644347853.485709: WPS: attr type=0x1054 len=8
1644347853.485744: WPS: attr type=0x1011 len=4
1644347853.485765: WPS: attr type=0x1008 len=2
1644347853.485786: WPS: attr type=0x103c len=1
1644347853.485807: WPS: attr type=0x1049 len=6
1644347853.485828: WPS: WFA subelement id=0 len=1
1644347853.485850: WPS: attr type=0x104a len=1
1644347853.485871: WPS: attr type=0x1044 len=1
1644347853.485892: WPS: attr type=0x103b len=1
1644347853.485912: WPS: attr type=0x1047 len=16
1644347853.485933: WPS: attr type=0x1021 len=3
1644347853.485953: WPS: attr type=0x1023 len=4
1644347853.485974: WPS: attr type=0x1024 len=4
1644347853.485995: WPS: attr type=0x1042 len=4
1644347853.486016: WPS: attr type=0x1054 len=8
1644347853.486037: WPS: attr type=0x1011 len=4
1644347853.486057: WPS: attr type=0x1008 len=2
1644347853.486078: WPS: attr type=0x103c len=1
1644347853.486099: WPS: attr type=0x1049 len=6
1644347853.486120: WPS: WFA subelement id=0 len=1
1644347853.486142: WPS: attr type=0x104a len=1
1644347853.486164: WPS: attr type=0x1044 len=1
1644347853.486185: WPS: attr type=0x103b len=1
1644347853.486205: WPS: attr type=0x1047 len=16
1644347853.486226: WPS: attr type=0x1021 len=3
1644347853.486247: WPS: attr type=0x1023 len=4
1644347853.486268: WPS: attr type=0x1024 len=4
1644347853.486288: WPS: attr type=0x1042 len=4
1644347853.486309: WPS: attr type=0x1054 len=8
1644347853.486330: WPS: attr type=0x1011 len=4
1644347853.486350: WPS: attr type=0x1008 len=2
1644347853.486371: WPS: attr type=0x103c len=1
1644347853.486392: WPS: attr type=0x1049 len=6
1644347853.486412: WPS: WFA subelement id=0 len=1
1644347853.486433: WPS: attr type=0x104a len=1
1644347853.486454: WPS: attr type=0x1044 len=1
1644347853.486475: WPS: attr type=0x103b len=1
1644347853.486496: WPS: attr type=0x1047 len=16
1644347853.486516: WPS: attr type=0x1021 len=3
1644347853.486537: WPS: attr type=0x1023 len=4
1644347853.486558: WPS: attr type=0x1024 len=4
1644347853.486578: WPS: attr type=0x1042 len=4
1644347853.486599: WPS: attr type=0x1054 len=8
1644347853.486620: WPS: attr type=0x1011 len=4
1644347853.486641: WPS: attr type=0x1008 len=2
1644347853.486661: WPS: attr type=0x103c len=1
1644347853.486682: WPS: attr type=0x1049 len=6
1644347853.486703: WPS: WFA subelement id=0 len=1
1644347853.486724: WPS: attr type=0x104a len=1
1644347853.486745: WPS: attr type=0x1044 len=1
1644347853.486766: WPS: attr type=0x103b len=1
1644347853.486787: WPS: attr type=0x1047 len=16
1644347853.486808: WPS: attr type=0x1021 len=3
1644347853.486829: WPS: attr type=0x1023 len=4
1644347853.486849: WPS: attr type=0x1024 len=4
1644347853.486870: WPS: attr type=0x1042 len=4
1644347853.486891: WPS: attr type=0x1054 len=8
1644347853.486911: WPS: attr type=0x1011 len=4
1644347853.486932: WPS: attr type=0x1008 len=2
1644347853.486953: WPS: attr type=0x103c len=1
1644347853.486974: WPS: attr type=0x1049 len=6
1644347853.486994: WPS: WFA subelement id=0 len=1
1644347853.487017: WPS: AP[0] 2c:91:ab:e0:30:35 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=2
1644347853.487042: WPS: AP[1] 2c:91:ab:e0:30:34 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347853.487065: WPS: AP[2] e0:28:6d:7e:94:3c type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347853.487088: WPS: AP[3] e0:28:6d:7e:94:3b type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347853.487111: WPS: AP[4] e8:df:70:07:6f:c2 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347853.487134: WPS: AP[5] ea:df:70:07:6f:c2 type=0 tries=0 last_attempt=-1 sec ago bssid_ignore=0
1644347853.487165: wlan1: Radio work 'scan'@0x55a4885a4340 done in 0.140322 seconds
1644347853.487190: wlan1: radio_work_free('scan'@0x55a4885a4340): num_active_works --> 0
1644347853.487217: wlan1: CTRL-EVENT-SSID-REENABLED id=0 ssid="FRITZ!Box 7590 TC"
1644347853.487241: wlan1: Scan results matching the currently selected network
1644347853.487278: wlan1: 0: 2c:91:ab:e0:30:35 freq=5260 level=-46 snr=46 est_throughput=135000
1644347853.487311: wlan1: 1: 2c:91:ab:e0:30:34 freq=2437 level=-36 snr=53 est_throughput=65000
1644347853.487341: wlan1: 2: e0:28:6d:7e:94:3c freq=2437 level=-63 snr=26 est_throughput=65000
1644347853.487385: wlan1: 3: e0:28:6d:7e:94:3b freq=5260 level=-79 snr=13 est_throughput=47250
1644347853.487413: wlan1: Selecting BSS from priority group 0
1644347853.487446: wlan1: 0: 2c:91:ab:e0:30:35 ssid='FRITZ!Box 7590 TC' wpa_ie_len=0 rsn_ie_len=24 caps=0x1511 level=-46 freq=5260  wps
1644347853.487472: wlan1:    selected based on RSN IE
1644347853.487500: wlan1:    selected current BSS 2c:91:ab:e0:30:35 ssid='FRITZ!Box 7590 TC'
1644347853.487535: wlan1: Considering connect request: reassociate: 0  selected: 2c:91:ab:e0:30:35  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid=0x55a488595780  current_ssid=0x55a488595780
1644347853.487561: wlan1: Request association with 2c:91:ab:e0:30:35
1644347853.487584: wlan1: Re-association to the same ESS
1644347853.487606: WMM AC: Save last configured tspecs
1644347853.487631: unknown vendor specific information element ignored (vendor OUI 00:03:7f len=9)
1644347853.487654: unknown vendor specific information element ignored (vendor OUI 00:04:0e len=12)
1644347853.487677: unknown vendor specific information element ignored (vendor OUI 00:03:7f len=7)
1644347853.487699: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=22)
1644347853.487721: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=8)
1644347853.487743: TDLS: TDLS is allowed in the target BSS
1644347853.487764: TDLS: TDLS channel switch allowed in the target BSS
1644347853.487787: wlan1: No ongoing scan/p2p-scan found to abort
1644347853.487812: wlan1: Add radio work 'sme-connect'@0x55a4885a4340
1644347853.487835: wlan1: First radio work item in the queue - schedule start immediately
1644347853.487878: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347853.488014: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/0
1644347853.488145: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/1
1644347853.488216: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/2
1644347853.488354: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/3
1644347853.488482: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/7
1644347853.488555: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/6
1644347853.488631: wlan1: Starting radio work 'sme-connect'@0x55a4885a4340 after 0.000793 second wait
1644347853.488655: wlan1: WPA: clearing own WPA/RSN IE
1644347853.488672: wlan1: RSN: clearing own RSNXE
1644347853.488688: wlan1: Automatic auth_alg selection: 0x1
1644347853.488703: wlan1: Overriding auth_alg selection: 0x1
1644347853.488720: wlan1: Using SAE auth_alg
1644347853.488737: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x0
1644347853.488753: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347853.488774: RSN: PMKSA cache entry found - PMKID - hexdump(len=16): 3e 05 c2 64 5f 76 ba db 21 d3 73 6d 4e cb c3 97
1644347853.488794: RSN: Trying to use cached PMKSA
1644347853.488811: wlan1: RSN: using IEEE 802.11i/D9.0
1644347853.488837: wlan1: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1026 proto 2
1644347853.488863: wlan1: WPA: Selected mgmt group cipher 32
1644347853.488879: wlan1: WPA: clearing AP WPA IE
1644347853.488895: WPA: set AP RSN IE - hexdump(len=26): 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347853.488918: wlan1: WPA: clearing AP RSNXE
1644347853.488935: wlan1: WPA: AP group 0x10 network profile group 0x18; available group 0x10
1644347853.488951: wlan1: WPA: using GTK CCMP
1644347853.488968: wlan1: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
1644347853.488990: wlan1: WPA: using PTK CCMP
1644347853.489004: wlan1: WPA: AP key_mgmt 0x402 network profile key_mgmt 0x502; available key_mgmt 0x402
1644347853.489020: wlan1: RSN: using KEY_MGMT SAE
1644347853.489038: wlan1: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
1644347853.489054: wlan1: WPA: not using MGMT group cipher
1644347853.489071: 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 3e 05 c2 64 5f 76 ba db 21 d3 73 6d 4e cb c3 97
1644347853.489095: RSN: Set own RSNXE default - hexdump(len=0):
1644347853.489110: PSK (set in config) - hexdump(len=32): [REMOVED]
1644347853.489126: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347853.489143: RRM: Determining whether RRM can be used - device support: 0x10
1644347853.489158: RRM: Adding RRM IE to Association Request
1644347853.489182: Added supported operating classes IE - hexdump(len=19): 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347853.489203: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x400
1644347853.489220: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347853.489236: RSN: PMKSA cache entry found - PMKID - hexdump(len=16): 3e 05 c2 64 5f 76 ba db 21 d3 73 6d 4e cb c3 97
1644347853.489256: wlan1: PMKSA cache entry found - try to use PMKSA caching instead of new SAE authentication
1644347853.489273: WPA: Set PMK based on current PMKSA - hexdump(len=32): [REMOVED]
1644347853.489288: EAPOL: External notification - EAP success=0
1644347853.489303: EAPOL: External notification - EAP fail=0
1644347853.489312: EAPOL: External notification - portControl=Auto
1644347853.489322: wlan1: Cancelling scan request
1644347853.489354: wlan1: SME: Trying to authenticate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347853.489377: EAPOL: External notification - portValid=0
1644347853.489402: wlan1: State: SCANNING -> AUTHENTICATING
1644347853.489505: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
1644347853.489548: wlan1: Determining shared radio frequencies (max len 1)
1644347853.489558: wlan1: Shared frequencies (len=0): completed iteration
1644347853.489567: nl80211: Authenticate (ifindex=3)
1644347853.489579:   * bssid=2c:91:ab:e0:30:35
1644347853.489589:   * freq=5260
1644347853.489598:   * SSID=FRITZ!Box 7590 TC
1644347853.489606:   * IEs - hexdump(len=0): [NULL]
1644347853.489615:   * Auth Type 0
1644347853.492759: nl80211: Authentication request send successfully
1644347853.492848: nl80211: Event message available
1644347853.492886: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan1
1644347853.492917: nl80211: New station 2c:91:ab:e0:30:35
1644347853.494644: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347853.560984: nl80211: Event message available
1644347853.561120: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan1
1644347853.561154: nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347853.561184: nl80211: MLME event frame - hexdump(len=30): b0 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 b0 d1 00 00 02 00 00 00
1644347853.561218: nl80211: Authenticate event
1644347853.561250: wlan1: Event AUTH (10) received
1644347853.561285: wlan1: SME: Authentication response: peer=2c:91:ab:e0:30:35 auth_type=0 auth_transaction=2 status_code=0
1644347853.561311: SME: Authentication response IEs - hexdump(len=0): [NULL]
1644347853.561342: SME: Association Request IEs - hexdump(len=79): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 3e 05 c2 64 5f 76 ba db 21 d3 73 6d 4e cb c3 97 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347853.561396: wlan1: Trying to associate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347853.561469: wlan1: State: AUTHENTICATING -> ASSOCIATING
1644347853.561498: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347853.561525: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347853.561669: 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 3e 05 c2 64 5f 76 ba db 21 d3 73 6d 4e cb c3 97
1644347853.561720: wlan1: RSN: clearing own RSNXE
1644347853.561748: nl80211: Associate (ifindex=3)
1644347853.561782:   * bssid=2c:91:ab:e0:30:35
1644347853.561817:   * freq=5260
1644347853.561846:   * SSID=FRITZ!Box 7590 TC
1644347853.561874:   * IEs - hexdump(len=79): 30 26 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 01 00 3e 05 c2 64 5f 76 ba db 21 d3 73 6d 4e cb c3 97 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347853.561919:   * WPA Versions 0x2
1644347853.561943:   * pairwise=0xfac04
1644347853.561969:   * group=0xfac04
1644347853.561993:   * akm=0xfac08
1644347853.562087: nl80211: Association request send successfully
1644347853.588966: nl80211: Event message available
1644347853.589099: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan1
1644347853.589130: nl80211: Delete station 2c:91:ab:e0:30:35
1644347853.591961: nl80211: Event message available
1644347853.592088: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan1
1644347853.592120: nl80211: MLME event 38 (NL80211_CMD_ASSOCIATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347853.592150: nl80211: MLME event frame - hexdump(len=196): 10 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 c0 d1 11 15 28 00 01 43 01 08 8c 12 98 24 b0 48 60 6c 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 08 8c fd f0 01 01 02 01 00 dd 18 00 50 f2 04 10 4a 00 01 10 10 3b 00 01 03 10 49 00 06 00 37 2a 00 01 20 dd 07 00 03 7f 05 01 00 01
1644347853.592226: nl80211: Associate event
1644347853.592258: wlan1: Event ASSOC_REJECT (12) received
1644347853.592293: wlan1: CTRL-EVENT-ASSOC-REJECT bssid=2c:91:ab:e0:30:35 status_code=40
1644347853.592474: wlan1: SME: Association with 2c:91:ab:e0:30:35 failed: status code 40
1644347853.592516: wlan1: PMKSA caching attempt rejected - drop PMKSA cache entry and fall back to SAE authentication
1644347853.592546: wlan1: RSN: Cancelling PMKSA caching attempt
1644347853.592573: RSN: Flush PMKSA cache entry for 2c:91:ab:e0:30:35
1644347853.592609: wlan1: PMKSA-CACHE-REMOVED 2c:91:ab:e0:30:35 0
1644347853.592636: nl80211: Delete PMKID for 2c:91:ab:e0:30:35
1644347853.592732: nl80211: NL80211_CMD_DEL_PMKSA failed: -95 (Operation not supported)
1644347853.592802: wlan1: RSN: PMKSA cache entry free_cb: 2c:91:ab:e0:30:35 reason=0
1644347853.592841: wpa_driver_nl80211_deauthenticate(addr=2c:91:ab:e0:30:35 reason_code=3)
1644347853.592930: wlan1: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
1644347853.592974: wlan1: Radio work 'sme-connect'@0x55a4885a4340 done in 0.104341 seconds
1644347853.593006: wlan1: radio_work_free('sme-connect'@0x55a4885a4340): num_active_works --> 0
1644347853.593104: nl80211: Data frame filter flags=0x0
1644347853.593202: nl80211: Failed to open /proc/sys/net/ipv4/conf/wlan1/drop_unicast_in_l2_multicast: Read-only file system
1644347853.593249: nl80211: Failed to set IPv4 unicast in multicast filter
1644347853.593288: wlan1: State: ASSOCIATING -> DISCONNECTED
1644347853.593319: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347853.593348: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347853.593472: EAPOL: External notification - portEnabled=0
1644347853.593596: EAPOL: External notification - portValid=0
1644347853.593640: EAPOL: External notification - EAP success=0
1644347853.593702: wlan1: Considering connect request: reassociate: 0  selected: 2c:91:ab:e0:30:35  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: DISCONNECTED  ssid=0x55a488595780  current_ssid=(nil)
1644347853.593751: wlan1: Request association with 2c:91:ab:e0:30:35
1644347853.593789: wlan1: Re-association to the same ESS
1644347853.593816: unknown vendor specific information element ignored (vendor OUI 00:03:7f len=9)
1644347853.593840: unknown vendor specific information element ignored (vendor OUI 00:04:0e len=12)
1644347853.593863: unknown vendor specific information element ignored (vendor OUI 00:03:7f len=7)
1644347853.593885: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=22)
1644347853.593908: unknown vendor specific information element ignored (vendor OUI 8c:fd:f0 len=8)
1644347853.593929: TDLS: TDLS is allowed in the target BSS
1644347853.593951: TDLS: TDLS channel switch allowed in the target BSS
1644347853.593973: wlan1: No ongoing scan/p2p-scan found to abort
1644347853.593999: wlan1: Add radio work 'sme-connect'@0x55a4885aa8e0
1644347853.594023: wlan1: First radio work item in the queue - schedule start immediately
1644347853.594067: wlan1: Starting radio work 'sme-connect'@0x55a4885aa8e0 after 0.000041 second wait
1644347853.594093: wlan1: WPA: clearing own WPA/RSN IE
1644347853.594117: wlan1: RSN: clearing own RSNXE
1644347853.594142: wlan1: Automatic auth_alg selection: 0x1
1644347853.594165: wlan1: Overriding auth_alg selection: 0x1
1644347853.594190: wlan1: Using SAE auth_alg
1644347853.594213: RSN: PMKSA cache search - network_ctx=(nil) try_opportunistic=0 akmp=0x0
1644347853.594236: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347853.594258: RSN: No PMKSA cache entry found
1644347853.594282: wlan1: RSN: using IEEE 802.11i/D9.0
1644347853.594307: wlan1: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1026 proto 2
1644347853.594331: wlan1: WPA: Selected mgmt group cipher 32
1644347853.594354: wlan1: WPA: clearing AP WPA IE
1644347853.594375: WPA: set AP RSN IE - hexdump(len=26): 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347853.594406: wlan1: WPA: clearing AP RSNXE
1644347853.594431: wlan1: WPA: AP group 0x10 network profile group 0x18; available group 0x10
1644347853.594454: wlan1: WPA: using GTK CCMP
1644347853.594478: wlan1: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
1644347853.594501: wlan1: WPA: using PTK CCMP
1644347853.594525: wlan1: WPA: AP key_mgmt 0x402 network profile key_mgmt 0x502; available key_mgmt 0x402
1644347853.594548: wlan1: RSN: using KEY_MGMT SAE
1644347853.594573: wlan1: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
1644347853.594596: wlan1: WPA: not using MGMT group cipher
1644347853.594619: 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
1644347853.594647: RSN: Set own RSNXE default - hexdump(len=0):
1644347853.594669: PSK (set in config) - hexdump(len=32): [REMOVED]
1644347853.594691: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347853.594713: RRM: Determining whether RRM can be used - device support: 0x10
1644347853.594735: RRM: Adding RRM IE to Association Request
1644347853.594770: Added supported operating classes IE - hexdump(len=19): 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347853.594800: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x400
1644347853.594822: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347853.594844: RSN: No PMKSA cache entry found
1644347853.594956: SAE: Selecting supported ECC group 19
1644347853.594986: wlan1: SME: Selected SAE group 19
1644347853.595296: SAE: password - hexdump_ascii(len=20): [REMOVED]
1644347853.595324: SAE: PWE derivation - addr1=c4:85:08:14:a1:b8 addr2=2c:91:ab:e0:30:35
1644347853.595349: SAE: counter = 001
1644347853.595413: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.595448: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.595584: SAE: pwd-seed result 1 found=0xff
1644347853.595612: SAE: counter = 002
1644347853.595642: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.595675: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.595802: SAE: pwd-seed result 0 found=0xff
1644347853.595829: SAE: counter = 003
1644347853.595859: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.595891: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.596017: SAE: pwd-seed result 1 found=0xff
1644347853.596044: SAE: counter = 004
1644347853.596074: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.596106: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.596231: SAE: pwd-seed result 0 found=0xff
1644347853.596257: SAE: counter = 005
1644347853.596287: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.596319: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.596444: SAE: pwd-seed result 0 found=0xff
1644347853.596470: SAE: counter = 006
1644347853.596500: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.596532: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.596657: SAE: pwd-seed result 1 found=0xff
1644347853.596683: SAE: counter = 007
1644347853.596713: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.596745: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.596894: SAE: pwd-seed result 0 found=0xff
1644347853.596922: SAE: counter = 008
1644347853.596953: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.596985: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.597109: SAE: pwd-seed result 0 found=0xff
1644347853.597135: SAE: counter = 009
1644347853.597165: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.597197: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.597322: SAE: pwd-seed result 1 found=0xff
1644347853.597348: SAE: counter = 010
1644347853.597378: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.597410: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.597534: SAE: pwd-seed result 0 found=0xff
1644347853.597560: SAE: counter = 011
1644347853.597590: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.597622: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.597747: SAE: pwd-seed result 0 found=0xff
1644347853.597773: SAE: counter = 012
1644347853.597803: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.597834: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.597959: SAE: pwd-seed result 1 found=0xff
1644347853.597985: SAE: counter = 013
1644347853.598015: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.598047: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.598171: SAE: pwd-seed result 1 found=0xff
1644347853.598197: SAE: counter = 014
1644347853.598227: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.598259: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.598383: SAE: pwd-seed result 0 found=0xff
1644347853.598409: SAE: counter = 015
1644347853.598439: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.598471: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.598595: SAE: pwd-seed result 1 found=0xff
1644347853.598621: SAE: counter = 016
1644347853.598651: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.598683: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.598807: SAE: pwd-seed result 1 found=0xff
1644347853.598833: SAE: counter = 017
1644347853.598863: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.598894: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.599019: SAE: pwd-seed result 1 found=0xff
1644347853.599045: SAE: counter = 018
1644347853.599075: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.599106: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.599231: SAE: pwd-seed result 0 found=0xff
1644347853.599257: SAE: counter = 019
1644347853.599287: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.599318: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.599443: SAE: pwd-seed result 1 found=0xff
1644347853.599486: SAE: counter = 020
1644347853.599519: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.599551: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.599677: SAE: pwd-seed result 1 found=0xff
1644347853.599704: SAE: counter = 021
1644347853.599733: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.599765: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.599890: SAE: pwd-seed result 1 found=0xff
1644347853.599916: SAE: counter = 022
1644347853.599945: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.599977: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.600101: SAE: pwd-seed result 0 found=0xff
1644347853.600127: SAE: counter = 023
1644347853.600157: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.600188: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.600312: SAE: pwd-seed result 0 found=0xff
1644347853.600339: SAE: counter = 024
1644347853.600368: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.600400: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.600525: SAE: pwd-seed result 0 found=0xff
1644347853.600551: SAE: counter = 025
1644347853.600580: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.600612: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.600737: SAE: pwd-seed result 1 found=0xff
1644347853.600763: SAE: counter = 026
1644347853.600806: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.600819: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.600960: SAE: pwd-seed result 1 found=0xff
1644347853.600986: SAE: counter = 027
1644347853.601016: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.601048: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.601173: SAE: pwd-seed result 1 found=0xff
1644347853.601199: SAE: counter = 028
1644347853.601229: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.601260: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.601384: SAE: pwd-seed result 1 found=0xff
1644347853.601410: SAE: counter = 029
1644347853.601440: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.601472: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.601596: SAE: pwd-seed result 0 found=0xff
1644347853.601622: SAE: counter = 030
1644347853.601652: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.601684: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.601809: SAE: pwd-seed result 1 found=0xff
1644347853.601835: SAE: counter = 031
1644347853.601865: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.601896: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.602021: SAE: pwd-seed result 1 found=0xff
1644347853.602047: SAE: counter = 032
1644347853.602077: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.602108: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.602233: SAE: pwd-seed result 1 found=0xff
1644347853.602259: SAE: counter = 033
1644347853.602289: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.602320: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.602445: SAE: pwd-seed result 1 found=0xff
1644347853.602471: SAE: counter = 034
1644347853.602500: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.602531: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.602656: SAE: pwd-seed result 0 found=0xff
1644347853.602682: SAE: counter = 035
1644347853.602712: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.602744: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.602869: SAE: pwd-seed result 0 found=0xff
1644347853.602895: SAE: counter = 036
1644347853.602925: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.602956: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.603080: SAE: pwd-seed result 1 found=0xff
1644347853.603106: SAE: counter = 037
1644347853.603136: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.603167: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.603291: SAE: pwd-seed result 1 found=0xff
1644347853.603318: SAE: counter = 038
1644347853.603347: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.603379: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.603503: SAE: pwd-seed result 1 found=0xff
1644347853.603545: SAE: counter = 039
1644347853.603576: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.603608: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.603735: SAE: pwd-seed result 0 found=0xff
1644347853.603761: SAE: counter = 040
1644347853.603791: SAE: pwd-seed - hexdump(len=32): [REMOVED]
1644347853.603822: SAE: pwd-value - hexdump(len=32): [REMOVED]
1644347853.603946: SAE: pwd-seed result 0 found=0xff
1644347853.604055: SAE: PWE - hexdump(len=64): [REMOVED]
1644347853.604338: SAE: own commit-scalar - hexdump(len=32): 05 a6 58 e6 bc 3c f0 0b 31 c7 e5 e9 8d 7b 3c f6 b7 ce 01 4e 69 6b 78 3c ce 24 44 65 ba 12 b1 d6
1644347853.604393: SAE: own commit-element(x) - hexdump(len=32): b9 07 55 f0 ea 26 7c ad 8a 48 48 a0 cf ec 42 e3 7e 3b 73 68 dd 54 bf 8e d6 c7 43 bd ad 27 e0 11
1644347853.604424: SAE: own commit-element(y) - hexdump(len=32): c6 45 e4 f9 05 4b 5c 25 95 c3 68 58 92 bc 0b 94 df ac 26 ec 2b 79 87 c7 d7 65 2a af c6 79 fb e8
1644347853.604454: EAPOL: External notification - EAP success=0
1644347853.604477: EAPOL: External notification - EAP fail=0
1644347853.604499: EAPOL: External notification - portControl=Auto
1644347853.604524: wlan1: Cancelling scan request
1644347853.604553: wlan1: SME: Trying to authenticate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347853.604576: EAPOL: External notification - portValid=0
1644347853.604601: wlan1: State: DISCONNECTED -> AUTHENTICATING
1644347853.604687: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
1644347853.604721: wlan1: Determining shared radio frequencies (max len 1)
1644347853.604747: wlan1: Shared frequencies (len=0): completed iteration
1644347853.604782: nl80211: Authenticate (ifindex=3)
1644347853.604811:   * bssid=2c:91:ab:e0:30:35
1644347853.604836:   * freq=5260
1644347853.604858:   * SSID=FRITZ!Box 7590 TC
1644347853.604880:   * IEs - hexdump(len=0): [NULL]
1644347853.604902:   * auth_data - hexdump(len=102): 01 00 00 00 13 00 05 a6 58 e6 bc 3c f0 0b 31 c7 e5 e9 8d 7b 3c f6 b7 ce 01 4e 69 6b 78 3c ce 24 44 65 ba 12 b1 d6 b9 07 55 f0 ea 26 7c ad 8a 48 48 a0 cf ec 42 e3 7e 3b 73 68 dd 54 bf 8e d6 c7 43 bd ad 27 e0 11 c6 45 e4 f9 05 4b 5c 25 95 c3 68 58 92 bc 0b 94 df ac 26 ec 2b 79 87 c7 d7 65 2a af c6 79 fb e8
1644347853.604947:   * Auth Type 4
1644347853.608473: nl80211: Authentication request send successfully
1644347853.608562: nl80211: Event message available
1644347853.608607: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan1
1644347853.608637: nl80211: Ignore connect event (cmd=46) when using userspace SME
1644347853.608680: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347853.608968: nl80211: Event message available
1644347853.609040: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan1
1644347853.609085: nl80211: New station 2c:91:ab:e0:30:35
1644347853.947835: nl80211: Event message available
1644347853.947968: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan1
1644347853.948001: nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347853.948035: nl80211: MLME event frame - hexdump(len=128): b0 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 d0 d1 03 00 01 00 00 00 13 00 d9 6e 04 32 90 43 9a a6 5a b9 a6 10 99 99 4c 98 3b 2f 63 0b 9e 85 6d eb 00 73 6c 6d 91 4b 8c 19 88 e7 34 55 cd 42 f7 b6 33 14 38 02 ac 6b 10 27 08 e5 6c ac e0 62 f2 6d 1e d2 07 f4 5c c9 a8 4f d7 58 ba 7c 90 73 8e 16 67 af d3 95 06 b3 75 dc f3 71 ac 59 b7 cb bf c8 52 a0 4d 69 71 c3 6b 5b
1644347853.948091: nl80211: Authenticate event
1644347853.948121: wlan1: Event AUTH (10) received
1644347853.948155: wlan1: SME: Authentication response: peer=2c:91:ab:e0:30:35 auth_type=3 auth_transaction=1 status_code=0
1644347853.948179: SME: Authentication response IEs - hexdump(len=98): 13 00 d9 6e 04 32 90 43 9a a6 5a b9 a6 10 99 99 4c 98 3b 2f 63 0b 9e 85 6d eb 00 73 6c 6d 91 4b 8c 19 88 e7 34 55 cd 42 f7 b6 33 14 38 02 ac 6b 10 27 08 e5 6c ac e0 62 f2 6d 1e d2 07 f4 5c c9 a8 4f d7 58 ba 7c 90 73 8e 16 67 af d3 95 06 b3 75 dc f3 71 ac 59 b7 cb bf c8 52 a0 4d 69 71 c3 6b 5b
1644347853.948274: wlan1: SME: SAE authentication transaction 1 status code 0
1644347853.948304: wlan1: SME SAE commit
1644347853.948337: SAE: Peer commit-scalar - hexdump(len=32): d9 6e 04 32 90 43 9a a6 5a b9 a6 10 99 99 4c 98 3b 2f 63 0b 9e 85 6d eb 00 73 6c 6d 91 4b 8c 19
1644347853.948373: SAE: Peer commit-element(x) - hexdump(len=32): 88 e7 34 55 cd 42 f7 b6 33 14 38 02 ac 6b 10 27 08 e5 6c ac e0 62 f2 6d 1e d2 07 f4 5c c9 a8 4f
1644347853.948406: SAE: Peer commit-element(y) - hexdump(len=32): d7 58 ba 7c 90 73 8e 16 67 af d3 95 06 b3 75 dc f3 71 ac 59 b7 cb bf c8 52 a0 4d 69 71 c3 6b 5b
1644347853.948462: SAE: Possible elements at the end of the frame - hexdump(len=0):
1644347853.948998: SAE: k - hexdump(len=32): [REMOVED]
1644347853.949033: SAE: salt for keyseed derivation - hexdump(len=32): 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 00 00 00 00 00 00 00
1644347853.949088: SAE: keyseed - hexdump(len=32): [REMOVED]
1644347853.949124: SAE: PMKID - hexdump(len=16): df 14 5d 19 4c 80 8a b1 8c 81 8b fa 27 14 89 8e
1644347853.949169: SAE: KCK - hexdump(len=32): [REMOVED]
1644347853.949198: SAE: PMK - hexdump(len=32): [REMOVED]
1644347853.949230: wlan1: Automatic auth_alg selection: 0x1
1644347853.949258: wlan1: Overriding auth_alg selection: 0x1
1644347853.949286: wlan1: Using SAE auth_alg
1644347853.949314: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x0
1644347853.949342: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347853.949370: RSN: No PMKSA cache entry found
1644347853.949397: wlan1: RSN: using IEEE 802.11i/D9.0
1644347853.949426: wlan1: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 1026 proto 2
1644347853.949455: wlan1: WPA: Selected mgmt group cipher 32
1644347853.949482: wlan1: WPA: clearing AP WPA IE
1644347853.949508: WPA: set AP RSN IE - hexdump(len=26): 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347853.949543: wlan1: WPA: clearing AP RSNXE
1644347853.949571: wlan1: WPA: AP group 0x10 network profile group 0x18; available group 0x10
1644347853.949598: wlan1: WPA: using GTK CCMP
1644347853.949627: wlan1: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
1644347853.949653: wlan1: WPA: using PTK CCMP
1644347853.949681: wlan1: WPA: AP key_mgmt 0x402 network profile key_mgmt 0x502; available key_mgmt 0x402
1644347853.949708: wlan1: RSN: using KEY_MGMT SAE
1644347853.949738: wlan1: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
1644347853.949765: wlan1: WPA: not using MGMT group cipher
1644347853.949791: 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
1644347853.949824: 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
1644347853.949856: RSN: Set own RSNXE default - hexdump(len=0):
1644347853.949881: PSK (set in config) - hexdump(len=32): [REMOVED]
1644347853.949906: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347853.949931: RRM: Determining whether RRM can be used - device support: 0x10
1644347853.949956: RRM: Adding RRM IE to Association Request
1644347853.949993: Added supported operating classes IE - hexdump(len=19): 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347853.950028: RSN: PMKSA cache search - network_ctx=0x55a488595780 try_opportunistic=0 akmp=0x400
1644347853.950054: RSN: Search for BSSID 2c:91:ab:e0:30:35
1644347853.950079: RSN: No PMKSA cache entry found
1644347853.950155: EAPOL: External notification - EAP success=0
1644347853.950188: EAPOL: External notification - EAP fail=0
1644347853.950214: EAPOL: External notification - portControl=Auto
1644347853.950242: wlan1: Cancelling scan request
1644347853.950274: wlan1: SME: Trying to authenticate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347853.950326: EAPOL: External notification - portValid=0
1644347853.950358: wlan1: State: AUTHENTICATING -> AUTHENTICATING
1644347853.950386: Not configuring frame filtering - BSS 00:00:00:00:00:00 is not a Hotspot 2.0 network
1644347853.950417: wlan1: Determining shared radio frequencies (max len 1)
1644347853.950444: wlan1: Shared frequencies (len=0): completed iteration
1644347853.950469: nl80211: Authenticate (ifindex=3)
1644347853.950500:   * bssid=2c:91:ab:e0:30:35
1644347853.950528:   * freq=5260
1644347853.950553:   * SSID=FRITZ!Box 7590 TC
1644347853.950577:   * IEs - hexdump(len=0): [NULL]
1644347853.950601:   * auth_data - hexdump(len=38): 02 00 00 00 01 00 a9 5c ca 9f cd 72 dc 1e 6c 27 f5 0c cb da f8 fb 4f 6b b9 67 af 04 41 53 23 e2 b6 6e dc aa c9 10
1644347853.950635:   * Auth Type 4
1644347853.950768: nl80211: Authentication request send successfully
1644347854.064151: nl80211: Event message available
1644347854.064288: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan1
1644347854.064323: nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347854.064352: nl80211: MLME event frame - hexdump(len=64): b0 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 e0 d1 03 00 02 00 00 00 00 00 3b b3 78 b0 86 91 2c f0 4d 82 af 1c 1c be 17 67 2c 52 41 f2 a4 92 23 f0 e1 84 d9 d3 64 f3 85 98
1644347854.064395: nl80211: Authenticate event
1644347854.064427: wlan1: Event AUTH (10) received
1644347854.064462: wlan1: SME: Authentication response: peer=2c:91:ab:e0:30:35 auth_type=3 auth_transaction=2 status_code=0
1644347854.064487: SME: Authentication response IEs - hexdump(len=34): 00 00 3b b3 78 b0 86 91 2c f0 4d 82 af 1c 1c be 17 67 2c 52 41 f2 a4 92 23 f0 e1 84 d9 d3 64 f3 85 98
1644347854.064525: wlan1: SME: SAE authentication transaction 2 status code 0
1644347854.064552: wlan1: SME SAE confirm
1644347854.064579: SAE: peer-send-confirm 0
1644347854.064685: SME: SAE completed - setting PMK for 4-way handshake
1644347854.064715: WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
1644347854.064746: RSN: Added PMKSA cache entry for 2c:91:ab:e0:30:35 network_ctx=0x55a488595780 akmp=0x400
1644347854.064831: wlan1: PMKSA-CACHE-ADDED 2c:91:ab:e0:30:35 0
1644347854.064881: nl80211: Add PMKID for 2c:91:ab:e0:30:35
1644347854.065011: nl80211: NL80211_CMD_SET_PMKSA failed: -95 (Operation not supported)
1644347854.065061: SME: Association Request IEs - hexdump(len=61): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347854.065110: wlan1: Trying to associate with 2c:91:ab:e0:30:35 (SSID='FRITZ!Box 7590 TC' freq=5260 MHz)
1644347854.065140: wlan1: State: AUTHENTICATING -> ASSOCIATING
1644347854.065166: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347854.065193: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347854.065329: 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
1644347854.065377: wlan1: RSN: clearing own RSNXE
1644347854.065405: nl80211: Associate (ifindex=3)
1644347854.065437:   * bssid=2c:91:ab:e0:30:35
1644347854.065468:   * freq=5260
1644347854.065497:   * SSID=FRITZ!Box 7590 TC
1644347854.065527:   * IEs - hexdump(len=61): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 08 00 00 7f 0b 00 00 00 00 01 00 40 40 00 00 20 46 05 70 00 00 00 00 3b 11 81 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
1644347854.065569:   * WPA Versions 0x2
1644347854.065595:   * pairwise=0xfac04
1644347854.065619:   * group=0xfac04
1644347854.065643:   * akm=0xfac08
1644347854.065729: nl80211: Association request send successfully
1644347854.088964: nl80211: Event message available
1644347854.089103: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan1
1644347854.089137: nl80211: Delete station 2c:91:ab:e0:30:35
1644347854.091709: nl80211: Event message available
1644347854.091828: nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan1
1644347854.091860: nl80211: MLME event 38 (NL80211_CMD_ASSOCIATE) on wlan1(c4:85:08:14:a1:b8) A1=c4:85:08:14:a1:b8 A2=2c:91:ab:e0:30:35
1644347854.091890: nl80211: MLME event frame - hexdump(len=196): 10 00 3c 00 c4 85 08 14 a1 b8 2c 91 ab e0 30 35 2c 91 ab e0 30 35 f0 d1 11 15 28 00 0f 24 01 08 8c 12 98 24 b0 48 60 6c 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 08 8c fd f0 01 01 02 01 00 dd 18 00 50 f2 04 10 4a 00 01 10 10 3b 00 01 03 10 49 00 06 00 37 2a 00 01 20 dd 07 00 03 7f 05 01 00 01
1644347854.091967: nl80211: Associate event
1644347854.092000: wlan1: Event ASSOC_REJECT (12) received
1644347854.092034: wlan1: CTRL-EVENT-ASSOC-REJECT bssid=2c:91:ab:e0:30:35 status_code=40
1644347854.092213: wlan1: SME: Association with 2c:91:ab:e0:30:35 failed: status code 40
1644347854.092251: wpa_driver_nl80211_deauthenticate(addr=2c:91:ab:e0:30:35 reason_code=3)
1644347854.092354: wlan1: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
1644347854.092392: wlan1: SME: Deauth request to the driver failed
1644347854.092424: wlan1: Radio work 'sme-connect'@0x55a4885aa8e0 done in 0.498357 seconds
1644347854.092456: wlan1: radio_work_free('sme-connect'@0x55a4885aa8e0): num_active_works --> 0
1644347854.092487: BSSID 2c:91:ab:e0:30:35 ignore list count incremented to 3, ignoring for 60 seconds
1644347854.092519: Continuous association failures - consider temporary network disabling
1644347854.092557: wlan1: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="FRITZ!Box 7590 TC" auth_failures=2 duration=20 reason=CONN_FAILED
1644347854.092587: wlan1: Consecutive connection failures: 9 --> request scan in 10000 ms
1644347854.092621: wlan1: Setting scan request: 10.000000 sec
1644347854.092657: wlan1: State: ASSOCIATING -> DISCONNECTED
1644347854.092686: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347854.092720: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347854.092884: nl80211: Event message available
1644347854.092964: nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan1
1644347854.093009: nl80211: Ignore connect event (cmd=46) when using userspace SME
1644347854.098004: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347864.099390: wlan1: State: DISCONNECTED -> SCANNING
1644347864.099577: Scan SSID - hexdump_ascii(len=17):
     46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54   FRITZ!Box 7590 T
     43                                                C               
1644347864.099628: wlan1: Starting AP scan for wildcard SSID
1644347864.099673: wlan1: Add radio work 'scan'@0x55a4885a4340
1644347864.099708: wlan1: First radio work item in the queue - schedule start immediately
1644347864.099752: wlan1: Starting radio work 'scan'@0x55a4885a4340 after 0.000042 second wait
1644347864.099822: wlan1: nl80211: scan request
1644347864.099866: nl80211: Scan SSID FRITZ!Box 7590 TC
1644347864.099898: nl80211: Scan SSID 
1644347864.099927: nl80211: Scan extra IEs - hexdump(len=13): 7f 0b 00 00 00 00 01 00 40 40 00 00 20
1644347864.101368: Scan requested (ret=0) - scan timeout 30 seconds
1644347864.101475: nl80211: Event message available
1644347864.101518: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan1
1644347864.101552: wlan1: nl80211: Scan trigger
1644347864.101583: wlan1: Event SCAN_STARTED (47) received
1644347864.101613: wlan1: Own scan request started a scan in 0.000152 seconds
1644347864.104717: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347866.369770: dbus: fi.w1.wpa_supplicant1.Interface.Disconnect (/fi/w1/wpa_supplicant1/Interfaces/1) []
1644347866.369945: wlan1: Cancelling scan request
1644347866.369992: wlan1: Request to deauthenticate - bssid=00:00:00:00:00:00 pending_bssid=00:00:00:00:00:00 reason=3 (DEAUTH_LEAVING) state=SCANNING
1644347866.370036: TDLS: Tear down peers
1644347866.370175: nl80211: Data frame filter flags=0x0
1644347866.370269: nl80211: Failed to open /proc/sys/net/ipv4/conf/wlan1/drop_unicast_in_l2_multicast: Read-only file system
1644347866.370317: nl80211: Failed to set IPv4 unicast in multicast filter
1644347866.370361: wlan1: State: SCANNING -> DISCONNECTED
1644347866.370461: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347866.370514: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347866.370645: EAPOL: External notification - portEnabled=0
1644347866.370706: EAPOL: External notification - portValid=0
1644347866.370748: EAPOL: External notification - EAP success=0
1644347866.370794: QM: Clear all active DSCP policies
1644347866.370836: wlan1: CTRL-EVENT-DSCP-POLICY clear_all
1644347866.371152: dbus: fi.w1.wpa_supplicant1.Interface.RemoveNetwork (/fi/w1/wpa_supplicant1/Interfaces/1) [o]
1644347866.371227: RSN: Flush PMKSA cache entry for 2c:91:ab:e0:30:35
1644347866.371263: wlan1: PMKSA-CACHE-REMOVED 2c:91:ab:e0:30:35 0
1644347866.371286: nl80211: Delete PMKID for 2c:91:ab:e0:30:35
1644347867.327846: nl80211: NL80211_CMD_DEL_PMKSA failed: -100 (Network is down)
1644347867.327944: wlan1: RSN: PMKSA cache entry free_cb: 2c:91:ab:e0:30:35 reason=0
1644347867.327972: wlan1: RSN: removed current PMKSA entry
1644347867.327995: RSN: Clear current PMKSA entry selection
1644347867.328027: wlan1: Request to deauthenticate - bssid=00:00:00:00:00:00 pending_bssid=00:00:00:00:00:00 reason=1 (UNSPECIFIED) state=DISCONNECTED
1644347867.328052: TDLS: Tear down peers
1644347867.328152: nl80211: Data frame filter flags=0x0
1644347867.328245: nl80211: Failed to open /proc/sys/net/ipv4/conf/wlan1/drop_unicast_in_l2_multicast: Read-only file system
1644347867.328302: nl80211: Failed to set IPv4 unicast in multicast filter
1644347867.328349: wlan1: State: DISCONNECTED -> DISCONNECTED
1644347867.328376: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347867.328417: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347867.328472: EAPOL: External notification - portEnabled=0
1644347867.328510: EAPOL: External notification - portValid=0
1644347867.328554: QM: Clear all active DSCP policies
1644347867.328585: wlan1: CTRL-EVENT-DSCP-POLICY clear_all
1644347867.328614: wlan1: Setting scan request: 5.000000 sec
1644347867.328660: dbus: Unregister network object '/fi/w1/wpa_supplicant1/Interfaces/1/Networks/0'
1644347867.328937: RTM_NEWLINK: ifi_index=3 ifname=wlan1 operstate=2 linkmode=1 ifi_family=0 ifi_flags=0x1002 ()
1644347867.329045: nl80211: Interface down (wlan1/wlan1)
1644347867.329085: wlan1: Event INTERFACE_DISABLED (26) received
1644347867.329117: wlan1: Interface was disabled
1644347867.740629: nl80211: Data frame filter flags=0x0
1644347867.740822: nl80211: Failed to open /proc/sys/net/ipv4/conf/wlan1/drop_unicast_in_l2_multicast: Read-only file system
1644347867.740869: nl80211: Failed to set IPv4 unicast in multicast filter
1644347867.740903: wlan1: State: DISCONNECTED -> DISCONNECTED
1644347867.740937: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347867.740968: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347867.741020: EAPOL: External notification - portEnabled=0
1644347867.741055: EAPOL: External notification - portValid=0
1644347867.741097: wlan1: Remove radio work 'scan'@0x55a4885a4340 (started)
1644347867.741215: wlan1: radio_work_free('scan'@0x55a4885a4340): num_active_works --> 0
1644347867.741267: wlan1: State: DISCONNECTED -> INTERFACE_DISABLED
1644347867.741418: RTM_NEWLINK: ifi_index=3 ifname=wlan1 operstate=2 linkmode=1 ifi_family=0 ifi_flags=0x1002 ()
1644347867.741501: RTM_NEWLINK: ifi_index=3 ifname=wlan1 operstate=2 linkmode=1 ifi_family=0 ifi_flags=0x1003 ([UP])
1644347867.741601: nl80211: Interface up (wlan1/wlan1)
1644347867.741667: nl80211: Own MAC address on ifindex 3 (wlan1) changed from c4:85:08:14:a1:b8 to 06:0a:de:ef:7f:49
1644347867.741715: wlan1: Event INTERFACE_ENABLED (25) received
1644347867.741744: wlan1: Interface was enabled
1644347867.761066: wlan1: State: INTERFACE_DISABLED -> DISCONNECTED
1644347867.761158: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347867.761186: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347867.761315: wlan1: Rescheduling scan request: 0.000000 sec
1644347867.761389: RTM_NEWLINK: ifi_index=3 ifname=wlan1 operstate=2 linkmode=1 ifi_family=0 ifi_flags=0x1003 ([UP])
1644347867.761438: nl80211: Event message available
1644347867.761485: nl80211: Drv Event 35 (NL80211_CMD_SCAN_ABORTED) received for wlan1
1644347867.761513: wlan1: nl80211: Scan aborted
1644347867.761538: nl80211: Scan probed for SSID 'FRITZ!Box 7590 TC'
1644347867.761560: nl80211: Scan probed for SSID ''
1644347867.761592: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 5180 5200 5220 5240 5260 5280 5300 5320 5500 5520 5540 5560 5580 5600 5620 5640 5660 5680 5700 5745 5765 5785 5805 5825
1644347867.761617: wlan1: Event SCAN_RESULTS (3) received
1644347867.761642: wlan1: Scan completed in 3.660030 seconds
1644347867.761778: nl80211: Received scan results (6 BSSes)
1644347867.761858: Sorted scan results
1644347867.761885: 2c:91:ab:e0:30:35 freq=5260 qual=0 noise=-92~ level=-47 snr=45* flags=0xb age=2632 est=135000
1644347867.761912: IEs - hexdump(len=458): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff fa 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347867.762048: Beacon IEs - hexdump(len=382): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff fa 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347867.762196: 2c:91:ab:e0:30:34 freq=2437 qual=0 noise=-89~ level=-33 snr=56* flags=0xb age=3516 est=65000
1644347867.762224: IEs - hexdump(len=365): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 12 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347867.762338: Beacon IEs - hexdump(len=289): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 12 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347867.762434: e0:28:6d:7e:94:3c freq=2437 qual=0 noise=-89~ level=-65 snr=24 flags=0xb age=3460 est=63700
1644347867.762459: IEs - hexdump(len=455): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 08 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fb 62 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c dd 08 8c fd f0 01 01 02 01 00
1644347867.762595: Beacon IEs - hexdump(len=379): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 0a 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fe b5 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c
1644347867.762725: e0:28:6d:7e:94:3b freq=5260 qual=0 noise=-92~ level=-78 snr=14 flags=0xb age=2636 est=54000
1644347867.762751: IEs - hexdump(len=491): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff 32 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347867.762896: Beacon IEs - hexdump(len=415): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff 91 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00
1644347867.763022: ea:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-84 snr=5 flags=0xb age=3652 est=13000
1644347867.763047: IEs - hexdump(len=312): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 0d 6c e1 a2 99 69 66 06 3c 4c d5 04 45 20 1d 8a 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347867.763157: Beacon IEs - hexdump(len=224): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347867.763237: e8:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-87 snr=2 flags=0xb age=3656 est=6500
1644347867.763261: IEs - hexdump(len=300): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 09 e8 5a 0f d4 6d ec 63 ca 08 e8 df 70 07 6f c2 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347867.763359: Beacon IEs - hexdump(len=212): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347867.763439: wlan1: BSS: Start scan result update 10
1644347867.763532: wlan1: New scan results available (own=1 ext=0)
1644347867.763609: wlan1: State: DISCONNECTED -> DISCONNECTED
1644347867.763638: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347867.763661: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347867.763706: l2_packet_receive - recvfrom: Network is down
1644347867.763816: dbus: fi.w1.wpa_supplicant1.Interface.Scan (/fi/w1/wpa_supplicant1/Interfaces/1) [a{sv}]
1644347867.763863: wlan1: Add radio work 'scan'@0x55a48859e580
1644347867.763890: wlan1: First radio work item in the queue - schedule start immediately
1644347867.764335: wlan1: Disconnected - do not scan
1644347867.764349: wlan1: State: DISCONNECTED -> DISCONNECTED
1644347867.764366: nl80211: Set wlan1 operstate 0->0 (DORMANT)
1644347867.764376: netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
1644347867.764433: wlan1: Starting radio work 'scan'@0x55a48859e580 after 0.000543 second wait
1644347867.764455: wlan1: nl80211: scan request
1644347867.764469: nl80211: Scan SSID 
1644347867.765658: Scan requested (ret=0) - scan timeout 30 seconds
1644347867.765695: nl80211: Event message available
1644347867.765764: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan1
1644347867.765806: wlan1: nl80211: Scan trigger
1644347867.765824: wlan1: Event SCAN_STARTED (47) received
1644347867.765868: wlan1: Own scan request started a scan in 0.000173 seconds
1644347867.769537: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347870.894010: nl80211: Event message available
1644347870.894170: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan1
1644347870.894248: wlan1: nl80211: New scan results available
1644347870.894279: nl80211: Scan probed for SSID ''
1644347870.894316: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 5180 5200 5220 5240 5260 5280 5300 5320 5500 5520 5540 5560 5580 5600 5620 5640 5660 5680 5700 5745 5765 5785 5805 5825
1644347870.894345: wlan1: Event SCAN_RESULTS (3) received
1644347870.894375: wlan1: Scan completed in 3.128508 seconds
1644347870.894597: nl80211: Received scan results (6 BSSes)
1644347870.894700: Sorted scan results
1644347870.894733: 2c:91:ab:e0:30:35 freq=5260 qual=0 noise=-92~ level=-47 snr=45* flags=0xb age=2180 est=135000
1644347870.894765: IEs - hexdump(len=458): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff a2 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347870.894908: Beacon IEs - hexdump(len=382): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff 83 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347870.895070: 2c:91:ab:e0:30:34 freq=2437 qual=0 noise=-89~ level=-36 snr=53* flags=0xb age=2980 est=65000
1644347870.895100: IEs - hexdump(len=365): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 3b 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347870.895216: Beacon IEs - hexdump(len=289): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 3b 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347870.895313: e0:28:6d:7e:94:3c freq=2437 qual=0 noise=-89~ level=-67 snr=22 flags=0xb age=3016 est=61100
1644347870.895341: IEs - hexdump(len=455): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 1c 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 ef 33 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c dd 08 8c fd f0 01 01 02 01 00
1644347870.895477: Beacon IEs - hexdump(len=379): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 0a 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fe b5 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c
1644347870.895611: e0:28:6d:7e:94:3b freq=5260 qual=0 noise=-92~ level=-79 snr=13 flags=0xb age=2188 est=47250
1644347870.895641: IEs - hexdump(len=491): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff a7 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347870.895786: Beacon IEs - hexdump(len=415): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff e9 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00
1644347870.895915: ea:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-85 snr=4 flags=0xb age=3116 est=10833
1644347870.895945: IEs - hexdump(len=312): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 0d 6c e1 a2 99 69 66 06 3c 4c d5 04 45 20 1d 8a 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347870.896060: Beacon IEs - hexdump(len=224): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347870.896144: e8:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-86 snr=3 flags=0xb age=3124 est=8666
1644347870.896171: IEs - hexdump(len=300): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 09 e8 5a 0f d4 6d ec 63 ca 08 e8 df 70 07 6f c2 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347870.896270: Beacon IEs - hexdump(len=212): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347870.896353: wlan1: BSS: Start scan result update 11
1644347870.896459: BSS: last_scan_res_used=6/32
1644347870.896492: wlan1: Scan-only results received
1644347870.896583: wlan1: Radio work 'scan'@0x55a48859e580 done in 3.132146 seconds
1644347870.896621: wlan1: radio_work_free('scan'@0x55a48859e580): num_active_works --> 0
1644347870.896680: RTM_NEWLINK: ifi_index=3 ifname=wlan1 wext ifi_family=0 ifi_flags=0x1003 ([UP])
1644347870.899620: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347870.901499: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/0
1644347870.901804: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/1
1644347870.902137: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/2
1644347870.902448: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/3
1644347870.902666: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/6
1644347870.902836: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/7
1644347871.103545: dbus: fi.w1.wpa_supplicant1.Interface.Scan (/fi/w1/wpa_supplicant1/Interfaces/1) [a{sv}]
1644347871.103649: wlan1: Add radio work 'scan'@0x55a48859e580
1644347871.103685: wlan1: First radio work item in the queue - schedule start immediately
1644347871.103821: wlan1: Starting radio work 'scan'@0x55a48859e580 after 0.000132 second wait
1644347871.103887: wlan1: nl80211: scan request
1644347871.103926: nl80211: Scan SSID 
1644347871.105276: Scan requested (ret=0) - scan timeout 30 seconds
1644347871.105363: nl80211: Event message available
1644347871.105409: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan1
1644347871.105443: wlan1: nl80211: Scan trigger
1644347871.105474: wlan1: Event SCAN_STARTED (47) received
1644347871.105507: wlan1: Own scan request started a scan in 0.000156 seconds
1644347871.108980: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347874.273222: RTM_NEWLINK: ifi_index=3 ifname=wlan1 wext ifi_family=0 ifi_flags=0x1003 ([UP])
1644347874.273351: nl80211: Event message available
1644347874.273396: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan1
1644347874.273422: wlan1: nl80211: New scan results available
1644347874.273444: nl80211: Scan probed for SSID ''
1644347874.273473: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 5180 5200 5220 5240 5260 5280 5300 5320 5500 5520 5540 5560 5580 5600 5620 5640 5660 5680 5700 5745 5765 5785 5805 5825
1644347874.273495: wlan1: Event SCAN_RESULTS (3) received
1644347874.273516: wlan1: Scan completed in 3.168011 seconds
1644347874.273706: nl80211: Received scan results (8 BSSes)
1644347874.273778: Sorted scan results
1644347874.273801: 2c:91:ab:e0:30:35 freq=5260 qual=0 noise=-92~ level=-48 snr=44* flags=0xb age=2180 est=135000
1644347874.273825: IEs - hexdump(len=458): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff 67 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347874.273942: Beacon IEs - hexdump(len=382): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff 90 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347874.274074: 2c:91:ab:e0:30:34 freq=2437 qual=0 noise=-89~ level=-31 snr=58* flags=0xb age=3020 est=65000
1644347874.274098: IEs - hexdump(len=365): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 0e 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347874.274194: Beacon IEs - hexdump(len=289): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 3b 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347874.274275: e0:28:6d:7e:94:3c freq=2437 qual=0 noise=-89~ level=-65 snr=24 flags=0xb age=2992 est=63700
1644347874.274295: IEs - hexdump(len=455): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 0e 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fd a2 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c dd 08 8c fd f0 01 01 02 01 00
1644347874.274421: Beacon IEs - hexdump(len=379): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 0a 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fe b5 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c
1644347874.274522: e0:28:6d:7e:94:3b freq=5260 qual=0 noise=-92~ level=-78 snr=14 flags=0xb age=2188 est=54000
1644347874.274542: IEs - hexdump(len=491): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff 8e 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347874.274664: Beacon IEs - hexdump(len=415): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff f1 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00
1644347874.274779: e8:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-89 snr=0 flags=0xb age=3144 est=1000
1644347874.274801: IEs - hexdump(len=300): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 09 e8 5a 0f d4 6d ec 63 ca 08 e8 df 70 07 6f c2 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347874.274883: Beacon IEs - hexdump(len=212): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347874.274947: 3c:a6:2f:9c:0f:97 freq=2462 qual=0 noise=-89~ level=-89 snr=0 flags=0xb age=2924 est=1000
1644347874.274968: IEs - hexdump(len=342): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 33 30 20 43 50 01 08 82 84 8b 96 8c 12 98 24 03 01 0b 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 05 00 09 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 59 89 33 fa ff 00 00 fa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 ff ee 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 59 89 33 fa ff 00 00 fa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 ef 12 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
1644347874.275059: Beacon IEs - hexdump(len=342): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 33 30 20 43 50 01 08 82 84 8b 96 8c 12 98 24 03 01 0b 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 05 00 09 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 59 89 33 fa ff 00 00 fa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 ff ee 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 59 89 33 fa ff 00 00 fa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 ef 12 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
1644347874.275159: ea:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-90 snr=-1 flags=0xb age=3144 est=1000
1644347874.275181: IEs - hexdump(len=312): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 0d 6c e1 a2 99 69 66 06 3c 4c d5 04 45 20 1d 8a 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347874.275265: Beacon IEs - hexdump(len=224): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347874.275332: 50:d4:f7:3b:bf:69 freq=2412 qual=0 noise=-89~ level=-91 snr=-2 flags=0xb age=3160 est=1000
1644347874.275352: IEs - hexdump(len=225): 00 1b 46 52 49 54 5a 21 42 6f 78 20 46 6f 6e 20 57 4c 41 4e 20 37 33 36 30 5f 45 58 54 01 08 82 84 8b 96 12 24 48 6c 03 01 01 32 04 0c 18 30 60 33 08 20 01 02 03 04 05 06 07 33 08 21 05 06 07 08 09 0a 0b 05 04 00 01 00 00 dd 1a 00 50 f2 01 01 00 00 50 f2 02 02 00 00 50 f2 02 00 50 f2 04 01 00 00 50 f2 02 30 18 01 00 00 0f ac 02 02 00 00 0f ac 02 00 0f ac 04 01 00 00 0f ac 02 00 00 2a 01 04 2d 1a ac 01 17 ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 3d 16 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 dd 18 00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 0b 05 00 00 00 12 7a dd 07 00 0c 43 03 00 00 00
1644347874.275418: Beacon IEs - hexdump(len=225): 00 1b 46 52 49 54 5a 21 42 6f 78 20 46 6f 6e 20 57 4c 41 4e 20 37 33 36 30 5f 45 58 54 01 08 82 84 8b 96 12 24 48 6c 03 01 01 32 04 0c 18 30 60 33 08 20 01 02 03 04 05 06 07 33 08 21 05 06 07 08 09 0a 0b 05 04 00 01 00 00 dd 1a 00 50 f2 01 01 00 00 50 f2 02 02 00 00 50 f2 02 00 50 f2 04 01 00 00 50 f2 02 30 18 01 00 00 0f ac 02 02 00 00 0f ac 02 00 0f ac 04 01 00 00 0f ac 02 00 00 2a 01 04 2d 1a ac 01 17 ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 3d 16 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 dd 18 00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 0b 05 00 00 00 12 7a dd 07 00 0c 43 03 00 00 00
1644347874.275488: wlan1: BSS: Start scan result update 12
1644347874.275571: wlan1: BSS: Add new id 8 BSSID 3c:a6:2f:9c:0f:97 SSID 'FRITZ!Box 7530 CP' freq 2462
1644347874.275606: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/8'
1644347874.275705: WPS: attr type=0x104a len=1
1644347874.275729: WPS: attr type=0x1044 len=1
1644347874.275748: WPS: attr type=0x103c len=1
1644347874.275766: WPS: attr type=0x1049 len=6
1644347874.275785: WPS: WFA subelement id=0 len=1
1644347874.275804: WPS: attr type=0x104a len=1
1644347874.275823: WPS: attr type=0x1044 len=1
1644347874.275841: WPS: attr type=0x103c len=1
1644347874.275859: WPS: attr type=0x1049 len=6
1644347874.275878: WPS: WFA subelement id=0 len=1
1644347874.275985: wlan1: BSS: Add new id 9 BSSID 50:d4:f7:3b:bf:69 SSID 'FRITZ!Box Fon WLAN 7360_EXT' freq 2412
1644347874.276013: dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/9'
1644347874.276140: BSS: last_scan_res_used=8/32
1644347874.276167: wlan1: Scan-only results received
1644347874.276219: wlan1: Radio work 'scan'@0x55a48859e580 done in 3.172400 seconds
1644347874.276244: wlan1: radio_work_free('scan'@0x55a48859e580): num_active_works --> 0
1644347874.277368: dbus: org.freedesktop.DBus.Properties.GetAll (/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/8) [s]
1644347874.277488: WPS: attr type=0x104a len=1
1644347874.277513: WPS: attr type=0x1044 len=1
1644347874.277532: WPS: attr type=0x103c len=1
1644347874.277550: WPS: attr type=0x1049 len=6
1644347874.277569: WPS: WFA subelement id=0 len=1
1644347874.277588: WPS: attr type=0x104a len=1
1644347874.277606: WPS: attr type=0x1044 len=1
1644347874.277625: WPS: attr type=0x103c len=1
1644347874.277643: WPS: attr type=0x1049 len=6
1644347874.277661: WPS: WFA subelement id=0 len=1
1644347874.278859: dbus: org.freedesktop.DBus.Properties.GetAll (/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/9) [s]
1644347874.484164: dbus: fi.w1.wpa_supplicant1.Interface.Scan (/fi/w1/wpa_supplicant1/Interfaces/1) [a{sv}]
1644347874.484271: wlan1: Add radio work 'scan'@0x55a48859e580
1644347874.484298: wlan1: First radio work item in the queue - schedule start immediately
1644347874.484411: wlan1: Starting radio work 'scan'@0x55a48859e580 after 0.000111 second wait
1644347874.484467: wlan1: nl80211: scan request
1644347874.484503: nl80211: Scan SSID 
1644347874.485820: Scan requested (ret=0) - scan timeout 30 seconds
1644347874.485895: nl80211: Event message available
1644347874.485947: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan1
1644347874.485991: wlan1: nl80211: Scan trigger
1644347874.486015: wlan1: Event SCAN_STARTED (47) received
1644347874.486039: wlan1: Own scan request started a scan in 0.000155 seconds
1644347874.489546: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347877.652257: nl80211: Event message available
1644347877.652347: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan1
1644347877.652384: wlan1: nl80211: New scan results available
1644347877.652419: nl80211: Scan probed for SSID ''
1644347877.652454: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 5180 5200 5220 5240 5260 5280 5300 5320 5500 5520 5540 5560 5580 5600 5620 5640 5660 5680 5700 5745 5765 5785 5805 5825
1644347877.652480: wlan1: Event SCAN_RESULTS (3) received
1644347877.652502: wlan1: Scan completed in 3.166463 seconds
1644347877.652727: nl80211: Received scan results (8 BSSes)
1644347877.652816: Sorted scan results
1644347877.652848: 2c:91:ab:e0:30:35 freq=5260 qual=0 noise=-92~ level=-48 snr=44* flags=0xb age=2180 est=135000
1644347877.652876: IEs - hexdump(len=458): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff eb 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347877.653086: Beacon IEs - hexdump(len=382): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff 67 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347877.653253: 2c:91:ab:e0:30:34 freq=2437 qual=0 noise=-89~ level=-32 snr=57* flags=0xb age=3040 est=65000
1644347877.653281: IEs - hexdump(len=365): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 42 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347877.653434: Beacon IEs - hexdump(len=289): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 3b 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347877.653552: e0:28:6d:7e:94:3c freq=2437 qual=0 noise=-89~ level=-65 snr=24 flags=0xb age=3036 est=63700
1644347877.653580: IEs - hexdump(len=455): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 13 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fd 35 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c dd 08 8c fd f0 01 01 02 01 00
1644347877.653743: Beacon IEs - hexdump(len=379): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 0a 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fe b5 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c
1644347877.653859: e0:28:6d:7e:94:3b freq=5260 qual=0 noise=-92~ level=-77 snr=15 flags=0xb age=2184 est=60750
1644347877.653899: IEs - hexdump(len=491): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff f4 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347877.654070: Beacon IEs - hexdump(len=415): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff 30 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00
1644347877.654215: e8:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-89 snr=0 flags=0xb age=6520 est=1000
1644347877.654240: IEs - hexdump(len=300): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 09 e8 5a 0f d4 6d ec 63 ca 08 e8 df 70 07 6f c2 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347877.654311: Beacon IEs - hexdump(len=212): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347877.654384: 3c:a6:2f:9c:0f:97 freq=2462 qual=0 noise=-89~ level=-89 snr=0 flags=0xb age=6300 est=1000
1644347877.654412: IEs - hexdump(len=342): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 33 30 20 43 50 01 08 82 84 8b 96 8c 12 98 24 03 01 0b 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 05 00 09 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 59 89 33 fa ff 00 00 fa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 ff ee 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 59 89 33 fa ff 00 00 fa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 ef 12 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
1644347877.654506: Beacon IEs - hexdump(len=342): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 33 30 20 43 50 01 08 82 84 8b 96 8c 12 98 24 03 01 0b 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 05 00 09 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 59 89 33 fa ff 00 00 fa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 ff ee 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 59 89 33 fa ff 00 00 fa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 ef 12 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
1644347877.654584: ea:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-90 snr=-1 flags=0xb age=6520 est=1000
1644347877.654600: IEs - hexdump(len=312): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 0d 6c e1 a2 99 69 66 06 3c 4c d5 04 45 20 1d 8a 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347877.654670: Beacon IEs - hexdump(len=224): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347877.654728: 50:d4:f7:3b:bf:69 freq=2412 qual=0 noise=-89~ level=-91 snr=-2 flags=0xb age=6536 est=1000
1644347877.654756: IEs - hexdump(len=225): 00 1b 46 52 49 54 5a 21 42 6f 78 20 46 6f 6e 20 57 4c 41 4e 20 37 33 36 30 5f 45 58 54 01 08 82 84 8b 96 12 24 48 6c 03 01 01 32 04 0c 18 30 60 33 08 20 01 02 03 04 05 06 07 33 08 21 05 06 07 08 09 0a 0b 05 04 00 01 00 00 dd 1a 00 50 f2 01 01 00 00 50 f2 02 02 00 00 50 f2 02 00 50 f2 04 01 00 00 50 f2 02 30 18 01 00 00 0f ac 02 02 00 00 0f ac 02 00 0f ac 04 01 00 00 0f ac 02 00 00 2a 01 04 2d 1a ac 01 17 ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 3d 16 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 dd 18 00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 0b 05 00 00 00 12 7a dd 07 00 0c 43 03 00 00 00
1644347877.654827: Beacon IEs - hexdump(len=225): 00 1b 46 52 49 54 5a 21 42 6f 78 20 46 6f 6e 20 57 4c 41 4e 20 37 33 36 30 5f 45 58 54 01 08 82 84 8b 96 12 24 48 6c 03 01 01 32 04 0c 18 30 60 33 08 20 01 02 03 04 05 06 07 33 08 21 05 06 07 08 09 0a 0b 05 04 00 01 00 00 dd 1a 00 50 f2 01 01 00 00 50 f2 02 02 00 00 50 f2 02 00 50 f2 04 01 00 00 50 f2 02 30 18 01 00 00 0f ac 02 02 00 00 0f ac 02 00 0f ac 04 01 00 00 0f ac 02 00 00 2a 01 04 2d 1a ac 01 17 ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 3d 16 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 dd 18 00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 0b 05 00 00 00 12 7a dd 07 00 0c 43 03 00 00 00
1644347877.654893: wlan1: BSS: Start scan result update 13
1644347877.654960: BSS: last_scan_res_used=8/32
1644347877.654979: wlan1: Scan-only results received
1644347877.655038: wlan1: Radio work 'scan'@0x55a48859e580 done in 3.170627 seconds
1644347877.655059: wlan1: radio_work_free('scan'@0x55a48859e580): num_active_works --> 0
1644347877.655112: RTM_NEWLINK: ifi_index=3 ifname=wlan1 wext ifi_family=0 ifi_flags=0x1003 ([UP])
1644347877.657644: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347877.659996: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/0
1644347877.660255: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/1
1644347877.660455: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/2
1644347877.660595: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/3
1644347877.660742: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/7
1644347877.660824: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/8
1644347877.660924: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/6
1644347877.661006: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/9
1644347879.369311: dbus: fi.w1.wpa_supplicant1.Interface.Scan (/fi/w1/wpa_supplicant1/Interfaces/1) [a{sv}]
1644347879.369443: wlan1: Add radio work 'scan'@0x55a48859e580
1644347879.369488: wlan1: First radio work item in the queue - schedule start immediately
1644347879.369711: wlan1: Starting radio work 'scan'@0x55a48859e580 after 0.000216 second wait
1644347879.369833: wlan1: nl80211: scan request
1644347879.369907: nl80211: Scan SSID 
1644347879.371315: Scan requested (ret=0) - scan timeout 30 seconds
1644347879.371386: nl80211: Event message available
1644347879.371425: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan1
1644347879.371454: wlan1: nl80211: Scan trigger
1644347879.371480: wlan1: Event SCAN_STARTED (47) received
1644347879.371506: wlan1: Own scan request started a scan in 0.000129 seconds
1644347879.374949: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347882.567545: RTM_NEWLINK: ifi_index=3 ifname=wlan1 wext ifi_family=0 ifi_flags=0x1003 ([UP])
1644347882.567613: nl80211: Event message available
1644347882.567641: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan1
1644347882.567654: wlan1: nl80211: New scan results available
1644347882.567666: nl80211: Scan probed for SSID ''
1644347882.567680: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 5180 5200 5220 5240 5260 5280 5300 5320 5500 5520 5540 5560 5580 5600 5620 5640 5660 5680 5700 5745 5765 5785 5805 5825
1644347882.567704: wlan1: Event SCAN_RESULTS (3) received
1644347882.567716: wlan1: Scan completed in 3.196213 seconds
1644347882.567830: nl80211: Received scan results (8 BSSes)
1644347882.567871: Sorted scan results
1644347882.567882: 2c:91:ab:e0:30:35 freq=5260 qual=0 noise=-92~ level=-47 snr=45* flags=0xb age=2180 est=135000
1644347882.567893: IEs - hexdump(len=458): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff c1 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347882.567947: Beacon IEs - hexdump(len=382): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff 31 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347882.567993: 2c:91:ab:e0:30:34 freq=2437 qual=0 noise=-89~ level=-31 snr=58* flags=0xb age=3064 est=65000
1644347882.568004: IEs - hexdump(len=365): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 0d 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347882.568058: Beacon IEs - hexdump(len=289): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 0d 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347882.568096: e0:28:6d:7e:94:3c freq=2437 qual=0 noise=-89~ level=-65 snr=24 flags=0xb age=3020 est=63700
1644347882.568107: IEs - hexdump(len=455): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 06 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fd 9a 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c dd 08 8c fd f0 01 01 02 01 00
1644347882.568159: Beacon IEs - hexdump(len=379): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 0a 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fe b5 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c
1644347882.568214: e0:28:6d:7e:94:3b freq=5260 qual=0 noise=-92~ level=-78 snr=14 flags=0xb age=2184 est=54000
1644347882.568224: IEs - hexdump(len=491): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff 39 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347882.568286: Beacon IEs - hexdump(len=415): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff 39 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00
1644347882.568336: e8:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-89 snr=0 flags=0xb age=11436 est=1000
1644347882.568346: IEs - hexdump(len=300): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 09 e8 5a 0f d4 6d ec 63 ca 08 e8 df 70 07 6f c2 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347882.568384: Beacon IEs - hexdump(len=212): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347882.568418: 3c:a6:2f:9c:0f:97 freq=2462 qual=0 noise=-89~ level=-89 snr=0 flags=0xb age=11216 est=1000
1644347882.568428: IEs - hexdump(len=342): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 33 30 20 43 50 01 08 82 84 8b 96 8c 12 98 24 03 01 0b 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 05 00 09 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 59 89 33 fa ff 00 00 fa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 ff ee 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 59 89 33 fa ff 00 00 fa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 ef 12 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
1644347882.568470: Beacon IEs - hexdump(len=342): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 33 30 20 43 50 01 08 82 84 8b 96 8c 12 98 24 03 01 0b 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 05 00 09 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 59 89 33 fa ff 00 00 fa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 ff ee 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 59 89 33 fa ff 00 00 fa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 ef 12 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
1644347882.568512: ea:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-90 snr=-1 flags=0xb age=11436 est=1000
1644347882.568522: IEs - hexdump(len=312): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 0d 6c e1 a2 99 69 66 06 3c 4c d5 04 45 20 1d 8a 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347882.568568: Beacon IEs - hexdump(len=224): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347882.568604: 50:d4:f7:3b:bf:69 freq=2412 qual=0 noise=-89~ level=-91 snr=-2 flags=0xb age=11452 est=1000
1644347882.568619: IEs - hexdump(len=225): 00 1b 46 52 49 54 5a 21 42 6f 78 20 46 6f 6e 20 57 4c 41 4e 20 37 33 36 30 5f 45 58 54 01 08 82 84 8b 96 12 24 48 6c 03 01 01 32 04 0c 18 30 60 33 08 20 01 02 03 04 05 06 07 33 08 21 05 06 07 08 09 0a 0b 05 04 00 01 00 00 dd 1a 00 50 f2 01 01 00 00 50 f2 02 02 00 00 50 f2 02 00 50 f2 04 01 00 00 50 f2 02 30 18 01 00 00 0f ac 02 02 00 00 0f ac 02 00 0f ac 04 01 00 00 0f ac 02 00 00 2a 01 04 2d 1a ac 01 17 ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 3d 16 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 dd 18 00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 0b 05 00 00 00 12 7a dd 07 00 0c 43 03 00 00 00
1644347882.568673: Beacon IEs - hexdump(len=225): 00 1b 46 52 49 54 5a 21 42 6f 78 20 46 6f 6e 20 57 4c 41 4e 20 37 33 36 30 5f 45 58 54 01 08 82 84 8b 96 12 24 48 6c 03 01 01 32 04 0c 18 30 60 33 08 20 01 02 03 04 05 06 07 33 08 21 05 06 07 08 09 0a 0b 05 04 00 01 00 00 dd 1a 00 50 f2 01 01 00 00 50 f2 02 02 00 00 50 f2 02 00 50 f2 04 01 00 00 50 f2 02 30 18 01 00 00 0f ac 02 02 00 00 0f ac 02 00 0f ac 04 01 00 00 0f ac 02 00 00 2a 01 04 2d 1a ac 01 17 ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 3d 16 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 dd 18 00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 0b 05 00 00 00 12 7a dd 07 00 0c 43 03 00 00 00
1644347882.568728: wlan1: BSS: Start scan result update 14
1644347882.568794: BSS: last_scan_res_used=8/32
1644347882.568814: wlan1: Scan-only results received
1644347882.568874: wlan1: Radio work 'scan'@0x55a48859e580 done in 3.199170 seconds
1644347882.568898: wlan1: radio_work_free('scan'@0x55a48859e580): num_active_works --> 0
1644347882.572785: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347882.573815: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/0
1644347882.573925: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/1
1644347882.574002: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/2
1644347882.574081: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/3
1644347882.574211: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/7
1644347882.574287: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/8
1644347882.574361: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/6
1644347882.574433: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/9
1644347886.370759: dbus: fi.w1.wpa_supplicant1.Interface.Scan (/fi/w1/wpa_supplicant1/Interfaces/1) [a{sv}]
1644347886.370888: wlan1: Add radio work 'scan'@0x55a48859e580
1644347886.370943: wlan1: First radio work item in the queue - schedule start immediately
1644347886.371077: wlan1: Starting radio work 'scan'@0x55a48859e580 after 0.000129 second wait
1644347886.371159: wlan1: nl80211: scan request
1644347886.371206: nl80211: Scan SSID 
1644347886.372567: Scan requested (ret=0) - scan timeout 30 seconds
1644347886.372642: nl80211: Event message available
1644347886.372683: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan1
1644347886.372713: wlan1: nl80211: Scan trigger
1644347886.372805: wlan1: Event SCAN_STARTED (47) received
1644347886.372836: wlan1: Own scan request started a scan in 0.000204 seconds
1644347886.376238: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347889.633271: nl80211: Event message available
1644347889.633370: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan1
1644347889.633387: wlan1: nl80211: New scan results available
1644347889.633410: nl80211: Scan probed for SSID ''
1644347889.633425: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 5180 5200 5220 5240 5260 5280 5300 5320 5500 5520 5540 5560 5580 5600 5620 5640 5660 5680 5700 5745 5765 5785 5805 5825
1644347889.633436: wlan1: Event SCAN_RESULTS (3) received
1644347889.633446: wlan1: Scan completed in 3.260612 seconds
1644347889.633704: nl80211: Received scan results (8 BSSes)
1644347889.633798: Sorted scan results
1644347889.633828: 2c:91:ab:e0:30:35 freq=5260 qual=0 noise=-92~ level=-48 snr=44* flags=0xb age=2180 est=135000
1644347889.633856: IEs - hexdump(len=458): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff d2 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347889.633997: Beacon IEs - hexdump(len=382): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff ec 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347889.634118: 2c:91:ab:e0:30:34 freq=2437 qual=0 noise=-89~ level=-36 snr=53* flags=0xb age=3048 est=65000
1644347889.634144: IEs - hexdump(len=365): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 10 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347889.634300: Beacon IEs - hexdump(len=289): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 10 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347889.634399: e0:28:6d:7e:94:3c freq=2437 qual=0 noise=-89~ level=-65 snr=24 flags=0xb age=3032 est=63700
1644347889.634425: IEs - hexdump(len=455): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 06 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fd dd 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c dd 08 8c fd f0 01 01 02 01 00
1644347889.634560: Beacon IEs - hexdump(len=379): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 06 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fd 3b 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c
1644347889.634691: e0:28:6d:7e:94:3b freq=5260 qual=0 noise=-92~ level=-80 snr=12 flags=0xb age=2188 est=40500
1644347889.634719: IEs - hexdump(len=491): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff 87 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347889.634862: Beacon IEs - hexdump(len=415): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff c3 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00
1644347889.634988: e8:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-88 snr=1 flags=0xb age=3224 est=3250
1644347889.635014: IEs - hexdump(len=300): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 09 e8 5a 0f d4 6d ec 63 ca 08 e8 df 70 07 6f c2 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347889.635122: Beacon IEs - hexdump(len=212): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347889.635200: ea:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-89 snr=0 flags=0xb age=3244 est=1000
1644347889.635225: IEs - hexdump(len=312): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 0d 6c e1 a2 99 69 66 06 3c 4c d5 04 45 20 1d 8a 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347889.635325: Beacon IEs - hexdump(len=224): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347889.635405: 3c:a6:2f:9c:0f:97 freq=2462 qual=0 noise=-89~ level=-89 snr=0 flags=0xb age=18284 est=1000
1644347889.635430: IEs - hexdump(len=342): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 33 30 20 43 50 01 08 82 84 8b 96 8c 12 98 24 03 01 0b 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 05 00 09 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 59 89 33 fa ff 00 00 fa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 ff ee 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 59 89 33 fa ff 00 00 fa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 ef 12 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
1644347889.635538: Beacon IEs - hexdump(len=342): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 33 30 20 43 50 01 08 82 84 8b 96 8c 12 98 24 03 01 0b 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 05 00 09 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 59 89 33 fa ff 00 00 fa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 ff ee 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 59 89 33 fa ff 00 00 fa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 ef 12 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
1644347889.635657: 50:d4:f7:3b:bf:69 freq=2412 qual=0 noise=-89~ level=-91 snr=-2 flags=0xb age=18520 est=1000
1644347889.635684: IEs - hexdump(len=225): 00 1b 46 52 49 54 5a 21 42 6f 78 20 46 6f 6e 20 57 4c 41 4e 20 37 33 36 30 5f 45 58 54 01 08 82 84 8b 96 12 24 48 6c 03 01 01 32 04 0c 18 30 60 33 08 20 01 02 03 04 05 06 07 33 08 21 05 06 07 08 09 0a 0b 05 04 00 01 00 00 dd 1a 00 50 f2 01 01 00 00 50 f2 02 02 00 00 50 f2 02 00 50 f2 04 01 00 00 50 f2 02 30 18 01 00 00 0f ac 02 02 00 00 0f ac 02 00 0f ac 04 01 00 00 0f ac 02 00 00 2a 01 04 2d 1a ac 01 17 ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 3d 16 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 dd 18 00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 0b 05 00 00 00 12 7a dd 07 00 0c 43 03 00 00 00
1644347889.635789: Beacon IEs - hexdump(len=225): 00 1b 46 52 49 54 5a 21 42 6f 78 20 46 6f 6e 20 57 4c 41 4e 20 37 33 36 30 5f 45 58 54 01 08 82 84 8b 96 12 24 48 6c 03 01 01 32 04 0c 18 30 60 33 08 20 01 02 03 04 05 06 07 33 08 21 05 06 07 08 09 0a 0b 05 04 00 01 00 00 dd 1a 00 50 f2 01 01 00 00 50 f2 02 02 00 00 50 f2 02 00 50 f2 04 01 00 00 50 f2 02 30 18 01 00 00 0f ac 02 02 00 00 0f ac 02 00 0f ac 04 01 00 00 0f ac 02 00 00 2a 01 04 2d 1a ac 01 17 ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 3d 16 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 dd 18 00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 0b 05 00 00 00 12 7a dd 07 00 0c 43 03 00 00 00
1644347889.635873: wlan1: BSS: Start scan result update 15
1644347889.635973: BSS: last_scan_res_used=8/32
1644347889.636003: wlan1: Scan-only results received
1644347889.636097: wlan1: Radio work 'scan'@0x55a48859e580 done in 3.265019 seconds
1644347889.636157: wlan1: radio_work_free('scan'@0x55a48859e580): num_active_works --> 0
1644347889.636227: RTM_NEWLINK: ifi_index=3 ifname=wlan1 wext ifi_family=0 ifi_flags=0x1003 ([UP])
1644347889.638632: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347889.640990: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/0
1644347889.641359: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/1
1644347889.641714: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/2
1644347889.642104: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/3
1644347889.642507: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/7
1644347889.642694: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/6
1644347889.642882: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/8
1644347889.642970: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/9
1644347896.373730: dbus: fi.w1.wpa_supplicant1.Interface.Scan (/fi/w1/wpa_supplicant1/Interfaces/1) [a{sv}]
1644347896.373806: wlan1: Add radio work 'scan'@0x55a48859e580
1644347896.373826: wlan1: First radio work item in the queue - schedule start immediately
1644347896.373971: wlan1: Starting radio work 'scan'@0x55a48859e580 after 0.000144 second wait
1644347896.374006: wlan1: nl80211: scan request
1644347896.374025: nl80211: Scan SSID 
1644347896.375349: Scan requested (ret=0) - scan timeout 30 seconds
1644347896.375421: nl80211: Event message available
1644347896.375461: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan1
1644347896.375492: wlan1: nl80211: Scan trigger
1644347896.375520: wlan1: Event SCAN_STARTED (47) received
1644347896.375548: wlan1: Own scan request started a scan in 0.000135 seconds
1644347896.379078: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347899.566223: RTM_NEWLINK: ifi_index=3 ifname=wlan1 wext ifi_family=0 ifi_flags=0x1003 ([UP])
1644347899.566333: nl80211: Event message available
1644347899.566390: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan1
1644347899.566421: wlan1: nl80211: New scan results available
1644347899.566448: nl80211: Scan probed for SSID ''
1644347899.566482: nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 5180 5200 5220 5240 5260 5280 5300 5320 5500 5520 5540 5560 5580 5600 5620 5640 5660 5680 5700 5745 5765 5785 5805 5825
1644347899.566508: wlan1: Event SCAN_RESULTS (3) received
1644347899.566533: wlan1: Scan completed in 3.190986 seconds
1644347899.566732: nl80211: Received scan results (8 BSSes)
1644347899.566815: Sorted scan results
1644347899.566842: 2c:91:ab:e0:30:35 freq=5260 qual=0 noise=-92~ level=-47 snr=45* flags=0xb age=2180 est=135000
1644347899.566869: IEs - hexdump(len=458): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff 4f 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347899.567009: Beacon IEs - hexdump(len=382): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 01 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c f2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 01 00 ff 9d 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347899.567162: 2c:91:ab:e0:30:34 freq=2437 qual=0 noise=-89~ level=-31 snr=58* flags=0xb age=3068 est=65000
1644347899.567190: IEs - hexdump(len=365): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 10 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 5b b2 23 95 39 b1 4b 0b f1 d4 2c 91 ab e0 30 34 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 08 8c fd f0 01 01 02 01 00
1644347899.567303: Beacon IEs - hexdump(len=289): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 10 00 00 46 05 73 d0 00 00 0c 2d 1a ac 01 1b ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 40 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00
1644347899.567398: e0:28:6d:7e:94:3c freq=2437 qual=0 noise=-89~ level=-65 snr=24 flags=0xb age=3032 est=63700
1644347899.567423: IEs - hexdump(len=455): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 06 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fd 5a 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c dd 08 8c fd f0 01 01 02 01 00
1644347899.567572: Beacon IEs - hexdump(len=379): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 01 00 06 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 fd 3b 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 01 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 e0 28 6d 7e 94 3c
1644347899.567693: e0:28:6d:7e:94:3b freq=5260 qual=0 noise=-92~ level=-79 snr=13 flags=0xb age=2188 est=47250
1644347899.567719: IEs - hexdump(len=491): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff d3 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 1b 90 71 45 47 f8 6f d4 b6 a9 e0 28 6d 7e 94 3b 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 02 80 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00 dd 08 8c fd f0 01 01 02 01 00
1644347899.567863: Beacon IEs - hexdump(len=415): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 39 30 20 54 43 01 08 8c 12 98 24 b0 48 60 6c 03 01 34 05 04 00 01 00 00 07 3c 44 45 20 24 01 17 28 01 17 2c 01 17 30 01 17 34 01 17 38 01 17 3c 01 17 40 01 17 64 01 1e 68 01 1e 6c 01 1e 70 01 1e 74 01 1e 78 01 1e 7c 01 1e 80 01 1e 84 01 1e 88 01 1e 8c 01 1e 20 01 03 0b 05 01 00 03 00 00 46 05 73 d0 00 00 0c 2d 1a ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c fa 79 8b 33 aa ff 00 00 aa ff 00 20 c0 05 01 3a 32 fc ff c1 06 00 00 ff 07 00 00 c3 05 03 2e 2e 2e 2e dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16 00 00 46 00 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 07 00 03 7f 05 01 00 01 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 18 01 00 00 0f ac 04 01 00 00 0f ac 04 02 00 00 0f ac 02 00 0f ac 08 80 00 dd 1f 8c fd f0 00 00 01 01 00 00 01 08 00 00 00 00 00 00 ff ff e0 28 6d 7e 94 3b 00 00 00 00 00 00
1644347899.568002: e8:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-86 snr=3 flags=0xb age=3188 est=8666
1644347899.568029: IEs - hexdump(len=300): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 09 e8 5a 0f d4 6d ec 63 ca 08 e8 df 70 07 6f c2 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347899.568127: Beacon IEs - hexdump(len=212): 00 08 5a 69 6d 6d 65 72 31 30 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347899.568204: ea:df:70:07:6f:c2 freq=2412 qual=0 noise=-89~ level=-86 snr=3 flags=0xb age=3184 est=8666
1644347899.568229: IEs - hexdump(len=312): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0a 00 03 7f 04 01 00 08 00 0a 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 6f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 47 00 10 0d 6c e1 a2 99 69 66 06 3c 4c d5 04 45 20 1d 8a 10 21 00 03 41 56 4d 10 23 00 04 46 42 6f 78 10 24 00 04 30 30 30 30 10 42 00 04 30 30 30 30 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 04 46 42 6f 78 10 08 00 02 23 88 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347899.568329: Beacon IEs - hexdump(len=224): 00 14 46 52 49 54 5a 21 42 6f 78 20 47 61 73 74 7a 75 67 61 6e 67 01 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 04 06 e6 a7 0c 00 3d 16 01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 20
1644347899.568408: 50:d4:f7:3b:bf:69 freq=2412 qual=0 noise=-89~ level=-89 snr=0 flags=0xb age=3160 est=1000
1644347899.568433: IEs - hexdump(len=225): 00 1b 46 52 49 54 5a 21 42 6f 78 20 46 6f 6e 20 57 4c 41 4e 20 37 33 36 30 5f 45 58 54 01 08 82 84 8b 96 12 24 48 6c 03 01 01 32 04 0c 18 30 60 33 08 20 01 02 03 04 05 06 07 33 08 21 05 06 07 08 09 0a 0b 05 04 00 01 00 00 dd 1a 00 50 f2 01 01 00 00 50 f2 02 02 00 00 50 f2 02 00 50 f2 04 01 00 00 50 f2 02 30 18 01 00 00 0f ac 02 02 00 00 0f ac 02 00 0f ac 04 01 00 00 0f ac 02 00 00 2a 01 04 2d 1a ac 01 17 ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 3d 16 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 dd 18 00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 0b 05 00 00 21 12 7a dd 07 00 0c 43 03 00 00 00
1644347899.568523: Beacon IEs - hexdump(len=225): 00 1b 46 52 49 54 5a 21 42 6f 78 20 46 6f 6e 20 57 4c 41 4e 20 37 33 36 30 5f 45 58 54 01 08 82 84 8b 96 12 24 48 6c 03 01 01 32 04 0c 18 30 60 33 08 20 01 02 03 04 05 06 07 33 08 21 05 06 07 08 09 0a 0b 05 04 00 01 00 00 dd 1a 00 50 f2 01 01 00 00 50 f2 02 02 00 00 50 f2 02 00 50 f2 04 01 00 00 50 f2 02 30 18 01 00 00 0f ac 02 02 00 00 0f ac 02 00 0f ac 04 01 00 00 0f ac 02 00 00 2a 01 04 2d 1a ac 01 17 ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 3d 16 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 dd 18 00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 0b 05 00 00 21 12 7a dd 07 00 0c 43 03 00 00 00
1644347899.568604: 3c:a6:2f:9c:0f:97 freq=2462 qual=0 noise=-89~ level=-89 snr=0 flags=0xb age=28216 est=1000
1644347899.568629: IEs - hexdump(len=342): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 33 30 20 43 50 01 08 82 84 8b 96 8c 12 98 24 03 01 0b 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 05 00 09 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 59 89 33 fa ff 00 00 fa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 ff ee 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 59 89 33 fa ff 00 00 fa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 ef 12 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
1644347899.568737: Beacon IEs - hexdump(len=342): 00 11 46 52 49 54 5a 21 42 6f 78 20 37 35 33 30 20 43 50 01 08 82 84 8b 96 8c 12 98 24 03 01 0b 05 04 00 01 00 00 07 06 44 45 20 01 0d 14 2a 01 00 32 04 b0 48 60 6c 0b 05 05 00 09 00 00 46 05 73 d0 00 00 0c 2d 1a ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 05 00 0f 00 00 00 00 40 bf 0c b2 59 89 33 fa ff 00 00 fa ff 00 20 c0 05 00 00 00 fc ff c1 06 00 00 ff ee 00 00 dd 1a 00 90 4c 04 08 bf 0c b2 59 89 33 fa ff 00 00 fa ff 00 20 c0 05 00 00 00 fc ff dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f dd 08 8c fd f0 01 01 02 01 00 dd 16 8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00 00 00 ef 12 00 00 dd 0c 00 04 0e 01 01 02 01 00 00 00 00 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01 20 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
1644347899.568883: wlan1: BSS: Start scan result update 16
1644347899.568985: BSS: last_scan_res_used=8/32
1644347899.569015: wlan1: Scan-only results received
1644347899.569093: wlan1: Radio work 'scan'@0x55a48859e580 done in 3.195120 seconds
1644347899.569127: wlan1: radio_work_free('scan'@0x55a48859e580): num_active_works --> 0
1644347899.571705: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
1644347899.574002: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/0
1644347899.574299: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/1
1644347899.574451: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/2
1644347899.574658: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/3
1644347899.574869: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/7
1644347899.574975: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/6
1644347899.575079: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/9
1644347899.575234: dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/8


More information about the Hostap mailing list