ubuntuusers.de

wlp3s0: link is not ready

Autor:
SpammerSlammer
Datum:
17. März 2019 12:59
Code:
  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
philip@philip-ThinkPad-T450s:~$ uname -a
Linux philip-ThinkPad-T450s 4.18.0-16-generic #17-Ubuntu SMP Fri Feb 8 00:06:57 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux

philip@philip-ThinkPad-T450s:~$ lspci -nnk | grep -i net -A2
00:19.0 Ethernet controller [0200]: Intel Corporation Ethernet Connection (3) I218-LM [8086:15a2] (rev 03)
        Subsystem: Lenovo Ethernet Connection (3) I218-LM [17aa:2226]
        Kernel driver in use: e1000e
        Kernel modules: e1000e
--
03:00.0 Network controller [0280]: Intel Corporation Wireless 7265 [8086:095b] (rev 59)
        Subsystem: Intel Corporation Dual Band Wireless-AC 7265 [8086:5210]
        Kernel driver in use: iwlwifi

philip@philip-ThinkPad-T450s:~$ cat /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback

philip@philip-ThinkPad-T450s:~$ ip link
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: enp0s25: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP mode DEFAULT group default qlen 1000
    link/ether 68:f7:28:51:45:b0 brd ff:ff:ff:ff:ff:ff
3: wlp3s0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN mode DORMANT group default qlen 1000
    link/ether 60:57:18:6e:33:b3 brd ff:ff:ff:ff:ff:ff

philip@philip-ThinkPad-T450s:~$ ip -4 addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
2: enp0s25: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
    inet 192.168.1.112/24 brd 192.168.1.255 scope global dynamic noprefixroute enp0s25
       valid_lft 85826sec preferred_lft 85826sec

philip@philip-ThinkPad-T450s:~$ ip -4 route
default via 192.168.1.254 dev enp0s25 proto dhcp metric 100 
169.254.0.0/16 dev enp0s25 scope link metric 1000 
192.168.1.0/24 dev enp0s25 proto kernel scope link src 192.168.1.112 metric 100 

philip@philip-ThinkPad-T450s:~$ ip -4 neigh
192.168.1.254 dev enp0s25 lladdr 90:4d:4a:2d:30:0f REACHABLE

philip@philip-ThinkPad-T450s:~$ iwconfig
wlp3s0    IEEE 802.11  ESSID:off/any  
          Mode:Managed  Access Point: Not-Associated   Tx-Power=0 dBm   
          Retry short limit:7   RTS thr:off   Fragment thr:off
          Power Management:on
          
lo        no wireless extensions.

enp0s25   no wireless extensions.

philip@philip-ThinkPad-T450s:~$ ip -6 addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 state UNKNOWN qlen 1000
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: enp0s25: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 state UP qlen 1000
    inet6 2a00:23c4:f80:6900:6807:8a47:c5c2:2b8f/64 scope global temporary dynamic 
       valid_lft 602984sec preferred_lft 84017sec
    inet6 2a00:23c4:f80:6900:3041:e431:a192:8fd4/64 scope global dynamic mngtmpaddr noprefixroute 
       valid_lft 315359973sec preferred_lft 315359973sec
    inet6 fdaa:bbcc:ddee:0:6807:8a47:c5c2:2b8f/64 scope global temporary dynamic 
       valid_lft 602984sec preferred_lft 84017sec
    inet6 fdaa:bbcc:ddee:0:5a86:5280:1c71:fe09/64 scope global mngtmpaddr noprefixroute 
       valid_lft forever preferred_lft forever
    inet6 fe80::ee2f:7b5a:c2cb:f2e1/64 scope link noprefixroute 
       valid_lft forever preferred_lft forever

philip@philip-ThinkPad-T450s:~$ ip -6 route
::1 dev lo proto kernel metric 256 pref medium
2a00:23c4:f80:6900::/64 via fe80::924d:4aff:fe2d:300f dev enp0s25 proto ra metric 100 pref medium
2a00:23c4:f80:6900::/64 dev enp0s25 proto kernel metric 100 pref medium
fdaa:bbcc:ddee::/64 via fe80::924d:4aff:fe2d:300f dev enp0s25 proto ra metric 100 pref medium
fdaa:bbcc:ddee::/64 dev enp0s25 proto kernel metric 100 pref medium
fe80::/64 dev enp0s25 proto kernel metric 100 pref medium
default via fe80::924d:4aff:fe2d:300f dev enp0s25 proto ra metric 100 pref medium

philip@philip-ThinkPad-T450s:~$ ip -6 neigh
fe80::924d:4aff:fe2d:300f dev enp0s25 lladdr 90:4d:4a:2d:30:0f router STALE

philip@philip-ThinkPad-T450s:~$ nmcli general ; nmcli device ; nmcli connection
STATE      CONNECTIVITY  WIFI-HW  WIFI     WWAN-HW  WWAN     
connected  full          enabled  enabled  enabled  disabled 
DEVICE   TYPE      STATE         CONNECTION 
enp0s25  ethernet  connected     LAN Home   
wlp3s0   wifi      disconnected  --         
lo       loopback  unmanaged     --         
NAME                            UUID                                  TYPE      DEVICE  
LAN Home                        7a4ed985-41cb-4c23-97af-5b4b8b716602  ethernet  enp0s25 
...
BTHub6-853Q                     7d92cafe-5622-4918-83cf-24b1da1e8e74  wifi      --      
BTHub6-853Q-5                   e0691ea6-a8b8-4546-b5b3-703e1af4eb81  wifi      --      
...

philip@philip-ThinkPad-T450s:~$ ls -l /etc/resolv.conf
lrwxrwxrwx 1 root root 39 Apr 28  2018 /etc/resolv.conf -> ../run/systemd/resolve/stub-resolv.conf

philip@philip-ThinkPad-T450s:~$ cat /etc/resolv.conf
# This file is managed by man:systemd-resolved(8). Do not edit.
#
# This is a dynamic resolv.conf file for connecting local clients to the
# internal DNS stub resolver of systemd-resolved. This file lists all
# configured search domains.
#
# Run "resolvectl status" to see details about the uplink DNS servers
# currently in use.
#
# Third party programs must not access this file directly, but only through the
# symlink at /etc/resolv.conf. To manage man:resolv.conf(5) in a different way,
# replace this symlink by a static file or a different symlink.
#
# See man:systemd-resolved.service(8) for details about the supported modes of
# operation for /etc/resolv.conf.

nameserver 127.0.0.53
options edns0
search home

philip@philip-ThinkPad-T450s:~$ cat /etc/hosts
127.0.0.1       localhost
127.0.1.1       philip-ThinkPad-T450s

# The following lines are desirable for IPv6 capable hosts
::1     ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

philip@philip-ThinkPad-T450s:~$ rfkill list
0: tpacpi_bluetooth_sw: Bluetooth
        Soft blocked: no
        Hard blocked: no
1: phy0: Wireless LAN
        Soft blocked: no
        Hard blocked: no
2: hci0: Bluetooth
        Soft blocked: no
        Hard blocked: no

philip@philip-ThinkPad-T450s:~$ lsmod
Module                  Size  Used by
rfcomm                 77824  16
ip6table_filter        16384  0
ip6_tables             28672  1 ip6table_filter
iptable_filter         16384  0
bpfilter               16384  0
pci_stub               16384  1
vboxpci                24576  0
vboxnetadp             28672  0
vboxnetflt             28672  0
vboxdrv               475136  3 vboxpci,vboxnetadp,vboxnetflt
cmac                   16384  1
bnep                   20480  2
intel_rapl             20480  0
x86_pkg_temp_thermal    16384  0
intel_powerclamp       16384  0
coretemp               16384  0
kvm                   622592  0
irqbypass              16384  1 kvm
crct10dif_pclmul       16384  0
crc32_pclmul           16384  0
ghash_clmulni_intel    16384  0
pcbc                   16384  0
btusb                  45056  0
btrtl                  16384  1 btusb
btbcm                  16384  1 btusb
uvcvideo               98304  0
btintel                20480  1 btusb
arc4                   16384  2
videobuf2_vmalloc      16384  1 uvcvideo
bluetooth             548864  41 btrtl,btintel,btbcm,bnep,btusb,rfcomm
videobuf2_memops       16384  1 videobuf2_vmalloc
videobuf2_v4l2         24576  1 uvcvideo
videobuf2_common       45056  2 videobuf2_v4l2,uvcvideo
videodev              188416  3 videobuf2_v4l2,uvcvideo,videobuf2_common
aesni_intel           200704  2
media                  40960  2 videodev,uvcvideo
ecdh_generic           24576  2 bluetooth
aes_x86_64             20480  1 aesni_intel
crypto_simd            16384  1 aesni_intel
cryptd                 24576  3 crypto_simd,ghash_clmulni_intel,aesni_intel
glue_helper            16384  1 aesni_intel
intel_cstate           20480  0
snd_hda_codec_realtek   106496  1
snd_hda_codec_generic    73728  1 snd_hda_codec_realtek
snd_hda_codec_hdmi     49152  1
intel_rapl_perf        16384  0
snd_hda_intel          40960  4
snd_hda_codec         126976  4 snd_hda_codec_generic,snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec_realtek
snd_seq_midi           16384  0
snd_hda_core           81920  5 snd_hda_codec_generic,snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec,snd_hda_codec_realtek
snd_seq_midi_event     16384  1 snd_seq_midi
iwlmvm                368640  0
snd_hwdep              20480  1 snd_hda_codec
snd_pcm                98304  4 snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec,snd_hda_core
snd_rawmidi            32768  1 snd_seq_midi
mac80211              794624  1 iwlmvm
joydev                 20480  0
input_leds             16384  0
iwlwifi               294912  1 iwlmvm
serio_raw              16384  0
snd_seq                65536  2 snd_seq_midi,snd_seq_midi_event
wmi_bmof               16384  0
intel_pch_thermal      16384  0
snd_seq_device         16384  3 snd_seq,snd_seq_midi,snd_rawmidi
thinkpad_acpi          94208  1
snd_timer              32768  2 snd_seq,snd_pcm
nvram                  16384  1 thinkpad_acpi
cfg80211              663552  3 iwlmvm,iwlwifi,mac80211
snd                    81920  20 snd_hda_codec_generic,snd_seq,snd_seq_device,snd_hda_codec_hdmi,snd_hwdep,snd_hda_intel,snd_hda_codec,snd_hda_codec_realtek,snd_timer,thinkpad_acpi,snd_pcm,snd_rawmidi
mei_me                 40960  0
rtsx_pci_ms            20480  0
memstick               16384  1 rtsx_pci_ms
mei                    98304  1 mei_me
soundcore              16384  1 snd
mac_hid                16384  0
sch_fq_codel           20480  6
parport_pc             36864  0
ppdev                  20480  0
lp                     20480  0
parport                49152  3 parport_pc,lp,ppdev
ip_tables              24576  1 iptable_filter
x_tables               40960  4 ip6table_filter,iptable_filter,ip6_tables,ip_tables
autofs4                40960  2
rtsx_pci_sdmmc         24576  0
i915                 1740800  27
psmouse               151552  0
i2c_algo_bit           16384  1 i915
drm_kms_helper        172032  1 i915
ahci                   40960  4
syscopyarea            16384  1 drm_kms_helper
libahci                32768  1 ahci
sysfillrect            16384  1 drm_kms_helper
sysimgblt              16384  1 drm_kms_helper
fb_sys_fops            16384  1 drm_kms_helper
lpc_ich                24576  0
rtsx_pci               65536  2 rtsx_pci_sdmmc,rtsx_pci_ms
drm                   458752  13 drm_kms_helper,i915
e1000e                249856  0
wmi                    24576  1 wmi_bmof
video                  45056  2 thinkpad_acpi,i915

philip@philip-ThinkPad-T450s:~$ iwlist chan
wlp3s0    32 channels in total; available frequencies :
          Channel 01 : 2.412 GHz
          Channel 02 : 2.417 GHz
          Channel 03 : 2.422 GHz
          Channel 04 : 2.427 GHz
          Channel 05 : 2.432 GHz
          Channel 06 : 2.437 GHz
          Channel 07 : 2.442 GHz
          Channel 08 : 2.447 GHz
          Channel 09 : 2.452 GHz
          Channel 10 : 2.457 GHz
          Channel 11 : 2.462 GHz
          Channel 12 : 2.467 GHz
          Channel 13 : 2.472 GHz
          Channel 36 : 5.18 GHz
          Channel 40 : 5.2 GHz
          Channel 44 : 5.22 GHz
          Channel 48 : 5.24 GHz
          Channel 52 : 5.26 GHz
          Channel 56 : 5.28 GHz
          Channel 60 : 5.3 GHz
          Channel 64 : 5.32 GHz
          Channel 100 : 5.5 GHz
          Channel 104 : 5.52 GHz
          Channel 108 : 5.54 GHz
          Channel 112 : 5.56 GHz
          Channel 116 : 5.58 GHz
          Channel 120 : 5.6 GHz
          Channel 124 : 5.62 GHz
          Channel 128 : 5.64 GHz
          Channel 132 : 5.66 GHz
          Channel 136 : 5.68 GHz
          Channel 140 : 5.7 GHz
lo        no frequency information.

enp0s25   no frequency information.

philip@philip-ThinkPad-T450s:~$ sudo iwlist scan
wlp3s0    Scan completed :
          Cell 01 - Address: 90:4D:4A:2D:30:12
                    Channel:1
                    Frequency:2.412 GHz (Channel 1)
                    Quality=60/70  Signal level=-50 dBm  
                    Encryption key:on
                    ESSID:"BTHub6-853Q"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
                              24 Mb/s; 36 Mb/s; 54 Mb/s
                    Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 48 Mb/s
                    Mode:Master
                    Extra:tsf=00000001099e2d4d
                    Extra: Last beacon: 692ms ago
                    IE: Unknown: 000B4254487562362D38353351
                    IE: Unknown: 010882848B962430486C
                    IE: Unknown: 030101
                    IE: Unknown: 0706474220010D14
                    IE: Unknown: 2A0104
                    IE: Unknown: 32040C121860
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
                    IE: Unknown: 0B050300240000
                    IE: Unknown: 2D1AAD0117FFFFFF0000000000000000000000000000000000000000
                    IE: Unknown: 3D1601001300000000000000000000000000000000000000
                    IE: Unknown: 7F080400080000000040
                    IE: Unknown: DD8C0050F204104A0001101044000102103B00010310470010941225335040ED840D0489BAB2492A1B1021000242541023000842545F4855425F3610240007312E302D322E30104200122B3038343331362B4E5136323330313231341054000800060050F20400011011000D42545F4855425F362D2B303834100800022000103C0001011049000600372A000120
                    IE: Unknown: DD1E00904C0400BF0CB259820FEAFF0000EAFF0000C0050001000000C3020002
                    IE: Unknown: DD090010180203001C0000
                    IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
          Cell 02 - Address: 92:4D:4A:2D:32:13
                    Channel:1
                    Frequency:2.412 GHz (Channel 1)
                    Quality=58/70  Signal level=-52 dBm  
                    Encryption key:off
                    ESSID:"BTWifi-with-FON"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
                              24 Mb/s; 36 Mb/s; 54 Mb/s
                    Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 48 Mb/s
                    Mode:Master
                    Extra:tsf=00000001099e3b8b
                    Extra: Last beacon: 696ms ago
                    IE: Unknown: 000F4254576966692D776974682D464F4E
                    IE: Unknown: 010882848B962430486C
                    IE: Unknown: 030101
                    IE: Unknown: 0706474220010D14
                    IE: Unknown: 2A0104
                    IE: Unknown: 32040C121860
                    IE: Unknown: 0B050000240000
                    IE: Unknown: 2D1AAD0117FFFFFF0000000000000000000000000000000000000000
                    IE: Unknown: 3D1601001300000000000000000000000000000000000000
                    IE: Unknown: 7F080400080000000040
                    IE: Unknown: DD1E00904C0400BF0CB259820FEAFF0000EAFF0000C0050001000000C3020002
                    IE: Unknown: DD090010180200001C0000
                    IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
          Cell 03 - Address: 30:24:78:C7:5A:28
                    Channel:11
                    Frequency:2.462 GHz (Channel 11)
                    Quality=40/70  Signal level=-70 dBm  
                    Encryption key:on
                    ESSID:"BTHub6-5Q95"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
                              24 Mb/s; 36 Mb/s; 54 Mb/s
                    Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 48 Mb/s
                    Mode:Master
                    Extra:tsf=0000011450e9d90d
                    Extra: Last beacon: 192ms ago
                    IE: Unknown: 000B4254487562362D35513935
                    IE: Unknown: 010882848B962430486C
                    IE: Unknown: 03010B
                    IE: Unknown: 0706474220010D14
                    IE: Unknown: 2A0100
                    IE: Unknown: 32040C121860
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
                    IE: Unknown: 0B050000460000
                    IE: Unknown: 2D1AA10117FFFFFF0000000000000000000000000000000000000000
                    IE: Unknown: 3D160B081100000000000000000000000000000000000000
                    IE: Unknown: 7F080400080000000040
                    IE: Unknown: DD8C0050F204104A0001101044000102103B000103104700100B5FE2686DE36FBA3A57E8D616792A921021000242541023000842545F4855425F3610240007312E302D322E30104200122B3038343331362B4E5138343838353636341054000800060050F20400011011000D42545F4855425F362D2B303834100800022000103C0001031049000600372A000120
                    IE: Unknown: DD1E00904C0400BF0CB259820FFEFF0000EAFF0000C005000B000000C3020002
                    IE: Unknown: DD090010180200001C0000
                    IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
          Cell 04 - Address: 32:24:78:C7:5C:29
                    Channel:11
                    Frequency:2.462 GHz (Channel 11)
                    Quality=40/70  Signal level=-70 dBm  
                    Encryption key:off
                    ESSID:"BTWifi-with-FON"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
                              24 Mb/s; 36 Mb/s; 54 Mb/s
                    Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 48 Mb/s
                    Mode:Master
                    Extra:tsf=0000011450e9e730
                    Extra: Last beacon: 200ms ago
                    IE: Unknown: 000F4254576966692D776974682D464F4E
                    IE: Unknown: 010882848B962430486C
                    IE: Unknown: 03010B
                    IE: Unknown: 0706474220010D14
                    IE: Unknown: 2A0100
                    IE: Unknown: 32040C121860
                    IE: Unknown: 0B050000460000
                    IE: Unknown: 2D1AA10117FFFFFF0000000000000000000000000000000000000000
                    IE: Unknown: 3D160B081100000000000000000000000000000000000000
                    IE: Unknown: 7F080400080000000040
                    IE: Unknown: DD1E00904C0400BF0CB259820FFEFF0000EAFF0000C005000B000000C3020002
                    IE: Unknown: DD090010180200001C0000
                    IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
          Cell 05 - Address: 30:24:78:C7:5A:29
                    Channel:36
                    Frequency:5.18 GHz (Channel 36)
                    Quality=28/70  Signal level=-82 dBm  
                    Encryption key:on
                    ESSID:"BTHub6-5Q95"
                    Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s
                              36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=0000011450f467fd
                    Extra: Last beacon: 156ms ago
                    IE: Unknown: 000B4254487562362D35513935
                    IE: Unknown: 01088C129824B048606C
                    IE: Unknown: 073C4742202401172801172C01173001173401173801173C011740011764011E68011E6C011E70011E74011E78011E7C011E80011E84011E88011E8C011E
                    IE: Unknown: 200100
                    IE: Unknown: 23021500
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
                    IE: Unknown: 0B050200050000
                    IE: Unknown: 42020000
                    IE: Unknown: 2D1AEF0117FFFFFFFF00000000000000000000000000000000000000
                    IE: Unknown: 3D16240D0400000000000000000000000000000000000000
                    IE: Unknown: 7F080400080000000040
                    IE: Unknown: BF0CB269830FAAFF0000AAFF0000
                    IE: Unknown: C005012A000000
                    IE: Unknown: C30402020202
                    IE: Unknown: DD8C0050F204104A0001101044000102103B000103104700100B5FE2686DE36FBA3A57E8D616792A921021000242541023000842545F4855425F3610240007312E302D322E30104200122B3038343331362B4E5138343838353636341054000800060050F20400011011000D42545F4855425F362D2B303834100800022000103C0001031049000600372A000120
                    IE: Unknown: DD0500904C0417
                    IE: Unknown: DD090010180202001C0000
                    IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
          Cell 06 - Address: 32:24:78:C7:5B:2A
                    Channel:36
                    Frequency:5.18 GHz (Channel 36)
                    Quality=28/70  Signal level=-82 dBm  
                    Encryption key:off
                    ESSID:"BTWifi-with-FON"
                    Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s
                              36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=0000011450f46adc
                    Extra: Last beacon: 156ms ago
                    IE: Unknown: 000F4254576966692D776974682D464F4E
                    IE: Unknown: 01088C129824B048606C
                    IE: Unknown: 073C4742202401172801172C01173001173401173801173C011740011764011E68011E6C011E70011E74011E78011E7C011E80011E84011E88011E8C011E
                    IE: Unknown: 200100
                    IE: Unknown: 23021500
                    IE: Unknown: 0B050000050000
                    IE: Unknown: 42020000
                    IE: Unknown: 2D1AEF0117FFFFFFFF00000000000000000000000000000000000000
                    IE: Unknown: 3D16240D0400000000000000000000000000000000000000
                    IE: Unknown: 7F080400080000000040
                    IE: Unknown: BF0CB269830FAAFF0000AAFF0000
                    IE: Unknown: C005012A000000
                    IE: Unknown: C30402020202
                    IE: Unknown: DD0500904C0417
                    IE: Unknown: DD090010180200001C0000
                    IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
          Cell 07 - Address: 92:4D:4A:2D:31:10
                    Channel:48
                    Frequency:5.24 GHz (Channel 48)
                    Quality=48/70  Signal level=-62 dBm  
                    Encryption key:off
                    ESSID:"BTWifi-with-FON"
                    Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s
                              36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=0000000109663002
                    Extra: Last beacon: 28ms ago
                    IE: Unknown: 000F4254576966692D776974682D464F4E
                    IE: Unknown: 01088C129824B048606C
                    IE: Unknown: 073C4742202401172801172C01173001173401173801173C011740011764011E68011E6C011E70011E74011E78011E7C011E80011E84011E88011E8C011E
                    IE: Unknown: 200100
                    IE: Unknown: 23021500
                    IE: Unknown: 0B050000080000
                    IE: Unknown: 42020000
                    IE: Unknown: 2D1AEF0117FFFFFFFF00000000000000000000000000000000000000
                    IE: Unknown: 3D16300F0400000000000000000000000000000000000000
                    IE: Unknown: 7F080400080000000040
                    IE: Unknown: BF0CB269830FAAFF0000AAFF0000
                    IE: Unknown: C005012A000000
                    IE: Unknown: C30402020202
                    IE: Unknown: DD0500904C0417
                    IE: Unknown: DD090010180200001C0000
                    IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
          Cell 08 - Address: 90:4D:4A:2D:30:13
                    Channel:48
                    Frequency:5.24 GHz (Channel 48)
                    Quality=48/70  Signal level=-62 dBm  
                    Encryption key:on
                    ESSID:"BTHub6-853Q-5"
                    Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s
                              36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=0000000109662df1
                    Extra: Last beacon: 28ms ago
                    IE: Unknown: 000D4254487562362D383533512D35
                    IE: Unknown: 01088C129824B048606C
                    IE: Unknown: 073C4742202401172801172C01173001173401173801173C011740011764011E68011E6C011E70011E74011E78011E7C011E80011E84011E88011E8C011E
                    IE: Unknown: 200100
                    IE: Unknown: 23021500
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
                    IE: Unknown: 0B050200080000
                    IE: Unknown: 42020000
                    IE: Unknown: 2D1AEF0117FFFFFFFF00000000000000000000000000000000000000
                    IE: Unknown: 3D16300F0400000000000000000000000000000000000000
                    IE: Unknown: 7F080400080000000040
                    IE: Unknown: BF0CB269830FAAFF0000AAFF0000
                    IE: Unknown: C005012A000000
                    IE: Unknown: C30402020202
                    IE: Unknown: DD0500904C0417
                    IE: Unknown: DD090010180202001C0000
                    IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
          Cell 09 - Address: 86:A4:23:02:04:DF
                    Channel:6
                    Frequency:2.437 GHz (Channel 6)
                    Quality=22/70  Signal level=-88 dBm  
                    Encryption key:off
                    ESSID:"BTWifi-with-FON"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s
                              9 Mb/s; 12 Mb/s; 18 Mb/s
                    Bit Rates:24 Mb/s; 36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=0000009667a1572e
                    Extra: Last beacon: 492ms ago
                    IE: Unknown: 000F4254576966692D776974682D464F4E
                    IE: Unknown: 010882848B960C121824
                    IE: Unknown: 030106
                    IE: Unknown: 0706474220010D14
                    IE: Unknown: 2A0100
                    IE: Unknown: 32043048606C
                    IE: Unknown: 2D1AAC011BFFFF000000000000000000008000000000000000000000
                    IE: Unknown: 3D1606080400000000000000000000000000000000000000
                    IE: Unknown: 4A0E14000A002C01C800140005001900
                    IE: Unknown: 7F080100000000000040
                    IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
                    IE: Unknown: DD0900037F01010000FF7F
          Cell 10 - Address: 84:A4:23:02:04:DF
                    Channel:6
                    Frequency:2.437 GHz (Channel 6)
                    Quality=20/70  Signal level=-90 dBm  
                    Encryption key:on
                    ESSID:"BTHub5-RQ25"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s
                              9 Mb/s; 12 Mb/s; 18 Mb/s
                    Bit Rates:24 Mb/s; 36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=0000009667a014b1
                    Extra: Last beacon: 516ms ago
                    IE: Unknown: 000B4254487562352D52513235
                    IE: Unknown: 010882848B960C121824
                    IE: Unknown: 030106
                    IE: Unknown: 0706474220010D14
                    IE: Unknown: 2A0100
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
                    IE: Unknown: 32043048606C
                    IE: Unknown: 2D1AAC011BFFFF000000000000000000008000000000000000000000
                    IE: Unknown: 3D1606080400000000000000000000000000000000000000
                    IE: Unknown: 4A0E14000A002C01C800140005001900
                    IE: Unknown: 7F080100000000000040
                    IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
                    IE: Unknown: DD0900037F01010000FF7F
                    IE: Unknown: DD8E0050F204104A000110104400010210570001001041000100103B00010310470010C2198D2500245C6D95CA5A4FAF86CB3C10210002425410230005487562203510240009425420487562203541104200122B3036383334332B4E5135343330333832321054000800060050F204000110110010425420486F6D652048756220352E3041100800020084103C000101
          Cell 11 - Address: A6:A4:23:02:04:DF
                    Channel:6
                    Frequency:2.437 GHz (Channel 6)
                    Quality=20/70  Signal level=-90 dBm  
                    Encryption key:on
                    ESSID:"BTWifi-X"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s
                              9 Mb/s; 12 Mb/s; 18 Mb/s
                    Bit Rates:24 Mb/s; 36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=0000009667a0fbba
                    Extra: Last beacon: 464ms ago
                    IE: Unknown: 00084254576966692D58
                    IE: Unknown: 010882848B960C121824
                    IE: Unknown: 030106
                    IE: Unknown: 0706474220010D14
                    IE: Unknown: 2A0100
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : 802.1x
                       Preauthentication Supported
                    IE: Unknown: 32043048606C
                    IE: Unknown: 2D1AAC011BFFFF000000000000000000008000000000000000000000
                    IE: Unknown: 3D1606080400000000000000000000000000000000000000
                    IE: Unknown: 4A0E14000A002C01C800140005001900
                    IE: Unknown: 7F080100000000000040
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : 802.1x
                    IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
                    IE: Unknown: DD0900037F01010000FF7F
          Cell 12 - Address: E4:FB:5D:BB:57:ED
                    Channel:6
                    Frequency:2.437 GHz (Channel 6)
                    Quality=16/70  Signal level=-94 dBm  
                    Encryption key:on
                    ESSID:"VodafoneConnect50286460"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
                              24 Mb/s; 36 Mb/s; 54 Mb/s
                    Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 48 Mb/s
                    Mode:Master
                    Extra:tsf=000000ec85d426f6
                    Extra: Last beacon: 500ms ago
                    IE: Unknown: 0017566F6461666F6E65436F6E6E6563743530323836343630
                    IE: Unknown: 010882848B962430486C
                    IE: Unknown: 030106
                    IE: Unknown: 0706474220010D14
                    IE: Unknown: 2A0104
                    IE: Unknown: 2F0104
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: Unknown: 32040C121860
                    IE: Unknown: 2D1ABC191BFFFF000000000000000000000000000000000000000000
                    IE: Unknown: 3D1606001700000000000000000000000000000000000000
                    IE: Unknown: 7F080400000000000040
                    IE: Unknown: DD810050F204104A0001101044000102103B00010310470010BC6B8C301463F1A574849ECC8B72D638102100064875617765691023000F4F70656E524720506C6174666F726D10240007566F7820322E351042000D383031313648313030353532371054000800060050F2040001101100064F70656E5247100800020080103C000101
                    IE: Unknown: DD090010180206000C0000
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
          Cell 13 - Address: A0:BD:CD:65:64:62
                    Channel:1
                    Frequency:2.412 GHz (Channel 1)
                    Quality=33/70  Signal level=-77 dBm  
                    Encryption key:on
                    ESSID:"SKY3C2E2"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
                              24 Mb/s; 36 Mb/s; 54 Mb/s
                    Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 48 Mb/s
                    Mode:Master
                    Extra:tsf=000002e0bf8c7265
                    Extra: Last beacon: 720ms ago
                    IE: Unknown: 0008534B593343324532
                    IE: Unknown: 010882848B962430486C
                    IE: Unknown: 030101
                    IE: Unknown: 2A0104
                    IE: Unknown: 2F0104
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
                    IE: Unknown: 32040C121860
                    IE: Unknown: 0B050100300000
                    IE: Unknown: 2D1ABC191BFFFF000000000000000000000000000000000000000000
                    IE: Unknown: 3D1601081500000000000000000000000000000000000000
                    IE: Unknown: 7F080400080000000040
                    IE: Unknown: DDA60050F204104A0001101044000102103B00010310470010AA651EDD24FFCF9DEAFC7CCA65FD440810210003536B7910230007536B79204875621024000545523131351042000E42323332313842413032343635311054000800060050F204000110110007536B792048756210080002200C103C0001011049000600372A00012010580022007FC5100018C31808FADA06B37F6D06E81A419B0C17303030303030303130000101
                    IE: Unknown: DD090010180201000C0000
                    IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
                    IE: Unknown: 46057200010000
          Cell 14 - Address: C4:12:F5:1A:10:52
                    Channel:1
                    Frequency:2.412 GHz (Channel 1)
                    Quality=24/70  Signal level=-86 dBm  
                    Encryption key:on
                    ESSID:"dlink-1052"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s
                              9 Mb/s; 12 Mb/s; 18 Mb/s
                    Bit Rates:24 Mb/s; 36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=000000c4196ca7d0
                    Extra: Last beacon: 636ms ago
                    IE: Unknown: 000A646C696E6B2D31303532
                    IE: Unknown: 010882848B960C121824
                    IE: Unknown: 030101
                    IE: Unknown: 0706554B20010D14
                    IE: Unknown: 2A0100
                    IE: Unknown: 32043048606C
                    IE: Unknown: 2D1AAD011BFFFF000000000000000000000100000000000000000000
                    IE: Unknown: 3D1601000500000000000000000000000000000000000000
                    IE: Unknown: 4A0E14000A002C01C800140005001900
                    IE: Unknown: 7F080100000000000040
                    IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
                    IE: Unknown: DD0900037F01010000FF7F
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DD850050F204104A0001101044000102103B0001031047001013B71BD41DD211B29D73C08F208520FC10210006442D4C696E6B1023000F442D4C696E6B205265706561746572102400084441502D31333230104200046E6F6E651054000800060050F2040001101100084441502D3133323010080002200C103C0001011049000600372A000120
          Cell 15 - Address: 90:8D:78:E3:91:29
                    Channel:1
                    Frequency:2.412 GHz (Channel 1)
                    Quality=26/70  Signal level=-84 dBm  
                    Encryption key:on
                    ESSID:"VM5878638-EXT"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s
                              9 Mb/s; 12 Mb/s; 18 Mb/s
                    Bit Rates:24 Mb/s; 36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=000000c418ec89dd
                    Extra: Last beacon: 640ms ago
                    IE: Unknown: 000D564D353837383633382D455854
                    IE: Unknown: 010882848B960C121824
                    IE: Unknown: 030101
                    IE: Unknown: 0706554B20010D14
                    IE: Unknown: 2A0100
                    IE: Unknown: 32043048606C
                    IE: Unknown: 2D1AAD011BFFFF000000000000000000000100000000000000000000
                    IE: Unknown: 3D1601000100000000000000000000000000000000000000
                    IE: Unknown: 4A0E14000A002C01C800140005001900
                    IE: Unknown: 7F080100000000000040
                    IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
                    IE: Unknown: DD0900037F01010000FF7F
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DD850050F204104A0001101044000102103B0001031047001013E390921DD211B28428B0EDF2CD250D10210006442D4C696E6B1023000F442D4C696E6B205265706561746572102400084441502D31333230104200046E6F6E651054000800060050F2040001101100084441502D3133323010080002200C103C0001011049000600372A000120
          Cell 16 - Address: C0:05:C2:FA:49:49
                    Channel:1
                    Frequency:2.412 GHz (Channel 1)
                    Quality=25/70  Signal level=-85 dBm  
                    Encryption key:on
                    ESSID:"VM5878638"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s
                              9 Mb/s; 12 Mb/s; 18 Mb/s
                    Bit Rates:24 Mb/s; 36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=00000195d84932b6
                    Extra: Last beacon: 656ms ago
                    IE: Unknown: 0009564D35383738363338
                    IE: Unknown: 010882848B960C121824
                    IE: Unknown: 030101
                    IE: Unknown: 0706474220010D14
                    IE: Unknown: 2A0100
                    IE: Unknown: 32043048606C
                    IE: Unknown: 2D1AAD011BFFFF0000000000000000000001000000000406E6A70C00
                    IE: Unknown: 3D1601000500000000000000000000000000000000000000
                    IE: Unknown: 4A0E14000A002C01C800140005001900
                    IE: Unknown: 7F080500000200000040
                    IE: Unknown: DD180050F2020101880003A4000027A4000042435E0062322F00
                    IE: Unknown: DD0900037F01010000FF7F
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DD9F0050F204104A0001101044000102103B00010310470010B52CB0F89B885780B6489B0882A4428D1021001C41746865726F7320436F6D6D756E69636174696F6E732C20496E632E102300044150787810240008415078782D7878781042001253657269616C204E756D62657220486572651054000800060050F20400011011000941746865726F734150100800020104103C0001021049000600372A000120
          Cell 17 - Address: 9C:97:26:C2:DC:BD
                    Channel:11
                    Frequency:2.462 GHz (Channel 11)
                    Quality=18/70  Signal level=-92 dBm  
                    Encryption key:on
                    ESSID:"PlusnetWirelessC2DCBD"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
                              24 Mb/s; 36 Mb/s; 54 Mb/s
                    Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 48 Mb/s
                    Mode:Master
                    Extra:tsf=0000097dca2f1f38
                    Extra: Last beacon: 212ms ago
                    IE: Unknown: 0015506C75736E6574576972656C657373433244434244
                    IE: Unknown: 010882848B962430486C
                    IE: Unknown: 03010B
                    IE: Unknown: 2A0100
                    IE: Unknown: 2F0100
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
                    IE: Unknown: 32040C121860
                    IE: Unknown: 2D1A10181BFF00000000000000000000000000000000000000000000
                    IE: Unknown: 3D160B080000000000000000000000000000000000000000
                    IE: Unknown: DD940050F204104A0001101044000102103B000103104700105F2FD68D9FEA530DBC671FEAFC46D3CE1021000B546563686E69636F6C6F721023000E546563686E69636F6C6F72205447102400043538326E104200093134313256463250361054000800060050F204000110110012546563686E69636F6C6F722054473538326E100800020004103C0001011049000600372A000120
                    IE: Unknown: DD090010180200000C0000
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (1) : TKIP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DD180050F2020101000003A4000027A4000042435E0062322F00

lo        Interface doesn't support scanning.

enp0s25   Interface doesn't support scanning.


philip@philip-ThinkPad-T450s:~$ egrep -i 'net|eth|wlan|firm|reason' /var/log/syslog
...
Mar 17 11:33:10 philip-ThinkPad-T450s NetworkManager[3894]: <info>  [1552822390.4937] device (enp0s25): Activation: successful, device activated.
Mar 17 11:33:10 philip-ThinkPad-T450s NetworkManager[3894]: <info>  [1552822390.4944] manager: NetworkManager state is now CONNECTED_GLOBAL
Mar 17 11:33:10 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:33:10 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:33:10 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:33:10 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:33:10 philip-ThinkPad-T450s whoopsie[1251]: [11:33:10] The default IPv4 route is: /org/freedesktop/NetworkManager/ActiveConnection/1
Mar 17 11:33:10 philip-ThinkPad-T450s whoopsie[1251]: [11:33:10] Not a paid data plan: /org/freedesktop/NetworkManager/ActiveConnection/1
Mar 17 11:33:10 philip-ThinkPad-T450s whoopsie[1251]: [11:33:10] Found usable connection: /org/freedesktop/NetworkManager/ActiveConnection/1
Mar 17 11:33:10 philip-ThinkPad-T450s NetworkManager[3894]: <info>  [1552822390.8740] dhcp6 (enp0s25): activation: beginning transaction (timeout in 45 seconds)
Mar 17 11:33:10 philip-ThinkPad-T450s NetworkManager[3894]: <info>  [1552822390.8857] dhcp6 (enp0s25): dhclient started with pid 4022
Mar 17 11:33:10 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:33:11 philip-ThinkPad-T450s NetworkManager[3894]: <info>  [1552822391.5019] dhcp (enp0s25):   domain search 'home.'
Mar 17 11:33:11 philip-ThinkPad-T450s NetworkManager[3894]: <info>  [1552822391.5019] dhcp6 (enp0s25): state changed unknown -> bound
Mar 17 11:33:11 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:33:11 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:33:11 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:33:11 philip-ThinkPad-T450s NetworkManager[3894]: <info>  [1552822391.5063] dhcp6 (enp0s25): client pid 4022 exited with status 0
Mar 17 11:33:11 philip-ThinkPad-T450s NetworkManager[3894]: <info>  [1552822391.5063] dhcp6 (enp0s25): state changed bound -> done
Mar 17 11:33:13 philip-ThinkPad-T450s NetworkManager[3894]: <info>  [1552822393.9944] policy: auto-activating connection 'BTHub6-853Q-5' (e0691ea6-a8b8-4546-b5b3-703e1af4eb81)
Mar 17 11:33:13 philip-ThinkPad-T450s NetworkManager[3894]: <info>  [1552822393.9951] device (wlp3s0): Activation: starting connection 'BTHub6-853Q-5' (e0691ea6-a8b8-4546-b5b3-703e1af4eb81)
Mar 17 11:33:13 philip-ThinkPad-T450s NetworkManager[3894]: <info>  [1552822393.9952] device (wlp3s0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Mar 17 11:33:13 philip-ThinkPad-T450s NetworkManager[3894]: <info>  [1552822393.9961] device (wlp3s0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Mar 17 11:33:13 philip-ThinkPad-T450s NetworkManager[3894]: <info>  [1552822393.9965] device (wlp3s0): Activation: (wifi) access point 'BTHub6-853Q-5' has security, but secrets are required.
Mar 17 11:33:13 philip-ThinkPad-T450s NetworkManager[3894]: <info>  [1552822393.9966] device (wlp3s0): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
Mar 17 11:33:13 philip-ThinkPad-T450s NetworkManager[3894]: <warn>  [1552822393.9979] device (wlp3s0): No agents were available for this request.
Mar 17 11:33:13 philip-ThinkPad-T450s NetworkManager[3894]: <info>  [1552822393.9979] device (wlp3s0): state change: need-auth -> failed (reason 'no-secrets', sys-iface-state: 'managed')
Mar 17 11:33:13 philip-ThinkPad-T450s NetworkManager[3894]: <info>  [1552822393.9983] manager: startup complete
Mar 17 11:33:13 philip-ThinkPad-T450s NetworkManager[3894]: <warn>  [1552822393.9986] device (wlp3s0): Activation: failed for connection 'BTHub6-853Q-5'
Mar 17 11:33:13 philip-ThinkPad-T450s NetworkManager[3894]: <info>  [1552822393.9990] device (wlp3s0): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Mar 17 11:33:13 philip-ThinkPad-T450s kernel: [ 1482.131026] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
Mar 17 11:33:14 philip-ThinkPad-T450s systemd[1]: Started Network Manager Wait Online.
Mar 17 11:34:00 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:34:00 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:34:56 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:34:56 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:35:42 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:35:42 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:36:37 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:36:37 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:37:14 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:37:14 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:38:02 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:38:02 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:38:54 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:38:54 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:39:45 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:39:45 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:40:39 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:40:39 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:41:11 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:41:11 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:41:59 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:41:59 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:42:36 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:42:36 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:43:22 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:43:22 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:44:14 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:44:14 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:45:01 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:45:01 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:45:33 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:45:33 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:46:27 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:46:27 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:47:18 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:47:18 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:48:15 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:48:15 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:49:10 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:49:10 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:49:45 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:49:45 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:50:42 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:50:42 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:51:28 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:51:28 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:52:02 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:52:02 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:52:39 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.
Mar 17 11:52:39 philip-ThinkPad-T450s acvpnagent[1308]: Function: CNetInterface File: ../../vpn/Common/Utility/NetInterface_unix.cpp Line: 188 Failed to load libnm library, features like TND may not work properly.

philip@philip-ThinkPad-T450s:~$ dmesg | egrep 'net|eth|sky|sun|sis|via|3c3|3c5|e100|8139|8169|acx|air|ath|atl|ar9|carl|atme|at7|herm|iwl|ipw|rtl8|r81|rt2|rt3|rt6|rt7|tg3|ssb|wl|b43|b44|ori|pri|p5|zd|ndis|wmi|ns8|FW|key|rtl|country'
[    0.000000] percpu: Embedded 46 pages/cpu @(____ptrval____) s151552 r8192 d28672 u262144
[    0.000000] pcpu-alloc: s151552 r8192 d28672 u262144 alloc=1*2097152
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.028169] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.028412] CPU0: Thermal monitoring enabled (TM1)
[    0.028431] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.036898] audit: initializing netlink subsys (disabled)
[    0.065042] No Local Variables are initialized for Method [_PDC]
[    0.065042] Initialized Arguments for Method [_PDC]:  (1 arguments defined for method invocation)
[    0.065042] ACPI Error: Method parse/execution failed \_PR.CPU0._PDC, AE_AML_OPERAND_TYPE (20180531/psparse-516)
[    0.079768] pci 0000:03:00.0: reg 0x10: [mem 0xe1000000-0xe1001fff 64bit]
[    0.084730] pci 0000:00:1c.1:   bridge window [mem 0xe1000000-0xe10fffff]
[    0.105656] pci 0000:00:1c.1:   bridge window [mem 0xe1000000-0xe10fffff]
[    0.105673] pci_bus 0000:03: resource 1 [mem 0xe1000000-0xe10fffff]
[    0.875119] Initialise system trusted keyrings
[    0.877947] Asymmetric key parser 'x509' registered
[    0.880948] thermal LNXTHERM:00: registered as thermal_zone0
[    0.880950] ACPI: Thermal Zone [THM0] (48 C)
[    0.970958] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    0.977267] Loaded X.509 cert 'Build time autogenerated kernel key: ceadf4a2169e91fa82b127879b63b6598e2fd515'
[    0.980195] Key type big_key registered
[    0.992091] ima: Allocated hash algorithm: sha1
[    1.116831] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    1.116832] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    1.117001] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    1.300711] e1000e 0000:00:19.0 0000:00:19.0 (uninitialized): registered PHC clock
[    1.362937] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 68:f7:28:51:45:b0
[    1.362939] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
[    1.362965] e1000e 0000:00:19.0 eth0: MAC: 11, PHY: 12, PBA No: 1000FF-0FF
[    1.363542] e1000e 0000:00:19.0 enp0s25: renamed from eth0
[    1.398230] fbcon: inteldrmfb (fb0) is primary device
[    4.145736] thinkpad_acpi: http://ibm-acpi.sf.net/
[    4.198872] iwlwifi 0000:03:00.0: loaded firmware version 29.1044073957.0 op_mode iwlmvm
[    4.236591] iwlwifi 0000:03:00.0: Detected Intel(R) Dual Band Wireless AC 7265, REV=0x210
[    4.257027] iwlwifi 0000:03:00.0: base HW address: 60:57:18:6e:33:b3
[    4.365390] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[    4.365644] thermal thermal_zone2: failed to read out thermal zone (-61)
[    4.578463] iwlwifi 0000:03:00.0 wlp3s0: renamed from wlan0
[    4.639319] Adding 25599996k swap on /dev/sda2.  Priority:-2 extents:1 across:25599996k SSFS
[    5.137927] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    5.827105] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[    5.981721] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[    6.083930] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[   11.874962] vboxdrv: module verification failed: signature and/or required key missing - tainting kernel
[   16.112448] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[   18.407459] kauditd_printk_skb: 14 callbacks suppressed
[  141.676403] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[  265.450270] e1000e: enp0s25 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[  270.111543] e1000e: enp0s25 NIC Link is Up 100 Mbps Half Duplex, Flow Control: None
[  270.111546] e1000e 0000:00:19.0 enp0s25: 10/100 speed: disabling TSO
[  346.878646] e1000e: enp0s25 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[  491.653760] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[  815.824685] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[  941.830562] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[  985.704580] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[ 1011.443887] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[ 1478.296473] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[ 1478.404268] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[ 1478.607469] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[ 1482.131026] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready