bpleat
Posts: 16
Joined: Thu Apr 28, 2022 4:15 am

Most of my Raspberry Pi wlan0 stopped connecting despite otherwise-identical configurations and eth0 fine

Sat Jun 10, 2023 7:51 pm

I run a Unifi Dream Router (UDR) and two U6 satellites (wired backhaul to the UDR).
I do not block any MACs/IPs (at present).

Recently, all but two of my RPis (5 of 7 Pi 4B+ 4GB, 2 Pi 4B+ 8GB, 1 Pi 3B+) have stopped connecting to Wifi, within a day of each other.

All except one of the two RPis with working wifi are standard downloaded images from raspberrypi.org; the non-standard Pi with working wifi is NEMS (but not configured beyond the basics).

No detected issues with their Ethernet connections (I can connect into them all on their eth0 IPs, and access each Pi's specific resources - nagios, NAS, OpenHAB, Home Assistant, etc.).

No detected issues with any other device on my network on Ethernet or Wifi (and I have ~300 total, mostly Wifi mostly IoT devices like plugs, switches, sensors; so netmask is 23/512).

Every device on the network has a Fixed IP - all specified in DHCP and some devices (like the Pis) configured with the IPs.
(Each RPi eth0 and wlan0 MAC has its own IP, of course; they're always within one of each other, as in 192.168.86.33 and 192.168.86.34.)

I used to run Pihole on two of the Pis (including one of the two where Wifi is still working), but turned it off to try to diagnose this Wifi issue. (I had the Pihole setup configured identically, all MACs registered to a fixed IP and running DHCP.)

All have all the latest updates from release (not experimental) paths. (I update nightly.)

I BELIEVE at this point it's something about a recent UDR update, but I can't PROVE it to Ubiquiti so they won't investigate. I'd appreciate your help in further diagnosing. I don't know some of the "under-the-hood" diagnostics for this, and my searches have pointed to nothing applicable to Raspberry's configs.

What I see in my VNC sessions is the Wifi going up for 2-3 seconds and then down for 2-3 seconds infinitely.


Here's some of my diagnostics.

Code: Select all

ifconfig
Always shows my eth0 and lo, and if I catch the timing right (i.e., the second it's up) it'll show wlan0, or I can specify...

Code: Select all

ifconfig wlan0
It always returns:

wlan0: flags=-28670<BROADCAST,MULTICAST,DYNAMIC> mtu 1500
ether (hidden here) txqueuelen 1000 (Ethernet)
RX packets 121 bytes 6156 (6.0 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 10 bytes 972 (972.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
If I catch it temporarily connected, that command will show additional flag of "up" (thus different value for "flags=") but nothing else changes. (That list of values is on a box running for over four days, so obviously 131 total packets in 4 days means it's not connecting.)

I've tried several variations for /etc/wpa_supplicant/wpa_supplicant.conf, both with and without "key_mgmt", and with one or both of my Wifi networks. I've tried configuring by hand as well as from raspi-config. Example:

ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=US

network={
ssid="(mywifinet)"
psk="(mypw)"
key_mgmt=WPA-PSK
}

network={
ssid="(myguestwifi)-Guest"
psk="(myguestpw)"
}
Folder is u: root, g: root, perms 755 on all wpa_supplicant file is u: root, g: root, perms 600 on all

I've tried both "systemctl restart wpa_supplicant", and rebooting after changes, just in case the (in)famous "duplicate process" issue is the problem in restarting the service.
"systemctl status..."

I've also tried configuring through the VNC applet (which shows wlan0 appearing and disappearing), and even trying to "time it right" by entering the password (during the time the wifi icon disappears) and only hitting [Enter] when the wifi icon reappears.

It's not "rfkill"; all the devices (working and nonworking) show the same:

ID TYPE DEVICE SOFT HARD
0 wlan phy0 unblocked unblocked
1 bluetooth hci0 blocked unblocked
Each box's "/etc/dhcpcd.conf" (user: root, group: netdev, perms 664 on all boxes) is the following (with specific hostname per box and specific IPs per interface per box) (only the uncommented and non-blank rows):

hostname (boxname)
clientid
persistent
option rapid_commit
option domain_name_servers, domain_name, domain_search, host_name
option classless_static_routes
option interface_mtu
option ntp_servers
require dhcp_server_identifier
slaac private

interface eth0
static ip_address=192.168.86.(ethip)/23
static routers=192.168.86.1
static domain_name_servers=192.168.86.1

interface wlan0
static ip_address=192.168.86.(wifiip)/23
static routers=192.168.86.1
static domain_name_servers=192.168.86.1
I have over 300 devices, so my netmask is 23-bit instead of 24-bit

Not that it should matter, but my /etc/dhcp folder and contents are unchanged from install

Tried dozens of variations of a script of:

Code: Select all

ip link set down wlan0
wpa_cli -i "wlan0" set country "US"
wpa_cli -i "wlan0" save_config 
raspi-config nonint do_wifi_country US
connmanctl enable wifi
rfkill unblock wifi
systemctl restart wpa_supplicant
sleep (various, from 2s to 30s)
ip link set up wlan0
I have tried variations of the order (obviously, up always after down), variations of which commands are commented, and so on.
I suspected rkfill at one point. Sometimes, reboot causes rfkill to be lost, but not consistently.

All /etc/debian_version = 11.7 except one of the two 8GB Pi 4s.

All (per /etc/os-release) are bullseye except one of the two 8GB RPi 4 on Buster, all /etc/debian-version = 11.7 except the same Pi.
Some of them are running 32-bit, some as 64-bit, no pattern there.

Some might suggest "copy configs from the working two to the others" - but all of them already run the same configs for /etc/dhcpcd.conf except for the IP-specific and hostname-specific info, and identical for /etc/wpa_supplicant/wpa_supplicant.conf.
None of the hostnames are anything but 3-8 alphanumeric chars.

So, my question to all of you is, what other diagnostic steps can I take to figure out why all but two of them do not connect on wireless, what commands can I run and logs can I capture?

Thank you in advance.

bpleat
Posts: 16
Joined: Thu Apr 28, 2022 4:15 am

Re: Most of my Raspberry Pi wlan0 stopped connecting despite otherwise-identical configurations and eth0 fine

Sat Jun 10, 2023 8:33 pm

Additional:

Code: Select all

iwlist wlan0 scan|grep ESSID
Shows lots on the two that work. On the ones that don't work:
wlan0 Failed to read scan data : Network is down

bls
Posts: 3108
Joined: Mon Oct 22, 2018 11:25 pm
Location: Seattle, WA

Re: Most of my Raspberry Pi wlan0 stopped connecting despite otherwise-identical configurations and eth0 fine

Sat Jun 10, 2023 10:22 pm

Some system log output might be very enlightening. Please post the output of:

Code: Select all

sudo journalctl -b | grep -E "wlan0|eth0"
Pi tools:
Quickly and easily build customized exactly as-you-want SSDs/SD Cards: https://github.com/gitbls/sdm
Easily run and manage your network's DHCP/DNS servers on a Pi: https://github.com/gitbls/ndm
Easy and secure IPSEC/IKEV2 VPN installer/manager: https://github.com/gitbls/pistrong
Lightweight Virtual VNC Config: https://github.com/gitbls/RPiVNCHowTo

bpleat
Posts: 16
Joined: Thu Apr 28, 2022 4:15 am

Re: Most of my Raspberry Pi wlan0 stopped connecting despite otherwise-identical configurations and eth0 fine

Sun Jun 11, 2023 12:15 am

From any of the non-working ones (date/time/hostname stripped):

Code: Select all

connmand[437]: wlan0 {RX} 223 packets 10270 bytes
connmand[437]: wlan0 {TX} 12 packets 1312 bytes
connmand[437]: wlan0 {update} flags 36867 <UP>
connmand[437]: wlan0 {newlink} index 3 address DC:A6:32:7E:B3:F0 mtu 1500
connmand[437]: wlan0 {newlink} index 3 operstate 2 <DOWN>
...repetitively.

Nothing in the working ones.

bpleat
Posts: 16
Joined: Thu Apr 28, 2022 4:15 am

Re: Most of my Raspberry Pi wlan0 stopped connecting despite otherwise-identical configurations and eth0 fine

Sun Jun 11, 2023 12:22 am

Decided to reboot one and get (hopefully) better logging info. Here it is:

Code: Select all

dhcpcd-run-hooks[627]: wlan0: starting wpa_supplicant
dhcpcd[528]: wlan0: connected to Access Point `'
connmand[435]: eth0 {create} index 2 type 1 <ETHER>
connmand[435]: eth0 {update} flags 4098 <DOWN>
connmand[435]: eth0 {newlink} index 2 address DC:A6:32:93:F1:F0 mtu 1500
connmand[435]: eth0 {newlink} index 2 operstate 2 <DOWN>
connmand[435]: Adding interface eth0 [ ethernet ]
connmand[435]: wlan0 {create} index 3 type 1 <ETHER>
connmand[435]: wlan0 {update} flags 4099 <UP>
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
dhcpcd[528]: eth0: waiting for carrier
dhcpcd[528]: wlan0: waiting for carrier
kernel: bcmgenet fd580000.ethernet eth0: Link is Down
connmand[435]: Adding interface wlan0 [ wifi ]
connmand[435]: eth0 {update} flags 36867 <UP>
connmand[435]: eth0 {newlink} index 2 address DC:A6:32:93:F1:F0 mtu 1500
connmand[435]: eth0 {newlink} index 2 operstate 2 <DOWN>
wpa_supplicant[493]: Delete '/run/wpa_supplicant/wlan0' manually if it is not used anymore
wpa_supplicant[493]: nl80211: deinit ifname=wlan0 disabled_11b_rates=0
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
connmand[435]: wlan0 {update} flags 4098 <DOWN>
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
connmand[435]: wlan0 {update} flags 4099 <UP>
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
dhcpcd[528]: eth0: carrier acquired
connmand[435]: eth0 {update} flags 102467 <UP,RUNNING,LOWER_UP>
connmand[435]: eth0 {newlink} index 2 address DC:A6:32:93:F1:F0 mtu 1500
connmand[435]: eth0 {newlink} index 2 operstate 6 <UP>
kernel: bcmgenet fd580000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
kernel: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
dhcpcd[528]: eth0: IAID 32:93:f1:f0
dhcpcd[528]: eth0: adding address fe80::4444:421d:c64c:27f2
dhcpcd[528]: eth0: probing address 192.168.86.37/23
connmand[435]: eth0 {newlink} index 2 address DC:A6:32:93:F1:F0 mtu 1500
connmand[435]: eth0 {newlink} index 2 operstate 6 <UP>
connmand[435]: eth0 {add} route fe80:: gw :: scope 0 <UNIVERSE>
connmand[435]: eth0 {add} address 192.168.86.37/23 label eth0 family 2
connmand[435]: eth0 {add} route 192.168.86.0 gw 0.0.0.0 scope 253 <LINK>
connmand[435]: eth0 {add} route 192.168.86.1 gw 0.0.0.0 scope 253 <LINK>
connmand[435]: eth0 {add} route 1.1.1.2 gw 192.168.86.1 scope 0 <UNIVERSE>
connmand[435]: eth0 {add} route 1.0.0.2 gw 192.168.86.1 scope 0 <UNIVERSE>
connmand[435]: eth0 {add} route 0.0.0.0 gw 192.168.86.1 scope 0 <UNIVERSE>
connmand[435]: eth0 {add} route 82.165.8.211 gw 192.168.86.1 scope 0 <UNIVERSE>
dhcpcd[528]: eth0: soliciting an IPv6 router
connmand[435]: eth0 {del} route 82.165.8.211 gw 192.168.86.1 scope 0 <UNIVERSE>
connmand[435]: wlan0 {update} flags 4098 <DOWN>
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
dhcpcd[528]: eth0: using static address 192.168.86.37/23
dhcpcd[528]: eth0: adding route to 192.168.86.0/23
dhcpcd[528]: eth0: adding default route via 192.168.86.1
connmand[435]: eth0 {del} route 192.168.86.0 gw 0.0.0.0 scope 253 <LINK>
connmand[435]: eth0 {add} route 0.0.0.0 gw 192.168.86.1 scope 0 <UNIVERSE>
connmand[435]: eth0 {del} route 0.0.0.0 gw 192.168.86.1 scope 0 <UNIVERSE>
connmand[435]: eth0 {add} route 0.0.0.0 gw 192.168.86.1 scope 0 <UNIVERSE>
dhcpcd[528]: eth0: pid 528 deleted route to 192.168.86.0/23
dhcpcd[528]: eth0: pid 528 deleted default route via 192.168.86.1
connmand[435]: wlan0 {update} flags 4099 <UP>
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
connmand[435]: wlan0 {update} flags 4098 <DOWN>
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
connmand[435]: wlan0 {update} flags 4099 <UP>
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
dhcpcd[528]: eth0: no IPv6 Routers available
connmand[435]: wlan0 {update} flags 4098 <DOWN>
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
connmand[435]: wlan0 {update} flags 4099 <UP>
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
connmand[435]: wlan0 {update} flags 4098 <DOWN>
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
connmand[435]: wlan0 {update} flags 4099 <UP>
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
...and again, repeating

Not sure if that helps more?

bls
Posts: 3108
Joined: Mon Oct 22, 2018 11:25 pm
Location: Seattle, WA

Re: Most of my Raspberry Pi wlan0 stopped connecting despite otherwise-identical configurations and eth0 fine

Sun Jun 11, 2023 12:30 am

bpleat wrote:
Sun Jun 11, 2023 12:22 am
Decided to reboot one and get (hopefully) better logging info. Here it is:

Code: Select all

dhcpcd-run-hooks[627]: wlan0: starting wpa_supplicant
dhcpcd[528]: wlan0: connected to Access Point `'
connmand[435]: eth0 {create} index 2 type 1 <ETHER>
connmand[435]: eth0 {update} flags 4098 <DOWN>
connmand[435]: eth0 {newlink} index 2 address DC:A6:32:93:F1:F0 mtu 1500
connmand[435]: eth0 {newlink} index 2 operstate 2 <DOWN>
connmand[435]: Adding interface eth0 [ ethernet ]
connmand[435]: wlan0 {create} index 3 type 1 <ETHER>
connmand[435]: wlan0 {update} flags 4099 <UP>
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
dhcpcd[528]: eth0: waiting for carrier
dhcpcd[528]: wlan0: waiting for carrier
kernel: bcmgenet fd580000.ethernet eth0: Link is Down
connmand[435]: Adding interface wlan0 [ wifi ]
connmand[435]: eth0 {update} flags 36867 <UP>
connmand[435]: eth0 {newlink} index 2 address DC:A6:32:93:F1:F0 mtu 1500
connmand[435]: eth0 {newlink} index 2 operstate 2 <DOWN>
wpa_supplicant[493]: Delete '/run/wpa_supplicant/wlan0' manually if it is not used anymore
wpa_supplicant[493]: nl80211: deinit ifname=wlan0 disabled_11b_rates=0
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
connmand[435]: wlan0 {update} flags 4098 <DOWN>
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
connmand[435]: wlan0 {update} flags 4099 <UP>
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
dhcpcd[528]: eth0: carrier acquired
connmand[435]: eth0 {update} flags 102467 <UP,RUNNING,LOWER_UP>
connmand[435]: eth0 {newlink} index 2 address DC:A6:32:93:F1:F0 mtu 1500
connmand[435]: eth0 {newlink} index 2 operstate 6 <UP>
kernel: bcmgenet fd580000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
kernel: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
dhcpcd[528]: eth0: IAID 32:93:f1:f0
dhcpcd[528]: eth0: adding address fe80::4444:421d:c64c:27f2
dhcpcd[528]: eth0: probing address 192.168.86.37/23
connmand[435]: eth0 {newlink} index 2 address DC:A6:32:93:F1:F0 mtu 1500
connmand[435]: eth0 {newlink} index 2 operstate 6 <UP>
connmand[435]: eth0 {add} route fe80:: gw :: scope 0 <UNIVERSE>
connmand[435]: eth0 {add} address 192.168.86.37/23 label eth0 family 2
connmand[435]: eth0 {add} route 192.168.86.0 gw 0.0.0.0 scope 253 <LINK>
connmand[435]: eth0 {add} route 192.168.86.1 gw 0.0.0.0 scope 253 <LINK>
connmand[435]: eth0 {add} route 1.1.1.2 gw 192.168.86.1 scope 0 <UNIVERSE>
connmand[435]: eth0 {add} route 1.0.0.2 gw 192.168.86.1 scope 0 <UNIVERSE>
connmand[435]: eth0 {add} route 0.0.0.0 gw 192.168.86.1 scope 0 <UNIVERSE>
connmand[435]: eth0 {add} route 82.165.8.211 gw 192.168.86.1 scope 0 <UNIVERSE>
dhcpcd[528]: eth0: soliciting an IPv6 router
connmand[435]: eth0 {del} route 82.165.8.211 gw 192.168.86.1 scope 0 <UNIVERSE>
connmand[435]: wlan0 {update} flags 4098 <DOWN>
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
dhcpcd[528]: eth0: using static address 192.168.86.37/23
dhcpcd[528]: eth0: adding route to 192.168.86.0/23
dhcpcd[528]: eth0: adding default route via 192.168.86.1
connmand[435]: eth0 {del} route 192.168.86.0 gw 0.0.0.0 scope 253 <LINK>
connmand[435]: eth0 {add} route 0.0.0.0 gw 192.168.86.1 scope 0 <UNIVERSE>
connmand[435]: eth0 {del} route 0.0.0.0 gw 192.168.86.1 scope 0 <UNIVERSE>
connmand[435]: eth0 {add} route 0.0.0.0 gw 192.168.86.1 scope 0 <UNIVERSE>
dhcpcd[528]: eth0: pid 528 deleted route to 192.168.86.0/23
dhcpcd[528]: eth0: pid 528 deleted default route via 192.168.86.1
connmand[435]: wlan0 {update} flags 4099 <UP>
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
connmand[435]: wlan0 {update} flags 4098 <DOWN>
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
connmand[435]: wlan0 {update} flags 4099 <UP>
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
dhcpcd[528]: eth0: no IPv6 Routers available
connmand[435]: wlan0 {update} flags 4098 <DOWN>
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
connmand[435]: wlan0 {update} flags 4099 <UP>
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
connmand[435]: wlan0 {update} flags 4098 <DOWN>
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
connmand[435]: wlan0 {update} flags 4099 <UP>
connmand[435]: wlan0 {newlink} index 3 address DC:A6:32:93:F1:F1 mtu 1500
connmand[435]: wlan0 {newlink} index 3 operstate 2 <DOWN>
...and again, repeating

Not sure if that helps more?
By default RasPiOS uses dhcpcd, and it apepars from OP that is what you think you're using.

However, connmand is another network configuration service that seems to be installed on your system. Do you know why it's there?

One quick test you could try is to `sudo systemctl disable connmand` (or maybe it's connman) and reboot. If your network now works, you've identified one problem.

The remaining problem is why is connmand installed? If you actually meant to install and use it, then edit one of the dhcpcd or connman(d) config files and only let one of them manage each device. Things generally don't work well when two network configurators try to control the same device.

OTOH if it doesn't work, please redo the previously mentioned journalctl command and post the results.
Pi tools:
Quickly and easily build customized exactly as-you-want SSDs/SD Cards: https://github.com/gitbls/sdm
Easily run and manage your network's DHCP/DNS servers on a Pi: https://github.com/gitbls/ndm
Easy and secure IPSEC/IKEV2 VPN installer/manager: https://github.com/gitbls/pistrong
Lightweight Virtual VNC Config: https://github.com/gitbls/RPiVNCHowTo

bpleat
Posts: 16
Joined: Thu Apr 28, 2022 4:15 am

Re: Most of my Raspberry Pi wlan0 stopped connecting despite otherwise-identical configurations and eth0 fine

Sun Jun 11, 2023 12:56 am

BTW, thank you for responding.

I hoped you were on to something. I didn't intentionally enable connman but the two Wifi-working don't have it installed and all the others do.

On a Pi 4, I'm testing.

After

Code: Select all

systemctl disable connman; reboot
I checked, connman is not still running and wpa is.
Still no Wifi.

Code: Select all

apt -y remove connman; apt -y autoremove; reboot
Still the same.

Code: Select all

journalctl -b | grep -E "wlan0|eth0":

Code: Select all

dhcpcd-run-hooks[583]: wlan0: starting wpa_supplicant
dhcpcd[513]: wlan0: connected to Access Point `'
kernel: bcmgenet fd580000.ethernet eth0: Link is Down
dhcpcd[513]: eth0: waiting for carrier
dhcpcd[513]: wlan0: waiting for carrier
dhcpcd[513]: eth0: carrier acquired
dhcpcd[513]: eth0: IAID 01:0e:f4:24
dhcpcd[513]: eth0: adding address fe80::d900:2d5f:5c89:d379
dhcpcd[513]: eth0: probing address 192.168.86.58/23
kernel: bcmgenet fd580000.ethernet eth0: Link is Up - 10Mbps/Full - flow control rx/tx
kernel: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
dhcpcd[513]: eth0: soliciting an IPv6 router
dhcpcd[513]: eth0: using static address 192.168.86.58/23
dhcpcd[513]: eth0: adding route to 192.168.86.0/23
dhcpcd[513]: eth0: adding default route via 192.168.86.1
dhcpcd[513]: eth0: no IPv6 Routers available
ifconfig still does the "sometimes show wlan0" as if it's still cycling.
ifconfig wlan0 still shows no IP or other.

dmesg -H | grep brc:

Code: Select all

[  +0.004623] brcm-pcie fd500000.pcie: host bridge /scb/pcie@7d500000 ranges:
[  +0.000032] brcm-pcie fd500000.pcie:   No bus range found for /scb/pcie@7d500000, using [bus 00-ff]
[  +0.000080] brcm-pcie fd500000.pcie:      MEM 0x0600000000..0x063fffffff -> 0x00c0000000
[  +0.000089] brcm-pcie fd500000.pcie:   IB MEM 0x0000000000..0x00bfffffff -> 0x0400000000
[  +0.057747] brcm-pcie fd500000.pcie: link up, 5.0 GT/s PCIe x1 (SSC)
[  +0.000393] brcm-pcie fd500000.pcie: PCI host bridge to bus 0000:00
[  +0.148426] brcmfmac: F1 signature read @0x18000000=0x15264345
[  +0.043151] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43455-sdio for chip BCM4345/6
[  +0.000930] usbcore: registered new interface driver brcmfmac
[  +0.062846] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43455-sdio for chip BCM4345/6
[  +0.005674] brcmfmac: brcmf_c_preinit_dcmds: Firmware: BCM4345/6 wl0: Nov  1 2021 00:37:25 version 7.45.241 (1a2f2fa CY) FWID 01-703fd60
[  +0.172964] brcmfmac: brcmf_cfg80211_set_power_mgmt: power save enabled
(with that last line repeating ad nauseum)

I ran "iw wlan0 set power_save off" to turn off the powersave mode (also was going to put it in boot sequence) but seems to not matter
(At least it stops the dmesg entries)

Next thoughts?

bpleat
Posts: 16
Joined: Thu Apr 28, 2022 4:15 am

Re: Most of my Raspberry Pi wlan0 stopped connecting despite otherwise-identical configurations and eth0 fine

Sun Jun 11, 2023 1:11 am

Here's the WPA processes (ps -aux | grep -v grep | grep wpa | cut -c .....):

In all but one case (one of the two working wifi, but not the other; and all the non-working wifi):
/sbin/wpa_supplicant -u -s -O /run/wpa_supplicant

wpa_supplicant -B -c/etc/wpa_supplicant/wpa_supplicant.conf -iwlan0
or, on the Pi 3 and one of the Pi 4 (but not any others):
wpa_supplicant -B -c/etc/wpa_supplicant/wpa_supplicant.conf -iwlan0 -Dnl80211,wext

The /etc/wpa_supplicant/wpa_supplicant.conf files are all basically identical - no pattern in the few minor differences (usually, just spacing).

bls
Posts: 3108
Joined: Mon Oct 22, 2018 11:25 pm
Location: Seattle, WA

Re: Most of my Raspberry Pi wlan0 stopped connecting despite otherwise-identical configurations and eth0 fine

Sun Jun 11, 2023 1:55 pm

If I were having this issue I'd fall back to starting with a VERY simple scenario: Fresh RasPiOS install with no customizations other than setting wpa_supplicant.conf and ssh, for instance.

This of course requires that your UDR can provide it a DHCP-assigned address.

If the wpa_supplicant.conf is correct for your network, then it should connect to your WiFi. If it doesn't, then you have a case to make to unifi that there's a problem in their latest update, since a fresh, un-customized RasPiOS can't connect to it.

OTOH if it does connect to the WiFi and gets an IP address, then next debugging steps get...more interesting.
Pi tools:
Quickly and easily build customized exactly as-you-want SSDs/SD Cards: https://github.com/gitbls/sdm
Easily run and manage your network's DHCP/DNS servers on a Pi: https://github.com/gitbls/ndm
Easy and secure IPSEC/IKEV2 VPN installer/manager: https://github.com/gitbls/pistrong
Lightweight Virtual VNC Config: https://github.com/gitbls/RPiVNCHowTo

bpleat
Posts: 16
Joined: Thu Apr 28, 2022 4:15 am

Re: Most of my Raspberry Pi wlan0 stopped connecting despite otherwise-identical configurations and eth0 fine

Sun Jun 11, 2023 5:29 pm

The problem for them is, two of them work fine, and no problems with other Wifi devices or the Ethernet on any of the Pis.

Any other logging/checks anyone can think of?

bls
Posts: 3108
Joined: Mon Oct 22, 2018 11:25 pm
Location: Seattle, WA

Re: Most of my Raspberry Pi wlan0 stopped connecting despite otherwise-identical configurations and eth0 fine

Sun Jun 11, 2023 6:33 pm

bpleat wrote:
Sun Jun 11, 2023 5:29 pm
The problem for them is, two of them work fine, and no problems with other Wifi devices or the Ethernet on any of the Pis.

Any other logging/checks anyone can think of?
Since wpa_supplicant seems unable to connect to your WiFi, it's likely that the issue is wpa_supplicant related rather than dhcpcd related.

So, one thing you could do is increase the wpa_supplicant logging. If it were me, I'd do this by stopping dhcpcd (which also stops the wpa_supplicant that it started), and then start wpa_supplicant manually with

Code: Select all

sudo /sbin/wpa_supplicant -dd -u -s -i wlan0 -c/etc/wpa_supplicant/wpa_supplicant.conf 
Then gather the log information with

Code: Select all

sudo journalctl -b | grep wpa
Depending on how that goes, you may want to retry the wpa_supplicant command with the added switch "-D nl80211"

Post the output here if nothing pops out for you.
Pi tools:
Quickly and easily build customized exactly as-you-want SSDs/SD Cards: https://github.com/gitbls/sdm
Easily run and manage your network's DHCP/DNS servers on a Pi: https://github.com/gitbls/ndm
Easy and secure IPSEC/IKEV2 VPN installer/manager: https://github.com/gitbls/pistrong
Lightweight Virtual VNC Config: https://github.com/gitbls/RPiVNCHowTo

bpleat
Posts: 16
Joined: Thu Apr 28, 2022 4:15 am

Re: Most of my Raspberry Pi wlan0 stopped connecting despite otherwise-identical configurations and eth0 fine

Mon Jun 12, 2023 1:09 am

Nothing stands out to me, but I don't know what I'm looking for.
(cut out redundant columns)

Code: Select all


nl80211: 5250-5350 @ 80 MHz 24 mBm (DFS)
nl80211: 5470-5730 @ 160 MHz 24 mBm (DFS)
nl80211: 5730-5850 @ 80 MHz 30 mBm
nl80211: 5850-5895 @ 40 MHz 27 mBm (no outdoor) (no IR)
nl80211: 57240-71000 @ 2160 MHz 40 mBm
nl80211: Added 802.11b mode based on 802.11g information
nl80211: Mode IEEE 802.11g: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
nl80211: Mode IEEE 802.11a: 5170[DISABLED] 5180 5190[DISABLED] 5200 5210[DISABLED] 5220 5230[DISABLED] 5240 5260[NO_IR][RADAR] 5280[NO_IR][RADAR] 5300[NO_IR][RADAR] 5320[NO_IR][RADAR] 5500[NO_IR][RADAR] 5520[NO_IR][RADAR]
nl80211: Mode IEEE 802.11b: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
wlan0: Updating hw mode
nl80211: Regulatory information - country=US (DFS-FCC)
nl80211: 902-904 @ 2 MHz 30 mBm
nl80211: 904-920 @ 16 MHz 30 mBm
nl80211: 920-928 @ 8 MHz 30 mBm
nl80211: 2400-2472 @ 40 MHz 30 mBm
nl80211: 5150-5250 @ 80 MHz 23 mBm
nl80211: 5250-5350 @ 80 MHz 24 mBm (DFS)
nl80211: 5470-5730 @ 160 MHz 24 mBm (DFS)
nl80211: 5730-5850 @ 80 MHz 30 mBm
nl80211: 5850-5895 @ 40 MHz 27 mBm (no outdoor) (no IR)
nl80211: 57240-71000 @ 2160 MHz 40 mBm
nl80211: Added 802.11b mode based on 802.11g information
nl80211: Mode IEEE 802.11g: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
nl80211: Mode IEEE 802.11a: 5170[DISABLED] 5180 5190[DISABLED] 5200 5210[DISABLED] 5220 5230[DISABLED] 5240 5260[NO_IR][RADAR] 5280[NO_IR][RADAR] 5300[NO_IR][RADAR] 5320[NO_IR][RADAR] 5500[NO_IR][RADAR] 5520[NO_IR][RADAR]
nl80211: Mode IEEE 802.11b: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
p2p-dev-wlan0: Determining shared radio frequencies (max len 2)
p2p-dev-wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
nl80211: Event message available
nl80211: Drv Event 36 (NL80211_CMD_REG_CHANGE) received for p2p-dev-wlan0
nl80211: Regulatory domain change
 * initiator=1
 * type=0
 * alpha2=US
p2p-dev-wlan0: Event CHANNEL_LIST_CHANGED (27) received
wlan0: CTRL-EVENT-REGDOM-CHANGE init=USER type=COUNTRY alpha2=US
p2p-dev-wlan0: Updating hw mode
nl80211: Regulatory information - country=US (DFS-FCC)
nl80211: 902-904 @ 2 MHz 30 mBm
nl80211: 904-920 @ 16 MHz 30 mBm
nl80211: 920-928 @ 8 MHz 30 mBm
nl80211: 2400-2472 @ 40 MHz 30 mBm
nl80211: 5150-5250 @ 80 MHz 23 mBm
nl80211: 5250-5350 @ 80 MHz 24 mBm (DFS)
nl80211: 5470-5730 @ 160 MHz 24 mBm (DFS)
nl80211: 5730-5850 @ 80 MHz 30 mBm
nl80211: 5850-5895 @ 40 MHz 27 mBm (no outdoor) (no IR)
nl80211: 57240-71000 @ 2160 MHz 40 mBm
nl80211: Added 802.11b mode based on 802.11g information
nl80211: Mode IEEE 802.11g: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
nl80211: Mode IEEE 802.11a: 5170[DISABLED] 5180 5190[DISABLED] 5200 5210[DISABLED] 5220 5230[DISABLED] 5240 5260[NO_IR][RADAR] 5280[NO_IR][RADAR] 5300[NO_IR][RADAR] 5320[NO_IR][RADAR] 5500[NO_IR][RADAR] 5520[NO_IR][RADAR]
nl80211: Mode IEEE 802.11b: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
wlan0: Updating hw mode
nl80211: Regulatory information - country=US (DFS-FCC)
nl80211: 902-904 @ 2 MHz 30 mBm
nl80211: 904-920 @ 16 MHz 30 mBm
nl80211: 920-928 @ 8 MHz 30 mBm
nl80211: 2400-2472 @ 40 MHz 30 mBm
nl80211: 5150-5250 @ 80 MHz 23 mBm
nl80211: 5250-5350 @ 80 MHz 24 mBm (DFS)
nl80211: 5470-5730 @ 160 MHz 24 mBm (DFS)
nl80211: 5730-5850 @ 80 MHz 30 mBm
nl80211: 5850-5895 @ 40 MHz 27 mBm (no outdoor) (no IR)
nl80211: 57240-71000 @ 2160 MHz 40 mBm
nl80211: Added 802.11b mode based on 802.11g information
nl80211: Mode IEEE 802.11g: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
nl80211: Mode IEEE 802.11a: 5170[DISABLED] 5180 5190[DISABLED] 5200 5210[DISABLED] 5220 5230[DISABLED] 5240 5260[NO_IR][RADAR] 5280[NO_IR][RADAR] 5300[NO_IR][RADAR] 5320[NO_IR][RADAR] 5500[NO_IR][RADAR] 5520[NO_IR][RADAR]
nl80211: Mode IEEE 802.11b: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
p2p-dev-wlan0: Determining shared radio frequencies (max len 2)
p2p-dev-wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/0
dbus: fi.w1.wpa_supplicant1.Interface.Scan (/fi/w1/wpa_supplicant1/Interfaces/0) [a{sv}]
wlan0: Setting scan request: 0.000000 sec
wlan0: Skip scan - interface disabled
RTM_NEWLINK: ifi_index=3 ifname=wlan0 operstate=2 linkmode=1 ifi_family=0 ifi_flags=0x9003 ([UP])
nl80211: Interface up (wlan0/wlan0)
wlan0: Event INTERFACE_ENABLED (25) received
wlan0: Interface was enabled
wlan0: State: INTERFACE_DISABLED -> DISCONNECTED
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
wlan0: Setting scan request: 0.000000 sec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
wlan0: Starting AP scan for wildcard SSID
WPS: Building WPS IE for Probe Request
WPS:  * Version (hardcoded 0x10)
WPS:  * Request Type
WPS:  * Config Methods (280)
WPS:  * UUID-E
WPS:  * Primary Device Type
WPS:  * RF Bands (3)
WPS:  * Association State
WPS:  * Configuration Error (0)
WPS:  * Device Password ID (0)
WPS:  * Manufacturer
WPS:  * Model Name
WPS:  * Model Number
WPS:  * Device Name
WPS:  * Version2 (0x20)
P2P: * P2P IE header
P2P: * Capability dev=25 group=00
P2P: * Listen Channel: Regulatory Class 81 Channel 1
wlan0: Add radio work 'scan'@0x1977f30
wlan0: First radio work item in the queue - schedule start immediately
wlan0: Starting radio work 'scan'@0x1977f30 after 0.000041 second wait
Request driver to clear scan cache due to local BSS flush
wlan0: nl80211: scan request
nl80211: Scan SSID
nl80211: Scan extra IEs - hexdump(len=126): dd 69 00 50 f2 04 10 4a 00 01 10 10 3a 00 01 00 10 08 00 02 02 80 10 47 00 10 66 cf 87 ef f9 65 5c 7c 8e 90 e5 6d 60 f7 8c 1f 10 54 00 08 00 00 00 00 00 00 00 00 10 3c 00 01 03 10 02 00 02 00 00 10 09 00 02 00 00 10 12 00 02 00 00 10 21 00 01 20 10 23 00 01 20 10 24 00 01 20 10 11 00 01 20 10 49 00 06 00 37 2a 00 01 20 dd 11 50 6f 9a 09 02 02 00 25 00 06 05 00 55 53 04 51 01
nl80211: Add NL80211_SCAN_FLAG_FLUSH
Scan requested (ret=0) - scan timeout 30 seconds
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/0
nl80211: Event message available
nl80211: Ignored event 33 (NL80211_CMD_TRIGGER_SCAN) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
wlan0: nl80211: Scan trigger
wlan0: Event SCAN_STARTED (47) received
wlan0: Own scan request started a scan in 0.000356 seconds
nl80211: Event message available
nl80211: Ignored event 34 (NL80211_CMD_NEW_SCAN_RESULTS) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
wlan0: nl80211: New scan results available
nl80211: Scan probed for SSID ''
nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 5180 5200 5220 5240 5260 5280 5300 5320 5500 5520 5540 5560 5580 5600 5620 5640 5660 5680 5700 5720 5745 5765 5785 5805 5825
wlan0: Event SCAN_RESULTS (3) received
wlan0: Scan completed in 2.797028 seconds
nl80211: Received scan results (10 BSSes)
wlan0: BSS: Start scan result update 7
wlan0: BSS: Add new id 82 BSSID ae:4c:a5:b5:98:b0 SSID '' freq 5785
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/82'
wlan0: BSS: Add new id 83 BSSID ae:4c:a5:b5:98:b2 SSID '' freq 5785
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/83'
wlan0: BSS: Add new id 84 BSSID 72:a7:41:23:d4:f7 SSID 'mynet-Guest' freq 5180
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/84'
wlan0: BSS: Add new id 85 BSSID 72:a7:41:13:d4:f7 SSID 'mynet' freq 5180
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/85'
wlan0: BSS: Add new id 86 BSSID 66:22:32:78:1a:48 SSID 'mynet' freq 5745
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/86'
wlan0: BSS: Add new id 87 BSSID 6a:22:32:78:1a:48 SSID 'mynet-Guest' freq 5745
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/87'
wlan0: BSS: Add new id 88 BSSID 60:22:32:78:1a:47 SSID 'mynet' freq 2462
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/88'
wlan0: BSS: Add new id 89 BSSID 66:22:32:78:1a:47 SSID 'mynet-Guest' freq 2462
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/89'
wlan0: BSS: Add new id 90 BSSID 72:a7:41:13:d4:f6 SSID 'mynet-Guest' freq 2412
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/90'
wlan0: BSS: Add new id 91 BSSID 70:a7:41:63:d4:f6 SSID 'mynet' freq 2412
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/91'
BSS: last_scan_res_used=10/32
wlan0: New scan results available (own=1 ext=0)
WPS: AP[0] 34:60:f9:08:08:c3 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
WPS: AP[1] 34:60:f9:08:08:bf type=0 tries=0 last_attempt=-1 sec ago blacklist=0
wlan0: Radio work 'scan'@0x1977f30 done in 2.821222 seconds
wlan0: radio_work_free('scan'@0x1977f30): num_active_works --> 0
wlan0: Selecting BSS from priority group 0
wlan0: 0: ae:4c:a5:b5:98:b0 ssid='' wpa_ie_len=0 rsn_ie_len=24 caps=0x1111 level=-35 freq=5785
wlan0:    skip - SSID not known
wlan0: 1: ae:4c:a5:b5:98:b2 ssid='' wpa_ie_len=0 rsn_ie_len=20 caps=0x1111 level=-35 freq=5785
wlan0:    skip - SSID not known
wlan0: 2: 72:a7:41:23:d4:f7 ssid='mynet-Guest' wpa_ie_len=0 rsn_ie_len=20 caps=0x111 level=-34 freq=5180
wlan0:    skip - SSID mismatch
wlan0:    selected based on RSN IE
wlan0:    selected BSS 72:a7:41:23:d4:f7 ssid='mynet-Guest'
wlan0: Considering connect request: reassociate: 0  selected: 72:a7:41:23:d4:f7  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid=0x197fc60  current_ssid=(nil)
wlan0: Request association with 72:a7:41:23:d4:f7
wlan0: Re-association to the same ESS
TDLS: TDLS is allowed in the target BSS
TDLS: TDLS channel switch allowed in the target BSS
wlan0: No ongoing scan/p2p-scan found to abort
wlan0: Add radio work 'connect'@0x19a20f8
wlan0: First radio work item in the queue - schedule start immediately
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
p2p-dev-wlan0: Updating scan results from sibling
nl80211: Received scan results (10 BSSes)
p2p-dev-wlan0: BSS: Start scan result update 7
p2p-dev-wlan0: BSS: Add new id 37 BSSID ae:4c:a5:b5:98:b0 SSID '' freq 5785
p2p-dev-wlan0: BSS: Add new id 38 BSSID ae:4c:a5:b5:98:b2 SSID '' freq 5785
p2p-dev-wlan0: BSS: Remove id 20 BSSID 6e:22:32:78:1a:48 SSID '' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 21 BSSID 72:22:32:78:1a:48 SSID '' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 16 BSSID 3a:60:f9:08:08:c2 SSID 'LauNation_Guest' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 22 BSSID ae:4c:a5:ae:98:b1 SSID '' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 17 BSSID ae:4c:a5:ae:98:b5 SSID '' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 23 BSSID ae:4c:a5:ae:98:b7 SSID '' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 18 BSSID 72:a7:41:33:d4:f6 SSID '' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 19 BSSID 72:a7:41:23:d4:f6 SSID '' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 24 BSSID 34:60:f9:08:08:c3 SSID 'LauNation' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 25 BSSID 3a:60:f9:08:08:c3 SSID 'LauNation_Guest' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 26 BSSID 3a:60:f9:08:08:bf SSID 'LauNation_Guest' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 27 BSSID 3e:60:f9:08:08:bf SSID '' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 28 BSSID 34:60:f9:08:08:bf SSID 'LauNation' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 29 BSSID 6a:22:32:78:38:ca SSID 'mynet-Guest' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 30 BSSID 72:22:32:78:38:ca SSID '' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 31 BSSID 6e:22:32:78:38:ca SSID '' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 32 BSSID 66:22:32:78:38:ca SSID 'mynet' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 33 BSSID 70:a7:41:63:d4:f7 SSID '' due to no match in scan
BSS: last_scan_res_used=10/32
wlan0: Starting radio work 'connect'@0x19a20f8 after 0.000882 second wait
wlan0: Trying to associate with SSID 'mynet-Guest'
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
RSN: PMKSA cache search - network_ctx=0x197fc60 try_opportunistic=0 akmp=0x0
RSN: Search for BSSID 72:a7:41:23:d4:f7
RSN: No PMKSA cache entry found
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 2 proto 2
wlan0: WPA: Selected mgmt group cipher 32
wlan0: WPA: clearing AP WPA IE
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 80 00
wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
wlan0: WPA: using GTK CCMP
wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
wlan0: WPA: using PTK CCMP
wlan0: WPA: AP key_mgmt 0x2 network profile key_mgmt 0x3; available key_mgmt 0x2
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
wlan0: WPA: not using MGMT group cipher
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 02 00 00
PSK (set in config) - hexdump(len=32): [REMOVED]
WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
wlan0: Automatic auth_alg selection: 0x1
Added supported operating classes IE - hexdump(len=22): 3b 14 73 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f 80 81 82
wlan0: State: SCANNING -> ASSOCIATING
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
nl80211: Set mode ifindex 3 iftype 2 (STATION)
nl80211: Unsubscribe mgmt frames handle 0x8913eac1 (mode change)
nl80211: Subscribe to mgmt frames with non-AP handle 0x19b6248
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=0104
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=040a
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=040b
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=040c
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=040d
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=090a
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=090b
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=090c
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=090d
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=0409506f9a09
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=7f506f9a09
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=0409506f9a1a
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=0801
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=040e
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=12
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=06
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=0a07
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=0a11
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=0a1a
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=1101
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=1102
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=0505
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=0500
nl80211: Key management set PSK
nl80211: Connect (ifindex=3)
  * bssid_hint=72:a7:41:23:d4:f7
  * freq_hint=5180
  * SSID=mynet-Guest
  * IEs - hexdump(len=44): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 3b 14 73 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f 80 81 82
  * WPA Versions 0x2
  * pairwise=0xfac04
  * group=0xfac04
  * akm=0xfac02
  * PSK - hexdump(len=32): [REMOVED]
  * htcaps - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  * htcaps_mask - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  * vhtcaps - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
  * vhtcaps_mask - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
  * Auth Type 0
nl80211: Connect request send successfully
wlan0: Setting authentication timeout: 10 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: External notification - EAP fail=0
EAPOL: External notification - portControl=Auto
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/0
dbus: org.freedesktop.DBus.Properties.Get (/fi/w1/wpa_supplicant1/Interfaces/0) [ss]
properties_get_or_set: Get(BSSs)
RTM_NEWLINK: ifi_index=3 ifname=wlan0 wext ifi_family=0 ifi_flags=0x9003 ([UP])
dbus: org.freedesktop.DBus.Properties.GetAll (/fi/w1/wpa_supplicant1/Interfaces/0/Networks/1) [s]
RTM_NEWLINK: ifi_index=3 ifname=wlan0 operstate=2 linkmode=1 ifi_family=0 ifi_flags=0x9002 ()
nl80211: Interface down (wlan0/wlan0)
wlan0: Event INTERFACE_DISABLED (26) received
wlan0: Interface was disabled
wlan0: CTRL-EVENT-DISCONNECTED bssid=72:a7:41:23:d4:f7 reason=3 locally_generated=1
nl80211: Data frame filter flags=0x0
wlan0: State: ASSOCIATING -> DISCONNECTED
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
EAPOL: External notification - portEnabled=0
EAPOL: External notification - portValid=0
EAPOL: External notification - EAP success=0
wlan0: BSS: Remove id 82 BSSID ae:4c:a5:b5:98:b0 SSID '' due to wpa_bss_flush
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/82'
wlan0: BSS: Remove id 83 BSSID ae:4c:a5:b5:98:b2 SSID '' due to wpa_bss_flush
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/83'
Update BSS pointer for the pending connect radio work
wlan0: BSS: Remove id 84 BSSID 72:a7:41:23:d4:f7 SSID 'mynet-Guest' due to wpa_bss_flush
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/84'
wlan0: BSS: Remove id 85 BSSID 72:a7:41:13:d4:f7 SSID 'mynet' due to wpa_bss_flush
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/85'
wlan0: BSS: Remove id 86 BSSID 66:22:32:78:1a:48 SSID 'mynet' due to wpa_bss_flush
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/86'
wlan0: BSS: Remove id 87 BSSID 6a:22:32:78:1a:48 SSID 'mynet-Guest' due to wpa_bss_flush
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/87'
wlan0: BSS: Remove id 88 BSSID 60:22:32:78:1a:47 SSID 'mynet' due to wpa_bss_flush
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/88'
wlan0: BSS: Remove id 89 BSSID 66:22:32:78:1a:47 SSID 'mynet-Guest' due to wpa_bss_flush
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/89'
wlan0: BSS: Remove id 90 BSSID 72:a7:41:13:d4:f6 SSID 'mynet-Guest' due to wpa_bss_flush
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/90'
wlan0: BSS: Remove id 91 BSSID 70:a7:41:63:d4:f6 SSID 'mynet' due to wpa_bss_flush
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/91'
wlan0: Remove radio work 'connect'@0x19a20f8 (started)
wlan0: radio_work_free('connect'@0x19a20f8): num_active_works --> 0
wlan0: State: DISCONNECTED -> INTERFACE_DISABLED
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
RTM_NEWLINK: ifi_index=3 ifname=wlan0 wext ifi_family=0 ifi_flags=0x9002 ()
nl80211: Event message available
nl80211: Ignored event 48 (NL80211_CMD_DISCONNECT) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 48 (NL80211_CMD_DISCONNECT) received for wlan0
nl80211: Disconnect event
wlan0: Ignore event DEAUTH (11) while interface is disabled
l2_packet_receive - recvfrom: Network is down
l2_packet_receive - recvfrom: Network is down
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/0
nl80211: Event message available
nl80211: Drv Event 36 (NL80211_CMD_REG_CHANGE) received for p2p-dev-wlan0
nl80211: Regulatory domain change
 * initiator=0
 * type=1
p2p-dev-wlan0: Event CHANNEL_LIST_CHANGED (27) received
wlan0: CTRL-EVENT-REGDOM-CHANGE init=CORE type=WORLD
p2p-dev-wlan0: Updating hw mode
nl80211: Regulatory information - country=US (DFS-FCC)
nl80211: 902-904 @ 2 MHz 30 mBm
nl80211: 904-920 @ 16 MHz 30 mBm
nl80211: 920-928 @ 8 MHz 30 mBm
nl80211: 2400-2472 @ 40 MHz 30 mBm
nl80211: 5150-5250 @ 80 MHz 23 mBm
nl80211: 5250-5350 @ 80 MHz 24 mBm (DFS)
nl80211: 5470-5730 @ 160 MHz 24 mBm (DFS)
nl80211: 5730-5850 @ 80 MHz 30 mBm
nl80211: 5850-5895 @ 40 MHz 27 mBm (no outdoor) (no IR)
nl80211: 57240-71000 @ 2160 MHz 40 mBm
nl80211: Added 802.11b mode based on 802.11g information
nl80211: Mode IEEE 802.11g: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
nl80211: Mode IEEE 802.11a: 5170[DISABLED] 5180 5190[DISABLED] 5200 5210[DISABLED] 5220 5230[DISABLED] 5240 5260[NO_IR][RADAR] 5280[NO_IR][RADAR] 5300[NO_IR][RADAR] 5320[NO_IR][RADAR] 5500[NO_IR][RADAR] 5520[NO_IR][RADAR]
nl80211: Mode IEEE 802.11b: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
wlan0: Updating hw mode
nl80211: Regulatory information - country=US (DFS-FCC)
nl80211: 902-904 @ 2 MHz 30 mBm
nl80211: 904-920 @ 16 MHz 30 mBm
nl80211: 920-928 @ 8 MHz 30 mBm
nl80211: 2400-2472 @ 40 MHz 30 mBm
nl80211: 5150-5250 @ 80 MHz 23 mBm
nl80211: 5250-5350 @ 80 MHz 24 mBm (DFS)
nl80211: 5470-5730 @ 160 MHz 24 mBm (DFS)
nl80211: 5730-5850 @ 80 MHz 30 mBm
nl80211: 5850-5895 @ 40 MHz 27 mBm (no outdoor) (no IR)
nl80211: 57240-71000 @ 2160 MHz 40 mBm
nl80211: Added 802.11b mode based on 802.11g information
nl80211: Mode IEEE 802.11g: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
nl80211: Mode IEEE 802.11a: 5170[DISABLED] 5180 5190[DISABLED] 5200 5210[DISABLED] 5220 5230[DISABLED] 5240 5260[NO_IR][RADAR] 5280[NO_IR][RADAR] 5300[NO_IR][RADAR] 5320[NO_IR][RADAR] 5500[NO_IR][RADAR] 5520[NO_IR][RADAR]
nl80211: Mode IEEE 802.11b: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
p2p-dev-wlan0: Determining shared radio frequencies (max len 2)
p2p-dev-wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
nl80211: Event message available
nl80211: Drv Event 36 (NL80211_CMD_REG_CHANGE) received for p2p-dev-wlan0
nl80211: Regulatory domain change
 * initiator=1
 * type=0
 * alpha2=US
p2p-dev-wlan0: Event CHANNEL_LIST_CHANGED (27) received
wlan0: CTRL-EVENT-REGDOM-CHANGE init=USER type=COUNTRY alpha2=US
p2p-dev-wlan0: Updating hw mode
nl80211: Regulatory information - country=US (DFS-FCC)
nl80211: 902-904 @ 2 MHz 30 mBm
nl80211: 904-920 @ 16 MHz 30 mBm
nl80211: 920-928 @ 8 MHz 30 mBm
nl80211: 2400-2472 @ 40 MHz 30 mBm
nl80211: 5150-5250 @ 80 MHz 23 mBm
nl80211: 5250-5350 @ 80 MHz 24 mBm (DFS)
nl80211: 5470-5730 @ 160 MHz 24 mBm (DFS)
nl80211: 5730-5850 @ 80 MHz 30 mBm
nl80211: 5850-5895 @ 40 MHz 27 mBm (no outdoor) (no IR)
nl80211: 57240-71000 @ 2160 MHz 40 mBm
nl80211: Added 802.11b mode based on 802.11g information
nl80211: Mode IEEE 802.11g: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
nl80211: Mode IEEE 802.11a: 5170[DISABLED] 5180 5190[DISABLED] 5200 5210[DISABLED] 5220 5230[DISABLED] 5240 5260[NO_IR][RADAR] 5280[NO_IR][RADAR] 5300[NO_IR][RADAR] 5320[NO_IR][RADAR] 5500[NO_IR][RADAR] 5520[NO_IR][RADAR]
nl80211: Mode IEEE 802.11b: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
wlan0: Updating hw mode
nl80211: Regulatory information - country=US (DFS-FCC)
nl80211: 902-904 @ 2 MHz 30 mBm
nl80211: 904-920 @ 16 MHz 30 mBm
nl80211: 920-928 @ 8 MHz 30 mBm
nl80211: 2400-2472 @ 40 MHz 30 mBm
nl80211: 5150-5250 @ 80 MHz 23 mBm
nl80211: 5250-5350 @ 80 MHz 24 mBm (DFS)
nl80211: 5470-5730 @ 160 MHz 24 mBm (DFS)
nl80211: 5730-5850 @ 80 MHz 30 mBm
nl80211: 5850-5895 @ 40 MHz 27 mBm (no outdoor) (no IR)
nl80211: 57240-71000 @ 2160 MHz 40 mBm
nl80211: Added 802.11b mode based on 802.11g information
nl80211: Mode IEEE 802.11g: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
nl80211: Mode IEEE 802.11a: 5170[DISABLED] 5180 5190[DISABLED] 5200 5210[DISABLED] 5220 5230[DISABLED] 5240 5260[NO_IR][RADAR] 5280[NO_IR][RADAR] 5300[NO_IR][RADAR] 5320[NO_IR][RADAR] 5500[NO_IR][RADAR] 5520[NO_IR][RADAR]
nl80211: Mode IEEE 802.11b: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
p2p-dev-wlan0: Determining shared radio frequencies (max len 2)
p2p-dev-wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
RTM_NEWLINK: ifi_index=3 ifname=wlan0 operstate=2 linkmode=1 ifi_family=0 ifi_flags=0x9003 ([UP])
nl80211: Interface up (wlan0/wlan0)
wlan0: Event INTERFACE_ENABLED (25) received
wlan0: Interface was enabled
wlan0: State: INTERFACE_DISABLED -> DISCONNECTED
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
wlan0: Setting scan request: 0.000000 sec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
wlan0: Starting AP scan for wildcard SSID
WPS: Building WPS IE for Probe Request
WPS:  * Version (hardcoded 0x10)
WPS:  * Request Type
WPS:  * Config Methods (280)
WPS:  * UUID-E
WPS:  * Primary Device Type
WPS:  * RF Bands (3)
WPS:  * Association State
WPS:  * Configuration Error (0)
WPS:  * Device Password ID (0)
WPS:  * Manufacturer
WPS:  * Model Name
WPS:  * Model Number
WPS:  * Device Name
WPS:  * Version2 (0x20)
P2P: * P2P IE header
P2P: * Capability dev=25 group=00
P2P: * Listen Channel: Regulatory Class 81 Channel 1
wlan0: Add radio work 'scan'@0x19aa728
wlan0: First radio work item in the queue - schedule start immediately
wlan0: Starting radio work 'scan'@0x19aa728 after 0.000057 second wait
Request driver to clear scan cache due to local BSS flush
wlan0: nl80211: scan request
nl80211: Scan SSID
nl80211: Scan extra IEs - hexdump(len=126): dd 69 00 50 f2 04 10 4a 00 01 10 10 3a 00 01 00 10 08 00 02 02 80 10 47 00 10 66 cf 87 ef f9 65 5c 7c 8e 90 e5 6d 60 f7 8c 1f 10 54 00 08 00 00 00 00 00 00 00 00 10 3c 00 01 03 10 02 00 02 00 00 10 09 00 02 00 00 10 12 00 02 00 00 10 21 00 01 20 10 23 00 01 20 10 24 00 01 20 10 11 00 01 20 10 49 00 06 00 37 2a 00 01 20 dd 11 50 6f 9a 09 02 02 00 25 00 06 05 00 55 53 04 51 01
nl80211: Add NL80211_SCAN_FLAG_FLUSH
Scan requested (ret=0) - scan timeout 30 seconds
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/0
nl80211: Event message available
nl80211: Ignored event 33 (NL80211_CMD_TRIGGER_SCAN) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
wlan0: nl80211: Scan trigger
wlan0: Event SCAN_STARTED (47) received
wlan0: Own scan request started a scan in 0.000412 seconds
nl80211: Event message available
nl80211: Ignored event 34 (NL80211_CMD_NEW_SCAN_RESULTS) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
wlan0: nl80211: New scan results available
nl80211: Scan probed for SSID ''
nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 5180 5200 5220 5240 5260 5280 5300 5320 5500 5520 5540 5560 5580 5600 5620 5640 5660 5680 5700 5720 5745 5765 5785 5805 5825
wlan0: Event SCAN_RESULTS (3) received
wlan0: Scan completed in 2.794446 seconds
nl80211: Received scan results (27 BSSes)
wlan0: BSS: Start scan result update 8
wlan0: BSS: Add new id 92 BSSID 72:a7:41:23:d4:f7 SSID 'mynet-Guest' freq 5180
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/92'
wlan0: BSS: Add new id 93 BSSID 72:a7:41:13:d4:f7 SSID 'mynet' freq 5180
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/93'
wlan0: BSS: Add new id 94 BSSID 72:a7:41:33:d4:f7 SSID '' freq 5180
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/94'
wlan0: BSS: Add new id 95 BSSID 72:a7:41:43:d4:f7 SSID '' freq 5180
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/95'
wlan0: BSS: Add new id 96 BSSID 66:22:32:78:1a:48 SSID 'mynet' freq 5745
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/96'
wlan0: BSS: Add new id 97 BSSID 6e:22:32:78:1a:48 SSID '' freq 5745
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/97'
wlan0: BSS: Add new id 98 BSSID 72:22:32:78:1a:48 SSID '' freq 5745
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/98'
wlan0: BSS: Add new id 99 BSSID 6a:22:32:78:1a:48 SSID 'mynet-Guest' freq 5745
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/99'
wlan0: BSS: Add new id 100 BSSID 34:60:f9:08:08:c3 SSID 'LauNation' freq 5240
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/100'
wlan0: BSS: Add new id 101 BSSID 34:60:f9:08:08:c2 SSID 'LauNation' freq 2437
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/101'
wlan0: BSS: Add new id 102 BSSID 60:22:32:78:1a:47 SSID 'mynet' freq 2462
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/102'
wlan0: BSS: Add new id 103 BSSID 66:22:32:78:1a:47 SSID 'mynet-Guest' freq 2462
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/103'
wlan0: BSS: Add new id 104 BSSID 6a:22:32:78:1a:47 SSID '' freq 2462
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/104'
wlan0: BSS: Add new id 105 BSSID ae:4c:a5:ae:98:b1 SSID '' freq 2462
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/105'
wlan0: BSS: Add new id 106 BSSID ae:4c:a5:ae:98:b5 SSID '' freq 2462
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/106'
wlan0: BSS: Add new id 107 BSSID ae:4c:a5:ae:98:b7 SSID '' freq 2462
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/107'
wlan0: BSS: Add new id 108 BSSID 72:a7:41:13:d4:f6 SSID 'mynet-Guest' freq 2412
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/108'
wlan0: BSS: Add new id 109 BSSID 70:a7:41:63:d4:f6 SSID 'mynet' freq 2412
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/109'
wlan0: BSS: Add new id 110 BSSID 3a:60:f9:08:08:c3 SSID 'LauNation_Guest' freq 5240
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/110'
wlan0: BSS: Add new id 111 BSSID 3e:60:f9:08:08:c3 SSID '' freq 5240
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/111'
wlan0: BSS: Add new id 112 BSSID 3a:60:f9:08:08:bf SSID 'LauNation_Guest' freq 5240
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/112'
wlan0: BSS: Add new id 113 BSSID 3e:60:f9:08:08:bf SSID '' freq 5240
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/113'
wlan0: BSS: Add new id 114 BSSID 34:60:f9:08:08:bf SSID 'LauNation' freq 5240
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/114'
wlan0: BSS: Add new id 115 BSSID 66:22:32:78:38:ca SSID 'mynet' freq 5200
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/115'
wlan0: BSS: Add new id 116 BSSID 6a:22:32:78:38:ca SSID 'mynet-Guest' freq 5200
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/116'
wlan0: BSS: Add new id 117 BSSID 6e:22:32:78:38:ca SSID '' freq 5200
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/117'
wlan0: BSS: Add new id 118 BSSID 70:a7:41:63:d4:f7 SSID '' freq 5180
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/118'
BSS: last_scan_res_used=27/32
wlan0: New scan results available (own=1 ext=0)
WPS: AP 34:60:f9:08:08:c2 type 0 added
WPS: AP[0] 34:60:f9:08:08:c3 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
WPS: AP[1] 34:60:f9:08:08:bf type=0 tries=0 last_attempt=-1 sec ago blacklist=0
WPS: AP[2] 34:60:f9:08:08:c2 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
wlan0: Radio work 'scan'@0x19aa728 done in 2.837058 seconds
wlan0: radio_work_free('scan'@0x19aa728): num_active_works --> 0
wlan0: Selecting BSS from priority group 0
wlan0: 0: 72:a7:41:23:d4:f7 ssid='mynet-Guest' wpa_ie_len=0 rsn_ie_len=20 caps=0x111 level=-38 freq=5180
wlan0:    skip - SSID mismatch
wlan0:    selected based on RSN IE
wlan0:    selected BSS 72:a7:41:23:d4:f7 ssid='mynet-Guest'
wlan0: Considering connect request: reassociate: 0  selected: 72:a7:41:23:d4:f7  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid=0x197fc60  current_ssid=(nil)
wlan0: Request association with 72:a7:41:23:d4:f7
wlan0: Re-association to the same ESS
TDLS: TDLS is allowed in the target BSS
TDLS: TDLS channel switch allowed in the target BSS
wlan0: No ongoing scan/p2p-scan found to abort
wlan0: Add radio work 'connect'@0x19b0670
wlan0: First radio work item in the queue - schedule start immediately
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
p2p-dev-wlan0: Updating scan results from sibling
nl80211: Received scan results (27 BSSes)
p2p-dev-wlan0: BSS: Start scan result update 8
p2p-dev-wlan0: BSS: Add new id 39 BSSID 6e:22:32:78:1a:48 SSID '' freq 5745
p2p-dev-wlan0: BSS: Add new id 40 BSSID 72:22:32:78:1a:48 SSID '' freq 5745
p2p-dev-wlan0: BSS: Add new id 41 BSSID 34:60:f9:08:08:c3 SSID 'LauNation' freq 5240
p2p-dev-wlan0: BSS: Add new id 42 BSSID 34:60:f9:08:08:c2 SSID 'LauNation' freq 2437
p2p-dev-wlan0: BSS: Add new id 43 BSSID 6a:22:32:78:1a:47 SSID '' freq 2462
p2p-dev-wlan0: BSS: Add new id 44 BSSID ae:4c:a5:ae:98:b1 SSID '' freq 2462
p2p-dev-wlan0: BSS: Add new id 45 BSSID ae:4c:a5:ae:98:b5 SSID '' freq 2462
p2p-dev-wlan0: BSS: Add new id 46 BSSID ae:4c:a5:ae:98:b7 SSID '' freq 2462
p2p-dev-wlan0: BSS: Add new id 47 BSSID 3a:60:f9:08:08:c3 SSID 'LauNation_Guest' freq 5240
p2p-dev-wlan0: BSS: Add new id 48 BSSID 3e:60:f9:08:08:c3 SSID '' freq 5240
p2p-dev-wlan0: BSS: Add new id 49 BSSID 3a:60:f9:08:08:bf SSID 'LauNation_Guest' freq 5240
p2p-dev-wlan0: BSS: Add new id 50 BSSID 3e:60:f9:08:08:bf SSID '' freq 5240
p2p-dev-wlan0: BSS: Add new id 51 BSSID 34:60:f9:08:08:bf SSID 'LauNation' freq 5240
p2p-dev-wlan0: BSS: Add new id 52 BSSID 66:22:32:78:38:ca SSID 'mynet' freq 5200
p2p-dev-wlan0: BSS: Add new id 53 BSSID 6a:22:32:78:38:ca SSID 'mynet-Guest' freq 5200
p2p-dev-wlan0: BSS: Add new id 54 BSSID 6e:22:32:78:38:ca SSID '' freq 5200
p2p-dev-wlan0: BSS: Add new id 55 BSSID 70:a7:41:63:d4:f7 SSID '' freq 5180
p2p-dev-wlan0: BSS: Remove id 36 BSSID 3e:60:f9:08:08:c2 SSID '' due to no match in scan
BSS: last_scan_res_used=27/32
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/0
RTM_NEWLINK: ifi_index=3 ifname=wlan0 wext ifi_family=0 ifi_flags=0x9003 ([UP])
wlan0: Starting radio work 'connect'@0x19b0670 after 0.002069 second wait
wlan0: Trying to associate with SSID 'mynet-Guest'
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
RSN: PMKSA cache search - network_ctx=0x197fc60 try_opportunistic=0 akmp=0x0
RSN: Search for BSSID 72:a7:41:23:d4:f7
RSN: No PMKSA cache entry found
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 2 proto 2
wlan0: WPA: Selected mgmt group cipher 32
wlan0: WPA: clearing AP WPA IE
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 80 00
wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
wlan0: WPA: using GTK CCMP
wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
wlan0: WPA: using PTK CCMP
wlan0: WPA: AP key_mgmt 0x2 network profile key_mgmt 0x3; available key_mgmt 0x2
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
wlan0: WPA: not using MGMT group cipher
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 02 00 00
PSK (set in config) - hexdump(len=32): [REMOVED]
WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
wlan0: Automatic auth_alg selection: 0x1
Added supported operating classes IE - hexdump(len=22): 3b 14 73 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f 80 81 82
wlan0: State: SCANNING -> ASSOCIATING
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
nl80211: Set mode ifindex 3 iftype 2 (STATION)
nl80211: Unsubscribe mgmt frames handle 0x8913eac1 (mode change)


bls
Posts: 3108
Joined: Mon Oct 22, 2018 11:25 pm
Location: Seattle, WA

Re: Most of my Raspberry Pi wlan0 stopped connecting despite otherwise-identical configurations and eth0 fine

Mon Jun 12, 2023 3:41 am

bpleat wrote:
Mon Jun 12, 2023 1:09 am
Nothing stands out to me, but I don't know what I'm looking for.
(cut out redundant columns)

Code: Select all


nl80211: 5250-5350 @ 80 MHz 24 mBm (DFS)
nl80211: 5470-5730 @ 160 MHz 24 mBm (DFS)
nl80211: 5730-5850 @ 80 MHz 30 mBm
nl80211: 5850-5895 @ 40 MHz 27 mBm (no outdoor) (no IR)
nl80211: 57240-71000 @ 2160 MHz 40 mBm
nl80211: Added 802.11b mode based on 802.11g information
nl80211: Mode IEEE 802.11g: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
nl80211: Mode IEEE 802.11a: 5170[DISABLED] 5180 5190[DISABLED] 5200 5210[DISABLED] 5220 5230[DISABLED] 5240 5260[NO_IR][RADAR] 5280[NO_IR][RADAR] 5300[NO_IR][RADAR] 5320[NO_IR][RADAR] 5500[NO_IR][RADAR] 5520[NO_IR][RADAR]
nl80211: Mode IEEE 802.11b: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
wlan0: Updating hw mode
nl80211: Regulatory information - country=US (DFS-FCC)
nl80211: 902-904 @ 2 MHz 30 mBm
nl80211: 904-920 @ 16 MHz 30 mBm
nl80211: 920-928 @ 8 MHz 30 mBm
nl80211: 2400-2472 @ 40 MHz 30 mBm
nl80211: 5150-5250 @ 80 MHz 23 mBm
nl80211: 5250-5350 @ 80 MHz 24 mBm (DFS)
nl80211: 5470-5730 @ 160 MHz 24 mBm (DFS)
nl80211: 5730-5850 @ 80 MHz 30 mBm
nl80211: 5850-5895 @ 40 MHz 27 mBm (no outdoor) (no IR)
nl80211: 57240-71000 @ 2160 MHz 40 mBm
nl80211: Added 802.11b mode based on 802.11g information
nl80211: Mode IEEE 802.11g: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
nl80211: Mode IEEE 802.11a: 5170[DISABLED] 5180 5190[DISABLED] 5200 5210[DISABLED] 5220 5230[DISABLED] 5240 5260[NO_IR][RADAR] 5280[NO_IR][RADAR] 5300[NO_IR][RADAR] 5320[NO_IR][RADAR] 5500[NO_IR][RADAR] 5520[NO_IR][RADAR]
nl80211: Mode IEEE 802.11b: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
p2p-dev-wlan0: Determining shared radio frequencies (max len 2)
p2p-dev-wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
nl80211: Event message available
nl80211: Drv Event 36 (NL80211_CMD_REG_CHANGE) received for p2p-dev-wlan0
nl80211: Regulatory domain change
 * initiator=1
 * type=0
 * alpha2=US
p2p-dev-wlan0: Event CHANNEL_LIST_CHANGED (27) received
wlan0: CTRL-EVENT-REGDOM-CHANGE init=USER type=COUNTRY alpha2=US
p2p-dev-wlan0: Updating hw mode
nl80211: Regulatory information - country=US (DFS-FCC)
nl80211: 902-904 @ 2 MHz 30 mBm
nl80211: 904-920 @ 16 MHz 30 mBm
nl80211: 920-928 @ 8 MHz 30 mBm
nl80211: 2400-2472 @ 40 MHz 30 mBm
nl80211: 5150-5250 @ 80 MHz 23 mBm
nl80211: 5250-5350 @ 80 MHz 24 mBm (DFS)
nl80211: 5470-5730 @ 160 MHz 24 mBm (DFS)
nl80211: 5730-5850 @ 80 MHz 30 mBm
nl80211: 5850-5895 @ 40 MHz 27 mBm (no outdoor) (no IR)
nl80211: 57240-71000 @ 2160 MHz 40 mBm
nl80211: Added 802.11b mode based on 802.11g information
nl80211: Mode IEEE 802.11g: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
nl80211: Mode IEEE 802.11a: 5170[DISABLED] 5180 5190[DISABLED] 5200 5210[DISABLED] 5220 5230[DISABLED] 5240 5260[NO_IR][RADAR] 5280[NO_IR][RADAR] 5300[NO_IR][RADAR] 5320[NO_IR][RADAR] 5500[NO_IR][RADAR] 5520[NO_IR][RADAR]
nl80211: Mode IEEE 802.11b: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
wlan0: Updating hw mode
nl80211: Regulatory information - country=US (DFS-FCC)
nl80211: 902-904 @ 2 MHz 30 mBm
nl80211: 904-920 @ 16 MHz 30 mBm
nl80211: 920-928 @ 8 MHz 30 mBm
nl80211: 2400-2472 @ 40 MHz 30 mBm
nl80211: 5150-5250 @ 80 MHz 23 mBm
nl80211: 5250-5350 @ 80 MHz 24 mBm (DFS)
nl80211: 5470-5730 @ 160 MHz 24 mBm (DFS)
nl80211: 5730-5850 @ 80 MHz 30 mBm
nl80211: 5850-5895 @ 40 MHz 27 mBm (no outdoor) (no IR)
nl80211: 57240-71000 @ 2160 MHz 40 mBm
nl80211: Added 802.11b mode based on 802.11g information
nl80211: Mode IEEE 802.11g: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
nl80211: Mode IEEE 802.11a: 5170[DISABLED] 5180 5190[DISABLED] 5200 5210[DISABLED] 5220 5230[DISABLED] 5240 5260[NO_IR][RADAR] 5280[NO_IR][RADAR] 5300[NO_IR][RADAR] 5320[NO_IR][RADAR] 5500[NO_IR][RADAR] 5520[NO_IR][RADAR]
nl80211: Mode IEEE 802.11b: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
p2p-dev-wlan0: Determining shared radio frequencies (max len 2)
p2p-dev-wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/0
dbus: fi.w1.wpa_supplicant1.Interface.Scan (/fi/w1/wpa_supplicant1/Interfaces/0) [a{sv}]
wlan0: Setting scan request: 0.000000 sec
wlan0: Skip scan - interface disabled
RTM_NEWLINK: ifi_index=3 ifname=wlan0 operstate=2 linkmode=1 ifi_family=0 ifi_flags=0x9003 ([UP])
nl80211: Interface up (wlan0/wlan0)
wlan0: Event INTERFACE_ENABLED (25) received
wlan0: Interface was enabled
wlan0: State: INTERFACE_DISABLED -> DISCONNECTED
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
wlan0: Setting scan request: 0.000000 sec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
wlan0: Starting AP scan for wildcard SSID
WPS: Building WPS IE for Probe Request
WPS:  * Version (hardcoded 0x10)
WPS:  * Request Type
WPS:  * Config Methods (280)
WPS:  * UUID-E
WPS:  * Primary Device Type
WPS:  * RF Bands (3)
WPS:  * Association State
WPS:  * Configuration Error (0)
WPS:  * Device Password ID (0)
WPS:  * Manufacturer
WPS:  * Model Name
WPS:  * Model Number
WPS:  * Device Name
WPS:  * Version2 (0x20)
P2P: * P2P IE header
P2P: * Capability dev=25 group=00
P2P: * Listen Channel: Regulatory Class 81 Channel 1
wlan0: Add radio work 'scan'@0x1977f30
wlan0: First radio work item in the queue - schedule start immediately
wlan0: Starting radio work 'scan'@0x1977f30 after 0.000041 second wait
Request driver to clear scan cache due to local BSS flush
wlan0: nl80211: scan request
nl80211: Scan SSID
nl80211: Scan extra IEs - hexdump(len=126): dd 69 00 50 f2 04 10 4a 00 01 10 10 3a 00 01 00 10 08 00 02 02 80 10 47 00 10 66 cf 87 ef f9 65 5c 7c 8e 90 e5 6d 60 f7 8c 1f 10 54 00 08 00 00 00 00 00 00 00 00 10 3c 00 01 03 10 02 00 02 00 00 10 09 00 02 00 00 10 12 00 02 00 00 10 21 00 01 20 10 23 00 01 20 10 24 00 01 20 10 11 00 01 20 10 49 00 06 00 37 2a 00 01 20 dd 11 50 6f 9a 09 02 02 00 25 00 06 05 00 55 53 04 51 01
nl80211: Add NL80211_SCAN_FLAG_FLUSH
Scan requested (ret=0) - scan timeout 30 seconds
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/0
nl80211: Event message available
nl80211: Ignored event 33 (NL80211_CMD_TRIGGER_SCAN) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
wlan0: nl80211: Scan trigger
wlan0: Event SCAN_STARTED (47) received
wlan0: Own scan request started a scan in 0.000356 seconds
nl80211: Event message available
nl80211: Ignored event 34 (NL80211_CMD_NEW_SCAN_RESULTS) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
wlan0: nl80211: New scan results available
nl80211: Scan probed for SSID ''
nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 5180 5200 5220 5240 5260 5280 5300 5320 5500 5520 5540 5560 5580 5600 5620 5640 5660 5680 5700 5720 5745 5765 5785 5805 5825
wlan0: Event SCAN_RESULTS (3) received
wlan0: Scan completed in 2.797028 seconds
nl80211: Received scan results (10 BSSes)
wlan0: BSS: Start scan result update 7
wlan0: BSS: Add new id 82 BSSID ae:4c:a5:b5:98:b0 SSID '' freq 5785
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/82'
wlan0: BSS: Add new id 83 BSSID ae:4c:a5:b5:98:b2 SSID '' freq 5785
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/83'
wlan0: BSS: Add new id 84 BSSID 72:a7:41:23:d4:f7 SSID 'mynet-Guest' freq 5180
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/84'
wlan0: BSS: Add new id 85 BSSID 72:a7:41:13:d4:f7 SSID 'mynet' freq 5180
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/85'
wlan0: BSS: Add new id 86 BSSID 66:22:32:78:1a:48 SSID 'mynet' freq 5745
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/86'
wlan0: BSS: Add new id 87 BSSID 6a:22:32:78:1a:48 SSID 'mynet-Guest' freq 5745
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/87'
wlan0: BSS: Add new id 88 BSSID 60:22:32:78:1a:47 SSID 'mynet' freq 2462
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/88'
wlan0: BSS: Add new id 89 BSSID 66:22:32:78:1a:47 SSID 'mynet-Guest' freq 2462
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/89'
wlan0: BSS: Add new id 90 BSSID 72:a7:41:13:d4:f6 SSID 'mynet-Guest' freq 2412
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/90'
wlan0: BSS: Add new id 91 BSSID 70:a7:41:63:d4:f6 SSID 'mynet' freq 2412
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/91'
BSS: last_scan_res_used=10/32
wlan0: New scan results available (own=1 ext=0)
WPS: AP[0] 34:60:f9:08:08:c3 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
WPS: AP[1] 34:60:f9:08:08:bf type=0 tries=0 last_attempt=-1 sec ago blacklist=0
wlan0: Radio work 'scan'@0x1977f30 done in 2.821222 seconds
wlan0: radio_work_free('scan'@0x1977f30): num_active_works --> 0
wlan0: Selecting BSS from priority group 0
wlan0: 0: ae:4c:a5:b5:98:b0 ssid='' wpa_ie_len=0 rsn_ie_len=24 caps=0x1111 level=-35 freq=5785
wlan0:    skip - SSID not known
wlan0: 1: ae:4c:a5:b5:98:b2 ssid='' wpa_ie_len=0 rsn_ie_len=20 caps=0x1111 level=-35 freq=5785
wlan0:    skip - SSID not known
wlan0: 2: 72:a7:41:23:d4:f7 ssid='mynet-Guest' wpa_ie_len=0 rsn_ie_len=20 caps=0x111 level=-34 freq=5180
wlan0:    skip - SSID mismatch
wlan0:    selected based on RSN IE
wlan0:    selected BSS 72:a7:41:23:d4:f7 ssid='mynet-Guest'
wlan0: Considering connect request: reassociate: 0  selected: 72:a7:41:23:d4:f7  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid=0x197fc60  current_ssid=(nil)
wlan0: Request association with 72:a7:41:23:d4:f7
wlan0: Re-association to the same ESS
TDLS: TDLS is allowed in the target BSS
TDLS: TDLS channel switch allowed in the target BSS
wlan0: No ongoing scan/p2p-scan found to abort
wlan0: Add radio work 'connect'@0x19a20f8
wlan0: First radio work item in the queue - schedule start immediately
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
p2p-dev-wlan0: Updating scan results from sibling
nl80211: Received scan results (10 BSSes)
p2p-dev-wlan0: BSS: Start scan result update 7
p2p-dev-wlan0: BSS: Add new id 37 BSSID ae:4c:a5:b5:98:b0 SSID '' freq 5785
p2p-dev-wlan0: BSS: Add new id 38 BSSID ae:4c:a5:b5:98:b2 SSID '' freq 5785
p2p-dev-wlan0: BSS: Remove id 20 BSSID 6e:22:32:78:1a:48 SSID '' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 21 BSSID 72:22:32:78:1a:48 SSID '' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 16 BSSID 3a:60:f9:08:08:c2 SSID 'LauNation_Guest' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 22 BSSID ae:4c:a5:ae:98:b1 SSID '' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 17 BSSID ae:4c:a5:ae:98:b5 SSID '' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 23 BSSID ae:4c:a5:ae:98:b7 SSID '' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 18 BSSID 72:a7:41:33:d4:f6 SSID '' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 19 BSSID 72:a7:41:23:d4:f6 SSID '' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 24 BSSID 34:60:f9:08:08:c3 SSID 'LauNation' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 25 BSSID 3a:60:f9:08:08:c3 SSID 'LauNation_Guest' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 26 BSSID 3a:60:f9:08:08:bf SSID 'LauNation_Guest' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 27 BSSID 3e:60:f9:08:08:bf SSID '' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 28 BSSID 34:60:f9:08:08:bf SSID 'LauNation' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 29 BSSID 6a:22:32:78:38:ca SSID 'mynet-Guest' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 30 BSSID 72:22:32:78:38:ca SSID '' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 31 BSSID 6e:22:32:78:38:ca SSID '' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 32 BSSID 66:22:32:78:38:ca SSID 'mynet' due to no match in scan
p2p-dev-wlan0: BSS: Remove id 33 BSSID 70:a7:41:63:d4:f7 SSID '' due to no match in scan
BSS: last_scan_res_used=10/32
wlan0: Starting radio work 'connect'@0x19a20f8 after 0.000882 second wait
wlan0: Trying to associate with SSID 'mynet-Guest'
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
RSN: PMKSA cache search - network_ctx=0x197fc60 try_opportunistic=0 akmp=0x0
RSN: Search for BSSID 72:a7:41:23:d4:f7
RSN: No PMKSA cache entry found
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 2 proto 2
wlan0: WPA: Selected mgmt group cipher 32
wlan0: WPA: clearing AP WPA IE
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 80 00
wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
wlan0: WPA: using GTK CCMP
wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
wlan0: WPA: using PTK CCMP
wlan0: WPA: AP key_mgmt 0x2 network profile key_mgmt 0x3; available key_mgmt 0x2
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
wlan0: WPA: not using MGMT group cipher
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 02 00 00
PSK (set in config) - hexdump(len=32): [REMOVED]
WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
wlan0: Automatic auth_alg selection: 0x1
Added supported operating classes IE - hexdump(len=22): 3b 14 73 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f 80 81 82
wlan0: State: SCANNING -> ASSOCIATING
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
nl80211: Set mode ifindex 3 iftype 2 (STATION)
nl80211: Unsubscribe mgmt frames handle 0x8913eac1 (mode change)
nl80211: Subscribe to mgmt frames with non-AP handle 0x19b6248
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=0104
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=040a
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=040b
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=040c
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=040d
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=090a
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=090b
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=090c
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=090d
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=0409506f9a09
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=7f506f9a09
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=0409506f9a1a
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=0801
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=040e
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=12
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=06
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=0a07
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=0a11
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=0a1a
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=1101
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=1102
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=0505
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x19b6248 match=0500
nl80211: Key management set PSK
nl80211: Connect (ifindex=3)
  * bssid_hint=72:a7:41:23:d4:f7
  * freq_hint=5180
  * SSID=mynet-Guest
  * IEs - hexdump(len=44): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 3b 14 73 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f 80 81 82
  * WPA Versions 0x2
  * pairwise=0xfac04
  * group=0xfac04
  * akm=0xfac02
  * PSK - hexdump(len=32): [REMOVED]
  * htcaps - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  * htcaps_mask - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  * vhtcaps - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
  * vhtcaps_mask - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
  * Auth Type 0
nl80211: Connect request send successfully
wlan0: Setting authentication timeout: 10 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: External notification - EAP fail=0
EAPOL: External notification - portControl=Auto
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/0
dbus: org.freedesktop.DBus.Properties.Get (/fi/w1/wpa_supplicant1/Interfaces/0) [ss]
properties_get_or_set: Get(BSSs)
RTM_NEWLINK: ifi_index=3 ifname=wlan0 wext ifi_family=0 ifi_flags=0x9003 ([UP])
dbus: org.freedesktop.DBus.Properties.GetAll (/fi/w1/wpa_supplicant1/Interfaces/0/Networks/1) [s]
RTM_NEWLINK: ifi_index=3 ifname=wlan0 operstate=2 linkmode=1 ifi_family=0 ifi_flags=0x9002 ()
nl80211: Interface down (wlan0/wlan0)
wlan0: Event INTERFACE_DISABLED (26) received
wlan0: Interface was disabled
wlan0: CTRL-EVENT-DISCONNECTED bssid=72:a7:41:23:d4:f7 reason=3 locally_generated=1
nl80211: Data frame filter flags=0x0
wlan0: State: ASSOCIATING -> DISCONNECTED
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
EAPOL: External notification - portEnabled=0
EAPOL: External notification - portValid=0
EAPOL: External notification - EAP success=0
wlan0: BSS: Remove id 82 BSSID ae:4c:a5:b5:98:b0 SSID '' due to wpa_bss_flush
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/82'
wlan0: BSS: Remove id 83 BSSID ae:4c:a5:b5:98:b2 SSID '' due to wpa_bss_flush
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/83'
Update BSS pointer for the pending connect radio work
wlan0: BSS: Remove id 84 BSSID 72:a7:41:23:d4:f7 SSID 'mynet-Guest' due to wpa_bss_flush
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/84'
wlan0: BSS: Remove id 85 BSSID 72:a7:41:13:d4:f7 SSID 'mynet' due to wpa_bss_flush
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/85'
wlan0: BSS: Remove id 86 BSSID 66:22:32:78:1a:48 SSID 'mynet' due to wpa_bss_flush
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/86'
wlan0: BSS: Remove id 87 BSSID 6a:22:32:78:1a:48 SSID 'mynet-Guest' due to wpa_bss_flush
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/87'
wlan0: BSS: Remove id 88 BSSID 60:22:32:78:1a:47 SSID 'mynet' due to wpa_bss_flush
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/88'
wlan0: BSS: Remove id 89 BSSID 66:22:32:78:1a:47 SSID 'mynet-Guest' due to wpa_bss_flush
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/89'
wlan0: BSS: Remove id 90 BSSID 72:a7:41:13:d4:f6 SSID 'mynet-Guest' due to wpa_bss_flush
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/90'
wlan0: BSS: Remove id 91 BSSID 70:a7:41:63:d4:f6 SSID 'mynet' due to wpa_bss_flush
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/91'
wlan0: Remove radio work 'connect'@0x19a20f8 (started)
wlan0: radio_work_free('connect'@0x19a20f8): num_active_works --> 0
wlan0: State: DISCONNECTED -> INTERFACE_DISABLED
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
RTM_NEWLINK: ifi_index=3 ifname=wlan0 wext ifi_family=0 ifi_flags=0x9002 ()
nl80211: Event message available
nl80211: Ignored event 48 (NL80211_CMD_DISCONNECT) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 48 (NL80211_CMD_DISCONNECT) received for wlan0
nl80211: Disconnect event
wlan0: Ignore event DEAUTH (11) while interface is disabled
l2_packet_receive - recvfrom: Network is down
l2_packet_receive - recvfrom: Network is down
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/0
nl80211: Event message available
nl80211: Drv Event 36 (NL80211_CMD_REG_CHANGE) received for p2p-dev-wlan0
nl80211: Regulatory domain change
 * initiator=0
 * type=1
p2p-dev-wlan0: Event CHANNEL_LIST_CHANGED (27) received
wlan0: CTRL-EVENT-REGDOM-CHANGE init=CORE type=WORLD
p2p-dev-wlan0: Updating hw mode
nl80211: Regulatory information - country=US (DFS-FCC)
nl80211: 902-904 @ 2 MHz 30 mBm
nl80211: 904-920 @ 16 MHz 30 mBm
nl80211: 920-928 @ 8 MHz 30 mBm
nl80211: 2400-2472 @ 40 MHz 30 mBm
nl80211: 5150-5250 @ 80 MHz 23 mBm
nl80211: 5250-5350 @ 80 MHz 24 mBm (DFS)
nl80211: 5470-5730 @ 160 MHz 24 mBm (DFS)
nl80211: 5730-5850 @ 80 MHz 30 mBm
nl80211: 5850-5895 @ 40 MHz 27 mBm (no outdoor) (no IR)
nl80211: 57240-71000 @ 2160 MHz 40 mBm
nl80211: Added 802.11b mode based on 802.11g information
nl80211: Mode IEEE 802.11g: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
nl80211: Mode IEEE 802.11a: 5170[DISABLED] 5180 5190[DISABLED] 5200 5210[DISABLED] 5220 5230[DISABLED] 5240 5260[NO_IR][RADAR] 5280[NO_IR][RADAR] 5300[NO_IR][RADAR] 5320[NO_IR][RADAR] 5500[NO_IR][RADAR] 5520[NO_IR][RADAR]
nl80211: Mode IEEE 802.11b: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
wlan0: Updating hw mode
nl80211: Regulatory information - country=US (DFS-FCC)
nl80211: 902-904 @ 2 MHz 30 mBm
nl80211: 904-920 @ 16 MHz 30 mBm
nl80211: 920-928 @ 8 MHz 30 mBm
nl80211: 2400-2472 @ 40 MHz 30 mBm
nl80211: 5150-5250 @ 80 MHz 23 mBm
nl80211: 5250-5350 @ 80 MHz 24 mBm (DFS)
nl80211: 5470-5730 @ 160 MHz 24 mBm (DFS)
nl80211: 5730-5850 @ 80 MHz 30 mBm
nl80211: 5850-5895 @ 40 MHz 27 mBm (no outdoor) (no IR)
nl80211: 57240-71000 @ 2160 MHz 40 mBm
nl80211: Added 802.11b mode based on 802.11g information
nl80211: Mode IEEE 802.11g: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
nl80211: Mode IEEE 802.11a: 5170[DISABLED] 5180 5190[DISABLED] 5200 5210[DISABLED] 5220 5230[DISABLED] 5240 5260[NO_IR][RADAR] 5280[NO_IR][RADAR] 5300[NO_IR][RADAR] 5320[NO_IR][RADAR] 5500[NO_IR][RADAR] 5520[NO_IR][RADAR]
nl80211: Mode IEEE 802.11b: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
p2p-dev-wlan0: Determining shared radio frequencies (max len 2)
p2p-dev-wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
nl80211: Event message available
nl80211: Drv Event 36 (NL80211_CMD_REG_CHANGE) received for p2p-dev-wlan0
nl80211: Regulatory domain change
 * initiator=1
 * type=0
 * alpha2=US
p2p-dev-wlan0: Event CHANNEL_LIST_CHANGED (27) received
wlan0: CTRL-EVENT-REGDOM-CHANGE init=USER type=COUNTRY alpha2=US
p2p-dev-wlan0: Updating hw mode
nl80211: Regulatory information - country=US (DFS-FCC)
nl80211: 902-904 @ 2 MHz 30 mBm
nl80211: 904-920 @ 16 MHz 30 mBm
nl80211: 920-928 @ 8 MHz 30 mBm
nl80211: 2400-2472 @ 40 MHz 30 mBm
nl80211: 5150-5250 @ 80 MHz 23 mBm
nl80211: 5250-5350 @ 80 MHz 24 mBm (DFS)
nl80211: 5470-5730 @ 160 MHz 24 mBm (DFS)
nl80211: 5730-5850 @ 80 MHz 30 mBm
nl80211: 5850-5895 @ 40 MHz 27 mBm (no outdoor) (no IR)
nl80211: 57240-71000 @ 2160 MHz 40 mBm
nl80211: Added 802.11b mode based on 802.11g information
nl80211: Mode IEEE 802.11g: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
nl80211: Mode IEEE 802.11a: 5170[DISABLED] 5180 5190[DISABLED] 5200 5210[DISABLED] 5220 5230[DISABLED] 5240 5260[NO_IR][RADAR] 5280[NO_IR][RADAR] 5300[NO_IR][RADAR] 5320[NO_IR][RADAR] 5500[NO_IR][RADAR] 5520[NO_IR][RADAR]
nl80211: Mode IEEE 802.11b: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
wlan0: Updating hw mode
nl80211: Regulatory information - country=US (DFS-FCC)
nl80211: 902-904 @ 2 MHz 30 mBm
nl80211: 904-920 @ 16 MHz 30 mBm
nl80211: 920-928 @ 8 MHz 30 mBm
nl80211: 2400-2472 @ 40 MHz 30 mBm
nl80211: 5150-5250 @ 80 MHz 23 mBm
nl80211: 5250-5350 @ 80 MHz 24 mBm (DFS)
nl80211: 5470-5730 @ 160 MHz 24 mBm (DFS)
nl80211: 5730-5850 @ 80 MHz 30 mBm
nl80211: 5850-5895 @ 40 MHz 27 mBm (no outdoor) (no IR)
nl80211: 57240-71000 @ 2160 MHz 40 mBm
nl80211: Added 802.11b mode based on 802.11g information
nl80211: Mode IEEE 802.11g: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
nl80211: Mode IEEE 802.11a: 5170[DISABLED] 5180 5190[DISABLED] 5200 5210[DISABLED] 5220 5230[DISABLED] 5240 5260[NO_IR][RADAR] 5280[NO_IR][RADAR] 5300[NO_IR][RADAR] 5320[NO_IR][RADAR] 5500[NO_IR][RADAR] 5520[NO_IR][RADAR]
nl80211: Mode IEEE 802.11b: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[DISABLED] 2472[DISABLED] 2484[DISABLED]
p2p-dev-wlan0: Determining shared radio frequencies (max len 2)
p2p-dev-wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
RTM_NEWLINK: ifi_index=3 ifname=wlan0 operstate=2 linkmode=1 ifi_family=0 ifi_flags=0x9003 ([UP])
nl80211: Interface up (wlan0/wlan0)
wlan0: Event INTERFACE_ENABLED (25) received
wlan0: Interface was enabled
wlan0: State: INTERFACE_DISABLED -> DISCONNECTED
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
wlan0: Setting scan request: 0.000000 sec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
wlan0: Starting AP scan for wildcard SSID
WPS: Building WPS IE for Probe Request
WPS:  * Version (hardcoded 0x10)
WPS:  * Request Type
WPS:  * Config Methods (280)
WPS:  * UUID-E
WPS:  * Primary Device Type
WPS:  * RF Bands (3)
WPS:  * Association State
WPS:  * Configuration Error (0)
WPS:  * Device Password ID (0)
WPS:  * Manufacturer
WPS:  * Model Name
WPS:  * Model Number
WPS:  * Device Name
WPS:  * Version2 (0x20)
P2P: * P2P IE header
P2P: * Capability dev=25 group=00
P2P: * Listen Channel: Regulatory Class 81 Channel 1
wlan0: Add radio work 'scan'@0x19aa728
wlan0: First radio work item in the queue - schedule start immediately
wlan0: Starting radio work 'scan'@0x19aa728 after 0.000057 second wait
Request driver to clear scan cache due to local BSS flush
wlan0: nl80211: scan request
nl80211: Scan SSID
nl80211: Scan extra IEs - hexdump(len=126): dd 69 00 50 f2 04 10 4a 00 01 10 10 3a 00 01 00 10 08 00 02 02 80 10 47 00 10 66 cf 87 ef f9 65 5c 7c 8e 90 e5 6d 60 f7 8c 1f 10 54 00 08 00 00 00 00 00 00 00 00 10 3c 00 01 03 10 02 00 02 00 00 10 09 00 02 00 00 10 12 00 02 00 00 10 21 00 01 20 10 23 00 01 20 10 24 00 01 20 10 11 00 01 20 10 49 00 06 00 37 2a 00 01 20 dd 11 50 6f 9a 09 02 02 00 25 00 06 05 00 55 53 04 51 01
nl80211: Add NL80211_SCAN_FLAG_FLUSH
Scan requested (ret=0) - scan timeout 30 seconds
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/0
nl80211: Event message available
nl80211: Ignored event 33 (NL80211_CMD_TRIGGER_SCAN) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
wlan0: nl80211: Scan trigger
wlan0: Event SCAN_STARTED (47) received
wlan0: Own scan request started a scan in 0.000412 seconds
nl80211: Event message available
nl80211: Ignored event 34 (NL80211_CMD_NEW_SCAN_RESULTS) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
wlan0: nl80211: New scan results available
nl80211: Scan probed for SSID ''
nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 5180 5200 5220 5240 5260 5280 5300 5320 5500 5520 5540 5560 5580 5600 5620 5640 5660 5680 5700 5720 5745 5765 5785 5805 5825
wlan0: Event SCAN_RESULTS (3) received
wlan0: Scan completed in 2.794446 seconds
nl80211: Received scan results (27 BSSes)
wlan0: BSS: Start scan result update 8
wlan0: BSS: Add new id 92 BSSID 72:a7:41:23:d4:f7 SSID 'mynet-Guest' freq 5180
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/92'
wlan0: BSS: Add new id 93 BSSID 72:a7:41:13:d4:f7 SSID 'mynet' freq 5180
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/93'
wlan0: BSS: Add new id 94 BSSID 72:a7:41:33:d4:f7 SSID '' freq 5180
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/94'
wlan0: BSS: Add new id 95 BSSID 72:a7:41:43:d4:f7 SSID '' freq 5180
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/95'
wlan0: BSS: Add new id 96 BSSID 66:22:32:78:1a:48 SSID 'mynet' freq 5745
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/96'
wlan0: BSS: Add new id 97 BSSID 6e:22:32:78:1a:48 SSID '' freq 5745
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/97'
wlan0: BSS: Add new id 98 BSSID 72:22:32:78:1a:48 SSID '' freq 5745
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/98'
wlan0: BSS: Add new id 99 BSSID 6a:22:32:78:1a:48 SSID 'mynet-Guest' freq 5745
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/99'
wlan0: BSS: Add new id 100 BSSID 34:60:f9:08:08:c3 SSID 'LauNation' freq 5240
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/100'
wlan0: BSS: Add new id 101 BSSID 34:60:f9:08:08:c2 SSID 'LauNation' freq 2437
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/101'
wlan0: BSS: Add new id 102 BSSID 60:22:32:78:1a:47 SSID 'mynet' freq 2462
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/102'
wlan0: BSS: Add new id 103 BSSID 66:22:32:78:1a:47 SSID 'mynet-Guest' freq 2462
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/103'
wlan0: BSS: Add new id 104 BSSID 6a:22:32:78:1a:47 SSID '' freq 2462
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/104'
wlan0: BSS: Add new id 105 BSSID ae:4c:a5:ae:98:b1 SSID '' freq 2462
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/105'
wlan0: BSS: Add new id 106 BSSID ae:4c:a5:ae:98:b5 SSID '' freq 2462
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/106'
wlan0: BSS: Add new id 107 BSSID ae:4c:a5:ae:98:b7 SSID '' freq 2462
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/107'
wlan0: BSS: Add new id 108 BSSID 72:a7:41:13:d4:f6 SSID 'mynet-Guest' freq 2412
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/108'
wlan0: BSS: Add new id 109 BSSID 70:a7:41:63:d4:f6 SSID 'mynet' freq 2412
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/109'
wlan0: BSS: Add new id 110 BSSID 3a:60:f9:08:08:c3 SSID 'LauNation_Guest' freq 5240
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/110'
wlan0: BSS: Add new id 111 BSSID 3e:60:f9:08:08:c3 SSID '' freq 5240
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/111'
wlan0: BSS: Add new id 112 BSSID 3a:60:f9:08:08:bf SSID 'LauNation_Guest' freq 5240
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/112'
wlan0: BSS: Add new id 113 BSSID 3e:60:f9:08:08:bf SSID '' freq 5240
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/113'
wlan0: BSS: Add new id 114 BSSID 34:60:f9:08:08:bf SSID 'LauNation' freq 5240
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/114'
wlan0: BSS: Add new id 115 BSSID 66:22:32:78:38:ca SSID 'mynet' freq 5200
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/115'
wlan0: BSS: Add new id 116 BSSID 6a:22:32:78:38:ca SSID 'mynet-Guest' freq 5200
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/116'
wlan0: BSS: Add new id 117 BSSID 6e:22:32:78:38:ca SSID '' freq 5200
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/117'
wlan0: BSS: Add new id 118 BSSID 70:a7:41:63:d4:f7 SSID '' freq 5180
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/0/BSSs/118'
BSS: last_scan_res_used=27/32
wlan0: New scan results available (own=1 ext=0)
WPS: AP 34:60:f9:08:08:c2 type 0 added
WPS: AP[0] 34:60:f9:08:08:c3 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
WPS: AP[1] 34:60:f9:08:08:bf type=0 tries=0 last_attempt=-1 sec ago blacklist=0
WPS: AP[2] 34:60:f9:08:08:c2 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
wlan0: Radio work 'scan'@0x19aa728 done in 2.837058 seconds
wlan0: radio_work_free('scan'@0x19aa728): num_active_works --> 0
wlan0: Selecting BSS from priority group 0
wlan0: 0: 72:a7:41:23:d4:f7 ssid='mynet-Guest' wpa_ie_len=0 rsn_ie_len=20 caps=0x111 level=-38 freq=5180
wlan0:    skip - SSID mismatch
wlan0:    selected based on RSN IE
wlan0:    selected BSS 72:a7:41:23:d4:f7 ssid='mynet-Guest'
wlan0: Considering connect request: reassociate: 0  selected: 72:a7:41:23:d4:f7  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid=0x197fc60  current_ssid=(nil)
wlan0: Request association with 72:a7:41:23:d4:f7
wlan0: Re-association to the same ESS
TDLS: TDLS is allowed in the target BSS
TDLS: TDLS channel switch allowed in the target BSS
wlan0: No ongoing scan/p2p-scan found to abort
wlan0: Add radio work 'connect'@0x19b0670
wlan0: First radio work item in the queue - schedule start immediately
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
p2p-dev-wlan0: Updating scan results from sibling
nl80211: Received scan results (27 BSSes)
p2p-dev-wlan0: BSS: Start scan result update 8
p2p-dev-wlan0: BSS: Add new id 39 BSSID 6e:22:32:78:1a:48 SSID '' freq 5745
p2p-dev-wlan0: BSS: Add new id 40 BSSID 72:22:32:78:1a:48 SSID '' freq 5745
p2p-dev-wlan0: BSS: Add new id 41 BSSID 34:60:f9:08:08:c3 SSID 'LauNation' freq 5240
p2p-dev-wlan0: BSS: Add new id 42 BSSID 34:60:f9:08:08:c2 SSID 'LauNation' freq 2437
p2p-dev-wlan0: BSS: Add new id 43 BSSID 6a:22:32:78:1a:47 SSID '' freq 2462
p2p-dev-wlan0: BSS: Add new id 44 BSSID ae:4c:a5:ae:98:b1 SSID '' freq 2462
p2p-dev-wlan0: BSS: Add new id 45 BSSID ae:4c:a5:ae:98:b5 SSID '' freq 2462
p2p-dev-wlan0: BSS: Add new id 46 BSSID ae:4c:a5:ae:98:b7 SSID '' freq 2462
p2p-dev-wlan0: BSS: Add new id 47 BSSID 3a:60:f9:08:08:c3 SSID 'LauNation_Guest' freq 5240
p2p-dev-wlan0: BSS: Add new id 48 BSSID 3e:60:f9:08:08:c3 SSID '' freq 5240
p2p-dev-wlan0: BSS: Add new id 49 BSSID 3a:60:f9:08:08:bf SSID 'LauNation_Guest' freq 5240
p2p-dev-wlan0: BSS: Add new id 50 BSSID 3e:60:f9:08:08:bf SSID '' freq 5240
p2p-dev-wlan0: BSS: Add new id 51 BSSID 34:60:f9:08:08:bf SSID 'LauNation' freq 5240
p2p-dev-wlan0: BSS: Add new id 52 BSSID 66:22:32:78:38:ca SSID 'mynet' freq 5200
p2p-dev-wlan0: BSS: Add new id 53 BSSID 6a:22:32:78:38:ca SSID 'mynet-Guest' freq 5200
p2p-dev-wlan0: BSS: Add new id 54 BSSID 6e:22:32:78:38:ca SSID '' freq 5200
p2p-dev-wlan0: BSS: Add new id 55 BSSID 70:a7:41:63:d4:f7 SSID '' freq 5180
p2p-dev-wlan0: BSS: Remove id 36 BSSID 3e:60:f9:08:08:c2 SSID '' due to no match in scan
BSS: last_scan_res_used=27/32
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/0
RTM_NEWLINK: ifi_index=3 ifname=wlan0 wext ifi_family=0 ifi_flags=0x9003 ([UP])
wlan0: Starting radio work 'connect'@0x19b0670 after 0.002069 second wait
wlan0: Trying to associate with SSID 'mynet-Guest'
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
RSN: PMKSA cache search - network_ctx=0x197fc60 try_opportunistic=0 akmp=0x0
RSN: Search for BSSID 72:a7:41:23:d4:f7
RSN: No PMKSA cache entry found
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 2 proto 2
wlan0: WPA: Selected mgmt group cipher 32
wlan0: WPA: clearing AP WPA IE
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 80 00
wlan0: WPA: AP group 0x10 network profile group 0x18; available group 0x10
wlan0: WPA: using GTK CCMP
wlan0: WPA: AP pairwise 0x10 network profile pairwise 0x18; available pairwise 0x10
wlan0: WPA: using PTK CCMP
wlan0: WPA: AP key_mgmt 0x2 network profile key_mgmt 0x3; available key_mgmt 0x2
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: AP mgmt_group_cipher 0x20 network profile mgmt_group_cipher 0x0; available mgmt_group_cipher 0x0
wlan0: WPA: not using MGMT group cipher
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 02 00 00
PSK (set in config) - hexdump(len=32): [REMOVED]
WPA: Set PMK based on external data - hexdump(len=32): [REMOVED]
wlan0: Automatic auth_alg selection: 0x1
Added supported operating classes IE - hexdump(len=22): 3b 14 73 51 53 54 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f 80 81 82
wlan0: State: SCANNING -> ASSOCIATING
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Add operating class 115
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 116
P2P: Channels - hexdump(len=2): 24 2c
P2P: Add operating class 117
P2P: Channels - hexdump(len=2): 28 30
P2P: Add operating class 124
P2P: Channels - hexdump(len=4): 95 99 9d a1
P2P: Add operating class 125
P2P: Channels - hexdump(len=5): 95 99 9d a1 a5
P2P: Add operating class 126
P2P: Channels - hexdump(len=2): 95 9d
P2P: Add operating class 127
P2P: Channels - hexdump(len=2): 99 a1
P2P: Add operating class 128
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Add operating class 130
P2P: Channels - hexdump(len=4): 24 28 2c 30
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11 115:36,40,44,48 116:36,44 117:40,48 124:149,153,157,161 125:149,153,157,161,165 126:149,157 127:153,161 128:36,40,44,48 130:36,40,44,48
P2P: cli_channels:
nl80211: Set mode ifindex 3 iftype 2 (STATION)
nl80211: Unsubscribe mgmt frames handle 0x8913eac1 (mode change)

I'm not a wpa_supplicant rocket scientist either, but here's what I'm seeing in the log. The Pi sees the following WiFi networks, but rejects them: mynet-Guest, mynet, both in 2.4 and 5.x frequencies. Neither of these match what it's looking for.

It then tries to connect with mynet-guest on BSS 72:a7:41:23:d4:f7 but the connect doesn't seem to proceed.

Then there's another scan and it sees LauNation and LauNation_Guest SSIDs as well as mynet and mynet-Guest. The connect atttempt to mynet-Guest proceeds, but then all of a sudden nl80211 reports "interface down".

The rest of the log looks like more of the same.

I don't have any great suggestions at this point other than trying further simplification. For instance, you said that you think this is related to a UDR update. If I were chasing this, I'd find another access point to connect your Pi to, to more solidly demonstrate that it's a UDR problem.
Pi tools:
Quickly and easily build customized exactly as-you-want SSDs/SD Cards: https://github.com/gitbls/sdm
Easily run and manage your network's DHCP/DNS servers on a Pi: https://github.com/gitbls/ndm
Easy and secure IPSEC/IKEV2 VPN installer/manager: https://github.com/gitbls/pistrong
Lightweight Virtual VNC Config: https://github.com/gitbls/RPiVNCHowTo

Return to “Troubleshooting”