Ubuntu Pastebin

Paste from serge at Tue, 23 May 2017 14:31:39 +0000

Download as text
   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
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
wpa_supplicant v2.6
random: Trying to read entropy from /dev/random
Successfully initialized wpa_supplicant
Initializing interface 'wlan0' conf '/etc/wpa/bb.wpa' driver 'default' ctrl_interface 'N/A' bridge 'N/A'
Configuration file '/etc/wpa/bb.wpa' -> '/etc/wpa/bb.wpa'
Reading configuration file '/etc/wpa/bb.wpa'
Line: 1 - start of a new network block
ssid - hexdump_ascii(len=3):
     62 62 73                                          bbs             
scan_ssid=1 (0x1)
PSK (ASCII passphrase) - hexdump_ascii(len=11): [REMOVED]
pairwise: 0x10
group: 0x10
key_mgmt: 0x2
PSK (from passphrase) - hexdump(len=32): [REMOVED]
Priority group 0
   id=0 ssid='bbs'
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: Using driver-based off-channel TX
nl80211: Driver-advertised extended capabilities (default) - hexdump(len=8): 04 00 00 00 00 00 00 40
nl80211: Driver-advertised extended capabilities mask (default) - hexdump(len=8): 04 00 00 00 00 00 00 40
nl80211: Use separate P2P group interface (driver advertised support)
nl80211: Enable multi-channel concurrent (driver advertised support)
nl80211: use P2P_DEVICE support
nl80211: interface wlan0 in phy phy0
nl80211: Set mode ifindex 3 iftype 2 (STATION)
nl80211: Subscribe to mgmt frames with non-AP handle 0x555560c32fb0
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c32fb0 match=040a
nl80211: Register frame command failed (type=208): ret=-114 (Operation already in progress)
nl80211: Register frame match - hexdump(len=2): 04 0a
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c32fb0 match=040b
nl80211: Register frame command failed (type=208): ret=-114 (Operation already in progress)
nl80211: Register frame match - hexdump(len=2): 04 0b
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c32fb0 match=040c
nl80211: Register frame command failed (type=208): ret=-114 (Operation already in progress)
nl80211: Register frame match - hexdump(len=2): 04 0c
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c32fb0 match=040d
nl80211: Register frame command failed (type=208): ret=-114 (Operation already in progress)
nl80211: Register frame match - hexdump(len=2): 04 0d
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c32fb0 match=090a
nl80211: Register frame command failed (type=208): ret=-114 (Operation already in progress)
nl80211: Register frame match - hexdump(len=2): 09 0a
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c32fb0 match=090b
nl80211: Register frame command failed (type=208): ret=-114 (Operation already in progress)
nl80211: Register frame match - hexdump(len=2): 09 0b
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c32fb0 match=090c
nl80211: Register frame command failed (type=208): ret=-114 (Operation already in progress)
nl80211: Register frame match - hexdump(len=2): 09 0c
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c32fb0 match=090d
nl80211: Register frame command failed (type=208): ret=-114 (Operation already in progress)
nl80211: Register frame match - hexdump(len=2): 09 0d
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c32fb0 match=0409506f9a09
nl80211: Register frame command failed (type=208): ret=-114 (Operation already in progress)
nl80211: Register frame match - hexdump(len=6): 04 09 50 6f 9a 09
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c32fb0 match=7f506f9a09
nl80211: Register frame command failed (type=208): ret=-114 (Operation already in progress)
nl80211: Register frame match - hexdump(len=5): 7f 50 6f 9a 09
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c32fb0 match=0801
nl80211: Register frame command failed (type=208): ret=-114 (Operation already in progress)
nl80211: Register frame match - hexdump(len=2): 08 01
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c32fb0 match=06
nl80211: Register frame command failed (type=208): ret=-114 (Operation already in progress)
nl80211: Register frame match - hexdump(len=1): 06
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c32fb0 match=0a07
nl80211: Register frame command failed (type=208): ret=-114 (Operation already in progress)
nl80211: Register frame match - hexdump(len=2): 0a 07
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c32fb0 match=0a11
nl80211: Register frame command failed (type=208): ret=-114 (Operation already in progress)
nl80211: Register frame match - hexdump(len=2): 0a 11
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c32fb0 match=1101
nl80211: Register frame command failed (type=208): ret=-114 (Operation already in progress)
nl80211: Register frame match - hexdump(len=2): 11 01
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c32fb0 match=1102
nl80211: Register frame command failed (type=208): ret=-114 (Operation already in progress)
nl80211: Register frame match - hexdump(len=2): 11 02
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c32fb0 match=0505
nl80211: Register frame command failed (type=208): ret=-114 (Operation already in progress)
nl80211: Register frame match - hexdump(len=2): 05 05
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c32fb0 match=0500
nl80211: Register frame command failed (type=208): ret=-114 (Operation already in progress)
nl80211: Register frame match - hexdump(len=2): 05 00
nl80211: Failed to register Action frame processing - ignore for now
rfkill: initial event: idx=2 type=1 op=0 soft=0 hard=0
netlink: Operstate: ifindex=3 linkmode=1 (userspace-control), operstate=5 (IF_OPER_DORMANT)
Add interface wlan0 to a new radio phy0
nl80211: Regulatory information - country=US (DFS-FCC)
nl80211: 2402-2472 @ 40 MHz 30 mBm
nl80211: 5170-5250 @ 80 MHz 17 mBm
nl80211: 5250-5330 @ 80 MHz 23 mBm (DFS)
nl80211: 5490-5730 @ 160 MHz 23 mBm (DFS)
nl80211: 5735-5835 @ 80 MHz 30 mBm
nl80211: 57240-63720 @ 2160 MHz 40 mBm
nl80211: Added 802.11b mode based on 802.11g information
wlan0: Own MAC address: e8:2a:ea:9a:88:cd
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
TDLS: TDLS operation not supported by driver
TDLS: Driver uses internal link setup
TDLS: Driver does not support TDLS channel switching
wlan0: WPS: UUID based on MAC address: d7180c8f-b688-53a5-89b5-d192a8354c9e
ENGINE: Loading dynamic engine
ENGINE: Loading dynamic engine
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)
nl80211: Create interface iftype 10 (P2P_DEVICE)
nl80211: New P2P Device interface p2p-dev-wlan0 (0xa) created
Initializing interface 'p2p-dev-wlan0' conf '/etc/wpa/bb.wpa' driver 'nl80211' ctrl_interface 'N/A' bridge 'N/A'
Configuration file '/etc/wpa/bb.wpa' -> '/etc/wpa/bb.wpa'
Reading configuration file '/etc/wpa/bb.wpa'
Line: 1 - start of a new network block
ssid - hexdump_ascii(len=3):
     62 62 73                                          bbs             
scan_ssid=1 (0x1)
PSK (ASCII passphrase) - hexdump_ascii(len=11): [REMOVED]
pairwise: 0x10
group: 0x10
key_mgmt: 0x2
PSK (from passphrase) - hexdump(len=32): [REMOVED]
Priority group 0
   id=0 ssid='bbs'
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: Using driver-based off-channel TX
nl80211: Driver-advertised extended capabilities (default) - hexdump(len=8): 04 00 00 00 00 00 00 40
nl80211: Driver-advertised extended capabilities mask (default) - hexdump(len=8): 04 00 00 00 00 00 00 40
nl80211: Use separate P2P group interface (driver advertised support)
nl80211: Enable multi-channel concurrent (driver advertised support)
nl80211: use P2P_DEVICE support
nl80211: interface p2p-dev-wlan0 in phy phy0
nl80211: Set mode ifindex 0 iftype 10 (P2P_DEVICE)
nl80211: Failed to set interface 0 to mode 10: -22 (Invalid argument)
nl80211: Subscribe to mgmt frames with non-AP handle 0x555560c525e0
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c525e0 match=040a
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c525e0 match=040b
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c525e0 match=040c
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c525e0 match=040d
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c525e0 match=090a
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c525e0 match=090b
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c525e0 match=090c
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c525e0 match=090d
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c525e0 match=0409506f9a09
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c525e0 match=7f506f9a09
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c525e0 match=0801
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c525e0 match=06
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c525e0 match=0a07
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c525e0 match=0a11
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c525e0 match=1101
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c525e0 match=1102
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c525e0 match=0505
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x555560c525e0 match=0500
nl80211: Use (wlan0) to initialize P2P Device rfkill
rfkill: initial event: idx=2 type=1 op=0 soft=0 hard=0
nl80211: Start P2P Device p2p-dev-wlan0 (0xa): Success
Add interface p2p-dev-wlan0 to existing radio phy0
nl80211: Regulatory information - country=US (DFS-FCC)
nl80211: 2402-2472 @ 40 MHz 30 mBm
nl80211: 5170-5250 @ 80 MHz 17 mBm
nl80211: 5250-5330 @ 80 MHz 23 mBm (DFS)
nl80211: 5490-5730 @ 160 MHz 23 mBm (DFS)
nl80211: 5735-5835 @ 80 MHz 30 mBm
nl80211: 57240-63720 @ 2160 MHz 40 mBm
nl80211: Added 802.11b mode based on 802.11g information
p2p-dev-wlan0: Own MAC address: e8:2a:ea:9a:88:cf
p2p-dev-wlan0: RSN: flushing PMKID list in the driver
nl80211: Flush PMKIDs
p2p-dev-wlan0: State: DISCONNECTED -> INACTIVE
p2p-dev-wlan0: WPS: UUID from the first interface: d7180c8f-b688-53a5-89b5-d192a8354c9e
ENGINE: Loading dynamic engine
ENGINE: Loading dynamic engine
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
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Own listen channel: 81:11
P2P: Random operating channel: 81:11
P2P: initialized
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
P2P: cli_channels:
p2p-dev-wlan0: Added interface p2p-dev-wlan0
p2p-dev-wlan0: State: INACTIVE -> DISCONNECTED
nl80211: Set p2p-dev-wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=0 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
p2p-dev-wlan0: Determining shared radio frequencies (max len 2)
p2p-dev-wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
P2P: cli_channels:
random: Got 20/20 bytes from /dev/random
RTM_NEWLINK: ifi_index=3 ifname=wlan0 operstate=5 linkmode=1 ifi_family=0 ifi_flags=0x11003 ([UP][LOWER_UP])
wlan0: Starting delayed sched scan
wlan0: Use normal scan instead of sched_scan for initial scans (normal_scans=0)
wlan0: Setting scan request: 0.000000 sec
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
P2P: cli_channels:
Scan SSID - hexdump_ascii(len=3):
     62 62 73                                          bbs             
wlan0: Starting AP scan for wildcard SSID
WPS: Building WPS IE for Probe Request
WPS:  * Version (hardcoded 0x10)
WPS:  * Request Type
WPS:  * Config Methods (3148)
WPS:  * UUID-E
WPS:  * Primary Device Type
WPS:  * RF Bands (3)
WPS:  * Association State
WPS:  * Configuration Error (0)
WPS:  * Device Password ID (0)
WPS:  * Manufacturer
WPS:  * Model Name
WPS:  * Model Number
WPS:  * Device Name
WPS:  * Version2 (0x20)
P2P: * P2P IE header
P2P: * Capability dev=25 group=00
P2P: * Listen Channel: Regulatory Class 81 Channel 11
wlan0: Add radio work 'scan'@0x555560c58c00
wlan0: First radio work item in the queue - schedule start immediately
wlan0: Starting radio work 'scan'@0x555560c58c00 after 0.000008 second wait
wlan0: nl80211: scan request
nl80211: Scan SSID - hexdump_ascii(len=3):
     62 62 73                                          bbs             
nl80211: Scan SSID - hexdump_ascii(len=0): [NULL]
nl80211: Scan extra IEs - hexdump(len=136): 7f 08 04 00 0a 02 00 00 00 40 dd 69 00 50 f2 04 10 4a 00 01 10 10 3a 00 01 00 10 08 00 02 31 48 10 47 00 10 d7 18 0c 8f b6 88 53 a5 89 b5 d1 92 a8 35 4c 9e 10 54 00 08 00 00 00 00 00 00 00 00 10 3c 00 01 03 10 02 00 02 00 00 10 09 00 02 00 00 10 12 00 02 00 00 10 21 00 01 20 10 23 00 01 20 10 24 00 01 20 10 11 00 01 20 10 49 00 06 00 37 2a 00 01 20 dd 11 50 6f 9a 09 02 02 00 25 00 06 05 00 58 58 04 51 0b
Scan requested (ret=0) - scan timeout 10 seconds
nl80211: Event message available
nl80211: Ignored event (cmd=33) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
wlan0: nl80211: Scan trigger
wlan0: Event SCAN_STARTED (47) received
wlan0: Own scan request started a scan in 0.000026 seconds
EAPOL: disable timer tick
EAPOL: disable timer tick
RTM_NEWLINK: ifi_index=3 ifname=wlan0 wext ifi_family=0 ifi_flags=0x11003 ([UP][LOWER_UP])
nl80211: Event message available
nl80211: Ignored event (cmd=34) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
wlan0: nl80211: New scan results available
nl80211: Scan probed for SSID 'bbs'
nl80211: Scan probed for SSID ''
nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 5180 5200 5220 5240 5260 5280 5300 5320 5500 5520 5540 5560 5580 5600 5620 5640 5660 5680 5700 5720 5745 5765 5785 5805 5825
wlan0: Event SCAN_RESULTS (3) received
wlan0: Scan completed in 4.303921 seconds
nl80211: Associated on 2462 MHz
nl80211: Associated with 00:15:ff:33:c1:14
nl80211: Received scan results (13 BSSes)
nl80211: Scan results indicate BSS status with 00:15:ff:33:c1:14 as associated
nl80211: Local state (not associated) does not match with BSS state
nl80211: Clear possible state mismatch (00:15:ff:33:c1:14)
wlan0: BSS: Start scan result update 1
wlan0: BSS: Add new id 0 BSSID a4:e4:b8:17:e9:7c SSID 'bbs' freq 2437
wlan0: BSS: Add new id 1 BSSID 00:15:ff:33:c1:14 SSID 'FreedomPop-8QUQ' freq 2462
wlan0: BSS: Add new id 2 BSSID ac:67:06:73:fb:98 SSID '' freq 2412
wlan0: BSS: Add new id 3 BSSID c8:d7:19:0f:5c:b9 SSID 'OWNER-PC_Network' freq 2412
wlan0: BSS: Add new id 4 BSSID a0:04:60:cc:2d:8b SSID 'HotSprings_2GEXT' freq 2412
wlan0: BSS: Add new id 5 BSSID ac:67:06:73:fa:d8 SSID '' freq 2412
wlan0: BSS: Add new id 6 BSSID ac:67:06:33:fb:98 SSID 'HotSprings' freq 2412
wlan0: BSS: Add new id 7 BSSID ac:67:06:33:fb:9c SSID 'HotSprings' freq 5765
wlan0: BSS: Add new id 8 BSSID c0:8a:de:2e:15:c8 SSID 'HotSprings' freq 2462
wlan0: BSS: Add new id 9 BSSID ac:67:06:33:fb:a8 SSID 'HotSprings' freq 2412
wlan0: BSS: Add new id 10 BSSID a2:04:60:cc:2d:8b SSID 'HotSprings_5GEXT' freq 5765
wlan0: BSS: Add new id 11 BSSID 68:92:34:0e:c9:98 SSID 'HotSprings' freq 2462
wlan0: BSS: Add new id 12 BSSID ac:67:06:33:fb:ac SSID 'HotSprings' freq 5765
BSS: last_scan_res_used=13/32
wlan0: New scan results available (own=1 ext=0)
WPS: AP a4:e4:b8:17:e9:7c type 0 added
WPS: AP c8:d7:19:0f:5c:b9 type 0 added
WPS: AP a0:04:60:cc:2d:8b type 0 added
WPS: AP a2:04:60:cc:2d:8b type 0 added
WPS: AP[0] a4:e4:b8:17:e9:7c type=0 tries=0 last_attempt=-1 sec ago blacklist=0
WPS: AP[1] c8:d7:19:0f:5c:b9 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
WPS: AP[2] a0:04:60:cc:2d:8b type=0 tries=0 last_attempt=-1 sec ago blacklist=0
WPS: AP[3] a2:04:60:cc:2d:8b type=0 tries=0 last_attempt=-1 sec ago blacklist=0
wlan0: Radio work 'scan'@0x555560c58c00 done in 4.318697 seconds
wlan0: radio_work_free('scan'@0x555560c58c00: num_active_works --> 0
wlan0: Selecting BSS from priority group 0
wlan0: 0: a4:e4:b8:17:e9:7c ssid='bbs' wpa_ie_len=0 rsn_ie_len=20 caps=0x1511 level=-36 freq=2437  wps p2p
wlan0:    selected based on RSN IE
wlan0:    selected BSS a4:e4:b8:17:e9:7c ssid='bbs'
wlan0: Considering connect request: reassociate: 0  selected: a4:e4:b8:17:e9:7c  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid=0x555560c34150  current_ssid=(nil)
wlan0: Request association with a4:e4:b8:17:e9:7c
TDLS: TDLS is allowed in the target BSS
TDLS: TDLS channel switch allowed in the target BSS
wlan0: Add radio work 'sme-connect'@0x555560c58c00
wlan0: First radio work item in the queue - schedule start immediately
p2p-dev-wlan0: Updating scan results from sibling
nl80211: Received scan results (13 BSSes)
p2p-dev-wlan0: BSS: Start scan result update 1
p2p-dev-wlan0: BSS: Add new id 0 BSSID a4:e4:b8:17:e9:7c SSID 'bbs' freq 2437
p2p-dev-wlan0: BSS: Add new id 1 BSSID 00:15:ff:33:c1:14 SSID 'FreedomPop-8QUQ' freq 2462
p2p-dev-wlan0: BSS: Add new id 2 BSSID ac:67:06:73:fb:98 SSID '' freq 2412
p2p-dev-wlan0: BSS: Add new id 3 BSSID c8:d7:19:0f:5c:b9 SSID 'OWNER-PC_Network' freq 2412
p2p-dev-wlan0: BSS: Add new id 4 BSSID a0:04:60:cc:2d:8b SSID 'HotSprings_2GEXT' freq 2412
p2p-dev-wlan0: BSS: Add new id 5 BSSID ac:67:06:73:fa:d8 SSID '' freq 2412
p2p-dev-wlan0: BSS: Add new id 6 BSSID ac:67:06:33:fb:98 SSID 'HotSprings' freq 2412
p2p-dev-wlan0: BSS: Add new id 7 BSSID ac:67:06:33:fb:9c SSID 'HotSprings' freq 5765
p2p-dev-wlan0: BSS: Add new id 8 BSSID c0:8a:de:2e:15:c8 SSID 'HotSprings' freq 2462
p2p-dev-wlan0: BSS: Add new id 9 BSSID ac:67:06:33:fb:a8 SSID 'HotSprings' freq 2412
p2p-dev-wlan0: BSS: Add new id 10 BSSID a2:04:60:cc:2d:8b SSID 'HotSprings_5GEXT' freq 5765
p2p-dev-wlan0: BSS: Add new id 11 BSSID 68:92:34:0e:c9:98 SSID 'HotSprings' freq 2462
p2p-dev-wlan0: BSS: Add new id 12 BSSID ac:67:06:33:fb:ac SSID 'HotSprings' freq 5765
BSS: last_scan_res_used=13/32
wlan0: Starting radio work 'sme-connect'@0x555560c58c00 after 0.000280 second wait
wlan0: Automatic auth_alg selection: 0x1
RSN: PMKSA cache search - network_ctx=(nil) try_opportunistic=0
RSN: Search for BSSID a4:e4:b8:17:e9:7c
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 0c 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
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
P2P: Parsing P2P IE
P2P: Attribute 2 length 2
P2P: * Device Capability 04 Group Capability 89
P2P: Attribute 13 length 43
P2P: * Device Info: addr a6:e4:b8:17:e9:7d primary device type 10-000F8600-5 device name 'BB-P2P' config methods 0x188
P2P: BSS P2P manageability disabled
RRM: Determining whether RRM can be used - device support: 0x10
RRM: Adding RRM IE to Association Request
wlan0: Cancelling scan request
wlan0: SME: Trying to authenticate with a4:e4:b8:17:e9:7c (SSID='bbs' freq=2437 MHz)
wlan0: State: SCANNING -> AUTHENTICATING
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
P2P: cli_channels:
EAPOL: External notification - EAP success=0
EAPOL: External notification - EAP fail=0
EAPOL: External notification - portControl=Auto
nl80211: Authenticate (ifindex=3)
  * bssid=a4:e4:b8:17:e9:7c
  * freq=2437
  * SSID - hexdump_ascii(len=3):
     62 62 73                                          bbs             
  * IEs - hexdump(len=0): [NULL]
  * Auth Type 0
nl80211: Authentication request send successfully
RTM_NEWLINK: ifi_index=3 ifname=wlan0 wext ifi_family=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK: ifi_index=3 ifname=wlan0 operstate=2 linkmode=1 ifi_family=0 ifi_flags=0x1003 ([UP])
nl80211: Event message available
nl80211: Ignored event (cmd=20) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0
nl80211: Delete station 00:15:ff:33:c1:14
nl80211: Event message available
nl80211: Ignored event (cmd=39) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 39 (NL80211_CMD_DEAUTHENTICATE) received for wlan0
nl80211: MLME event 39 (NL80211_CMD_DEAUTHENTICATE) on wlan0(e8:2a:ea:9a:88:cd) A1=00:15:ff:33:c1:14 A2=e8:2a:ea:9a:88:cd
nl80211: MLME event frame - hexdump(len=26): c0 00 00 00 00 15 ff 33 c1 14 e8 2a ea 9a 88 cd 00 15 ff 33 c1 14 00 00 02 00
nl80211: Deauthenticate event
wlan0: Event DEAUTH (12) received
wlan0: Deauthentication notification
wlan0:  * reason 2 (locally generated)
wlan0:  * address 00:15:ff:33:c1:14
Deauthentication frame IE(s) - hexdump(len=0): [NULL]
wlan0: CTRL-EVENT-DISCONNECTED bssid=a4:e4:b8:17:e9:7c reason=2 locally_generated=1
wlan0: Auto connect enabled: try to reconnect (wps=0/0 wpa_state=4)
wlan0: Do not request new immediate scan
wlan0: Radio work 'sme-connect'@0x555560c58c00 done in 0.005425 seconds
wlan0: radio_work_free('sme-connect'@0x555560c58c00: num_active_works --> 0
Added BSSID a4:e4:b8:17:e9:7c into blacklist
wlan0: Blacklist count 1 --> request scan in 100 ms
wlan0: Setting scan request: 0.100000 sec
TDLS: Remove peers on disassociation
wlan0: WPA: Clear old PMK and PTK
wlan0: Disconnect event - remove keys
wlan0: State: AUTHENTICATING -> DISCONNECTED
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
P2P: cli_channels:
EAPOL: External notification - portEnabled=0
EAPOL: External notification - portValid=0
EAPOL: External notification - EAP success=0
wlan0: SME: Allow pending authentication to proceed after disconnection event
wlan0: State: DISCONNECTED -> AUTHENTICATING
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
P2P: cli_channels:
nl80211: Event message available
nl80211: Ignored event (cmd=48) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 48 (NL80211_CMD_DISCONNECT) received for wlan0
nl80211: Ignore disconnect event when using userspace SME
nl80211: Event message available
nl80211: Ignored event (cmd=19) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
nl80211: New station a4:e4:b8:17:e9:7c
nl80211: Event message available
nl80211: Drv Event 36 (NL80211_CMD_REG_CHANGE) received for p2p-dev-wlan0
nl80211: Regulatory domain change
 * initiator=0
 * type=1
p2p-dev-wlan0: Event CHANNEL_LIST_CHANGED (28) received
wlan0: CTRL-EVENT-REGDOM-CHANGE init=CORE type=WORLD
p2p-dev-wlan0: Updating hw mode
nl80211: Regulatory information - country=00
nl80211: 2402-2472 @ 40 MHz 20 mBm
nl80211: 2457-2482 @ 40 MHz 20 mBm (no IR)
nl80211: 2474-2494 @ 20 MHz 20 mBm (no OFDM) (no IR)
nl80211: 5170-5250 @ 80 MHz 20 mBm (no IR)
nl80211: 5250-5330 @ 80 MHz 20 mBm (DFS) (no IR)
nl80211: 5490-5730 @ 160 MHz 20 mBm (DFS) (no IR)
nl80211: 5735-5835 @ 80 MHz 20 mBm (no IR)
nl80211: 57240-63720 @ 2160 MHz 0 mBm
nl80211: Added 802.11b mode based on 802.11g information
wlan0: Updating hw mode
nl80211: Regulatory information - country=00
nl80211: 2402-2472 @ 40 MHz 20 mBm
nl80211: 2457-2482 @ 40 MHz 20 mBm (no IR)
nl80211: 2474-2494 @ 20 MHz 20 mBm (no OFDM) (no IR)
nl80211: 5170-5250 @ 80 MHz 20 mBm (no IR)
nl80211: 5250-5330 @ 80 MHz 20 mBm (DFS) (no IR)
nl80211: 5490-5730 @ 160 MHz 20 mBm (DFS) (no IR)
nl80211: 5735-5835 @ 80 MHz 20 mBm (no IR)
nl80211: 57240-63720 @ 2160 MHz 0 mBm
nl80211: Added 802.11b mode based on 802.11g information
p2p-dev-wlan0: Determining shared radio frequencies (max len 2)
p2p-dev-wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
P2P: cli_channels:
nl80211: Event message available
nl80211: Ignored event (cmd=37) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlan0(e8:2a:ea:9a:88:cd) A1=e8:2a:ea:9a:88:cd A2=a4:e4:b8:17:e9:7c
nl80211: MLME event frame - hexdump(len=41): b0 00 3c 00 e8 2a ea 9a 88 cd a4 e4 b8 17 e9 7c a4 e4 b8 17 e9 7c c0 0b 00 00 02 00 00 00 dd 09 00 10 18 02 00 00 1c 00 00
nl80211: Authenticate event
wlan0: Event AUTH (11) received
wlan0: SME: Authentication response: peer=a4:e4:b8:17:e9:7c auth_type=0 auth_transaction=2 status_code=0
SME: Authentication response IEs - hexdump(len=11): dd 09 00 10 18 02 00 00 1c 00 00
wlan0: set_disable_max_amsdu: -1
wlan0: set_ampdu_factor: -1
wlan0: set_ampdu_density: -1
wlan0: set_disable_ht40: 0
wlan0: set_disable_sgi: 0
wlan0: set_disable_ldpc: 0
wlan0: Trying to associate with a4:e4:b8:17:e9:7c (SSID='bbs' freq=2437 MHz)
wlan0: State: AUTHENTICATING -> ASSOCIATING
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
P2P: cli_channels:
WPA: set own WPA/RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
nl80211: Associate (ifindex=3)
  * bssid=a4:e4:b8:17:e9:7c
  * freq=2437
  * SSID - hexdump_ascii(len=3):
     62 62 73                                          bbs             
  * IEs - hexdump(len=39): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 7f 08 04 00 0a 02 00 00 00 40 46 05 00 00 00 00 00
  * WPA Versions 0x2
  * pairwise=0xfac04
  * group=0xfac04
  * htcaps - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  * htcaps_mask - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  * vhtcaps - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
  * vhtcaps_mask - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
nl80211: Association request send successfully
nl80211: Event message available
nl80211: Ignored event (cmd=38) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan0
nl80211: MLME event 38 (NL80211_CMD_ASSOCIATE) on wlan0(e8:2a:ea:9a:88:cd) A1=e8:2a:ea:9a:88:cd A2=a4:e4:b8:17:e9:7c
nl80211: MLME event frame - hexdump(len=171): 10 00 3c 00 e8 2a ea 9a 88 cd a4 e4 b8 17 e9 7c a4 e4 b8 17 e9 7c d0 0b 31 04 00 00 01 c0 01 08 8c 12 98 24 b0 48 60 6c 2d 1a 2d 11 17 ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 04 00 08 00 00 00 00 40 dd 18 00 50 f2 04 10 4a 00 01 10 10 3b 00 01 03 10 49 00 06 00 37 2a 00 01 20 dd 04 50 6f 9a 09 dd 09 00 10 18 02 00 00 1c 00 00 dd 18 00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00
nl80211: Associate event
wlan0: Event ASSOC (0) received
wlan0: Association info event
resp_ies - hexdump(len=141): 01 08 8c 12 98 24 b0 48 60 6c 2d 1a 2d 11 17 ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 04 00 08 00 00 00 00 40 dd 18 00 50 f2 04 10 4a 00 01 10 10 3b 00 01 03 10 49 00 06 00 37 2a 00 01 20 dd 04 50 6f 9a 09 dd 09 00 10 18 02 00 00 1c 00 00 dd 18 00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00
wlan0: freq=2437 MHz
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
wlan0: State: ASSOCIATING -> ASSOCIATED
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=1): completed iteration
wlan0: freq[0]: 2437, flags=0x1
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
P2P: cli_channels:
wlan0: Associated to a new BSS: BSSID=a4:e4:b8:17:e9:7c
wlan0: Associated with a4:e4:b8:17:e9:7c
wlan0: WPA: Association event - clear replay counter
wlan0: WPA: Clear old PTK
TDLS: Remove peers on association
EAPOL: External notification - portEnabled=0
EAPOL: External notification - portValid=0
EAPOL: External notification - portEnabled=1
EAPOL: SUPP_PAE entering state CONNECTING
EAPOL: enable timer tick
EAPOL: SUPP_BE entering state IDLE
wlan0: Setting authentication timeout: 10 sec 0 usec
wlan0: Cancelling scan request
WMM AC: AC mandatory: AC_BE=0 AC_BK=0 AC_VI=0 AC_VO=0
WMM AC: U-APSD queues=0x0
WMM AC: Valid WMM association, WMM AC is enabled
wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
RTM_NEWLINK: ifi_index=3 ifname=wlan0 wext ifi_family=0 ifi_flags=0x11003 ([UP][LOWER_UP])
RTM_NEWLINK: ifi_index=3 ifname=wlan0 wext ifi_family=0 ifi_flags=0x11003 ([UP][LOWER_UP])
RTM_NEWLINK: ifi_index=3 ifname=wlan0 operstate=5 linkmode=1 ifi_family=0 ifi_flags=0x11003 ([UP][LOWER_UP])
nl80211: Event message available
nl80211: Ignored event (cmd=46) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan0
nl80211: Ignore connect event (cmd=46) when using userspace SME
l2_packet_receive: src=a4:e4:b8:17:e9:7c len=99
wlan0: RX EAPOL from a4:e4:b8:17:e9:7c
RX EAPOL - hexdump(len=99): 02 03 00 5f 02 00 8a 00 10 00 00 00 00 00 00 00 01 55 19 01 78 1f 8d 05 3e 78 67 da ef 54 bb 4d f6 84 f8 cf 2e 64 26 df 71 37 88 ab 1f 1b 39 3c f8 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
wlan0: Setting authentication timeout: 10 sec 0 usec
EAPOL: Ignoring WPA EAPOL-Key frame in EAPOL state machines
wlan0: IEEE 802.1X RX: version=2 type=3 length=95
WPA: RX EAPOL-Key - hexdump(len=99): 02 03 00 5f 02 00 8a 00 10 00 00 00 00 00 00 00 01 55 19 01 78 1f 8d 05 3e 78 67 da ef 54 bb 4d f6 84 f8 cf 2e 64 26 df 71 37 88 ab 1f 1b 39 3c f8 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
wlan0:   EAPOL-Key type=2
wlan0:   key_info 0x8a (ver=2 keyidx=0 rsvd=0 Pairwise Ack)
wlan0:   key_length=16 key_data_length=0
  replay_counter - hexdump(len=8): 00 00 00 00 00 00 00 01
  key_nonce - hexdump(len=32): 55 19 01 78 1f 8d 05 3e 78 67 da ef 54 bb 4d f6 84 f8 cf 2e 64 26 df 71 37 88 ab 1f 1b 39 3c f8
  key_iv - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  key_rsc - hexdump(len=8): 00 00 00 00 00 00 00 00
  key_id (reserved) - hexdump(len=8): 00 00 00 00 00 00 00 00
  key_mic - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
wlan0: State: ASSOCIATED -> 4WAY_HANDSHAKE
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=1): completed iteration
wlan0: freq[0]: 2437, flags=0x1
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
P2P: cli_channels:
wlan0: WPA: RX message 1 of 4-Way Handshake from a4:e4:b8:17:e9:7c (ver=2)
RSN: msg 1/4 key data - hexdump(len=0):
Get randomness: len=32 entropy=21
WPA: Renewed SNonce - hexdump(len=32): de 85 5c 7a 41 25 15 52 77 6a 85 f8 8c 32 b3 ee ac c5 73 ee c7 d0 a7 50 62 ec de b1 5e ed 4e 21
WPA: PTK derivation - A1=e8:2a:ea:9a:88:cd A2=a4:e4:b8:17:e9:7c
WPA: Nonce1 - hexdump(len=32): de 85 5c 7a 41 25 15 52 77 6a 85 f8 8c 32 b3 ee ac c5 73 ee c7 d0 a7 50 62 ec de b1 5e ed 4e 21
WPA: Nonce2 - hexdump(len=32): 55 19 01 78 1f 8d 05 3e 78 67 da ef 54 bb 4d f6 84 f8 cf 2e 64 26 df 71 37 88 ab 1f 1b 39 3c f8
WPA: PMK - hexdump(len=32): [REMOVED]
WPA: PTK - hexdump(len=48): [REMOVED]
WPA: KCK - hexdump(len=16): [REMOVED]
WPA: KEK - hexdump(len=16): [REMOVED]
WPA: TK - hexdump(len=16): [REMOVED]
WPA: WPA IE for msg 2/4 - 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: Replay Counter - hexdump(len=8): 00 00 00 00 00 00 00 01
wlan0: WPA: Sending EAPOL-Key 2/4
WPA: KCK - hexdump(len=16): [REMOVED]
WPA: Derived Key MIC - hexdump(len=16): 2d c4 05 d6 92 f0 85 d5 c9 f1 f4 44 a5 ad f8 dc
WPA: TX EAPOL-Key - hexdump(len=121): 01 03 00 75 02 01 0a 00 00 00 00 00 00 00 00 00 01 de 85 5c 7a 41 25 15 52 77 6a 85 f8 8c 32 b3 ee ac c5 73 ee c7 d0 a7 50 62 ec de b1 5e ed 4e 21 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 2d c4 05 d6 92 f0 85 d5 c9 f1 f4 44 a5 ad f8 dc 00 16 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
l2_packet_receive: src=a4:e4:b8:17:e9:7c len=99
wlan0: RX EAPOL from a4:e4:b8:17:e9:7c
RX EAPOL - hexdump(len=99): 02 03 00 5f 02 00 8a 00 10 00 00 00 00 00 00 00 02 55 19 01 78 1f 8d 05 3e 78 67 da ef 54 bb 4d f6 84 f8 cf 2e 64 26 df 71 37 88 ab 1f 1b 39 3c f8 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
EAPOL: Ignoring WPA EAPOL-Key frame in EAPOL state machines
wlan0: IEEE 802.1X RX: version=2 type=3 length=95
WPA: RX EAPOL-Key - hexdump(len=99): 02 03 00 5f 02 00 8a 00 10 00 00 00 00 00 00 00 02 55 19 01 78 1f 8d 05 3e 78 67 da ef 54 bb 4d f6 84 f8 cf 2e 64 26 df 71 37 88 ab 1f 1b 39 3c f8 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
wlan0:   EAPOL-Key type=2
wlan0:   key_info 0x8a (ver=2 keyidx=0 rsvd=0 Pairwise Ack)
wlan0:   key_length=16 key_data_length=0
  replay_counter - hexdump(len=8): 00 00 00 00 00 00 00 02
  key_nonce - hexdump(len=32): 55 19 01 78 1f 8d 05 3e 78 67 da ef 54 bb 4d f6 84 f8 cf 2e 64 26 df 71 37 88 ab 1f 1b 39 3c f8
  key_iv - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  key_rsc - hexdump(len=8): 00 00 00 00 00 00 00 00
  key_id (reserved) - hexdump(len=8): 00 00 00 00 00 00 00 00
  key_mic - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
wlan0: State: 4WAY_HANDSHAKE -> 4WAY_HANDSHAKE
wlan0: WPA: RX message 1 of 4-Way Handshake from a4:e4:b8:17:e9:7c (ver=2)
RSN: msg 1/4 key data - hexdump(len=0):
WPA: PTK derivation - A1=e8:2a:ea:9a:88:cd A2=a4:e4:b8:17:e9:7c
WPA: Nonce1 - hexdump(len=32): de 85 5c 7a 41 25 15 52 77 6a 85 f8 8c 32 b3 ee ac c5 73 ee c7 d0 a7 50 62 ec de b1 5e ed 4e 21
WPA: Nonce2 - hexdump(len=32): 55 19 01 78 1f 8d 05 3e 78 67 da ef 54 bb 4d f6 84 f8 cf 2e 64 26 df 71 37 88 ab 1f 1b 39 3c f8
WPA: PMK - hexdump(len=32): [REMOVED]
WPA: PTK - hexdump(len=48): [REMOVED]
WPA: KCK - hexdump(len=16): [REMOVED]
WPA: KEK - hexdump(len=16): [REMOVED]
WPA: TK - hexdump(len=16): [REMOVED]
WPA: WPA IE for msg 2/4 - 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: Replay Counter - hexdump(len=8): 00 00 00 00 00 00 00 02
wlan0: WPA: Sending EAPOL-Key 2/4
WPA: KCK - hexdump(len=16): [REMOVED]
WPA: Derived Key MIC - hexdump(len=16): ba b3 fa 67 b9 d2 88 94 8c c0 5c 8f d4 b4 6f 91
WPA: TX EAPOL-Key - hexdump(len=121): 01 03 00 75 02 01 0a 00 00 00 00 00 00 00 00 00 02 de 85 5c 7a 41 25 15 52 77 6a 85 f8 8c 32 b3 ee ac c5 73 ee c7 d0 a7 50 62 ec de b1 5e ed 4e 21 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ba b3 fa 67 b9 d2 88 94 8c c0 5c 8f d4 b4 6f 91 00 16 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
EAPOL: startWhen --> 0
EAPOL: disable timer tick
EAPOL: SUPP_PAE entering state CONNECTING
EAPOL: enable timer tick
EAPOL: txStart
TX EAPOL: dst=a4:e4:b8:17:e9:7c
TX EAPOL - hexdump(len=4): 01 01 00 00
l2_packet_receive: src=a4:e4:b8:17:e9:7c len=99
wlan0: RX EAPOL from a4:e4:b8:17:e9:7c
RX EAPOL - hexdump(len=99): 02 03 00 5f 02 00 8a 00 10 00 00 00 00 00 00 00 03 55 19 01 78 1f 8d 05 3e 78 67 da ef 54 bb 4d f6 84 f8 cf 2e 64 26 df 71 37 88 ab 1f 1b 39 3c f8 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
EAPOL: Ignoring WPA EAPOL-Key frame in EAPOL state machines
wlan0: IEEE 802.1X RX: version=2 type=3 length=95
WPA: RX EAPOL-Key - hexdump(len=99): 02 03 00 5f 02 00 8a 00 10 00 00 00 00 00 00 00 03 55 19 01 78 1f 8d 05 3e 78 67 da ef 54 bb 4d f6 84 f8 cf 2e 64 26 df 71 37 88 ab 1f 1b 39 3c f8 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
wlan0:   EAPOL-Key type=2
wlan0:   key_info 0x8a (ver=2 keyidx=0 rsvd=0 Pairwise Ack)
wlan0:   key_length=16 key_data_length=0
  replay_counter - hexdump(len=8): 00 00 00 00 00 00 00 03
  key_nonce - hexdump(len=32): 55 19 01 78 1f 8d 05 3e 78 67 da ef 54 bb 4d f6 84 f8 cf 2e 64 26 df 71 37 88 ab 1f 1b 39 3c f8
  key_iv - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  key_rsc - hexdump(len=8): 00 00 00 00 00 00 00 00
  key_id (reserved) - hexdump(len=8): 00 00 00 00 00 00 00 00
  key_mic - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
wlan0: State: 4WAY_HANDSHAKE -> 4WAY_HANDSHAKE
wlan0: WPA: RX message 1 of 4-Way Handshake from a4:e4:b8:17:e9:7c (ver=2)
RSN: msg 1/4 key data - hexdump(len=0):
WPA: PTK derivation - A1=e8:2a:ea:9a:88:cd A2=a4:e4:b8:17:e9:7c
WPA: Nonce1 - hexdump(len=32): de 85 5c 7a 41 25 15 52 77 6a 85 f8 8c 32 b3 ee ac c5 73 ee c7 d0 a7 50 62 ec de b1 5e ed 4e 21
WPA: Nonce2 - hexdump(len=32): 55 19 01 78 1f 8d 05 3e 78 67 da ef 54 bb 4d f6 84 f8 cf 2e 64 26 df 71 37 88 ab 1f 1b 39 3c f8
WPA: PMK - hexdump(len=32): [REMOVED]
WPA: PTK - hexdump(len=48): [REMOVED]
WPA: KCK - hexdump(len=16): [REMOVED]
WPA: KEK - hexdump(len=16): [REMOVED]
WPA: TK - hexdump(len=16): [REMOVED]
WPA: WPA IE for msg 2/4 - 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: Replay Counter - hexdump(len=8): 00 00 00 00 00 00 00 03
wlan0: WPA: Sending EAPOL-Key 2/4
WPA: KCK - hexdump(len=16): [REMOVED]
WPA: Derived Key MIC - hexdump(len=16): b2 e9 22 ac 2f 3c 2f a9 50 3e 77 34 c6 5d a7 b2
WPA: TX EAPOL-Key - hexdump(len=121): 01 03 00 75 02 01 0a 00 00 00 00 00 00 00 00 00 03 de 85 5c 7a 41 25 15 52 77 6a 85 f8 8c 32 b3 ee ac c5 73 ee c7 d0 a7 50 62 ec de b1 5e ed 4e 21 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 b2 e9 22 ac 2f 3c 2f a9 50 3e 77 34 c6 5d a7 b2 00 16 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
l2_packet_receive: src=a4:e4:b8:17:e9:7c len=99
wlan0: RX EAPOL from a4:e4:b8:17:e9:7c
RX EAPOL - hexdump(len=99): 02 03 00 5f 02 00 8a 00 10 00 00 00 00 00 00 00 04 55 19 01 78 1f 8d 05 3e 78 67 da ef 54 bb 4d f6 84 f8 cf 2e 64 26 df 71 37 88 ab 1f 1b 39 3c f8 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
EAPOL: Ignoring WPA EAPOL-Key frame in EAPOL state machines
wlan0: IEEE 802.1X RX: version=2 type=3 length=95
WPA: RX EAPOL-Key - hexdump(len=99): 02 03 00 5f 02 00 8a 00 10 00 00 00 00 00 00 00 04 55 19 01 78 1f 8d 05 3e 78 67 da ef 54 bb 4d f6 84 f8 cf 2e 64 26 df 71 37 88 ab 1f 1b 39 3c f8 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
wlan0:   EAPOL-Key type=2
wlan0:   key_info 0x8a (ver=2 keyidx=0 rsvd=0 Pairwise Ack)
wlan0:   key_length=16 key_data_length=0
  replay_counter - hexdump(len=8): 00 00 00 00 00 00 00 04
  key_nonce - hexdump(len=32): 55 19 01 78 1f 8d 05 3e 78 67 da ef 54 bb 4d f6 84 f8 cf 2e 64 26 df 71 37 88 ab 1f 1b 39 3c f8
  key_iv - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  key_rsc - hexdump(len=8): 00 00 00 00 00 00 00 00
  key_id (reserved) - hexdump(len=8): 00 00 00 00 00 00 00 00
  key_mic - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
wlan0: State: 4WAY_HANDSHAKE -> 4WAY_HANDSHAKE
wlan0: WPA: RX message 1 of 4-Way Handshake from a4:e4:b8:17:e9:7c (ver=2)
RSN: msg 1/4 key data - hexdump(len=0):
WPA: PTK derivation - A1=e8:2a:ea:9a:88:cd A2=a4:e4:b8:17:e9:7c
WPA: Nonce1 - hexdump(len=32): de 85 5c 7a 41 25 15 52 77 6a 85 f8 8c 32 b3 ee ac c5 73 ee c7 d0 a7 50 62 ec de b1 5e ed 4e 21
WPA: Nonce2 - hexdump(len=32): 55 19 01 78 1f 8d 05 3e 78 67 da ef 54 bb 4d f6 84 f8 cf 2e 64 26 df 71 37 88 ab 1f 1b 39 3c f8
WPA: PMK - hexdump(len=32): [REMOVED]
WPA: PTK - hexdump(len=48): [REMOVED]
WPA: KCK - hexdump(len=16): [REMOVED]
WPA: KEK - hexdump(len=16): [REMOVED]
WPA: TK - hexdump(len=16): [REMOVED]
WPA: WPA IE for msg 2/4 - 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: Replay Counter - hexdump(len=8): 00 00 00 00 00 00 00 04
wlan0: WPA: Sending EAPOL-Key 2/4
WPA: KCK - hexdump(len=16): [REMOVED]
WPA: Derived Key MIC - hexdump(len=16): 11 b2 a8 ab 6f c0 c4 0e 56 63 20 a9 87 6c 78 5a
WPA: TX EAPOL-Key - hexdump(len=121): 01 03 00 75 02 01 0a 00 00 00 00 00 00 00 00 00 04 de 85 5c 7a 41 25 15 52 77 6a 85 f8 8c 32 b3 ee ac c5 73 ee c7 d0 a7 50 62 ec de b1 5e ed 4e 21 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 11 b2 a8 ab 6f c0 c4 0e 56 63 20 a9 87 6c 78 5a 00 16 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
RTM_NEWLINK: ifi_index=3 ifname=wlan0 operstate=2 linkmode=1 ifi_family=0 ifi_flags=0x1003 ([UP])
nl80211: Event message available
nl80211: Ignored event (cmd=20) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0
nl80211: Delete station a4:e4:b8:17:e9:7c
RTM_NEWLINK: ifi_index=3 ifname=wlan0 wext ifi_family=0 ifi_flags=0x1003 ([UP])
nl80211: Event message available
nl80211: Ignored event (cmd=39) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 39 (NL80211_CMD_DEAUTHENTICATE) received for wlan0
nl80211: MLME event 39 (NL80211_CMD_DEAUTHENTICATE) on wlan0(e8:2a:ea:9a:88:cd) A1=e8:2a:ea:9a:88:cd A2=a4:e4:b8:17:e9:7c
nl80211: MLME event frame - hexdump(len=26): c0 00 3c 00 e8 2a ea 9a 88 cd a4 e4 b8 17 e9 7c a4 e4 b8 17 e9 7c 80 0e 02 00
nl80211: Deauthenticate event
wlan0: Event DEAUTH (12) received
wlan0: Deauthentication notification
wlan0:  * reason 2
wlan0:  * address a4:e4:b8:17:e9:7c
Deauthentication frame IE(s) - hexdump(len=0): [NULL]
wlan0: CTRL-EVENT-DISCONNECTED bssid=a4:e4:b8:17:e9:7c reason=2
wlan0: Auto connect enabled: try to reconnect (wps=0/0 wpa_state=7)
wlan0: Setting scan request: 0.100000 sec
BSSID a4:e4:b8:17:e9:7c 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
TDLS: Remove peers on disassociation
wlan0: WPA: Clear old PMK and PTK
wlan0: Disconnect event - remove keys
wlan0: State: 4WAY_HANDSHAKE -> DISCONNECTED
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
WMM AC: WMM AC is disabled
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
P2P: cli_channels:
EAPOL: External notification - portEnabled=0
EAPOL: SUPP_PAE entering state DISCONNECTED
EAPOL: Supplicant port status: Unauthorized
nl80211: Skip set_supp_port(unauthorized) while not associated
EAPOL: SUPP_BE entering state INITIALIZE
EAPOL: External notification - portValid=0
nl80211: Event message available
nl80211: Ignored event (cmd=48) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 48 (NL80211_CMD_DISCONNECT) received for wlan0
nl80211: Ignore disconnect event when using userspace SME
nl80211: Event message available
nl80211: Drv Event 36 (NL80211_CMD_REG_CHANGE) received for p2p-dev-wlan0
nl80211: Regulatory domain change
 * initiator=0
 * type=1
p2p-dev-wlan0: Event CHANNEL_LIST_CHANGED (28) received
wlan0: CTRL-EVENT-REGDOM-CHANGE init=CORE type=WORLD
p2p-dev-wlan0: Updating hw mode
nl80211: Regulatory information - country=00
nl80211: 2402-2472 @ 40 MHz 20 mBm
nl80211: 2457-2482 @ 40 MHz 20 mBm (no IR)
nl80211: 2474-2494 @ 20 MHz 20 mBm (no OFDM) (no IR)
nl80211: 5170-5250 @ 80 MHz 20 mBm (no IR)
nl80211: 5250-5330 @ 80 MHz 20 mBm (DFS) (no IR)
nl80211: 5490-5730 @ 160 MHz 20 mBm (DFS) (no IR)
nl80211: 5735-5835 @ 80 MHz 20 mBm (no IR)
nl80211: 57240-63720 @ 2160 MHz 0 mBm
nl80211: Added 802.11b mode based on 802.11g information
wlan0: Updating hw mode
nl80211: Regulatory information - country=00
nl80211: 2402-2472 @ 40 MHz 20 mBm
nl80211: 2457-2482 @ 40 MHz 20 mBm (no IR)
nl80211: 2474-2494 @ 20 MHz 20 mBm (no OFDM) (no IR)
nl80211: 5170-5250 @ 80 MHz 20 mBm (no IR)
nl80211: 5250-5330 @ 80 MHz 20 mBm (DFS) (no IR)
nl80211: 5490-5730 @ 160 MHz 20 mBm (DFS) (no IR)
nl80211: 5735-5835 @ 80 MHz 20 mBm (no IR)
nl80211: 57240-63720 @ 2160 MHz 0 mBm
nl80211: Added 802.11b mode based on 802.11g information
p2p-dev-wlan0: Determining shared radio frequencies (max len 2)
p2p-dev-wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
P2P: cli_channels:
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
P2P: cli_channels:
Scan SSID - hexdump_ascii(len=3):
     62 62 73                                          bbs             
wlan0: Starting AP scan for wildcard SSID
WPS: Building WPS IE for Probe Request
WPS:  * Version (hardcoded 0x10)
WPS:  * Request Type
WPS:  * Config Methods (3148)
WPS:  * UUID-E
WPS:  * Primary Device Type
WPS:  * RF Bands (3)
WPS:  * Association State
WPS:  * Configuration Error (0)
WPS:  * Device Password ID (0)
WPS:  * Manufacturer
WPS:  * Model Name
WPS:  * Model Number
WPS:  * Device Name
WPS:  * Version2 (0x20)
P2P: * P2P IE header
P2P: * Capability dev=25 group=00
P2P: * Listen Channel: Regulatory Class 81 Channel 11
wlan0: Add radio work 'scan'@0x555560c591b0
wlan0: First radio work item in the queue - schedule start immediately
wlan0: Starting radio work 'scan'@0x555560c591b0 after 0.000011 second wait
wlan0: nl80211: scan request
nl80211: Scan SSID - hexdump_ascii(len=3):
     62 62 73                                          bbs             
nl80211: Scan SSID - hexdump_ascii(len=0): [NULL]
nl80211: Scan extra IEs - hexdump(len=136): 7f 08 04 00 0a 02 00 00 00 40 dd 69 00 50 f2 04 10 4a 00 01 10 10 3a 00 01 00 10 08 00 02 31 48 10 47 00 10 d7 18 0c 8f b6 88 53 a5 89 b5 d1 92 a8 35 4c 9e 10 54 00 08 00 00 00 00 00 00 00 00 10 3c 00 01 03 10 02 00 02 00 00 10 09 00 02 00 00 10 12 00 02 00 00 10 21 00 01 20 10 23 00 01 20 10 24 00 01 20 10 11 00 01 20 10 49 00 06 00 37 2a 00 01 20 dd 11 50 6f 9a 09 02 02 00 25 00 06 05 00 58 58 04 51 0b
Scan requested (ret=0) - scan timeout 30 seconds
nl80211: Event message available
nl80211: Ignored event (cmd=33) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
wlan0: nl80211: Scan trigger
wlan0: Event SCAN_STARTED (47) received
wlan0: Own scan request started a scan in 0.000032 seconds
RTM_NEWLINK: ifi_index=3 ifname=wlan0 wext ifi_family=0 ifi_flags=0x1003 ([UP])
nl80211: Event message available
nl80211: Ignored event (cmd=34) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
wlan0: nl80211: New scan results available
nl80211: Scan probed for SSID 'bbs'
nl80211: Scan probed for SSID ''
nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 5180 5200 5220 5240 5260 5280 5300 5320 5500 5520 5540 5560 5580 5600 5620 5640 5660 5680 5700 5720 5745 5765 5785 5805 5825
wlan0: Event SCAN_RESULTS (3) received
wlan0: Scan completed in 3.209865 seconds
nl80211: Received scan results (17 BSSes)
wlan0: BSS: Start scan result update 2
wlan0: BSS: Add new id 13 BSSID c0:8a:de:6e:15:c8 SSID '' freq 2462
wlan0: BSS: Add new id 14 BSSID 68:92:34:4e:c6:88 SSID '' freq 2437
wlan0: BSS: Add new id 15 BSSID 68:92:34:4e:c9:9c SSID '' freq 5765
wlan0: BSS: Add new id 16 BSSID 68:92:34:0e:c6:88 SSID 'HotSprings' freq 2437
BSS: last_scan_res_used=17/32
wlan0: New scan results available (own=1 ext=0)
WPS: AP[0] a4:e4:b8:17:e9:7c type=0 tries=0 last_attempt=-1 sec ago blacklist=2
WPS: AP[1] c8:d7:19:0f:5c:b9 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
WPS: AP[2] a0:04:60:cc:2d:8b type=0 tries=0 last_attempt=-1 sec ago blacklist=0
WPS: AP[3] a2:04:60:cc:2d:8b type=0 tries=0 last_attempt=-1 sec ago blacklist=0
wlan0: Radio work 'scan'@0x555560c591b0 done in 3.211285 seconds
wlan0: radio_work_free('scan'@0x555560c591b0: num_active_works --> 0
wlan0: Selecting BSS from priority group 0
wlan0: 0: a4:e4:b8:17:e9:7c ssid='bbs' wpa_ie_len=0 rsn_ie_len=20 caps=0x1511 level=-43 freq=2437  wps p2p
wlan0:    skip - blacklisted (count=2 limit=0)
wlan0: 1: ac:67:06:73:fb:98 ssid='' wpa_ie_len=0 rsn_ie_len=20 caps=0x31 level=-64 freq=2412 
wlan0:    skip - SSID not known
wlan0: 2: c0:8a:de:6e:15:c8 ssid='' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-64 freq=2462 
wlan0:    skip - SSID not known
wlan0: 3: 68:92:34:4e:c6:88 ssid='' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-69 freq=2437 
wlan0:    skip - SSID not known
wlan0: 4: 00:15:ff:33:c1:14 ssid='FreedomPop-8QUQ' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-71 freq=2462 
wlan0:    skip - SSID mismatch
wlan0: 5: c8:d7:19:0f:5c:b9 ssid='OWNER-PC_Network' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-78 freq=2412  wps
wlan0:    skip - SSID mismatch
wlan0: 6: a0:04:60:cc:2d:8b ssid='HotSprings_2GEXT' wpa_ie_len=28 rsn_ie_len=24 caps=0x411 level=-75 freq=2412  wps
wlan0:    skip - SSID mismatch
wlan0: 7: ac:67:06:73:fa:d8 ssid='' wpa_ie_len=0 rsn_ie_len=20 caps=0x431 level=-75 freq=2412 
wlan0:    skip - SSID not known
wlan0: 8: 68:92:34:4e:c9:9c ssid='' wpa_ie_len=0 rsn_ie_len=20 caps=0x511 level=-89 freq=5765 
wlan0:    skip - SSID not known
wlan0: 9: ac:67:06:33:fb:98 ssid='HotSprings' wpa_ie_len=0 rsn_ie_len=0 caps=0x21 level=-64 freq=2412 
wlan0:    skip - SSID mismatch
wlan0: 10: c0:8a:de:2e:15:c8 ssid='HotSprings' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-66 freq=2462 
wlan0:    skip - SSID mismatch
wlan0: 11: ac:67:06:33:fb:9c ssid='HotSprings' wpa_ie_len=0 rsn_ie_len=0 caps=0x401 level=-74 freq=5765 
wlan0:    skip - SSID mismatch
wlan0: 12: 68:92:34:0e:c6:88 ssid='HotSprings' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-67 freq=2437 
wlan0:    skip - SSID mismatch
wlan0: 13: 68:92:34:0e:c9:98 ssid='HotSprings' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-72 freq=2462 
wlan0:    skip - SSID mismatch
wlan0: 14: ac:67:06:33:fb:ac ssid='HotSprings' wpa_ie_len=0 rsn_ie_len=0 caps=0x401 level=-80 freq=5765 
wlan0:    skip - SSID mismatch
wlan0: 15: ac:67:06:33:fb:a8 ssid='HotSprings' wpa_ie_len=0 rsn_ie_len=0 caps=0x421 level=-74 freq=2412 
wlan0:    skip - SSID mismatch
wlan0: 16: a2:04:60:cc:2d:8b ssid='HotSprings_5GEXT' wpa_ie_len=0 rsn_ie_len=0 caps=0x1 level=-83 freq=5765  wps
wlan0:    skip - SSID mismatch
wlan0: No APs found - clear blacklist and try again
Removed BSSID a4:e4:b8:17:e9:7c from blacklist (clear)
wlan0: Selecting BSS from priority group 0
wlan0: 0: a4:e4:b8:17:e9:7c ssid='bbs' wpa_ie_len=0 rsn_ie_len=20 caps=0x1511 level=-43 freq=2437  wps p2p
wlan0:    selected based on RSN IE
wlan0:    selected BSS a4:e4:b8:17:e9:7c ssid='bbs'
wlan0: Considering connect request: reassociate: 0  selected: a4:e4:b8:17:e9:7c  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid=0x555560c34150  current_ssid=(nil)
wlan0: Request association with a4:e4:b8:17:e9:7c
wlan0: Re-association to the same ESS
TDLS: TDLS is allowed in the target BSS
TDLS: TDLS channel switch allowed in the target BSS
wlan0: Add radio work 'sme-connect'@0x555560c591b0
wlan0: First radio work item in the queue - schedule start immediately
p2p-dev-wlan0: Updating scan results from sibling
nl80211: Received scan results (17 BSSes)
p2p-dev-wlan0: BSS: Start scan result update 2
p2p-dev-wlan0: BSS: Add new id 13 BSSID c0:8a:de:6e:15:c8 SSID '' freq 2462
p2p-dev-wlan0: BSS: Add new id 14 BSSID 68:92:34:4e:c6:88 SSID '' freq 2437
p2p-dev-wlan0: BSS: Add new id 15 BSSID 68:92:34:4e:c9:9c SSID '' freq 5765
p2p-dev-wlan0: BSS: Add new id 16 BSSID 68:92:34:0e:c6:88 SSID 'HotSprings' freq 2437
BSS: last_scan_res_used=17/32
wlan0: Starting radio work 'sme-connect'@0x555560c591b0 after 0.000361 second wait
wlan0: Automatic auth_alg selection: 0x1
RSN: PMKSA cache search - network_ctx=(nil) try_opportunistic=0
RSN: Search for BSSID a4:e4:b8:17:e9:7c
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 0c 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
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
P2P: Parsing P2P IE
P2P: Attribute 2 length 2
P2P: * Device Capability 04 Group Capability 89
P2P: Attribute 13 length 52
P2P: * Device Info: addr a6:e4:b8:17:e9:7d primary device type 10-000F8600-5 device name 'BLACKBERRY-9A63' config methods 0x188
P2P: BSS P2P manageability disabled
RRM: Determining whether RRM can be used - device support: 0x10
RRM: Adding RRM IE to Association Request
wlan0: Cancelling scan request
wlan0: SME: Trying to authenticate with a4:e4:b8:17:e9:7c (SSID='bbs' freq=2437 MHz)
wlan0: State: SCANNING -> AUTHENTICATING
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
P2P: cli_channels:
EAPOL: External notification - EAP success=0
EAPOL: External notification - EAP fail=0
EAPOL: External notification - portControl=Auto
nl80211: Authenticate (ifindex=3)
  * bssid=a4:e4:b8:17:e9:7c
  * freq=2437
  * SSID - hexdump_ascii(len=3):
     62 62 73                                          bbs             
  * IEs - hexdump(len=0): [NULL]
  * Auth Type 0
nl80211: Authentication request send successfully
nl80211: Event message available
nl80211: Ignored event (cmd=19) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
nl80211: New station a4:e4:b8:17:e9:7c
nl80211: Event message available
nl80211: Ignored event (cmd=37) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlan0(e8:2a:ea:9a:88:cd) A1=e8:2a:ea:9a:88:cd A2=a4:e4:b8:17:e9:7c
nl80211: MLME event frame - hexdump(len=41): b0 00 3c 00 e8 2a ea 9a 88 cd a4 e4 b8 17 e9 7c a4 e4 b8 17 e9 7c 10 11 00 00 02 00 00 00 dd 09 00 10 18 02 00 00 1c 00 00
nl80211: Authenticate event
wlan0: Event AUTH (11) received
wlan0: SME: Authentication response: peer=a4:e4:b8:17:e9:7c auth_type=0 auth_transaction=2 status_code=0
SME: Authentication response IEs - hexdump(len=11): dd 09 00 10 18 02 00 00 1c 00 00
wlan0: set_disable_max_amsdu: -1
wlan0: set_ampdu_factor: -1
wlan0: set_ampdu_density: -1
wlan0: set_disable_ht40: 0
wlan0: set_disable_sgi: 0
wlan0: set_disable_ldpc: 0
wlan0: Trying to associate with a4:e4:b8:17:e9:7c (SSID='bbs' freq=2437 MHz)
wlan0: State: AUTHENTICATING -> ASSOCIATING
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=0): completed iteration
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
P2P: cli_channels:
WPA: set own WPA/RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
nl80211: Associate (ifindex=3)
  * bssid=a4:e4:b8:17:e9:7c
  * freq=2437
  * SSID - hexdump_ascii(len=3):
     62 62 73                                          bbs             
  * IEs - hexdump(len=39): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 7f 08 04 00 0a 02 00 00 00 40 46 05 00 00 00 00 00
  * WPA Versions 0x2
  * pairwise=0xfac04
  * group=0xfac04
  * akm=0xfac02
  * htcaps - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  * htcaps_mask - hexdump(len=26): 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  * vhtcaps - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
  * vhtcaps_mask - hexdump(len=12): 00 00 00 00 00 00 00 00 00 00 00 00
nl80211: Association request send successfully
nl80211: Event message available
nl80211: Ignored event (cmd=38) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan0
nl80211: MLME event 38 (NL80211_CMD_ASSOCIATE) on wlan0(e8:2a:ea:9a:88:cd) A1=e8:2a:ea:9a:88:cd A2=a4:e4:b8:17:e9:7c
nl80211: MLME event frame - hexdump(len=171): 10 00 3c 00 e8 2a ea 9a 88 cd a4 e4 b8 17 e9 7c a4 e4 b8 17 e9 7c 20 11 31 04 00 00 01 c0 01 08 8c 12 98 24 b0 48 60 6c 2d 1a 2d 11 17 ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 04 00 08 00 00 00 00 40 dd 18 00 50 f2 04 10 4a 00 01 10 10 3b 00 01 03 10 49 00 06 00 37 2a 00 01 20 dd 04 50 6f 9a 09 dd 09 00 10 18 02 00 00 1c 00 00 dd 18 00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00
nl80211: Associate event
wlan0: Event ASSOC (0) received
wlan0: Association info event
resp_ies - hexdump(len=141): 01 08 8c 12 98 24 b0 48 60 6c 2d 1a 2d 11 17 ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 3d 16 06 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 04 00 08 00 00 00 00 40 dd 18 00 50 f2 04 10 4a 00 01 10 10 3b 00 01 03 10 49 00 06 00 37 2a 00 01 20 dd 04 50 6f 9a 09 dd 09 00 10 18 02 00 00 1c 00 00 dd 18 00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00
wlan0: freq=2437 MHz
FT: Stored MDIE and FTIE from (Re)Association Response - hexdump(len=0):
wlan0: State: ASSOCIATING -> ASSOCIATED
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=1): completed iteration
wlan0: freq[0]: 2437, flags=0x1
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
P2P: cli_channels:
wlan0: Associated to a new BSS: BSSID=a4:e4:b8:17:e9:7c
wlan0: Associated with a4:e4:b8:17:e9:7c
wlan0: WPA: Association event - clear replay counter
wlan0: WPA: Clear old PTK
TDLS: Remove peers on association
EAPOL: External notification - portEnabled=0
EAPOL: External notification - portValid=0
EAPOL: External notification - EAP success=0
EAPOL: External notification - portEnabled=1
EAPOL: SUPP_PAE entering state CONNECTING
EAPOL: SUPP_BE entering state IDLE
wlan0: Setting authentication timeout: 10 sec 0 usec
wlan0: Cancelling scan request
WMM AC: AC mandatory: AC_BE=0 AC_BK=0 AC_VI=0 AC_VO=0
WMM AC: U-APSD queues=0x0
WMM AC: Valid WMM association, WMM AC is enabled
wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
RTM_NEWLINK: ifi_index=3 ifname=wlan0 wext ifi_family=0 ifi_flags=0x11003 ([UP][LOWER_UP])
RTM_NEWLINK: ifi_index=3 ifname=wlan0 wext ifi_family=0 ifi_flags=0x11003 ([UP][LOWER_UP])
RTM_NEWLINK: ifi_index=3 ifname=wlan0 operstate=5 linkmode=1 ifi_family=0 ifi_flags=0x11003 ([UP][LOWER_UP])
nl80211: Event message available
nl80211: Ignored event (cmd=46) for foreign interface (ifindex 3 wdev 0x0)
nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan0
nl80211: Ignore connect event (cmd=46) when using userspace SME
l2_packet_receive: src=a4:e4:b8:17:e9:7c len=99
wlan0: RX EAPOL from a4:e4:b8:17:e9:7c
RX EAPOL - hexdump(len=99): 02 03 00 5f 02 00 8a 00 10 00 00 00 00 00 00 00 01 27 94 ac bf e8 bd b5 a7 65 19 a9 fb 02 5a 73 01 db e8 ca 55 34 59 8a e0 fb c1 b0 d6 a8 b7 51 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
wlan0: Setting authentication timeout: 10 sec 0 usec
wlan0: IEEE 802.1X RX: version=2 type=3 length=95
WPA: RX EAPOL-Key - hexdump(len=99): 02 03 00 5f 02 00 8a 00 10 00 00 00 00 00 00 00 01 27 94 ac bf e8 bd b5 a7 65 19 a9 fb 02 5a 73 01 db e8 ca 55 34 59 8a e0 fb c1 b0 d6 a8 b7 51 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
wlan0:   EAPOL-Key type=2
wlan0:   key_info 0x8a (ver=2 keyidx=0 rsvd=0 Pairwise Ack)
wlan0:   key_length=16 key_data_length=0
  replay_counter - hexdump(len=8): 00 00 00 00 00 00 00 01
  key_nonce - hexdump(len=32): 27 94 ac bf e8 bd b5 a7 65 19 a9 fb 02 5a 73 01 db e8 ca 55 34 59 8a e0 fb c1 b0 d6 a8 b7 51 20
  key_iv - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  key_rsc - hexdump(len=8): 00 00 00 00 00 00 00 00
  key_id (reserved) - hexdump(len=8): 00 00 00 00 00 00 00 00
  key_mic - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
wlan0: State: ASSOCIATED -> 4WAY_HANDSHAKE
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=1): completed iteration
wlan0: freq[0]: 2437, flags=0x1
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
P2P: cli_channels:
wlan0: WPA: RX message 1 of 4-Way Handshake from a4:e4:b8:17:e9:7c (ver=2)
RSN: msg 1/4 key data - hexdump(len=0):
Get randomness: len=32 entropy=21
WPA: Renewed SNonce - hexdump(len=32): d6 b7 f4 ce c5 bb b8 bd b8 a2 24 df b7 18 42 3e 88 0a c0 29 2f 4c 6e 59 15 94 2b 63 c0 3f a1 91
WPA: PTK derivation - A1=e8:2a:ea:9a:88:cd A2=a4:e4:b8:17:e9:7c
WPA: Nonce1 - hexdump(len=32): d6 b7 f4 ce c5 bb b8 bd b8 a2 24 df b7 18 42 3e 88 0a c0 29 2f 4c 6e 59 15 94 2b 63 c0 3f a1 91
WPA: Nonce2 - hexdump(len=32): 27 94 ac bf e8 bd b5 a7 65 19 a9 fb 02 5a 73 01 db e8 ca 55 34 59 8a e0 fb c1 b0 d6 a8 b7 51 20
WPA: PMK - hexdump(len=32): [REMOVED]
WPA: PTK - hexdump(len=48): [REMOVED]
WPA: KCK - hexdump(len=16): [REMOVED]
WPA: KEK - hexdump(len=16): [REMOVED]
WPA: TK - hexdump(len=16): [REMOVED]
WPA: WPA IE for msg 2/4 - 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: Replay Counter - hexdump(len=8): 00 00 00 00 00 00 00 01
wlan0: WPA: Sending EAPOL-Key 2/4
WPA: KCK - hexdump(len=16): [REMOVED]
WPA: Derived Key MIC - hexdump(len=16): eb be b4 2a 0a 2e 4f 05 66 72 07 11 95 e0 82 08
WPA: TX EAPOL-Key - hexdump(len=121): 01 03 00 75 02 01 0a 00 00 00 00 00 00 00 00 00 01 d6 b7 f4 ce c5 bb b8 bd b8 a2 24 df b7 18 42 3e 88 0a c0 29 2f 4c 6e 59 15 94 2b 63 c0 3f a1 91 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 eb be b4 2a 0a 2e 4f 05 66 72 07 11 95 e0 82 08 00 16 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
l2_packet_receive: src=a4:e4:b8:17:e9:7c len=155
wlan0: RX EAPOL from a4:e4:b8:17:e9:7c
RX EAPOL - hexdump(len=155): 02 03 00 97 02 13 ca 00 10 00 00 00 00 00 00 00 02 27 94 ac bf e8 bd b5 a7 65 19 a9 fb 02 5a 73 01 db e8 ca 55 34 59 8a e0 fb c1 b0 d6 a8 b7 51 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 38 d2 de dc 2c 8e 84 83 ab e4 cb 6e a5 71 88 23 00 38 33 a5 7a 38 a8 46 2c 69 f5 f1 b9 a9 1b 91 00 a3 aa 74 9b f8 c5 6c e2 c3 c4 25 8b ff f3 07 47 1e 82 5b 9a a7 f2 67 4c 0e 9e 18 0d 76 0e bf 1a 6c 9f a1 a5 71 a5 bd 3c b0
wlan0: IEEE 802.1X RX: version=2 type=3 length=151
WPA: RX EAPOL-Key - hexdump(len=155): 02 03 00 97 02 13 ca 00 10 00 00 00 00 00 00 00 02 27 94 ac bf e8 bd b5 a7 65 19 a9 fb 02 5a 73 01 db e8 ca 55 34 59 8a e0 fb c1 b0 d6 a8 b7 51 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 38 d2 de dc 2c 8e 84 83 ab e4 cb 6e a5 71 88 23 00 38 33 a5 7a 38 a8 46 2c 69 f5 f1 b9 a9 1b 91 00 a3 aa 74 9b f8 c5 6c e2 c3 c4 25 8b ff f3 07 47 1e 82 5b 9a a7 f2 67 4c 0e 9e 18 0d 76 0e bf 1a 6c 9f a1 a5 71 a5 bd 3c b0
wlan0:   EAPOL-Key type=2
wlan0:   key_info 0x13ca (ver=2 keyidx=0 rsvd=0 Pairwise Install Ack MIC Secure Encr)
wlan0:   key_length=16 key_data_length=56
  replay_counter - hexdump(len=8): 00 00 00 00 00 00 00 02
  key_nonce - hexdump(len=32): 27 94 ac bf e8 bd b5 a7 65 19 a9 fb 02 5a 73 01 db e8 ca 55 34 59 8a e0 fb c1 b0 d6 a8 b7 51 20
  key_iv - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  key_rsc - hexdump(len=8): 00 00 00 00 00 00 00 00
  key_id (reserved) - hexdump(len=8): 00 00 00 00 00 00 00 00
  key_mic - hexdump(len=16): 38 d2 de dc 2c 8e 84 83 ab e4 cb 6e a5 71 88 23
RSN: encrypted key data - hexdump(len=56): 33 a5 7a 38 a8 46 2c 69 f5 f1 b9 a9 1b 91 00 a3 aa 74 9b f8 c5 6c e2 c3 c4 25 8b ff f3 07 47 1e 82 5b 9a a7 f2 67 4c 0e 9e 18 0d 76 0e bf 1a 6c 9f a1 a5 71 a5 bd 3c b0
WPA: decrypted EAPOL-Key key data - hexdump(len=48): [REMOVED]
wlan0: State: 4WAY_HANDSHAKE -> 4WAY_HANDSHAKE
wlan0: WPA: RX message 3 of 4-Way Handshake from a4:e4:b8:17:e9:7c (ver=2)
WPA: IE KeyData - hexdump(len=48): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 0c 00 dd 16 00 0f ac 01 01 00 e5 46 66 7f af 05 f8 66 26 03 5e 8a 70 7f 23 00 dd 00
WPA: RSN IE in EAPOL-Key - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 0c 00
WPA: GTK in EAPOL-Key - hexdump(len=24): [REMOVED]
wlan0: WPA: Sending EAPOL-Key 4/4
WPA: KCK - hexdump(len=16): [REMOVED]
WPA: Derived Key MIC - hexdump(len=16): ea f0 d9 a4 23 e0 05 cb ff 0e 4d ca bc 63 eb 28
WPA: TX EAPOL-Key - hexdump(len=99): 01 03 00 5f 02 03 0a 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ea f0 d9 a4 23 e0 05 cb ff 0e 4d ca bc 63 eb 28 00 00
wlan0: WPA: Installing PTK to the driver
wpa_driver_nl80211_set_key: ifindex=3 (wlan0) alg=3 addr=0x555560c33ec8 key_idx=0 set_tx=1 seq_len=6 key_len=16
nl80211: KEY_DATA - hexdump(len=16): [REMOVED]
nl80211: KEY_SEQ - hexdump(len=6): 00 00 00 00 00 00
   addr=a4:e4:b8:17:e9:7c
EAPOL: External notification - portValid=1
wlan0: State: 4WAY_HANDSHAKE -> GROUP_HANDSHAKE
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=1): completed iteration
wlan0: freq[0]: 2437, flags=0x1
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
P2P: cli_channels:
RSN: received GTK in pairwise handshake - hexdump(len=18): [REMOVED]
WPA: Group Key - hexdump(len=16): [REMOVED]
wlan0: WPA: Installing GTK to the driver (keyidx=1 tx=0 len=16)
WPA: RSC - hexdump(len=6): 00 00 00 00 00 00
wpa_driver_nl80211_set_key: ifindex=3 (wlan0) alg=3 addr=0x55555fa2768a key_idx=1 set_tx=0 seq_len=6 key_len=16
nl80211: KEY_DATA - hexdump(len=16): [REMOVED]
nl80211: KEY_SEQ - hexdump(len=6): 00 00 00 00 00 00
   broadcast key
wlan0: WPA: Key negotiation completed with a4:e4:b8:17:e9:7c [PTK=CCMP GTK=CCMP]
wlan0: Cancelling authentication timeout
wlan0: State: GROUP_HANDSHAKE -> COMPLETED
wlan0: Radio work 'sme-connect'@0x555560c591b0 done in 0.037932 seconds
wlan0: radio_work_free('sme-connect'@0x555560c591b0: num_active_works --> 0
wlan0: CTRL-EVENT-CONNECTED - Connection to a4:e4:b8:17:e9:7c completed [id=0 id_str=]
nl80211: Set wlan0 operstate 0->1 (UP)
netlink: Operstate: ifindex=3 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
wlan0: Determining shared radio frequencies (max len 2)
wlan0: Shared frequencies (len=1): completed iteration
wlan0: freq[0]: 2437, flags=0x1
P2P: Add operating class 81
P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
P2P: Update channel list
P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
P2P: cli_channels:
EAPOL: External notification - portValid=1
EAPOL: External notification - EAP success=1
EAPOL: SUPP_PAE entering state AUTHENTICATING
EAPOL: SUPP_BE entering state SUCCESS
EAP: EAP entering state DISABLED
EAPOL: SUPP_PAE entering state AUTHENTICATED
EAPOL: Supplicant port status: Authorized
nl80211: Set supplicant port authorized for a4:e4:b8:17:e9:7c
EAPOL: SUPP_BE entering state IDLE
EAPOL authentication completed - result=SUCCESS
nl80211: Set rekey offload
RTM_NEWLINK: ifi_index=3 ifname=wlan0 operstate=6 linkmode=1 ifi_family=0 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
EAPOL: startWhen --> 0
EAPOL: disable timer tick
RTM_NEWLINK: ifi_index=3 ifname=wlan0 operstate=6 linkmode=1 ifi_family=0 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
Download as text