1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989 | wpa_supplicant v2.1
random: Trying to read entropy from /dev/random
Successfully initialized wpa_supplicant
Initializing interface 'wlan0' conf 'test.conf' driver 'default' ctrl_interface 'N/A' bridge 'N/A'
Configuration file 'test.conf' -> '/home/justin/test.conf'
Reading configuration file '/home/justin/test.conf'
Line: 1 - start of a new network block
ssid - hexdump_ascii(len=9):
73 74 65 69 6e 62 65 72 67 steinberg
PSK - hexdump(len=32): [REMOVED]
Priority group 0
id=0 ssid='steinberg'
rfkill: initial event: idx=0 type=1 op=0 soft=0 hard=0
rfkill: initial event: idx=1 type=2 op=0 soft=1 hard=0
rfkill: initial event: idx=2 type=1 op=0 soft=0 hard=0
rfkill: initial event: idx=3 type=1 op=0 soft=0 hard=0
nl80211: Supported cipher 00-0f-ac:1
nl80211: Supported cipher 00-0f-ac:5
nl80211: Supported cipher 00-0f-ac:2
nl80211: Supported cipher 00-0f-ac:4
nl80211: Supported cipher 00-0f-ac:6
nl80211: interface wlan0 in phy phy0
nl80211: Set mode ifindex 3 iftype 2 (STATION)
nl80211: Subscribe to mgmt frames with non-AP handle 0x118d970
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0104
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 01 04
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040a
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0a
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040b
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0b
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040c
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0c
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040d
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0d
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090a
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0a
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090b
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0b
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090c
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0c
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090d
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0d
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0409506f9a09
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=6): 04 09 50 6f 9a 09
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=7f506f9a09
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=5): 7f 50 6f 9a 09
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0801
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 08 01
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=06
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=1): 06
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0a07
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 0a 07
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0a11
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 0a 11
nl80211: Failed to register Action frame processing - ignore for now
netlink: Operstate: ifindex=3 linkmode=1 (userspace-control), operstate=5 (IF_OPER_DORMANT)
nl80211: driver param='(null)'
Add interface wlan0 to a new radio phy0
nl80211: Regulatory information - country=00
nl80211: 2402-2472 @ 40 MHz 20 mBm
nl80211: 2457-2482 @ 40 MHz 20 mBm
nl80211: 2474-2494 @ 20 MHz 20 mBm
nl80211: 5170-5250 @ 40 MHz 20 mBm
nl80211: 5735-5835 @ 40 MHz 20 mBm
nl80211: Added 802.11b mode based on 802.11g information
wlan0: Own MAC address: 48:5d:60:6d:cf:28
wpa_driver_nl80211_set_key: ifindex=3 (wlan0) alg=0 addr=(nil) key_idx=0 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=3 (wlan0) alg=0 addr=(nil) key_idx=1 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=3 (wlan0) alg=0 addr=(nil) key_idx=2 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=3 (wlan0) alg=0 addr=(nil) key_idx=3 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=3 (wlan0) alg=0 addr=(nil) key_idx=4 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=3 (wlan0) alg=0 addr=(nil) key_idx=5 set_tx=0 seq_len=0 key_len=0
wlan0: RSN: flushing PMKID list in the driver
nl80211: Flush PMKIDs
wlan0: Setting scan request: 0.100000 sec
wlan0: WPS: UUID based on MAC address: aff5cb45-f51d-510b-9fdc-546a7624f316
EAPOL: SUPP_PAE entering state DISCONNECTED
EAPOL: Supplicant port status: Unauthorized
nl80211: Skip set_supp_port(unauthorized) while not associated
EAPOL: KEY_RX entering state NO_KEY_RECEIVE
EAPOL: SUPP_BE entering state INITIALIZE
EAP: EAP entering state DISABLED
wlan0: Added interface wlan0
wlan0: State: DISCONNECTED -> DISCONNECTED
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
random: Got 20/20 bytes from /dev/random
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
wlan0: Add radio work 'scan'@0x11abcd0
wlan0: First radio work item in the queue - schedule start immediately
wlan0: Starting radio work 'scan'@0x11abcd0 after 0.000006 second wait
wlan0: nl80211: scan request
nl80211: Scan SSID - hexdump_ascii(len=0): [NULL]
Scan requested (ret=0) - scan timeout 10 seconds
nl80211: Event message available
nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
wlan0: nl80211: Scan trigger
wlan0: Event SCAN_STARTED (49) received
wlan0: Own scan request started a scan in 0.000021 seconds
wlan0: CTRL-EVENT-SCAN-STARTED
nl80211: Event message available
nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
wlan0: nl80211: New scan results available
nl80211: Scan probed for SSID ''
nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484 5180 5190 5200 5210 5220 5230 5240 5745 5765 5785 5805 5825
wlan0: Event SCAN_RESULTS (3) received
wlan0: Scan completed in 0.441012 seconds
nl80211: Received scan results (3 BSSes)
wlan0: BSS: Start scan result update 1
wlan0: BSS: Add new id 0 BSSID 00:14:6c:da:55:d0 SSID 'steinberg'
wlan0: BSS: Add new id 1 BSSID 28:c6:8e:2a:d9:50 SSID 'steinberg-den'
wlan0: BSS: Add new id 2 BSSID c0:56:27:9c:ff:b3 SSID ''
BSS: last_scan_res_used=3/32
wlan0: New scan results available (own=1 ext=0)
WPS: AP 28:c6:8e:2a:d9:50 type 0 added
WPS: AP[0] 28:c6:8e:2a:d9:50 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
wlan0: Radio work 'scan'@0x11abcd0 done in 0.483125 seconds
wlan0: Selecting BSS from priority group 0
wlan0: 0: 00:14:6c:da:55:d0 ssid='steinberg' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-35
wlan0: selected based on RSN IE
wlan0: selected BSS 00:14:6c:da:55:d0 ssid='steinberg'
wlan0: Considering connect request: reassociate: 0 selected: 00:14:6c:da:55:d0 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING ssid=0x118df20 current_ssid=(nil)
wlan0: Request association with 00:14:6c:da:55:d0
wlan0: Add radio work 'connect'@0x11ac750
wlan0: First radio work item in the queue - schedule start immediately
wlan0: Starting radio work 'connect'@0x11ac750 after 0.000076 second wait
wlan0: Trying to associate with 00:14:6c:da:55:d0 (SSID='steinberg' freq=2437 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
RSN: PMKSA cache search - network_ctx=0x118df20 try_opportunistic=0
RSN: Search for BSSID 00:14:6c:da:55:d0
RSN: No PMKSA cache entry found
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 2 proto 2
wlan0: WPA: Selected mgmt group cipher 32
wlan0: WPA: clearing AP WPA IE
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 01 00
wlan0: WPA: using GTK CCMP
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 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: State: SCANNING -> ASSOCIATING
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
Limit connection to BSSID 00:14:6c:da:55:d0 freq=2437 MHz based on scan results (bssid_set=0)
nl80211: Get shared freq for PHY phy0
nl80211: No shared interface for PHY (phy0) in associated state
nl80211: Set mode ifindex 3 iftype 2 (STATION)
nl80211: Unsubscribe mgmt frames handle 0x88888888899051f9 (mode change)
nl80211: Subscribe to mgmt frames with non-AP handle 0x118d970
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0104
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 01 04
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040a
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0a
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040b
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0b
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040c
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0c
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040d
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0d
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090a
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0a
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090b
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0b
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090c
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0c
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090d
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0d
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0409506f9a09
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=6): 04 09 50 6f 9a 09
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=7f506f9a09
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=5): 7f 50 6f 9a 09
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0801
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 08 01
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=06
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=1): 06
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0a07
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 0a 07
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0a11
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 0a 11
nl80211: Failed to register Action frame processing - ignore for now
nl80211: Connect (ifindex=3)
* bssid=00:14:6c:da:55:d0
* freq=2437
* SSID - hexdump_ascii(len=9):
73 74 65 69 6e 62 65 72 67 steinberg
* IEs - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
* WPA Versions 0x2
* pairwise=0xfac04
* group=0xfac04
* Auth Type 0
nl80211: Connect request send successfully
wlan0: Setting authentication timeout: 10 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: External notification - EAP fail=0
EAPOL: External notification - portControl=Auto
RTM_NEWLINK: ifi_index=3 ifname=wlan0 wext ifi_flags=0x11003 ([UP][LOWER_UP])
nl80211: Event message available
nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan0
nl80211: Connect event
wlan0: Event ASSOC_REJECT (13) received
wlan0: CTRL-EVENT-ASSOC-REJECT bssid=28:c6:8e:2a:d9:50 status_code=16
wlan0: Radio work 'connect'@0x11ac750 done in 0.047526 seconds
Added BSSID 28:c6:8e:2a:d9:50 into blacklist
wlan0: Blacklist count 1 --> request scan in 100 ms
wlan0: Setting scan request: 0.100000 sec
wlan0: State: ASSOCIATING -> DISCONNECTED
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
EAPOL: External notification - portEnabled=0
EAPOL: External notification - portValid=0
EAPOL: External notification - EAP success=0
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
wlan0: Add radio work 'scan'@0x11ac750
wlan0: First radio work item in the queue - schedule start immediately
wlan0: Starting radio work 'scan'@0x11ac750 after 0.000013 second wait
wlan0: nl80211: scan request
nl80211: Scan SSID - hexdump_ascii(len=0): [NULL]
Scan requested (ret=0) - scan timeout 30 seconds
nl80211: Event message available
nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
wlan0: nl80211: Scan trigger
wlan0: Event SCAN_STARTED (49) received
wlan0: Own scan request started a scan in 0.000027 seconds
wlan0: CTRL-EVENT-SCAN-STARTED
EAPOL: disable timer tick
nl80211: Event message available
nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
wlan0: nl80211: New scan results available
nl80211: Scan probed for SSID ''
nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484 5180 5190 5200 5210 5220 5230 5240 5745 5765 5785 5805 5825
wlan0: Event SCAN_RESULTS (3) received
wlan0: Scan completed in 0.447384 seconds
nl80211: Received scan results (3 BSSes)
wlan0: BSS: Start scan result update 2
BSS: last_scan_res_used=3/32
wlan0: New scan results available (own=1 ext=0)
WPS: AP[0] 28:c6:8e:2a:d9:50 type=0 tries=0 last_attempt=-1 sec ago blacklist=1
wlan0: Radio work 'scan'@0x11ac750 done in 0.447929 seconds
wlan0: Selecting BSS from priority group 0
wlan0: 0: 00:14:6c:da:55:d0 ssid='steinberg' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-36
wlan0: selected based on RSN IE
wlan0: selected BSS 00:14:6c:da:55:d0 ssid='steinberg'
wlan0: Considering connect request: reassociate: 0 selected: 00:14:6c:da:55:d0 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING ssid=0x118df20 current_ssid=(nil)
wlan0: Request association with 00:14:6c:da:55:d0
wlan0: Add radio work 'connect'@0x11ac750
wlan0: First radio work item in the queue - schedule start immediately
wlan0: RSN: added PMKSA cache candidate 00:14:6c:da:55:d0 prio 1000
wlan0: RSN: processing PMKSA candidate list
wlan0: RSN: not in suitable state for new pre-authentication
wlan0: Starting radio work 'connect'@0x11ac750 after 0.000090 second wait
wlan0: Trying to associate with 00:14:6c:da:55:d0 (SSID='steinberg' freq=2437 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
RSN: PMKSA cache search - network_ctx=0x118df20 try_opportunistic=0
RSN: Search for BSSID 00:14:6c:da:55:d0
RSN: No PMKSA cache entry found
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 2 proto 2
wlan0: WPA: Selected mgmt group cipher 32
wlan0: WPA: clearing AP WPA IE
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 01 00
wlan0: WPA: using GTK CCMP
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 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: State: SCANNING -> ASSOCIATING
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
Limit connection to BSSID 00:14:6c:da:55:d0 freq=2437 MHz based on scan results (bssid_set=0)
nl80211: Get shared freq for PHY phy0
nl80211: No shared interface for PHY (phy0) in associated state
nl80211: Set mode ifindex 3 iftype 2 (STATION)
nl80211: Unsubscribe mgmt frames handle 0x88888888899051f9 (mode change)
nl80211: Subscribe to mgmt frames with non-AP handle 0x118d970
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0104
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 01 04
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040a
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0a
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040b
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0b
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040c
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0c
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040d
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0d
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090a
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0a
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090b
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0b
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090c
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0c
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090d
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0d
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0409506f9a09
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=6): 04 09 50 6f 9a 09
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=7f506f9a09
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=5): 7f 50 6f 9a 09
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0801
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 08 01
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=06
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=1): 06
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0a07
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 0a 07
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0a11
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 0a 11
nl80211: Failed to register Action frame processing - ignore for now
nl80211: Connect (ifindex=3)
* bssid=00:14:6c:da:55:d0
* freq=2437
* SSID - hexdump_ascii(len=9):
73 74 65 69 6e 62 65 72 67 steinberg
* IEs - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
* WPA Versions 0x2
* pairwise=0xfac04
* group=0xfac04
* Auth Type 0
nl80211: Connect request send successfully
wlan0: Setting authentication timeout: 10 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: External notification - EAP fail=0
EAPOL: External notification - portControl=Auto
RTM_NEWLINK: ifi_index=3 ifname=wlan0 wext ifi_flags=0x11003 ([UP][LOWER_UP])
nl80211: Event message available
nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan0
nl80211: Connect event
wlan0: Event ASSOC_REJECT (13) received
wlan0: CTRL-EVENT-ASSOC-REJECT bssid=28:c6:8e:2a:d9:50 status_code=16
wlan0: Radio work 'connect'@0x11ac750 done in 0.047544 seconds
BSSID 28:c6:8e:2a:d9:50 blacklist count incremented to 2
wlan0: Blacklist count 2 --> request scan in 500 ms
wlan0: Setting scan request: 0.500000 sec
wlan0: State: ASSOCIATING -> DISCONNECTED
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
EAPOL: External notification - portEnabled=0
EAPOL: External notification - portValid=0
EAPOL: External notification - EAP success=0
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
wlan0: Add radio work 'scan'@0x11ac750
wlan0: First radio work item in the queue - schedule start immediately
wlan0: Starting radio work 'scan'@0x11ac750 after 0.000014 second wait
wlan0: nl80211: scan request
nl80211: Scan SSID - hexdump_ascii(len=0): [NULL]
Scan requested (ret=0) - scan timeout 30 seconds
nl80211: Event message available
nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
wlan0: nl80211: Scan trigger
wlan0: Event SCAN_STARTED (49) received
wlan0: Own scan request started a scan in 0.000026 seconds
wlan0: CTRL-EVENT-SCAN-STARTED
nl80211: Event message available
nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
wlan0: nl80211: New scan results available
nl80211: Scan probed for SSID ''
nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484 5180 5190 5200 5210 5220 5230 5240 5745 5765 5785 5805 5825
wlan0: Event SCAN_RESULTS (3) received
wlan0: Scan completed in 0.446984 seconds
nl80211: Received scan results (4 BSSes)
wlan0: BSS: Start scan result update 3
wlan0: BSS: Add new id 3 BSSID 48:5d:36:2e:c5:a4 SSID '\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'
BSS: last_scan_res_used=4/32
wlan0: New scan results available (own=1 ext=0)
WPS: AP[0] 28:c6:8e:2a:d9:50 type=0 tries=0 last_attempt=-1 sec ago blacklist=2
wlan0: Radio work 'scan'@0x11ac750 done in 0.447528 seconds
wlan0: Selecting BSS from priority group 0
wlan0: 0: 00:14:6c:da:55:d0 ssid='steinberg' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-38
wlan0: selected based on RSN IE
wlan0: selected BSS 00:14:6c:da:55:d0 ssid='steinberg'
wlan0: Considering connect request: reassociate: 0 selected: 00:14:6c:da:55:d0 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING ssid=0x118df20 current_ssid=(nil)
wlan0: Request association with 00:14:6c:da:55:d0
wlan0: Add radio work 'connect'@0x11ac750
wlan0: First radio work item in the queue - schedule start immediately
wlan0: RSN: added PMKSA cache candidate 00:14:6c:da:55:d0 prio 1000
wlan0: RSN: processing PMKSA candidate list
wlan0: RSN: not in suitable state for new pre-authentication
wlan0: Starting radio work 'connect'@0x11ac750 after 0.000030 second wait
wlan0: Trying to associate with 00:14:6c:da:55:d0 (SSID='steinberg' freq=2437 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
RSN: PMKSA cache search - network_ctx=0x118df20 try_opportunistic=0
RSN: Search for BSSID 00:14:6c:da:55:d0
RSN: No PMKSA cache entry found
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 2 proto 2
wlan0: WPA: Selected mgmt group cipher 32
wlan0: WPA: clearing AP WPA IE
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 01 00
wlan0: WPA: using GTK CCMP
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 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: State: SCANNING -> ASSOCIATING
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
Limit connection to BSSID 00:14:6c:da:55:d0 freq=2437 MHz based on scan results (bssid_set=0)
nl80211: Get shared freq for PHY phy0
nl80211: No shared interface for PHY (phy0) in associated state
nl80211: Set mode ifindex 3 iftype 2 (STATION)
nl80211: Unsubscribe mgmt frames handle 0x88888888899051f9 (mode change)
nl80211: Subscribe to mgmt frames with non-AP handle 0x118d970
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0104
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 01 04
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040a
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0a
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040b
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0b
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040c
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0c
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040d
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0d
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090a
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0a
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090b
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0b
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090c
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0c
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090d
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0d
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0409506f9a09
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=6): 04 09 50 6f 9a 09
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=7f506f9a09
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=5): 7f 50 6f 9a 09
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0801
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 08 01
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=06
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=1): 06
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0a07
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 0a 07
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0a11
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 0a 11
nl80211: Failed to register Action frame processing - ignore for now
nl80211: Connect (ifindex=3)
* bssid=00:14:6c:da:55:d0
* freq=2437
* SSID - hexdump_ascii(len=9):
73 74 65 69 6e 62 65 72 67 steinberg
* IEs - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
* WPA Versions 0x2
* pairwise=0xfac04
* group=0xfac04
* Auth Type 0
nl80211: Connect request send successfully
wlan0: Setting authentication timeout: 10 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: External notification - EAP fail=0
EAPOL: External notification - portControl=Auto
RTM_NEWLINK: ifi_index=3 ifname=wlan0 wext ifi_flags=0x11003 ([UP][LOWER_UP])
wlan0: Authentication with 00:14:6c:da:55:d0 timed out.
Added BSSID 00:14:6c:da:55:d0 into blacklist
wlan0: Request to deauthenticate - bssid=00:00:00:00:00:00 pending_bssid=00:14:6c:da:55:d0 reason=3 state=ASSOCIATING
wpa_driver_nl80211_disconnect(reason_code=3)
wlan0: Event DEAUTH (12) received
wlan0: Deauthentication notification
wlan0: * reason 3 (locally generated)
Deauthentication frame IE(s) - hexdump(len=0): [NULL]
wlan0: CTRL-EVENT-DISCONNECTED bssid=00:14:6c:da:55:d0 reason=3 locally_generated=1
wlan0: Auto connect enabled: try to reconnect (wps=0 wpa_state=5)
wlan0: Setting scan request: 0.100000 sec
wlan0: Radio work 'connect'@0x11ac750 done in 10.003591 seconds
BSSID 00:14:6c:da:55:d0 blacklist count incremented to 2
wlan0: Blacklist count 2 --> request scan in 500 ms
wlan0: Ignore new scan request for 0.500000 sec since an earlier request is scheduled to trigger sooner
wlan0: Disconnect event - remove keys
wlan0: State: ASSOCIATING -> DISCONNECTED
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
EAPOL: External notification - portEnabled=0
EAPOL: External notification - portValid=0
EAPOL: External notification - EAP success=0
wlan0: State: DISCONNECTED -> DISCONNECTED
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
EAPOL: External notification - portEnabled=0
EAPOL: External notification - portValid=0
wlan0: Ignore new scan request for 1.000000 sec since an earlier request is scheduled to trigger sooner
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
wlan0: Add radio work 'scan'@0x11abcd0
wlan0: First radio work item in the queue - schedule start immediately
wlan0: Starting radio work 'scan'@0x11abcd0 after 0.000009 second wait
wlan0: nl80211: scan request
nl80211: Scan SSID - hexdump_ascii(len=0): [NULL]
Scan requested (ret=0) - scan timeout 30 seconds
nl80211: Event message available
nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
wlan0: nl80211: Scan trigger
wlan0: Event SCAN_STARTED (49) received
wlan0: Own scan request started a scan in 0.000021 seconds
wlan0: CTRL-EVENT-SCAN-STARTED
nl80211: Event message available
nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
wlan0: nl80211: New scan results available
nl80211: Scan probed for SSID ''
nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484 5180 5190 5200 5210 5220 5230 5240 5745 5765 5785 5805 5825
wlan0: Event SCAN_RESULTS (3) received
wlan0: Scan completed in 0.441662 seconds
nl80211: Received scan results (5 BSSes)
wlan0: BSS: Start scan result update 4
wlan0: BSS: Add new id 4 BSSID 54:b8:0a:e1:82:58 SSID 'E18254'
BSS: last_scan_res_used=5/32
wlan0: New scan results available (own=1 ext=0)
WPS: AP 54:b8:0a:e1:82:58 type 0 added
WPS: AP[0] 28:c6:8e:2a:d9:50 type=0 tries=0 last_attempt=-1 sec ago blacklist=2
WPS: AP[1] 54:b8:0a:e1:82:58 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
wlan0: Radio work 'scan'@0x11abcd0 done in 0.484103 seconds
wlan0: Selecting BSS from priority group 0
wlan0: 0: 00:14:6c:da:55:d0 ssid='steinberg' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-27
wlan0: skip - blacklisted (count=2 limit=0)
wlan0: 1: 28:c6:8e:2a:d9:50 ssid='steinberg-den' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-66 wps
wlan0: skip - blacklisted (count=2 limit=0)
wlan0: 2: c0:56:27:9c:ff:b3 ssid='' wpa_ie_len=26 rsn_ie_len=24 caps=0x431 level=-86
wlan0: skip - SSID not known
wlan0: 3: 54:b8:0a:e1:82:58 ssid='E18254' wpa_ie_len=26 rsn_ie_len=24 caps=0x1431 level=-87 wps
wlan0: skip - SSID mismatch
wlan0: 4: 48:5d:36:2e:c5:a4 ssid='\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-94
wlan0: skip - SSID mismatch
wlan0: No APs found - clear blacklist and try again
Removed BSSID 00:14:6c:da:55:d0 from blacklist (clear)
Removed BSSID 28:c6:8e:2a:d9:50 from blacklist (clear)
wlan0: Selecting BSS from priority group 0
wlan0: 0: 00:14:6c:da:55:d0 ssid='steinberg' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-27
wlan0: selected based on RSN IE
wlan0: selected BSS 00:14:6c:da:55:d0 ssid='steinberg'
wlan0: Considering connect request: reassociate: 1 selected: 00:14:6c:da:55:d0 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING ssid=0x118df20 current_ssid=(nil)
wlan0: Request association with 00:14:6c:da:55:d0
wlan0: Add radio work 'connect'@0x11abca0
wlan0: First radio work item in the queue - schedule start immediately
wlan0: Starting radio work 'connect'@0x11abca0 after 0.000015 second wait
wlan0: Trying to associate with 00:14:6c:da:55:d0 (SSID='steinberg' freq=2437 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
RSN: PMKSA cache search - network_ctx=0x118df20 try_opportunistic=0
RSN: Search for BSSID 00:14:6c:da:55:d0
RSN: No PMKSA cache entry found
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 2 proto 2
wlan0: WPA: Selected mgmt group cipher 32
wlan0: WPA: clearing AP WPA IE
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 01 00
wlan0: WPA: using GTK CCMP
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 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: State: SCANNING -> ASSOCIATING
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
Limit connection to BSSID 00:14:6c:da:55:d0 freq=2437 MHz based on scan results (bssid_set=0)
nl80211: Get shared freq for PHY phy0
nl80211: No shared interface for PHY (phy0) in associated state
nl80211: Set mode ifindex 3 iftype 2 (STATION)
nl80211: Unsubscribe mgmt frames handle 0x88888888899051f9 (mode change)
nl80211: Subscribe to mgmt frames with non-AP handle 0x118d970
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0104
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 01 04
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040a
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0a
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040b
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0b
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040c
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0c
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040d
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0d
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090a
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0a
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090b
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0b
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090c
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0c
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090d
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0d
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0409506f9a09
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=6): 04 09 50 6f 9a 09
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=7f506f9a09
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=5): 7f 50 6f 9a 09
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0801
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 08 01
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=06
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=1): 06
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0a07
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 0a 07
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0a11
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 0a 11
nl80211: Failed to register Action frame processing - ignore for now
nl80211: Connect (ifindex=3)
* bssid=00:14:6c:da:55:d0
* freq=2437
* SSID - hexdump_ascii(len=9):
73 74 65 69 6e 62 65 72 67 steinberg
* IEs - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
* WPA Versions 0x2
* pairwise=0xfac04
* group=0xfac04
* Auth Type 0
nl80211: Connect request send successfully
wlan0: Setting authentication timeout: 10 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: External notification - EAP fail=0
EAPOL: External notification - portControl=Auto
RTM_NEWLINK: ifi_index=3 ifname=wlan0 wext ifi_flags=0x11003 ([UP][LOWER_UP])
nl80211: Event message available
nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan0
nl80211: Connect event
wlan0: Event ASSOC_REJECT (13) received
wlan0: CTRL-EVENT-ASSOC-REJECT bssid=28:c6:8e:2a:d9:50 status_code=16
wlan0: Radio work 'connect'@0x11abca0 done in 0.047443 seconds
Added BSSID 28:c6:8e:2a:d9:50 into blacklist
wlan0: Blacklist count 3 --> request scan in 1000 ms
wlan0: Setting scan request: 1.000000 sec
wlan0: State: ASSOCIATING -> DISCONNECTED
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
EAPOL: External notification - portEnabled=0
EAPOL: External notification - portValid=0
EAPOL: External notification - EAP success=0
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
wlan0: Add radio work 'scan'@0x11abcd0
wlan0: First radio work item in the queue - schedule start immediately
wlan0: Starting radio work 'scan'@0x11abcd0 after 0.000013 second wait
wlan0: nl80211: scan request
nl80211: Scan SSID - hexdump_ascii(len=0): [NULL]
Scan requested (ret=0) - scan timeout 30 seconds
nl80211: Event message available
nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
wlan0: nl80211: Scan trigger
wlan0: Event SCAN_STARTED (49) received
wlan0: Own scan request started a scan in 0.000027 seconds
wlan0: CTRL-EVENT-SCAN-STARTED
nl80211: Event message available
nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
wlan0: nl80211: New scan results available
nl80211: Scan probed for SSID ''
nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484 5180 5190 5200 5210 5220 5230 5240 5745 5765 5785 5805 5825
wlan0: Event SCAN_RESULTS (3) received
wlan0: Scan completed in 0.446020 seconds
nl80211: Received scan results (5 BSSes)
wlan0: BSS: Start scan result update 5
BSS: last_scan_res_used=5/32
wlan0: New scan results available (own=1 ext=0)
WPS: AP[0] 28:c6:8e:2a:d9:50 type=0 tries=0 last_attempt=-1 sec ago blacklist=1
WPS: AP[1] 54:b8:0a:e1:82:58 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
wlan0: Radio work 'scan'@0x11abcd0 done in 0.446531 seconds
wlan0: Selecting BSS from priority group 0
wlan0: 0: 00:14:6c:da:55:d0 ssid='steinberg' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-38
wlan0: selected based on RSN IE
wlan0: selected BSS 00:14:6c:da:55:d0 ssid='steinberg'
wlan0: Considering connect request: reassociate: 0 selected: 00:14:6c:da:55:d0 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING ssid=0x118df20 current_ssid=(nil)
wlan0: Request association with 00:14:6c:da:55:d0
wlan0: Add radio work 'connect'@0x11abca0
wlan0: First radio work item in the queue - schedule start immediately
wlan0: RSN: added PMKSA cache candidate 00:14:6c:da:55:d0 prio 1000
wlan0: RSN: processing PMKSA candidate list
wlan0: RSN: not in suitable state for new pre-authentication
wlan0: Starting radio work 'connect'@0x11abca0 after 0.000026 second wait
wlan0: Trying to associate with 00:14:6c:da:55:d0 (SSID='steinberg' freq=2437 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
RSN: PMKSA cache search - network_ctx=0x118df20 try_opportunistic=0
RSN: Search for BSSID 00:14:6c:da:55:d0
RSN: No PMKSA cache entry found
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 2 proto 2
wlan0: WPA: Selected mgmt group cipher 32
wlan0: WPA: clearing AP WPA IE
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 01 00
wlan0: WPA: using GTK CCMP
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 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: State: SCANNING -> ASSOCIATING
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
Limit connection to BSSID 00:14:6c:da:55:d0 freq=2437 MHz based on scan results (bssid_set=0)
nl80211: Get shared freq for PHY phy0
nl80211: No shared interface for PHY (phy0) in associated state
nl80211: Set mode ifindex 3 iftype 2 (STATION)
nl80211: Unsubscribe mgmt frames handle 0x88888888899051f9 (mode change)
nl80211: Subscribe to mgmt frames with non-AP handle 0x118d970
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0104
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 01 04
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040a
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0a
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040b
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0b
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040c
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0c
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=040d
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 04 0d
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090a
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0a
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090b
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0b
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090c
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0c
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=090d
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 09 0d
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0409506f9a09
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=6): 04 09 50 6f 9a 09
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=7f506f9a09
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=5): 7f 50 6f 9a 09
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0801
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 08 01
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=06
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=1): 06
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0a07
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 0a 07
nl80211: Register frame type=0xd0 nl_handle=0x118d970 match=0a11
nl80211: Register frame command failed (type=208): ret=-95 (Operation not supported)
nl80211: Register frame match - hexdump(len=2): 0a 11
nl80211: Failed to register Action frame processing - ignore for now
nl80211: Connect (ifindex=3)
* bssid=00:14:6c:da:55:d0
* freq=2437
* SSID - hexdump_ascii(len=9):
73 74 65 69 6e 62 65 72 67 steinberg
* IEs - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
* WPA Versions 0x2
* pairwise=0xfac04
* group=0xfac04
* Auth Type 0
nl80211: Connect request send successfully
wlan0: Setting authentication timeout: 10 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: External notification - EAP fail=0
EAPOL: External notification - portControl=Auto
RTM_NEWLINK: ifi_index=3 ifname=wlan0 wext ifi_flags=0x11003 ([UP][LOWER_UP])
wlan0: Authentication with 00:14:6c:da:55:d0 timed out.
Added BSSID 00:14:6c:da:55:d0 into blacklist
wlan0: Request to deauthenticate - bssid=00:00:00:00:00:00 pending_bssid=00:14:6c:da:55:d0 reason=3 state=ASSOCIATING
wpa_driver_nl80211_disconnect(reason_code=3)
wlan0: Event DEAUTH (12) received
wlan0: Deauthentication notification
wlan0: * reason 3 (locally generated)
Deauthentication frame IE(s) - hexdump(len=0): [NULL]
wlan0: CTRL-EVENT-DISCONNECTED bssid=00:14:6c:da:55:d0 reason=3 locally_generated=1
wlan0: Auto connect enabled: try to reconnect (wps=0 wpa_state=5)
wlan0: Setting scan request: 0.100000 sec
wlan0: Radio work 'connect'@0x11abca0 done in 10.003685 seconds
BSSID 00:14:6c:da:55:d0 blacklist count incremented to 2
Continuous association failures - consider temporary network disabling
wlan0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="steinberg" auth_failures=1 duration=10
wlan0: Blacklist count 4 --> request scan in 5000 ms
wlan0: Ignore new scan request for 5.000000 sec since an earlier request is scheduled to trigger sooner
wlan0: Disconnect event - remove keys
wlan0: State: ASSOCIATING -> DISCONNECTED
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
EAPOL: External notification - portEnabled=0
EAPOL: External notification - portValid=0
EAPOL: External notification - EAP success=0
wlan0: State: DISCONNECTED -> DISCONNECTED
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
EAPOL: External notification - portEnabled=0
EAPOL: External notification - portValid=0
wlan0: Ignore new scan request for 1.000000 sec since an earlier request is scheduled to trigger sooner
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
wlan0: Add radio work 'scan'@0x11abcd0
wlan0: First radio work item in the queue - schedule start immediately
wlan0: Starting radio work 'scan'@0x11abcd0 after 0.000011 second wait
wlan0: nl80211: scan request
nl80211: Scan SSID - hexdump_ascii(len=0): [NULL]
Scan requested (ret=0) - scan timeout 30 seconds
nl80211: Event message available
nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
wlan0: nl80211: Scan trigger
wlan0: Event SCAN_STARTED (49) received
wlan0: Own scan request started a scan in 0.000024 seconds
wlan0: CTRL-EVENT-SCAN-STARTED
nl80211: Event message available
nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
wlan0: nl80211: New scan results available
nl80211: Scan probed for SSID ''
nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484 5180 5190 5200 5210 5220 5230 5240 5745 5765 5785 5805 5825
wlan0: Event SCAN_RESULTS (3) received
wlan0: Scan completed in 0.444171 seconds
nl80211: Received scan results (5 BSSes)
wlan0: BSS: Start scan result update 6
BSS: last_scan_res_used=5/32
wlan0: New scan results available (own=1 ext=0)
WPS: AP[0] 28:c6:8e:2a:d9:50 type=0 tries=0 last_attempt=-1 sec ago blacklist=1
WPS: AP[1] 54:b8:0a:e1:82:58 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
wlan0: Radio work 'scan'@0x11abcd0 done in 0.487869 seconds
wlan0: Selecting BSS from priority group 0
wlan0: 0: 00:14:6c:da:55:d0 ssid='steinberg' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-34
wlan0: skip - blacklisted (count=2 limit=0)
wlan0: 1: 28:c6:8e:2a:d9:50 ssid='steinberg-den' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-65 wps
wlan0: skip - blacklisted (count=1 limit=0)
wlan0: 2: c0:56:27:9c:ff:b3 ssid='' wpa_ie_len=26 rsn_ie_len=24 caps=0x431 level=-81
wlan0: skip - SSID not known
wlan0: 3: 54:b8:0a:e1:82:58 ssid='E18254' wpa_ie_len=26 rsn_ie_len=24 caps=0x1431 level=-88 wps
wlan0: skip - disabled temporarily for 9 second(s)
wlan0: 4: 48:5d:36:2e:c5:a4 ssid='\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-91
wlan0: skip - disabled temporarily for 9 second(s)
wlan0: No APs found - clear blacklist and try again
Removed BSSID 00:14:6c:da:55:d0 from blacklist (clear)
Removed BSSID 28:c6:8e:2a:d9:50 from blacklist (clear)
wlan0: Selecting BSS from priority group 0
wlan0: 0: 00:14:6c:da:55:d0 ssid='steinberg' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-34
wlan0: skip - disabled temporarily for 9 second(s)
wlan0: 1: 28:c6:8e:2a:d9:50 ssid='steinberg-den' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-65 wps
wlan0: skip - disabled temporarily for 9 second(s)
wlan0: 2: c0:56:27:9c:ff:b3 ssid='' wpa_ie_len=26 rsn_ie_len=24 caps=0x431 level=-81
wlan0: skip - SSID not known
wlan0: 3: 54:b8:0a:e1:82:58 ssid='E18254' wpa_ie_len=26 rsn_ie_len=24 caps=0x1431 level=-88 wps
wlan0: skip - disabled temporarily for 9 second(s)
wlan0: 4: 48:5d:36:2e:c5:a4 ssid='\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-91
wlan0: skip - disabled temporarily for 9 second(s)
wlan0: No suitable network found
wlan0: Setting scan request: 5.000000 sec
RTM_NEWLINK: ifi_index=3 ifname=wlan0 wext ifi_flags=0x11003 ([UP][LOWER_UP])
wlan0: Starting AP scan for wildcard SSID
wlan0: Determining shared radio frequencies (max len 1)
wlan0: Shared frequencies (len=0): completed iteration
wlan0: Add radio work 'scan'@0x11abcd0
wlan0: First radio work item in the queue - schedule start immediately
wlan0: Starting radio work 'scan'@0x11abcd0 after 0.000012 second wait
wlan0: nl80211: scan request
nl80211: Scan SSID - hexdump_ascii(len=0): [NULL]
Scan requested (ret=0) - scan timeout 30 seconds
nl80211: Event message available
nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
wlan0: nl80211: Scan trigger
wlan0: Event SCAN_STARTED (49) received
wlan0: Own scan request started a scan in 0.000028 seconds
wlan0: CTRL-EVENT-SCAN-STARTED
nl80211: Event message available
nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
wlan0: nl80211: New scan results available
nl80211: Scan probed for SSID ''
nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 2484 5180 5190 5200 5210 5220 5230 5240 5745 5765 5785 5805 5825
wlan0: Event SCAN_RESULTS (3) received
wlan0: Scan completed in 0.445951 seconds
nl80211: Received scan results (6 BSSes)
wlan0: BSS: Start scan result update 7
wlan0: BSS: Add new id 5 BSSID a0:63:91:3b:f4:5b SSID 'FiOS-SC4C1_2GEXT'
BSS: last_scan_res_used=6/32
wlan0: New scan results available (own=1 ext=0)
WPS: AP a0:63:91:3b:f4:5b type 0 added
WPS: AP[0] 28:c6:8e:2a:d9:50 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
WPS: AP[1] 54:b8:0a:e1:82:58 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
WPS: AP[2] a0:63:91:3b:f4:5b type=0 tries=0 last_attempt=-1 sec ago blacklist=0
wlan0: Radio work 'scan'@0x11abcd0 done in 0.446545 seconds
wlan0: Selecting BSS from priority group 0
wlan0: 0: 00:14:6c:da:55:d0 ssid='steinberg' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-38
wlan0: skip - disabled temporarily for 4 second(s)
wlan0: 1: 28:c6:8e:2a:d9:50 ssid='steinberg-den' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-64 wps
wlan0: skip - disabled temporarily for 4 second(s)
wlan0: 2: c0:56:27:9c:ff:b3 ssid='' wpa_ie_len=26 rsn_ie_len=24 caps=0x431 level=-86
wlan0: skip - SSID not known
wlan0: 3: a0:63:91:3b:f4:5b ssid='FiOS-SC4C1_2GEXT' wpa_ie_len=0 rsn_ie_len=20 caps=0x1411 level=-87 wps
wlan0: skip - disabled temporarily for 4 second(s)
wlan0: 4: 54:b8:0a:e1:82:58 ssid='E18254' wpa_ie_len=26 rsn_ie_len=24 caps=0x1431 level=-88 wps
wlan0: skip - disabled temporarily for 4 second(s)
wlan0: 5: 48:5d:36:2e:c5:a4 ssid='\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-91
wlan0: skip - disabled temporarily for 4 second(s)
wlan0: No suitable network found
wlan0: Setting scan request: 5.000000 sec
RTM_NEWLINK: ifi_index=3 ifname=wlan0 wext ifi_flags=0x11003 ([UP][LOWER_UP])
wlan0: Removing interface wlan0
wlan0: Request to deauthenticate - bssid=00:00:00:00:00:00 pending_bssid=00:00:00:00:00:00 reason=3 state=SCANNING
wlan0: State: SCANNING -> DISCONNECTED
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
EAPOL: External notification - portEnabled=0
EAPOL: External notification - portValid=0
wlan0: BSS: Remove id 0 BSSID 00:14:6c:da:55:d0 SSID 'steinberg' due to wpa_bss_flush
wlan0: BSS: Remove id 1 BSSID 28:c6:8e:2a:d9:50 SSID 'steinberg-den' due to wpa_bss_flush
wlan0: BSS: Remove id 2 BSSID c0:56:27:9c:ff:b3 SSID '' due to wpa_bss_flush
wlan0: BSS: Remove id 5 BSSID a0:63:91:3b:f4:5b SSID 'FiOS-SC4C1_2GEXT' due to wpa_bss_flush
wlan0: BSS: Remove id 4 BSSID 54:b8:0a:e1:82:58 SSID 'E18254' due to wpa_bss_flush
wlan0: BSS: Remove id 3 BSSID 48:5d:36:2e:c5:a4 SSID '\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' due to wpa_bss_flush
wlan0: Cancelling scan request
wlan0: Cancelling authentication timeout
Remove interface wlan0 from radio phy0
Remove radio phy0
nl80211: Remove monitor interface: refcount=0
netlink: Operstate: ifindex=3 linkmode=0 (kernel-control), operstate=6 (IF_OPER_UP)
nl80211: Set mode ifindex 3 iftype 2 (STATION)
nl80211: Unsubscribe mgmt frames handle 0x88888888899051f9 (mode change)
wlan0: CTRL-EVENT-TERMINATING
|