ubuntuusers.de

Probleme WLan-Verbindung

Autor:
peeter
Datum:
3. September 2017 11:56
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
nimo@nimo-MS-7091:~$ rfkill list 
0: hci0: Bluetooth
	Soft blocked: no
	Hard blocked: no
1: phy0: Wireless LAN
	Soft blocked: no
	Hard blocked: no


nimo@nimo-MS-7091:~$ lsmod
Module                  Size  Used by
nls_utf8               16384  1
isofs                  40960  1
arc4                   16384  2
isl6405                16384  1
dvb_pll                16384  1
tda10086               20480  1
bnep                   20480  2
rtl8xxxu              114688  0
rc_medion_x10_digitainer    16384  0
mac80211              700416  1 rtl8xxxu
ati_remote             20480  0
ndiswrapper           200704  0
cfg80211              532480  1 mac80211
ppdev                  20480  0
tda1004x               24576  1
saa7134_alsa           20480  2
saa7134_dvb            36864  0
videobuf2_dvb          16384  1 saa7134_dvb
dvb_core              106496  1 videobuf2_dvb
intel_powerclamp       16384  0
tuner_simple           24576  2
tuner_types            20480  1 tuner_simple
serio_raw              16384  0
tda9887                20480  1
tda8290                24576  0
tuner                  28672  2
snd_hda_codec_cmedia    16384  1
snd_hda_codec_generic    69632  1 snd_hda_codec_cmedia
snd_hda_intel          36864  3
snd_hda_codec         114688  3 snd_hda_intel,snd_hda_codec_cmedia,snd_hda_codec_generic
input_leds             16384  0
snd_hda_core           69632  3 snd_hda_intel,snd_hda_codec,snd_hda_codec_generic
saa7134               159744  2 saa7134_alsa,saa7134_dvb
snd_hwdep              16384  1 snd_hda_codec
snd_pcm                94208  4 snd_hda_intel,saa7134_alsa,snd_hda_codec,snd_hda_core
tveeprom               20480  1 saa7134
snd_seq_midi           16384  0
snd_seq_midi_event     16384  1 snd_seq_midi
rc_core                28672  4 saa7134,ati_remote,rc_medion_x10_digitainer
btusb                  36864  0
btrtl                  16384  1 btusb
btbcm                  16384  1 btusb
v4l2_common            16384  2 tuner,saa7134
btintel                16384  1 btusb
snd_rawmidi            28672  1 snd_seq_midi
bluetooth             495616  26 btrtl,btintel,bnep,btbcm,btusb
videobuf2_dma_sg       16384  2 saa7134,saa7134_dvb
videobuf2_memops       16384  1 videobuf2_dma_sg
videobuf2_v4l2         20480  2 saa7134,saa7134_dvb
videobuf2_core         40960  3 saa7134,videobuf2_dvb,videobuf2_v4l2
snd_seq                57344  2 snd_seq_midi_event,snd_seq_midi
lpc_ich                20480  0
videodev              155648  5 tuner,v4l2_common,saa7134,videobuf2_core,videobuf2_v4l2
snd_seq_device         16384  3 snd_seq,snd_rawmidi,snd_seq_midi
snd_timer              28672  2 snd_seq,snd_pcm
media                  32768  3 tuner,saa7134,videodev
snd                    65536  20 snd_hda_intel,saa7134_alsa,snd_hwdep,snd_seq,snd_hda_codec,snd_timer,snd_rawmidi,snd_hda_codec_generic,snd_seq_device,snd_pcm
parport_pc             32768  0
parport                45056  2 parport_pc,ppdev
soundcore              16384  1 snd
shpchp                 32768  0
mac_hid                16384  0
binfmt_misc            20480  1
autofs4                40960  2
uas                    20480  0
usb_storage            57344  1 uas
hid_generic            16384  0
usbhid                 49152  0
hid                    98304  2 hid_generic,usbhid
radeon               1478656  5
psmouse               122880  0
ahci                   36864  0
firewire_ohci          36864  0
libahci                32768  1 ahci
firewire_core          61440  1 firewire_ohci
r8169                  77824  0
pata_acpi              16384  0
via_rhine              32768  0
i2c_algo_bit           16384  1 radeon
ttm                    90112  1 radeon
drm_kms_helper        139264  1 radeon
crc_itu_t              16384  1 firewire_core
syscopyarea            16384  1 drm_kms_helper
mii                    16384  2 r8169,via_rhine
sysfillrect            16384  1 drm_kms_helper
sysimgblt              16384  1 drm_kms_helper
fb_sys_fops            16384  1 drm_kms_helper
floppy                 61440  0
fjes                   61440  0
drm                   303104  8 radeon,ttm,drm_kms_helper


nimo@nimo-MS-7091:~$ iwlist chan 
lo        no frequency information.

enp3s2    no frequency information.

enp3s6    no frequency information.

wlx000f002f4b2f  14 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 14 : 2.484 GHz


nimo@nimo-MS-7091:~$ sudo iwlist scan 
[sudo] Passwort für nimo: 
lo        Interface doesn't support scanning.

enp3s2    Interface doesn't support scanning.

enp3s6    Interface doesn't support scanning.

wlx000f002f4b2f  Scan completed :
          Cell 01 - Address: C8:14:51:18:44:D1
                    Channel:1
                    Frequency:2.412 GHz (Channel 1)
                    Quality=14/70  Signal level=-96 dBm  
                    Encryption key:on
                    ESSID:"WLAN-M7P44J"
                    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=0000004c9ee2f676
                    Extra: Last beacon: 1116ms ago
                    IE: Unknown: 000B574C414E2D4D375034344A
                    IE: Unknown: 010882848B962430486C
                    IE: Unknown: 030101
                    IE: Unknown: 050400010000
                    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: 0B0501002B0000
                    IE: Unknown: 2D1AAD0017FFFFFF0000000000000080017800000000000000000000
                    IE: Unknown: 3D1601080400000000000000000000000000000000000000
                    IE: Unknown: 4A0E14000A002C01C800140005001900
                    IE: Unknown: 7F080500000000000040
                    IE: Unknown: DD310050F204104A000110104400010210470010309F1B742A481A6699BF9A9F2B263BC5103C0001031049000600372A000120
                    IE: Unknown: DD090010180201101C0000
                    IE: Unknown: DD180050F2020101880003A4000027A4000042435E0062322F00
          Cell 02 - Address: C8:14:51:18:44:D2
                    Channel:1
                    Frequency:2.412 GHz (Channel 1)
                    Quality=18/70  Signal level=-92 dBm  
                    Encryption key:off
                    ESSID:"Telekom_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=0000004c9ee17006
                    Extra: Last beacon: 1216ms ago
                    IE: Unknown: 000B54656C656B6F6D5F464F4E
                    IE: Unknown: 010882848B962430486C
                    IE: Unknown: 030101
                    IE: Unknown: 050400010000
                    IE: Unknown: 2A0100
                    IE: Unknown: 32040C121860
                    IE: Unknown: 0B0500002B0000
                    IE: Unknown: 2D1AAD0017FFFFFF0000000000000080017800000000000000000000
                    IE: Unknown: 3D1601080400000000000000000000000000000000000000
                    IE: Unknown: 4A0E14000A002C01C800140005001900
                    IE: Unknown: 7F080500000000000040
                    IE: Unknown: DD090010180200101C0000
                    IE: Unknown: DD180050F2020101880003A4000027A4000042435E0062322F00
          Cell 03 - Address: D4:21:22:6A:01:FB
                    Channel:6
                    Frequency:2.437 GHz (Channel 6)
                    Quality=14/70  Signal level=-96 dBm  
                    Encryption key:on
                    ESSID:"WLAN-918765"
                    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=0000000da313a19e
                    Extra: Last beacon: 764ms ago
                    IE: Unknown: 000B574C414E2D393138373635
                    IE: Unknown: 010882848B962430486C
                    IE: Unknown: 030106
                    IE: Unknown: 050401020000
                    IE: Unknown: 0706444520010D14
                    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: 0B050300100000
                    IE: Unknown: 2D1ABC191BFFFF000000000000000000000000000000000000000000
                    IE: Unknown: 3D1606000400000000000000000000000000000000000000
                    IE: Unknown: 4A0E14000A002C01C800140005001900
                    IE: Unknown: 7F03010008
                    IE: Unknown: DD310050F204104A00011010440001021047001065773D0FDA3CE5BD8A636FF76DD30FE1103C0001031049000600372A000120
                    IE: Unknown: DD090010180203000C0000
                    IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
          Cell 04 - Address: A4:99:47:7C:1A:6D
                    Channel:11
                    Frequency:2.462 GHz (Channel 11)
                    Quality=16/70  Signal level=-94 dBm  
                    Encryption key:on
                    ESSID:"WLAN-BT4KMY"
                    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=0000005ca6b9c4dd
                    Extra: Last beacon: 280ms ago
                    IE: Unknown: 000B574C414E2D4254344B4D59
                    IE: Unknown: 010882848B962430486C
                    IE: Unknown: 03010B
                    IE: Unknown: 050400010000
                    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: 2D1AAC191BFFFF000000000000000000000000000000000000000000
                    IE: Unknown: 3D160B000400000000000000000000000000000000000000
                    IE: Unknown: 4A0E14000A002C01C800140005001900
                    IE: Unknown: 7F080500000000000040
                    IE: Unknown: DD310050F204104A000110104400010210470010DBD26D5F04A2727EB17B8875C60D2FDC103C0001031049000600372A000120
                    IE: Unknown: DD090010180202000C0000
                    IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
                    IE: Unknown: 46057200010000
          Cell 05 - Address: 24:00:BA:61:F5:2C
                    Channel:11
                    Frequency:2.462 GHz (Channel 11)
                    Quality=10/70  Signal level=-100 dBm  
                    Encryption key:on
                    ESSID:"WLAN-LZ6DV5"
                    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=000002a1e56e8186
                    Extra: Last beacon: 280ms ago
                    IE: Unknown: 000B574C414E2D4C5A36445635
                    IE: Unknown: 010882848B962430486C
                    IE: Unknown: 03010B
                    IE: Unknown: 050400010000
                    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: 2D1AAC191BFFFF000000000000000000000000000000000000000000
                    IE: Unknown: 3D160B000400000000000000000000000000000000000000
                    IE: Unknown: 4A0E14000A002C01C800140005001900
                    IE: Unknown: 7F080500000000000040
                    IE: Unknown: DD310050F204104A000110104400010210470010BF51D602A615F9286A1D53E0ADFCAFDB103C0001031049000600372A000120
                    IE: Unknown: DD090010180204000C0000
                    IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
                    IE: Unknown: 46057200010000
          Cell 06 - Address: B4:A5:EF:76:CF:BC
                    Channel:1
                    Frequency:2.412 GHz (Channel 1)
                    Quality=16/70  Signal level=-94 dBm  
                    Encryption key:on
                    ESSID:"EasyBox-180097"
                    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=0000002a37fd5187
                    Extra: Last beacon: 1116ms ago
                    IE: Unknown: 000E45617379426F782D313830303937
                    IE: Unknown: 010882848B962430486C
                    IE: Unknown: 030101
                    IE: Unknown: 050402030000
                    IE: Unknown: 2A0104
                    IE: Unknown: 32040C121860
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: Unknown: 2D1A3C081BFFFF000000000000000000000000000000000000000000
                    IE: Unknown: 3D1601080000000000000000000000000000000000000000
                    IE: Unknown: 7F080400000000000040
                    IE: Unknown: DD090010180202000C0000
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
          Cell 07 - Address: 24:00:BA:61:F5:2D
                    Channel:11
                    Frequency:2.462 GHz (Channel 11)
                    Quality=12/70  Signal level=-98 dBm  
                    Encryption key:off
                    ESSID:"Telekom_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=000002a1e569e4c6
                    Extra: Last beacon: 584ms ago
                    IE: Unknown: 000B54656C656B6F6D5F464F4E
                    IE: Unknown: 010882848B962430486C
                    IE: Unknown: 03010B
                    IE: Unknown: 050400010000
                    IE: Unknown: 2A0100
                    IE: Unknown: 2F0100
                    IE: Unknown: 32040C121860
                    IE: Unknown: 2D1AAC191BFFFF000000000000000000000000000000000000000000
                    IE: Unknown: 3D160B000400000000000000000000000000000000000000
                    IE: Unknown: 4A0E14000A002C01C800140005001900
                    IE: Unknown: 7F080500000000000040
                    IE: Unknown: DD090010180200000C0000
                    IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
                    IE: Unknown: 46057200010000
          Cell 08 - Address: 38:10:D5:F5:C1:EE
                    Channel:11
                    Frequency:2.462 GHz (Channel 11)
                    Quality=40/70  Signal level=-70 dBm  
                    Encryption key:on
                    ESSID:"FRITZ!Box 7412"
                    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=00000002e804c180
                    Extra: Last beacon: 468ms ago
                    IE: Unknown: 000E465249545A21426F782037343132
                    IE: Unknown: 010882848B968C129824
                    IE: Unknown: 03010B
                    IE: Unknown: 050400010000
                    IE: Unknown: 0706444520010D14
                    IE: Unknown: 2A0100
                    IE: Unknown: 3204B048606C
                    IE: Unknown: 2D1AAC011BFFFF000000000000000000000100000000000000000000
                    IE: Unknown: 3D160B080400000000000000000000000000000000000000
                    IE: Unknown: 7F080000000000000040
                    IE: Unknown: DD180050F2020101000003A4000027A4000042435E0062322F00
                    IE: Unknown: DD0900037F01010000FF7F
                    IE: Unknown: DD0C00040E010102010000000000
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (1) : TKIP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DD180050F204104A00011010440001021049000600372A000120


nimo@nimo-MS-7091:~$ egrep -i 'net|eth|wlan|firm|reason' /var/log/syslog 

ger: (enp3s2): new Ethernet device (/org/freedesktop/NetworkManager/Devices/1)
Sep  3 10:21:20 nimo-MS-7091 NetworkManager[738]: <info>  [1504426880.1787] device (enp3s2): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Sep  3 10:21:20 nimo-MS-7091 kernel: [   18.240003] IPv6: ADDRCONF(NETDEV_UP): enp3s2: link is not ready
Sep  3 10:21:20 nimo-MS-7091 kernel: [   18.256746] IPv6: ADDRCONF(NETDEV_UP): enp3s2: link is not ready
Sep  3 10:21:20 nimo-MS-7091 NetworkManager[738]: <info>  [1504426880.2013] manager: (enp3s6): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Sep  3 10:21:20 nimo-MS-7091 NetworkManager[738]: <info>  [1504426880.2046] device (enp3s6): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Sep  3 10:21:20 nimo-MS-7091 kernel: [   18.265249] IPv6: ADDRCONF(NETDEV_UP): enp3s6: link is not ready
Sep  3 10:21:20 nimo-MS-7091 kernel: [   18.265795] IPv6: ADDRCONF(NETDEV_UP): enp3s6: link is not ready
Sep  3 10:21:20 nimo-MS-7091 NetworkManager[738]: <info>  [1504426880.2273] rfkill1: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1:1.0/ieee80211/phy0/rfkill1) (driver rtl8xxxu)
Sep  3 10:21:20 nimo-MS-7091 NetworkManager[738]: <info>  [1504426880.2323] urfkill disappeared from the bus
Sep  3 10:21:20 nimo-MS-7091 NetworkManager[738]: <info>  [1504426880.2406] (wlx000f002f4b2f): using nl80211 for WiFi device control
Sep  3 10:21:20 nimo-MS-7091 NetworkManager[738]: <info>  [1504426880.2454] manager: (wlx000f002f4b2f): new 802.11 WiFi device (/org/freedesktop/NetworkManager/Devices/3)
Sep  3 10:21:20 nimo-MS-7091 NetworkManager[738]: <info>  [1504426880.2491] device (wlx000f002f4b2f): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Sep  3 10:21:20 nimo-MS-7091 kernel: [   18.310100] IPv6: ADDRCONF(NETDEV_UP): wlx000f002f4b2f: link is not ready
Sep  3 10:21:20 nimo-MS-7091 kernel: [   18.330381] IPv6: ADDRCONF(NETDEV_UP): wlx000f002f4b2f: link is not ready
Sep  3 10:21:20 nimo-MS-7091 NetworkManager[738]: <info>  [1504426880.2844] bluez: use BlueZ version 5
Sep  3 10:21:20 nimo-MS-7091 NetworkManager[738]: <info>  [1504426880.2920] ofono is now available
Sep  3 10:21:20 nimo-MS-7091 NetworkManager[738]: <warn>  [1504426880.2955] failed to enumerate oFono devices: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.ofono was not provided by any .service files
Sep  3 10:21:20 nimo-MS-7091 NetworkManager[738]: <info>  [1504426880.2970] ModemManager available in the bus
Sep  3 10:21:20 nimo-MS-7091 NetworkManager[738]: <info>  [1504426880.3945] supplicant: wpa_supplicant running
Sep  3 10:21:20 nimo-MS-7091 NetworkManager[738]: <info>  [1504426880.3946] device (wlx000f002f4b2f): supplicant interface state: init -> starting
Sep  3 10:21:20 nimo-MS-7091 NetworkManager[738]: <info>  [1504426880.4927] device (wlx000f002f4b2f): supplicant interface state: starting -> ready
Sep  3 10:21:20 nimo-MS-7091 NetworkManager[738]: <info>  [1504426880.4937] device (wlx000f002f4b2f): state change: unavailable -> disconnected (reason 'supplicant-available') [20 30 42]
Sep  3 10:21:20 nimo-MS-7091 kernel: [   18.554638] IPv6: ADDRCONF(NETDEV_UP): wlx000f002f4b2f: link is not ready
Sep  3 10:21:21 nimo-MS-7091 NetworkManager[738]: <info>  [1504426881.7045] device (wlx000f002f4b2f): supplicant interface state: ready -> inactive
Sep  3 10:21:25 nimo-MS-7091 NetworkManager[738]: <info>  [1504426885.9416] manager: startup complete
Sep  3 10:21:26 nimo-MS-7091 systemd[1]: Started Network Manager Wait Online.
Sep  3 10:21:26 nimo-MS-7091 systemd[1]: Reached target Network is Online.
Sep  3 10:21:29 nimo-MS-7091 NetworkManager[738]: <info>  [1504426889.9421] manager: WiFi hardware radio set enabled
Sep  3 10:21:29 nimo-MS-7091 NetworkManager[738]: <info>  [1504426889.9422] manager: WWAN hardware radio set enabled
Sep  3 11:07:42 nimo-MS-7091 NetworkManager[738]: <info>  [1504429662.6624] device (wlx000f002f4b2f): Activation: starting connection 'EasyBox-180097' (bbba98d4-c237-4e60-88b7-f5a13e4f62ab)
Sep  3 11:07:42 nimo-MS-7091 NetworkManager[738]: <info>  [1504429662.6630] audit: op="connection-activate" uuid="bbba98d4-c237-4e60-88b7-f5a13e4f62ab" name="EasyBox-180097" pid=958 uid=1000 result="success"
Sep  3 11:07:42 nimo-MS-7091 NetworkManager[738]: <info>  [1504429662.6634] device (wlx000f002f4b2f): state change: disconnected -> prepare (reason 'none') [30 40 0]
Sep  3 11:07:42 nimo-MS-7091 NetworkManager[738]: <info>  [1504429662.6639] manager: NetworkManager state is now CONNECTING
Sep  3 11:07:42 nimo-MS-7091 NetworkManager[738]: <info>  [1504429662.6732] device (wlx000f002f4b2f): state change: prepare -> config (reason 'none') [40 50 0]
Sep  3 11:07:42 nimo-MS-7091 NetworkManager[738]: <info>  [1504429662.6757] device (wlx000f002f4b2f): Activation: (wifi) access point 'EasyBox-180097' has security, but secrets are required.
Sep  3 11:07:42 nimo-MS-7091 NetworkManager[738]: <info>  [1504429662.6767] device (wlx000f002f4b2f): state change: config -> need-auth (reason 'none') [50 60 0]
Sep  3 11:07:42 nimo-MS-7091 NetworkManager[738]: <info>  [1504429662.7068] device (wlx000f002f4b2f): state change: need-auth -> prepare (reason 'none') [60 40 0]
Sep  3 11:07:42 nimo-MS-7091 NetworkManager[738]: <info>  [1504429662.7090] device (wlx000f002f4b2f): state change: prepare -> config (reason 'none') [40 50 0]
Sep  3 11:07:42 nimo-MS-7091 NetworkManager[738]: <info>  [1504429662.7104] device (wlx000f002f4b2f): Activation: (wifi) connection 'EasyBox-180097' has security, and secrets exist.  No new secrets needed.
Sep  3 11:07:42 nimo-MS-7091 NetworkManager[738]: <info>  [1504429662.7113] Config: added 'ssid' value 'EasyBox-180097'
Sep  3 11:07:42 nimo-MS-7091 NetworkManager[738]: <info>  [1504429662.7120] Config: added 'scan_ssid' value '1'
Sep  3 11:07:42 nimo-MS-7091 NetworkManager[738]: <info>  [1504429662.7128] Config: added 'key_mgmt' value 'WPA-PSK'
Sep  3 11:07:42 nimo-MS-7091 NetworkManager[738]: <info>  [1504429662.7134] Config: added 'psk' value '<omitted>'
Sep  3 11:07:42 nimo-MS-7091 NetworkManager[738]: <info>  [1504429662.7159] sup-iface[0x9bb6a00,wlx000f002f4b2f]: config: set interface ap_scan to 1
Sep  3 11:07:42 nimo-MS-7091 NetworkManager[738]: <info>  [1504429662.7602] device (wlx000f002f4b2f): supplicant interface state: inactive -> scanning
Sep  3 11:07:43 nimo-MS-7091 NetworkManager[738]: <info>  [1504429663.9517] device (wlx000f002f4b2f): supplicant interface state: scanning -> authenticating
Sep  3 11:07:44 nimo-MS-7091 NetworkManager[738]: <info>  [1504429664.5935] device (wlx000f002f4b2f): supplicant interface state: authenticating -> disconnected
Sep  3 11:07:44 nimo-MS-7091 NetworkManager[738]: <info>  [1504429664.6937] device (wlx000f002f4b2f): supplicant interface state: disconnected -> scanning
Sep  3 11:07:45 nimo-MS-7091 NetworkManager[738]: <info>  [1504429665.8773] device (wlx000f002f4b2f): supplicant interface state: scanning -> authenticating
Sep  3 11:07:46 nimo-MS-7091 NetworkManager[738]: <info>  [1504429666.5255] device (wlx000f002f4b2f): supplicant interface state: authenticating -> disconnected
Sep  3 11:07:47 nimo-MS-7091 NetworkManager[738]: <info>  [1504429667.0261] device (wlx000f002f4b2f): supplicant interface state: disconnected -> scanning
Sep  3 11:07:48 nimo-MS-7091 NetworkManager[738]: <info>  [1504429668.2275] device (wlx000f002f4b2f): supplicant interface state: scanning -> authenticating
Sep  3 11:07:48 nimo-MS-7091 NetworkManager[738]: <info>  [1504429668.8654] device (wlx000f002f4b2f): supplicant interface state: authenticating -> disconnected
Sep  3 11:07:49 nimo-MS-7091 NetworkManager[738]: <info>  [1504429669.8667] device (wlx000f002f4b2f): supplicant interface state: disconnected -> scanning
Sep  3 11:07:51 nimo-MS-7091 NetworkManager[738]: <info>  [1504429671.0570] device (wlx000f002f4b2f): supplicant interface state: scanning -> authenticating
Sep  3 11:07:51 nimo-MS-7091 wpa_supplicant[827]: wlx000f002f4b2f: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="EasyBox-180097" auth_failures=1 duration=10 reason=CONN_FAILED
Sep  3 11:07:51 nimo-MS-7091 NetworkManager[738]: <info>  [1504429671.6976] device (wlx000f002f4b2f): supplicant interface state: authenticating -> disconnected
Sep  3 11:07:56 nimo-MS-7091 NetworkManager[738]: <info>  [1504429676.6982] device (wlx000f002f4b2f): supplicant interface state: disconnected -> scanning
Sep  3 11:08:04 nimo-MS-7091 NetworkManager[738]: <info>  [1504429684.0650] device (wlx000f002f4b2f): supplicant interface state: scanning -> authenticating
Sep  3 11:08:04 nimo-MS-7091 wpa_supplicant[827]: wlx000f002f4b2f: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="EasyBox-180097" auth_failures=2 duration=20 reason=CONN_FAILED
Sep  3 11:08:04 nimo-MS-7091 NetworkManager[738]: <info>  [1504429684.7016] device (wlx000f002f4b2f): supplicant interface state: authenticating -> disconnected
Sep  3 11:08:07 nimo-MS-7091 NetworkManager[738]: <warn>  [1504429687.9421] device (wlx000f002f4b2f): Activation: (wifi) association took too long, failing activation
Sep  3 11:08:07 nimo-MS-7091 NetworkManager[738]: <info>  [1504429687.9422] device (wlx000f002f4b2f): state change: config -> failed (reason 'ssid-not-found') [50 120 53]
Sep  3 11:08:07 nimo-MS-7091 NetworkManager[738]: <info>  [1504429687.9427] manager: NetworkManager state is now DISCONNECTED
Sep  3 11:08:07 nimo-MS-7091 NetworkManager[738]: <warn>  [1504429687.9445] device (wlx000f002f4b2f): Activation: failed for connection 'EasyBox-180097'
Sep  3 11:08:07 nimo-MS-7091 NetworkManager[738]: <info>  [1504429687.9466] device (wlx000f002f4b2f): state change: failed -> disconnected (reason 'none') [120 30 0]
Sep  3 11:08:07 nimo-MS-7091 kernel: [ 2826.007727] IPv6: ADDRCONF(NETDEV_UP): wlx000f002f4b2f: link is not ready
Sep  3 11:08:09 nimo-MS-7091 NetworkManager[738]: <info>  [1504429689.1388] device (wlx000f002f4b2f): supplicant interface state: disconnected -> inactive
Sep  3 11:21:37 nimo-MS-7091 NetworkManager[738]: <info>  [1504430497.2331] keyfile: add connection in-memory (04ff3872-077c-45fe-9005-0b05a91b35a6,"HUAWEI Y625_7634")
Sep  3 11:21:37 nimo-MS-7091 NetworkManager[738]: <info>  [1504430497.2376] device (wlx000f002f4b2f): Activation: starting connection 'HUAWEI Y625_7634' (04ff3872-077c-45fe-9005-0b05a91b35a6)
Sep  3 11:21:37 nimo-MS-7091 NetworkManager[738]: <info>  [1504430497.2520] keyfile: update /etc/NetworkManager/system-connections/HUAWEI Y625_7634 (04ff3872-077c-45fe-9005-0b05a91b35a6,"HUAWEI Y625_7634") and persist connection
Sep  3 11:21:37 nimo-MS-7091 NetworkManager[738]: <info>  [1504430497.2524] audit: op="connection-add-activate" uuid="04ff3872-077c-45fe-9005-0b05a91b35a6" name="HUAWEI Y625_7634" pid=958 uid=1000 result="success"
Sep  3 11:21:37 nimo-MS-7091 NetworkManager[738]: <info>  [1504430497.2570] device (wlx000f002f4b2f): state change: disconnected -> prepare (reason 'none') [30 40 0]
Sep  3 11:21:37 nimo-MS-7091 NetworkManager[738]: <info>  [1504430497.2585] manager: NetworkManager state is now CONNECTING
Sep  3 11:21:37 nimo-MS-7091 NetworkManager[738]: <info>  [1504430497.2631] device (wlx000f002f4b2f): state change: prepare -> config (reason 'none') [40 50 0]
Sep  3 11:21:37 nimo-MS-7091 NetworkManager[738]: <info>  [1504430497.2648] device (wlx000f002f4b2f): Activation: (wifi) access point 'HUAWEI Y625_7634' has security, but secrets are required.
Sep  3 11:21:37 nimo-MS-7091 NetworkManager[738]: <info>  [1504430497.2657] device (wlx000f002f4b2f): state change: config -> need-auth (reason 'none') [50 60 0]
Sep  3 11:21:47 nimo-MS-7091 NetworkManager[738]: <info>  [1504430507.0312] keyfile: update /etc/NetworkManager/system-connections/HUAWEI Y625_7634 (04ff3872-077c-45fe-9005-0b05a91b35a6,"HUAWEI Y625_7634")
Sep  3 11:21:47 nimo-MS-7091 NetworkManager[738]: <info>  [1504430507.0377] device (wlx000f002f4b2f): state change: need-auth -> prepare (reason 'none') [60 40 0]
Sep  3 11:21:47 nimo-MS-7091 NetworkManager[738]: <info>  [1504430507.0420] device (wlx000f002f4b2f): state change: prepare -> config (reason 'none') [40 50 0]
Sep  3 11:21:47 nimo-MS-7091 NetworkManager[738]: <info>  [1504430507.0448] device (wlx000f002f4b2f): Activation: (wifi) connection 'HUAWEI Y625_7634' has security, and secrets exist.  No new secrets needed.
Sep  3 11:21:47 nimo-MS-7091 NetworkManager[738]: <info>  [1504430507.0456] Config: added 'ssid' value 'HUAWEI Y625_7634'
Sep  3 11:21:47 nimo-MS-7091 NetworkManager[738]: <info>  [1504430507.0456] Config: added 'scan_ssid' value '1'
Sep  3 11:21:47 nimo-MS-7091 NetworkManager[738]: <info>  [1504430507.0457] Config: added 'key_mgmt' value 'WPA-PSK'
Sep  3 11:21:47 nimo-MS-7091 NetworkManager[738]: <info>  [1504430507.0458] Config: added 'auth_alg' value 'OPEN'
Sep  3 11:21:47 nimo-MS-7091 NetworkManager[738]: <info>  [1504430507.0458] Config: added 'psk' value '<omitted>'
Sep  3 11:21:47 nimo-MS-7091 NetworkManager[738]: <info>  [1504430507.0511] sup-iface[0x9bb6a00,wlx000f002f4b2f]: config: set interface ap_scan to 1
Sep  3 11:21:47 nimo-MS-7091 NetworkManager[738]: <info>  [1504430507.1006] device (wlx000f002f4b2f): supplicant interface state: inactive -> scanning
Sep  3 11:22:11 nimo-MS-7091 NetworkManager[738]: <warn>  [1504430531.9416] device (wlx000f002f4b2f): Activation: (wifi) association took too long, failing activation
Sep  3 11:22:11 nimo-MS-7091 NetworkManager[738]: <info>  [1504430531.9417] device (wlx000f002f4b2f): state change: config -> failed (reason 'ssid-not-found') [50 120 53]
Sep  3 11:22:11 nimo-MS-7091 NetworkManager[738]: <info>  [1504430531.9423] manager: NetworkManager state is now DISCONNECTED
Sep  3 11:22:11 nimo-MS-7091 NetworkManager[738]: <warn>  [1504430531.9442] device (wlx000f002f4b2f): Activation: failed for connection 'HUAWEI Y625_7634'
Sep  3 11:22:11 nimo-MS-7091 NetworkManager[738]: <info>  [1504430531.9963] device (wlx000f002f4b2f): supplicant interface state: scanning -> disconnected
Sep  3 11:22:12 nimo-MS-7091 NetworkManager[738]: <info>  [1504430532.0075] device (wlx000f002f4b2f): state change: failed -> disconnected (reason 'none') [120 30 0]
Sep  3 11:22:12 nimo-MS-7091 kernel: [ 3670.068161] IPv6: ADDRCONF(NETDEV_UP): wlx000f002f4b2f: link is not ready
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.5705] device (enp3s6): link connected
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.5721] device (enp3s6): state change: unavailable -> disconnected (reason 'carrier-changed') [20 30 40]
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.5740] policy: auto-activating connection 'Kabelnetzwerkverbindung 3'
Sep  3 11:23:54 nimo-MS-7091 kernel: [ 3772.629971] IPv6: ADDRCONF(NETDEV_CHANGE): enp3s6: link becomes ready
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.5805] device (enp3s6): Activation: starting connection 'Kabelnetzwerkverbindung 3' (781d8f5e-83b5-4946-bdee-ddd0fa906b61)
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.5922] device (enp3s6): state change: disconnected -> prepare (reason 'none') [30 40 0]
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.5928] manager: NetworkManager state is now CONNECTING
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.5944] device (enp3s6): state change: prepare -> config (reason 'none') [40 50 0]
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.5958] device (enp3s6): state change: config -> ip-config (reason 'none') [50 70 0]
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.6086] dhcp4 (enp3s6): activation: beginning transaction (timeout in 45 seconds)
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.6151] dhcp4 (enp3s6): dhclient started with pid 1926
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.7274]   address 192.168.2.120
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.7275]   plen 24 (255.255.255.0)
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.7276]   gateway 192.168.2.1
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.7276]   server identifier 192.168.2.1
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.7279]   lease time 31536000
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.7280]   hostname 'nimo-MS-7091'
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.7280]   nameserver '192.168.2.1'
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.7281]   domain name 'local'
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.7282] dhcp4 (enp3s6): state changed unknown -> bound
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.7384] device (enp3s6): state change: ip-config -> ip-check (reason 'none') [70 80 0]
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.7444] device (enp3s6): state change: ip-check -> secondaries (reason 'none') [80 90 0]
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.7492] device (enp3s6): state change: secondaries -> activated (reason 'none') [90 100 0]
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.7501] manager: NetworkManager state is now CONNECTED_LOCAL
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.8178] manager: NetworkManager state is now CONNECTED_GLOBAL
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.8182] policy: set 'Kabelnetzwerkverbindung 3' (enp3s6) as default for IPv4 routing and DNS
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.8213] dns-plugin[0x9bb2cd8]: starting dnsmasq...
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.8288] dns-mgr: Writing DNS information to /sbin/resolvconf
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.9088] device (enp3s6): Activation: successful, device activated.
Sep  3 11:23:54 nimo-MS-7091 systemd[1]: Starting Network Manager Script Dispatcher Service...
Sep  3 11:23:54 nimo-MS-7091 NetworkManager[738]: <info>  [1504430634.9366] dnsmasq[0x9bb2cd8]: dnsmasq appeared as :1.42
Sep  3 11:23:54 nimo-MS-7091 whoopsie[976]: [11:23:54] The default IPv4 route is: /org/freedesktop/NetworkManager/ActiveConnection/2
Sep  3 11:23:54 nimo-MS-7091 whoopsie[976]: [11:23:54] Not a paid data plan: /org/freedesktop/NetworkManager/ActiveConnection/2
Sep  3 11:23:54 nimo-MS-7091 whoopsie[976]: [11:23:54] Found usable connection: /org/freedesktop/NetworkManager/ActiveConnection/2
Sep  3 11:23:54 nimo-MS-7091 systemd[1]: Started Network Manager Script Dispatcher Service.
Sep  3 11:26:34 nimo-MS-7091 systemd[1]: Starting Raise network interfaces...
Sep  3 11:26:34 nimo-MS-7091 systemd[1]: Started Raise network interfaces.
Sep  3 11:26:34 nimo-MS-7091 kernel: [    0.000000]   Transmeta GenuineTMx86
Sep  3 11:26:34 nimo-MS-7091 systemd[1]: Starting Network Manager...
Sep  3 11:26:34 nimo-MS-7091 kernel: [    0.080000] Performance Events: Netburst events, Netburst P4/Xeon PMU driver.
Sep  3 11:26:34 nimo-MS-7091 kernel: [    0.093163] NET: Registered protocol family 16
Sep  3 11:26:34 nimo-MS-7091 kernel: [    0.145217] acpi PNP0A03:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-00] only partially covers this bridge
Sep  3 11:26:34 nimo-MS-7091 kernel: [    0.153956] NetLabel: Initializing
Sep  3 11:26:34 nimo-MS-7091 kernel: [    0.153956] NetLabel:  domain hash size = 128
Sep  3 11:26:34 nimo-MS-7091 kernel: [    0.153956] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Sep  3 11:26:34 nimo-MS-7091 kernel: [    0.153956] NetLabel:  unlabeled traffic allowed by default
Sep  3 11:26:34 nimo-MS-7091 kernel: [    0.215180] NET: Registered protocol family 2
Sep  3 11:26:34 nimo-MS-7091 kernel: [    0.215616] NET: Registered protocol family 1
Sep  3 11:26:34 nimo-MS-7091 kernel: [    1.232586] audit: initializing netlink subsys (disabled)
Sep  3 11:26:34 nimo-MS-7091 kernel: [    1.423729] NET: Registered protocol family 10
Sep  3 11:26:34 nimo-MS-7091 kernel: [    1.432955] NET: Registered protocol family 17
Sep  3 11:26:34 nimo-MS-7091 kernel: [    1.834586] FUJITSU Extended Socket Network Device Driver - version 1.2 - Copyright (c) 2015 FUJITSU LIMITED
Sep  3 11:26:34 nimo-MS-7091 kernel: [    1.947405] via-rhine 0000:03:06.0 eth0: VIA Rhine III at 0xf8527000, 00:11:09:f2:0c:25, IRQ 18
Sep  3 11:26:34 nimo-MS-7091 kernel: [    1.948183] via-rhine 0000:03:06.0 eth0: MII PHY found at address 1, status 0x786d advertising 05e1 Link cde1
Sep  3 11:26:34 nimo-MS-7091 kernel: [    1.953721] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
Sep  3 11:26:34 nimo-MS-7091 kernel: [    1.953972] r8169 0000:03:02.0 (unnamed net_device) (uninitialized): not PCI Express
Sep  3 11:26:34 nimo-MS-7091 kernel: [    1.954486] r8169 0000:03:02.0 eth1: RTL8110s at 0xf8550000, 00:11:6b:35:53:d6, XID 04000000 IRQ 18
Sep  3 11:26:34 nimo-MS-7091 kernel: [    1.954490] r8169 0000:03:02.0 eth1: jumbo features [frames: 7152 bytes, tx checksumming: ok]
Sep  3 11:26:34 nimo-MS-7091 kernel: [    2.150770] via-rhine 0000:03:06.0 enp3s6: renamed from eth0
Sep  3 11:26:34 nimo-MS-7091 kernel: [    2.160113] r8169 0000:03:02.0 enp3s2: renamed from eth1
Sep  3 11:26:34 nimo-MS-7091 kernel: [    4.099334] usb 1-6.1: Product: 802.11g WLAN
Sep  3 11:26:34 nimo-MS-7091 kernel: [   18.125672] audit: type=1400 audit(1504430792.056:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=431 comm="apparmor_parser"
Sep  3 11:26:34 nimo-MS-7091 kernel: [   18.125675] audit: type=1400 audit(1504430792.056:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=431 comm="apparmor_parser"
Sep  3 11:26:34 nimo-MS-7091 kernel: [   18.788535] NET: Registered protocol family 31
Sep  3 11:26:34 nimo-MS-7091 kernel: [   20.383310] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Sep  3 11:26:34 nimo-MS-7091 kernel: [   20.574937] usb 1-1: rtl8xxxu: Loading firmware rtlwifi/rtl8192eu_nic.bin
Sep  3 11:26:35 nimo-MS-7091 kernel: [   21.634366] usb 1-1: Firmware revision 19.0 (signature 0x92e1)
Sep  3 11:26:35 nimo-MS-7091 kernel: [   21.992040] tda1004x: found firmware revision 26 -- ok
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.0913] NetworkManager (version 1.2.6) is starting...
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.0915] Read config: /etc/NetworkManager/NetworkManager.conf (etc: default-wifi-powersave-on.conf)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.1200] manager[0xa3a9130]: monitoring kernel firmware directory '/lib/firmware'.
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.1201] monitoring ifupdown state file '/run/network/ifstate'.
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.1492] dns-mgr[0xa39b0b0]: init: dns=dnsmasq, rc-manager=resolvconf, plugin=dnsmasq
Sep  3 11:26:36 nimo-MS-7091 systemd[1]: Started Network Manager.
Sep  3 11:26:36 nimo-MS-7091 systemd[1]: Starting Network Manager Wait Online...
Sep  3 11:26:36 nimo-MS-7091 systemd[1]: Reached target Network.
Sep  3 11:26:36 nimo-MS-7091 systemd[1]: Starting Network Manager Script Dispatcher Service...
Sep  3 11:26:36 nimo-MS-7091 systemd[1]: Started Network Manager Script Dispatcher Service.
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.3700] init!
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.3705] management mode: unmanaged
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.3720] devices added (path: /sys/devices/pci0000:00/0000:00:1e.0/0000:03:02.0/net/enp3s2, iface: enp3s2)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.3720] device added (path: /sys/devices/pci0000:00/0000:00:1e.0/0000:03:02.0/net/enp3s2, iface: enp3s2): no ifupdown configuration found.
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.3721] devices added (path: /sys/devices/pci0000:00/0000:00:1e.0/0000:03:06.0/net/enp3s6, iface: enp3s6)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.3722] device added (path: /sys/devices/pci0000:00/0000:00:1e.0/0000:03:06.0/net/enp3s6, iface: enp3s6): no ifupdown configuration found.
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.3722] devices added (path: /sys/devices/virtual/net/lo, iface: lo)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.3723] device added (path: /sys/devices/virtual/net/lo, iface: lo): no ifupdown configuration found.
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.3723] end _init.
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.3724] settings: loaded plugin ifupdown: (C) 2008 Canonical Ltd.  To report bugs please use the NetworkManager mailing list. (/usr/lib/i386-linux-gnu/NetworkManager/libnm-settings-plugin-ifupdown.so)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.3725] settings: loaded plugin keyfile: (c) 2007 - 2015 Red Hat, Inc.  To report bugs please use the NetworkManager mailing list.
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.3731] SettingsPlugin-Ofono: init!
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <warn>  [1504430796.3732] SettingsPlugin-Ofono: file doesn't exist: /var/lib/ofono
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.3733] SettingsPlugin-Ofono: end _init.
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.3734] settings: loaded plugin ofono: (C) 2013-2016 Canonical Ltd.  To report bugs please use the NetworkManager mailing list. (/usr/lib/i386-linux-gnu/NetworkManager/libnm-settings-plugin-ofono.so)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.3734] (171689776) ... get_connections.
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.3735] (171689776) ... get_connections (managed=false): return empty list.
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.4451] keyfile: new connection /etc/NetworkManager/system-connections/HUAWEI Y625_7634 (04ff3872-077c-45fe-9005-0b05a91b35a6,"HUAWEI Y625_7634")
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5044] keyfile: new connection /etc/NetworkManager/system-connections/EasyBox-180097 (bbba98d4-c237-4e60-88b7-f5a13e4f62ab,"EasyBox-180097")
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5674] keyfile: new connection /etc/NetworkManager/system-connections/Kabelnetzwerkverbindung 3 (781d8f5e-83b5-4946-bdee-ddd0fa906b61,"Kabelnetzwerkverbindung 3")
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5696] SettingsPlugin-Ofono: (171689896) ... get_connections.
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5697] SettingsPlugin-Ofono: (171689896) connections count: 0
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5700] get unmanaged devices count: 0
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5787] settings: hostname: using hostnamed
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5794] settings: hostname changed from (none) to "nimo-MS-7091"
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5835] Using DHCP client 'dhclient'
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5844] manager: WiFi enabled by radio killswitch; enabled by state file
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5852] manager: WWAN enabled by radio killswitch; enabled by state file
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5859] manager: Networking is enabled by state file
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5872] Loaded device plugin: NMVxlanFactory (internal)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5873] Loaded device plugin: NMVlanFactory (internal)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5874] Loaded device plugin: NMVethFactory (internal)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5875] Loaded device plugin: NMTunFactory (internal)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5876] Loaded device plugin: NMMacvlanFactory (internal)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5877] Loaded device plugin: NMIPTunnelFactory (internal)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5878] Loaded device plugin: NMInfinibandFactory (internal)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5879] Loaded device plugin: NMEthernetFactory (internal)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5880] Loaded device plugin: NMBridgeFactory (internal)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5881] Loaded device plugin: NMBondFactory (internal)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5892] Loaded device plugin: NMAtmManager (/usr/lib/i386-linux-gnu/NetworkManager/libnm-device-plugin-adsl.so)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5902] Loaded device plugin: NMWifiFactory (/usr/lib/i386-linux-gnu/NetworkManager/libnm-device-plugin-wifi.so)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.5925] Loaded device plugin: NMWwanFactory (/usr/lib/i386-linux-gnu/NetworkManager/libnm-device-plugin-wwan.so)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.6354] Loaded device plugin: NMBluezManager (/usr/lib/i386-linux-gnu/NetworkManager/libnm-device-plugin-bluetooth.so)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: nm_device_get_device_type: assertion 'NM_IS_DEVICE (self)' failed
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.6577] device (lo): link connected
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.6613] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/0)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.6762] manager: (enp3s6): new Ethernet device (/org/freedesktop/NetworkManager/Devices/1)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.6814] device (enp3s6): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.6837] device (enp3s6): link connected
Sep  3 11:26:36 nimo-MS-7091 kernel: [   22.748868] IPv6: ADDRCONF(NETDEV_UP): enp3s6: link is not ready
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.6895] manager: (enp3s2): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.6945] device (enp3s2): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Sep  3 11:26:36 nimo-MS-7091 kernel: [   22.761631] IPv6: ADDRCONF(NETDEV_UP): enp3s2: link is not ready
Sep  3 11:26:36 nimo-MS-7091 kernel: [   22.776774] IPv6: ADDRCONF(NETDEV_UP): enp3s2: link is not ready
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.7411] urfkill disappeared from the bus
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.7558] bluez: use BlueZ version 5
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.7582] device (enp3s6): state change: unavailable -> disconnected (reason 'none') [20 30 0]
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.7610] policy: auto-activating connection 'Kabelnetzwerkverbindung 3'
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.7677] device (enp3s6): Activation: starting connection 'Kabelnetzwerkverbindung 3' (781d8f5e-83b5-4946-bdee-ddd0fa906b61)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.7697] device (enp3s6): state change: disconnected -> prepare (reason 'none') [30 40 0]
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.7823] manager: NetworkManager state is now CONNECTING
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.7840] ofono is now available
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.7860] ModemManager available in the bus
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.7875] device (enp3s6): state change: prepare -> config (reason 'none') [40 50 0]
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <warn>  [1504430796.7900] failed to enumerate oFono devices: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.ofono was not provided by any .service files
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.7926] device (enp3s6): state change: config -> ip-config (reason 'none') [50 70 0]
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.8073] dhcp4 (enp3s6): activation: beginning transaction (timeout in 45 seconds)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.9038] dhcp4 (enp3s6): dhclient started with pid 834
Sep  3 11:26:36 nimo-MS-7091 kernel: [   22.968536] rtl8xxxu 1-1:1.0 wlx000f002f4b2f: renamed from wlan0
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.9207] rfkill1: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1:1.0/ieee80211/phy0/rfkill1) (driver rtl8xxxu)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.9238] (wlx000f002f4b2f): using nl80211 for WiFi device control
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.9297] manager: (wlx000f002f4b2f): new 802.11 WiFi device (/org/freedesktop/NetworkManager/Devices/3)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.9568] devices added (path: /sys/devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1:1.0/net/wlx000f002f4b2f, iface: wlx000f002f4b2f)
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.9576] device added (path: /sys/devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1:1.0/net/wlx000f002f4b2f, iface: wlx000f002f4b2f): no ifupdown configuration found.
Sep  3 11:26:36 nimo-MS-7091 NetworkManager[703]: <info>  [1504430796.9646] device (wlx000f002f4b2f): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Sep  3 11:26:36 nimo-MS-7091 kernel: [   23.031530] IPv6: ADDRCONF(NETDEV_UP): wlx000f002f4b2f: link is not ready
Sep  3 11:26:36 nimo-MS-7091 kernel: [   23.047613] IPv6: ADDRCONF(NETDEV_UP): wlx000f002f4b2f: link is not ready
Sep  3 11:26:37 nimo-MS-7091 NetworkManager[703]: <info>  [1504430797.0176] supplicant: wpa_supplicant running
Sep  3 11:26:37 nimo-MS-7091 NetworkManager[703]: <info>  [1504430797.0185] device (wlx000f002f4b2f): supplicant interface state: init -> starting
Sep  3 11:26:37 nimo-MS-7091 NetworkManager[703]: <info>  [1504430797.0916]   address 192.168.2.120
Sep  3 11:26:37 nimo-MS-7091 NetworkManager[703]: <info>  [1504430797.0923]   plen 24 (255.255.255.0)
Sep  3 11:26:37 nimo-MS-7091 NetworkManager[703]: <info>  [1504430797.0929]   gateway 192.168.2.1
Sep  3 11:26:37 nimo-MS-7091 NetworkManager[703]: <info>  [1504430797.0935]   server identifier 192.168.2.1
Sep  3 11:26:37 nimo-MS-7091 NetworkManager[703]: <info>  [1504430797.0941]   lease time 31536000
Sep  3 11:26:37 nimo-MS-7091 NetworkManager[703]: <info>  [1504430797.0947]   hostname 'nimo-MS-7091'
Sep  3 11:26:37 nimo-MS-7091 NetworkManager[703]: <info>  [1504430797.0969]   nameserver '192.168.2.1'
Sep  3 11:26:37 nimo-MS-7091 NetworkManager[703]: <info>  [1504430797.1023]   domain name 'local'
Sep  3 11:26:37 nimo-MS-7091 NetworkManager[703]: <info>  [1504430797.1024] dhcp4 (enp3s6): state changed unknown -> bound
Sep  3 11:26:37 nimo-MS-7091 NetworkManager[703]: <info>  [1504430797.1065] device (enp3s6): state change: ip-config -> ip-check (reason 'none') [70 80 0]
Sep  3 11:26:37 nimo-MS-7091 NetworkManager[703]: <info>  [1504430797.1258] device (enp3s6): state change: ip-check -> secondaries (reason 'none') [80 90 0]
Sep  3 11:26:37 nimo-MS-7091 NetworkManager[703]: <info>  [1504430797.1316] device (enp3s6): state change: secondaries -> activated (reason 'none') [90 100 0]
Sep  3 11:26:37 nimo-MS-7091 NetworkManager[703]: <info>  [1504430797.1330] manager: NetworkManager state is now CONNECTED_LOCAL
Sep  3 11:26:37 nimo-MS-7091 NetworkManager[703]: <info>  [1504430797.2019] manager: NetworkManager state is now CONNECTED_GLOBAL
Sep  3 11:26:37 nimo-MS-7091 NetworkManager[703]: <info>  [1504430797.2024] policy: set 'Kabelnetzwerkverbindung 3' (enp3s6) as default for IPv4 routing and DNS
Sep  3 11:26:37 nimo-MS-7091 NetworkManager[703]: <info>  [1504430797.2049] dns-plugin[0xa3adc30]: starting dnsmasq...
Sep  3 11:26:37 nimo-MS-7091 NetworkManager[703]: <info>  [1504430797.2126] dns-mgr: Writing DNS information to /sbin/resolvconf
Sep  3 11:26:37 nimo-MS-7091 NetworkManager[703]: <info>  [1504430797.2962] device (enp3s6): Activation: successful, device activated.
Sep  3 11:26:37 nimo-MS-7091 NetworkManager[703]: <info>  [1504430797.3250] dnsmasq[0xa3adc30]: dnsmasq appeared as :1.14
Sep  3 11:26:37 nimo-MS-7091 NetworkManager[703]: <info>  [1504430797.3361] device (wlx000f002f4b2f): supplicant interface state: starting -> ready
Sep  3 11:26:37 nimo-MS-7091 NetworkManager[703]: <info>  [1504430797.3391] device (wlx000f002f4b2f): state change: unavailable -> disconnected (reason 'supplicant-available') [20 30 42]
Sep  3 11:26:37 nimo-MS-7091 kernel: [   23.406514] IPv6: ADDRCONF(NETDEV_UP): wlx000f002f4b2f: link is not ready
Sep  3 11:26:38 nimo-MS-7091 NetworkManager[703]: <info>  [1504430798.5706] device (wlx000f002f4b2f): supplicant interface state: ready -> inactive
Sep  3 11:26:41 nimo-MS-7091 NetworkManager[703]: <info>  [1504430801.9351] manager: startup complete
Sep  3 11:26:41 nimo-MS-7091 systemd[1]: Started Network Manager Wait Online.
Sep  3 11:26:41 nimo-MS-7091 systemd[1]: Reached target Network is Online.
Sep  3 11:26:43 nimo-MS-7091 whoopsie[1033]: [11:26:43] The default IPv4 route is: /org/freedesktop/NetworkManager/ActiveConnection/0
Sep  3 11:26:43 nimo-MS-7091 whoopsie[1033]: [11:26:43] Not a paid data plan: /org/freedesktop/NetworkManager/ActiveConnection/0
Sep  3 11:26:43 nimo-MS-7091 whoopsie[1033]: [11:26:43] Found usable connection: /org/freedesktop/NetworkManager/ActiveConnection/0
Sep  3 11:26:45 nimo-MS-7091 NetworkManager[703]: <info>  [1504430805.9349] manager: WiFi hardware radio set enabled
Sep  3 11:26:45 nimo-MS-7091 NetworkManager[703]: <info>  [1504430805.9350] manager: WWAN hardware radio set enabled
Sep  3 11:28:42 nimo-MS-7091 NetworkManager[703]: <info>  [1504430922.3002] device (wlx000f002f4b2f): Activation: starting connection 'EasyBox-180097' (bbba98d4-c237-4e60-88b7-f5a13e4f62ab)
Sep  3 11:28:42 nimo-MS-7091 NetworkManager[703]: <info>  [1504430922.3006] audit: op="connection-activate" uuid="bbba98d4-c237-4e60-88b7-f5a13e4f62ab" name="EasyBox-180097" pid=1023 uid=1000 result="success"
Sep  3 11:28:42 nimo-MS-7091 NetworkManager[703]: <info>  [1504430922.3011] device (wlx000f002f4b2f): state change: disconnected -> prepare (reason 'none') [30 40 0]
Sep  3 11:28:42 nimo-MS-7091 NetworkManager[703]: <info>  [1504430922.3049] device (wlx000f002f4b2f): state change: prepare -> config (reason 'none') [40 50 0]
Sep  3 11:28:42 nimo-MS-7091 NetworkManager[703]: <info>  [1504430922.3066] device (wlx000f002f4b2f): Activation: (wifi) access point 'EasyBox-180097' has security, but secrets are required.
Sep  3 11:28:42 nimo-MS-7091 NetworkManager[703]: <info>  [1504430922.3074] device (wlx000f002f4b2f): state change: config -> need-auth (reason 'none') [50 60 0]
Sep  3 11:28:42 nimo-MS-7091 NetworkManager[703]: <info>  [1504430922.3397] device (wlx000f002f4b2f): state change: need-auth -> prepare (reason 'none') [60 40 0]
Sep  3 11:28:42 nimo-MS-7091 NetworkManager[703]: <info>  [1504430922.3420] device (wlx000f002f4b2f): state change: prepare -> config (reason 'none') [40 50 0]
Sep  3 11:28:42 nimo-MS-7091 NetworkManager[703]: <info>  [1504430922.3440] device (wlx000f002f4b2f): Activation: (wifi) connection 'EasyBox-180097' has security, and secrets exist.  No new secrets needed.
Sep  3 11:28:42 nimo-MS-7091 NetworkManager[703]: <info>  [1504430922.3450] Config: added 'ssid' value 'EasyBox-180097'
Sep  3 11:28:42 nimo-MS-7091 NetworkManager[703]: <info>  [1504430922.3459] Config: added 'scan_ssid' value '1'
Sep  3 11:28:42 nimo-MS-7091 NetworkManager[703]: <info>  [1504430922.3467] Config: added 'key_mgmt' value 'WPA-PSK'
Sep  3 11:28:42 nimo-MS-7091 NetworkManager[703]: <info>  [1504430922.3473] Config: added 'psk' value '<omitted>'
Sep  3 11:28:42 nimo-MS-7091 NetworkManager[703]: <info>  [1504430922.3495] sup-iface[0xa3b1b38,wlx000f002f4b2f]: config: set interface ap_scan to 1
Sep  3 11:28:42 nimo-MS-7091 NetworkManager[703]: <info>  [1504430922.3858] device (wlx000f002f4b2f): supplicant interface state: inactive -> scanning
Sep  3 11:28:43 nimo-MS-7091 NetworkManager[703]: <info>  [1504430923.5851] device (wlx000f002f4b2f): supplicant interface state: scanning -> authenticating
Sep  3 11:28:44 nimo-MS-7091 NetworkManager[703]: <info>  [1504430924.2192] device (wlx000f002f4b2f): supplicant interface state: authenticating -> disconnected
Sep  3 11:28:44 nimo-MS-7091 NetworkManager[703]: <info>  [1504430924.3195] device (wlx000f002f4b2f): supplicant interface state: disconnected -> scanning
Sep  3 11:28:45 nimo-MS-7091 NetworkManager[703]: <info>  [1504430925.5059] device (wlx000f002f4b2f): supplicant interface state: scanning -> authenticating
Sep  3 11:28:46 nimo-MS-7091 NetworkManager[703]: <info>  [1504430926.1472] device (wlx000f002f4b2f): supplicant interface state: authenticating -> disconnected
Sep  3 11:28:46 nimo-MS-7091 NetworkManager[703]: <info>  [1504430926.6479] device (wlx000f002f4b2f): supplicant interface state: disconnected -> scanning
Sep  3 11:28:47 nimo-MS-7091 NetworkManager[703]: <info>  [1504430927.8270] device (wlx000f002f4b2f): supplicant interface state: scanning -> authenticating
Sep  3 11:28:48 nimo-MS-7091 NetworkManager[703]: <info>  [1504430928.4678] device (wlx000f002f4b2f): supplicant interface state: authenticating -> disconnected
Sep  3 11:28:49 nimo-MS-7091 NetworkManager[703]: <info>  [1504430929.4682] device (wlx000f002f4b2f): supplicant interface state: disconnected -> scanning
Sep  3 11:28:50 nimo-MS-7091 NetworkManager[703]: <info>  [1504430930.6569] device (wlx000f002f4b2f): supplicant interface state: scanning -> authenticating
Sep  3 11:28:51 nimo-MS-7091 wpa_supplicant[842]: wlx000f002f4b2f: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="EasyBox-180097" auth_failures=1 duration=10 reason=CONN_FAILED
Sep  3 11:28:51 nimo-MS-7091 NetworkManager[703]: <info>  [1504430931.3033] device (wlx000f002f4b2f): supplicant interface state: authenticating -> disconnected
Sep  3 11:28:56 nimo-MS-7091 NetworkManager[703]: <info>  [1504430936.3083] device (wlx000f002f4b2f): supplicant interface state: disconnected -> scanning
Sep  3 11:29:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504430943.6533] device (wlx000f002f4b2f): supplicant interface state: scanning -> authenticating
Sep  3 11:29:04 nimo-MS-7091 wpa_supplicant[842]: wlx000f002f4b2f: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="EasyBox-180097" auth_failures=2 duration=20 reason=CONN_FAILED
Sep  3 11:29:04 nimo-MS-7091 NetworkManager[703]: <info>  [1504430944.2915] device (wlx000f002f4b2f): supplicant interface state: authenticating -> disconnected
Sep  3 11:29:07 nimo-MS-7091 NetworkManager[703]: <warn>  [1504430947.9352] device (wlx000f002f4b2f): Activation: (wifi) association took too long, failing activation
Sep  3 11:29:07 nimo-MS-7091 NetworkManager[703]: <info>  [1504430947.9353] device (wlx000f002f4b2f): state change: config -> failed (reason 'ssid-not-found') [50 120 53]
Sep  3 11:29:07 nimo-MS-7091 NetworkManager[703]: <warn>  [1504430947.9370] device (wlx000f002f4b2f): Activation: failed for connection 'EasyBox-180097'
Sep  3 11:29:07 nimo-MS-7091 NetworkManager[703]: <info>  [1504430947.9382] device (wlx000f002f4b2f): state change: failed -> disconnected (reason 'none') [120 30 0]
Sep  3 11:29:07 nimo-MS-7091 kernel: [  174.004933] IPv6: ADDRCONF(NETDEV_UP): wlx000f002f4b2f: link is not ready
Sep  3 11:29:09 nimo-MS-7091 NetworkManager[703]: <info>  [1504430949.1397] device (wlx000f002f4b2f): supplicant interface state: disconnected -> inactive
Sep  3 11:29:14 nimo-MS-7091 NetworkManager[703]: <info>  [1504430954.3716] device (wlx000f002f4b2f): Activation: starting connection 'EasyBox-180097' (bbba98d4-c237-4e60-88b7-f5a13e4f62ab)
Sep  3 11:29:14 nimo-MS-7091 NetworkManager[703]: <info>  [1504430954.3720] audit: op="connection-activate" uuid="bbba98d4-c237-4e60-88b7-f5a13e4f62ab" name="EasyBox-180097" pid=1023 uid=1000 result="success"
Sep  3 11:29:14 nimo-MS-7091 NetworkManager[703]: <info>  [1504430954.3724] device (wlx000f002f4b2f): state change: disconnected -> prepare (reason 'none') [30 40 0]
Sep  3 11:29:14 nimo-MS-7091 NetworkManager[703]: <info>  [1504430954.3745] device (wlx000f002f4b2f): state change: prepare -> config (reason 'none') [40 50 0]
Sep  3 11:29:14 nimo-MS-7091 NetworkManager[703]: <info>  [1504430954.3753] device (wlx000f002f4b2f): Activation: (wifi) access point 'EasyBox-180097' has security, but secrets are required.
Sep  3 11:29:14 nimo-MS-7091 NetworkManager[703]: <info>  [1504430954.3754] device (wlx000f002f4b2f): state change: config -> need-auth (reason 'none') [50 60 0]
Sep  3 11:29:14 nimo-MS-7091 NetworkManager[703]: <info>  [1504430954.3930] device (wlx000f002f4b2f): state change: need-auth -> prepare (reason 'none') [60 40 0]
Sep  3 11:29:14 nimo-MS-7091 NetworkManager[703]: <info>  [1504430954.3943] device (wlx000f002f4b2f): state change: prepare -> config (reason 'none') [40 50 0]
Sep  3 11:29:14 nimo-MS-7091 NetworkManager[703]: <info>  [1504430954.3951] device (wlx000f002f4b2f): Activation: (wifi) connection 'EasyBox-180097' has security, and secrets exist.  No new secrets needed.
Sep  3 11:29:14 nimo-MS-7091 NetworkManager[703]: <info>  [1504430954.3953] Config: added 'ssid' value 'EasyBox-180097'
Sep  3 11:29:14 nimo-MS-7091 NetworkManager[703]: <info>  [1504430954.3953] Config: added 'scan_ssid' value '1'
Sep  3 11:29:14 nimo-MS-7091 NetworkManager[703]: <info>  [1504430954.3954] Config: added 'key_mgmt' value 'WPA-PSK'
Sep  3 11:29:14 nimo-MS-7091 NetworkManager[703]: <info>  [1504430954.3955] Config: added 'psk' value '<omitted>'
Sep  3 11:29:14 nimo-MS-7091 NetworkManager[703]: <info>  [1504430954.4029] sup-iface[0xa3b1b38,wlx000f002f4b2f]: config: set interface ap_scan to 1
Sep  3 11:29:14 nimo-MS-7091 NetworkManager[703]: <info>  [1504430954.4582] device (wlx000f002f4b2f): supplicant interface state: inactive -> authenticating
Sep  3 11:29:15 nimo-MS-7091 wpa_supplicant[842]: wlx000f002f4b2f: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="EasyBox-180097" auth_failures=1 duration=10 reason=CONN_FAILED
Sep  3 11:29:15 nimo-MS-7091 NetworkManager[703]: <info>  [1504430955.0993] device (wlx000f002f4b2f): supplicant interface state: authenticating -> disconnected
Sep  3 11:29:25 nimo-MS-7091 NetworkManager[703]: <info>  [1504430965.1039] device (wlx000f002f4b2f): supplicant interface state: disconnected -> scanning
Sep  3 11:29:26 nimo-MS-7091 NetworkManager[703]: <info>  [1504430966.2926] device (wlx000f002f4b2f): supplicant interface state: scanning -> authenticating
Sep  3 11:29:26 nimo-MS-7091 wpa_supplicant[842]: wlx000f002f4b2f: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="EasyBox-180097" auth_failures=2 duration=20 reason=CONN_FAILED
Sep  3 11:29:26 nimo-MS-7091 NetworkManager[703]: <info>  [1504430966.9273] device (wlx000f002f4b2f): supplicant interface state: authenticating -> disconnected
Sep  3 11:29:27 nimo-MS-7091 NetworkManager[703]: <warn>  [1504430967.5267] device (wlx000f002f4b2f): disconnecting connection 'EasyBox-180097' for new activation request.
Sep  3 11:29:27 nimo-MS-7091 NetworkManager[703]: <info>  [1504430967.5267] device (wlx000f002f4b2f): state change: config -> deactivating (reason 'new-activation') [50 110 60]
Sep  3 11:29:27 nimo-MS-7091 NetworkManager[703]: <info>  [1504430967.5290] device (wlx000f002f4b2f): disconnecting for new activation request.
Sep  3 11:29:27 nimo-MS-7091 NetworkManager[703]: <info>  [1504430967.5294] audit: op="connection-activate" uuid="bbba98d4-c237-4e60-88b7-f5a13e4f62ab" name="EasyBox-180097" pid=1023 uid=1000 result="success"
Sep  3 11:29:27 nimo-MS-7091 NetworkManager[703]: <info>  [1504430967.5314] device (wlx000f002f4b2f): state change: deactivating -> disconnected (reason 'new-activation') [110 30 60]
Sep  3 11:29:27 nimo-MS-7091 kernel: [  193.598534] IPv6: ADDRCONF(NETDEV_UP): wlx000f002f4b2f: link is not ready
Sep  3 11:29:27 nimo-MS-7091 NetworkManager[703]: <info>  [1504430967.5338] device (wlx000f002f4b2f): Activation: starting connection 'EasyBox-180097' (bbba98d4-c237-4e60-88b7-f5a13e4f62ab)
Sep  3 11:29:27 nimo-MS-7091 NetworkManager[703]: <info>  [1504430967.5399] device (wlx000f002f4b2f): state change: disconnected -> prepare (reason 'none') [30 40 0]
Sep  3 11:29:27 nimo-MS-7091 NetworkManager[703]: <info>  [1504430967.5426] device (wlx000f002f4b2f): state change: prepare -> config (reason 'none') [40 50 0]
Sep  3 11:29:27 nimo-MS-7091 NetworkManager[703]: <info>  [1504430967.5433] device (wlx000f002f4b2f): Activation: (wifi) access point 'EasyBox-180097' has security, but secrets are required.
Sep  3 11:29:27 nimo-MS-7091 NetworkManager[703]: <info>  [1504430967.5435] device (wlx000f002f4b2f): state change: config -> need-auth (reason 'none') [50 60 0]
Sep  3 11:29:27 nimo-MS-7091 systemd[1]: Starting Network Manager Script Dispatcher Service...
Sep  3 11:29:27 nimo-MS-7091 NetworkManager[703]: <info>  [1504430967.5622] device (wlx000f002f4b2f): state change: need-auth -> prepare (reason 'none') [60 40 0]
Sep  3 11:29:27 nimo-MS-7091 NetworkManager[703]: <info>  [1504430967.5635] device (wlx000f002f4b2f): state change: prepare -> config (reason 'none') [40 50 0]
Sep  3 11:29:27 nimo-MS-7091 NetworkManager[703]: <info>  [1504430967.5642] device (wlx000f002f4b2f): Activation: (wifi) connection 'EasyBox-180097' has security, and secrets exist.  No new secrets needed.
Sep  3 11:29:27 nimo-MS-7091 NetworkManager[703]: <info>  [1504430967.5644] Config: added 'ssid' value 'EasyBox-180097'
Sep  3 11:29:27 nimo-MS-7091 NetworkManager[703]: <info>  [1504430967.5645] Config: added 'scan_ssid' value '1'
Sep  3 11:29:27 nimo-MS-7091 NetworkManager[703]: <info>  [1504430967.5645] Config: added 'key_mgmt' value 'WPA-PSK'
Sep  3 11:29:27 nimo-MS-7091 NetworkManager[703]: <info>  [1504430967.5646] Config: added 'psk' value '<omitted>'
Sep  3 11:29:27 nimo-MS-7091 systemd[1]: Started Network Manager Script Dispatcher Service.
Sep  3 11:29:27 nimo-MS-7091 NetworkManager[703]: <info>  [1504430967.6100] sup-iface[0xa3b1b38,wlx000f002f4b2f]: config: set interface ap_scan to 1
Sep  3 11:29:28 nimo-MS-7091 NetworkManager[703]: <info>  [1504430968.7460] device (wlx000f002f4b2f): supplicant interface state: disconnected -> authenticating
Sep  3 11:29:29 nimo-MS-7091 wpa_supplicant[842]: wlx000f002f4b2f: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="EasyBox-180097" auth_failures=1 duration=10 reason=CONN_FAILED
Sep  3 11:29:29 nimo-MS-7091 NetworkManager[703]: <info>  [1504430969.3833] device (wlx000f002f4b2f): supplicant interface state: authenticating -> disconnected
Sep  3 11:29:39 nimo-MS-7091 NetworkManager[703]: <info>  [1504430979.3855] device (wlx000f002f4b2f): supplicant interface state: disconnected -> scanning
Sep  3 11:29:40 nimo-MS-7091 NetworkManager[703]: <info>  [1504430980.5857] device (wlx000f002f4b2f): supplicant interface state: scanning -> authenticating
Sep  3 11:29:41 nimo-MS-7091 wpa_supplicant[842]: wlx000f002f4b2f: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="EasyBox-180097" auth_failures=2 duration=20 reason=CONN_FAILED
Sep  3 11:29:41 nimo-MS-7091 NetworkManager[703]: <info>  [1504430981.2314] device (wlx000f002f4b2f): supplicant interface state: authenticating -> disconnected
Sep  3 11:29:51 nimo-MS-7091 NetworkManager[703]: <info>  [1504430991.2354] device (wlx000f002f4b2f): supplicant interface state: disconnected -> scanning
Sep  3 11:29:52 nimo-MS-7091 NetworkManager[703]: <warn>  [1504430992.9348] device (wlx000f002f4b2f): Activation: (wifi) association took too long, failing activation
Sep  3 11:29:52 nimo-MS-7091 NetworkManager[703]: <info>  [1504430992.9356] device (wlx000f002f4b2f): state change: config -> failed (reason 'ssid-not-found') [50 120 53]
Sep  3 11:29:52 nimo-MS-7091 NetworkManager[703]: <warn>  [1504430992.9391] device (wlx000f002f4b2f): Activation: failed for connection 'EasyBox-180097'
Sep  3 11:29:52 nimo-MS-7091 NetworkManager[703]: <info>  [1504430992.9515] device (wlx000f002f4b2f): state change: failed -> disconnected (reason 'none') [120 30 0]
Sep  3 11:29:52 nimo-MS-7091 kernel: [  219.019278] IPv6: ADDRCONF(NETDEV_UP): wlx000f002f4b2f: link is not ready
Sep  3 11:29:54 nimo-MS-7091 NetworkManager[703]: <info>  [1504430994.1626] device (wlx000f002f4b2f): supplicant interface state: scanning -> inactive
Sep  3 11:46:12 nimo-MS-7091 NetworkManager[703]: <info>  [1504431972.8354] device (enp3s6): state change: activated -> deactivating (reason 'user-requested') [100 110 39]
Sep  3 11:46:12 nimo-MS-7091 NetworkManager[703]: <info>  [1504431972.8370] manager: NetworkManager state is now DISCONNECTING
Sep  3 11:46:12 nimo-MS-7091 NetworkManager[703]: <info>  [1504431972.8797] audit: op="device-disconnect" interface="enp3s6" ifindex=2 pid=1023 uid=1000 result="success"
Sep  3 11:46:12 nimo-MS-7091 NetworkManager[703]: <info>  [1504431972.8844] device (enp3s6): state change: deactivating -> disconnected (reason 'user-requested') [110 30 39]
Sep  3 11:46:12 nimo-MS-7091 NetworkManager[703]: <info>  [1504431972.9205] dhcp4 (enp3s6): canceled DHCP transaction, DHCP client pid 834
Sep  3 11:46:12 nimo-MS-7091 NetworkManager[703]: <info>  [1504431972.9206] dhcp4 (enp3s6): state changed bound -> done
Sep  3 11:46:12 nimo-MS-7091 NetworkManager[703]: <info>  [1504431972.9296] dns-mgr: Writing DNS information to /sbin/resolvconf
Sep  3 11:46:13 nimo-MS-7091 NetworkManager[703]: <info>  [1504431973.0158] manager: NetworkManager state is now DISCONNECTED
Sep  3 11:46:13 nimo-MS-7091 systemd[1]: Starting Network Manager Script Dispatcher Service...
Sep  3 11:46:13 nimo-MS-7091 systemd[1]: Started Network Manager Script Dispatcher Service.
Sep  3 11:46:15 nimo-MS-7091 NetworkManager[703]: <info>  [1504431975.2180] device (wlx000f002f4b2f): Activation: starting connection 'EasyBox-180097' (bbba98d4-c237-4e60-88b7-f5a13e4f62ab)
Sep  3 11:46:15 nimo-MS-7091 NetworkManager[703]: <info>  [1504431975.2198] audit: op="connection-activate" uuid="bbba98d4-c237-4e60-88b7-f5a13e4f62ab" name="EasyBox-180097" pid=1023 uid=1000 result="success"
Sep  3 11:46:15 nimo-MS-7091 NetworkManager[703]: <info>  [1504431975.2219] device (wlx000f002f4b2f): state change: disconnected -> prepare (reason 'none') [30 40 0]
Sep  3 11:46:15 nimo-MS-7091 NetworkManager[703]: <info>  [1504431975.2237] manager: NetworkManager state is now CONNECTING
Sep  3 11:46:15 nimo-MS-7091 NetworkManager[703]: <info>  [1504431975.2338] device (wlx000f002f4b2f): state change: prepare -> config (reason 'none') [40 50 0]
Sep  3 11:46:15 nimo-MS-7091 NetworkManager[703]: <info>  [1504431975.2357] device (wlx000f002f4b2f): Activation: (wifi) access point 'EasyBox-180097' has security, but secrets are required.
Sep  3 11:46:15 nimo-MS-7091 NetworkManager[703]: <info>  [1504431975.2366] device (wlx000f002f4b2f): state change: config -> need-auth (reason 'none') [50 60 0]
Sep  3 11:46:15 nimo-MS-7091 NetworkManager[703]: <info>  [1504431975.2796] device (wlx000f002f4b2f): state change: need-auth -> prepare (reason 'none') [60 40 0]
Sep  3 11:46:15 nimo-MS-7091 NetworkManager[703]: <info>  [1504431975.2836] device (wlx000f002f4b2f): state change: prepare -> config (reason 'none') [40 50 0]
Sep  3 11:46:15 nimo-MS-7091 NetworkManager[703]: <info>  [1504431975.2849] device (wlx000f002f4b2f): Activation: (wifi) connection 'EasyBox-180097' has security, and secrets exist.  No new secrets needed.
Sep  3 11:46:15 nimo-MS-7091 NetworkManager[703]: <info>  [1504431975.2851] Config: added 'ssid' value 'EasyBox-180097'
Sep  3 11:46:15 nimo-MS-7091 NetworkManager[703]: <info>  [1504431975.2852] Config: added 'scan_ssid' value '1'
Sep  3 11:46:15 nimo-MS-7091 NetworkManager[703]: <info>  [1504431975.2853] Config: added 'key_mgmt' value 'WPA-PSK'
Sep  3 11:46:15 nimo-MS-7091 NetworkManager[703]: <info>  [1504431975.2854] Config: added 'psk' value '<omitted>'
Sep  3 11:46:15 nimo-MS-7091 NetworkManager[703]: <info>  [1504431975.2895] sup-iface[0xa3b1b38,wlx000f002f4b2f]: config: set interface ap_scan to 1
Sep  3 11:46:15 nimo-MS-7091 NetworkManager[703]: <info>  [1504431975.3554] device (wlx000f002f4b2f): supplicant interface state: inactive -> scanning
Sep  3 11:46:16 nimo-MS-7091 NetworkManager[703]: <info>  [1504431976.5502] device (wlx000f002f4b2f): supplicant interface state: scanning -> authenticating
Sep  3 11:46:17 nimo-MS-7091 wpa_supplicant[842]: wlx000f002f4b2f: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="EasyBox-180097" auth_failures=1 duration=10 reason=CONN_FAILED
Sep  3 11:46:17 nimo-MS-7091 NetworkManager[703]: <info>  [1504431977.1953] device (wlx000f002f4b2f): supplicant interface state: authenticating -> disconnected
Sep  3 11:46:27 nimo-MS-7091 NetworkManager[703]: <info>  [1504431987.2040] device (wlx000f002f4b2f): supplicant interface state: disconnected -> scanning
Sep  3 11:46:28 nimo-MS-7091 NetworkManager[703]: <info>  [1504431988.3995] device (wlx000f002f4b2f): supplicant interface state: scanning -> authenticating
Sep  3 11:46:29 nimo-MS-7091 wpa_supplicant[842]: wlx000f002f4b2f: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="EasyBox-180097" auth_failures=2 duration=20 reason=CONN_FAILED
Sep  3 11:46:29 nimo-MS-7091 NetworkManager[703]: <info>  [1504431989.0393] device (wlx000f002f4b2f): supplicant interface state: authenticating -> disconnected
Sep  3 11:46:39 nimo-MS-7091 NetworkManager[703]: <info>  [1504431999.0400] device (wlx000f002f4b2f): supplicant interface state: disconnected -> scanning
Sep  3 11:46:40 nimo-MS-7091 NetworkManager[703]: <warn>  [1504432000.9350] device (wlx000f002f4b2f): Activation: (wifi) association took too long, failing activation
Sep  3 11:46:40 nimo-MS-7091 NetworkManager[703]: <info>  [1504432000.9351] device (wlx000f002f4b2f): state change: config -> failed (reason 'ssid-not-found') [50 120 53]
Sep  3 11:46:40 nimo-MS-7091 NetworkManager[703]: <info>  [1504432000.9357] manager: NetworkManager state is now DISCONNECTED
Sep  3 11:46:40 nimo-MS-7091 NetworkManager[703]: <warn>  [1504432000.9375] device (wlx000f002f4b2f): Activation: failed for connection 'EasyBox-180097'
Sep  3 11:46:40 nimo-MS-7091 NetworkManager[703]: <info>  [1504432000.9403] device (wlx000f002f4b2f): state change: failed -> disconnected (reason 'none') [120 30 0]
Sep  3 11:46:40 nimo-MS-7091 kernel: [ 1227.007793] IPv6: ADDRCONF(NETDEV_UP): wlx000f002f4b2f: link is not ready
Sep  3 11:46:42 nimo-MS-7091 NetworkManager[703]: <info>  [1504432002.1350] device (wlx000f002f4b2f): supplicant interface state: scanning -> inactive
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.5017] device (enp3s6): Activation: starting connection 'Kabelnetzwerkverbindung 3' (781d8f5e-83b5-4946-bdee-ddd0fa906b61)
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.5022] audit: op="connection-activate" uuid="781d8f5e-83b5-4946-bdee-ddd0fa906b61" name="Kabelnetzwerkverbindung 3" pid=1023 uid=1000 result="success"
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.5026] device (enp3s6): state change: disconnected -> prepare (reason 'none') [30 40 0]
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.5032] manager: NetworkManager state is now CONNECTING
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.5049] device (enp3s6): state change: prepare -> config (reason 'none') [40 50 0]
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.5076] device (enp3s6): state change: config -> ip-config (reason 'none') [50 70 0]
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.5092] dhcp4 (enp3s6): activation: beginning transaction (timeout in 45 seconds)
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.5158] dhcp4 (enp3s6): dhclient started with pid 2689
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.6169]   address 192.168.2.120
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.6211]   plen 24 (255.255.255.0)
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.6224]   gateway 192.168.2.1
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.6232]   server identifier 192.168.2.1
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.6239]   lease time 31536000
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.6247]   hostname 'nimo-MS-7091'
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.6254]   nameserver '192.168.2.1'
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.6262]   domain name 'local'
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.6270] dhcp4 (enp3s6): state changed unknown -> bound
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.6371] device (enp3s6): state change: ip-config -> ip-check (reason 'none') [70 80 0]
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.6441] device (enp3s6): state change: ip-check -> secondaries (reason 'none') [80 90 0]
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.6454] device (enp3s6): state change: secondaries -> activated (reason 'none') [90 100 0]
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.6461] manager: NetworkManager state is now CONNECTED_LOCAL
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.7168] manager: NetworkManager state is now CONNECTED_GLOBAL
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.7171] policy: set 'Kabelnetzwerkverbindung 3' (enp3s6) as default for IPv4 routing and DNS
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.7175] dns-mgr: Writing DNS information to /sbin/resolvconf
Sep  3 11:47:03 nimo-MS-7091 NetworkManager[703]: <info>  [1504432023.7849] device (enp3s6): Activation: successful, device activated.
Sep  3 11:47:03 nimo-MS-7091 systemd[1]: Starting Network Manager Script Dispatcher Service...
Sep  3 11:47:03 nimo-MS-7091 whoopsie[1033]: [11:47:03] The default IPv4 route is: /org/freedesktop/NetworkManager/ActiveConnection/5
Sep  3 11:47:03 nimo-MS-7091 whoopsie[1033]: [11:47:03] Not a paid data plan: /org/freedesktop/NetworkManager/ActiveConnection/5
Sep  3 11:47:03 nimo-MS-7091 whoopsie[1033]: [11:47:03] Found usable connection: /org/freedesktop/NetworkManager/ActiveConnection/5
Sep  3 11:47:03 nimo-MS-7091 systemd[1]: Started Network Manager Script Dispatcher Service.
Sep  3 11:47:05 nimo-MS-7091 ntpd[1053]: bind(21) AF_INET6 fe80::ef50:fe6a:c857:7994%2#123 flags 0x11 failed: Cannot assign requested address


nimo@nimo-MS-7091:~$ 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] BRK [0x15ee1000, 0x15ee1fff] PGTABLE
[    0.015423] CPU0: Thermal monitoring enabled (TM1)
[    0.147120] pci 0000:00:1d.2: reg 0x20: [io  0xe100-0xe11f]
[    0.149750] pci 0000:03:02.0: [10ec:8169] type 00 class 0x020000
[    1.232586] audit: initializing netlink subsys (disabled)
[    1.233125] Initialise system trusted keyrings
[    1.240697] Asymmetric key parser 'x509' registered
[    1.243693] thermal LNXTHERM:00: registered as thermal_zone0
[    1.243695] ACPI: Thermal Zone [THRM] (65 C)
[    1.344077] ata2: port disabled--ignoring
[    1.344680] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.366783] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000e100
[    1.530922] Loaded X.509 cert 'Build time autogenerated kernel key: a62515cd8e531941275c8c0ea669fd541410aaa5'
[    1.562255] Key type big_key registered
[    1.922715] via_rhine: v1.10-LK1.5.1 2010-10-09 Written by Donald Becker
[    1.922720] via_rhine: Broken BIOS detected, avoid_D3 enabled
[    1.947405] via-rhine 0000:03:06.0 eth0: VIA Rhine III at 0xf8527000, 00:11:09:f2:0c:25, IRQ 18
[    1.948183] via-rhine 0000:03:06.0 eth0: MII PHY found at address 1, status 0x786d advertising 05e1 Link cde1
[    1.953721] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    1.953972] r8169 0000:03:02.0 (unnamed net_device) (uninitialized): not PCI Express
[    1.954486] r8169 0000:03:02.0 eth1: RTL8110s at 0xf8550000, 00:11:6b:35:53:d6, XID 04000000 IRQ 18
[    1.954490] r8169 0000:03:02.0 eth1: jumbo features [frames: 7152 bytes, tx checksumming: ok]
[    2.137345] fbcon: radeondrmfb (fb0) is primary device
[    2.150770] via-rhine 0000:03:06.0 enp3s6: renamed from eth0
[    2.160113] r8169 0000:03:02.0 enp3s2: renamed from eth1
[   10.760786] systemd[1]: Starting Set console keymap...
[   18.619744] intel_rng: FWH not detected
[   19.821876] Adding 1047548k swap on /dev/sda5.  Priority:-1 extents:1 across:1047548k FS
[   20.147386] ndiswrapper: loading out-of-tree module taints kernel.
[   20.147881] ndiswrapper: module verification failed: signature and/or required key missing - tainting kernel
[   20.168455] ndiswrapper: module license taints kernel.
[   20.169938] ndiswrapper version 1.60 loaded (smp=yes, preempt=no)
[   20.257205] Registered IR keymap rc-medion-x10-digitainer
[   20.383310] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   20.574746] usb 1-1: rtl8192eu_parse_efuse: dumping efuse (0x200 bytes):
[   20.574937] usb 1-1: rtl8xxxu: Loading firmware rtlwifi/rtl8192eu_nic.bin
[   22.776708] r8169 0000:03:02.0 enp3s2: link down
[   22.786019] r8169 0000:03:02.0 enp3s2: link down
[   22.955481] usbcore: registered new interface driver rtl8xxxu
[   22.968536] rtl8xxxu 1-1:1.0 wlx000f002f4b2f: renamed from wlan0
[   23.031530] IPv6: ADDRCONF(NETDEV_UP): wlx000f002f4b2f: link is not ready
[   23.047613] IPv6: ADDRCONF(NETDEV_UP): wlx000f002f4b2f: link is not ready
[   23.284143] Modules linked in: arc4 isl6405 dvb_pll tda10086 bnep rtl8xxxu rc_medion_x10_digitainer mac80211 ati_remote ndiswrapper(OE+) cfg80211 ppdev tda1004x saa7134_alsa saa7134_dvb videobuf2_dvb dvb_core intel_powerclamp tuner_simple tuner_types serio_raw tda9887 tda8290 tuner snd_hda_codec_cmedia snd_hda_codec_generic snd_hda_intel snd_hda_codec input_leds snd_hda_core saa7134 snd_hwdep snd_pcm tveeprom snd_seq_midi snd_seq_midi_event rc_core btusb btrtl btbcm v4l2_common btintel snd_rawmidi bluetooth videobuf2_dma_sg videobuf2_memops videobuf2_v4l2 videobuf2_core snd_seq lpc_ich videodev snd_seq_device snd_timer media snd parport_pc parport soundcore shpchp mac_hid binfmt_misc autofs4 uas usb_storage hid_generic usbhid hid radeon psmouse ahci firewire_ohci libahci firewire_core r8169 pata_acpi
[   23.284143]  via_rhine i2c_algo_bit ttm drm_kms_helper crc_itu_t syscopyarea mii sysfillrect sysimgblt fb_sys_fops floppy fjes drm
[   23.284143] CPU: 1 PID: 857 Comm: loadndisdriver Tainted: P           OE   4.10.0-33-generic #37~16.04.1-Ubuntu
[   23.284143]  ? wrapper_ioctl+0x947/0xbc0 [ndiswrapper]
[   23.318082]  ? unload_wrap_driver+0x140/0x140 [ndiswrapper]
[   23.406514] IPv6: ADDRCONF(NETDEV_UP): wlx000f002f4b2f: link is not ready
[   23.411550] ndiswrapper (load_wrap_driver:103): couldn't load driver rt2500usb; check system log for messages from 'loadndisdriver'
[   23.411794] usbcore: registered new interface driver ndiswrapper
[  149.613399] wlx000f002f4b2f: authenticate with b4:a5:ef:76:cf:bc
[  149.642830] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 1/3)
[  149.844032] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 2/3)
[  150.048031] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 3/3)
[  150.252031] wlx000f002f4b2f: authentication with b4:a5:ef:76:cf:bc timed out
[  151.537471] wlx000f002f4b2f: authenticate with b4:a5:ef:76:cf:bc
[  151.568089] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 1/3)
[  151.772033] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 2/3)
[  151.976034] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 3/3)
[  152.180030] wlx000f002f4b2f: authentication with b4:a5:ef:76:cf:bc timed out
[  153.861374] wlx000f002f4b2f: authenticate with b4:a5:ef:76:cf:bc
[  153.889028] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 1/3)
[  154.092024] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 2/3)
[  154.296027] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 3/3)
[  154.500021] wlx000f002f4b2f: authentication with b4:a5:ef:76:cf:bc timed out
[  156.685578] wlx000f002f4b2f: authenticate with b4:a5:ef:76:cf:bc
[  156.716709] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 1/3)
[  156.920041] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 2/3)
[  157.124031] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 3/3)
[  157.328030] wlx000f002f4b2f: authentication with b4:a5:ef:76:cf:bc timed out
[  169.685134] wlx000f002f4b2f: authenticate with b4:a5:ef:76:cf:bc
[  169.712977] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 1/3)
[  169.916032] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 2/3)
[  170.120023] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 3/3)
[  170.324027] wlx000f002f4b2f: authentication with b4:a5:ef:76:cf:bc timed out
[  174.004933] IPv6: ADDRCONF(NETDEV_UP): wlx000f002f4b2f: link is not ready
[  180.510921] wlx000f002f4b2f: authenticate with b4:a5:ef:76:cf:bc
[  180.523214] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 1/3)
[  180.724034] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 2/3)
[  180.928047] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 3/3)
[  181.132033] wlx000f002f4b2f: authentication with b4:a5:ef:76:cf:bc timed out
[  192.321633] wlx000f002f4b2f: authenticate with b4:a5:ef:76:cf:bc
[  192.351418] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 1/3)
[  192.552023] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 2/3)
[  192.756031] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 3/3)
[  192.960023] wlx000f002f4b2f: authentication with b4:a5:ef:76:cf:bc timed out
[  193.598534] IPv6: ADDRCONF(NETDEV_UP): wlx000f002f4b2f: link is not ready
[  194.777319] wlx000f002f4b2f: authenticate with b4:a5:ef:76:cf:bc
[  194.805794] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 1/3)
[  195.008025] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 2/3)
[  195.212029] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 3/3)
[  195.416030] wlx000f002f4b2f: authentication with b4:a5:ef:76:cf:bc timed out
[  206.617511] wlx000f002f4b2f: authenticate with b4:a5:ef:76:cf:bc
[  206.643397] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 1/3)
[  206.844028] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 2/3)
[  207.058909] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 3/3)
[  207.260063] wlx000f002f4b2f: authentication with b4:a5:ef:76:cf:bc timed out
[  219.019278] IPv6: ADDRCONF(NETDEV_UP): wlx000f002f4b2f: link is not ready
[ 1202.577784] wlx000f002f4b2f: authenticate with b4:a5:ef:76:cf:bc
[ 1202.612259] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 1/3)
[ 1202.816057] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 2/3)
[ 1203.020029] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 3/3)
[ 1203.224051] wlx000f002f4b2f: authentication with b4:a5:ef:76:cf:bc timed out
[ 1214.429736] wlx000f002f4b2f: authenticate with b4:a5:ef:76:cf:bc
[ 1214.461489] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 1/3)
[ 1214.664035] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 2/3)
[ 1214.868025] wlx000f002f4b2f: send auth to b4:a5:ef:76:cf:bc (try 3/3)
[ 1215.072028] wlx000f002f4b2f: authentication with b4:a5:ef:76:cf:bc timed out
[ 1227.007793] IPv6: ADDRCONF(NETDEV_UP): wlx000f002f4b2f: link is not ready