Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[SOLVED] wpa_supplicant: no configuration found 4 current AP
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Networking & Security
View previous topic :: View next topic  
Author Message
NP_complete
Tux's lil' helper
Tux's lil' helper


Joined: 21 Mar 2009
Posts: 110

PostPosted: Wed Aug 27, 2014 12:30 am    Post subject: [SOLVED] wpa_supplicant: no configuration found 4 current AP Reply with quote

I'm using systemd. Trying to connect manually to an UNSECURED WLAN, to no avail. "reason=3" means something is messed up on my end, but I can't figure out what. The command is
Quote:
$ iw dev wlp3s0 connect <name>
and the wpa_supplicant.log says
Quote:
Successfully initialized wpa_supplicant
wlp3s0: No network configuration found for the current AP
wlp3s0: CTRL-EVENT-DISCONNECTED bssid=88:dc:96:03:5b:28 reason=3 locally_generated=1
The kernel says:
Quote:
[ 799.221237] wlp3s0: authenticate with 88:dc:96:03:5b:28
[ 799.222218] wlp3s0: send auth to 88:dc:96:03:5b:28 (try 1/3)
[ 799.222485] iw (330) used greatest stack depth: 3440 bytes left
[ 799.448774] iwlwifi 0000:03:00.0: No association and the time event is over already...
[ 799.449128] wlp3s0: Connection to AP 88:dc:96:03:5b:28 lost
[ 801.622309] wlp3s0: authenticated
[ 801.623528] wlp3s0: associate with 88:dc:96:03:5b:28 (try 1/3)
[ 801.629812] wlp3s0: RX AssocResp from 88:dc:96:03:5b:28 (capab=0x401 status=0 aid=5)
[ 801.634424] wlp3s0: associated
[ 801.634899] wlp3s0: deauthenticating from 88:dc:96:03:5b:28 by local choice (reason=3)
[ 801.636289] iwlwifi 0000:03:00.0: Drained sta 1, but it is internal?
[ 801.638032] cfg80211: Calling CRDA to update world regulatory domain
[ 801.639964] cfg80211: World regulatory domain updated:
[ 801.640338] cfg80211: DFS Master region: unset
wpa_configuration.service:
Quote:
[Unit]Description=WPA supplicant

[Service]
Type=dbus
BusName=fi.epitest.hostap.WPASupplicant
ExecStart=/usr/sbin/wpa_supplicant -c/etc/wpa_supplicant/wpa_supplicant.conf -f /var/log/wpa_supplicant.log -u

[Install]
WantedBy=multi-user.target
Alias=dbus-fi.epitest.hostap.WPASupplicant.service
wpa_supplicant.conf:
Quote:
# Allow users in the 'wheel' group to control wpa_supplicant
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=wheel

# Allow user-made changes to be saved (e.g. add networks)
update_config=1

ap_scan=1

network={
key_mgmt=NONE
priority=-999
}
Why, for life, would it authenticate and immediately deauthenticate???

Many thanks.


Last edited by NP_complete on Sun Oct 19, 2014 11:00 am; edited 1 time in total
Back to top
View user's profile Send private message
mir3x
Guru
Guru


Joined: 02 Jun 2012
Posts: 455

PostPosted: Wed Aug 27, 2014 8:03 am    Post subject: Reply with quote

Because u cannot use wpa_supplicant and connect using iw probably.
Either configure that network in wpa_supplicant.conf
and connect via wpa_supplicant or disable wpa_supplicant and connect via iw or iwconfig.

ANyway your wpa_supplicant.conf is incorrect too.
(in wpa_supplicant add ssid="NETWORK_NAME" )
_________________
Sent from Windows
Back to top
View user's profile Send private message
NP_complete
Tux's lil' helper
Tux's lil' helper


Joined: 21 Mar 2009
Posts: 110

PostPosted: Wed Aug 27, 2014 4:51 pm    Post subject: Reply with quote

mir3x,

I used iw to connect because the connection doesn't happen automatically. That's how I did troubleshooting. I'm having a really really hard time getting used to SYSTEMD, and I have little choice: Gnome-3.12 requires it.

I added an appropriate ssid as you suggested, but that didn't change much. My laptop doesn't connect to WLAN automatically, and the wpa_supplicant doesn't show any errors. All it says is: "Successfully initialized wpa_supplicant". If somebody with systemd expertise could help step by step, that would be awesome. There gotta be a way to get to the bottom of this!

Many thanks.
Back to top
View user's profile Send private message
mole
Tux's lil' helper
Tux's lil' helper


Joined: 07 Nov 2009
Posts: 81

PostPosted: Wed Aug 27, 2014 7:20 pm    Post subject: Reply with quote

Have you tried starting wpa_supplicant from the command line? My wifi connects with
Code:
/usr/sbin/wpa_supplicant -c /etc/wpa_supplicant/wpa_supplicant.conf -W -B -i wlan0 -P /var/run/wpa_supplicant-wlan0.pid


after loading the modules

and /etc/wpa_supplicant/wpa_supplicant.conf containing
Code:

ctrl_interface=/var/run/wpa_supplicant
network={
        ssid="SOME_PUBLIC_SSID"
        key_mgmt=NONE
        }


Then setting DNS and route information. If that doesn't work it's maybe not a systemd issue.....??
Back to top
View user's profile Send private message
NP_complete
Tux's lil' helper
Tux's lil' helper


Joined: 21 Mar 2009
Posts: 110

PostPosted: Wed Aug 27, 2014 9:21 pm    Post subject: Reply with quote

mole,

1. How do I specify DNS and routing info? If it's through /etc/resolv.conf, then this file gets overwritten by dhcpcd and ends up empty. (It only contains comments). resolv.conf is supposed to be handled by Gnome's NetworkManager, not dhcpcd. Am I right?

2. I don't know if there is an easy way to start wpa_supplicant from the command line: it is automatically started by something else. (Gnome Network Manager maybe?) So when I do
Quote:
systemctl stop wpa_supplicant
and then
Quote:
systemctl status wpa_supplicant
wpa_supplicant is shown as active. The invocation command, in my case, is
Quote:
/usr/sbin/wpa_supplicant -c/etc/wpa_supplicant/wpa_supplicant.conf -f/var/log/wpa_supplicant.log -u
which comes from wpa_supplicant.service.

3. Most likely, the problem is NOT in systemd. It's that systemd does things differently, and I can't get myself unstuck because of that.

Again, step by step instructions will really help.
Back to top
View user's profile Send private message
mole
Tux's lil' helper
Tux's lil' helper


Joined: 07 Nov 2009
Posts: 81

PostPosted: Wed Aug 27, 2014 11:38 pm    Post subject: Reply with quote

NP_complete wrote:
mole,

1. How do I specify DNS and routing info? If it's through /etc/resolv.conf, then this file gets overwritten by dhcpcd and ends up empty. (It only contains comments). resolv.conf is supposed to be handled by Gnome's NetworkManager, not dhcpcd. Am I right?
I wouldn't worry about that until the card/stick gets an IP address, you can overwrite /etc/resolv.conf and set route(s) after then if you need to.

NP_complete wrote:
2. I don't know if there is an easy way to start wpa_supplicant from the command line: it is automatically started by something else. (Gnome Network Manager maybe?) So when I do
Quote:
systemctl stop wpa_supplicant
and then
Quote:
systemctl status wpa_supplicant
wpa_supplicant is shown as active. The invocation command, in my case, is
Quote:
/usr/sbin/wpa_supplicant -c/etc/wpa_supplicant/wpa_supplicant.conf -f/var/log/wpa_supplicant.log -u
which comes from wpa_supplicant.service.


If wpa_supplicant is starting automatically, the next step may be to check the correct modules are being loaded, and if there's any firmware which you need to download and copy into /lib/firmware. Have you had this card/stick working before on another network?

NP_complete wrote:
Again, step by step instructions will really help.


I guess step by step would be:

1 Check you have the latest modules and firmware required, depending on which card you have
2 Make sure /etc/wpa_supplicant/wpa_supplicant.conf is correctly written, with the SSID in quotes as shown - should that DIR= be in the top line...?
3 In a root console, enter
Code:
ls -l /sys/class/net
to check the interface is still named wlp3s0
4 Start dhcpcd
5 Make sure modules for the wireless card / stick are loaded
Code:
lsmod

6 Kill any running instances of wpa_supplicant
Code:
ps aux|grep wpa
Code:
kill -9 <PIDS of wpa>

6 As root, enter (on one line) - assuming it's still wlp3s0
Code:
 /usr/sbin/wpa_supplicant -c /etc/wpa_supplicant/wpa_supplicant.conf -W -B -i wlp3s0 -P /var/run/wpa_supplicant-wlp3s0.pid

7 Check to see if you have an ip address, ifconfig will also show the number of sent and received packets

Getting late now, hope that makes sense and is some use.... my money would be on problems with modules/firmware or wpa_supplicant.conf FWIW
Back to top
View user's profile Send private message
NP_complete
Tux's lil' helper
Tux's lil' helper


Joined: 21 Mar 2009
Posts: 110

PostPosted: Sat Aug 30, 2014 6:33 pm    Post subject: Reply with quote

Can you please post your NetworkManager.service file?

I've done more troubleshooting. Everything goes well when NetworkManager is off. I first start WPA Supplicant, then DHCPCD, then use 'iw' to connect, and things "just work", so my DHCPCD config is probably ok (although its syntax does seem strange, I admit). Now the NeworkManager kicks in (which I need for Gnome), and things immediately get violent. After some Google'ing, I found that (please correct if this is not true and/or outdated):

1. NeworkManager and DHCPCD have a fistfight when running side by side.
2. The latter must NOT be run independently but be activated by the NM.

So, I deactivated all the three and manually started NM. It automatically started WPA Supplicant but not DHCPCD. And this is where I started getting the same errors I mentioned in the original post. I guess, I'm back to square 1, but at least I've verified that the problem is caused by neither the hardware support in the kernel nor a bogus wpa_supplicant.conf file. This also made me wonder if my NetworkManager conf (which I never touched) is bad. Or maybe it doesn't use DHCPCD anymore? But then why is it complied with that USE flag?

My NetworkManager.service file contains NO reference to DHCPCD:
Quote:
[Unit]
Description=Network Manager
Wants=network.target
Before=network.target

[Service]
Type=dbus
BusName=org.freedesktop.NetworkManager
ExecStart=/usr/sbin/NetworkManager --no-daemon
# Suppress stderr to eliminate duplicated messages in syslog. NM calls openlog()
# with LOG_PERROR when run in foreground. But systemd redirects stderr to
# syslog by default, which results in logging each message twice.
StandardError=null
# NM doesn't want systemd to kill its children for it
KillMode=process

[Install]
WantedBy=multi-user.target
Alias=dbus-org.freedesktop.NetworkManager.service
Also=NetworkManager-dispatcher.service
Back to top
View user's profile Send private message
snum
n00b
n00b


Joined: 16 Jun 2012
Posts: 43

PostPosted: Mon Sep 01, 2014 4:32 pm    Post subject: Re: wpa_supplicant: no configuration found for current AP Reply with quote

Hi!

Do you test WiFi from other laptops/computers?

Do you have desktop environment on laptop(gnome,kde or others), networkmanager?

Thanks.


NP_complete wrote:
I'm using systemd. Trying to connect manually to an UNSECURED WLAN, to no avail. "reason=3" means something is messed up on my end, but I can't figure out what. The command is
Quote:
$ iw dev wlp3s0 connect <name>
and the wpa_supplicant.log says
Quote:
Successfully initialized wpa_supplicant
wlp3s0: No network configuration found for the current AP
wlp3s0: CTRL-EVENT-DISCONNECTED bssid=88:dc:96:03:5b:28 reason=3 locally_generated=1
The kernel says:
Quote:
[ 799.221237] wlp3s0: authenticate with 88:dc:96:03:5b:28
[ 799.222218] wlp3s0: send auth to 88:dc:96:03:5b:28 (try 1/3)
[ 799.222485] iw (330) used greatest stack depth: 3440 bytes left
[ 799.448774] iwlwifi 0000:03:00.0: No association and the time event is over already...
[ 799.449128] wlp3s0: Connection to AP 88:dc:96:03:5b:28 lost
[ 801.622309] wlp3s0: authenticated
[ 801.623528] wlp3s0: associate with 88:dc:96:03:5b:28 (try 1/3)
[ 801.629812] wlp3s0: RX AssocResp from 88:dc:96:03:5b:28 (capab=0x401 status=0 aid=5)
[ 801.634424] wlp3s0: associated
[ 801.634899] wlp3s0: deauthenticating from 88:dc:96:03:5b:28 by local choice (reason=3)
[ 801.636289] iwlwifi 0000:03:00.0: Drained sta 1, but it is internal?
[ 801.638032] cfg80211: Calling CRDA to update world regulatory domain
[ 801.639964] cfg80211: World regulatory domain updated:
[ 801.640338] cfg80211: DFS Master region: unset
wpa_configuration.service:
Quote:
[Unit]Description=WPA supplicant

[Service]
Type=dbus
BusName=fi.epitest.hostap.WPASupplicant
ExecStart=/usr/sbin/wpa_supplicant -c/etc/wpa_supplicant/wpa_supplicant.conf -f /var/log/wpa_supplicant.log -u

[Install]
WantedBy=multi-user.target
Alias=dbus-fi.epitest.hostap.WPASupplicant.service
wpa_supplicant.conf:
Quote:
# Allow users in the 'wheel' group to control wpa_supplicant
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=wheel

# Allow user-made changes to be saved (e.g. add networks)
update_config=1

ap_scan=1

network={
key_mgmt=NONE
priority=-999
}
Why, for life, would it authenticate and immediately deauthenticate???

Many thanks.
Back to top
View user's profile Send private message
NP_complete
Tux's lil' helper
Tux's lil' helper


Joined: 21 Mar 2009
Posts: 110

PostPosted: Mon Sep 01, 2014 7:40 pm    Post subject: Reply with quote

Snum, the WiFi I'm using to install Gentoo is perfectly functional: it works with the other laptop I have. I unfortunately do not have a wired Internet access. For your second question, I'm trying to set up the Gnome-3.12/Systemd combo on a laptop, and, yes, I am having trouble with the NetworkManager (see above) Gnome-3 requires.

Many thanks.
Back to top
View user's profile Send private message
mir3x
Guru
Guru


Joined: 02 Jun 2012
Posts: 455

PostPosted: Mon Sep 01, 2014 8:42 pm    Post subject: Reply with quote

I dont use systemd - but I check sometimes what changed there, and in 216 there was something about systemd::dhcp not broadcasting by default ? maybe u have also systemd-network enabled fighting for net too? or maybe u have to enable it ? or maybe enable broadcasting in 216 ?

And there was some post about gnome-3.12 without systemd some time ago ... some kung-fu with some flags and I guess it worked, but I didnt read to end.
_________________
Sent from Windows
Back to top
View user's profile Send private message
NP_complete
Tux's lil' helper
Tux's lil' helper


Joined: 21 Mar 2009
Posts: 110

PostPosted: Tue Sep 02, 2014 8:40 am    Post subject: Reply with quote

mir3x, you mean port 216? If at all possible, can you send the link(s)?

I did try to set up Gnome 3.12 with OpenRC, but was told this is not recommended because not envisioned by the upstream devs. Of course, I would MUCH MUCH rather do business with OpenRC.

Calling all Gnome-3+Systemd+NetworkManager+dhcpcd experts. Please help. Any step by step guidance will be appreciated. Everything works without the NM, but I need the NM for Gnome. Being new to Systemd, I'm almost positive I overlooked something silly like a config file of some sort. The solution gotta be trivial.

Many thanks.
Back to top
View user's profile Send private message
mir3x
Guru
Guru


Joined: 02 Jun 2012
Posts: 455

PostPosted: Tue Sep 02, 2014 9:05 am    Post subject: Reply with quote

I dont know how to call it - just systemd version 216
google systemd what's new -> http://cgit.freedesktop.org/systemd/systemd/tree/NEWS

shortly: systemd-networkd's DHCP client will no longer request
broadcasting by default, as this tripped up some networks.
For hardware where broadcast is required the feature should
be switched back on using RequestBroadcast=yes.

( thats a total mystery for me, so now most systems will need to add RequestBroadcast=yes ?? instead few to add RequestBroadcast=no )

but check page, there is a more changes to dhcp... if u upgrading systemd u have to go read whats changed first I guess.
_________________
Sent from Windows
Back to top
View user's profile Send private message
snum
n00b
n00b


Joined: 16 Jun 2012
Posts: 43

PostPosted: Wed Sep 03, 2014 10:44 am    Post subject: Reply with quote

NP_complete wrote:
Snum, the WiFi I'm using to install Gentoo is perfectly functional: it works with the other laptop I have. I unfortunately do not have a wired Internet access. For your second question, I'm trying to set up the Gnome-3.12/Systemd combo on a laptop, and, yes, I am having trouble with the NetworkManager (see above) Gnome-3 requires.

Many thanks.


Please check
1. Setup USE
File/etc/portage/make.conf
USE="... networkmanager..."
if needs, update world

2. Check driver for wi-fi card
select driver for wifi card in kernel*(Networking support/Wireless) or install from portage

3. install networkmanager with USE="wifi"

4. Reboot your system

5. Go to All settings/Network and setup wifi connection.

P.s.: you do not have a wired Internet access. why do you need dhcp?
Back to top
View user's profile Send private message
mir3x
Guru
Guru


Joined: 02 Jun 2012
Posts: 455

PostPosted: Wed Sep 03, 2014 1:58 pm    Post subject: Reply with quote

Check if u have enabled dhcpcd@wlp3s0.service, if yes, disable it and problem solved
_________________
Sent from Windows
Back to top
View user's profile Send private message
NP_complete
Tux's lil' helper
Tux's lil' helper


Joined: 21 Mar 2009
Posts: 110

PostPosted: Wed Sep 03, 2014 9:16 pm    Post subject: Reply with quote

EDIT (10/19/2014): SOLVED. The config file was erroneous (missing network name), and no network interface (wlp3s0, in my particular case) was indicated via -i option.

************************

EDIT (9/9/2014): this topic is now being discussed at https://bugzilla.gnome.org/show_bug.cgi?id=736206

************************

Thx for help, guys.

1. The NM is already built with dhcp,systemd,wext,wifi USE flags.
2. I added networkmanager as a USE flag into make.conf and rebuilt (emerge --deep --newuse @world), but nothing changed.
3. I do use DHCPCD, not because I have a wired connection (I DON'T; I depend 100% on WiFi), but because that's how I access WiFi, since NetworkManager doesn't work.
4. I run DHCPCD as a normal daemon, not as dhcpcd@wlp3s0.service, and never mix it with NM.

The WPA_Supplicant log is below. (Pardon the length). It finds the correct network and blacklists it! So, my biggest question is: how come WPA Supp succeeds with DHCPCD and fails with NM under the same configuration??

wpa_supplicant.service:

Quote:
wpa_supplicant v2.0
random: Trying to read entropy from /dev/random
dbus: Register D-Bus object '/fi/w1/wpa_supplicant1'
Providing DBus service 'fi.w1.wpa_supplicant1'.
Providing DBus service 'fi.epitest.hostap.WPASupplicant'.
Successfully initialized wpa_supplicant
random: Got 20/20 bytes from /dev/random
Initializing interface 'wlp3s0' conf 'N/A' driver 'nl80211,wext' ctrl_interface 'N/A' bridge 'N/A'
nl80211: interface wlp3s0 in phy phy0
rfkill: initial event: idx=0 type=1 op=0 soft=0 hard=0
nl80211: Set mode ifindex 4 iftype 2 (STATION)
nl80211: Subscribe to mgmt frames with non-AP handle 0x25dfd90
nl80211: Register frame type=0xd0 nl_handle=0x25dfd90
nl80211: Register frame match - hexdump(len=1): 06
nl80211: Register frame type=0xd0 nl_handle=0x25dfd90
nl80211: Register frame match - hexdump(len=2): 0a 07
nl80211: Register frame type=0xd0 nl_handle=0x25dfd90
nl80211: Register frame match - hexdump(len=2): 0a 11
netlink: Operstate: linkmode=1, operstate=5
nl80211: Using driver-based off-channel TX
nl80211: Use separate P2P group interface (driver advertised support)
nl80211: driver param='(null)'
nl80211: Regulatory information - country=00
nl80211: 2402-2472 @ 40 MHz
nl80211: 2457-2482 @ 40 MHz
nl80211: 2474-2494 @ 20 MHz
nl80211: 5170-5250 @ 160 MHz
nl80211: 5250-5330 @ 160 MHz
nl80211: 5490-5730 @ 160 MHz
nl80211: Added 802.11b mode based on 802.11g information
wlp3s0: Own MAC address: a0:a8:cd:b0:a3:15
wpa_driver_nl80211_set_key: ifindex=4 alg=0 addr=(nil) key_idx=0 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=4 alg=0 addr=(nil) key_idx=1 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=4 alg=0 addr=(nil) key_idx=2 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=4 alg=0 addr=(nil) key_idx=3 set_tx=0 seq_len=0 key_len=0
wlp3s0: RSN: flushing PMKID list in the driver
nl80211: Flush PMKIDs
wlp3s0: State: DISCONNECTED -> INACTIVE
EAPOL: SUPP_PAE entering state DISCONNECTED
EAPOL: Supplicant port status: Unauthorized
EAPOL: KEY_RX entering state NO_KEY_RECEIVE
EAPOL: SUPP_BE entering state INITIALIZE
EAP: EAP entering state DISABLED
EAPOL: Supplicant port status: Unauthorized
EAPOL: Supplicant port status: Unauthorized
dbus: Register interface object '/fi/w1/wpa_supplicant1/Interfaces/1'
wlp3s0: Added interface wlp3s0
wlp3s0: State: INACTIVE -> DISCONNECTED
wpa_driver_nl80211_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
nl80211: Ignore event for foreign ifindex 3
Scan requested (ret=0) - scan timeout 10 seconds
nl80211: Scan trigger failed: ret=-16 (Device or resource busy)
nl80211: Event message available
nl80211: Scan trigger
EAPOL: disable timer tick
EAPOL: Supplicant port status: Unauthorized
nl80211: Event message available
nl80211: New scan results available
wlp3s0: Event SCAN_RESULTS (3) received
nl80211: Received scan results (14 BSSes)
wlp3s0: BSS: Start scan result update 1
wlp3s0: BSS: Add new id 0 BSSID 00:21:91:14:5e:8d SSID 'Office1'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/0'
wlp3s0: BSS: Add new id 1 BSSID 00:c0:02:6b:90:6f SSID 'Office2'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/1'
wlp3s0: BSS: Add new id 2 BSSID 88:dc:96:03:5b:28 SSID 'Office3'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/2'
wlp3s0: BSS: Add new id 3 BSSID 00:23:05:2c:d8:0e SSID 'xfinitywifi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/3'
wlp3s0: BSS: Add new id 4 BSSID 00:23:05:2c:d8:00 SSID 'optimumwifi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/4'
wlp3s0: BSS: Add new id 5 BSSID 00:23:05:2c:d8:02 SSID 'TWCWiFi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/5'
wlp3s0: BSS: Add new id 6 BSSID 00:23:05:2c:d8:01 SSID 'xfinitywifi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/6'
wlp3s0: BSS: Add new id 7 BSSID 00:23:05:2c:d8:03 SSID 'CableWiFi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/7'
wlp3s0: BSS: Add new id 8 BSSID b4:e9:b0:c6:ce:e1 SSID 'xfinitywifi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/8'
wlp3s0: BSS: Add new id 9 BSSID b4:e9:b0:c6:ce:e2 SSID 'TWCWiFi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/9'
wlp3s0: BSS: Add new id 10 BSSID b4:e9:b0:c6:ce:e0 SSID 'optimumwifi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/10'
wlp3s0: BSS: Add new id 11 BSSID b4:e9:b0:c6:ce:e3 SSID 'CableWiFi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/11'
wlp3s0: BSS: Add new id 12 BSSID b4:e9:b0:16:35:e3 SSID 'CableWiFi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/12'
wlp3s0: BSS: Add new id 13 BSSID 00:c0:02:6b:90:21 SSID 'Office2'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/13'
BSS: last_scan_res_used=14/32 last_scan_full=0
wlp3s0: New scan results available
wlp3s0: No suitable network found
wlp3s0: Short-circuit new scan request since there are no enabled networks
wlp3s0: State: DISCONNECTED -> INACTIVE
wlp3s0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
Scan requested (ret=0) - scan timeout 30 seconds
nl80211: Event message available
nl80211: Scan trigger
nl80211: Event message available
nl80211: New scan results available
wlp3s0: Event SCAN_RESULTS (3) received
nl80211: Received scan results (20 BSSes)
wlp3s0: BSS: Start scan result update 2
wlp3s0: BSS: Add new id 14 BSSID 00:11:45:02:3b:4f SSID 'SAP0057'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/14'
wlp3s0: BSS: Add new id 15 BSSID 00:23:05:2c:d8:0c SSID 'CableWiFi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/15'
wlp3s0: BSS: Add new id 16 BSSID 00:c0:02:6b:8f:a5 SSID 'Office2'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/16'
wlp3s0: BSS: Add new id 17 BSSID 00:c0:02:6b:8f:11 SSID 'Office2'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/17'
wlp3s0: BSS: Add new id 18 BSSID b4:e9:b0:16:f3:40 SSID 'optimumwifi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/18'
wlp3s0: BSS: Add new id 19 BSSID b4:e9:b0:16:35:e0 SSID 'optimumwifi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/19'
BSS: last_scan_res_used=20/32 last_scan_full=0
wlp3s0: New scan results available
wlp3s0: No suitable network found
wlp3s0: Short-circuit new scan request since there are no enabled networks
wlp3s0: State: INACTIVE -> INACTIVE
wlp3s0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/1
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/2
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/5
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/9
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/8
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/11
Scan requested (ret=0) - scan timeout 30 seconds
nl80211: Event message available
nl80211: Scan trigger
nl80211: Event message available
nl80211: New scan results available
wlp3s0: Event SCAN_RESULTS (3) received
nl80211: Received scan results (13 BSSes)
wlp3s0: BSS: Start scan result update 3
wlp3s0: BSS: Add new id 20 BSSID b4:e9:b0:16:f3:43 SSID 'CableWiFi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/20'
wlp3s0: BSS: Add new id 21 BSSID 64:16:8d:2f:cc:00 SSID 'optimumwifi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/21'
BSS: last_scan_res_used=13/32 last_scan_full=0
wlp3s0: New scan results available
wlp3s0: No suitable network found
wlp3s0: Short-circuit new scan request since there are no enabled networks
wlp3s0: State: INACTIVE -> INACTIVE
wlp3s0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/0
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/14
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/2
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/1
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/15
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/11
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/9
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/8
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/10
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/16
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/12
Scan requested (ret=0) - scan timeout 30 seconds
nl80211: Event message available
nl80211: Scan trigger
nl80211: Event message available
nl80211: New scan results available
wlp3s0: Event SCAN_RESULTS (3) received
nl80211: Received scan results (13 BSSes)
wlp3s0: BSS: Start scan result update 4
wlp3s0: BSS: Add new id 22 BSSID 00:23:05:2c:d8:0d SSID 'TWCWiFi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/22'
wlp3s0: BSS: Add new id 23 BSSID b4:e9:b0:16:f3:41 SSID 'xfinitywifi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/23'
wlp3s0: BSS: Add new id 24 BSSID b4:e9:b0:16:35:e1 SSID 'xfinitywifi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/24'
wlp3s0: BSS: Remove id 3 BSSID 00:23:05:2c:d8:0e SSID 'xfinitywifi' due to no match in scan
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/3'
wlp3s0: BSS: Remove id 5 BSSID 00:23:05:2c:d8:02 SSID 'TWCWiFi' due to no match in scan
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/5'
wlp3s0: BSS: Remove id 4 BSSID 00:23:05:2c:d8:00 SSID 'optimumwifi' due to no match in scan
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/4'
wlp3s0: BSS: Remove id 6 BSSID 00:23:05:2c:d8:01 SSID 'xfinitywifi' due to no match in scan
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/6'
wlp3s0: BSS: Remove id 17 BSSID 00:c0:02:6b:8f:11 SSID 'Office2' due to no match in scan
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/17'
wlp3s0: BSS: Remove id 18 BSSID b4:e9:b0:16:f3:40 SSID 'optimumwifi' due to no match in scan
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/18'
wlp3s0: BSS: Remove id 19 BSSID b4:e9:b0:16:35:e0 SSID 'optimumwifi' due to no match in scan
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/19'
wlp3s0: BSS: Remove id 13 BSSID 00:c0:02:6b:90:21 SSID 'Office2' due to no match in scan
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/13'
BSS: last_scan_res_used=13/32 last_scan_full=0
wlp3s0: New scan results available
wlp3s0: No suitable network found
wlp3s0: Short-circuit new scan request since there are no enabled networks
wlp3s0: State: INACTIVE -> INACTIVE
wlp3s0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/0
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/14
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/1
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/7
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/9
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/8
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/10
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/11
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/16
nl80211: Event message available
nl80211: New station 88:dc:96:03:5b:28
nl80211: Event message available
nl80211: MLME event 37
nl80211: Authenticate event
wlp3s0: Event AUTH (11) received
wlp3s0: SME: Ignore authentication event when network is not selected
RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp3s0' added
nl80211: if_removed already cleared - ignore event
nl80211: Event message available
nl80211: MLME event 38
nl80211: Associate event
wlp3s0: Event ASSOC (0) received
wlp3s0: Association info event
resp_ies - hexdump(len=162): 01 08 82 84 8b 96 0c 12 18 24 32 04 30 48 60 6c dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 2d 1a 6e 18 1a ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 3d 16 0b 07 13 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 dd 1e 00 90 4c 33 6e 18 1a ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 dd 1a 00 90 4c 34 0b 07 13 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 dd 06 00 e0 4c 02 01 60
wlp3s0: State: INACTIVE -> ASSOCIATED
wpa_driver_nl80211_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
wlp3s0: Associated to a new BSS: BSSID=88:dc:96:03:5b:28
wlp3s0: No keys have been configured - skip key clearing
wlp3s0: Select network based on association information
wlp3s0: No network configuration found for the current AP
wlp3s0: Request to deauthenticate - bssid=88:dc:96:03:5b:28 pending_bssid=00:00:00:00:00:00 reason=3 state=ASSOCIATED
wpa_driver_nl80211_deauthenticate(addr=88:dc:96:03:5b:28 reason_code=3)
wlp3s0: Event DEAUTH (12) received
wlp3s0: Deauthentication notification
wlp3s0: * reason 3 (locally generated)
Deauthentication frame IE(s) - hexdump(len=0): [NULL]
wlp3s0: CTRL-EVENT-DISCONNECTED bssid=88:dc:96:03:5b:28 reason=3 locally_generated=1
wlp3s0: Auto connect enabled: try to reconnect (wps=0 wpa_state=6)
wlp3s0: Setting scan request: 0 sec 100000 usec
Added BSSID 88:dc:96:03:5b:28 into blacklist
wlp3s0: Blacklist count 1 --> request scan in 100 ms
wlp3s0: Setting scan request: 0 sec 100000 usec
wlp3s0: Disconnect event - remove keys
wpa_driver_nl80211_set_key: ifindex=4 alg=0 addr=(nil) key_idx=0 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=4 alg=0 addr=(nil) key_idx=1 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=4 alg=0 addr=(nil) key_idx=2 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=4 alg=0 addr=(nil) key_idx=3 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=4 alg=0 addr=0x25e3430 key_idx=0 set_tx=0 seq_len=0 key_len=0
addr=88:dc:96:03:5b:28
wlp3s0: State: ASSOCIATED -> DISCONNECTED
wpa_driver_nl80211_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
EAPOL: External notification - portEnabled=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portValid=0
EAPOL: Supplicant port status: Unauthorized
wlp3s0: No keys have been configured - skip key clearing
wlp3s0: State: DISCONNECTED -> DISCONNECTED
wpa_driver_nl80211_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
EAPOL: External notification - portEnabled=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portValid=0
EAPOL: Supplicant port status: Unauthorized
nl80211: Event message available
nl80211: Ignore connect event (cmd=46) when using userspace SME
nl80211: Event message available
nl80211: Delete station 88:dc:96:03:5b:28
nl80211: Event message available
nl80211: MLME event 39
nl80211: Deauthenticate event
wlp3s0: Event DEAUTH (12) received
wlp3s0: Deauthentication notification
wlp3s0: * reason 3 (locally generated)
wlp3s0: * address 88:dc:96:03:5b:28
Deauthentication frame IE(s) - hexdump(len=0): [NULL]
wlp3s0: Auto connect enabled: try to reconnect (wps=0 wpa_state=0)
wlp3s0: Do not request new immediate scan
wlp3s0: Disconnect event - remove keys
wpa_driver_nl80211_set_key: ifindex=4 alg=0 addr=(nil) key_idx=0 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=4 alg=0 addr=(nil) key_idx=1 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=4 alg=0 addr=(nil) key_idx=2 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=4 alg=0 addr=(nil) key_idx=3 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=4 alg=0 addr=0x25e3430 key_idx=0 set_tx=0 seq_len=0 key_len=0
addr=00:00:00:00:00:00
wlp3s0: State: DISCONNECTED -> DISCONNECTED
wpa_driver_nl80211_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
EAPOL: External notification - portEnabled=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portValid=0
EAPOL: Supplicant port status: Unauthorized
nl80211: Event message available
nl80211: Ignore disconnect event when using userspace SME
wlp3s0: State: DISCONNECTED -> SCANNING
wlp3s0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
nl80211: Event message available
nl80211: Scan trigger
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
nl80211: Event message available
nl80211: Regulatory domain change
wlp3s0: Event CHANNEL_LIST_CHANGED (31) received
nl80211: Regulatory information - country=00
nl80211: 2402-2472 @ 40 MHz
nl80211: 2457-2482 @ 40 MHz
nl80211: 2474-2494 @ 20 MHz
nl80211: 5170-5250 @ 40 MHz
nl80211: 5735-5835 @ 40 MHz
nl80211: Added 802.11b mode based on 802.11g information
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp3s0' added
nl80211: if_removed already cleared - ignore event
nl80211: Event message available
nl80211: New scan results available
wlp3s0: Event SCAN_RESULTS (3) received
nl80211: Received scan results (20 BSSes)
wlp3s0: BSS: Start scan result update 5
wlp3s0: BSS: Add new id 25 BSSID 00:23:05:2c:d8:0f SSID 'optimumwifi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/25'
wlp3s0: BSS: Add new id 26 BSSID 00:23:05:2c:d8:00 SSID 'optimumwifi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/26'
wlp3s0: BSS: Add new id 27 BSSID 00:23:05:2c:d8:02 SSID 'TWCWiFi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/27'
wlp3s0: BSS: Add new id 28 BSSID 00:23:05:2c:d8:01 SSID 'xfinitywifi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/28'
wlp3s0: BSS: Add new id 29 BSSID b4:e9:b0:16:35:e2 SSID 'TWCWiFi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/29'
wlp3s0: BSS: Add new id 30 BSSID b4:e9:b0:16:f3:42 SSID 'TWCWiFi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/30'
wlp3s0: BSS: Add new id 31 BSSID 64:16:8d:2f:cc:01 SSID 'xfinitywifi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/31'
wlp3s0: BSS: Remove id 15 BSSID 00:23:05:2c:d8:0c SSID 'CableWiFi' due to no match in scan
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/15'
wlp3s0: BSS: Remove id 20 BSSID b4:e9:b0:16:f3:43 SSID 'CableWiFi' due to no match in scan
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/20'
wlp3s0: BSS: Remove id 12 BSSID b4:e9:b0:16:35:e3 SSID 'CableWiFi' due to no match in scan
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/12'
wlp3s0: BSS: Remove id 21 BSSID 64:16:8d:2f:cc:00 SSID 'optimumwifi' due to no match in scan
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/21'
BSS: last_scan_res_used=20/32 last_scan_full=0
wlp3s0: New scan results available
wlp3s0: No APs found - clear blacklist and try again
Removed BSSID 88:dc:96:03:5b:28 from blacklist (clear)
wlp3s0: No suitable network found
wlp3s0: Short-circuit new scan request since there are no enabled networks
wlp3s0: State: SCANNING -> INACTIVE
wlp3s0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/0
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/1
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/2
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/7
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/8
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/10
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/11
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/9
Scan requested (ret=0) - scan timeout 30 seconds
nl80211: Event message available
nl80211: Scan trigger
nl80211: Event message available
nl80211: New scan results available
wlp3s0: Event SCAN_RESULTS (3) received
nl80211: Received scan results (9 BSSes)
wlp3s0: BSS: Start scan result update 6
wlp3s0: BSS: Add new id 32 BSSID 00:23:05:2c:d8:0c SSID 'CableWiFi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/32'
wlp3s0: BSS: Add new id 33 BSSID b4:e9:b0:16:35:e0 SSID 'optimumwifi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/33'
wlp3s0: BSS: Add new id 34 BSSID b4:e9:b0:16:f3:40 SSID 'optimumwifi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/34'
wlp3s0: BSS: Add new id 35 BSSID 00:c0:02:6b:90:21 SSID 'Office2'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/35'
BSS: last_scan_res_used=9/32 last_scan_full=0
wlp3s0: New scan results available
wlp3s0: No suitable network found
wlp3s0: Short-circuit new scan request since there are no enabled networks
wlp3s0: State: INACTIVE -> INACTIVE
wlp3s0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/2
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/1
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/26
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/9
Scan requested (ret=0) - scan timeout 30 seconds
nl80211: Event message available
nl80211: Scan trigger
nl80211: Event message available
nl80211: New scan results available
wlp3s0: Event SCAN_RESULTS (3) received
nl80211: Received scan results (13 BSSes)
wlp3s0: BSS: Start scan result update 7
wlp3s0: BSS: Remove id 14 BSSID 00:11:45:02:3b:4f SSID 'SAP0057' due to no match in scan
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/14'
wlp3s0: BSS: Remove id 22 BSSID 00:23:05:2c:d8:0d SSID 'TWCWiFi' due to no match in scan
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/22'
wlp3s0: BSS: Remove id 29 BSSID b4:e9:b0:16:35:e2 SSID 'TWCWiFi' due to no match in scan
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/29'
wlp3s0: BSS: Remove id 23 BSSID b4:e9:b0:16:f3:41 SSID 'xfinitywifi' due to no match in scan
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/23'
wlp3s0: BSS: Remove id 24 BSSID b4:e9:b0:16:35:e1 SSID 'xfinitywifi' due to no match in scan
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/24'
wlp3s0: BSS: Remove id 31 BSSID 64:16:8d:2f:cc:01 SSID 'xfinitywifi' due to no match in scan
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/31'
BSS: last_scan_res_used=13/32 last_scan_full=0
wlp3s0: New scan results available
wlp3s0: No suitable network found
wlp3s0: Short-circuit new scan request since there are no enabled networks
wlp3s0: State: INACTIVE -> INACTIVE
wlp3s0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/2
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/25
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/28
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/7
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/27
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/9
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/10
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/11
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/8
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/16
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/33
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/30
Scan requested (ret=0) - scan timeout 30 seconds
nl80211: Event message available
nl80211: Scan trigger
nl80211: Event message available
nl80211: New scan results available
wlp3s0: Event SCAN_RESULTS (3) received
nl80211: Received scan results (10 BSSes)
wlp3s0: BSS: Start scan result update 8
wlp3s0: BSS: Add new id 36 BSSID b4:e9:b0:16:35:e2 SSID 'TWCWiFi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/36'
wlp3s0: BSS: Add new id 37 BSSID 00:c0:02:6b:8f:11 SSID 'Office2'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/37'
wlp3s0: BSS: Add new id 38 BSSID 64:16:8d:2f:cc:01 SSID 'xfinitywifi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/38'
wlp3s0: BSS: Remove id 32 BSSID 00:23:05:2c:d8:0c SSID 'CableWiFi' due to no match in scan
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/32'
wlp3s0: BSS: Remove id 26 BSSID 00:23:05:2c:d8:00 SSID 'optimumwifi' due to no match in scan
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/26'
wlp3s0: BSS: Remove id 34 BSSID b4:e9:b0:16:f3:40 SSID 'optimumwifi' due to no match in scan
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/34'
wlp3s0: BSS: Remove id 35 BSSID 00:c0:02:6b:90:21 SSID 'Office2' due to no match in scan
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/35'
BSS: last_scan_res_used=10/32 last_scan_full=0
wlp3s0: New scan results available
wlp3s0: No suitable network found
wlp3s0: Short-circuit new scan request since there are no enabled networks
wlp3s0: State: INACTIVE -> INACTIVE
wlp3s0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/1
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/25
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/7
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/28
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/11
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/16
Scan requested (ret=0) - scan timeout 30 seconds
nl80211: Event message available
nl80211: Scan trigger
nl80211: Event message available
nl80211: New scan results available
wlp3s0: Event SCAN_RESULTS (3) received
nl80211: Received scan results (16 BSSes)
wlp3s0: BSS: Start scan result update 9
wlp3s0: BSS: Add new id 39 BSSID 00:23:05:2c:d8:0d SSID 'TWCWiFi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/39'
wlp3s0: BSS: Add new id 40 BSSID 00:23:05:2c:d8:00 SSID 'optimumwifi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/40'
wlp3s0: BSS: Add new id 41 BSSID 00:c0:02:6b:8f:85 SSID 'Office2'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/41'
wlp3s0: BSS: Add new id 42 BSSID b4:e9:b0:16:f3:41 SSID 'xfinitywifi'
dbus: Register BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/42'
wlp3s0: BSS: Remove id 33 BSSID b4:e9:b0:16:35:e0 SSID 'optimumwifi' due to no match in scan
dbus: Unregister BSS object '/fi/w1/wpa_supplicant1/Interfaces/1/BSSs/33'
BSS: last_scan_res_used=16/32 last_scan_full=0
wlp3s0: New scan results available
wlp3s0: No suitable network found
wlp3s0: Short-circuit new scan request since there are no enabled networks
wlp3s0: State: INACTIVE -> INACTIVE
wlp3s0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/0
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/1
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/2
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/28
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/7
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/27
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/11
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/9
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/8
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/10
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/36
dbus: flush_object_timeout_handler: Timeout - sending changed properties of object /fi/w1/wpa_supplicant1/Interfaces/1/BSSs/30


Many thanks again.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Networking & Security All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum