linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Kernel binary for RTL8192EE
@ 2014-05-11 16:41 Larry Finger
       [not found] ` <CAB1v6G2jEgcUrCsQn2mo5Zts2mXpVfYTmjkg_dMT2oAQKOc08w@mail.gmail.com>
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Larry Finger @ 2014-05-11 16:41 UTC (permalink / raw)
  To: linux-wireless

This mail is blind copied to everyone that has contacted me regarding a driver 
for the RTL8192EE, and to the Realtek developers.

Although the patches needed to add this driver to the 3.14.X kernel were made 
available earlier, not everyone has the expertise needed to build a kernel for 
their system. As the Lenovo T440s is the only computer that currently is 
shipping with this device, and Lenovo uses Ubuntu 14.04, I have built such a 
patched kernel and I am making is available. This one uses the official 3.13.3 
source currently in use by Ubuntu and includes all of their patches.

The file is obtained at 
http://www.lwfinger.com/realtek_drivers/linux-image-3.13.9_0.9_amd64.deb. At 
present, I do not have a 32-bit version available. After downloading, this 
kernel is installed using the command 'sudo dpkg -i <path_to_downloaded_deb_file>

Larry

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

* Re: Kernel binary for RTL8192EE
       [not found]   ` <CAB1v6G0iFqjaLcmsFS=H_5d+Shr13-wJww74jP=adi01mLmZdw@mail.gmail.com>
@ 2014-05-12 14:58     ` Larry Finger
  0 siblings, 0 replies; 6+ messages in thread
From: Larry Finger @ 2014-05-12 14:58 UTC (permalink / raw)
  Cc: Timber Deng, linux-wireless

On 05/12/2014 09:11 AM, Timber Deng wrote:
> Hi Larry,
>
> Failed to sent to "linux-wireless@vger.kernelorg
> <mailto:linux-wireless@vger.kernel.org>" in previous try... In case you didn't
> receive message, it's below.
>
> BTW, if I wanna fix the bug myself, how can I find some guide for kernel
> function documentation, debugging? Let me know.
>
> Thanks!
>
> /--/
> /Hongchao Deng (Timber)/
> /Carnegie Mellon University
> /
> /hongchad@andrew.cmu.edu <mailto:hongchad@andrew.cmu.edu>/
>
>
> On Mon, May 12, 2014 at 10:07 AM, Timber Deng <fengjingchao@gmail.com
> <mailto:fengjingchao@gmail.com>> wrote:
>
>     Hi Larry,
>
>     I am reporting an error in current RTL8192EE driver. This error happened
>     both in the 3.13.9 kernel you sent earlier or custom 3.14 built with patches
>     in
>     (http://www.lwfinger.com/__realtek_drivers/0001-staging-__r8192ee-Add-new-driver.patch
>     <http://www.lwfinger.com/realtek_drivers/0001-staging-r8192ee-Add-new-driver.patch>
>     ​, ​
>     http://www.lwfinger.com/__realtek_drivers/0002-staging-__r8192ee-Add-new-driver.patch
>     <http://www.lwfinger.com/realtek_drivers/0002-staging-r8192ee-Add-new-driver.patch>
>     ​​). Ubuntu 14.04.
>     ​
>
>     After using the wifi for a relatively long time and viewing large traffic
>     (e.g. video streaming), the OS is stuck and no actions can be made.
>     ​
>     The kernel log​ (/var/log/kern.log) shows that repeatedly:
>     ===
>     ...
>     May 12 08:13:44 feng-T440s kernel: [39766.630856] skb->end - skb->tail =
>     16000, len is 16174
>     May 12 08:13:44 feng-T440s kernel: [39766.635128] skb->end - skb->tail =
>     16000, len is 16174
>     May 12 08:13:44 feng-T440s kernel: [39766.733385] skb->end - skb->tail =
>     16000, len is 16174
>     ...
>     ===
>
>     I looked at the patch code, it's here:
>     ===
>
>     len = rtlpriv->cfg->ops->get_desc((u8 *)pdesc, false,
>     +						  HW_DESC_RXPKT_LEN);
>
>     	        if (skb->end - skb->tail > len) {
>     +			skb_put(skb, len);
>     +			if (rtlpriv->use_new_trx_flow)
>     +				skb_reserve(skb, status.rx_drvinfo_size +
>     +						 status.rx_bufshift + 24);
>     +			else
>     +				skb_reserve(skb, status.rx_drvinfo_size +
>     +						 status.rx_bufshift);
>     +
>     +		} else {
>     +			printk("skb->end - skb->tail = %d, len is %d\n",
>     +			       skb->end - skb->tail, len);
>     +			break;
>     +		}
>     +
>
>     ===
>
>     It seems like the wireless is constantly receiving packet larger than socket buffer and dropping it.
>
>     What's worse, it doesn't stop this behavior in a reasonable way but continuously consuming all CPU resources.
>
>
>     Please fix it ASAP.
>     Thanks!
>
>     /--/
>     /Hongchao Deng (Timber)/
>     /Carnegie Mellon University
>     /
>     /hongchad@andrew.cmu.edu <mailto:hongchad@andrew.cmu.edu>/
>
>
>     On Sun, May 11, 2014 at 12:41 PM, Larry Finger <Larry.Finger@lwfinger.net
>     <mailto:Larry.Finger@lwfinger.net>> wrote:
>
>         This mail is blind copied to everyone that has contacted me regarding a
>         driver for the RTL8192EE, and to the Realtek developers.
>
>         Although the patches needed to add this driver to the 3.14.X kernel were
>         made available earlier, not everyone has the expertise needed to build a
>         kernel for their system. As the Lenovo T440s is the only computer that
>         currently is shipping with this device, and Lenovo uses Ubuntu 14.04, I
>         have built such a patched kernel and I am making is available. This one
>         uses the official 3.13.3 source currently in use by Ubuntu and includes
>         all of their patches.
>
>         The file is obtained at
>         http://www.lwfinger.com/__realtek_drivers/linux-image-3.__13.9_0.9_amd64.deb
>         <http://www.lwfinger.com/realtek_drivers/linux-image-3.13.9_0.9_amd64.deb>.
>         At present, I do not have a 32-bit version available. After downloading,
>         this kernel is installed using the command 'sudo dpkg -i
>         <path_to_downloaded_deb_file>

You have a typo in the linux-wireless address. It is kernel.org, not kernelorg.

The first place to look for debugging help in in the Documentation directory in 
the sources. I have seen the same printout with my version in the main wireless 
tree, but I have not seen it with the staging version. It is not reasonable for 
the packet length to be that that long. The apparent packet length comes from 
reading the copy of the RX descriptor passed in the skb. The low 14 bits in the 
first word should contain that quantity. I do not know if the problem is in the 
firmware or the driver code.

Sometime in the next couple of days, I will post revised patches and a new deb 
file that handles the problem more intelligently. Unfortunately, I do not have a 
fix.

On Linux mailing lists, please refrain from top posting. If you bottom post as I 
did here, a reader can see whatever history the writer wants to show without 
scrolling down and back up. The standard joke is

A. Because it is not in natural order.

Q. Why is top posting bad?

Larry




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

* Re: Kernel binary for RTL8192EE
  2014-05-11 16:41 Kernel binary for RTL8192EE Larry Finger
       [not found] ` <CAB1v6G2jEgcUrCsQn2mo5Zts2mXpVfYTmjkg_dMT2oAQKOc08w@mail.gmail.com>
@ 2014-05-14 18:54 ` Stefan Krüger
  2014-05-14 19:07 ` stefan.krueger
  2 siblings, 0 replies; 6+ messages in thread
From: Stefan Krüger @ 2014-05-14 18:54 UTC (permalink / raw)
  To: Larry Finger; +Cc: linux-wireless

Hello, 

i have try kernel 3.14 with you patches and i try you deb-file. 
With both kernel i have the same issue.. 

i find the Router (in this case it is a Fritz-Box router, but its the same with other routers - i tried this), but i cant connect to this.. and i dont know why.. 


here some logs, if you need more please tell me which one.. 


uname -a 
Linux wheezy 3.13.9 #3 SMP Sat May 10 10:51:00 CDT 2014 x86_64 GNU/Linux 


lsmod |grep 8192 
r8192ee 495016 0 
mac80211 626194 1 r8192ee 
cfg80211 483865 2 mac80211,r8192ee 


/etc/init.d/network-manager stop 
[ ok ] Stopping network connection manager: NetworkManager. 
root@wheezy:/home/stefan# NetworkManager --log-level=DEBUG 


dmesg |egrep 'wlan0|8192' 
[ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88021f200000 s86336 r8192 d24256 u262144 
[ 0.000000] pcpu-alloc: s86336 r8192 d24256 u262144 alloc=1*2097152 
[ 4.534056] r8192ee: module is from the staging directory, the quality is unknown, you have been warned. 
[ 4.535081] r8192ee-0:stg_rtl_pci_probe():<0-0> mem mapped space: start: 0xf2400000 len:00004000 flags:00140204, after map:0xffffc90004eb8000 
[ 4.535099] r8192ee-0:_rtl_pci_find_adapter():<0-0> Pci Bridge Vendor is found index: 0 
[ 4.535102] r8192ee-0:_rtl_pci_find_adapter():<0-0> pcidev busnumber:devnumber:funcnumber:vendor:link_ctl 2:0:0:10ec:0 
[ 4.535103] r8192ee-0:_rtl_pci_find_adapter():<0-0> pci_bridge busnumber:devnumber:funcnumber:vendor:pcie_cap:link_ctl_reg:amd 0:28:1:8086:40:43:0 
[ 4.535139] r8192ee-0:rtl92ee_read_eeprom_info():<0-0> Boot from EFUSE 
[ 4.543354] r8192ee-0:_rtl92ee_read_adapter_info():<0-0> dev_addr: 54:35:30:0e:6c:8b 
[ 4.543359] r8192ee-0:_rtl92ee_hal_customized_behavior():<0-0> RT Customized ID: 0x12 
[ 5.028045] r8192ee 0000:02:00.0: irq 46 for MSI/MSI-X 
[ 12.495196] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready 
[ 15.309062] wlan0: authenticate with bc:05:43:79:f9:47 
[ 15.325612] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3) 
[ 15.528819] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3) 
[ 15.733017] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3) 
[ 15.937246] wlan0: authentication with bc:05:43:79:f9:47 timed out 
[ 30.818085] wlan0: authenticate with bc:05:43:79:f9:47 
[ 30.834522] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3) 
[ 31.037817] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3) 
[ 31.242066] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3) 
[ 31.446289] wlan0: authentication with bc:05:43:79:f9:47 timed out 
[ 39.723989] wlan0: authenticate with bc:05:43:79:f9:47 
[ 39.740451] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3) 
[ 39.943682] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3) 
[ 40.147848] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3) 
[ 40.352083] wlan0: authentication with bc:05:43:79:f9:47 timed out 

[ 455.536392] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready 
[ 457.435757] wlan0: authenticate with bc:05:43:79:f9:47 
[ 457.451936] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3) 
[ 457.655213] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3) 
[ 457.859404] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3) 
[ 458.063663] wlan0: authentication with bc:05:43:79:f9:47 timed out 
[ 459.749891] wlan0: authenticate with bc:05:43:79:f9:47 
[ 459.766582] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3) 
[ 459.969757] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3) 
[ 460.173983] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3) 
[ 460.378161] wlan0: authentication with bc:05:43:79:f9:47 timed out 
[ 475.255128] wlan0: authenticate with bc:05:43:79:f9:47 
[ 475.271622] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3) 
[ 475.474812] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3) 
[ 475.678994] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3) 
[ 475.883266] wlan0: authentication with bc:05:43:79:f9:47 timed out 


egrep 'wlan0|8192' /var/log/syslog 
May 14 20:24:22 wheezy kernel: [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88021f200000 s86336 r8192 d24256 u262144 
May 14 20:24:22 wheezy kernel: [ 0.000000] pcpu-alloc: s86336 r8192 d24256 u262144 alloc=1*2097152 
May 14 20:24:22 wheezy kernel: [ 4.534056] r8192ee: module is from the staging directory, the quality is unknown, you have been warned. 
May 14 20:24:22 wheezy kernel: [ 4.535081] r8192ee-0:stg_rtl_pci_probe():<0-0> mem mapped space: start: 0xf2400000 len:00004000 flags:00140204, after map:0xffffc90004eb8000 
May 14 20:24:22 wheezy kernel: [ 4.535099] r8192ee-0:_rtl_pci_find_adapter():<0-0> Pci Bridge Vendor is found index: 0 
May 14 20:24:22 wheezy kernel: [ 4.535102] r8192ee-0:_rtl_pci_find_adapter():<0-0> pcidev busnumber:devnumber:funcnumber:vendor:link_ctl 2:0:0:10ec:0 
May 14 20:24:22 wheezy kernel: [ 4.535103] r8192ee-0:_rtl_pci_find_adapter():<0-0> pci_bridge busnumber:devnumber:funcnumber:vendor:pcie_cap:link_ctl_reg:amd 0:28:1:8086:40:43:0 
May 14 20:24:22 wheezy kernel: [ 4.535139] r8192ee-0:rtl92ee_read_eeprom_info():<0-0> Boot from EFUSE 
May 14 20:24:22 wheezy kernel: [ 4.543354] r8192ee-0:_rtl92ee_read_adapter_info():<0-0> dev_addr: 54:35:30:0e:6c:8b 
May 14 20:24:22 wheezy kernel: [ 4.543359] r8192ee-0:_rtl92ee_hal_customized_behavior():<0-0> RT Customized ID: 0x12 
May 14 20:24:22 wheezy kernel: [ 5.028045] r8192ee 0000:02:00.0: irq 46 for MSI/MSI-X 
May 14 20:24:24 wheezy NetworkManager[3060]: SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:1c.1/0000:02:00.0/net/wlan0, iface: wlan0) 
May 14 20:24:24 wheezy NetworkManager[3060]: SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:1c.1/0000:02:00.0/net/wlan0, iface: wlan0): no ifupdown configuration found. 
May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): using nl80211 for WiFi device control 
May 14 20:24:25 wheezy NetworkManager[3060]: <warn> (wlan0): driver supports Access Point (AP) mode 
May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): new 802.11 WiFi device (driver: 'r8192ee' ifindex: 3) 
May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): exported as /org/freedesktop/NetworkManager/Devices/1 
May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): now managed 
May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2] 
May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): bringing up device. 
May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): preparing device. 
May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): deactivating device (reason 'managed') [2] 
May 14 20:24:25 wheezy kernel: [ 12.495196] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready 
May 14 20:24:26 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: starting -> ready 
May 14 20:24:26 wheezy NetworkManager[3060]: <info> (wlan0): device state change: unavailable -> disconnected (reason 'supplicant-available') [20 30 42] 
May 14 20:24:26 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: ready -> inactive 
May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0) starting connection 'zuHause' 
May 14 20:24:27 wheezy NetworkManager[3060]: <info> (wlan0): device state change: disconnected -> prepare (reason 'none') [30 40 0] 
May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled... 
May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started... 
May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled... 
May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete. 
May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting... 
May 14 20:24:27 wheezy NetworkManager[3060]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0] 
May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0/wireless): connection 'zuHause' has security, and secrets exist. No new secrets needed. 
May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete. 
May 14 20:24:27 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: inactive -> scanning 
May 14 20:24:28 wheezy kernel: [ 15.309062] wlan0: authenticate with bc:05:43:79:f9:47 
May 14 20:24:28 wheezy wpa_supplicant[3283]: wlan0: SME: Trying to authenticate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz) 
May 14 20:24:28 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: scanning -> authenticating 
May 14 20:24:28 wheezy kernel: [ 15.325612] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3) 
May 14 20:24:28 wheezy kernel: [ 15.528819] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3) 
May 14 20:24:29 wheezy kernel: [ 15.733017] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3) 
May 14 20:24:29 wheezy kernel: [ 15.937246] wlan0: authentication with bc:05:43:79:f9:47 timed out 
May 14 20:24:29 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: authenticating -> disconnected 
May 14 20:24:29 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: disconnected -> scanning 
May 14 20:24:44 wheezy kernel: [ 30.818085] wlan0: authenticate with bc:05:43:79:f9:47 
May 14 20:24:44 wheezy wpa_supplicant[3283]: wlan0: SME: Trying to authenticate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz) 
May 14 20:24:44 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: scanning -> authenticating 
May 14 20:24:44 wheezy kernel: [ 30.834522] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3) 
May 14 20:24:44 wheezy kernel: [ 31.037817] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3) 
May 14 20:24:44 wheezy kernel: [ 31.242066] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3) 
May 14 20:24:44 wheezy kernel: [ 31.446289] wlan0: authentication with bc:05:43:79:f9:47 timed out 
May 14 20:24:44 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: authenticating -> disconnected 
May 14 20:24:44 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: disconnected -> scanning 
May 14 20:24:53 wheezy wpa_supplicant[3283]: wlan0: SME: Trying to authenticate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz) 
May 14 20:24:53 wheezy kernel: [ 39.723989] wlan0: authenticate with bc:05:43:79:f9:47 
May 14 20:24:53 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: scanning -> authenticating 
May 14 20:24:53 wheezy kernel: [ 39.740451] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3) 
May 14 20:24:53 wheezy kernel: [ 39.943682] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3) 
May 14 20:24:53 wheezy NetworkManager[3060]: <warn> Activation (wlan0/wireless): association took too long. 
May 14 20:24:53 wheezy NetworkManager[3060]: <info> (wlan0): device state change: config -> need-auth (reason 'none') [50 60 0] 
May 14 20:24:53 wheezy NetworkManager[3060]: <warn> Activation (wlan0/wireless): asking for new secrets 
May 14 20:24:53 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: authenticating -> disconnected 
May 14 20:24:53 wheezy kernel: [ 40.147848] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3) 
May 14 20:24:53 wheezy kernel: [ 40.352083] wlan0: authentication with bc:05:43:79:f9:47 timed out 
May 14 20:26:53 wheezy NetworkManager[3060]: <info> (wlan0): device state change: need-auth -> failed (reason 'no-secrets') [60 120 7] 
May 14 20:26:53 wheezy NetworkManager[3060]: <warn> Activation (wlan0) failed for access point (FRITZ!Box Fon WLAN 7112) 
May 14 20:26:53 wheezy NetworkManager[3060]: <warn> Activation (wlan0) failed. 
May 14 20:26:53 wheezy NetworkManager[3060]: <info> (wlan0): device state change: failed -> disconnected (reason 'none') [120 30 0] 
May 14 20:26:53 wheezy NetworkManager[3060]: <info> (wlan0): deactivating device (reason 'none') [0] 
May 14 20:31:32 wheezy NetworkManager[3060]: <info> (wlan0): now unmanaged 
May 14 20:31:32 wheezy NetworkManager[3060]: <info> (wlan0): device state change: disconnected -> unmanaged (reason 'removed') [30 10 36] 
May 14 20:31:32 wheezy NetworkManager[3060]: <info> (wlan0): cleaning up... 
May 14 20:31:32 wheezy NetworkManager[3060]: <info> (wlan0): taking down device. 
May 14 20:31:47 wheezy NetworkManager[4773]: SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:1c.1/0000:02:00.0/net/wlan0, iface: wlan0) 
May 14 20:31:47 wheezy NetworkManager[4773]: SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:1c.1/0000:02:00.0/net/wlan0, iface: wlan0): no ifupdown configuration found. 
May 14 20:31:47 wheezy NetworkManager[4773]: <debug> [1400092307.779457] [nm-device-wifi.c:297] constructor(): (wlan0): kernel ifindex 3 
May 14 20:31:47 wheezy NetworkManager[4773]: <info> (wlan0): using nl80211 for WiFi device control 
May 14 20:31:47 wheezy NetworkManager[4773]: <warn> (wlan0): driver supports Access Point (AP) mode 
May 14 20:31:47 wheezy NetworkManager[4773]: <debug> [1400092307.779673] [nm-device-wifi.c:2626] real_update_initial_hw_address(): (wlan0): read initial MAC address 54:35:30:0E:6C:8B 
May 14 20:31:47 wheezy NetworkManager[4773]: <debug> [1400092307.779748] [nm-device-wifi.c:3213] real_set_enabled(): (wlan0): device now enabled 
May 14 20:31:47 wheezy NetworkManager[4773]: <debug> [1400092307.779756] [nm-device-wifi.c:3219] real_set_enabled(): (enable): wlan0 blocked by UNMANAGED state 
May 14 20:31:47 wheezy NetworkManager[4773]: <info> (wlan0): new 802.11 WiFi device (driver: 'r8192ee' ifindex: 3) 
May 14 20:31:47 wheezy NetworkManager[4773]: <info> (wlan0): exported as /org/freedesktop/NetworkManager/Devices/2 
May 14 20:31:47 wheezy NetworkManager[4773]: <info> (wlan0): now managed 
May 14 20:31:47 wheezy NetworkManager[4773]: <info> (wlan0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2] 
May 14 20:31:47 wheezy NetworkManager[4773]: <info> (wlan0): bringing up device. 
May 14 20:31:48 wheezy NetworkManager[4773]: <info> (wlan0): preparing device. 
May 14 20:31:48 wheezy NetworkManager[4773]: <info> (wlan0): deactivating device (reason 'managed') [2] 
May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.443178] [nm-device-wifi.c:868] _set_hw_addr(): (wlan0): no MAC address change needed 
May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.443239] [nm-system.c:1205] nm_system_iface_flush_routes(): (wlan0): flushing routes ifindex 3 family INET (2) 
May 14 20:31:48 wheezy kernel: [ 455.536392] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready 
May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.443368] [nm-system.c:196] sync_addresses(): (wlan0): syncing addresses (family 2) 
May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.443481] [nm-supplicant-manager.c:88] nm_supplicant_manager_iface_get(): (wlan0): creating new supplicant interface 
May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.443613] [nm-supplicant-interface.c:829] interface_add(): (wlan0): adding interface to supplicant 
May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.443740] [nm-device-wifi.c:1308] real_is_available(): (wlan0): not available because supplicant interface not ready 
May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.443750] [nm-device.c:4334] nm_device_state_changed(): (wlan0): device not yet available for transition to DISCONNECTED 
May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.446310] [nm-supplicant-interface.c:658] interface_add_done(): (wlan0): interface added to supplicant 
May 14 20:31:48 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: starting -> ready 
May 14 20:31:48 wheezy NetworkManager[4773]: <info> (wlan0): device state change: unavailable -> disconnected (reason 'supplicant-available') [20 30 42] 
May 14 20:31:48 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: ready -> inactive 
May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0) starting connection 'zuHause' 
May 14 20:31:49 wheezy NetworkManager[4773]: <info> (wlan0): device state change: disconnected -> prepare (reason 'none') [30 40 0] 
May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled... 
May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started... 
May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled... 
May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete. 
May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting... 
May 14 20:31:49 wheezy NetworkManager[4773]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0] 
May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0/wireless): connection 'zuHause' has security, and secrets exist. No new secrets needed. 
May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete. 
May 14 20:31:49 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: inactive -> scanning 
May 14 20:31:50 wheezy wpa_supplicant[3283]: wlan0: SME: Trying to authenticate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz) 
May 14 20:31:50 wheezy kernel: [ 457.435757] wlan0: authenticate with bc:05:43:79:f9:47 
May 14 20:31:50 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: scanning -> authenticating 
May 14 20:31:50 wheezy kernel: [ 457.451936] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3) 
May 14 20:31:50 wheezy kernel: [ 457.655213] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3) 
May 14 20:31:50 wheezy kernel: [ 457.859404] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3) 
May 14 20:31:50 wheezy kernel: [ 458.063663] wlan0: authentication with bc:05:43:79:f9:47 timed out 
May 14 20:31:50 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: authenticating -> disconnected 
May 14 20:31:51 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: disconnected -> scanning 
May 14 20:31:52 wheezy wpa_supplicant[3283]: wlan0: SME: Trying to authenticate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz) 
May 14 20:31:52 wheezy kernel: [ 459.749891] wlan0: authenticate with bc:05:43:79:f9:47 
May 14 20:31:52 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: scanning -> authenticating 
May 14 20:31:52 wheezy kernel: [ 459.766582] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3) 
May 14 20:31:52 wheezy kernel: [ 459.969757] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3) 
May 14 20:31:53 wheezy kernel: [ 460.173983] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3) 
May 14 20:31:53 wheezy kernel: [ 460.378161] wlan0: authentication with bc:05:43:79:f9:47 timed out 
May 14 20:31:53 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: authenticating -> disconnected 
May 14 20:31:53 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: disconnected -> scanning 
May 14 20:32:08 wheezy wpa_supplicant[3283]: wlan0: SME: Trying to authenticate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz) 
May 14 20:32:08 wheezy kernel: [ 475.255128] wlan0: authenticate with bc:05:43:79:f9:47 
May 14 20:32:08 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: scanning -> authenticating 
May 14 20:32:08 wheezy kernel: [ 475.271622] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3) 
May 14 20:32:08 wheezy kernel: [ 475.474812] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3) 
May 14 20:32:08 wheezy kernel: [ 475.678994] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3) 
May 14 20:32:08 wheezy kernel: [ 475.883266] wlan0: authentication with bc:05:43:79:f9:47 timed out 
May 14 20:32:08 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: authenticating -> disconnected 
May 14 20:32:08 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: disconnected -> scanning 
May 14 20:32:14 wheezy NetworkManager[4773]: <warn> Activation (wlan0/wireless): association took too long. 
May 14 20:32:14 wheezy NetworkManager[4773]: <info> (wlan0): device state change: config -> need-auth (reason 'none') [50 60 0] 
May 14 20:32:14 wheezy NetworkManager[4773]: <warn> Activation (wlan0/wireless): asking for new secrets 
May 14 20:32:14 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: scanning -> disconnected 
May 14 20:34:14 wheezy NetworkManager[4773]: <info> (wlan0): device state change: need-auth -> failed (reason 'no-secrets') [60 120 7] 
May 14 20:34:14 wheezy NetworkManager[4773]: <warn> Activation (wlan0) failed for access point (FRITZ!Box Fon WLAN 7112) 
May 14 20:34:14 wheezy NetworkManager[4773]: <warn> Activation (wlan0) failed. 
May 14 20:34:14 wheezy NetworkManager[4773]: <debug> [1400092454.745122] [nm-device.c:4404] nm_device_queue_state(): (wlan0): queued state change to disconnected (id 141) 
May 14 20:34:14 wheezy NetworkManager[4773]: <debug> [1400092454.745268] [nm-device.c:4372] queued_set_state(): (wlan0): running queued state change to disconnected (id 141) 
May 14 20:34:14 wheezy NetworkManager[4773]: <info> (wlan0): device state change: failed -> disconnected (reason 'none') [120 30 0] 
May 14 20:34:14 wheezy NetworkManager[4773]: <info> (wlan0): deactivating device (reason 'none') [0] 
May 14 20:34:14 wheezy NetworkManager[4773]: <debug> [1400092454.745297] [nm-firewall-manager.c:157] nm_firewall_manager_remove_from_zone(): (wlan0) firewall zone remove skipped (not running) 
May 14 20:34:14 wheezy NetworkManager[4773]: <debug> [1400092454.745371] [nm-device-wifi.c:868] _set_hw_addr(): (wlan0): no MAC address change needed 
May 14 20:34:14 wheezy NetworkManager[4773]: <debug> [1400092454.745473] [nm-system.c:1205] nm_system_iface_flush_routes(): (wlan0): flushing routes ifindex 3 family INET (2) 
May 14 20:34:14 wheezy NetworkManager[4773]: <debug> [1400092454.745622] [nm-system.c:196] sync_addresses(): (wlan0): syncing addresses (family 2) 



i hope you can help me!
Thanks in advanced!

best regards
Stefan




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

* Re: Kernel binary for RTL8192EE
  2014-05-11 16:41 Kernel binary for RTL8192EE Larry Finger
       [not found] ` <CAB1v6G2jEgcUrCsQn2mo5Zts2mXpVfYTmjkg_dMT2oAQKOc08w@mail.gmail.com>
  2014-05-14 18:54 ` Stefan Krüger
@ 2014-05-14 19:07 ` stefan.krueger
  2014-05-14 19:30   ` Larry Finger
  2 siblings, 1 reply; 6+ messages in thread
From: stefan.krueger @ 2014-05-14 19:07 UTC (permalink / raw)
  To: Larry Finger, linux-wireless

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Hello,

i have try kernel 3.14 with you patches and i try you deb-file.
With both kernel i have the same issue..

i find the Router (in this case it is a Fritz-Box router, but its the same with other routers - i tried this), but i cant connect to this.. and i dont know why..


here some logs, if you need more please tell me which one..


uname -a
Linux wheezy 3.13.9 #3 SMP Sat May 10 10:51:00 CDT 2014 x86_64 GNU/Linux


lsmod |grep 8192
r8192ee 495016 0
mac80211 626194 1 r8192ee
cfg80211 483865 2 mac80211,r8192ee


/etc/init.d/network-manager stop
[ ok ] Stopping network connection manager: NetworkManager.
root@wheezy:/home/stefan# NetworkManager --log-level=DEBUG


dmesg |egrep 'wlan0|8192'
[ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88021f200000 s86336 r8192 d24256 u262144
[ 0.000000] pcpu-alloc: s86336 r8192 d24256 u262144 alloc=1*2097152
[ 4.534056] r8192ee: module is from the staging directory, the quality is unknown, you have been warned.
[ 4.535081] r8192ee-0:stg_rtl_pci_probe():<0-0> mem mapped space: start: 0xf2400000 len:00004000 flags:00140204, after map:0xffffc90004eb8000
[ 4.535099] r8192ee-0:_rtl_pci_find_adapter():<0-0> Pci Bridge Vendor is found index: 0
[ 4.535102] r8192ee-0:_rtl_pci_find_adapter():<0-0> pcidev busnumber:devnumber:funcnumber:vendor:link_ctl 2:0:0:10ec:0
[ 4.535103] r8192ee-0:_rtl_pci_find_adapter():<0-0> pci_bridge busnumber:devnumber:funcnumber:vendor:pcie_cap:link_ctl_reg:amd 0:28:1:8086:40:43:0
[ 4.535139] r8192ee-0:rtl92ee_read_eeprom_info():<0-0> Boot from EFUSE
[ 4.543354] r8192ee-0:_rtl92ee_read_adapter_info():<0-0> dev_addr: 54:35:30:0e:6c:8b
[ 4.543359] r8192ee-0:_rtl92ee_hal_customized_behavior():<0-0> RT Customized ID: 0x12
[ 5.028045] r8192ee 0000:02:00.0: irq 46 for MSI/MSI-X
[ 12.495196] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 15.309062] wlan0: authenticate with bc:05:43:79:f9:47
[ 15.325612] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
[ 15.528819] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
[ 15.733017] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
[ 15.937246] wlan0: authentication with bc:05:43:79:f9:47 timed out
[ 30.818085] wlan0: authenticate with bc:05:43:79:f9:47
[ 30.834522] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
[ 31.037817] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
[ 31.242066] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
[ 31.446289] wlan0: authentication with bc:05:43:79:f9:47 timed out
[ 39.723989] wlan0: authenticate with bc:05:43:79:f9:47
[ 39.740451] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
[ 39.943682] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
[ 40.147848] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
[ 40.352083] wlan0: authentication with bc:05:43:79:f9:47 timed out

[ 455.536392] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 457.435757] wlan0: authenticate with bc:05:43:79:f9:47
[ 457.451936] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
[ 457.655213] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
[ 457.859404] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
[ 458.063663] wlan0: authentication with bc:05:43:79:f9:47 timed out
[ 459.749891] wlan0: authenticate with bc:05:43:79:f9:47
[ 459.766582] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
[ 459.969757] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
[ 460.173983] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
[ 460.378161] wlan0: authentication with bc:05:43:79:f9:47 timed out
[ 475.255128] wlan0: authenticate with bc:05:43:79:f9:47
[ 475.271622] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
[ 475.474812] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
[ 475.678994] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
[ 475.883266] wlan0: authentication with bc:05:43:79:f9:47 timed out


egrep 'wlan0|8192' /var/log/syslog
May 14 20:24:22 wheezy kernel: [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88021f200000 s86336 r8192 d24256 u262144
May 14 20:24:22 wheezy kernel: [ 0.000000] pcpu-alloc: s86336 r8192 d24256 u262144 alloc=1*2097152
May 14 20:24:22 wheezy kernel: [ 4.534056] r8192ee: module is from the staging directory, the quality is unknown, you have been warned.
May 14 20:24:22 wheezy kernel: [ 4.535081] r8192ee-0:stg_rtl_pci_probe():<0-0> mem mapped space: start: 0xf2400000 len:00004000 flags:00140204, after map:0xffffc90004eb8000
May 14 20:24:22 wheezy kernel: [ 4.535099] r8192ee-0:_rtl_pci_find_adapter():<0-0> Pci Bridge Vendor is found index: 0
May 14 20:24:22 wheezy kernel: [ 4.535102] r8192ee-0:_rtl_pci_find_adapter():<0-0> pcidev busnumber:devnumber:funcnumber:vendor:link_ctl 2:0:0:10ec:0
May 14 20:24:22 wheezy kernel: [ 4.535103] r8192ee-0:_rtl_pci_find_adapter():<0-0> pci_bridge busnumber:devnumber:funcnumber:vendor:pcie_cap:link_ctl_reg:amd 0:28:1:8086:40:43:0
May 14 20:24:22 wheezy kernel: [ 4.535139] r8192ee-0:rtl92ee_read_eeprom_info():<0-0> Boot from EFUSE
May 14 20:24:22 wheezy kernel: [ 4.543354] r8192ee-0:_rtl92ee_read_adapter_info():<0-0> dev_addr: 54:35:30:0e:6c:8b
May 14 20:24:22 wheezy kernel: [ 4.543359] r8192ee-0:_rtl92ee_hal_customized_behavior():<0-0> RT Customized ID: 0x12
May 14 20:24:22 wheezy kernel: [ 5.028045] r8192ee 0000:02:00.0: irq 46 for MSI/MSI-X
May 14 20:24:24 wheezy NetworkManager[3060]: SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:1c.1/0000:02:00.0/net/wlan0, iface: wlan0)
May 14 20:24:24 wheezy NetworkManager[3060]: SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:1c.1/0000:02:00.0/net/wlan0, iface: wlan0): no ifupdown configuration found.
May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): using nl80211 for WiFi device control
May 14 20:24:25 wheezy NetworkManager[3060]: <warn> (wlan0): driver supports Access Point (AP) mode
May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): new 802.11 WiFi device (driver: 'r8192ee' ifindex: 3)
May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): exported as /org/freedesktop/NetworkManager/Devices/1
May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): now managed
May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): bringing up device.
May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): preparing device.
May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): deactivating device (reason 'managed') [2]
May 14 20:24:25 wheezy kernel: [ 12.495196] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
May 14 20:24:26 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: starting -> ready
May 14 20:24:26 wheezy NetworkManager[3060]: <info> (wlan0): device state change: unavailable -> disconnected (reason 'supplicant-available') [20 30 42]
May 14 20:24:26 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: ready -> inactive
May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0) starting connection 'zuHause'
May 14 20:24:27 wheezy NetworkManager[3060]: <info> (wlan0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
May 14 20:24:27 wheezy NetworkManager[3060]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0/wireless): connection 'zuHause' has security, and secrets exist. No new secrets needed.
May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
May 14 20:24:27 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: inactive -> scanning
May 14 20:24:28 wheezy kernel: [ 15.309062] wlan0: authenticate with bc:05:43:79:f9:47
May 14 20:24:28 wheezy wpa_supplicant[3283]: wlan0: SME: Trying to authenticate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
May 14 20:24:28 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: scanning -> authenticating
May 14 20:24:28 wheezy kernel: [ 15.325612] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
May 14 20:24:28 wheezy kernel: [ 15.528819] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
May 14 20:24:29 wheezy kernel: [ 15.733017] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
May 14 20:24:29 wheezy kernel: [ 15.937246] wlan0: authentication with bc:05:43:79:f9:47 timed out
May 14 20:24:29 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: authenticating -> disconnected
May 14 20:24:29 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: disconnected -> scanning
May 14 20:24:44 wheezy kernel: [ 30.818085] wlan0: authenticate with bc:05:43:79:f9:47
May 14 20:24:44 wheezy wpa_supplicant[3283]: wlan0: SME: Trying to authenticate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
May 14 20:24:44 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: scanning -> authenticating
May 14 20:24:44 wheezy kernel: [ 30.834522] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
May 14 20:24:44 wheezy kernel: [ 31.037817] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
May 14 20:24:44 wheezy kernel: [ 31.242066] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
May 14 20:24:44 wheezy kernel: [ 31.446289] wlan0: authentication with bc:05:43:79:f9:47 timed out
May 14 20:24:44 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: authenticating -> disconnected
May 14 20:24:44 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: disconnected -> scanning
May 14 20:24:53 wheezy wpa_supplicant[3283]: wlan0: SME: Trying to authenticate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
May 14 20:24:53 wheezy kernel: [ 39.723989] wlan0: authenticate with bc:05:43:79:f9:47
May 14 20:24:53 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: scanning -> authenticating
May 14 20:24:53 wheezy kernel: [ 39.740451] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
May 14 20:24:53 wheezy kernel: [ 39.943682] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
May 14 20:24:53 wheezy NetworkManager[3060]: <warn> Activation (wlan0/wireless): association took too long.
May 14 20:24:53 wheezy NetworkManager[3060]: <info> (wlan0): device state change: config -> need-auth (reason 'none') [50 60 0]
May 14 20:24:53 wheezy NetworkManager[3060]: <warn> Activation (wlan0/wireless): asking for new secrets
May 14 20:24:53 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: authenticating -> disconnected
May 14 20:24:53 wheezy kernel: [ 40.147848] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
May 14 20:24:53 wheezy kernel: [ 40.352083] wlan0: authentication with bc:05:43:79:f9:47 timed out
May 14 20:26:53 wheezy NetworkManager[3060]: <info> (wlan0): device state change: need-auth -> failed (reason 'no-secrets') [60 120 7]
May 14 20:26:53 wheezy NetworkManager[3060]: <warn> Activation (wlan0) failed for access point (FRITZ!Box Fon WLAN 7112)
May 14 20:26:53 wheezy NetworkManager[3060]: <warn> Activation (wlan0) failed.
May 14 20:26:53 wheezy NetworkManager[3060]: <info> (wlan0): device state change: failed -> disconnected (reason 'none') [120 30 0]
May 14 20:26:53 wheezy NetworkManager[3060]: <info> (wlan0): deactivating device (reason 'none') [0]
May 14 20:31:32 wheezy NetworkManager[3060]: <info> (wlan0): now unmanaged
May 14 20:31:32 wheezy NetworkManager[3060]: <info> (wlan0): device state change: disconnected -> unmanaged (reason 'removed') [30 10 36]
May 14 20:31:32 wheezy NetworkManager[3060]: <info> (wlan0): cleaning up...
May 14 20:31:32 wheezy NetworkManager[3060]: <info> (wlan0): taking down device.
May 14 20:31:47 wheezy NetworkManager[4773]: SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:1c.1/0000:02:00.0/net/wlan0, iface: wlan0)
May 14 20:31:47 wheezy NetworkManager[4773]: SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:1c.1/0000:02:00.0/net/wlan0, iface: wlan0): no ifupdown configuration found.
May 14 20:31:47 wheezy NetworkManager[4773]: <debug> [1400092307.779457] [nm-device-wifi.c:297] constructor(): (wlan0): kernel ifindex 3
May 14 20:31:47 wheezy NetworkManager[4773]: <info> (wlan0): using nl80211 for WiFi device control
May 14 20:31:47 wheezy NetworkManager[4773]: <warn> (wlan0): driver supports Access Point (AP) mode
May 14 20:31:47 wheezy NetworkManager[4773]: <debug> [1400092307.779673] [nm-device-wifi.c:2626] real_update_initial_hw_address(): (wlan0): read initial MAC address 54:35:30:0E:6C:8B
May 14 20:31:47 wheezy NetworkManager[4773]: <debug> [1400092307.779748] [nm-device-wifi.c:3213] real_set_enabled(): (wlan0): device now enabled
May 14 20:31:47 wheezy NetworkManager[4773]: <debug> [1400092307.779756] [nm-device-wifi.c:3219] real_set_enabled(): (enable): wlan0 blocked by UNMANAGED state
May 14 20:31:47 wheezy NetworkManager[4773]: <info> (wlan0): new 802.11 WiFi device (driver: 'r8192ee' ifindex: 3)
May 14 20:31:47 wheezy NetworkManager[4773]: <info> (wlan0): exported as /org/freedesktop/NetworkManager/Devices/2
May 14 20:31:47 wheezy NetworkManager[4773]: <info> (wlan0): now managed
May 14 20:31:47 wheezy NetworkManager[4773]: <info> (wlan0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
May 14 20:31:47 wheezy NetworkManager[4773]: <info> (wlan0): bringing up device.
May 14 20:31:48 wheezy NetworkManager[4773]: <info> (wlan0): preparing device.
May 14 20:31:48 wheezy NetworkManager[4773]: <info> (wlan0): deactivating device (reason 'managed') [2]
May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.443178] [nm-device-wifi.c:868] _set_hw_addr(): (wlan0): no MAC address change needed
May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.443239] [nm-system.c:1205] nm_system_iface_flush_routes(): (wlan0): flushing routes ifindex 3 family INET (2)
May 14 20:31:48 wheezy kernel: [ 455.536392] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.443368] [nm-system.c:196] sync_addresses(): (wlan0): syncing addresses (family 2)
May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.443481] [nm-supplicant-manager.c:88] nm_supplicant_manager_iface_get(): (wlan0): creating new supplicant interface
May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.443613] [nm-supplicant-interface.c:829] interface_add(): (wlan0): adding interface to supplicant
May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.443740] [nm-device-wifi.c:1308] real_is_available(): (wlan0): not available because supplicant interface not ready
May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.443750] [nm-device.c:4334] nm_device_state_changed(): (wlan0): device not yet available for transition to DISCONNECTED
May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.446310] [nm-supplicant-interface.c:658] interface_add_done(): (wlan0): interface added to supplicant
May 14 20:31:48 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: starting -> ready
May 14 20:31:48 wheezy NetworkManager[4773]: <info> (wlan0): device state change: unavailable -> disconnected (reason 'supplicant-available') [20 30 42]
May 14 20:31:48 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: ready -> inactive
May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0) starting connection 'zuHause'
May 14 20:31:49 wheezy NetworkManager[4773]: <info> (wlan0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
May 14 20:31:49 wheezy NetworkManager[4773]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0/wireless): connection 'zuHause' has security, and secrets exist. No new secrets needed.
May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
May 14 20:31:49 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: inactive -> scanning
May 14 20:31:50 wheezy wpa_supplicant[3283]: wlan0: SME: Trying to authenticate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
May 14 20:31:50 wheezy kernel: [ 457.435757] wlan0: authenticate with bc:05:43:79:f9:47
May 14 20:31:50 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: scanning -> authenticating
May 14 20:31:50 wheezy kernel: [ 457.451936] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
May 14 20:31:50 wheezy kernel: [ 457.655213] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
May 14 20:31:50 wheezy kernel: [ 457.859404] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
May 14 20:31:50 wheezy kernel: [ 458.063663] wlan0: authentication with bc:05:43:79:f9:47 timed out
May 14 20:31:50 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: authenticating -> disconnected
May 14 20:31:51 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: disconnected -> scanning
May 14 20:31:52 wheezy wpa_supplicant[3283]: wlan0: SME: Trying to authenticate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
May 14 20:31:52 wheezy kernel: [ 459.749891] wlan0: authenticate with bc:05:43:79:f9:47
May 14 20:31:52 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: scanning -> authenticating
May 14 20:31:52 wheezy kernel: [ 459.766582] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
May 14 20:31:52 wheezy kernel: [ 459.969757] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
May 14 20:31:53 wheezy kernel: [ 460.173983] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
May 14 20:31:53 wheezy kernel: [ 460.378161] wlan0: authentication with bc:05:43:79:f9:47 timed out
May 14 20:31:53 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: authenticating -> disconnected
May 14 20:31:53 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: disconnected -> scanning
May 14 20:32:08 wheezy wpa_supplicant[3283]: wlan0: SME: Trying to authenticate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
May 14 20:32:08 wheezy kernel: [ 475.255128] wlan0: authenticate with bc:05:43:79:f9:47
May 14 20:32:08 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: scanning -> authenticating
May 14 20:32:08 wheezy kernel: [ 475.271622] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
May 14 20:32:08 wheezy kernel: [ 475.474812] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
May 14 20:32:08 wheezy kernel: [ 475.678994] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
May 14 20:32:08 wheezy kernel: [ 475.883266] wlan0: authentication with bc:05:43:79:f9:47 timed out
May 14 20:32:08 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: authenticating -> disconnected
May 14 20:32:08 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: disconnected -> scanning
May 14 20:32:14 wheezy NetworkManager[4773]: <warn> Activation (wlan0/wireless): association took too long.
May 14 20:32:14 wheezy NetworkManager[4773]: <info> (wlan0): device state change: config -> need-auth (reason 'none') [50 60 0]
May 14 20:32:14 wheezy NetworkManager[4773]: <warn> Activation (wlan0/wireless): asking for new secrets
May 14 20:32:14 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: scanning -> disconnected
May 14 20:34:14 wheezy NetworkManager[4773]: <info> (wlan0): device state change: need-auth -> failed (reason 'no-secrets') [60 120 7]
May 14 20:34:14 wheezy NetworkManager[4773]: <warn> Activation (wlan0) failed for access point (FRITZ!Box Fon WLAN 7112)
May 14 20:34:14 wheezy NetworkManager[4773]: <warn> Activation (wlan0) failed.
May 14 20:34:14 wheezy NetworkManager[4773]: <debug> [1400092454.745122] [nm-device.c:4404] nm_device_queue_state(): (wlan0): queued state change to disconnected (id 141)
May 14 20:34:14 wheezy NetworkManager[4773]: <debug> [1400092454.745268] [nm-device.c:4372] queued_set_state(): (wlan0): running queued state change to disconnected (id 141)
May 14 20:34:14 wheezy NetworkManager[4773]: <info> (wlan0): device state change: failed -> disconnected (reason 'none') [120 30 0]
May 14 20:34:14 wheezy NetworkManager[4773]: <info> (wlan0): deactivating device (reason 'none') [0]
May 14 20:34:14 wheezy NetworkManager[4773]: <debug> [1400092454.745297] [nm-firewall-manager.c:157] nm_firewall_manager_remove_from_zone(): (wlan0) firewall zone remove skipped (not running)
May 14 20:34:14 wheezy NetworkManager[4773]: <debug> [1400092454.745371] [nm-device-wifi.c:868] _set_hw_addr(): (wlan0): no MAC address change needed
May 14 20:34:14 wheezy NetworkManager[4773]: <debug> [1400092454.745473] [nm-system.c:1205] nm_system_iface_flush_routes(): (wlan0): flushing routes ifindex 3 family INET (2)
May 14 20:34:14 wheezy NetworkManager[4773]: <debug> [1400092454.745622] [nm-system.c:196] sync_addresses(): (wlan0): syncing addresses (family 2)



i hope you can help me!
Thanks in advanced!

best regards
Stefan




On 11. Mai 2014 18:41:16 MESZ, Larry Finger <Larry.Finger@lwfinger.net> wrote:
>This mail is blind copied to everyone that has contacted me regarding a
>driver
>for the RTL8192EE, and to the Realtek developers.
>
>Although the patches needed to add this driver to the 3.14.X kernel
>were made
>available earlier, not everyone has the expertise needed to build a
>kernel for
>their system. As the Lenovo T440s is the only computer that currently
>is
>shipping with this device, and Lenovo uses Ubuntu 14.04, I have built
>such a
>patched kernel and I am making is available. This one uses the official
>3.13.3
>source currently in use by Ubuntu and includes all of their patches.
>
>The file is obtained at
>http://www.lwfinger.com/realtek_drivers/linux-image-3.13.9_0.9_amd64.deb.
>At
>present, I do not have a 32-bit version available. After downloading,
>this
>kernel is installed using the command 'sudo dpkg -i
><path_to_downloaded_deb_file>
>
>Larry

- --
Diese Nachricht wurde von meinem Android-Mobiltelefon mit K-9 Mail gesendet.
-----BEGIN PGP SIGNATURE-----
Version: APG v1.1.1

iQJIBAEBCgAyBQJTc77uKxxTdGVmYW4gS3L8Z2VyIDxzdGVmYW4ua3J1ZWdlckB2
b2RhZm9uZS5kZT4ACgkQKfL7XZZDcf0BEA/+JFX8Ld8ZKLaoszpIKMxMyDVtO74O
GSr6W0C74NT4GJf3fhkdOmvmGJPqunUDCt10O5xcxZDN9Ef6M3FEuWi/h07rCwp2
paqTetWWpfANtaS73jtvPpuWgux07q8fEC5QUmcc0DglzXTSNOC71XmfCs2NBwN8
6cWSIVekm5goLKUYzmlQWqiefIGMwkD22rG0TcXHlPhZuiodt7jK1oqfzLreU6OL
gw8JFC+3Pi7e29zoSGhbhtNEb9QdW5y8GD+BvvSEQ5CPhUVS2UuN0MuS155VwV2M
XIfkGrwpDJp608lmgjOeNUID21PrGrorhEzN/r5qfApbkSooV/s/LIPiQJaOQthe
sdD+sNrV+n0ckzHWVo+V8VbTobnWK9tDdDO5YtMwZ2SvWrfrJBlzbSi6TlPPsHpd
NeeomqebypYm0bUaSp7cKuDq3jMwm2W07e8pAoOksUElgiMQnoVL8qciO4GERkj/
Dj779O/v1Gp1uVSR2KPB+n9iRlJLBV1FMD+bs9+RAFzoepnskvlL5FQjxnUgaXWD
PjVogL0AjOmilpKTDMIcRd+uN8S/j/pEPAwhwpFZOos/FVj7jv635Oqu8gUxx2Vq
0771kQDe3tCs+8qi5PwPtWStaGws4YhZkarKo51X32G5cKcNZVOjfvkHsGxLc7IR
gJTevFzwMQ1UHAo=
=E5JE
-----END PGP SIGNATURE-----


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

* Re: Kernel binary for RTL8192EE
  2014-05-14 19:07 ` stefan.krueger
@ 2014-05-14 19:30   ` Larry Finger
  2014-05-14 20:22     ` stefan.krueger
  0 siblings, 1 reply; 6+ messages in thread
From: Larry Finger @ 2014-05-14 19:30 UTC (permalink / raw)
  To: stefan.krueger, linux-wireless

On 05/14/2014 02:07 PM, stefan.krueger@vodafone.de wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA512
>
> Hello,
>
> i have try kernel 3.14 with you patches and i try you deb-file.
> With both kernel i have the same issue..
>
> i find the Router (in this case it is a Fritz-Box router, but its the same with other routers - i tried this), but i cant connect to this.. and i dont know why..
>
>
> here some logs, if you need more please tell me which one..
>
>
> uname -a
> Linux wheezy 3.13.9 #3 SMP Sat May 10 10:51:00 CDT 2014 x86_64 GNU/Linux
>
>
> lsmod |grep 8192
> r8192ee 495016 0
> mac80211 626194 1 r8192ee
> cfg80211 483865 2 mac80211,r8192ee
>
>
> /etc/init.d/network-manager stop
> [ ok ] Stopping network connection manager: NetworkManager.
> root@wheezy:/home/stefan# NetworkManager --log-level=DEBUG
>
>
> dmesg |egrep 'wlan0|8192'
> [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88021f200000 s86336 r8192 d24256 u262144
> [ 0.000000] pcpu-alloc: s86336 r8192 d24256 u262144 alloc=1*2097152
> [ 4.534056] r8192ee: module is from the staging directory, the quality is unknown, you have been warned.
> [ 4.535081] r8192ee-0:stg_rtl_pci_probe():<0-0> mem mapped space: start: 0xf2400000 len:00004000 flags:00140204, after map:0xffffc90004eb8000
> [ 4.535099] r8192ee-0:_rtl_pci_find_adapter():<0-0> Pci Bridge Vendor is found index: 0
> [ 4.535102] r8192ee-0:_rtl_pci_find_adapter():<0-0> pcidev busnumber:devnumber:funcnumber:vendor:link_ctl 2:0:0:10ec:0
> [ 4.535103] r8192ee-0:_rtl_pci_find_adapter():<0-0> pci_bridge busnumber:devnumber:funcnumber:vendor:pcie_cap:link_ctl_reg:amd 0:28:1:8086:40:43:0
> [ 4.535139] r8192ee-0:rtl92ee_read_eeprom_info():<0-0> Boot from EFUSE
> [ 4.543354] r8192ee-0:_rtl92ee_read_adapter_info():<0-0> dev_addr: 54:35:30:0e:6c:8b
> [ 4.543359] r8192ee-0:_rtl92ee_hal_customized_behavior():<0-0> RT Customized ID: 0x12
> [ 5.028045] r8192ee 0000:02:00.0: irq 46 for MSI/MSI-X
> [ 12.495196] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
> [ 15.309062] wlan0: authenticate with bc:05:43:79:f9:47
> [ 15.325612] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
> [ 15.528819] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
> [ 15.733017] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
> [ 15.937246] wlan0: authentication with bc:05:43:79:f9:47 timed out
> [ 30.818085] wlan0: authenticate with bc:05:43:79:f9:47
> [ 30.834522] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
> [ 31.037817] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
> [ 31.242066] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
> [ 31.446289] wlan0: authentication with bc:05:43:79:f9:47 timed out
> [ 39.723989] wlan0: authenticate with bc:05:43:79:f9:47
> [ 39.740451] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
> [ 39.943682] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
> [ 40.147848] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
> [ 40.352083] wlan0: authentication with bc:05:43:79:f9:47 timed out
>
> [ 455.536392] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
> [ 457.435757] wlan0: authenticate with bc:05:43:79:f9:47
> [ 457.451936] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
> [ 457.655213] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
> [ 457.859404] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
> [ 458.063663] wlan0: authentication with bc:05:43:79:f9:47 timed out
> [ 459.749891] wlan0: authenticate with bc:05:43:79:f9:47
> [ 459.766582] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
> [ 459.969757] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
> [ 460.173983] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
> [ 460.378161] wlan0: authentication with bc:05:43:79:f9:47 timed out
> [ 475.255128] wlan0: authenticate with bc:05:43:79:f9:47
> [ 475.271622] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
> [ 475.474812] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
> [ 475.678994] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
> [ 475.883266] wlan0: authentication with bc:05:43:79:f9:47 timed out
>
>
> egrep 'wlan0|8192' /var/log/syslog
> May 14 20:24:22 wheezy kernel: [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88021f200000 s86336 r8192 d24256 u262144
> May 14 20:24:22 wheezy kernel: [ 0.000000] pcpu-alloc: s86336 r8192 d24256 u262144 alloc=1*2097152
> May 14 20:24:22 wheezy kernel: [ 4.534056] r8192ee: module is from the staging directory, the quality is unknown, you have been warned.
> May 14 20:24:22 wheezy kernel: [ 4.535081] r8192ee-0:stg_rtl_pci_probe():<0-0> mem mapped space: start: 0xf2400000 len:00004000 flags:00140204, after map:0xffffc90004eb8000
> May 14 20:24:22 wheezy kernel: [ 4.535099] r8192ee-0:_rtl_pci_find_adapter():<0-0> Pci Bridge Vendor is found index: 0
> May 14 20:24:22 wheezy kernel: [ 4.535102] r8192ee-0:_rtl_pci_find_adapter():<0-0> pcidev busnumber:devnumber:funcnumber:vendor:link_ctl 2:0:0:10ec:0
> May 14 20:24:22 wheezy kernel: [ 4.535103] r8192ee-0:_rtl_pci_find_adapter():<0-0> pci_bridge busnumber:devnumber:funcnumber:vendor:pcie_cap:link_ctl_reg:amd 0:28:1:8086:40:43:0
> May 14 20:24:22 wheezy kernel: [ 4.535139] r8192ee-0:rtl92ee_read_eeprom_info():<0-0> Boot from EFUSE
> May 14 20:24:22 wheezy kernel: [ 4.543354] r8192ee-0:_rtl92ee_read_adapter_info():<0-0> dev_addr: 54:35:30:0e:6c:8b
> May 14 20:24:22 wheezy kernel: [ 4.543359] r8192ee-0:_rtl92ee_hal_customized_behavior():<0-0> RT Customized ID: 0x12
> May 14 20:24:22 wheezy kernel: [ 5.028045] r8192ee 0000:02:00.0: irq 46 for MSI/MSI-X
> May 14 20:24:24 wheezy NetworkManager[3060]: SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:1c.1/0000:02:00.0/net/wlan0, iface: wlan0)
> May 14 20:24:24 wheezy NetworkManager[3060]: SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:1c.1/0000:02:00.0/net/wlan0, iface: wlan0): no ifupdown configuration found.
> May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): using nl80211 for WiFi device control
> May 14 20:24:25 wheezy NetworkManager[3060]: <warn> (wlan0): driver supports Access Point (AP) mode
> May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): new 802.11 WiFi device (driver: 'r8192ee' ifindex: 3)
> May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): exported as /org/freedesktop/NetworkManager/Devices/1
> May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): now managed
> May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
> May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): bringing up device.
> May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): preparing device.
> May 14 20:24:25 wheezy NetworkManager[3060]: <info> (wlan0): deactivating device (reason 'managed') [2]
> May 14 20:24:25 wheezy kernel: [ 12.495196] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
> May 14 20:24:26 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: starting -> ready
> May 14 20:24:26 wheezy NetworkManager[3060]: <info> (wlan0): device state change: unavailable -> disconnected (reason 'supplicant-available') [20 30 42]
> May 14 20:24:26 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: ready -> inactive
> May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0) starting connection 'zuHause'
> May 14 20:24:27 wheezy NetworkManager[3060]: <info> (wlan0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
> May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
> May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
> May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
> May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
> May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
> May 14 20:24:27 wheezy NetworkManager[3060]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
> May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0/wireless): connection 'zuHause' has security, and secrets exist. No new secrets needed.
> May 14 20:24:27 wheezy NetworkManager[3060]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
> May 14 20:24:27 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: inactive -> scanning
> May 14 20:24:28 wheezy kernel: [ 15.309062] wlan0: authenticate with bc:05:43:79:f9:47
> May 14 20:24:28 wheezy wpa_supplicant[3283]: wlan0: SME: Trying to authenticate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
> May 14 20:24:28 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: scanning -> authenticating
> May 14 20:24:28 wheezy kernel: [ 15.325612] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
> May 14 20:24:28 wheezy kernel: [ 15.528819] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
> May 14 20:24:29 wheezy kernel: [ 15.733017] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
> May 14 20:24:29 wheezy kernel: [ 15.937246] wlan0: authentication with bc:05:43:79:f9:47 timed out
> May 14 20:24:29 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: authenticating -> disconnected
> May 14 20:24:29 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: disconnected -> scanning
> May 14 20:24:44 wheezy kernel: [ 30.818085] wlan0: authenticate with bc:05:43:79:f9:47
> May 14 20:24:44 wheezy wpa_supplicant[3283]: wlan0: SME: Trying to authenticate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
> May 14 20:24:44 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: scanning -> authenticating
> May 14 20:24:44 wheezy kernel: [ 30.834522] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
> May 14 20:24:44 wheezy kernel: [ 31.037817] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
> May 14 20:24:44 wheezy kernel: [ 31.242066] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
> May 14 20:24:44 wheezy kernel: [ 31.446289] wlan0: authentication with bc:05:43:79:f9:47 timed out
> May 14 20:24:44 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: authenticating -> disconnected
> May 14 20:24:44 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: disconnected -> scanning
> May 14 20:24:53 wheezy wpa_supplicant[3283]: wlan0: SME: Trying to authenticate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
> May 14 20:24:53 wheezy kernel: [ 39.723989] wlan0: authenticate with bc:05:43:79:f9:47
> May 14 20:24:53 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: scanning -> authenticating
> May 14 20:24:53 wheezy kernel: [ 39.740451] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
> May 14 20:24:53 wheezy kernel: [ 39.943682] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
> May 14 20:24:53 wheezy NetworkManager[3060]: <warn> Activation (wlan0/wireless): association took too long.
> May 14 20:24:53 wheezy NetworkManager[3060]: <info> (wlan0): device state change: config -> need-auth (reason 'none') [50 60 0]
> May 14 20:24:53 wheezy NetworkManager[3060]: <warn> Activation (wlan0/wireless): asking for new secrets
> May 14 20:24:53 wheezy NetworkManager[3060]: <info> (wlan0): supplicant interface state: authenticating -> disconnected
> May 14 20:24:53 wheezy kernel: [ 40.147848] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
> May 14 20:24:53 wheezy kernel: [ 40.352083] wlan0: authentication with bc:05:43:79:f9:47 timed out
> May 14 20:26:53 wheezy NetworkManager[3060]: <info> (wlan0): device state change: need-auth -> failed (reason 'no-secrets') [60 120 7]
> May 14 20:26:53 wheezy NetworkManager[3060]: <warn> Activation (wlan0) failed for access point (FRITZ!Box Fon WLAN 7112)
> May 14 20:26:53 wheezy NetworkManager[3060]: <warn> Activation (wlan0) failed.
> May 14 20:26:53 wheezy NetworkManager[3060]: <info> (wlan0): device state change: failed -> disconnected (reason 'none') [120 30 0]
> May 14 20:26:53 wheezy NetworkManager[3060]: <info> (wlan0): deactivating device (reason 'none') [0]
> May 14 20:31:32 wheezy NetworkManager[3060]: <info> (wlan0): now unmanaged
> May 14 20:31:32 wheezy NetworkManager[3060]: <info> (wlan0): device state change: disconnected -> unmanaged (reason 'removed') [30 10 36]
> May 14 20:31:32 wheezy NetworkManager[3060]: <info> (wlan0): cleaning up...
> May 14 20:31:32 wheezy NetworkManager[3060]: <info> (wlan0): taking down device.
> May 14 20:31:47 wheezy NetworkManager[4773]: SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:1c.1/0000:02:00.0/net/wlan0, iface: wlan0)
> May 14 20:31:47 wheezy NetworkManager[4773]: SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:1c.1/0000:02:00.0/net/wlan0, iface: wlan0): no ifupdown configuration found.
> May 14 20:31:47 wheezy NetworkManager[4773]: <debug> [1400092307.779457] [nm-device-wifi.c:297] constructor(): (wlan0): kernel ifindex 3
> May 14 20:31:47 wheezy NetworkManager[4773]: <info> (wlan0): using nl80211 for WiFi device control
> May 14 20:31:47 wheezy NetworkManager[4773]: <warn> (wlan0): driver supports Access Point (AP) mode
> May 14 20:31:47 wheezy NetworkManager[4773]: <debug> [1400092307.779673] [nm-device-wifi.c:2626] real_update_initial_hw_address(): (wlan0): read initial MAC address 54:35:30:0E:6C:8B
> May 14 20:31:47 wheezy NetworkManager[4773]: <debug> [1400092307.779748] [nm-device-wifi.c:3213] real_set_enabled(): (wlan0): device now enabled
> May 14 20:31:47 wheezy NetworkManager[4773]: <debug> [1400092307.779756] [nm-device-wifi.c:3219] real_set_enabled(): (enable): wlan0 blocked by UNMANAGED state
> May 14 20:31:47 wheezy NetworkManager[4773]: <info> (wlan0): new 802.11 WiFi device (driver: 'r8192ee' ifindex: 3)
> May 14 20:31:47 wheezy NetworkManager[4773]: <info> (wlan0): exported as /org/freedesktop/NetworkManager/Devices/2
> May 14 20:31:47 wheezy NetworkManager[4773]: <info> (wlan0): now managed
> May 14 20:31:47 wheezy NetworkManager[4773]: <info> (wlan0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
> May 14 20:31:47 wheezy NetworkManager[4773]: <info> (wlan0): bringing up device.
> May 14 20:31:48 wheezy NetworkManager[4773]: <info> (wlan0): preparing device.
> May 14 20:31:48 wheezy NetworkManager[4773]: <info> (wlan0): deactivating device (reason 'managed') [2]
> May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.443178] [nm-device-wifi.c:868] _set_hw_addr(): (wlan0): no MAC address change needed
> May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.443239] [nm-system.c:1205] nm_system_iface_flush_routes(): (wlan0): flushing routes ifindex 3 family INET (2)
> May 14 20:31:48 wheezy kernel: [ 455.536392] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
> May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.443368] [nm-system.c:196] sync_addresses(): (wlan0): syncing addresses (family 2)
> May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.443481] [nm-supplicant-manager.c:88] nm_supplicant_manager_iface_get(): (wlan0): creating new supplicant interface
> May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.443613] [nm-supplicant-interface.c:829] interface_add(): (wlan0): adding interface to supplicant
> May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.443740] [nm-device-wifi.c:1308] real_is_available(): (wlan0): not available because supplicant interface not ready
> May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.443750] [nm-device.c:4334] nm_device_state_changed(): (wlan0): device not yet available for transition to DISCONNECTED
> May 14 20:31:48 wheezy NetworkManager[4773]: <debug> [1400092308.446310] [nm-supplicant-interface.c:658] interface_add_done(): (wlan0): interface added to supplicant
> May 14 20:31:48 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: starting -> ready
> May 14 20:31:48 wheezy NetworkManager[4773]: <info> (wlan0): device state change: unavailable -> disconnected (reason 'supplicant-available') [20 30 42]
> May 14 20:31:48 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: ready -> inactive
> May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0) starting connection 'zuHause'
> May 14 20:31:49 wheezy NetworkManager[4773]: <info> (wlan0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
> May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
> May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
> May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
> May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
> May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
> May 14 20:31:49 wheezy NetworkManager[4773]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
> May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0/wireless): connection 'zuHause' has security, and secrets exist. No new secrets needed.
> May 14 20:31:49 wheezy NetworkManager[4773]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
> May 14 20:31:49 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: inactive -> scanning
> May 14 20:31:50 wheezy wpa_supplicant[3283]: wlan0: SME: Trying to authenticate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
> May 14 20:31:50 wheezy kernel: [ 457.435757] wlan0: authenticate with bc:05:43:79:f9:47
> May 14 20:31:50 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: scanning -> authenticating
> May 14 20:31:50 wheezy kernel: [ 457.451936] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
> May 14 20:31:50 wheezy kernel: [ 457.655213] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
> May 14 20:31:50 wheezy kernel: [ 457.859404] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
> May 14 20:31:50 wheezy kernel: [ 458.063663] wlan0: authentication with bc:05:43:79:f9:47 timed out
> May 14 20:31:50 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: authenticating -> disconnected
> May 14 20:31:51 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: disconnected -> scanning
> May 14 20:31:52 wheezy wpa_supplicant[3283]: wlan0: SME: Trying to authenticate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
> May 14 20:31:52 wheezy kernel: [ 459.749891] wlan0: authenticate with bc:05:43:79:f9:47
> May 14 20:31:52 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: scanning -> authenticating
> May 14 20:31:52 wheezy kernel: [ 459.766582] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
> May 14 20:31:52 wheezy kernel: [ 459.969757] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
> May 14 20:31:53 wheezy kernel: [ 460.173983] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
> May 14 20:31:53 wheezy kernel: [ 460.378161] wlan0: authentication with bc:05:43:79:f9:47 timed out
> May 14 20:31:53 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: authenticating -> disconnected
> May 14 20:31:53 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: disconnected -> scanning
> May 14 20:32:08 wheezy wpa_supplicant[3283]: wlan0: SME: Trying to authenticate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
> May 14 20:32:08 wheezy kernel: [ 475.255128] wlan0: authenticate with bc:05:43:79:f9:47
> May 14 20:32:08 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: scanning -> authenticating
> May 14 20:32:08 wheezy kernel: [ 475.271622] wlan0: direct probe to bc:05:43:79:f9:47 (try 1/3)
> May 14 20:32:08 wheezy kernel: [ 475.474812] wlan0: direct probe to bc:05:43:79:f9:47 (try 2/3)
> May 14 20:32:08 wheezy kernel: [ 475.678994] wlan0: direct probe to bc:05:43:79:f9:47 (try 3/3)
> May 14 20:32:08 wheezy kernel: [ 475.883266] wlan0: authentication with bc:05:43:79:f9:47 timed out
> May 14 20:32:08 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: authenticating -> disconnected
> May 14 20:32:08 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: disconnected -> scanning
> May 14 20:32:14 wheezy NetworkManager[4773]: <warn> Activation (wlan0/wireless): association took too long.
> May 14 20:32:14 wheezy NetworkManager[4773]: <info> (wlan0): device state change: config -> need-auth (reason 'none') [50 60 0]
> May 14 20:32:14 wheezy NetworkManager[4773]: <warn> Activation (wlan0/wireless): asking for new secrets
> May 14 20:32:14 wheezy NetworkManager[4773]: <info> (wlan0): supplicant interface state: scanning -> disconnected
> May 14 20:34:14 wheezy NetworkManager[4773]: <info> (wlan0): device state change: need-auth -> failed (reason 'no-secrets') [60 120 7]
> May 14 20:34:14 wheezy NetworkManager[4773]: <warn> Activation (wlan0) failed for access point (FRITZ!Box Fon WLAN 7112)
> May 14 20:34:14 wheezy NetworkManager[4773]: <warn> Activation (wlan0) failed.
> May 14 20:34:14 wheezy NetworkManager[4773]: <debug> [1400092454.745122] [nm-device.c:4404] nm_device_queue_state(): (wlan0): queued state change to disconnected (id 141)
> May 14 20:34:14 wheezy NetworkManager[4773]: <debug> [1400092454.745268] [nm-device.c:4372] queued_set_state(): (wlan0): running queued state change to disconnected (id 141)
> May 14 20:34:14 wheezy NetworkManager[4773]: <info> (wlan0): device state change: failed -> disconnected (reason 'none') [120 30 0]
> May 14 20:34:14 wheezy NetworkManager[4773]: <info> (wlan0): deactivating device (reason 'none') [0]
> May 14 20:34:14 wheezy NetworkManager[4773]: <debug> [1400092454.745297] [nm-firewall-manager.c:157] nm_firewall_manager_remove_from_zone(): (wlan0) firewall zone remove skipped (not running)
> May 14 20:34:14 wheezy NetworkManager[4773]: <debug> [1400092454.745371] [nm-device-wifi.c:868] _set_hw_addr(): (wlan0): no MAC address change needed
> May 14 20:34:14 wheezy NetworkManager[4773]: <debug> [1400092454.745473] [nm-system.c:1205] nm_system_iface_flush_routes(): (wlan0): flushing routes ifindex 3 family INET (2)
> May 14 20:34:14 wheezy NetworkManager[4773]: <debug> [1400092454.745622] [nm-system.c:196] sync_addresses(): (wlan0): syncing addresses (family 2)

If you run wpa_supplicant in full debug mode (-ddd as a switch), and post that 
wpa_supplicant.log, I mat be able to tell more. How you do that depends on the 
distro, thus you will need to research that yourself.

On my openSUSE system also using NetworkMananger to control the network, I get 
the following:

[41631.463002] r8192ee: module is from the staging directory, the quality is 
unknown, you have been warned.
[41631.470822] mem mapped space: start: 0xf8000000 len:00004000 flags:00140204, 
after map:0xffffc90001370000
[41631.470842] pcidev busnumber:devnumber:funcnumber:vendor:link_ctl 6:0:0:10ec:0
[41631.470846] pci_bridge 
busnumber:devnumber:funcnumber:vendor:pcie_cap:link_ctl_reg:amd 0:0:0:0:0:0:0
[41631.470872] Boot from EFUSE
[41631.478125] dev_addr: 00:e0:4c:03:71:04
[41631.478140] RT Customized ID: 0x00
[41631.544849] ieee80211 phy2: Selected rate control algorithm 'rtl_rc'
[41631.555570] cfg80211: Calling CRDA for country: EC
[41631.556474] rtlwifi: wireless switch is on
[41631.556610] r8192ee 0000:06:00.0: irq 42 for MSI/MSI-X
[41631.588967] systemd-udevd[22364]: renamed network interface wlan1 to wlp6s0
[41631.588995] cfg80211: Regulatory domain changed to country: EC
[41631.589317] cfg80211:  DFS Master region: unset
[41631.589321] cfg80211:   (start_freq - end_freq @ bandwidth), 
(max_antenna_gain, max_eirp), (dfs_cac_time)
[41631.589326] cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 
mBm), (N/A)
[41631.589331] cfg80211:   (5170000 KHz - 5250000 KHz @ 20000 KHz), (300 mBi, 
1700 mBm), (N/A)
[41631.589335] cfg80211:   (5250000 KHz - 5330000 KHz @ 20000 KHz), (300 mBi, 
2300 mBm), (0 s)
[41631.589339] cfg80211:   (5735000 KHz - 5835000 KHz @ 20000 KHz), (300 mBi, 
3000 mBm), (N/A)
[41632.480263] IPv6: ADDRCONF(NETDEV_UP): wlp6s0: link is not ready
[41635.934597] wlp6s0: authenticate with 20:e5:2a:01:f7:ea
[41635.960459] wlp6s0: send auth to 20:e5:2a:01:f7:ea (try 1/3)
[41635.962744] wlp6s0: authenticated
[41635.964114] wlp6s0: associate with 20:e5:2a:01:f7:ea (try 1/3)
[41635.968679] sta is NULL
[41635.971650] wlp6s0: RX AssocResp from 20:e5:2a:01:f7:ea (capab=0x411 status=0 
aid=2)
[41635.985969] wlp6s0: associated
[41635.986082] IPv6: ADDRCONF(NETDEV_CHANGE): wlp6s0: link becomes ready

Notice that is authenticates and associates on the first try, which is what I 
would expect.


Larry


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

* Re: Kernel binary for RTL8192EE
  2014-05-14 19:30   ` Larry Finger
@ 2014-05-14 20:22     ` stefan.krueger
  0 siblings, 0 replies; 6+ messages in thread
From: stefan.krueger @ 2014-05-14 20:22 UTC (permalink / raw)
  To: Larry Finger; +Cc: linux-wireless

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

here is the log.. i hope it is not too long..





wpa_supplicant v1.0
random: Trying to read entropy from /dev/random
Initializing interface 'wlan0' conf '/tmp/test.conf' driver 'default' ctrl_interface 'N/A' bridge 'N/A'
Configuration file '/tmp/test.conf' -> '/tmp/test.conf'
Reading configuration file '/tmp/test.conf'
Line: 1 - start of a new network block
ssid - hexdump_ascii(len=23):
46 52 49 54 5a 21 42 6f 78 20 46 6f 6e 20 57 4c FRITZ!Box Fon WL
41 4e 20 37 31 31 32 AN 7112
PSK - hexdump(len=32): [REMOVED]
Priority group 0
id=0 ssid='FRITZ!Box Fon WLAN 7112'
WEXT: cfg80211-based driver detected
wext: interface wlan0 phy: phy0
rfkill: initial event: idx=0 type=2 op=0 soft=0 hard=0
rfkill: initial event: idx=1 type=1 op=0 soft=0 hard=0
rfkill: initial event: idx=2 type=2 op=0 soft=0 hard=0
SIOCGIWRANGE: WE(compiled)=22 WE(source)=21 enc_capa=0xf
capabilities: key_mgmt 0xf enc 0xf flags 0x0
netlink: Operstate: linkmode=1, operstate=5
wlan0: Own MAC address: 54:35:30:0e:6c:8b
wpa_driver_wext_set_key: alg=0 key_idx=0 set_tx=0 seq_len=0 key_len=0
wpa_driver_wext_set_key: alg=0 key_idx=1 set_tx=0 seq_len=0 key_len=0
wpa_driver_wext_set_key: alg=0 key_idx=2 set_tx=0 seq_len=0 key_len=0
wpa_driver_wext_set_key: alg=0 key_idx=3 set_tx=0 seq_len=0 key_len=0
wpa_driver_wext_set_key: alg=0 key_idx=4 set_tx=0 seq_len=0 key_len=0
Driver did not support SIOCSIWENCODEEXT
wpa_driver_wext_set_key: alg=0 key_idx=5 set_tx=0 seq_len=0 key_len=0
Driver did not support SIOCSIWENCODEEXT
wpa_driver_wext_set_countermeasures
wlan0: RSN: flushing PMKID list in the driver
wlan0: Setting scan request: 0 sec 100000 usec
WPS: Set UUID for interface wlan0
WPS: UUID based on MAC address - hexdump(len=16): 9d 84 25 e1 02 40 50 14 a8 86 d4 89 6f 25 99 9e
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
wlan0: Added interface wlan0
Daemonize..
random: Got 20/20 bytes from /dev/random
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=16
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 10 seconds
EAPOL: disable timer tick
EAPOL: Supplicant port status: Unauthorized
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 1091 bytes of scan results (2 BSSes)
Sorted scan results
f4:ec:38:bd:63:d2 freq=2452 qual=46 noise=0 level=-64 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=46 noise=0 level=-64 flags=0xa
wlan0: BSS: Start scan result update 1
wlan0: BSS: Add new id 0 BSSID f4:ec:38:bd:63:d2 SSID 'Honeypot'
wlan0: BSS: Add new id 1 BSSID 00:23:54:ac:69:61 SSID 'c46bec'
Add randomness: count=1 entropy=0
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=2 entropy=1
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 1: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: No suitable network found
wlan0: Setting scan request: 5 sec 0 usec
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 2058 bytes of scan results (4 BSSes)
Sorted scan results
bc:05:43:79:f9:47 freq=2412 qual=54 noise=0 level=-56 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=46 noise=0 level=-64 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=46 noise=0 level=-64 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=42 noise=0 level=-68 flags=0xa
wlan0: BSS: Start scan result update 2
wlan0: BSS: Add new id 2 BSSID bc:05:43:79:f9:47 SSID 'FRITZ!Box Fon WLAN 7112'
wlan0: BSS: Add new id 3 BSSID cc:5d:4e:ed:5e:a0 SSID 'WLAN0511-24'
Add randomness: count=3 entropy=2
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=4 entropy=3
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=5 entropy=4
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=6 entropy=5
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-56
wlan0: selected based on RSN IE
wlan0: selected BSS bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112'
wlan0: Request association: reassociate: 0 selected: bc:05:43:79:f9:47 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING
wlan0: Trying to associate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
wlan0: Automatic auth_alg selection: 0x1
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 8 pairwise 16 key_mgmt 2 proto 2
WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 00 00
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: WPA: using GTK TKIP
wlan0: WPA: using PTK CCMP
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: not using MGMT group cipher
WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: No keys have been configured - skip key clearing
wlan0: State: SCANNING -> ASSOCIATING
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
wpa_driver_wext_associate
wpa_driver_wext_set_drop_unencrypted
wpa_driver_wext_set_psk
wlan0: Association request to the driver failed
wlan0: Setting authentication timeout: 5 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - EAP fail=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portControl=Auto
EAPOL: Supplicant port status: Unauthorized
RSN: Ignored PMKID candidate without preauth flag
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=16
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=39
wlan0: Authentication with bc:05:43:79:f9:47 timed out.
Added BSSID bc:05:43:79:f9:47 into blacklist
wlan0: No keys have been configured - skip key clearing
wlan0: State: ASSOCIATING -> DISCONNECTED
wpa_driver_wext_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
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
wlan0: Setting scan request: 1 sec 0 usec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 2522 bytes of scan results (5 BSSes)
Sorted scan results
bc:05:43:79:f9:47 freq=2412 qual=58 noise=0 level=-52 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=46 noise=0 level=-64 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=46 noise=0 level=-64 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=42 noise=0 level=-68 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=38 noise=0 level=-72 flags=0xa
wlan0: BSS: Start scan result update 3
wlan0: BSS: Add new id 4 BSSID 00:1c:4a:46:75:28 SSID 'WLAN-001C4A467528'
Add randomness: count=7 entropy=6
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=8 entropy=7
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=9 entropy=8
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=10 entropy=9
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=11 entropy=10
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-52
wlan0: skip - blacklisted (count=1 limit=0)
wlan0: 1: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 2: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 3: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-68
wlan0: skip - SSID mismatch
wlan0: 4: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-72
wlan0: skip - SSID mismatch
wlan0: No APs found - clear blacklist and try again
Removed BSSID bc:05:43:79:f9:47 from blacklist (clear)
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-52
wlan0: selected based on RSN IE
wlan0: selected BSS bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112'
wlan0: Request association: reassociate: 1 selected: bc:05:43:79:f9:47 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING
wlan0: Trying to associate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
wlan0: Automatic auth_alg selection: 0x1
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 8 pairwise 16 key_mgmt 2 proto 2
WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 00 00
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: WPA: using GTK TKIP
wlan0: WPA: using PTK CCMP
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: not using MGMT group cipher
WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: No keys have been configured - skip key clearing
wlan0: State: SCANNING -> ASSOCIATING
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
wpa_driver_wext_associate
wpa_driver_wext_set_drop_unencrypted
wpa_driver_wext_set_psk
wlan0: Association request to the driver failed
wlan0: Setting authentication timeout: 5 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - EAP fail=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portControl=Auto
EAPOL: Supplicant port status: Unauthorized
RSN: Ignored PMKID candidate without preauth flag
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=16
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=39
wlan0: Authentication with bc:05:43:79:f9:47 timed out.
Added BSSID bc:05:43:79:f9:47 into blacklist
wlan0: No keys have been configured - skip key clearing
wlan0: State: ASSOCIATING -> DISCONNECTED
wpa_driver_wext_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
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
wlan0: Setting scan request: 1 sec 0 usec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 2047 bytes of scan results (4 BSSes)
Sorted scan results
cc:5d:4e:ed:5e:a0 freq=2472 qual=50 noise=0 level=-60 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=46 noise=0 level=-64 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=46 noise=0 level=-64 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=38 noise=0 level=-72 flags=0xa
wlan0: BSS: Start scan result update 4
Add randomness: count=12 entropy=11
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=13 entropy=12
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=14 entropy=13
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=15 entropy=14
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60
wlan0: skip - SSID mismatch
wlan0: 1: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 2: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 3: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-72
wlan0: skip - SSID mismatch
wlan0: No APs found - clear blacklist and try again
Removed BSSID bc:05:43:79:f9:47 from blacklist (clear)
wlan0: Selecting BSS from priority group 0
wlan0: 0: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60
wlan0: skip - SSID mismatch
wlan0: 1: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 2: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 3: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-72
wlan0: skip - SSID mismatch
wlan0: No suitable network found
wlan0: Setting scan request: 5 sec 0 usec
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 3235 bytes of scan results (6 BSSes)
Sorted scan results
cc:5d:4e:ed:5e:a0 freq=2472 qual=50 noise=0 level=-60 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=46 noise=0 level=-64 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=46 noise=0 level=-64 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=38 noise=0 level=-72 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=38 noise=0 level=-72 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=36 noise=0 level=-74 flags=0xa
wlan0: BSS: Start scan result update 5
wlan0: BSS: Add new id 5 BSSID 74:31:70:a9:6d:f9 SSID 'Mohr'
wlan0: BSS: Add new id 6 BSSID 08:96:d7:4f:7d:97 SSID 'FRITZ!Box 7312'
wlan0: BSS: Expire BSS 2 due to no match in scan
wlan0: BSS: Remove id 2 BSSID bc:05:43:79:f9:47 SSID 'FRITZ!Box Fon WLAN 7112'
Add randomness: count=16 entropy=15
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=17 entropy=16
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=18 entropy=17
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=19 entropy=18
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=20 entropy=19
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=21 entropy=20
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60
wlan0: skip - SSID mismatch
wlan0: 1: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 2: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 3: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-72
wlan0: skip - SSID mismatch
wlan0: 4: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 5: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: No suitable network found
wlan0: Setting scan request: 5 sec 0 usec
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 4029 bytes of scan results (8 BSSes)
Sorted scan results
bc:05:43:79:f9:47 freq=2412 qual=62 noise=0 level=-48 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=50 noise=0 level=-60 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=46 noise=0 level=-64 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=42 noise=0 level=-68 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=38 noise=0 level=-72 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=38 noise=0 level=-72 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=36 noise=0 level=-74 flags=0xa
bc:05:43:17:3d:8d freq=2447 qual=36 noise=0 level=-74 flags=0xa
wlan0: BSS: Start scan result update 6
wlan0: BSS: Add new id 7 BSSID bc:05:43:79:f9:47 SSID 'FRITZ!Box Fon WLAN 7112'
wlan0: BSS: Add new id 8 BSSID bc:05:43:17:3d:8d SSID 'Engelchens FRITZ!Box'
Add randomness: count=22 entropy=21
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=23 entropy=22
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=24 entropy=23
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=25 entropy=24
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=26 entropy=25
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=27 entropy=26
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=28 entropy=27
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=29 entropy=28
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-48
wlan0: selected based on RSN IE
wlan0: selected BSS bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112'
wlan0: Request association: reassociate: 1 selected: bc:05:43:79:f9:47 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING
wlan0: Trying to associate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
wlan0: Automatic auth_alg selection: 0x1
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 8 pairwise 16 key_mgmt 2 proto 2
WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 00 00
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: WPA: using GTK TKIP
wlan0: WPA: using PTK CCMP
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: not using MGMT group cipher
WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: No keys have been configured - skip key clearing
wlan0: State: SCANNING -> ASSOCIATING
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
wpa_driver_wext_associate
wpa_driver_wext_set_drop_unencrypted
wpa_driver_wext_set_psk
wlan0: Association request to the driver failed
wlan0: Setting authentication timeout: 5 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - EAP fail=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portControl=Auto
EAPOL: Supplicant port status: Unauthorized
RSN: Ignored PMKID candidate without preauth flag
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=16
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=39
wlan0: Authentication with bc:05:43:79:f9:47 timed out.
Added BSSID bc:05:43:79:f9:47 into blacklist
wlan0: No keys have been configured - skip key clearing
wlan0: State: ASSOCIATING -> DISCONNECTED
wpa_driver_wext_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
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
wlan0: Setting scan request: 1 sec 0 usec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 4062 bytes of scan results (8 BSSes)
Sorted scan results
cc:5d:4e:ed:5e:a0 freq=2472 qual=50 noise=0 level=-60 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=46 noise=0 level=-64 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=42 noise=0 level=-68 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=38 noise=0 level=-72 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=38 noise=0 level=-72 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=36 noise=0 level=-74 flags=0xa
bc:05:43:17:3d:8d freq=2447 qual=36 noise=0 level=-74 flags=0xa
bc:05:43:79:f9:47 freq=2412 qual=58 noise=0 level=-52 flags=0xa
wlan0: BSS: Start scan result update 7
Add randomness: count=30 entropy=29
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=31 entropy=30
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=32 entropy=31
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=33 entropy=32
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=34 entropy=33
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=35 entropy=34
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=36 entropy=35
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=37 entropy=36
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60
wlan0: skip - SSID mismatch
wlan0: 1: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 2: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-68 wps
wlan0: skip - SSID mismatch
wlan0: 3: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-72
wlan0: skip - SSID mismatch
wlan0: 4: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 5: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 6: bc:05:43:17:3d:8d ssid='Engelchens FRITZ!Box' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 7: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=0 rsn_ie_len=0 caps=0x11 level=-52
wlan0: skip - blacklisted (count=1 limit=0)
wlan0: No APs found - clear blacklist and try again
Removed BSSID bc:05:43:79:f9:47 from blacklist (clear)
wlan0: Selecting BSS from priority group 0
wlan0: 0: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60
wlan0: skip - SSID mismatch
wlan0: 1: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 2: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-68 wps
wlan0: skip - SSID mismatch
wlan0: 3: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-72
wlan0: skip - SSID mismatch
wlan0: 4: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 5: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 6: bc:05:43:17:3d:8d ssid='Engelchens FRITZ!Box' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 7: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=0 rsn_ie_len=0 caps=0x11 level=-52
wlan0: skip - no WPA/RSN proto match
wlan0: No suitable network found
wlan0: Setting scan request: 5 sec 0 usec
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 3749 bytes of scan results (7 BSSes)
Sorted scan results
bc:05:43:79:f9:47 freq=2412 qual=58 noise=0 level=-52 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=50 noise=0 level=-60 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=50 noise=0 level=-60 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=46 noise=0 level=-64 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=38 noise=0 level=-72 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=36 noise=0 level=-74 flags=0xa
bc:05:43:17:3d:8d freq=2447 qual=36 noise=0 level=-74 flags=0xa
wlan0: BSS: Start scan result update 8
Add randomness: count=38 entropy=37
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=39 entropy=38
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=40 entropy=39
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=41 entropy=40
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=42 entropy=41
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=43 entropy=42
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=44 entropy=43
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-52
wlan0: selected based on RSN IE
wlan0: selected BSS bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112'
wlan0: Request association: reassociate: 1 selected: bc:05:43:79:f9:47 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING
wlan0: Trying to associate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
wlan0: Automatic auth_alg selection: 0x1
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 8 pairwise 16 key_mgmt 2 proto 2
WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 00 00
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: WPA: using GTK TKIP
wlan0: WPA: using PTK CCMP
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: not using MGMT group cipher
WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: No keys have been configured - skip key clearing
wlan0: State: SCANNING -> ASSOCIATING
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
wpa_driver_wext_associate
wpa_driver_wext_set_drop_unencrypted
wpa_driver_wext_set_psk
wlan0: Association request to the driver failed
wlan0: Setting authentication timeout: 5 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - EAP fail=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portControl=Auto
EAPOL: Supplicant port status: Unauthorized
RSN: Ignored PMKID candidate without preauth flag
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=16
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=39
wlan0: Authentication with bc:05:43:79:f9:47 timed out.
Added BSSID bc:05:43:79:f9:47 into blacklist
wlan0: No keys have been configured - skip key clearing
wlan0: State: ASSOCIATING -> DISCONNECTED
wpa_driver_wext_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
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
wlan0: Setting scan request: 1 sec 0 usec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 3792 bytes of scan results (7 BSSes)
Sorted scan results
bc:05:43:79:f9:47 freq=2412 qual=58 noise=0 level=-52 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=46 noise=0 level=-64 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=46 noise=0 level=-64 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=38 noise=0 level=-72 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=36 noise=0 level=-74 flags=0xa
bc:05:43:17:3d:8d freq=2447 qual=36 noise=0 level=-74 flags=0xa
00:24:fe:72:e7:43 freq=2462 qual=36 noise=0 level=-74 flags=0xa
wlan0: BSS: Start scan result update 9
wlan0: BSS: Add new id 9 BSSID 00:24:fe:72:e7:43 SSID 'Der Alte Fritz'
wlan0: BSS: Expire BSS 4 due to no match in scan
wlan0: BSS: Remove id 4 BSSID 00:1c:4a:46:75:28 SSID 'WLAN-001C4A467528'
Add randomness: count=45 entropy=44
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=46 entropy=45
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=47 entropy=46
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=48 entropy=47
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=49 entropy=48
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=50 entropy=49
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=51 entropy=50
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-52
wlan0: skip - blacklisted (count=1 limit=0)
wlan0: 1: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 2: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 3: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 4: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 5: bc:05:43:17:3d:8d ssid='Engelchens FRITZ!Box' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 6: 00:24:fe:72:e7:43 ssid='Der Alte Fritz' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: No APs found - clear blacklist and try again
Removed BSSID bc:05:43:79:f9:47 from blacklist (clear)
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-52
wlan0: selected based on RSN IE
wlan0: selected BSS bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112'
wlan0: Request association: reassociate: 1 selected: bc:05:43:79:f9:47 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING
wlan0: Trying to associate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
wlan0: Automatic auth_alg selection: 0x1
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 8 pairwise 16 key_mgmt 2 proto 2
WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 00 00
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: WPA: using GTK TKIP
wlan0: WPA: using PTK CCMP
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: not using MGMT group cipher
WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: No keys have been configured - skip key clearing
wlan0: State: SCANNING -> ASSOCIATING
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
wpa_driver_wext_associate
wpa_driver_wext_set_drop_unencrypted
wpa_driver_wext_set_psk
wlan0: Association request to the driver failed
wlan0: Setting authentication timeout: 5 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - EAP fail=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portControl=Auto
EAPOL: Supplicant port status: Unauthorized
RSN: Ignored PMKID candidate without preauth flag
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=16
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=39
wlan0: Authentication with bc:05:43:79:f9:47 timed out.
Added BSSID bc:05:43:79:f9:47 into blacklist
wlan0: No keys have been configured - skip key clearing
wlan0: State: ASSOCIATING -> DISCONNECTED
wpa_driver_wext_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
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
wlan0: Setting scan request: 1 sec 0 usec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 2605 bytes of scan results (5 BSSes)
Sorted scan results
bc:05:43:79:f9:47 freq=2412 qual=58 noise=0 level=-52 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=50 noise=0 level=-60 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=46 noise=0 level=-64 flags=0xa
bc:05:43:17:3d:8d freq=2447 qual=36 noise=0 level=-74 flags=0xa
00:24:fe:72:e7:43 freq=2462 qual=36 noise=0 level=-74 flags=0xa
wlan0: BSS: Start scan result update 10
wlan0: BSS: Expire BSS 3 due to no match in scan
wlan0: BSS: Remove id 3 BSSID cc:5d:4e:ed:5e:a0 SSID 'WLAN0511-24'
Add randomness: count=52 entropy=51
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=53 entropy=52
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=54 entropy=53
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=55 entropy=54
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=56 entropy=55
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-52
wlan0: skip - blacklisted (count=1 limit=0)
wlan0: 1: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-60 wps
wlan0: skip - SSID mismatch
wlan0: 2: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 3: bc:05:43:17:3d:8d ssid='Engelchens FRITZ!Box' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 4: 00:24:fe:72:e7:43 ssid='Der Alte Fritz' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: No APs found - clear blacklist and try again
Removed BSSID bc:05:43:79:f9:47 from blacklist (clear)
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-52
wlan0: selected based on RSN IE
wlan0: selected BSS bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112'
wlan0: Request association: reassociate: 1 selected: bc:05:43:79:f9:47 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING
wlan0: Trying to associate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
wlan0: Automatic auth_alg selection: 0x1
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 8 pairwise 16 key_mgmt 2 proto 2
WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 00 00
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: WPA: using GTK TKIP
wlan0: WPA: using PTK CCMP
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: not using MGMT group cipher
WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: No keys have been configured - skip key clearing
wlan0: State: SCANNING -> ASSOCIATING
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
wpa_driver_wext_associate
wpa_driver_wext_set_drop_unencrypted
wpa_driver_wext_set_psk
wlan0: Association request to the driver failed
wlan0: Setting authentication timeout: 5 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - EAP fail=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portControl=Auto
EAPOL: Supplicant port status: Unauthorized
RSN: Ignored PMKID candidate without preauth flag
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=16
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=39
wlan0: Authentication with bc:05:43:79:f9:47 timed out.
Added BSSID bc:05:43:79:f9:47 into blacklist
wlan0: No keys have been configured - skip key clearing
wlan0: State: ASSOCIATING -> DISCONNECTED
wpa_driver_wext_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
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
wlan0: Setting scan request: 1 sec 0 usec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 2105 bytes of scan results (4 BSSes)
Sorted scan results
bc:05:43:79:f9:47 freq=2412 qual=54 noise=0 level=-56 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=50 noise=0 level=-60 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=46 noise=0 level=-64 flags=0xa
00:24:fe:72:e7:43 freq=2462 qual=36 noise=0 level=-74 flags=0xa
wlan0: BSS: Start scan result update 11
wlan0: BSS: Expire BSS 5 due to no match in scan
wlan0: BSS: Remove id 5 BSSID 74:31:70:a9:6d:f9 SSID 'Mohr'
wlan0: BSS: Expire BSS 6 due to no match in scan
wlan0: BSS: Remove id 6 BSSID 08:96:d7:4f:7d:97 SSID 'FRITZ!Box 7312'
Add randomness: count=57 entropy=56
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=58 entropy=57
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=59 entropy=58
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=60 entropy=59
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-56
wlan0: skip - blacklisted (count=1 limit=0)
wlan0: 1: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-60 wps
wlan0: skip - SSID mismatch
wlan0: 2: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 3: 00:24:fe:72:e7:43 ssid='Der Alte Fritz' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: No APs found - clear blacklist and try again
Removed BSSID bc:05:43:79:f9:47 from blacklist (clear)
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-56
wlan0: selected based on RSN IE
wlan0: selected BSS bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112'
wlan0: Request association: reassociate: 1 selected: bc:05:43:79:f9:47 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING
wlan0: Trying to associate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
wlan0: Automatic auth_alg selection: 0x1
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 8 pairwise 16 key_mgmt 2 proto 2
WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 00 00
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: WPA: using GTK TKIP
wlan0: WPA: using PTK CCMP
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: not using MGMT group cipher
WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: No keys have been configured - skip key clearing
wlan0: State: SCANNING -> ASSOCIATING
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
wpa_driver_wext_associate
wpa_driver_wext_set_drop_unencrypted
wpa_driver_wext_set_psk
wlan0: Association request to the driver failed
wlan0: Setting authentication timeout: 5 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - EAP fail=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portControl=Auto
EAPOL: Supplicant port status: Unauthorized
RSN: Ignored PMKID candidate without preauth flag
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=16
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=39
wlan0: Authentication with bc:05:43:79:f9:47 timed out.
Added BSSID bc:05:43:79:f9:47 into blacklist
wlan0: No keys have been configured - skip key clearing
wlan0: State: ASSOCIATING -> DISCONNECTED
wpa_driver_wext_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
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
wlan0: Setting scan request: 1 sec 0 usec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 3181 bytes of scan results (6 BSSes)
Sorted scan results
bc:05:43:79:f9:47 freq=2412 qual=62 noise=0 level=-48 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=50 noise=0 level=-60 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=46 noise=0 level=-64 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=46 noise=0 level=-64 flags=0xa
00:24:fe:72:e7:43 freq=2462 qual=36 noise=0 level=-74 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=36 noise=0 level=-74 flags=0xa
wlan0: BSS: Start scan result update 12
wlan0: BSS: Add new id 10 BSSID cc:5d:4e:ed:5e:a0 SSID 'WLAN0511-24'
wlan0: BSS: Add new id 11 BSSID 08:96:d7:4f:7d:97 SSID 'FRITZ!Box 7312'
wlan0: BSS: Expire BSS 8 due to no match in scan
wlan0: BSS: Remove id 8 BSSID bc:05:43:17:3d:8d SSID 'Engelchens FRITZ!Box'
Add randomness: count=61 entropy=60
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=62 entropy=61
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=63 entropy=62
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=64 entropy=63
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=65 entropy=64
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=66 entropy=65
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-48
wlan0: skip - blacklisted (count=1 limit=0)
wlan0: 1: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-60 wps
wlan0: skip - SSID mismatch
wlan0: 2: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 3: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64
wlan0: skip - SSID mismatch
wlan0: 4: 00:24:fe:72:e7:43 ssid='Der Alte Fritz' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 5: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: No APs found - clear blacklist and try again
Removed BSSID bc:05:43:79:f9:47 from blacklist (clear)
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-48
wlan0: selected based on RSN IE
wlan0: selected BSS bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112'
wlan0: Request association: reassociate: 1 selected: bc:05:43:79:f9:47 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING
wlan0: Trying to associate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
wlan0: Automatic auth_alg selection: 0x1
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 8 pairwise 16 key_mgmt 2 proto 2
WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 00 00
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: WPA: using GTK TKIP
wlan0: WPA: using PTK CCMP
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: not using MGMT group cipher
WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: No keys have been configured - skip key clearing
wlan0: State: SCANNING -> ASSOCIATING
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
wpa_driver_wext_associate
wpa_driver_wext_set_drop_unencrypted
wpa_driver_wext_set_psk
wlan0: Association request to the driver failed
wlan0: Setting authentication timeout: 5 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - EAP fail=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portControl=Auto
EAPOL: Supplicant port status: Unauthorized
RSN: Ignored PMKID candidate without preauth flag
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=16
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=39
wlan0: Authentication with bc:05:43:79:f9:47 timed out.
Added BSSID bc:05:43:79:f9:47 into blacklist
wlan0: No keys have been configured - skip key clearing
wlan0: State: ASSOCIATING -> DISCONNECTED
wpa_driver_wext_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
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
wlan0: Setting scan request: 1 sec 0 usec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 2644 bytes of scan results (5 BSSes)
Sorted scan results
bc:05:43:79:f9:47 freq=2412 qual=58 noise=0 level=-52 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=50 noise=0 level=-60 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=50 noise=0 level=-60 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=46 noise=0 level=-64 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=36 noise=0 level=-74 flags=0xa
wlan0: BSS: Start scan result update 13
Add randomness: count=67 entropy=66
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=68 entropy=67
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=69 entropy=68
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=70 entropy=69
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=71 entropy=70
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-52
wlan0: skip - blacklisted (count=1 limit=0)
wlan0: 1: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60 wps
wlan0: skip - SSID mismatch
wlan0: 2: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-60 wps
wlan0: skip - SSID mismatch
wlan0: 3: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64
wlan0: skip - SSID mismatch
wlan0: 4: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: No APs found - clear blacklist and try again
Removed BSSID bc:05:43:79:f9:47 from blacklist (clear)
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-52
wlan0: selected based on RSN IE
wlan0: selected BSS bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112'
wlan0: Request association: reassociate: 1 selected: bc:05:43:79:f9:47 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING
wlan0: Trying to associate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
wlan0: Automatic auth_alg selection: 0x1
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 8 pairwise 16 key_mgmt 2 proto 2
WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 00 00
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: WPA: using GTK TKIP
wlan0: WPA: using PTK CCMP
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: not using MGMT group cipher
WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: No keys have been configured - skip key clearing
wlan0: State: SCANNING -> ASSOCIATING
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
wpa_driver_wext_associate
wpa_driver_wext_set_drop_unencrypted
wpa_driver_wext_set_psk
wlan0: Association request to the driver failed
wlan0: Setting authentication timeout: 5 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - EAP fail=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portControl=Auto
EAPOL: Supplicant port status: Unauthorized
RSN: Ignored PMKID candidate without preauth flag
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=16
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=39
wlan0: Authentication with bc:05:43:79:f9:47 timed out.
Added BSSID bc:05:43:79:f9:47 into blacklist
wlan0: No keys have been configured - skip key clearing
wlan0: State: ASSOCIATING -> DISCONNECTED
wpa_driver_wext_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
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
wlan0: Setting scan request: 1 sec 0 usec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 2714 bytes of scan results (5 BSSes)
Sorted scan results
bc:05:43:79:f9:47 freq=2412 qual=58 noise=0 level=-52 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=46 noise=0 level=-64 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=46 noise=0 level=-64 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=36 noise=0 level=-74 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=36 noise=0 level=-74 flags=0xa
wlan0: BSS: Start scan result update 14
wlan0: BSS: Add new id 12 BSSID 74:31:70:a9:6d:f9 SSID 'Mohr'
wlan0: BSS: Expire BSS 9 due to no match in scan
wlan0: BSS: Remove id 9 BSSID 00:24:fe:72:e7:43 SSID 'Der Alte Fritz'
Add randomness: count=72 entropy=71
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=73 entropy=72
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=74 entropy=73
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=75 entropy=74
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=76 entropy=75
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-52
wlan0: skip - blacklisted (count=1 limit=0)
wlan0: 1: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 2: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64
wlan0: skip - SSID mismatch
wlan0: 3: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 4: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: No APs found - clear blacklist and try again
Removed BSSID bc:05:43:79:f9:47 from blacklist (clear)
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-52
wlan0: selected based on RSN IE
wlan0: selected BSS bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112'
wlan0: Request association: reassociate: 1 selected: bc:05:43:79:f9:47 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING
wlan0: Trying to associate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
wlan0: Automatic auth_alg selection: 0x1
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 8 pairwise 16 key_mgmt 2 proto 2
WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 00 00
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: WPA: using GTK TKIP
wlan0: WPA: using PTK CCMP
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: not using MGMT group cipher
WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: No keys have been configured - skip key clearing
wlan0: State: SCANNING -> ASSOCIATING
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
wpa_driver_wext_associate
wpa_driver_wext_set_drop_unencrypted
wpa_driver_wext_set_psk
wlan0: Association request to the driver failed
wlan0: Setting authentication timeout: 5 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - EAP fail=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portControl=Auto
EAPOL: Supplicant port status: Unauthorized
RSN: Ignored PMKID candidate without preauth flag
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=16
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=39
wlan0: Authentication with bc:05:43:79:f9:47 timed out.
Added BSSID bc:05:43:79:f9:47 into blacklist
wlan0: No keys have been configured - skip key clearing
wlan0: State: ASSOCIATING -> DISCONNECTED
wpa_driver_wext_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
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
wlan0: Setting scan request: 1 sec 0 usec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 4067 bytes of scan results (8 BSSes)
Sorted scan results
f4:ec:38:bd:63:d2 freq=2452 qual=50 noise=0 level=-60 flags=0xa
bc:05:43:79:f9:47 freq=2412 qual=50 noise=0 level=-60 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=46 noise=0 level=-64 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=36 noise=0 level=-74 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=36 noise=0 level=-74 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=36 noise=0 level=-74 flags=0xa
0e:96:d7:11:d8:bd freq=2422 qual=36 noise=0 level=-74 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=38 noise=0 level=-72 flags=0xa
wlan0: BSS: Start scan result update 15
wlan0: BSS: Add new id 13 BSSID 0e:96:d7:11:d8:bd SSID 'Mohr'
wlan0: BSS: Add new id 14 BSSID 00:1c:4a:46:75:28 SSID 'WLAN-001C4A467528'
Add randomness: count=77 entropy=76
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=78 entropy=77
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=79 entropy=78
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=80 entropy=79
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=81 entropy=80
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=82 entropy=81
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=83 entropy=82
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=84 entropy=83
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60 wps
wlan0: skip - SSID mismatch
wlan0: 1: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-60
wlan0: skip - blacklisted (count=1 limit=0)
wlan0: 2: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64
wlan0: skip - SSID mismatch
wlan0: 3: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 4: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 5: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 6: 0e:96:d7:11:d8:bd ssid='Mohr' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74
wlan0: skip - SSID mismatch
wlan0: 7: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=0 rsn_ie_len=0 caps=0x11 level=-72
wlan0: skip - SSID mismatch
wlan0: No APs found - clear blacklist and try again
Removed BSSID bc:05:43:79:f9:47 from blacklist (clear)
wlan0: Selecting BSS from priority group 0
wlan0: 0: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60 wps
wlan0: skip - SSID mismatch
wlan0: 1: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-60
wlan0: selected based on RSN IE
wlan0: selected BSS bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112'
wlan0: Request association: reassociate: 1 selected: bc:05:43:79:f9:47 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING
wlan0: Trying to associate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
wlan0: Automatic auth_alg selection: 0x1
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 8 pairwise 16 key_mgmt 2 proto 2
WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 00 00
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: WPA: using GTK TKIP
wlan0: WPA: using PTK CCMP
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: not using MGMT group cipher
WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: No keys have been configured - skip key clearing
wlan0: State: SCANNING -> ASSOCIATING
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
wpa_driver_wext_associate
wpa_driver_wext_set_drop_unencrypted
wpa_driver_wext_set_psk
wlan0: Association request to the driver failed
wlan0: Setting authentication timeout: 5 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - EAP fail=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portControl=Auto
EAPOL: Supplicant port status: Unauthorized
RSN: Ignored PMKID candidate without preauth flag
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=16
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=39
wlan0: Authentication with bc:05:43:79:f9:47 timed out.
Added BSSID bc:05:43:79:f9:47 into blacklist
wlan0: No keys have been configured - skip key clearing
wlan0: State: ASSOCIATING -> DISCONNECTED
wpa_driver_wext_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
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
wlan0: Setting scan request: 1 sec 0 usec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 4063 bytes of scan results (8 BSSes)
Sorted scan results
cc:5d:4e:ed:5e:a0 freq=2472 qual=46 noise=0 level=-64 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=46 noise=0 level=-64 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=42 noise=0 level=-68 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=38 noise=0 level=-72 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=38 noise=0 level=-72 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=36 noise=0 level=-74 flags=0xa
0e:96:d7:11:d8:bd freq=2422 qual=36 noise=0 level=-74 flags=0xa
bc:05:43:79:f9:47 freq=2412 qual=54 noise=0 level=-56 flags=0xa
wlan0: BSS: Start scan result update 16
Add randomness: count=85 entropy=84
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=86 entropy=85
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=87 entropy=86
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=88 entropy=87
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=89 entropy=88
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=90 entropy=89
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=91 entropy=90
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=92 entropy=91
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64
wlan0: skip - SSID mismatch
wlan0: 1: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 2: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-68 wps
wlan0: skip - SSID mismatch
wlan0: 3: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 4: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-72
wlan0: skip - SSID mismatch
wlan0: 5: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 6: 0e:96:d7:11:d8:bd ssid='Mohr' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74
wlan0: skip - SSID mismatch
wlan0: 7: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=0 rsn_ie_len=0 caps=0x11 level=-56
wlan0: skip - blacklisted (count=1 limit=0)
wlan0: No APs found - clear blacklist and try again
Removed BSSID bc:05:43:79:f9:47 from blacklist (clear)
wlan0: Selecting BSS from priority group 0
wlan0: 0: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64
wlan0: skip - SSID mismatch
wlan0: 1: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 2: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-68 wps
wlan0: skip - SSID mismatch
wlan0: 3: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 4: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-72
wlan0: skip - SSID mismatch
wlan0: 5: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 6: 0e:96:d7:11:d8:bd ssid='Mohr' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74
wlan0: skip - SSID mismatch
wlan0: 7: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=0 rsn_ie_len=0 caps=0x11 level=-56
wlan0: skip - no WPA/RSN proto match
wlan0: No suitable network found
wlan0: Setting scan request: 5 sec 0 usec
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 4061 bytes of scan results (8 BSSes)
Sorted scan results
f4:ec:38:bd:63:d2 freq=2452 qual=50 noise=0 level=-60 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=46 noise=0 level=-64 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=38 noise=0 level=-72 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=38 noise=0 level=-72 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=36 noise=0 level=-74 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=36 noise=0 level=-74 flags=0xa
0e:96:d7:11:d8:bd freq=2422 qual=36 noise=0 level=-74 flags=0xa
bc:05:43:79:f9:47 freq=2412 qual=58 noise=0 level=-52 flags=0xa
wlan0: BSS: Start scan result update 17
Add randomness: count=93 entropy=92
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=94 entropy=93
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=95 entropy=94
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=96 entropy=95
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=97 entropy=96
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=98 entropy=97
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=99 entropy=98
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=100 entropy=99
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60 wps
wlan0: skip - SSID mismatch
wlan0: 1: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64
wlan0: skip - SSID mismatch
wlan0: 2: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 3: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-72
wlan0: skip - SSID mismatch
wlan0: 4: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 5: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 6: 0e:96:d7:11:d8:bd ssid='Mohr' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74
wlan0: skip - SSID mismatch
wlan0: 7: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=0 rsn_ie_len=0 caps=0x11 level=-52
wlan0: skip - no WPA/RSN proto match
wlan0: No suitable network found
wlan0: Setting scan request: 5 sec 0 usec
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Scan results did not fit - trying larger buffer (8192 bytes)
Received 4713 bytes of scan results (9 BSSes)
Sorted scan results
bc:05:43:79:f9:47 freq=2412 qual=54 noise=0 level=-56 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=46 noise=0 level=-64 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=38 noise=0 level=-72 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=38 noise=0 level=-72 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=38 noise=0 level=-72 flags=0xa
bc:05:43:17:3d:8d freq=2447 qual=38 noise=0 level=-72 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=36 noise=0 level=-74 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=36 noise=0 level=-74 flags=0xa
0e:96:d7:11:d8:bd freq=2422 qual=36 noise=0 level=-74 flags=0xa
wlan0: BSS: Start scan result update 18
wlan0: BSS: Add new id 15 BSSID bc:05:43:17:3d:8d SSID 'Engelchens FRITZ!Box'
Add randomness: count=101 entropy=100
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=102 entropy=101
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=103 entropy=102
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=104 entropy=103
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=105 entropy=104
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=106 entropy=105
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=107 entropy=106
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=108 entropy=107
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=109 entropy=108
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-56
wlan0: selected based on RSN IE
wlan0: selected BSS bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112'
wlan0: Request association: reassociate: 1 selected: bc:05:43:79:f9:47 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING
wlan0: Trying to associate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
wlan0: Automatic auth_alg selection: 0x1
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 8 pairwise 16 key_mgmt 2 proto 2
WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 00 00
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: WPA: using GTK TKIP
wlan0: WPA: using PTK CCMP
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: not using MGMT group cipher
WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: No keys have been configured - skip key clearing
wlan0: State: SCANNING -> ASSOCIATING
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
wpa_driver_wext_associate
wpa_driver_wext_set_drop_unencrypted
wpa_driver_wext_set_psk
wlan0: Association request to the driver failed
wlan0: Setting authentication timeout: 5 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - EAP fail=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portControl=Auto
EAPOL: Supplicant port status: Unauthorized
RSN: Ignored PMKID candidate without preauth flag
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=16
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=39
wlan0: Authentication with bc:05:43:79:f9:47 timed out.
Added BSSID bc:05:43:79:f9:47 into blacklist
wlan0: No keys have been configured - skip key clearing
wlan0: State: ASSOCIATING -> DISCONNECTED
wpa_driver_wext_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
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
wlan0: Setting scan request: 1 sec 0 usec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 4062 bytes of scan results (8 BSSes)
Sorted scan results
f4:ec:38:bd:63:d2 freq=2452 qual=50 noise=0 level=-60 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=46 noise=0 level=-64 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=42 noise=0 level=-68 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=38 noise=0 level=-72 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=38 noise=0 level=-72 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=36 noise=0 level=-74 flags=0xa
0e:96:d7:11:d8:bd freq=2422 qual=36 noise=0 level=-74 flags=0xa
bc:05:43:17:3d:8d freq=2447 qual=38 noise=0 level=-72 flags=0xa
wlan0: BSS: Start scan result update 19
Add randomness: count=110 entropy=109
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=111 entropy=110
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=112 entropy=111
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=113 entropy=112
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=114 entropy=113
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=115 entropy=114
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=116 entropy=115
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=117 entropy=116
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60 wps
wlan0: skip - SSID mismatch
wlan0: 1: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 2: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-68
wlan0: skip - SSID mismatch
wlan0: 3: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 4: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-72
wlan0: skip - SSID mismatch
wlan0: 5: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 6: 0e:96:d7:11:d8:bd ssid='Mohr' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74
wlan0: skip - SSID mismatch
wlan0: 7: bc:05:43:17:3d:8d ssid='Engelchens FRITZ!Box' wpa_ie_len=0 rsn_ie_len=0 caps=0x11 level=-72
wlan0: skip - SSID mismatch
wlan0: No APs found - clear blacklist and try again
Removed BSSID bc:05:43:79:f9:47 from blacklist (clear)
wlan0: Selecting BSS from priority group 0
wlan0: 0: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60 wps
wlan0: skip - SSID mismatch
wlan0: 1: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 2: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-68
wlan0: skip - SSID mismatch
wlan0: 3: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 4: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-72
wlan0: skip - SSID mismatch
wlan0: 5: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 6: 0e:96:d7:11:d8:bd ssid='Mohr' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74
wlan0: skip - SSID mismatch
wlan0: 7: bc:05:43:17:3d:8d ssid='Engelchens FRITZ!Box' wpa_ie_len=0 rsn_ie_len=0 caps=0x11 level=-72
wlan0: skip - SSID mismatch
wlan0: No suitable network found
wlan0: Setting scan request: 5 sec 0 usec
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 4056 bytes of scan results (8 BSSes)
Sorted scan results
f4:ec:38:bd:63:d2 freq=2452 qual=50 noise=0 level=-60 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=46 noise=0 level=-64 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=42 noise=0 level=-68 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=38 noise=0 level=-72 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=38 noise=0 level=-72 flags=0xa
bc:05:43:17:3d:8d freq=2447 qual=38 noise=0 level=-72 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=36 noise=0 level=-74 flags=0xa
bc:05:43:79:f9:47 freq=2412 qual=58 noise=0 level=-52 flags=0xa
wlan0: BSS: Start scan result update 20
Add randomness: count=118 entropy=117
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=119 entropy=118
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=120 entropy=119
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=121 entropy=120
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=122 entropy=121
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=123 entropy=122
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=124 entropy=123
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=125 entropy=124
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60 wps
wlan0: skip - SSID mismatch
wlan0: 1: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64
wlan0: skip - SSID mismatch
wlan0: 2: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-68 wps
wlan0: skip - SSID mismatch
wlan0: 3: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 4: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-72
wlan0: skip - SSID mismatch
wlan0: 5: bc:05:43:17:3d:8d ssid='Engelchens FRITZ!Box' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 6: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 7: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=0 rsn_ie_len=0 caps=0x11 level=-52
wlan0: skip - no WPA/RSN proto match
wlan0: No suitable network found
wlan0: Setting scan request: 5 sec 0 usec
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 4053 bytes of scan results (8 BSSes)
Sorted scan results
cc:5d:4e:ed:5e:a0 freq=2472 qual=50 noise=0 level=-60 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=46 noise=0 level=-64 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=42 noise=0 level=-68 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=38 noise=0 level=-72 flags=0xa
bc:05:43:17:3d:8d freq=2447 qual=38 noise=0 level=-72 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=36 noise=0 level=-74 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=36 noise=0 level=-74 flags=0xa
bc:05:43:79:f9:47 freq=2412 qual=54 noise=0 level=-56 flags=0xa
wlan0: BSS: Start scan result update 21
wlan0: BSS: Expire BSS 13 due to no match in scan
wlan0: BSS: Remove id 13 BSSID 0e:96:d7:11:d8:bd SSID 'Mohr'
Add randomness: count=126 entropy=125
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=127 entropy=126
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=128 entropy=127
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=129 entropy=128
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=130 entropy=129
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=131 entropy=130
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=132 entropy=131
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=133 entropy=132
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60
wlan0: skip - SSID mismatch
wlan0: 1: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 2: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-68 wps
wlan0: skip - SSID mismatch
wlan0: 3: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 4: bc:05:43:17:3d:8d ssid='Engelchens FRITZ!Box' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 5: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 6: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-74
wlan0: skip - SSID mismatch
wlan0: 7: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=0 rsn_ie_len=0 caps=0x11 level=-56
wlan0: skip - no WPA/RSN proto match
wlan0: No suitable network found
wlan0: Setting scan request: 5 sec 0 usec
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Scan results did not fit - trying larger buffer (8192 bytes)
Received 4686 bytes of scan results (9 BSSes)
Sorted scan results
bc:05:43:79:f9:47 freq=2412 qual=54 noise=0 level=-56 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=46 noise=0 level=-64 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=46 noise=0 level=-64 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=42 noise=0 level=-68 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=38 noise=0 level=-72 flags=0xa
bc:05:43:17:3d:8d freq=2447 qual=38 noise=0 level=-72 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=36 noise=0 level=-74 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=36 noise=0 level=-74 flags=0xa
00:1a:2b:3b:a1:6a freq=2437 qual=36 noise=0 level=-74 flags=0xa
wlan0: BSS: Start scan result update 22
wlan0: BSS: Add new id 16 BSSID 00:1a:2b:3b:a1:6a SSID 'CABLELINK4200-001C7B238AF3'
Add randomness: count=134 entropy=133
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=135 entropy=134
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=136 entropy=135
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=137 entropy=136
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=138 entropy=137
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=139 entropy=138
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=140 entropy=139
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=141 entropy=140
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=142 entropy=141
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-56
wlan0: selected based on RSN IE
wlan0: selected BSS bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112'
wlan0: Request association: reassociate: 1 selected: bc:05:43:79:f9:47 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING
wlan0: Trying to associate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
wlan0: Automatic auth_alg selection: 0x1
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 8 pairwise 16 key_mgmt 2 proto 2
WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 00 00
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: WPA: using GTK TKIP
wlan0: WPA: using PTK CCMP
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: not using MGMT group cipher
WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: No keys have been configured - skip key clearing
wlan0: State: SCANNING -> ASSOCIATING
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
wpa_driver_wext_associate
wpa_driver_wext_set_drop_unencrypted
wpa_driver_wext_set_psk
wlan0: Association request to the driver failed
wlan0: Setting authentication timeout: 5 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - EAP fail=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portControl=Auto
EAPOL: Supplicant port status: Unauthorized
RSN: Ignored PMKID candidate without preauth flag
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=16
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=39
wlan0: Authentication with bc:05:43:79:f9:47 timed out.
Added BSSID bc:05:43:79:f9:47 into blacklist
wlan0: No keys have been configured - skip key clearing
wlan0: State: ASSOCIATING -> DISCONNECTED
wpa_driver_wext_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
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
wlan0: Setting scan request: 1 sec 0 usec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Scan results did not fit - trying larger buffer (8192 bytes)
Received 4685 bytes of scan results (9 BSSes)
Sorted scan results
bc:05:43:79:f9:47 freq=2412 qual=62 noise=0 level=-48 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=50 noise=0 level=-60 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=46 noise=0 level=-64 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=46 noise=0 level=-64 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=42 noise=0 level=-68 flags=0xa
bc:05:43:17:3d:8d freq=2447 qual=42 noise=0 level=-68 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=38 noise=0 level=-72 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=36 noise=0 level=-74 flags=0xa
00:1a:2b:3b:a1:6a freq=2437 qual=36 noise=0 level=-74 flags=0xa
wlan0: BSS: Start scan result update 23
Add randomness: count=143 entropy=142
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=144 entropy=143
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=145 entropy=144
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=146 entropy=145
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=147 entropy=146
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=148 entropy=147
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=149 entropy=148
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=150 entropy=149
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=151 entropy=150
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-48
wlan0: skip - blacklisted (count=1 limit=0)
wlan0: 1: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60
wlan0: skip - SSID mismatch
wlan0: 2: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 3: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 4: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-68
wlan0: skip - SSID mismatch
wlan0: 5: bc:05:43:17:3d:8d ssid='Engelchens FRITZ!Box' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-68 wps
wlan0: skip - SSID mismatch
wlan0: 6: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 7: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 8: 00:1a:2b:3b:a1:6a ssid='CABLELINK4200-001C7B238AF3' wpa_ie_len=28 rsn_ie_len=0 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: No APs found - clear blacklist and try again
Removed BSSID bc:05:43:79:f9:47 from blacklist (clear)
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-48
wlan0: selected based on RSN IE
wlan0: selected BSS bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112'
wlan0: Request association: reassociate: 1 selected: bc:05:43:79:f9:47 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING
wlan0: Trying to associate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
wlan0: Automatic auth_alg selection: 0x1
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 8 pairwise 16 key_mgmt 2 proto 2
WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 00 00
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: WPA: using GTK TKIP
wlan0: WPA: using PTK CCMP
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: not using MGMT group cipher
WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: No keys have been configured - skip key clearing
wlan0: State: SCANNING -> ASSOCIATING
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
wpa_driver_wext_associate
wpa_driver_wext_set_drop_unencrypted
wpa_driver_wext_set_psk
wlan0: Association request to the driver failed
wlan0: Setting authentication timeout: 5 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - EAP fail=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portControl=Auto
EAPOL: Supplicant port status: Unauthorized
RSN: Ignored PMKID candidate without preauth flag
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=16
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=39
wlan0: Authentication with bc:05:43:79:f9:47 timed out.
Added BSSID bc:05:43:79:f9:47 into blacklist
wlan0: No keys have been configured - skip key clearing
wlan0: State: ASSOCIATING -> DISCONNECTED
wpa_driver_wext_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
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
wlan0: Setting scan request: 1 sec 0 usec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Scan results did not fit - trying larger buffer (8192 bytes)
Received 4690 bytes of scan results (9 BSSes)
Sorted scan results
bc:05:43:79:f9:47 freq=2412 qual=54 noise=0 level=-56 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=50 noise=0 level=-60 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=46 noise=0 level=-64 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=42 noise=0 level=-68 flags=0xa
bc:05:43:17:3d:8d freq=2447 qual=42 noise=0 level=-68 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=38 noise=0 level=-72 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=38 noise=0 level=-72 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=36 noise=0 level=-74 flags=0xa
00:1a:2b:3b:a1:6a freq=2437 qual=36 noise=0 level=-74 flags=0xa
wlan0: BSS: Start scan result update 24
Add randomness: count=152 entropy=151
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=153 entropy=152
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=154 entropy=153
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=155 entropy=154
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=156 entropy=155
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=157 entropy=156
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=158 entropy=157
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=159 entropy=158
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=160 entropy=159
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-56
wlan0: skip - blacklisted (count=1 limit=0)
wlan0: 1: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60 wps
wlan0: skip - SSID mismatch
wlan0: 2: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 3: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-68
wlan0: skip - SSID mismatch
wlan0: 4: bc:05:43:17:3d:8d ssid='Engelchens FRITZ!Box' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-68 wps
wlan0: skip - SSID mismatch
wlan0: 5: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-72
wlan0: skip - SSID mismatch
wlan0: 6: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 7: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 8: 00:1a:2b:3b:a1:6a ssid='CABLELINK4200-001C7B238AF3' wpa_ie_len=28 rsn_ie_len=0 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: No APs found - clear blacklist and try again
Removed BSSID bc:05:43:79:f9:47 from blacklist (clear)
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-56
wlan0: selected based on RSN IE
wlan0: selected BSS bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112'
wlan0: Request association: reassociate: 1 selected: bc:05:43:79:f9:47 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING
wlan0: Trying to associate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
wlan0: Automatic auth_alg selection: 0x1
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 8 pairwise 16 key_mgmt 2 proto 2
WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 00 00
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: WPA: using GTK TKIP
wlan0: WPA: using PTK CCMP
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: not using MGMT group cipher
WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: No keys have been configured - skip key clearing
wlan0: State: SCANNING -> ASSOCIATING
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
wpa_driver_wext_associate
wpa_driver_wext_set_drop_unencrypted
wpa_driver_wext_set_psk
wlan0: Association request to the driver failed
wlan0: Setting authentication timeout: 5 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - EAP fail=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portControl=Auto
EAPOL: Supplicant port status: Unauthorized
RSN: Ignored PMKID candidate without preauth flag
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=16
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=39
wlan0: Authentication with bc:05:43:79:f9:47 timed out.
Added BSSID bc:05:43:79:f9:47 into blacklist
wlan0: No keys have been configured - skip key clearing
wlan0: State: ASSOCIATING -> DISCONNECTED
wpa_driver_wext_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
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
wlan0: Setting scan request: 1 sec 0 usec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Scan results did not fit - trying larger buffer (8192 bytes)
Received 4690 bytes of scan results (9 BSSes)
Sorted scan results
bc:05:43:79:f9:47 freq=2412 qual=62 noise=0 level=-48 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=50 noise=0 level=-60 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=46 noise=0 level=-64 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=46 noise=0 level=-64 flags=0xa
bc:05:43:17:3d:8d freq=2447 qual=42 noise=0 level=-68 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=38 noise=0 level=-72 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=38 noise=0 level=-72 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=38 noise=0 level=-72 flags=0xa
00:1a:2b:3b:a1:6a freq=2437 qual=36 noise=0 level=-74 flags=0xa
wlan0: BSS: Start scan result update 25
Add randomness: count=161 entropy=160
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=162 entropy=161
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=163 entropy=162
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=164 entropy=163
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=165 entropy=164
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=166 entropy=165
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=167 entropy=166
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=168 entropy=167
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=169 entropy=168
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-48
wlan0: skip - blacklisted (count=1 limit=0)
wlan0: 1: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60 wps
wlan0: skip - SSID mismatch
wlan0: 2: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64
wlan0: skip - SSID mismatch
wlan0: 3: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 4: bc:05:43:17:3d:8d ssid='Engelchens FRITZ!Box' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-68 wps
wlan0: skip - SSID mismatch
wlan0: 5: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 6: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 7: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-72
wlan0: skip - SSID mismatch
wlan0: 8: 00:1a:2b:3b:a1:6a ssid='CABLELINK4200-001C7B238AF3' wpa_ie_len=28 rsn_ie_len=0 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: No APs found - clear blacklist and try again
Removed BSSID bc:05:43:79:f9:47 from blacklist (clear)
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-48
wlan0: selected based on RSN IE
wlan0: selected BSS bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112'
wlan0: Request association: reassociate: 1 selected: bc:05:43:79:f9:47 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING
wlan0: Trying to associate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
wlan0: Automatic auth_alg selection: 0x1
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 8 pairwise 16 key_mgmt 2 proto 2
WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 00 00
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: WPA: using GTK TKIP
wlan0: WPA: using PTK CCMP
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: not using MGMT group cipher
WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: No keys have been configured - skip key clearing
wlan0: State: SCANNING -> ASSOCIATING
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
wpa_driver_wext_associate
wpa_driver_wext_set_drop_unencrypted
wpa_driver_wext_set_psk
wlan0: Association request to the driver failed
wlan0: Setting authentication timeout: 5 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - EAP fail=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portControl=Auto
EAPOL: Supplicant port status: Unauthorized
RSN: Ignored PMKID candidate without preauth flag
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=16
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=39
wlan0: Authentication with bc:05:43:79:f9:47 timed out.
Added BSSID bc:05:43:79:f9:47 into blacklist
wlan0: No keys have been configured - skip key clearing
wlan0: State: ASSOCIATING -> DISCONNECTED
wpa_driver_wext_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
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
wlan0: Setting scan request: 1 sec 0 usec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 4052 bytes of scan results (8 BSSes)
Sorted scan results
f4:ec:38:bd:63:d2 freq=2452 qual=46 noise=0 level=-64 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=46 noise=0 level=-64 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=46 noise=0 level=-64 flags=0xa
bc:05:43:17:3d:8d freq=2447 qual=42 noise=0 level=-68 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=38 noise=0 level=-72 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=38 noise=0 level=-72 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=36 noise=0 level=-74 flags=0xa
bc:05:43:79:f9:47 freq=2412 qual=54 noise=0 level=-56 flags=0xa
wlan0: BSS: Start scan result update 26
Add randomness: count=170 entropy=169
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=171 entropy=170
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=172 entropy=171
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=173 entropy=172
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=174 entropy=173
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=175 entropy=174
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=176 entropy=175
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=177 entropy=176
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 1: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64
wlan0: skip - SSID mismatch
wlan0: 2: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-64
wlan0: skip - SSID mismatch
wlan0: 3: bc:05:43:17:3d:8d ssid='Engelchens FRITZ!Box' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-68 wps
wlan0: skip - SSID mismatch
wlan0: 4: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 5: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 6: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 7: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=0 rsn_ie_len=0 caps=0x11 level=-56
wlan0: skip - blacklisted (count=1 limit=0)
wlan0: No APs found - clear blacklist and try again
Removed BSSID bc:05:43:79:f9:47 from blacklist (clear)
wlan0: Selecting BSS from priority group 0
wlan0: 0: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 1: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64
wlan0: skip - SSID mismatch
wlan0: 2: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-64
wlan0: skip - SSID mismatch
wlan0: 3: bc:05:43:17:3d:8d ssid='Engelchens FRITZ!Box' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-68 wps
wlan0: skip - SSID mismatch
wlan0: 4: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 5: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 6: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 7: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=0 rsn_ie_len=0 caps=0x11 level=-56
wlan0: skip - no WPA/RSN proto match
wlan0: No suitable network found
wlan0: Setting scan request: 5 sec 0 usec
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 4058 bytes of scan results (8 BSSes)
Sorted scan results
f4:ec:38:bd:63:d2 freq=2452 qual=50 noise=0 level=-60 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=46 noise=0 level=-64 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=46 noise=0 level=-64 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=46 noise=0 level=-64 flags=0xa
bc:05:43:17:3d:8d freq=2447 qual=42 noise=0 level=-68 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=38 noise=0 level=-72 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=36 noise=0 level=-74 flags=0xa
bc:05:43:79:f9:47 freq=2412 qual=54 noise=0 level=-56 flags=0xa
wlan0: BSS: Start scan result update 27
wlan0: BSS: Expire BSS 16 due to no match in scan
wlan0: BSS: Remove id 16 BSSID 00:1a:2b:3b:a1:6a SSID 'CABLELINK4200-001C7B238AF3'
Add randomness: count=178 entropy=177
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=179 entropy=178
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=180 entropy=179
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=181 entropy=180
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=182 entropy=181
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=183 entropy=182
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=184 entropy=183
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=185 entropy=184
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60 wps
wlan0: skip - SSID mismatch
wlan0: 1: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64
wlan0: skip - SSID mismatch
wlan0: 2: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 3: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-64
wlan0: skip - SSID mismatch
wlan0: 4: bc:05:43:17:3d:8d ssid='Engelchens FRITZ!Box' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-68 wps
wlan0: skip - SSID mismatch
wlan0: 5: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 6: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 7: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=0 rsn_ie_len=0 caps=0x11 level=-56
wlan0: skip - no WPA/RSN proto match
wlan0: No suitable network found
wlan0: Setting scan request: 5 sec 0 usec
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 3708 bytes of scan results (7 BSSes)
Sorted scan results
bc:05:43:79:f9:47 freq=2412 qual=62 noise=0 level=-48 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=50 noise=0 level=-60 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=46 noise=0 level=-64 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=46 noise=0 level=-64 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=46 noise=0 level=-64 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=38 noise=0 level=-72 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=36 noise=0 level=-74 flags=0xa
wlan0: BSS: Start scan result update 28
Add randomness: count=186 entropy=185
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=187 entropy=186
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=188 entropy=187
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=189 entropy=188
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=190 entropy=189
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=191 entropy=190
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=192 entropy=191
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-48
wlan0: selected based on RSN IE
wlan0: selected BSS bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112'
wlan0: Request association: reassociate: 1 selected: bc:05:43:79:f9:47 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING
wlan0: Trying to associate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
wlan0: Automatic auth_alg selection: 0x1
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 8 pairwise 16 key_mgmt 2 proto 2
WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 00 00
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: WPA: using GTK TKIP
wlan0: WPA: using PTK CCMP
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: not using MGMT group cipher
WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: No keys have been configured - skip key clearing
wlan0: State: SCANNING -> ASSOCIATING
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
wpa_driver_wext_associate
wpa_driver_wext_set_drop_unencrypted
wpa_driver_wext_set_psk
wlan0: Association request to the driver failed
wlan0: Setting authentication timeout: 5 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - EAP fail=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portControl=Auto
EAPOL: Supplicant port status: Unauthorized
RSN: Ignored PMKID candidate without preauth flag
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=16
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=39
wlan0: Authentication with bc:05:43:79:f9:47 timed out.
Added BSSID bc:05:43:79:f9:47 into blacklist
wlan0: No keys have been configured - skip key clearing
wlan0: State: ASSOCIATING -> DISCONNECTED
wpa_driver_wext_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
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
wlan0: Setting scan request: 1 sec 0 usec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 3734 bytes of scan results (7 BSSes)
Sorted scan results
cc:5d:4e:ed:5e:a0 freq=2472 qual=54 noise=0 level=-56 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=50 noise=0 level=-60 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=46 noise=0 level=-64 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=46 noise=0 level=-64 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=38 noise=0 level=-72 flags=0xa
bc:05:43:17:3d:8d freq=2447 qual=38 noise=0 level=-72 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=36 noise=0 level=-74 flags=0xa
wlan0: BSS: Start scan result update 29
Add randomness: count=193 entropy=192
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=194 entropy=193
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=195 entropy=194
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=196 entropy=195
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=197 entropy=196
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=198 entropy=197
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=199 entropy=198
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-56
wlan0: skip - SSID mismatch
wlan0: 1: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60 wps
wlan0: skip - SSID mismatch
wlan0: 2: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 3: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-64
wlan0: skip - SSID mismatch
wlan0: 4: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 5: bc:05:43:17:3d:8d ssid='Engelchens FRITZ!Box' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 6: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: No APs found - clear blacklist and try again
Removed BSSID bc:05:43:79:f9:47 from blacklist (clear)
wlan0: Selecting BSS from priority group 0
wlan0: 0: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-56
wlan0: skip - SSID mismatch
wlan0: 1: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60 wps
wlan0: skip - SSID mismatch
wlan0: 2: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 3: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-64
wlan0: skip - SSID mismatch
wlan0: 4: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 5: bc:05:43:17:3d:8d ssid='Engelchens FRITZ!Box' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 6: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: No suitable network found
wlan0: Setting scan request: 5 sec 0 usec
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 3621 bytes of scan results (7 BSSes)
Sorted scan results
bc:05:43:79:f9:47 freq=2412 qual=62 noise=0 level=-48 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=46 noise=0 level=-64 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=46 noise=0 level=-64 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=46 noise=0 level=-64 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=38 noise=0 level=-72 flags=0xa
bc:05:43:17:3d:8d freq=2447 qual=38 noise=0 level=-72 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=36 noise=0 level=-74 flags=0xa
wlan0: BSS: Start scan result update 30
Add randomness: count=200 entropy=199
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=201 entropy=200
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=202 entropy=201
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=203 entropy=202
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=204 entropy=203
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=205 entropy=204
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=206 entropy=205
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-48
wlan0: selected based on RSN IE
wlan0: selected BSS bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112'
wlan0: Request association: reassociate: 1 selected: bc:05:43:79:f9:47 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING
wlan0: Trying to associate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
wlan0: Automatic auth_alg selection: 0x1
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 8 pairwise 16 key_mgmt 2 proto 2
WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 00 00
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: WPA: using GTK TKIP
wlan0: WPA: using PTK CCMP
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: not using MGMT group cipher
WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: No keys have been configured - skip key clearing
wlan0: State: SCANNING -> ASSOCIATING
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
wpa_driver_wext_associate
wpa_driver_wext_set_drop_unencrypted
wpa_driver_wext_set_psk
wlan0: Association request to the driver failed
wlan0: Setting authentication timeout: 5 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - EAP fail=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portControl=Auto
EAPOL: Supplicant port status: Unauthorized
RSN: Ignored PMKID candidate without preauth flag
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=16
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=39
wlan0: Authentication with bc:05:43:79:f9:47 timed out.
Added BSSID bc:05:43:79:f9:47 into blacklist
wlan0: No keys have been configured - skip key clearing
wlan0: State: ASSOCIATING -> DISCONNECTED
wpa_driver_wext_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
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
wlan0: Setting scan request: 1 sec 0 usec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 2546 bytes of scan results (5 BSSes)
Sorted scan results
f4:ec:38:bd:63:d2 freq=2452 qual=46 noise=0 level=-64 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=46 noise=0 level=-64 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=38 noise=0 level=-72 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=38 noise=0 level=-72 flags=0xa
bc:05:43:17:3d:8d freq=2447 qual=38 noise=0 level=-72 flags=0xa
wlan0: BSS: Start scan result update 31
wlan0: BSS: Expire BSS 11 due to no match in scan
wlan0: BSS: Remove id 11 BSSID 08:96:d7:4f:7d:97 SSID 'FRITZ!Box 7312'
Add randomness: count=207 entropy=206
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=208 entropy=207
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=209 entropy=208
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=210 entropy=209
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=211 entropy=210
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 1: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64
wlan0: skip - SSID mismatch
wlan0: 2: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 3: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-72
wlan0: skip - SSID mismatch
wlan0: 4: bc:05:43:17:3d:8d ssid='Engelchens FRITZ!Box' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: No APs found - clear blacklist and try again
Removed BSSID bc:05:43:79:f9:47 from blacklist (clear)
wlan0: Selecting BSS from priority group 0
wlan0: 0: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 1: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64
wlan0: skip - SSID mismatch
wlan0: 2: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 3: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-72
wlan0: skip - SSID mismatch
wlan0: 4: bc:05:43:17:3d:8d ssid='Engelchens FRITZ!Box' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: No suitable network found
wlan0: Setting scan request: 5 sec 0 usec
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 3019 bytes of scan results (6 BSSes)
Sorted scan results
bc:05:43:79:f9:47 freq=2412 qual=54 noise=0 level=-56 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=50 noise=0 level=-60 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=46 noise=0 level=-64 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=42 noise=0 level=-68 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=38 noise=0 level=-72 flags=0xa
bc:05:43:17:3d:8d freq=2447 qual=38 noise=0 level=-72 flags=0xa
wlan0: BSS: Start scan result update 32
wlan0: BSS: Expire BSS 12 due to no match in scan
wlan0: BSS: Remove id 12 BSSID 74:31:70:a9:6d:f9 SSID 'Mohr'
Add randomness: count=212 entropy=211
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=213 entropy=212
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=214 entropy=213
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=215 entropy=214
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=216 entropy=215
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=217 entropy=216
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-56
wlan0: selected based on RSN IE
wlan0: selected BSS bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112'
wlan0: Request association: reassociate: 1 selected: bc:05:43:79:f9:47 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING
wlan0: Trying to associate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
wlan0: Automatic auth_alg selection: 0x1
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 8 pairwise 16 key_mgmt 2 proto 2
WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 00 00
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: WPA: using GTK TKIP
wlan0: WPA: using PTK CCMP
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: not using MGMT group cipher
WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: No keys have been configured - skip key clearing
wlan0: State: SCANNING -> ASSOCIATING
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
wpa_driver_wext_associate
wpa_driver_wext_set_drop_unencrypted
wpa_driver_wext_set_psk
wlan0: Association request to the driver failed
wlan0: Setting authentication timeout: 5 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - EAP fail=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portControl=Auto
EAPOL: Supplicant port status: Unauthorized
RSN: Ignored PMKID candidate without preauth flag
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=16
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=39
wlan0: Authentication with bc:05:43:79:f9:47 timed out.
Added BSSID bc:05:43:79:f9:47 into blacklist
wlan0: No keys have been configured - skip key clearing
wlan0: State: ASSOCIATING -> DISCONNECTED
wpa_driver_wext_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
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
wlan0: Setting scan request: 1 sec 0 usec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 3732 bytes of scan results (7 BSSes)
Sorted scan results
f4:ec:38:bd:63:d2 freq=2452 qual=50 noise=0 level=-60 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=50 noise=0 level=-60 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=46 noise=0 level=-64 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=38 noise=0 level=-72 flags=0xa
bc:05:43:17:3d:8d freq=2447 qual=38 noise=0 level=-72 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=38 noise=0 level=-72 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=36 noise=0 level=-74 flags=0xa
wlan0: BSS: Start scan result update 33
wlan0: BSS: Add new id 17 BSSID 74:31:70:a9:6d:f9 SSID 'Mohr'
wlan0: BSS: Add new id 18 BSSID 08:96:d7:4f:7d:97 SSID 'FRITZ!Box 7312'
Add randomness: count=218 entropy=217
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=219 entropy=218
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=220 entropy=219
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=221 entropy=220
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=222 entropy=221
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=223 entropy=222
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=224 entropy=223
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60 wps
wlan0: skip - SSID mismatch
wlan0: 1: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60
wlan0: skip - SSID mismatch
wlan0: 2: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 3: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-72
wlan0: skip - SSID mismatch
wlan0: 4: bc:05:43:17:3d:8d ssid='Engelchens FRITZ!Box' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 5: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 6: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: No APs found - clear blacklist and try again
Removed BSSID bc:05:43:79:f9:47 from blacklist (clear)
wlan0: Selecting BSS from priority group 0
wlan0: 0: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60 wps
wlan0: skip - SSID mismatch
wlan0: 1: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60
wlan0: skip - SSID mismatch
wlan0: 2: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 3: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-72
wlan0: skip - SSID mismatch
wlan0: 4: bc:05:43:17:3d:8d ssid='Engelchens FRITZ!Box' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 5: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 6: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: No suitable network found
wlan0: Setting scan request: 5 sec 0 usec
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 4053 bytes of scan results (8 BSSes)
Sorted scan results
f4:ec:38:bd:63:d2 freq=2452 qual=50 noise=0 level=-60 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=46 noise=0 level=-64 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=46 noise=0 level=-64 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=38 noise=0 level=-72 flags=0xa
bc:05:43:17:3d:8d freq=2447 qual=38 noise=0 level=-72 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=38 noise=0 level=-72 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=36 noise=0 level=-74 flags=0xa
bc:05:43:79:f9:47 freq=2412 qual=62 noise=0 level=-48 flags=0xa
wlan0: BSS: Start scan result update 34
Add randomness: count=225 entropy=224
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=226 entropy=225
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=227 entropy=226
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=228 entropy=227
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=229 entropy=228
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=230 entropy=229
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=231 entropy=230
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=232 entropy=231
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60 wps
wlan0: skip - SSID mismatch
wlan0: 1: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64
wlan0: skip - SSID mismatch
wlan0: 2: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 3: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-72
wlan0: skip - SSID mismatch
wlan0: 4: bc:05:43:17:3d:8d ssid='Engelchens FRITZ!Box' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 5: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 6: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 7: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=0 rsn_ie_len=0 caps=0x11 level=-48
wlan0: skip - no WPA/RSN proto match
wlan0: No suitable network found
wlan0: Setting scan request: 5 sec 0 usec
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 4059 bytes of scan results (8 BSSes)
Sorted scan results
f4:ec:38:bd:63:d2 freq=2452 qual=50 noise=0 level=-60 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=46 noise=0 level=-64 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=46 noise=0 level=-64 flags=0xa
00:1c:4a:46:75:28 freq=2462 qual=38 noise=0 level=-72 flags=0xa
bc:05:43:17:3d:8d freq=2447 qual=38 noise=0 level=-72 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=38 noise=0 level=-72 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=36 noise=0 level=-74 flags=0xa
bc:05:43:79:f9:47 freq=2412 qual=62 noise=0 level=-48 flags=0xa
wlan0: BSS: Start scan result update 35
Add randomness: count=233 entropy=232
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=234 entropy=233
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=235 entropy=234
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=236 entropy=235
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=237 entropy=236
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=238 entropy=237
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=239 entropy=238
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=240 entropy=239
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: f4:ec:38:bd:63:d2 ssid='Honeypot' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-60 wps
wlan0: skip - SSID mismatch
wlan0: 1: cc:5d:4e:ed:5e:a0 ssid='WLAN0511-24' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64
wlan0: skip - SSID mismatch
wlan0: 2: 00:23:54:ac:69:61 ssid='c46bec' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-64 wps
wlan0: skip - SSID mismatch
wlan0: 3: 00:1c:4a:46:75:28 ssid='WLAN-001C4A467528' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-72
wlan0: skip - SSID mismatch
wlan0: 4: bc:05:43:17:3d:8d ssid='Engelchens FRITZ!Box' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 5: 74:31:70:a9:6d:f9 ssid='Mohr' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-72 wps
wlan0: skip - SSID mismatch
wlan0: 6: 08:96:d7:4f:7d:97 ssid='FRITZ!Box 7312' wpa_ie_len=22 rsn_ie_len=20 caps=0x11 level=-74 wps
wlan0: skip - SSID mismatch
wlan0: 7: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=0 rsn_ie_len=0 caps=0x11 level=-48
wlan0: skip - no WPA/RSN proto match
wlan0: No suitable network found
wlan0: Setting scan request: 5 sec 0 usec
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=16
wlan0: Event SCAN_RESULTS (3) received
Received 3748 bytes of scan results (7 BSSes)
Sorted scan results
bc:05:43:79:f9:47 freq=2412 qual=58 noise=0 level=-52 flags=0xa
f4:ec:38:bd:63:d2 freq=2452 qual=50 noise=0 level=-60 flags=0xa
cc:5d:4e:ed:5e:a0 freq=2472 qual=46 noise=0 level=-64 flags=0xa
00:23:54:ac:69:61 freq=2412 qual=42 noise=0 level=-68 flags=0xa
bc:05:43:17:3d:8d freq=2447 qual=38 noise=0 level=-72 flags=0xa
74:31:70:a9:6d:f9 freq=2422 qual=38 noise=0 level=-72 flags=0xa
08:96:d7:4f:7d:97 freq=2412 qual=36 noise=0 level=-74 flags=0xa
wlan0: BSS: Start scan result update 36
Add randomness: count=241 entropy=240
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=242 entropy=241
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=243 entropy=242
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=244 entropy=243
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=245 entropy=244
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=246 entropy=245
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
Add randomness: count=247 entropy=246
random pool - hexdump(len=128): [REMOVED]
random_mix_pool - hexdump(len=16): [REMOVED]
random_mix_pool - hexdump(len=5): [REMOVED]
random pool - hexdump(len=128): [REMOVED]
wlan0: New scan results available
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
WPS: attr type=0x104a len=1
WPS: attr type=0x1044 len=1
WPS: attr type=0x103c len=1
WPS: attr type=0x1049 len=6
WPS: WFA subelement id=0 len=1
wlan0: Selecting BSS from priority group 0
wlan0: 0: bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-52
wlan0: selected based on RSN IE
wlan0: selected BSS bc:05:43:79:f9:47 ssid='FRITZ!Box Fon WLAN 7112'
wlan0: Request association: reassociate: 1 selected: bc:05:43:79:f9:47 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING
wlan0: Trying to associate with bc:05:43:79:f9:47 (SSID='FRITZ!Box Fon WLAN 7112' freq=2412 MHz)
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
wlan0: Cancelling scan request
wlan0: WPA: clearing own WPA/RSN IE
wlan0: Automatic auth_alg selection: 0x1
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 8 pairwise 16 key_mgmt 2 proto 2
WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 00 00
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: WPA: using GTK TKIP
wlan0: WPA: using PTK CCMP
wlan0: WPA: using KEY_MGMT WPA-PSK
wlan0: WPA: not using MGMT group cipher
WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: No keys have been configured - skip key clearing
wlan0: State: SCANNING -> ASSOCIATING
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: linkmode=-1, operstate=5
wpa_driver_wext_associate
wpa_driver_wext_set_drop_unencrypted
wpa_driver_wext_set_psk
wlan0: Association request to the driver failed
wlan0: Setting authentication timeout: 5 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - EAP fail=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portControl=Auto
EAPOL: Supplicant port status: Unauthorized
RSN: Ignored PMKID candidate without preauth flag
wlan0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=16
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=39
wlan0: Authentication with bc:05:43:79:f9:47 timed out.
Added BSSID bc:05:43:79:f9:47 into blacklist
wlan0: No keys have been configured - skip key clearing
wlan0: State: ASSOCIATING -> DISCONNECTED
wpa_driver_wext_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
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
wlan0: Setting scan request: 1 sec 0 usec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
Scan requested (ret=0) - scan timeout 30 seconds
- --
Diese Nachricht wurde von meinem Android-Mobiltelefon mit K-9 Mail gesendet.
-----BEGIN PGP SIGNATURE-----
Version: APG v1.1.1

iQJIBAEBCgAyBQJTc9B6KxxTdGVmYW4gS3L8Z2VyIDxzdGVmYW4ua3J1ZWdlckB2
b2RhZm9uZS5kZT4ACgkQKfL7XZZDcf1R8A/+Kz2Jy/f1vMZhJBmDpaZfduFxW1hx
7+1BwYJ9u9J9kaK/RJQ4+Dj2iDLqa/NnU9pth0r9GC7OfNobFbx7BXGPDWhM3UwK
pB1opmFbR/m/0H+p9GI6Kpo2mjmFrKESY1fbE3Dd5bDJOZI5oy6jw4dMKLdVdGbe
XFSh0gAy1Aj7vN8XQo1TbveiwF7KFraGEDmmc7zU4FVI2yNOCT0IyzHxEajbD9ck
fR3xsEmBlm8c1d9+ho4hZURXkTKqGOtvN1VdS702CZX3wWDvxjoc61bRH+hI1lp7
I33OiA7BWKvjcrJDVihUyqAJIlS3WEN0gd7xlRAcrtoA9aob2NlvWWXMTf1JyU+N
QIZQa5bPt3gWnOEYNnFOgcb305657uIVOzkpDZw5YEV8rwSgzs6HexTFI2TA5rTy
cfeO3e+RiExMZaznkaEAp6UzdvtLud7X3XouWZyaM7KmZGK7AQMSyBqLvTxOgm2i
to7w/NuTWXU5O/p0vPMnN9slMZxynVR70lnZyoWo3uDC5pxAcmHcS+brSCVCeeMM
To/Ey9Nsypl5uHsYw/NP+N9l2MlG94GEdranYahN/okb2IGeZ6AqHtsU9RP5zh66
4kvEVUwZ9JiWy7ADigRZ0PUePnosgOFioTDG2QuK7s8MU/qdq6VB/TVFAC+WUjw/
5R1/wyjjb8zIC+8=
=+WlS
-----END PGP SIGNATURE-----


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

end of thread, other threads:[~2014-05-14 20:22 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-11 16:41 Kernel binary for RTL8192EE Larry Finger
     [not found] ` <CAB1v6G2jEgcUrCsQn2mo5Zts2mXpVfYTmjkg_dMT2oAQKOc08w@mail.gmail.com>
     [not found]   ` <CAB1v6G0iFqjaLcmsFS=H_5d+Shr13-wJww74jP=adi01mLmZdw@mail.gmail.com>
2014-05-12 14:58     ` Larry Finger
2014-05-14 18:54 ` Stefan Krüger
2014-05-14 19:07 ` stefan.krueger
2014-05-14 19:30   ` Larry Finger
2014-05-14 20:22     ` stefan.krueger

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