ubuntuusers.de

Netzwerk-Standardfragen

Autor:
Stebo
Datum:
11. September 2014 23: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
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
Benötigte Informationen:

1. Wie ist das Netzwerk aufgebaut?

DSL-Anschluss ↦ Splitter ↦ Alice-Router ↦ Internet-Verbindung per (W)LAN an ca. 10 Geräte, 

    Welche Geräte werden verwendet?
ca. 10 Verschiedene: Laptops, Handys, Tablets

    Von welchem Hersteller? Wie lautet der genaue Gerätename und die Version?
Problem taucht auf auf einem: Thinkpad T61w Kubuntu 14.04 LTS Trusty

    Wie und wo sind die Geräte angeschlossen?
Verbindung per WLAN (Probleme, s.o.), oder LAN

    Welcher Internetanbieter?
Alice/O2

    Ist der Chipsatz der Netzwerk-Hardware bekannt?

    Wird das Netzwerkgerät von anderen Geräten erkannt? Switches, Router und einige DSL-Modems signalisieren mit einer LED, ob am anderen Ende eine Verbindung besteht.
Ja, andere Systeme arbeiten gut. Mit einem anderen Kubuntu-Laptop gab es zeitweise die selben Probleme, die haben sich aber plötzlich wieder gegeben.(s.o.).

2. Welche Systemversion wird verwendet, welche Hardware ist verbaut und wurde die Netzwerkkarte überhaupt erkannt?

$ uname -a
Linux BlackBox 3.13.0-35-generic #62-Ubuntu SMP Fri Aug 15 01:58:01 UTC 2014 i686 i686 i686 GNU/Linux

$ lspci -nnk | grep -i net -A2  
00:19.0 Ethernet controller [0200]: Intel Corporation 82566MM Gigabit Network Connection [8086:1049] (rev 03)
        Subsystem: Lenovo ThinkPad T61/R61 [17aa:20b9]
        Kernel driver in use: e1000e
--
03:00.0 Ethernet controller [0200]: Qualcomm Atheros AR5212 802.11abg NIC [168c:1014] (rev 01)
        Subsystem: IBM ThinkPad 11a/b/g Wireless LAN Mini Express Adapter (AR5BXB6) [1014:058a]
        Kernel driver in use: ath5k

keine (ältere) PCMCIA-karte/USB-Karte im Spiel


$ cat /etc/network/interfaces
auto lo
iface lo inet loopback

$ cat /etc/resolv.conf
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
#     DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 127.0.1.1
search localdomain

$ cat /etc/hosts
127.0.0.1       localhost
127.0.1.1       BlackBox

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

$ ifconfig -a                                                                                                                                                           
eth1      Link encap:Ethernet  Hardware Adresse 00:21:86:52:9b:22                                                                                                                            
          UP BROADCAST MULTICAST  MTU:1500  Metrik:1                                                                                                                                         
          RX-Pakete:0 Fehler:0 Verloren:0 Überläufe:0 Fenster:0                                                                                                                              
          TX-Pakete:0 Fehler:0 Verloren:0 Überläufe:0 Träger:0                                                                                                                               
          Kollisionen:0 Sendewarteschlangenlänge:1000                                                                                                                                        
          RX-Bytes:0 (0.0 B)  TX-Bytes:0 (0.0 B)                                                                                                                                             
          Interrupt:20 Speicher:fe200000-fe220000                                                                                                                                            
                                                                                                                                                                                             
lo        Link encap:Lokale Schleife                                                                                                                                                         
          inet Adresse:127.0.0.1  Maske:255.0.0.0                                                                                                                                            
          inet6-Adresse: ::1/128 Gültigkeitsbereich:Maschine                                                                                                                                 
          UP LOOPBACK RUNNING  MTU:65536  Metrik:1
          RX-Pakete:507 Fehler:0 Verloren:0 Überläufe:0 Fenster:0
          TX-Pakete:507 Fehler:0 Verloren:0 Überläufe:0 Träger:0
          Kollisionen:0 Sendewarteschlangenlänge:0 
          RX-Bytes:56008 (56.0 KB)  TX-Bytes:56008 (56.0 KB)

wlan0     Link encap:Ethernet  Hardware Adresse 00:1c:26:b4:16:49  
          inet Adresse:192.168.1.5  Bcast:192.168.1.255  Maske:255.255.255.0
          inet6-Adresse: fe80::21c:26ff:feb4:1649/64 Gültigkeitsbereich:Verbindung
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metrik:1
          RX-Pakete:6193 Fehler:0 Verloren:0 Überläufe:0 Fenster:0
          TX-Pakete:5997 Fehler:0 Verloren:0 Überläufe:0 Träger:0
          Kollisionen:0 Sendewarteschlangenlänge:1000 
          RX-Bytes:4696791 (4.6 MB)  TX-Bytes:870839 (870.8 KB)

$ iwconfig
wlan0     IEEE 802.11abg  ESSID:"Copboco"  
          Mode:Managed  Frequency:2.417 GHz  Access Point: 84:9C:A6:A2:E7:B6   
          Bit Rate=54 Mb/s   Tx-Power=20 dBm   
          Retry  long limit:7   RTS thr:off   Fragment thr:off
          Power Management:off
          Link Quality=59/70  Signal level=-51 dBm  
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:33  Invalid misc:162   Missed beacon:0

lo        no wireless extensions.

eth1      no wireless extensions.

$ route -n 
Kernel-IP-Routentabelle
Ziel            Router          Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.1.1     0.0.0.0         UG    0      0        0 wlan0
192.168.1.0     0.0.0.0         255.255.255.0   U     9      0        0 wlan0

$ cat /var/lib/NetworkManager/NetworkManager.state

[main]
NetworkingEnabled=true
WirelessEnabled=true
WWANEnabled=true

$ cat /etc/NetworkManager/NetworkManager.conf 
[main]
plugins=ifupdown,keyfile,ofono
dns=dnsmasq

[ifupdown]
managed=false

$ cat /etc/udev/rules.d/70-persistent-net.rules | egrep -i 'device|sub' -A3 
# PCI device 0x8086:0x1049 (e1000e)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:1c:25:16:c5:55", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"

# PCI device 0x168c:0x1014 (ath5k)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:1c:26:b4:16:49", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="wlan*", NAME="wlan0"

# PCI device 0x8086:/sys/devices/pci0000:00/0000:00:19.0 (e1000e)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:21:86:52:9b:22", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1"

$ ping -c 2 $(route -n | grep UG | awk {'print $2'})
PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data.
64 bytes from 192.168.1.1: icmp_seq=1 ttl=64 time=1.03 ms
64 bytes from 192.168.1.1: icmp_seq=2 ttl=64 time=1.09 ms

--- 192.168.1.1 ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1001ms
rtt min/avg/max/mdev = 1.031/1.063/1.095/0.032 ms

$ ping -c 2 www.ubuntuusers.de
PING ubuntuusers.de (213.95.41.4) 56(84) bytes of data.
64 bytes from ubuntuusers.de (213.95.41.4): icmp_seq=1 ttl=54 time=35.8 ms
64 bytes from ubuntuusers.de (213.95.41.4): icmp_seq=2 ttl=54 time=35.6 ms

--- ubuntuusers.de ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1001ms
rtt min/avg/max/mdev = 35.695/35.755/35.816/0.198 ms

$ ping -c 2 213.95.41.11 
PING 213.95.41.11 (213.95.41.11) 56(84) bytes of data.
64 bytes from 213.95.41.11: icmp_seq=1 ttl=54 time=36.7 ms
64 bytes from 213.95.41.11: icmp_seq=2 ttl=54 time=34.9 ms

--- 213.95.41.11 ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1001ms
rtt min/avg/max/mdev = 34.950/35.826/36.702/0.876 ms

$ lsmod 
Module                  Size  Used by
ctr                    12905  2 
ccm                    17496  2 
dm_crypt               22589  0 
cuse                   13213  3 
joydev                 17101  0 
hdaps                  14550  1 
rfcomm                 53664  0 
bnep                   18895  2 
bluetooth             342208  10 bnep,rfcomm
binfmt_misc            13140  1 
arc4                   12536  2 
snd_hda_codec_analog    14537  1 
snd_hda_intel          42730  6 
snd_hda_codec         164067  2 snd_hda_intel,snd_hda_codec_analog
snd_hwdep              13272  1 snd_hda_codec
snd_pcm                85501  2 snd_hda_codec,snd_hda_intel
pcmcia                 51828  0 
snd_page_alloc         14230  2 snd_pcm,snd_hda_intel
thinkpad_acpi          73263  0 
nvram                  14027  1 thinkpad_acpi
snd_seq_midi           13132  0 
snd_seq_midi_event     14475  1 snd_seq_midi
coretemp               13195  0 
snd_rawmidi            25135  1 snd_seq_midi
kvm                   388084  0 
snd_seq                55383  2 snd_seq_midi_event,snd_seq_midi
nvidia               9648068  32 
snd_seq_device         14137  3 snd_seq,snd_rawmidi,snd_seq_midi
ath5k                 134977  0 
snd_timer              28584  2 snd_pcm,snd_seq
serio_raw              13230  0 
ath                    23922  1 ath5k
yenta_socket           40201  0 
pcmcia_rsrc            18319  1 yenta_socket
mac80211              546051  1 ath5k
pcmcia_core            22328  3 pcmcia,pcmcia_rsrc,yenta_socket
snd                    60939  23 snd_hwdep,snd_timer,snd_pcm,snd_seq,snd_rawmidi,snd_hda_codec,snd_hda_intel,thinkpad_acpi,snd_seq_device,snd_hda_codec_analog,snd_seq_midi
drm                   244037  2 nvidia
lpc_ich                16864  0 
cfg80211              409394  3 ath,ath5k,mac80211
wmi                    18673  0 
soundcore              12600  1 snd
mac_hid                13037  0 
parport_pc             31981  0 
ppdev                  17391  0 
tp_smapi               22943  0 
thinkpad_ec            14139  2 hdaps,tp_smapi
lp                     13299  0 
parport                40836  3 lp,ppdev,parport_pc
hid_generic            12492  0 
usbhid                 46997  0 
hid                    87604  2 hid_generic,usbhid
psmouse                91329  0 
ahci                   25579  4 
libahci                27214  1 ahci
firewire_ohci          35529  0 
e1000e                223034  0 
firewire_core          61867  1 firewire_ohci
crc_itu_t              12627  1 firewire_core
ptp                    18445  1 e1000e
pps_core               18799  1 ptp
video                  18903  0 

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

lo        no frequency information.

eth1      no frequency information.

$ sudo iwlist scan 
[sudo] password for schokolade: 
wlan0     Scan completed :
          Cell 01 - Address: 84:9C:A6:A2:E7:B6
                    Channel:2
                    Frequency:2.417 GHz (Channel 2)
                    Quality=64/70  Signal level=-46 dBm  
                    Encryption key:on
                    ESSID:"Copboco"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 9 Mb/s
                              18 Mb/s; 36 Mb/s; 54 Mb/s
                    Bit Rates:6 Mb/s; 12 Mb/s; 24 Mb/s; 48 Mb/s
                    Mode:Master
                    Extra:tsf=00000000e2362525
                    Extra: Last beacon: 28ms ago
                    IE: Unknown: 0007436F70626F636F
                    IE: Unknown: 010882848B961224486C
                    IE: Unknown: 030102
                    IE: Unknown: 2A0100
                    IE: Unknown: 32040C183060
                    IE: Unknown: 2D1A6E1017FF00000001000000000000000000000000000000000000
                    IE: Unknown: 3D1602050700000000000000000000000000000000000000
                    IE: Unknown: 3E0100
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DD180050F2020101000003A4000027A4000042435E0062322F00
                    IE: Unknown: 7F0101
                    IE: Unknown: DD900050F204104A00011010440001021041000100103B0001031047001000000000000000030000849CA6A2E7B61021000848616E73654E657410230008415237353035535710240007312E30302E31391042000A333032313031353531331054000800060050F20400011011001D48616E73654E657420576972656C65737320526F757465722857464129100800020084
                    IE: Unknown: DD07000C4300000000
                    IE: Unknown: 0706444520010D10
                    IE: Unknown: DD1E00904C336E1017FF00000001000000000000000000000000000000000000
                    IE: Unknown: DD1A00904C3402050700000000000000000000000000000000000000

[…]Ich habe die restlichen 19 WLAN-Zellen weggelassen


$ egrep -i 'net|eth|wlan|firm|reason' /var/log/syslog 

Sep 11 11:24:00 BlackBox kernel: [  515.001013] wlan0: authenticated
Sep 11 11:24:00 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: authenticating -> associating
Sep 11 11:24:00 BlackBox kernel: [  515.004168] wlan0: associate with 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 11:24:00 BlackBox wpa_supplicant[1158]: wlan0: Associated with 84:9c:a6:a2:e7:b6
Sep 11 11:24:00 BlackBox kernel: [  515.013644] wlan0: RX AssocResp from 84:9c:a6:a2:e7:b6 (capab=0x431 status=0 aid=1)
Sep 11 11:24:00 BlackBox kernel: [  515.013938] wlan0: associated
Sep 11 11:24:00 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: associating -> associated
Sep 11 11:24:00 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: associated -> 4-way handshake
Sep 11 11:24:04 BlackBox wpa_supplicant[1158]: wlan0: WPA: Key negotiation completed with 84:9c:a6:a2:e7:b6 [PTK=CCMP GTK=CCMP]
Sep 11 11:24:04 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-CONNECTED - Connection to 84:9c:a6:a2:e7:b6 completed [id=0 id_str=]
Sep 11 11:24:04 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Sep 11 11:24:08 BlackBox kernel: [  523.024601] wlan0: deauthenticated from 84:9c:a6:a2:e7:b6 (Reason: 3)
Sep 11 11:24:08 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-DISCONNECTED bssid=84:9c:a6:a2:e7:b6 reason=3
Sep 11 11:24:08 BlackBox NetworkManager[883]: <warn> Connection disconnected (reason 3)
Sep 11 11:24:08 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: completed -> disconnected
Sep 11 11:24:08 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 11:24:08 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Sep 11 11:24:12 BlackBox wpa_supplicant[1158]: wlan0: SME: Trying to authenticate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2447 MHz)
Sep 11 11:24:12 BlackBox kernel: [  526.765749] wlan0: authenticate with 84:9c:a6:a2:e7:b6
Sep 11 11:24:12 BlackBox kernel: [  526.776907] wlan0: send auth to 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 11:24:12 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: scanning -> authenticating
Sep 11 11:24:12 BlackBox wpa_supplicant[1158]: wlan0: Trying to associate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2447 MHz)
Sep 11 11:24:12 BlackBox kernel: [  526.784790] wlan0: authenticated
Sep 11 11:24:12 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: authenticating -> associating
Sep 11 11:24:12 BlackBox kernel: [  526.788088] wlan0: associate with 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 11:24:12 BlackBox wpa_supplicant[1158]: wlan0: Associated with 84:9c:a6:a2:e7:b6
Sep 11 11:24:12 BlackBox kernel: [  526.796589] wlan0: RX AssocResp from 84:9c:a6:a2:e7:b6 (capab=0x431 status=0 aid=1)
Sep 11 11:24:12 BlackBox kernel: [  526.796888] wlan0: associated
Sep 11 11:24:12 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: associating -> associated
Sep 11 11:24:12 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: associated -> 4-way handshake
Sep 11 11:24:12 BlackBox wpa_supplicant[1158]: wlan0: WPA: Key negotiation completed with 84:9c:a6:a2:e7:b6 [PTK=CCMP GTK=CCMP]
Sep 11 11:24:12 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-CONNECTED - Connection to 84:9c:a6:a2:e7:b6 completed [id=0 id_str=]
Sep 11 11:24:12 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Sep 11 11:24:15 BlackBox kernel: [  529.625021] wlan0: deauthenticated from 84:9c:a6:a2:e7:b6 (Reason: 3)
Sep 11 11:24:15 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-DISCONNECTED bssid=84:9c:a6:a2:e7:b6 reason=3
Sep 11 11:24:15 BlackBox NetworkManager[883]: <warn> Connection disconnected (reason 3)
Sep 11 11:24:15 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: completed -> disconnected
Sep 11 11:24:15 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 11:24:15 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Sep 11 11:24:18 BlackBox wpa_supplicant[1158]: wlan0: SME: Trying to authenticate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2447 MHz)
Sep 11 11:24:18 BlackBox kernel: [  533.370652] wlan0: authenticate with 84:9c:a6:a2:e7:b6
Sep 11 11:24:18 BlackBox kernel: [  533.378630] wlan0: send auth to 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 11:24:18 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: scanning -> authenticating
Sep 11 11:24:18 BlackBox wpa_supplicant[1158]: wlan0: Trying to associate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2447 MHz)
Sep 11 11:24:18 BlackBox kernel: [  533.386630] wlan0: authenticated
Sep 11 11:24:18 BlackBox kernel: [  533.388181] wlan0: associate with 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 11:24:18 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: authenticating -> associating
Sep 11 11:24:18 BlackBox wpa_supplicant[1158]: wlan0: Associated with 84:9c:a6:a2:e7:b6
Sep 11 11:24:18 BlackBox kernel: [  533.400396] wlan0: RX AssocResp from 84:9c:a6:a2:e7:b6 (capab=0x431 status=0 aid=1)
Sep 11 11:24:18 BlackBox kernel: [  533.400710] wlan0: associated
Sep 11 11:24:18 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: associating -> associated
Sep 11 11:24:18 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: associated -> 4-way handshake
Sep 11 11:24:22 BlackBox wpa_supplicant[1158]: wlan0: WPA: Key negotiation completed with 84:9c:a6:a2:e7:b6 [PTK=CCMP GTK=CCMP]
Sep 11 11:24:22 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-CONNECTED - Connection to 84:9c:a6:a2:e7:b6 completed [id=0 id_str=]
Sep 11 11:24:22 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Sep 11 11:24:31 BlackBox kernel: [  546.447962] wlan0: deauthenticated from 84:9c:a6:a2:e7:b6 (Reason: 3)
Sep 11 11:24:31 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-DISCONNECTED bssid=84:9c:a6:a2:e7:b6 reason=3
Sep 11 11:24:31 BlackBox NetworkManager[883]: <warn> Connection disconnected (reason 3)
Sep 11 11:24:31 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: completed -> disconnected
Sep 11 11:24:32 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 11:24:32 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Sep 11 11:24:35 BlackBox wpa_supplicant[1158]: wlan0: SME: Trying to authenticate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2447 MHz)
Sep 11 11:24:35 BlackBox kernel: [  550.246134] wlan0: authenticate with 84:9c:a6:a2:e7:b6
Sep 11 11:24:35 BlackBox kernel: [  550.251077] wlan0: send auth to 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 11:24:35 BlackBox wpa_supplicant[1158]: wlan0: Trying to associate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2447 MHz)
Sep 11 11:24:35 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: scanning -> authenticating
Sep 11 11:24:35 BlackBox kernel: [  550.258683] wlan0: authenticated
Sep 11 11:24:35 BlackBox kernel: [  550.260038] wlan0: associate with 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 11:24:35 BlackBox kernel: [  550.267197] wlan0: RX AssocResp from 84:9c:a6:a2:e7:b6 (capab=0x431 status=0 aid=1)
Sep 11 11:24:35 BlackBox kernel: [  550.267489] wlan0: associated
Sep 11 11:24:35 BlackBox wpa_supplicant[1158]: wlan0: Associated with 84:9c:a6:a2:e7:b6
Sep 11 11:24:35 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: authenticating -> associating
Sep 11 11:24:35 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: associating -> associated
Sep 11 11:24:35 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: associated -> 4-way handshake
Sep 11 11:24:35 BlackBox wpa_supplicant[1158]: wlan0: WPA: Key negotiation completed with 84:9c:a6:a2:e7:b6 [PTK=CCMP GTK=CCMP]
Sep 11 11:24:35 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-CONNECTED - Connection to 84:9c:a6:a2:e7:b6 completed [id=0 id_str=]
Sep 11 11:24:35 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Sep 11 11:25:04 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 11:25:38 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-DISCONNECTED bssid=84:9c:a6:a2:e7:b6 reason=4 locally_generated=1
Sep 11 11:25:38 BlackBox NetworkManager[883]: <warn> Connection disconnected (reason -4)
Sep 11 11:25:38 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: completed -> disconnected
Sep 11 11:25:38 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 11:25:38 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Sep 11 11:25:42 BlackBox wpa_supplicant[1158]: wlan0: SME: Trying to authenticate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2447 MHz)
Sep 11 11:25:42 BlackBox kernel: [  616.825159] wlan0: authenticate with 84:9c:a6:a2:e7:b6
Sep 11 11:25:42 BlackBox kernel: [  616.830941] wlan0: send auth to 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 11:25:42 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: scanning -> authenticating
Sep 11 11:25:42 BlackBox kernel: [  616.872089] wlan0: send auth to 84:9c:a6:a2:e7:b6 (try 2/3)
Sep 11 11:25:42 BlackBox kernel: [  616.978013] wlan0: send auth to 84:9c:a6:a2:e7:b6 (try 3/3)
Sep 11 11:25:42 BlackBox kernel: [  617.006687] wlan0: authentication with 84:9c:a6:a2:e7:b6 timed out
Sep 11 11:25:42 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: authenticating -> disconnected
Sep 11 11:25:42 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 11:25:42 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Sep 11 11:25:53 BlackBox NetworkManager[883]: <warn> (wlan0): link timed out.
Sep 11 11:25:53 BlackBox NetworkManager[883]: <info> (wlan0): device state change: activated -> failed (reason 'SSID not found') [100 120 53]
Sep 11 11:25:53 BlackBox NetworkManager[883]: <info> NetworkManager state is now DISCONNECTED
Sep 11 11:25:53 BlackBox NetworkManager[883]: <warn> Activation (wlan0) failed for connection 'Copboco'
Sep 11 11:25:53 BlackBox NetworkManager[883]: <info> (wlan0): device state change: failed -> disconnected (reason 'none') [120 30 0]
Sep 11 11:25:53 BlackBox NetworkManager[883]: <info> (wlan0): deactivating device (reason 'none') [0]
Sep 11 11:25:53 BlackBox NetworkManager[883]: <info> (wlan0): canceled DHCP transaction, DHCP client pid 3127
Sep 11 11:25:53 BlackBox avahi-daemon[835]: Withdrawing address record for fe80::21c:26ff:feb4:1649 on wlan0.
Sep 11 11:25:53 BlackBox avahi-daemon[835]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::21c:26ff:feb4:1649.
Sep 11 11:25:53 BlackBox avahi-daemon[835]: Interface wlan0.IPv6 no longer relevant for mDNS.
Sep 11 11:25:53 BlackBox avahi-daemon[835]: Withdrawing address record for 192.168.1.5 on wlan0.
Sep 11 11:25:53 BlackBox avahi-daemon[835]: Leaving mDNS multicast group on interface wlan0.IPv4 with address 192.168.1.5.
Sep 11 11:25:53 BlackBox avahi-daemon[835]: Interface wlan0.IPv4 no longer relevant for mDNS.
Sep 11 11:25:53 BlackBox kernel: [  628.300790] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
Sep 11 11:25:53 BlackBox NetworkManager[883]: <warn> DNS: plugin dnsmasq update failed
Sep 11 11:25:53 BlackBox NetworkManager[883]: <info> Removing DNS information from /sbin/resolvconf
Sep 11 11:25:51 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 11:25:53 BlackBox wpa_supplicant[1158]: wlan0: Reject scan trigger since one is already pending
Sep 11 11:25:53 BlackBox NetworkManager[883]: <warn> Couldn't disconnect supplicant interface: This interface is not connected.
Sep 11 11:25:55 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: scanning -> inactive
Sep 11 11:25:57 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Auto-activating connection 'Copboco'.
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Activation (wlan0) starting connection 'Copboco'
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> (wlan0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> NetworkManager state is now CONNECTING
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Activation (wlan0/wireless): access point 'Copboco' has security, but secrets are required.
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> (wlan0): device state change: config -> need-auth (reason 'none') [50 60 0]
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> (wlan0): device state change: need-auth -> prepare (reason 'none') [60 40 0]
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Activation (wlan0/wireless): connection 'Copboco' has security, and secrets exist.  No new secrets needed.
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Config: added 'ssid' value 'Copboco'
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Config: added 'scan_ssid' value '1'
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Config: added 'key_mgmt' value 'WPA-PSK'
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Config: added 'psk' value '<omitted>'
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Config: set interface ap_scan to 1
Sep 11 11:26:20 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 11:26:24 BlackBox wpa_supplicant[1158]: wlan0: SME: Trying to authenticate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2417 MHz)
Sep 11 11:26:24 BlackBox kernel: [  658.697128] wlan0: authenticate with 84:9c:a6:a2:e7:b6
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: inactive -> authenticating
Sep 11 11:26:24 BlackBox kernel: [  658.716319] wlan0: send auth to 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 11:26:24 BlackBox wpa_supplicant[1158]: wlan0: Trying to associate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2417 MHz)
Sep 11 11:26:24 BlackBox kernel: [  658.724169] wlan0: authenticated
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: authenticating -> associating
Sep 11 11:26:24 BlackBox kernel: [  658.728154] wlan0: associate with 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 11:26:24 BlackBox wpa_supplicant[1158]: wlan0: Associated with 84:9c:a6:a2:e7:b6
Sep 11 11:26:24 BlackBox kernel: [  658.750811] wlan0: RX AssocResp from 84:9c:a6:a2:e7:b6 (capab=0x431 status=0 aid=1)
Sep 11 11:26:24 BlackBox kernel: [  658.751103] wlan0: associated
Sep 11 11:26:24 BlackBox kernel: [  658.751141] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: associating -> associated
Sep 11 11:26:24 BlackBox wpa_supplicant[1158]: wlan0: WPA: Key negotiation completed with 84:9c:a6:a2:e7:b6 [PTK=CCMP GTK=CCMP]
Sep 11 11:26:24 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-CONNECTED - Connection to 84:9c:a6:a2:e7:b6 completed [id=0 id_str=]
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: associated -> completed
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Activation (wlan0/wireless) Stage 2 of 5 (Device Configure) successful.  Connected to wireless network 'Copboco'.
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) scheduled.
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) started...
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> (wlan0): device state change: config -> ip-config (reason 'none') [50 70 0]
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Activation (wlan0) Beginning DHCPv4 transaction (timeout in 45 seconds)
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> dhclient started with pid 3503
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) complete.
Sep 11 11:26:24 BlackBox dhclient: Internet Systems Consortium DHCP Client 4.2.4
Sep 11 11:26:24 BlackBox dhclient: Copyright 2004-2012 Internet Systems Consortium.
Sep 11 11:26:24 BlackBox NetworkManager[883]: <info> (wlan0): DHCPv4 state changed nbi -> preinit
Sep 11 11:26:24 BlackBox dhclient: Listening on LPF/wlan0/00:1c:26:b4:16:49
Sep 11 11:26:24 BlackBox dhclient: Sending on   LPF/wlan0/00:1c:26:b4:16:49
Sep 11 11:26:24 BlackBox dhclient: DHCPREQUEST of 192.168.1.5 on wlan0 to 255.255.255.255 port 67 (xid=0x691621c0)
Sep 11 11:26:25 BlackBox avahi-daemon[835]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::21c:26ff:feb4:1649.
Sep 11 11:26:25 BlackBox avahi-daemon[835]: New relevant interface wlan0.IPv6 for mDNS.
Sep 11 11:26:25 BlackBox avahi-daemon[835]: Registering new address record for fe80::21c:26ff:feb4:1649 on wlan0.*.
Sep 11 11:26:27 BlackBox kernel: [  662.273878] e1000e 0000:00:19.0 eth1: MAC Wakeup cause - Link Status Change
Sep 11 11:26:27 BlackBox dhclient: DHCPREQUEST of 192.168.1.5 on wlan0 to 255.255.255.255 port 67 (xid=0x691621c0)
Sep 11 11:26:27 BlackBox NetworkManager[883]: <info> (wlan0): DHCPv4 state changed preinit -> reboot
Sep 11 11:26:27 BlackBox NetworkManager[883]: <info>   address 192.168.1.5
Sep 11 11:26:27 BlackBox NetworkManager[883]: <info>   prefix 24 (255.255.255.0)
Sep 11 11:26:27 BlackBox NetworkManager[883]: <info>   gateway 192.168.1.1
Sep 11 11:26:27 BlackBox NetworkManager[883]: <info>   nameserver '192.168.1.1'
Sep 11 11:26:27 BlackBox NetworkManager[883]: <info>   domain name 'localdomain'
Sep 11 11:26:27 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Configure Commit) scheduled...
Sep 11 11:26:27 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) started...
Sep 11 11:26:27 BlackBox avahi-daemon[835]: Joining mDNS multicast group on interface wlan0.IPv4 with address 192.168.1.5.
Sep 11 11:26:27 BlackBox avahi-daemon[835]: New relevant interface wlan0.IPv4 for mDNS.
Sep 11 11:26:27 BlackBox avahi-daemon[835]: Registering new address record for 192.168.1.5 on wlan0.IPv4.
Sep 11 11:26:28 BlackBox NetworkManager[883]: <info> (wlan0): device state change: ip-config -> secondaries (reason 'none') [70 90 0]
Sep 11 11:26:28 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) complete.
Sep 11 11:26:28 BlackBox NetworkManager[883]: <info> (wlan0): device state change: secondaries -> activated (reason 'none') [90 100 0]
Sep 11 11:26:29 BlackBox kernel: [  663.888929] e1000e: eth1 NIC Link is Up 100 Mbps Full Duplex, Flow Control: Rx/Tx
Sep 11 11:26:29 BlackBox kernel: [  663.889042] e1000e 0000:00:19.0 eth1: 10/100 speed: disabling TSO
Sep 11 11:26:29 BlackBox kernel: [  663.889078] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
Sep 11 11:26:30 BlackBox avahi-daemon[835]: Joining mDNS multicast group on interface eth1.IPv6 with address fe80::221:86ff:fe52:9b22.
Sep 11 11:26:30 BlackBox avahi-daemon[835]: New relevant interface eth1.IPv6 for mDNS.
Sep 11 11:26:30 BlackBox avahi-daemon[835]: Registering new address record for fe80::221:86ff:fe52:9b22 on eth1.*.
Sep 11 11:26:37 BlackBox NetworkManager[883]: <info> NetworkManager state is now CONNECTED_GLOBAL
Sep 11 11:26:37 BlackBox NetworkManager[883]: <info> Policy set 'Copboco' (wlan0) as default for IPv4 routing and DNS.
Sep 11 11:26:37 BlackBox NetworkManager[883]: <info> Writing DNS information to /sbin/resolvconf
Sep 11 11:26:47 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-DISCONNECTED bssid=84:9c:a6:a2:e7:b6 reason=3 locally_generated=1
Sep 11 11:26:47 BlackBox kernel: [  675.986661] wlan0: deauthenticating from 84:9c:a6:a2:e7:b6 by local choice (reason=3)
Sep 11 11:26:47 BlackBox kernel: [  677.696586] e1000e 0000:00:19.0 eth1: MAC Wakeup cause - Link Status Change
Sep 11 11:26:47 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 11:26:47 BlackBox kernel: [  679.340935] e1000e: eth1 NIC Link is Up 100 Mbps Full Duplex, Flow Control: Rx/Tx
Sep 11 11:26:47 BlackBox kernel: [  679.341049] e1000e 0000:00:19.0 eth1: 10/100 speed: disabling TSO
Sep 11 11:26:51 BlackBox wpa_supplicant[1158]: wlan0: SME: Trying to authenticate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2417 MHz)
Sep 11 11:26:51 BlackBox kernel: [  683.513127] wlan0: authenticate with 84:9c:a6:a2:e7:b6
Sep 11 11:26:51 BlackBox kernel: [  683.518949] wlan0: send auth to 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 11:26:51 BlackBox wpa_supplicant[1158]: wlan0: Trying to associate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2417 MHz)
Sep 11 11:26:51 BlackBox kernel: [  683.526551] wlan0: authenticated
Sep 11 11:26:51 BlackBox kernel: [  683.532418] wlan0: associate with 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 11:26:51 BlackBox wpa_supplicant[1158]: wlan0: Associated with 84:9c:a6:a2:e7:b6
Sep 11 11:26:51 BlackBox kernel: [  683.544640] wlan0: RX AssocResp from 84:9c:a6:a2:e7:b6 (capab=0x431 status=0 aid=1)
Sep 11 11:26:51 BlackBox kernel: [  683.544928] wlan0: associated
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> Activation (wlan0) successful, device activated.
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> (eth1): carrier now ON (device state 20)
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> (eth1): carrier now OFF (device state 20)
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> (eth1): carrier now ON (device state 20)
Sep 11 11:26:52 BlackBox NetworkManager[883]: <warn> Connection disconnected (reason -3)
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: completed -> disconnected
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: scanning -> authenticating
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: authenticating -> associating
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: associating -> associated
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: associated -> 4-way handshake
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> (eth1): device state change: unavailable -> disconnected (reason 'carrier-changed') [20 30 40]
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> Auto-activating connection 'Neue kabelgebundene Verbindung'.
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> Activation (eth1) starting connection 'Neue kabelgebundene Verbindung'
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> (eth1): device state change: disconnected -> prepare (reason 'none') [30 40 0]
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> Activation (eth1) Stage 1 of 5 (Device Prepare) scheduled...
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> Activation (eth1) Stage 1 of 5 (Device Prepare) started...
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> Activation (eth1) Stage 2 of 5 (Device Configure) scheduled...
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> Activation (eth1) Stage 1 of 5 (Device Prepare) complete.
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> Activation (eth1) Stage 2 of 5 (Device Configure) starting...
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> (eth1): device state change: prepare -> config (reason 'none') [40 50 0]
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> Activation (eth1) Stage 2 of 5 (Device Configure) successful.
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> Activation (eth1) Stage 3 of 5 (IP Configure Start) scheduled.
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> Activation (eth1) Stage 2 of 5 (Device Configure) complete.
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> Activation (eth1) Stage 3 of 5 (IP Configure Start) started...
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> (eth1): device state change: config -> ip-config (reason 'none') [50 70 0]
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> Activation (eth1) Beginning DHCPv4 transaction (timeout in 45 seconds)
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> dhclient started with pid 4078
Sep 11 11:26:52 BlackBox avahi-daemon[835]: Withdrawing address record for fe80::221:86ff:fe52:9b22 on eth1.
Sep 11 11:26:52 BlackBox avahi-daemon[835]: Leaving mDNS multicast group on interface eth1.IPv6 with address fe80::221:86ff:fe52:9b22.
Sep 11 11:26:52 BlackBox avahi-daemon[835]: Interface eth1.IPv6 no longer relevant for mDNS.
Sep 11 11:26:52 BlackBox NetworkManager[883]: <info> Activation (eth1) Stage 3 of 5 (IP Configure Start) complete.
Sep 11 11:26:52 BlackBox dhclient: Internet Systems Consortium DHCP Client 4.2.4
Sep 11 11:26:52 BlackBox dhclient: Copyright 2004-2012 Internet Systems Consortium.
Sep 11 11:26:54 BlackBox avahi-daemon[835]: Joining mDNS multicast group on interface eth1.IPv6 with address fe80::221:86ff:fe52:9b22.
Sep 11 11:26:54 BlackBox avahi-daemon[835]: New relevant interface eth1.IPv6 for mDNS.
Sep 11 11:26:54 BlackBox avahi-daemon[835]: Registering new address record for fe80::221:86ff:fe52:9b22 on eth1.*.
Sep 11 11:26:55 BlackBox NetworkManager[883]: <info> (eth1): DHCPv4 state changed nbi -> preinit
Sep 11 11:26:55 BlackBox dhclient: Listening on LPF/eth1/00:21:86:52:9b:22
Sep 11 11:26:55 BlackBox dhclient: Sending on   LPF/eth1/00:21:86:52:9b:22
Sep 11 11:26:55 BlackBox dhclient: DHCPREQUEST of 192.168.1.8 on eth1 to 255.255.255.255 port 67 (xid=0x39699df4)
Sep 11 11:26:55 BlackBox NetworkManager[883]: <info> (eth1): DHCPv4 state changed preinit -> reboot
Sep 11 11:26:55 BlackBox NetworkManager[883]: <info>   address 192.168.1.8
Sep 11 11:26:55 BlackBox NetworkManager[883]: <info>   prefix 24 (255.255.255.0)
Sep 11 11:26:55 BlackBox NetworkManager[883]: <info>   gateway 192.168.1.1
Sep 11 11:26:55 BlackBox NetworkManager[883]: <info>   nameserver '192.168.1.1'
Sep 11 11:26:55 BlackBox NetworkManager[883]: <info>   domain name 'localdomain'
Sep 11 11:26:55 BlackBox NetworkManager[883]: <info> Activation (eth1) Stage 5 of 5 (IPv4 Configure Commit) scheduled...
Sep 11 11:26:55 BlackBox NetworkManager[883]: <info> Activation (eth1) Stage 5 of 5 (IPv4 Commit) started...
Sep 11 11:26:55 BlackBox avahi-daemon[835]: Joining mDNS multicast group on interface eth1.IPv4 with address 192.168.1.8.
Sep 11 11:26:55 BlackBox avahi-daemon[835]: New relevant interface eth1.IPv4 for mDNS.
Sep 11 11:26:55 BlackBox avahi-daemon[835]: Registering new address record for 192.168.1.8 on eth1.IPv4.
Sep 11 11:26:56 BlackBox wpa_supplicant[1158]: wlan0: WPA: Key negotiation completed with 84:9c:a6:a2:e7:b6 [PTK=CCMP GTK=CCMP]
Sep 11 11:26:56 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-CONNECTED - Connection to 84:9c:a6:a2:e7:b6 completed [id=0 id_str=]
Sep 11 11:26:56 BlackBox NetworkManager[883]: <info> (eth1): device state change: ip-config -> secondaries (reason 'none') [70 90 0]
Sep 11 11:26:56 BlackBox NetworkManager[883]: <info> Activation (eth1) Stage 5 of 5 (IPv4 Commit) complete.
Sep 11 11:26:56 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Sep 11 11:26:56 BlackBox NetworkManager[883]: <info> (eth1): device state change: secondaries -> activated (reason 'none') [90 100 0]
Sep 11 11:26:58 BlackBox NetworkManager[883]: <info> Policy set 'Neue kabelgebundene Verbindung' (eth1) as default for IPv4 routing and DNS.
Sep 11 11:26:58 BlackBox NetworkManager[883]: <info> Writing DNS information to /sbin/resolvconf
Sep 11 11:26:58 BlackBox NetworkManager[883]: <info> Activation (eth1) successful, device activated.
Sep 11 11:26:58 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 11:32:02 BlackBox NetworkManager[883]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
Sep 11 11:43:18 BlackBox NetworkManager[883]: <info> sleep requested (sleeping: no  enabled: yes)
Sep 11 11:43:18 BlackBox NetworkManager[883]: <info> sleeping or disabling...
Sep 11 11:43:18 BlackBox NetworkManager[883]: <info> (eth1): device state change: activated -> unmanaged (reason 'sleeping') [100 10 37]
Sep 11 11:43:18 BlackBox NetworkManager[883]: <info> (eth1): deactivating device (reason 'sleeping') [37]
Sep 11 11:43:20 BlackBox kernel: [ 1672.464221] e1000e: eth1 NIC Link is Down
Sep 11 11:43:22 BlackBox NetworkManager[883]: <info> (eth1): canceled DHCP transaction, DHCP client pid 4078
Sep 11 11:43:22 BlackBox NetworkManager[883]: <info> Policy set 'Copboco' (wlan0) as default for IPv4 routing and DNS.
Sep 11 11:43:22 BlackBox avahi-daemon[835]: Withdrawing address record for fe80::221:86ff:fe52:9b22 on eth1.
Sep 11 11:43:22 BlackBox avahi-daemon[835]: Leaving mDNS multicast group on interface eth1.IPv6 with address fe80::221:86ff:fe52:9b22.
Sep 11 11:43:22 BlackBox avahi-daemon[835]: Interface eth1.IPv6 no longer relevant for mDNS.
Sep 11 11:43:22 BlackBox avahi-daemon[835]: Withdrawing address record for 192.168.1.8 on eth1.
Sep 11 11:43:22 BlackBox avahi-daemon[835]: Leaving mDNS multicast group on interface eth1.IPv4 with address 192.168.1.8.
Sep 11 11:43:22 BlackBox avahi-daemon[835]: Interface eth1.IPv4 no longer relevant for mDNS.
Sep 11 11:43:22 BlackBox kernel: [ 1674.330553] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
Sep 11 11:43:22 BlackBox NetworkManager[883]: <info> Writing DNS information to /sbin/resolvconf
Sep 11 11:43:22 BlackBox NetworkManager[883]: <info> (eth1): cleaning up...
Sep 11 11:43:22 BlackBox NetworkManager[883]: <info> (eth1): taking down device.
Sep 11 11:43:23 BlackBox NetworkManager[883]: <info> NetworkManager state is now ASLEEP
Sep 11 11:43:23 BlackBox NetworkManager[883]: <info> (wlan0): device state change: activated -> unmanaged (reason 'sleeping') [100 10 37]
Sep 11 11:43:23 BlackBox NetworkManager[883]: <info> (wlan0): deactivating device (reason 'sleeping') [37]
Sep 11 11:43:23 BlackBox NetworkManager[883]: <info> (wlan0): canceled DHCP transaction, DHCP client pid 3503
Sep 11 11:43:23 BlackBox avahi-daemon[835]: Withdrawing address record for fe80::21c:26ff:feb4:1649 on wlan0.
Sep 11 11:43:23 BlackBox avahi-daemon[835]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::21c:26ff:feb4:1649.
Sep 11 11:43:23 BlackBox avahi-daemon[835]: Interface wlan0.IPv6 no longer relevant for mDNS.
Sep 11 11:43:23 BlackBox avahi-daemon[835]: Withdrawing address record for 192.168.1.5 on wlan0.
Sep 11 11:43:23 BlackBox avahi-daemon[835]: Leaving mDNS multicast group on interface wlan0.IPv4 with address 192.168.1.5.
Sep 11 11:43:23 BlackBox avahi-daemon[835]: Interface wlan0.IPv4 no longer relevant for mDNS.
Sep 11 11:43:23 BlackBox NetworkManager[883]: <warn> DNS: plugin dnsmasq update failed
Sep 11 11:43:23 BlackBox NetworkManager[883]: <info> Removing DNS information from /sbin/resolvconf
Sep 11 11:41:50 BlackBox wpa_supplicant[1158]: message repeated 9 times: [ wlan0: CTRL-EVENT-SCAN-STARTED ]
Sep 11 11:43:23 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-DISCONNECTED bssid=84:9c:a6:a2:e7:b6 reason=3 locally_generated=1
Sep 11 11:43:23 BlackBox kernel: [ 1674.972310] wlan0: deauthenticating from 84:9c:a6:a2:e7:b6 by local choice (reason=3)
Sep 11 11:43:23 BlackBox NetworkManager[883]: <info> (wlan0): cleaning up...
Sep 11 11:43:23 BlackBox NetworkManager[883]: <info> (wlan0): taking down device.
Sep 11 11:43:23 BlackBox NetworkManager[883]: <info> wake requested (sleeping: yes  enabled: yes)
Sep 11 11:43:23 BlackBox NetworkManager[883]: <info> waking up and re-enabling...
Sep 11 11:43:23 BlackBox NetworkManager[883]: <info> WWAN now enabled by management service
Sep 11 11:43:23 BlackBox NetworkManager[883]: <info> (eth1): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Sep 11 11:43:23 BlackBox NetworkManager[883]: <info> (eth1): bringing up device.
Sep 11 13:07:32 BlackBox kernel: [ 1675.792301] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
Sep 11 13:07:32 BlackBox NetworkManager[883]: <info> (eth1): preparing device.
Sep 11 13:07:32 BlackBox NetworkManager[883]: <info> (eth1): deactivating device (reason 'managed') [2]
Sep 11 13:07:32 BlackBox NetworkManager[883]: <info> Unmanaged Device found; state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
Sep 11 13:07:32 BlackBox NetworkManager[883]: <info> Unmanaged Device found; state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
Sep 11 13:07:32 BlackBox NetworkManager[883]: <info> NetworkManager state is now CONNECTED_GLOBAL
Sep 11 13:07:32 BlackBox NetworkManager[883]: <info> Unmanaged Device found; state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
Sep 11 13:07:32 BlackBox NetworkManager[883]: <info> (wlan0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Sep 11 13:07:32 BlackBox NetworkManager[883]: <info> (wlan0): bringing up device.
Sep 11 13:07:32 BlackBox NetworkManager[883]: <info> (wlan0): preparing device.
Sep 11 13:07:32 BlackBox NetworkManager[883]: <info> (wlan0): deactivating device (reason 'managed') [2]
Sep 11 13:07:32 BlackBox NetworkManager[883]: <info> NetworkManager state is now DISCONNECTED
Sep 11 13:07:32 BlackBox kernel: [ 1678.984606] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
Sep 11 13:07:32 BlackBox NetworkManager[883]: <info> (wlan0) supports 4 scan SSIDs
Sep 11 13:07:32 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: starting -> ready
Sep 11 13:07:32 BlackBox NetworkManager[883]: <info> (wlan0): device state change: unavailable -> disconnected (reason 'supplicant-available') [20 30 42]
Sep 11 13:07:32 BlackBox NetworkManager[883]: <warn> Trying to remove a non-existant call id.
Sep 11 13:07:32 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 13:07:32 BlackBox wpa_supplicant[1158]: wlan0: Reject scan trigger since one is already pending
Sep 11 13:07:32 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: ready -> disconnected
Sep 11 13:07:32 BlackBox NetworkManager[883]: <info> (wlan0) supports 4 scan SSIDs
Sep 11 13:07:37 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: disconnected -> inactive
Sep 11 13:07:37 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 13:07:37 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: inactive -> scanning
Sep 11 13:07:41 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: scanning -> inactive
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> Auto-activating connection 'Copboco'.
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> Activation (wlan0) starting connection 'Copboco'
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> (wlan0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> NetworkManager state is now CONNECTING
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> Activation (wlan0/wireless): access point 'Copboco' has security, but secrets are required.
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> (wlan0): device state change: config -> need-auth (reason 'none') [50 60 0]
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> (wlan0): device state change: need-auth -> prepare (reason 'none') [60 40 0]
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> Activation (wlan0/wireless): connection 'Copboco' has security, and secrets exist.  No new secrets needed.
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> Config: added 'ssid' value 'Copboco'
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> Config: added 'scan_ssid' value '1'
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> Config: added 'key_mgmt' value 'WPA-PSK'
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> Config: added 'psk' value '<omitted>'
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> Config: set interface ap_scan to 1
Sep 11 13:19:31 BlackBox wpa_supplicant[1158]: message repeated 13 times: [ wlan0: CTRL-EVENT-SCAN-STARTED ]
Sep 11 13:19:35 BlackBox wpa_supplicant[1158]: wlan0: SME: Trying to authenticate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2457 MHz)
Sep 11 13:19:35 BlackBox kernel: [ 2401.588665] wlan0: authenticate with 84:9c:a6:a2:e7:b6
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: inactive -> authenticating
Sep 11 13:19:35 BlackBox kernel: [ 2401.594266] wlan0: send auth to 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 13:19:35 BlackBox wpa_supplicant[1158]: wlan0: Trying to associate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2457 MHz)
Sep 11 13:19:35 BlackBox kernel: [ 2401.601875] wlan0: authenticated
Sep 11 13:19:35 BlackBox kernel: [ 2401.604141] wlan0: associate with 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: authenticating -> associating
Sep 11 13:19:35 BlackBox kernel: [ 2401.622587] wlan0: RX AssocResp from 84:9c:a6:a2:e7:b6 (capab=0x431 status=0 aid=1)
Sep 11 13:19:35 BlackBox kernel: [ 2401.622882] wlan0: associated
Sep 11 13:19:35 BlackBox kernel: [ 2401.622917] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
Sep 11 13:19:35 BlackBox wpa_supplicant[1158]: wlan0: Associated with 84:9c:a6:a2:e7:b6
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: associating -> associated
Sep 11 13:19:35 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: associated -> 4-way handshake
Sep 11 13:19:36 BlackBox avahi-daemon[835]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::21c:26ff:feb4:1649.
Sep 11 13:19:36 BlackBox avahi-daemon[835]: New relevant interface wlan0.IPv6 for mDNS.
Sep 11 13:19:36 BlackBox avahi-daemon[835]: Registering new address record for fe80::21c:26ff:feb4:1649 on wlan0.*.
Sep 11 13:19:39 BlackBox wpa_supplicant[1158]: wlan0: WPA: Key negotiation completed with 84:9c:a6:a2:e7:b6 [PTK=CCMP GTK=CCMP]
Sep 11 13:19:39 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-CONNECTED - Connection to 84:9c:a6:a2:e7:b6 completed [id=0 id_str=]
Sep 11 13:19:39 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Sep 11 13:19:39 BlackBox NetworkManager[883]: <info> Activation (wlan0/wireless) Stage 2 of 5 (Device Configure) successful.  Connected to wireless network 'Copboco'.
Sep 11 13:19:39 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) scheduled.
Sep 11 13:19:39 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) started...
Sep 11 13:19:39 BlackBox NetworkManager[883]: <info> (wlan0): device state change: config -> ip-config (reason 'none') [50 70 0]
Sep 11 13:19:39 BlackBox NetworkManager[883]: <info> Activation (wlan0) Beginning DHCPv4 transaction (timeout in 45 seconds)
Sep 11 13:19:39 BlackBox NetworkManager[883]: <info> dhclient started with pid 5915
Sep 11 13:19:39 BlackBox avahi-daemon[835]: Withdrawing address record for fe80::21c:26ff:feb4:1649 on wlan0.
Sep 11 13:19:39 BlackBox avahi-daemon[835]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::21c:26ff:feb4:1649.
Sep 11 13:19:39 BlackBox avahi-daemon[835]: Interface wlan0.IPv6 no longer relevant for mDNS.
Sep 11 13:19:39 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) complete.
Sep 11 13:19:39 BlackBox dhclient: Internet Systems Consortium DHCP Client 4.2.4
Sep 11 13:19:39 BlackBox dhclient: Copyright 2004-2012 Internet Systems Consortium.
Sep 11 13:19:39 BlackBox NetworkManager[883]: <info> (wlan0): DHCPv4 state changed nbi -> preinit
Sep 11 13:19:39 BlackBox dhclient: Listening on LPF/wlan0/00:1c:26:b4:16:49
Sep 11 13:19:39 BlackBox dhclient: Sending on   LPF/wlan0/00:1c:26:b4:16:49
Sep 11 13:19:39 BlackBox dhclient: DHCPREQUEST of 192.168.1.5 on wlan0 to 255.255.255.255 port 67 (xid=0x3672dd24)
Sep 11 13:19:40 BlackBox avahi-daemon[835]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::21c:26ff:feb4:1649.
Sep 11 13:19:40 BlackBox avahi-daemon[835]: New relevant interface wlan0.IPv6 for mDNS.
Sep 11 13:19:40 BlackBox avahi-daemon[835]: Registering new address record for fe80::21c:26ff:feb4:1649 on wlan0.*.
Sep 11 13:19:42 BlackBox dhclient: DHCPREQUEST of 192.168.1.5 on wlan0 to 255.255.255.255 port 67 (xid=0x3672dd24)
Sep 11 13:19:42 BlackBox NetworkManager[883]: <info> (wlan0): DHCPv4 state changed preinit -> reboot
Sep 11 13:19:42 BlackBox NetworkManager[883]: <info>   address 192.168.1.5
Sep 11 13:19:42 BlackBox NetworkManager[883]: <info>   prefix 24 (255.255.255.0)
Sep 11 13:19:42 BlackBox NetworkManager[883]: <info>   gateway 192.168.1.1
Sep 11 13:19:42 BlackBox NetworkManager[883]: <info>   nameserver '192.168.1.1'
Sep 11 13:19:42 BlackBox NetworkManager[883]: <info>   domain name 'localdomain'
Sep 11 13:19:42 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Configure Commit) scheduled...
Sep 11 13:19:42 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) started...
Sep 11 13:19:42 BlackBox avahi-daemon[835]: Joining mDNS multicast group on interface wlan0.IPv4 with address 192.168.1.5.
Sep 11 13:19:42 BlackBox avahi-daemon[835]: New relevant interface wlan0.IPv4 for mDNS.
Sep 11 13:19:42 BlackBox avahi-daemon[835]: Registering new address record for 192.168.1.5 on wlan0.IPv4.
Sep 11 13:19:43 BlackBox NetworkManager[883]: <info> (wlan0): device state change: ip-config -> secondaries (reason 'none') [70 90 0]
Sep 11 13:19:43 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) complete.
Sep 11 13:19:43 BlackBox NetworkManager[883]: <info> (wlan0): device state change: secondaries -> activated (reason 'none') [90 100 0]
Sep 11 13:19:43 BlackBox NetworkManager[883]: <info> NetworkManager state is now CONNECTED_GLOBAL
Sep 11 13:19:43 BlackBox NetworkManager[883]: <info> Policy set 'Copboco' (wlan0) as default for IPv4 routing and DNS.
Sep 11 13:19:43 BlackBox NetworkManager[883]: <info> Writing DNS information to /sbin/resolvconf
Sep 11 13:19:49 BlackBox NetworkManager[883]: <info> Activation (wlan0) successful, device activated.
Sep 11 13:20:35 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 13:20:47 BlackBox NetworkManager[883]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
Sep 11 13:20:47 BlackBox NetworkManager[883]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
Sep 11 13:34:01 BlackBox NetworkManager[883]: <info> sleep requested (sleeping: no  enabled: yes)
Sep 11 13:34:01 BlackBox NetworkManager[883]: <info> sleeping or disabling...
Sep 11 13:34:01 BlackBox NetworkManager[883]: <info> (eth1): device state change: unavailable -> unmanaged (reason 'sleeping') [20 10 37]
Sep 11 13:34:01 BlackBox NetworkManager[883]: <info> (eth1): cleaning up...
Sep 11 13:34:01 BlackBox NetworkManager[883]: <info> (eth1): taking down device.
Sep 11 13:34:01 BlackBox NetworkManager[883]: <info> NetworkManager state is now ASLEEP
Sep 11 13:34:01 BlackBox NetworkManager[883]: <info> (wlan0): device state change: activated -> unmanaged (reason 'sleeping') [100 10 37]
Sep 11 13:34:01 BlackBox NetworkManager[883]: <info> (wlan0): deactivating device (reason 'sleeping') [37]
Sep 11 13:34:02 BlackBox NetworkManager[883]: <info> (wlan0): canceled DHCP transaction, DHCP client pid 5915
Sep 11 13:34:02 BlackBox avahi-daemon[835]: Withdrawing address record for fe80::21c:26ff:feb4:1649 on wlan0.
Sep 11 13:34:02 BlackBox avahi-daemon[835]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::21c:26ff:feb4:1649.
Sep 11 13:34:02 BlackBox avahi-daemon[835]: Interface wlan0.IPv6 no longer relevant for mDNS.
Sep 11 13:34:02 BlackBox avahi-daemon[835]: Withdrawing address record for 192.168.1.5 on wlan0.
Sep 11 13:34:02 BlackBox avahi-daemon[835]: Leaving mDNS multicast group on interface wlan0.IPv4 with address 192.168.1.5.
Sep 11 13:34:02 BlackBox avahi-daemon[835]: Interface wlan0.IPv4 no longer relevant for mDNS.
Sep 11 13:33:27 BlackBox wpa_supplicant[1158]: message repeated 8 times: [ wlan0: CTRL-EVENT-SCAN-STARTED ]
Sep 11 13:34:02 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-DISCONNECTED bssid=84:9c:a6:a2:e7:b6 reason=3 locally_generated=1
Sep 11 13:34:02 BlackBox kernel: [ 3267.589859] wlan0: deauthenticating from 84:9c:a6:a2:e7:b6 by local choice (reason=3)
Sep 11 13:34:02 BlackBox NetworkManager[883]: <warn> DNS: plugin dnsmasq update failed
Sep 11 13:34:02 BlackBox NetworkManager[883]: <info> Removing DNS information from /sbin/resolvconf
Sep 11 13:34:02 BlackBox NetworkManager[883]: <info> (wlan0): cleaning up...
Sep 11 13:34:02 BlackBox NetworkManager[883]: <info> (wlan0): taking down device.
Sep 11 18:11:28 BlackBox NetworkManager[883]: <info> wake requested (sleeping: yes  enabled: yes)
Sep 11 18:11:28 BlackBox NetworkManager[883]: <info> waking up and re-enabling...
Sep 11 18:11:28 BlackBox NetworkManager[883]: <info> (eth1): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Sep 11 18:11:28 BlackBox NetworkManager[883]: <info> (eth1): bringing up device.
Sep 11 18:11:29 BlackBox kernel: [ 3272.348282] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
Sep 11 18:11:29 BlackBox NetworkManager[883]: <info> (eth1): preparing device.
Sep 11 18:11:29 BlackBox NetworkManager[883]: <info> (eth1): deactivating device (reason 'managed') [2]
Sep 11 18:11:29 BlackBox NetworkManager[883]: <info> Unmanaged Device found; state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
Sep 11 18:11:29 BlackBox NetworkManager[883]: <info> Unmanaged Device found; state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
Sep 11 18:11:29 BlackBox NetworkManager[883]: <info> NetworkManager state is now CONNECTED_GLOBAL
Sep 11 18:11:29 BlackBox NetworkManager[883]: <info> Unmanaged Device found; state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
Sep 11 18:11:29 BlackBox NetworkManager[883]: <info> (wlan0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Sep 11 18:11:29 BlackBox NetworkManager[883]: <info> (wlan0): bringing up device.
Sep 11 18:11:29 BlackBox NetworkManager[883]: <info> (wlan0): preparing device.
Sep 11 18:11:29 BlackBox NetworkManager[883]: <info> (wlan0): deactivating device (reason 'managed') [2]
Sep 11 18:11:29 BlackBox NetworkManager[883]: <info> NetworkManager state is now DISCONNECTED
Sep 11 18:11:29 BlackBox kernel: [ 3272.393198] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
Sep 11 18:11:29 BlackBox NetworkManager[883]: <info> (wlan0) supports 4 scan SSIDs
Sep 11 18:11:29 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: starting -> ready
Sep 11 18:11:29 BlackBox NetworkManager[883]: <info> (wlan0): device state change: unavailable -> disconnected (reason 'supplicant-available') [20 30 42]
Sep 11 18:11:29 BlackBox NetworkManager[883]: <warn> Trying to remove a non-existant call id.
Sep 11 18:11:29 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 18:11:29 BlackBox wpa_supplicant[1158]: wlan0: Reject scan trigger since one is already pending
Sep 11 18:11:29 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: ready -> disconnected
Sep 11 18:11:29 BlackBox NetworkManager[883]: <info> (wlan0) supports 4 scan SSIDs
Sep 11 18:11:33 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: disconnected -> inactive
Sep 11 18:11:52 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Auto-activating connection 'Copboco'.
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Activation (wlan0) starting connection 'Copboco'
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> (wlan0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> NetworkManager state is now CONNECTING
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Activation (wlan0/wireless): access point 'Copboco' has security, but secrets are required.
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> (wlan0): device state change: config -> need-auth (reason 'none') [50 60 0]
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> (wlan0): device state change: need-auth -> prepare (reason 'none') [60 40 0]
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Activation (wlan0/wireless): connection 'Copboco' has security, and secrets exist.  No new secrets needed.
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Config: added 'ssid' value 'Copboco'
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Config: added 'scan_ssid' value '1'
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Config: added 'key_mgmt' value 'WPA-PSK'
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Config: added 'psk' value '<omitted>'
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Config: set interface ap_scan to 1
Sep 11 18:12:25 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 18:12:29 BlackBox wpa_supplicant[1158]: wlan0: SME: Trying to authenticate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2457 MHz)
Sep 11 18:12:29 BlackBox kernel: [ 3332.630440] wlan0: authenticate with 84:9c:a6:a2:e7:b6
Sep 11 18:12:29 BlackBox kernel: [ 3332.630680] wlan0: send auth to 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: inactive -> authenticating
Sep 11 18:12:29 BlackBox wpa_supplicant[1158]: wlan0: Trying to associate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2457 MHz)
Sep 11 18:12:29 BlackBox kernel: [ 3332.638299] wlan0: authenticated
Sep 11 18:12:29 BlackBox kernel: [ 3332.640101] wlan0: associate with 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: authenticating -> associating
Sep 11 18:12:29 BlackBox wpa_supplicant[1158]: wlan0: Associated with 84:9c:a6:a2:e7:b6
Sep 11 18:12:29 BlackBox kernel: [ 3332.669074] wlan0: RX AssocResp from 84:9c:a6:a2:e7:b6 (capab=0x431 status=0 aid=1)
Sep 11 18:12:29 BlackBox kernel: [ 3332.669368] wlan0: associated
Sep 11 18:12:29 BlackBox kernel: [ 3332.669403] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: associating -> associated
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: associated -> 4-way handshake
Sep 11 18:12:29 BlackBox wpa_supplicant[1158]: wlan0: WPA: Key negotiation completed with 84:9c:a6:a2:e7:b6 [PTK=CCMP GTK=CCMP]
Sep 11 18:12:29 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-CONNECTED - Connection to 84:9c:a6:a2:e7:b6 completed [id=0 id_str=]
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Activation (wlan0/wireless) Stage 2 of 5 (Device Configure) successful.  Connected to wireless network 'Copboco'.
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) scheduled.
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) started...
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> (wlan0): device state change: config -> ip-config (reason 'none') [50 70 0]
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Activation (wlan0) Beginning DHCPv4 transaction (timeout in 45 seconds)
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> dhclient started with pid 7140
Sep 11 18:12:29 BlackBox dhclient: Internet Systems Consortium DHCP Client 4.2.4
Sep 11 18:12:29 BlackBox dhclient: Copyright 2004-2012 Internet Systems Consortium.
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) complete.
Sep 11 18:12:29 BlackBox NetworkManager[883]: <info> (wlan0): DHCPv4 state changed nbi -> preinit
Sep 11 18:12:29 BlackBox dhclient: Listening on LPF/wlan0/00:1c:26:b4:16:49
Sep 11 18:12:29 BlackBox dhclient: Sending on   LPF/wlan0/00:1c:26:b4:16:49
Sep 11 18:12:29 BlackBox dhclient: DHCPREQUEST of 192.168.1.5 on wlan0 to 255.255.255.255 port 67 (xid=0x14f3156c)
Sep 11 18:12:31 BlackBox avahi-daemon[835]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::21c:26ff:feb4:1649.
Sep 11 18:12:31 BlackBox avahi-daemon[835]: New relevant interface wlan0.IPv6 for mDNS.
Sep 11 18:12:31 BlackBox avahi-daemon[835]: Registering new address record for fe80::21c:26ff:feb4:1649 on wlan0.*.
Sep 11 18:12:32 BlackBox dhclient: DHCPREQUEST of 192.168.1.5 on wlan0 to 255.255.255.255 port 67 (xid=0x14f3156c)
Sep 11 18:12:32 BlackBox NetworkManager[883]: <info> (wlan0): DHCPv4 state changed preinit -> reboot
Sep 11 18:12:32 BlackBox NetworkManager[883]: <info>   address 192.168.1.5
Sep 11 18:12:32 BlackBox NetworkManager[883]: <info>   prefix 24 (255.255.255.0)
Sep 11 18:12:32 BlackBox NetworkManager[883]: <info>   gateway 192.168.1.1
Sep 11 18:12:32 BlackBox NetworkManager[883]: <info>   nameserver '192.168.1.1'
Sep 11 18:12:32 BlackBox NetworkManager[883]: <info>   domain name 'localdomain'
Sep 11 18:12:32 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Configure Commit) scheduled...
Sep 11 18:12:32 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) started...
Sep 11 18:12:32 BlackBox avahi-daemon[835]: Joining mDNS multicast group on interface wlan0.IPv4 with address 192.168.1.5.
Sep 11 18:12:32 BlackBox avahi-daemon[835]: New relevant interface wlan0.IPv4 for mDNS.
Sep 11 18:12:32 BlackBox avahi-daemon[835]: Registering new address record for 192.168.1.5 on wlan0.IPv4.
Sep 11 18:12:33 BlackBox NetworkManager[883]: <info> (wlan0): device state change: ip-config -> secondaries (reason 'none') [70 90 0]
Sep 11 18:12:33 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) complete.
Sep 11 18:12:33 BlackBox NetworkManager[883]: <info> (wlan0): device state change: secondaries -> activated (reason 'none') [90 100 0]
Sep 11 18:12:34 BlackBox NetworkManager[883]: <info> NetworkManager state is now CONNECTED_GLOBAL
Sep 11 18:12:34 BlackBox NetworkManager[883]: <info> Policy set 'Copboco' (wlan0) as default for IPv4 routing and DNS.
Sep 11 18:12:34 BlackBox NetworkManager[883]: <info> Writing DNS information to /sbin/resolvconf
Sep 11 18:12:41 BlackBox NetworkManager[883]: <info> Activation (wlan0) successful, device activated.
Sep 11 18:13:08 BlackBox wpa_supplicant[1158]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 18:19:14 BlackBox kernel: [    0.000000]   Transmeta GenuineTMx86
Sep 11 18:19:14 BlackBox kernel: [    0.089729] NET: Registered protocol family 16
Sep 11 18:19:14 BlackBox kernel: [    0.100924] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query honored via DMI
Sep 11 18:19:14 BlackBox kernel: [    0.153435] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
Sep 11 18:19:14 BlackBox kernel: [    0.182987] NetLabel: Initializing
Sep 11 18:19:14 BlackBox kernel: [    0.182990] NetLabel:  domain hash size = 128
Sep 11 18:19:14 BlackBox kernel: [    0.182991] NetLabel:  protocols = UNLABELED CIPSOv4
Sep 11 18:19:14 BlackBox kernel: [    0.183007] NetLabel:  unlabeled traffic allowed by default
Sep 11 18:19:14 BlackBox kernel: [    0.235132] NET: Registered protocol family 2
Sep 11 18:19:14 BlackBox kernel: [    0.235514] NET: Registered protocol family 1
Sep 11 18:19:14 BlackBox kernel: [    0.888310] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Sep 11 18:19:14 BlackBox kernel: [    0.888690] audit: initializing netlink socket (disabled)
Sep 11 18:19:14 BlackBox kernel: [    1.979752] NET: Registered protocol family 10
Sep 11 18:19:14 BlackBox kernel: [    1.980035] NET: Registered protocol family 17
Sep 11 18:19:14 BlackBox kernel: [    2.223765] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
Sep 11 18:19:14 BlackBox kernel: [    2.542132] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 00:21:86:52:9b:22
Sep 11 18:19:14 BlackBox kernel: [    2.542137] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
Sep 11 18:19:14 BlackBox kernel: [    2.542169] e1000e 0000:00:19.0 eth0: MAC: 6, PHY: 6, PBA No: 1008FF-0FF
Sep 11 18:19:14 BlackBox kernel: [    3.009989] psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Sep 11 18:19:14 BlackBox kernel: [   21.099070] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Sep 11 18:19:14 BlackBox kernel: [   21.457265] systemd-udevd[350]: renamed network interface eth0 to eth1
Sep 11 18:19:14 BlackBox kernel: [   21.555070] type=1400 audit(1410452349.022:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=366 comm="apparmor_parser"
Sep 11 18:19:14 BlackBox kernel: [   21.555744] type=1400 audit(1410452349.022:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=366 comm="apparmor_parser"
Sep 11 18:19:14 BlackBox kernel: [   21.893972] thinkpad_acpi: http://ibm-acpi.sf.net/
Sep 11 18:19:14 BlackBox kernel: [   26.672248] NET: Registered protocol family 31
Sep 11 18:19:14 BlackBox kernel: [   26.694780] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Sep 11 18:19:14 BlackBox avahi-daemon[787]: Network interface enumeration completed.
Sep 11 18:19:14 BlackBox kernel: [   27.493180] type=1400 audit(1410452354.962:12): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=848 comm="apparmor_parser"
Sep 11 18:19:14 BlackBox kernel: [   27.493858] type=1400 audit(1410452354.962:14): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=848 comm="apparmor_parser"
Sep 11 18:19:15 BlackBox NetworkManager[883]: <info> NetworkManager (version 0.9.8.8) is starting...
Sep 11 18:19:15 BlackBox NetworkManager[883]: <info> Read config file /etc/NetworkManager/NetworkManager.conf
Sep 11 18:19:15 BlackBox NetworkManager[883]: <info> WEXT support is enabled
Sep 11 18:19:15 BlackBox NetworkManager[883]: <info> VPN: loaded org.freedesktop.NetworkManager.pptp
Sep 11 18:19:15 BlackBox NetworkManager[883]: <info> DNS: loaded plugin dnsmasq
Sep 11 18:19:15 BlackBox NetworkManager[883]:    SCPlugin-Ifupdown: init!
Sep 11 18:19:15 BlackBox NetworkManager[883]:    SCPlugin-Ifupdown: update_system_hostname
Sep 11 18:19:15 BlackBox NetworkManager[883]:       interface-parser: parsing file /etc/network/interfaces
Sep 11 18:19:15 BlackBox NetworkManager[883]:       interface-parser: finished parsing file /etc/network/interfaces
Sep 11 18:19:15 BlackBox NetworkManager[883]:    SCPluginIfupdown: management mode: unmanaged
Sep 11 18:19:15 BlackBox NetworkManager[883]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:19.0/net/eth1, iface: eth1)
Sep 11 18:19:15 BlackBox NetworkManager[883]:    SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:19.0/net/eth1, iface: eth1): no ifupdown configuration found.
Sep 11 18:19:15 BlackBox NetworkManager[883]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:1c.1/0000:03:00.0/net/wlan0, iface: wlan0)
Sep 11 18:19:15 BlackBox NetworkManager[883]:    SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:1c.1/0000:03:00.0/net/wlan0, iface: wlan0): no ifupdown configuration found.
Sep 11 18:19:15 BlackBox NetworkManager[883]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/virtual/net/lo, iface: lo)
Sep 11 18:19:15 BlackBox NetworkManager[883]:    SCPlugin-Ifupdown: device added (path: /sys/devices/virtual/net/lo, iface: lo): no ifupdown configuration found.
Sep 11 18:19:15 BlackBox NetworkManager[883]:    SCPlugin-Ifupdown: end _init.
Sep 11 18:19:15 BlackBox NetworkManager[883]: <info> Loaded plugin ifupdown: (C) 2008 Canonical Ltd.  To report bugs please use the NetworkManager mailing list.
Sep 11 18:19:15 BlackBox NetworkManager[883]: <info> Loaded plugin keyfile: (c) 2007 - 2010 Red Hat, Inc.  To report bugs please use the NetworkManager mailing list.
Sep 11 18:19:15 BlackBox NetworkManager[883]:    SCPlugin-Ofono: Acquired D-Bus service com.canonical.NMOfono
Sep 11 18:19:15 BlackBox NetworkManager[883]:    SCPlugin-Ofono: init!
Sep 11 18:19:15 BlackBox NetworkManager[883]:    SCPlugin-Ofono: end _init.
Sep 11 18:19:15 BlackBox NetworkManager[883]: <info> Loaded plugin (null): (null)
Sep 11 18:19:15 BlackBox NetworkManager[883]:    Ifupdown: get unmanaged devices count: 0
Sep 11 18:19:15 BlackBox NetworkManager[883]:    SCPlugin-Ifupdown: (156821336) ... get_connections.
Sep 11 18:19:15 BlackBox NetworkManager[883]:    SCPlugin-Ifupdown: (156821336) ... get_connections (managed=false): return empty list.
Sep 11 18:19:15 BlackBox NetworkManager[883]:    keyfile: parsing Neue kabelgebundene Verbindung ... 
Sep 11 18:19:15 BlackBox NetworkManager[883]:    keyfile:     read connection 'Neue kabelgebundene Verbindung'
Sep 11 18:19:15 BlackBox NetworkManager[883]:    keyfile: parsing Fridolin ... 
Sep 11 18:19:15 BlackBox NetworkManager[883]:    keyfile:     read connection 'Fridolin'
Sep 11 18:19:15 BlackBox NetworkManager[883]:    keyfile: parsing PuB1 ... 
Sep 11 18:19:15 BlackBox NetworkManager[883]:    keyfile:     read connection 'PuB1'
Sep 11 18:19:15 BlackBox NetworkManager[883]:    keyfile: parsing roxy ... 
Sep 11 18:19:15 BlackBox NetworkManager[883]:    keyfile:     read connection 'roxy'
Sep 11 18:19:15 BlackBox NetworkManager[883]:    keyfile: parsing Back Heck ... 
Sep 11 18:19:15 BlackBox NetworkManager[883]:    keyfile:     read connection 'Back Heck'
Sep 11 18:19:15 BlackBox NetworkManager[883]:    keyfile: parsing Copboco ... 
Sep 11 18:19:15 BlackBox NetworkManager[883]:    keyfile:     read connection 'Copboco'
Sep 11 18:19:15 BlackBox NetworkManager[883]:    keyfile: parsing ALICE-WLAN13 ... 
Sep 11 18:19:15 BlackBox NetworkManager[883]:    keyfile:     read connection 'ALICE-WLAN13'
Sep 11 18:19:15 BlackBox NetworkManager[883]:    SCPlugin-Ofono: (156874816) ... get_connections.
Sep 11 18:19:15 BlackBox NetworkManager[883]:    SCPlugin-Ofono: (156874816) connections count: 0
Sep 11 18:19:15 BlackBox NetworkManager[883]:    Ifupdown: get unmanaged devices count: 0
Sep 11 18:19:15 BlackBox NetworkManager[883]: <info> monitoring kernel firmware directory '/lib/firmware'.
Sep 11 18:19:15 BlackBox NetworkManager[883]: <info> rfkill0: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:1c.1/0000:03:00.0/ieee80211/phy0/rfkill0) (driver ath5k)
Sep 11 18:19:15 BlackBox NetworkManager[883]: <info> WiFi enabled by radio killswitch; enabled by state file
Sep 11 18:19:15 BlackBox NetworkManager[883]: <info> WWAN enabled by radio killswitch; enabled by state file
Sep 11 18:19:15 BlackBox NetworkManager[883]: <info> WiMAX enabled by radio killswitch; enabled by state file
Sep 11 18:19:15 BlackBox NetworkManager[883]: <info> Networking is enabled by state file
Sep 11 18:19:15 BlackBox NetworkManager[883]: <warn> failed to allocate link cache: (-12) Object not found
Sep 11 18:19:15 BlackBox NetworkManager[883]: <info> (eth1): carrier is OFF
Sep 11 18:19:15 BlackBox NetworkManager[883]: <info> (eth1): new Ethernet device (driver: 'e1000e' ifindex: 2)
Sep 11 18:19:15 BlackBox NetworkManager[883]: <info> (eth1): exported as /org/freedesktop/NetworkManager/Devices/0
Sep 11 18:19:15 BlackBox NetworkManager[883]: <info> (eth1): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Sep 11 18:19:15 BlackBox NetworkManager[883]: <info> (eth1): bringing up device.
Sep 11 18:19:16 BlackBox NetworkManager[883]: <info> (eth1): preparing device.
Sep 11 18:19:16 BlackBox NetworkManager[883]: <info> (eth1): deactivating device (reason 'managed') [2]
Sep 11 18:19:16 BlackBox NetworkManager[883]: <info> (wlan0): using nl80211 for WiFi device control
Sep 11 18:19:16 BlackBox NetworkManager[883]: <info> (wlan0): driver supports Access Point (AP) mode
Sep 11 18:19:16 BlackBox NetworkManager[883]: <info> (wlan0): new 802.11 WiFi device (driver: 'ath5k' ifindex: 3)
Sep 11 18:19:16 BlackBox NetworkManager[883]: <info> (wlan0): exported as /org/freedesktop/NetworkManager/Devices/1
Sep 11 18:19:16 BlackBox NetworkManager[883]: <info> (wlan0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Sep 11 18:19:16 BlackBox NetworkManager[883]: <info> (wlan0): bringing up device.
Sep 11 18:19:16 BlackBox kernel: [   28.772262] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
Sep 11 18:19:16 BlackBox kernel: [   28.772731] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
Sep 11 18:19:16 BlackBox acpid: starting up with netlink and the input layer
Sep 11 18:19:16 BlackBox NetworkManager[883]: <info> (wlan0): preparing device.
Sep 11 18:19:16 BlackBox kernel: [   28.789720] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
Sep 11 18:19:16 BlackBox NetworkManager[883]: <info> (wlan0): deactivating device (reason 'managed') [2]
Sep 11 18:19:16 BlackBox kernel: [   28.795498] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
Sep 11 18:19:16 BlackBox NetworkManager[883]: <warn> /sys/devices/virtual/net/lo: couldn't determine device driver; ignoring...
Sep 11 18:19:16 BlackBox NetworkManager[883]: <warn> /sys/devices/virtual/net/lo: couldn't determine device driver; ignoring...
Sep 11 18:19:16 BlackBox NetworkManager[883]: <info> urfkill disappeared from the bus
Sep 11 18:19:16 BlackBox NetworkManager[883]: <info> ModemManager available in the bus
Sep 11 18:19:16 BlackBox NetworkManager[883]: <info> wpa_supplicant started
Sep 11 18:19:16 BlackBox NetworkManager[883]: <info> (wlan0) supports 4 scan SSIDs
Sep 11 18:19:16 BlackBox NetworkManager[883]: <warn> Trying to remove a non-existant call id.
Sep 11 18:19:16 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: starting -> ready
Sep 11 18:19:16 BlackBox NetworkManager[883]: <info> (wlan0): device state change: unavailable -> disconnected (reason 'supplicant-available') [20 30 42]
Sep 11 18:19:16 BlackBox wpa_supplicant[1147]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 18:19:16 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: ready -> disconnected
Sep 11 18:19:16 BlackBox NetworkManager[883]: <info> (wlan0) supports 4 scan SSIDs
Sep 11 18:19:20 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: disconnected -> inactive
Sep 11 18:19:20 BlackBox NetworkManager[883]: <info> Auto-activating connection 'Copboco'.
Sep 11 18:19:20 BlackBox NetworkManager[883]: <info> Activation (wlan0) starting connection 'Copboco'
Sep 11 18:19:20 BlackBox NetworkManager[883]: <info> (wlan0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
Sep 11 18:19:20 BlackBox NetworkManager[883]: <info> NetworkManager state is now CONNECTING
Sep 11 18:19:20 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
Sep 11 18:19:20 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
Sep 11 18:19:20 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
Sep 11 18:19:20 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
Sep 11 18:19:20 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
Sep 11 18:19:20 BlackBox NetworkManager[883]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
Sep 11 18:19:20 BlackBox NetworkManager[883]: <info> Activation (wlan0/wireless): connection 'Copboco' has security, and secrets exist.  No new secrets needed.
Sep 11 18:19:20 BlackBox NetworkManager[883]: <info> Config: added 'ssid' value 'Copboco'
Sep 11 18:19:20 BlackBox NetworkManager[883]: <info> Config: added 'scan_ssid' value '1'
Sep 11 18:19:20 BlackBox NetworkManager[883]: <info> Config: added 'key_mgmt' value 'WPA-PSK'
Sep 11 18:19:20 BlackBox NetworkManager[883]: <info> Config: added 'psk' value '<omitted>'
Sep 11 18:19:20 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
Sep 11 18:19:20 BlackBox NetworkManager[883]: <info> Config: set interface ap_scan to 1
Sep 11 18:19:20 BlackBox wpa_supplicant[1147]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 18:19:24 BlackBox wpa_supplicant[1147]: wlan0: SME: Trying to authenticate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2457 MHz)
Sep 11 18:19:24 BlackBox kernel: [   36.590737] wlan0: authenticate with 84:9c:a6:a2:e7:b6
Sep 11 18:19:24 BlackBox kernel: [   36.601362] wlan0: send auth to 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 18:19:24 BlackBox wpa_supplicant[1147]: wlan0: Trying to associate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2457 MHz)
Sep 11 18:19:24 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: inactive -> authenticating
Sep 11 18:19:24 BlackBox kernel: [   36.608925] wlan0: authenticated
Sep 11 18:19:24 BlackBox kernel: [   36.612038] wlan0: associate with 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 18:19:24 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: authenticating -> associating
Sep 11 18:19:24 BlackBox wpa_supplicant[1147]: wlan0: Associated with 84:9c:a6:a2:e7:b6
Sep 11 18:19:24 BlackBox kernel: [   36.630116] wlan0: RX AssocResp from 84:9c:a6:a2:e7:b6 (capab=0x431 status=0 aid=1)
Sep 11 18:19:24 BlackBox kernel: [   36.630420] wlan0: associated
Sep 11 18:19:24 BlackBox kernel: [   36.630470] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
Sep 11 18:19:24 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: associating -> associated
Sep 11 18:19:24 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: associated -> 4-way handshake
Sep 11 18:19:25 BlackBox avahi-daemon[787]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::21c:26ff:feb4:1649.
Sep 11 18:19:25 BlackBox avahi-daemon[787]: New relevant interface wlan0.IPv6 for mDNS.
Sep 11 18:19:25 BlackBox avahi-daemon[787]: Registering new address record for fe80::21c:26ff:feb4:1649 on wlan0.*.
Sep 11 18:19:26 BlackBox NetworkManager[883]: <info> WiFi hardware radio set enabled
Sep 11 18:19:28 BlackBox wpa_supplicant[1147]: wlan0: WPA: Key negotiation completed with 84:9c:a6:a2:e7:b6 [PTK=CCMP GTK=CCMP]
Sep 11 18:19:28 BlackBox wpa_supplicant[1147]: wlan0: CTRL-EVENT-CONNECTED - Connection to 84:9c:a6:a2:e7:b6 completed [id=0 id_str=]
Sep 11 18:19:28 BlackBox wpa_supplicant[1147]: wlan0: SME: Trying to authenticate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2457 MHz)
Sep 11 18:19:28 BlackBox wpa_supplicant[1147]: wlan0: CTRL-EVENT-DISCONNECTED bssid=84:9c:a6:a2:e7:b6 reason=2 locally_generated=1
Sep 11 18:19:28 BlackBox kernel: [   40.683252] wlan0: deauthenticating from 84:9c:a6:a2:e7:b6 by local choice (reason=2)
Sep 11 18:19:28 BlackBox kernel: [   40.683531] wlan0: authenticate with 84:9c:a6:a2:e7:b6
Sep 11 18:19:28 BlackBox kernel: [   40.683735] wlan0: send auth to 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 18:19:28 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: 4-way handshake -> authenticating
Sep 11 18:19:28 BlackBox NetworkManager[883]: <warn> Connection disconnected (reason -2)
Sep 11 18:19:28 BlackBox wpa_supplicant[1147]: wlan0: Trying to associate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2457 MHz)
Sep 11 18:19:28 BlackBox kernel: [   40.691463] wlan0: authenticated
Sep 11 18:19:28 BlackBox kernel: [   40.692086] wlan0: associate with 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 18:19:28 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: authenticating -> associating
Sep 11 18:19:28 BlackBox wpa_supplicant[1147]: wlan0: Associated with 84:9c:a6:a2:e7:b6
Sep 11 18:19:28 BlackBox kernel: [   40.734996] wlan0: RX AssocResp from 84:9c:a6:a2:e7:b6 (capab=0x431 status=0 aid=1)
Sep 11 18:19:28 BlackBox kernel: [   40.735262] wlan0: associated
Sep 11 18:19:28 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: associating -> associated
Sep 11 18:19:28 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: associated -> 4-way handshake
Sep 11 18:19:32 BlackBox wpa_supplicant[1147]: wlan0: WPA: Key negotiation completed with 84:9c:a6:a2:e7:b6 [PTK=CCMP GTK=CCMP]
Sep 11 18:19:32 BlackBox wpa_supplicant[1147]: wlan0: CTRL-EVENT-CONNECTED - Connection to 84:9c:a6:a2:e7:b6 completed [id=0 id_str=]
Sep 11 18:19:32 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Sep 11 18:19:32 BlackBox NetworkManager[883]: <info> Activation (wlan0/wireless) Stage 2 of 5 (Device Configure) successful.  Connected to wireless network 'Copboco'.
Sep 11 18:19:32 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) scheduled.
Sep 11 18:19:32 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) started...
Sep 11 18:19:32 BlackBox NetworkManager[883]: <info> (wlan0): device state change: config -> ip-config (reason 'none') [50 70 0]
Sep 11 18:19:32 BlackBox NetworkManager[883]: <info> Activation (wlan0) Beginning DHCPv4 transaction (timeout in 45 seconds)
Sep 11 18:19:32 BlackBox NetworkManager[883]: <info> dhclient started with pid 1673
Sep 11 18:19:32 BlackBox avahi-daemon[787]: Withdrawing address record for fe80::21c:26ff:feb4:1649 on wlan0.
Sep 11 18:19:32 BlackBox avahi-daemon[787]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::21c:26ff:feb4:1649.
Sep 11 18:19:32 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) complete.
Sep 11 18:19:32 BlackBox avahi-daemon[787]: Interface wlan0.IPv6 no longer relevant for mDNS.
Sep 11 18:19:32 BlackBox dhclient: Internet Systems Consortium DHCP Client 4.2.4
Sep 11 18:19:32 BlackBox dhclient: Copyright 2004-2012 Internet Systems Consortium.
Sep 11 18:19:32 BlackBox NetworkManager[883]: <info> (wlan0): DHCPv4 state changed nbi -> preinit
Sep 11 18:19:32 BlackBox dhclient: Listening on LPF/wlan0/00:1c:26:b4:16:49
Sep 11 18:19:32 BlackBox dhclient: Sending on   LPF/wlan0/00:1c:26:b4:16:49
Sep 11 18:19:32 BlackBox dhclient: DHCPREQUEST of 192.168.1.5 on wlan0 to 255.255.255.255 port 67 (xid=0x62cb76)
Sep 11 18:19:32 BlackBox NetworkManager[883]: <info> (wlan0): DHCPv4 state changed preinit -> reboot
Sep 11 18:19:32 BlackBox NetworkManager[883]: <info>   address 192.168.1.5
Sep 11 18:19:32 BlackBox NetworkManager[883]: <info>   prefix 24 (255.255.255.0)
Sep 11 18:19:32 BlackBox NetworkManager[883]: <info>   gateway 192.168.1.1
Sep 11 18:19:32 BlackBox NetworkManager[883]: <info>   nameserver '192.168.1.1'
Sep 11 18:19:32 BlackBox NetworkManager[883]: <info>   domain name 'localdomain'
Sep 11 18:19:32 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Configure Commit) scheduled...
Sep 11 18:19:32 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) started...
Sep 11 18:19:32 BlackBox avahi-daemon[787]: Joining mDNS multicast group on interface wlan0.IPv4 with address 192.168.1.5.
Sep 11 18:19:32 BlackBox avahi-daemon[787]: New relevant interface wlan0.IPv4 for mDNS.
Sep 11 18:19:32 BlackBox avahi-daemon[787]: Registering new address record for 192.168.1.5 on wlan0.IPv4.
Sep 11 18:19:33 BlackBox NetworkManager[883]: <info> (wlan0): device state change: ip-config -> secondaries (reason 'none') [70 90 0]
Sep 11 18:19:33 BlackBox NetworkManager[883]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) complete.
Sep 11 18:19:33 BlackBox NetworkManager[883]: <info> (wlan0): device state change: secondaries -> activated (reason 'none') [90 100 0]
Sep 11 18:19:33 BlackBox NetworkManager[883]: <info> NetworkManager state is now CONNECTED_GLOBAL
Sep 11 18:19:33 BlackBox NetworkManager[883]: <info> Policy set 'Copboco' (wlan0) as default for IPv4 routing and DNS.
Sep 11 18:19:33 BlackBox NetworkManager[883]: <info> DNS: starting dnsmasq...
Sep 11 18:19:33 BlackBox NetworkManager[883]: <warn> dnsmasq not available on the bus, can't update servers.
Sep 11 18:19:33 BlackBox NetworkManager[883]: <error> [1410452373.279523] [nm-dns-dnsmasq.c:396] update(): dnsmasq owner not found on bus: Could not get owner of name 'org.freedesktop.NetworkManager.dnsmasq': no such name
Sep 11 18:19:33 BlackBox NetworkManager[883]: <warn> DNS: plugin dnsmasq update failed
Sep 11 18:19:33 BlackBox NetworkManager[883]: <info> Writing DNS information to /sbin/resolvconf
Sep 11 18:19:33 BlackBox avahi-daemon[787]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::21c:26ff:feb4:1649.
Sep 11 18:19:33 BlackBox avahi-daemon[787]: New relevant interface wlan0.IPv6 for mDNS.
Sep 11 18:19:33 BlackBox avahi-daemon[787]: Registering new address record for fe80::21c:26ff:feb4:1649 on wlan0.*.
Sep 11 18:19:34 BlackBox NetworkManager[883]: <info> Activation (wlan0) successful, device activated.
Sep 11 18:19:34 BlackBox NetworkManager[883]: <warn> dnsmasq appeared on DBus: :1.24
Sep 11 18:19:34 BlackBox NetworkManager[883]: <info> Writing DNS information to /sbin/resolvconf
Sep 11 18:19:39 BlackBox wpa_supplicant[1147]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 18:34:43 BlackBox NetworkManager[883]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
Sep 11 18:38:31 BlackBox wpa_supplicant[1147]: message repeated 11 times: [ wlan0: CTRL-EVENT-SCAN-STARTED ]
Sep 11 18:40:05 BlackBox wpa_supplicant[1147]: wlan0: CTRL-EVENT-DISCONNECTED bssid=84:9c:a6:a2:e7:b6 reason=4 locally_generated=1
Sep 11 18:40:05 BlackBox NetworkManager[883]: <warn> Connection disconnected (reason -4)
Sep 11 18:40:05 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: completed -> disconnected
Sep 11 18:40:05 BlackBox wpa_supplicant[1147]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 18:40:05 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Sep 11 18:40:09 BlackBox wpa_supplicant[1147]: wlan0: SME: Trying to authenticate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2457 MHz)
Sep 11 18:40:09 BlackBox kernel: [ 1281.760760] wlan0: authenticate with 84:9c:a6:a2:e7:b6
Sep 11 18:40:09 BlackBox kernel: [ 1281.766675] wlan0: send auth to 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 18:40:09 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: scanning -> authenticating
Sep 11 18:40:09 BlackBox kernel: [ 1281.794077] wlan0: send auth to 84:9c:a6:a2:e7:b6 (try 2/3)
Sep 11 18:40:09 BlackBox kernel: [ 1281.807854] wlan0: send auth to 84:9c:a6:a2:e7:b6 (try 3/3)
Sep 11 18:40:09 BlackBox kernel: [ 1281.821456] wlan0: authentication with 84:9c:a6:a2:e7:b6 timed out
Sep 11 18:40:09 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: authenticating -> disconnected
Sep 11 18:40:09 BlackBox wpa_supplicant[1147]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 18:40:09 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Sep 11 18:40:20 BlackBox NetworkManager[883]: <warn> (wlan0): link timed out.
Sep 11 18:40:20 BlackBox NetworkManager[883]: <info> (wlan0): device state change: activated -> failed (reason 'SSID not found') [100 120 53]
Sep 11 18:40:20 BlackBox NetworkManager[883]: <info> NetworkManager state is now DISCONNECTED
Sep 11 18:40:20 BlackBox NetworkManager[883]: <warn> Activation (wlan0) failed for connection 'Copboco'
Sep 11 18:40:20 BlackBox NetworkManager[883]: <info> (wlan0): device state change: failed -> disconnected (reason 'none') [120 30 0]
Sep 11 18:40:20 BlackBox NetworkManager[883]: <info> (wlan0): deactivating device (reason 'none') [0]
Sep 11 18:40:20 BlackBox NetworkManager[883]: <info> (wlan0): canceled DHCP transaction, DHCP client pid 1673
Sep 11 18:40:20 BlackBox kernel: [ 1293.262023] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
Sep 11 18:40:20 BlackBox avahi-daemon[787]: Withdrawing address record for fe80::21c:26ff:feb4:1649 on wlan0.
Sep 11 18:40:20 BlackBox avahi-daemon[787]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::21c:26ff:feb4:1649.
Sep 11 18:40:20 BlackBox avahi-daemon[787]: Interface wlan0.IPv6 no longer relevant for mDNS.
Sep 11 18:40:20 BlackBox avahi-daemon[787]: Withdrawing address record for 192.168.1.5 on wlan0.
Sep 11 18:40:20 BlackBox avahi-daemon[787]: Leaving mDNS multicast group on interface wlan0.IPv4 with address 192.168.1.5.
Sep 11 18:40:20 BlackBox avahi-daemon[787]: Interface wlan0.IPv4 no longer relevant for mDNS.
Sep 11 18:40:20 BlackBox NetworkManager[883]: <warn> DNS: plugin dnsmasq update failed
Sep 11 18:40:20 BlackBox NetworkManager[883]: <info> Removing DNS information from /sbin/resolvconf
Sep 11 18:40:18 BlackBox wpa_supplicant[1147]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 18:40:20 BlackBox wpa_supplicant[1147]: wlan0: Reject scan trigger since one is already pending
Sep 11 18:40:20 BlackBox NetworkManager[883]: <warn> Couldn't disconnect supplicant interface: This interface is not connected.
Sep 11 18:40:22 BlackBox NetworkManager[883]: <info> (wlan0): supplicant interface state: scanning -> inactive
Sep 11 18:40:24 BlackBox wpa_supplicant[1147]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 22:37:08 BlackBox kernel: [    0.000000]   Transmeta GenuineTMx86
Sep 11 22:37:08 BlackBox kernel: [    0.089722] NET: Registered protocol family 16
Sep 11 22:37:08 BlackBox kernel: [    0.100925] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query honored via DMI
Sep 11 22:37:08 BlackBox kernel: [    0.149963] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
Sep 11 22:37:08 BlackBox kernel: [    0.190985] NetLabel: Initializing
Sep 11 22:37:08 BlackBox kernel: [    0.190987] NetLabel:  domain hash size = 128
Sep 11 22:37:08 BlackBox kernel: [    0.190989] NetLabel:  protocols = UNLABELED CIPSOv4
Sep 11 22:37:08 BlackBox kernel: [    0.191005] NetLabel:  unlabeled traffic allowed by default
Sep 11 22:37:08 BlackBox kernel: [    0.243242] NET: Registered protocol family 2
Sep 11 22:37:08 BlackBox kernel: [    0.243621] NET: Registered protocol family 1
Sep 11 22:37:08 BlackBox kernel: [    0.896646] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Sep 11 22:37:08 BlackBox kernel: [    0.897028] audit: initializing netlink socket (disabled)
Sep 11 22:37:08 BlackBox kernel: [    1.991955] NET: Registered protocol family 10
Sep 11 22:37:08 BlackBox kernel: [    1.992238] NET: Registered protocol family 17
Sep 11 22:37:08 BlackBox kernel: [    2.227446] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
Sep 11 22:37:08 BlackBox kernel: [    2.550141] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 00:21:86:52:9b:22
Sep 11 22:37:08 BlackBox kernel: [    2.550146] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
Sep 11 22:37:08 BlackBox kernel: [    2.550178] e1000e 0000:00:19.0 eth0: MAC: 6, PHY: 6, PBA No: 1008FF-0FF
Sep 11 22:37:08 BlackBox kernel: [    3.053791] psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Sep 11 22:37:08 BlackBox kernel: [   21.246243] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Sep 11 22:37:08 BlackBox kernel: [   21.720586] systemd-udevd[350]: renamed network interface eth0 to eth1
Sep 11 22:37:08 BlackBox kernel: [   21.786751] type=1400 audit(1410467824.237:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=371 comm="apparmor_parser"
Sep 11 22:37:08 BlackBox kernel: [   21.787428] type=1400 audit(1410467824.237:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=371 comm="apparmor_parser"
Sep 11 22:37:08 BlackBox kernel: [   22.135151] thinkpad_acpi: http://ibm-acpi.sf.net/
Sep 11 22:37:09 BlackBox kernel: [   26.595978] NET: Registered protocol family 31
Sep 11 22:37:09 BlackBox kernel: [   26.607986] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Sep 11 22:37:09 BlackBox kernel: [   26.866011] type=1400 audit(1410467829.317:12): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=768 comm="apparmor_parser"
Sep 11 22:37:09 BlackBox kernel: [   26.866687] type=1400 audit(1410467829.317:14): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=768 comm="apparmor_parser"
Sep 11 22:37:09 BlackBox avahi-daemon[792]: Network interface enumeration completed.
Sep 11 22:37:09 BlackBox NetworkManager[817]: <info> NetworkManager (version 0.9.8.8) is starting...
Sep 11 22:37:09 BlackBox NetworkManager[817]: <info> Read config file /etc/NetworkManager/NetworkManager.conf
Sep 11 22:37:09 BlackBox NetworkManager[817]: <info> WEXT support is enabled
Sep 11 22:37:09 BlackBox NetworkManager[817]: <info> VPN: loaded org.freedesktop.NetworkManager.pptp
Sep 11 22:37:09 BlackBox NetworkManager[817]: <info> DNS: loaded plugin dnsmasq
Sep 11 22:37:09 BlackBox NetworkManager[817]:    SCPlugin-Ifupdown: init!
Sep 11 22:37:09 BlackBox NetworkManager[817]:    SCPlugin-Ifupdown: update_system_hostname
Sep 11 22:37:09 BlackBox NetworkManager[817]:       interface-parser: parsing file /etc/network/interfaces
Sep 11 22:37:09 BlackBox NetworkManager[817]:       interface-parser: finished parsing file /etc/network/interfaces
Sep 11 22:37:09 BlackBox NetworkManager[817]:    SCPluginIfupdown: management mode: unmanaged
Sep 11 22:37:09 BlackBox NetworkManager[817]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:19.0/net/eth1, iface: eth1)
Sep 11 22:37:09 BlackBox NetworkManager[817]:    SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:19.0/net/eth1, iface: eth1): no ifupdown configuration found.
Sep 11 22:37:09 BlackBox NetworkManager[817]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:1c.1/0000:03:00.0/net/wlan0, iface: wlan0)
Sep 11 22:37:09 BlackBox NetworkManager[817]:    SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:1c.1/0000:03:00.0/net/wlan0, iface: wlan0): no ifupdown configuration found.
Sep 11 22:37:09 BlackBox NetworkManager[817]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/virtual/net/lo, iface: lo)
Sep 11 22:37:09 BlackBox NetworkManager[817]:    SCPlugin-Ifupdown: device added (path: /sys/devices/virtual/net/lo, iface: lo): no ifupdown configuration found.
Sep 11 22:37:09 BlackBox NetworkManager[817]:    SCPlugin-Ifupdown: end _init.
Sep 11 22:37:09 BlackBox NetworkManager[817]: <info> Loaded plugin ifupdown: (C) 2008 Canonical Ltd.  To report bugs please use the NetworkManager mailing list.
Sep 11 22:37:09 BlackBox NetworkManager[817]: <info> Loaded plugin keyfile: (c) 2007 - 2010 Red Hat, Inc.  To report bugs please use the NetworkManager mailing list.
Sep 11 22:37:09 BlackBox NetworkManager[817]:    SCPlugin-Ofono: Acquired D-Bus service com.canonical.NMOfono
Sep 11 22:37:09 BlackBox NetworkManager[817]:    SCPlugin-Ofono: init!
Sep 11 22:37:09 BlackBox NetworkManager[817]:    SCPlugin-Ofono: end _init.
Sep 11 22:37:09 BlackBox NetworkManager[817]: <info> Loaded plugin (null): (null)
Sep 11 22:37:09 BlackBox NetworkManager[817]:    Ifupdown: get unmanaged devices count: 0
Sep 11 22:37:09 BlackBox NetworkManager[817]:    SCPlugin-Ifupdown: (160995160) ... get_connections.
Sep 11 22:37:09 BlackBox NetworkManager[817]:    SCPlugin-Ifupdown: (160995160) ... get_connections (managed=false): return empty list.
Sep 11 22:37:09 BlackBox NetworkManager[817]:    keyfile: parsing Neue kabelgebundene Verbindung ... 
Sep 11 22:37:10 BlackBox NetworkManager[817]:    keyfile:     read connection 'Neue kabelgebundene Verbindung'
Sep 11 22:37:10 BlackBox NetworkManager[817]:    keyfile: parsing Fridolin ... 
Sep 11 22:37:10 BlackBox NetworkManager[817]:    keyfile:     read connection 'Fridolin'
Sep 11 22:37:10 BlackBox NetworkManager[817]:    keyfile: parsing PuB1 ... 
Sep 11 22:37:10 BlackBox NetworkManager[817]:    keyfile:     read connection 'PuB1'
Sep 11 22:37:10 BlackBox NetworkManager[817]:    keyfile: parsing roxy ... 
Sep 11 22:37:10 BlackBox NetworkManager[817]:    keyfile:     read connection 'roxy'
Sep 11 22:37:10 BlackBox NetworkManager[817]:    keyfile: parsing Back Heck ... 
Sep 11 22:37:10 BlackBox NetworkManager[817]:    keyfile:     read connection 'Back Heck'
Sep 11 22:37:10 BlackBox NetworkManager[817]:    keyfile: parsing Copboco ... 
Sep 11 22:37:10 BlackBox NetworkManager[817]:    keyfile:     read connection 'Copboco'
Sep 11 22:37:10 BlackBox NetworkManager[817]:    keyfile: parsing ALICE-WLAN13 ... 
Sep 11 22:37:10 BlackBox NetworkManager[817]:    keyfile:     read connection 'ALICE-WLAN13'
Sep 11 22:37:10 BlackBox NetworkManager[817]:    SCPlugin-Ofono: (161048640) ... get_connections.
Sep 11 22:37:10 BlackBox NetworkManager[817]:    SCPlugin-Ofono: (161048640) connections count: 0
Sep 11 22:37:10 BlackBox NetworkManager[817]:    Ifupdown: get unmanaged devices count: 0
Sep 11 22:37:10 BlackBox NetworkManager[817]: <info> monitoring kernel firmware directory '/lib/firmware'.
Sep 11 22:37:10 BlackBox NetworkManager[817]: <info> rfkill0: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:1c.1/0000:03:00.0/ieee80211/phy0/rfkill0) (driver ath5k)
Sep 11 22:37:10 BlackBox NetworkManager[817]: <info> WiFi enabled by radio killswitch; enabled by state file
Sep 11 22:37:10 BlackBox NetworkManager[817]: <info> WWAN enabled by radio killswitch; enabled by state file
Sep 11 22:37:10 BlackBox NetworkManager[817]: <info> WiMAX enabled by radio killswitch; enabled by state file
Sep 11 22:37:10 BlackBox NetworkManager[817]: <info> Networking is enabled by state file
Sep 11 22:37:10 BlackBox NetworkManager[817]: <warn> failed to allocate link cache: (-12) Object not found
Sep 11 22:37:10 BlackBox NetworkManager[817]: <info> (eth1): carrier is OFF
Sep 11 22:37:10 BlackBox NetworkManager[817]: <info> (eth1): new Ethernet device (driver: 'e1000e' ifindex: 2)
Sep 11 22:37:10 BlackBox NetworkManager[817]: <info> (eth1): exported as /org/freedesktop/NetworkManager/Devices/0
Sep 11 22:37:10 BlackBox NetworkManager[817]: <info> (eth1): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Sep 11 22:37:10 BlackBox NetworkManager[817]: <info> (eth1): bringing up device.
Sep 11 22:37:10 BlackBox acpid: starting up with netlink and the input layer
Sep 11 22:37:10 BlackBox kernel: [   28.453812] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
Sep 11 22:37:10 BlackBox kernel: [   28.454274] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
Sep 11 22:37:10 BlackBox NetworkManager[817]: <info> (eth1): preparing device.
Sep 11 22:37:10 BlackBox NetworkManager[817]: <info> (eth1): deactivating device (reason 'managed') [2]
Sep 11 22:37:10 BlackBox NetworkManager[817]: <info> (wlan0): using nl80211 for WiFi device control
Sep 11 22:37:10 BlackBox NetworkManager[817]: <info> (wlan0): driver supports Access Point (AP) mode
Sep 11 22:37:10 BlackBox NetworkManager[817]: <info> (wlan0): new 802.11 WiFi device (driver: 'ath5k' ifindex: 3)
Sep 11 22:37:10 BlackBox NetworkManager[817]: <info> (wlan0): exported as /org/freedesktop/NetworkManager/Devices/1
Sep 11 22:37:10 BlackBox NetworkManager[817]: <info> (wlan0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Sep 11 22:37:10 BlackBox NetworkManager[817]: <info> (wlan0): bringing up device.
Sep 11 22:37:10 BlackBox NetworkManager[817]: <info> (wlan0): preparing device.
Sep 11 22:37:10 BlackBox NetworkManager[817]: <info> (wlan0): deactivating device (reason 'managed') [2]
Sep 11 22:37:10 BlackBox NetworkManager[817]: <warn> /sys/devices/virtual/net/lo: couldn't determine device driver; ignoring...
Sep 11 22:37:10 BlackBox kernel: [   28.474309] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
Sep 11 22:37:10 BlackBox kernel: [   28.474710] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
Sep 11 22:37:10 BlackBox NetworkManager[817]: <warn> /sys/devices/virtual/net/lo: couldn't determine device driver; ignoring...
Sep 11 22:37:10 BlackBox NetworkManager[817]: <info> urfkill disappeared from the bus
Sep 11 22:37:10 BlackBox NetworkManager[817]: <info> ModemManager available in the bus
Sep 11 22:37:11 BlackBox NetworkManager[817]: <info> wpa_supplicant started
Sep 11 22:37:11 BlackBox NetworkManager[817]: <info> (wlan0) supports 4 scan SSIDs
Sep 11 22:37:11 BlackBox NetworkManager[817]: <warn> Trying to remove a non-existant call id.
Sep 11 22:37:11 BlackBox NetworkManager[817]: <info> (wlan0): supplicant interface state: starting -> ready
Sep 11 22:37:11 BlackBox NetworkManager[817]: <info> (wlan0): device state change: unavailable -> disconnected (reason 'supplicant-available') [20 30 42]
Sep 11 22:37:11 BlackBox wpa_supplicant[1054]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 22:37:11 BlackBox NetworkManager[817]: <info> (wlan0): supplicant interface state: ready -> disconnected
Sep 11 22:37:11 BlackBox NetworkManager[817]: <info> (wlan0) supports 4 scan SSIDs
Sep 11 22:37:15 BlackBox NetworkManager[817]: <info> (wlan0): supplicant interface state: disconnected -> inactive
Sep 11 22:37:15 BlackBox NetworkManager[817]: <info> Auto-activating connection 'Copboco'.
Sep 11 22:37:15 BlackBox NetworkManager[817]: <info> Activation (wlan0) starting connection 'Copboco'
Sep 11 22:37:15 BlackBox NetworkManager[817]: <info> (wlan0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
Sep 11 22:37:15 BlackBox NetworkManager[817]: <info> NetworkManager state is now CONNECTING
Sep 11 22:37:15 BlackBox NetworkManager[817]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
Sep 11 22:37:15 BlackBox NetworkManager[817]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
Sep 11 22:37:15 BlackBox NetworkManager[817]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
Sep 11 22:37:15 BlackBox NetworkManager[817]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
Sep 11 22:37:15 BlackBox NetworkManager[817]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
Sep 11 22:37:15 BlackBox NetworkManager[817]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
Sep 11 22:37:15 BlackBox NetworkManager[817]: <info> Activation (wlan0/wireless): connection 'Copboco' has security, and secrets exist.  No new secrets needed.
Sep 11 22:37:15 BlackBox NetworkManager[817]: <info> Config: added 'ssid' value 'Copboco'
Sep 11 22:37:15 BlackBox NetworkManager[817]: <info> Config: added 'scan_ssid' value '1'
Sep 11 22:37:15 BlackBox NetworkManager[817]: <info> Config: added 'key_mgmt' value 'WPA-PSK'
Sep 11 22:37:15 BlackBox NetworkManager[817]: <info> Config: added 'psk' value '<omitted>'
Sep 11 22:37:15 BlackBox NetworkManager[817]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
Sep 11 22:37:15 BlackBox NetworkManager[817]: <info> Config: set interface ap_scan to 1
Sep 11 22:37:15 BlackBox wpa_supplicant[1054]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 22:37:18 BlackBox wpa_supplicant[1054]: wlan0: SME: Trying to authenticate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2417 MHz)
Sep 11 22:37:18 BlackBox kernel: [   36.517594] wlan0: authenticate with 84:9c:a6:a2:e7:b6
Sep 11 22:37:18 BlackBox kernel: [   36.530018] wlan0: send auth to 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 22:37:18 BlackBox NetworkManager[817]: <info> (wlan0): supplicant interface state: inactive -> authenticating
Sep 11 22:37:18 BlackBox wpa_supplicant[1054]: wlan0: Trying to associate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2417 MHz)
Sep 11 22:37:18 BlackBox kernel: [   36.540736] wlan0: authenticated
Sep 11 22:37:19 BlackBox NetworkManager[817]: <info> (wlan0): supplicant interface state: authenticating -> associating
Sep 11 22:37:19 BlackBox kernel: [   36.544135] wlan0: associate with 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 22:37:19 BlackBox wpa_supplicant[1054]: wlan0: Associated with 84:9c:a6:a2:e7:b6
Sep 11 22:37:19 BlackBox kernel: [   36.552719] wlan0: RX AssocResp from 84:9c:a6:a2:e7:b6 (capab=0x431 status=0 aid=1)
Sep 11 22:37:19 BlackBox kernel: [   36.553012] wlan0: associated
Sep 11 22:37:19 BlackBox kernel: [   36.553043] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
Sep 11 22:37:19 BlackBox NetworkManager[817]: <info> (wlan0): supplicant interface state: associating -> associated
Sep 11 22:37:19 BlackBox NetworkManager[817]: <info> (wlan0): supplicant interface state: associated -> 4-way handshake
Sep 11 22:37:20 BlackBox avahi-daemon[792]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::21c:26ff:feb4:1649.
Sep 11 22:37:20 BlackBox avahi-daemon[792]: New relevant interface wlan0.IPv6 for mDNS.
Sep 11 22:37:20 BlackBox avahi-daemon[792]: Registering new address record for fe80::21c:26ff:feb4:1649 on wlan0.*.
Sep 11 22:37:20 BlackBox NetworkManager[817]: <info> WiFi hardware radio set enabled
Sep 11 22:37:23 BlackBox wpa_supplicant[1054]: wlan0: WPA: Key negotiation completed with 84:9c:a6:a2:e7:b6 [PTK=CCMP GTK=CCMP]
Sep 11 22:37:23 BlackBox wpa_supplicant[1054]: wlan0: CTRL-EVENT-CONNECTED - Connection to 84:9c:a6:a2:e7:b6 completed [id=0 id_str=]
Sep 11 22:37:23 BlackBox wpa_supplicant[1054]: wlan0: SME: Trying to authenticate with 9c:c7:a6:1c:c7:7e (SSID='FRITZ!Box Fon WLAN 7390' freq=2412 MHz)
Sep 11 22:37:23 BlackBox kernel: [   40.604263] wlan0: authenticate with 9c:c7:a6:1c:c7:7e
Sep 11 22:37:23 BlackBox NetworkManager[817]: <info> (wlan0): supplicant interface state: 4-way handshake -> authenticating
Sep 11 22:37:23 BlackBox kernel: [   40.608669] wlan0: send auth to 9c:c7:a6:1c:c7:7e (try 1/3)
Sep 11 22:37:23 BlackBox wpa_supplicant[1054]: wlan0: Trying to associate with 9c:c7:a6:1c:c7:7e (SSID='FRITZ!Box Fon WLAN 7390' freq=2412 MHz)
Sep 11 22:37:23 BlackBox kernel: [   40.613922] wlan0: authenticated
Sep 11 22:37:23 BlackBox NetworkManager[817]: <info> (wlan0): supplicant interface state: authenticating -> associating
Sep 11 22:37:23 BlackBox kernel: [   40.620101] wlan0: associate with 9c:c7:a6:1c:c7:7e (try 1/3)
Sep 11 22:37:23 BlackBox wpa_supplicant[1054]: wlan0: Associated with 9c:c7:a6:1c:c7:7e
Sep 11 22:37:23 BlackBox kernel: [   40.657713] wlan0: RX AssocResp from 9c:c7:a6:1c:c7:7e (capab=0x431 status=0 aid=1)
Sep 11 22:37:23 BlackBox kernel: [   40.658003] wlan0: associated
Sep 11 22:37:23 BlackBox wpa_supplicant[1054]: wlan0: WPA: No SSID info found (msg 1 of 4)
Sep 11 22:37:23 BlackBox NetworkManager[817]: <info> (wlan0): supplicant interface state: associating -> associated
Sep 11 22:37:27 BlackBox kernel: [   44.666291] wlan0: disassociated from 9c:c7:a6:1c:c7:7e (Reason: 2)
Sep 11 22:37:26 BlackBox wpa_supplicant[1054]: message repeated 3 times: [ wlan0: WPA: No SSID info found (msg 1 of 4)]
Sep 11 22:37:27 BlackBox wpa_supplicant[1054]: wlan0: CTRL-EVENT-DISCONNECTED bssid=9c:c7:a6:1c:c7:7e reason=2
Sep 11 22:37:27 BlackBox NetworkManager[817]: <warn> Connection disconnected (reason 2)
Sep 11 22:37:27 BlackBox kernel: [   44.680321] wlan0: deauthenticating from 9c:c7:a6:1c:c7:7e by local choice (reason=3)
Sep 11 22:37:27 BlackBox NetworkManager[817]: <info> (wlan0): supplicant interface state: associated -> disconnected
Sep 11 22:37:27 BlackBox wpa_supplicant[1054]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 22:37:27 BlackBox NetworkManager[817]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Sep 11 22:37:30 BlackBox wpa_supplicant[1054]: wlan0: SME: Trying to authenticate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2417 MHz)
Sep 11 22:37:30 BlackBox kernel: [   48.421074] wlan0: authenticate with 84:9c:a6:a2:e7:b6
Sep 11 22:37:30 BlackBox NetworkManager[817]: <info> (wlan0): supplicant interface state: scanning -> authenticating
Sep 11 22:37:30 BlackBox kernel: [   48.434096] wlan0: send auth to 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 22:37:30 BlackBox wpa_supplicant[1054]: wlan0: Trying to associate with 84:9c:a6:a2:e7:b6 (SSID='Copboco' freq=2417 MHz)
Sep 11 22:37:30 BlackBox kernel: [   48.442815] wlan0: authenticated
Sep 11 22:37:30 BlackBox kernel: [   48.444127] wlan0: associate with 84:9c:a6:a2:e7:b6 (try 1/3)
Sep 11 22:37:30 BlackBox NetworkManager[817]: <info> (wlan0): supplicant interface state: authenticating -> associating
Sep 11 22:37:30 BlackBox wpa_supplicant[1054]: wlan0: Associated with 84:9c:a6:a2:e7:b6
Sep 11 22:37:30 BlackBox kernel: [   48.465048] wlan0: RX AssocResp from 84:9c:a6:a2:e7:b6 (capab=0x431 status=0 aid=1)
Sep 11 22:37:30 BlackBox kernel: [   48.465338] wlan0: associated
Sep 11 22:37:30 BlackBox NetworkManager[817]: <info> (wlan0): supplicant interface state: associating -> associated
Sep 11 22:37:30 BlackBox wpa_supplicant[1054]: wlan0: WPA: Key negotiation completed with 84:9c:a6:a2:e7:b6 [PTK=CCMP GTK=CCMP]
Sep 11 22:37:30 BlackBox wpa_supplicant[1054]: wlan0: CTRL-EVENT-CONNECTED - Connection to 84:9c:a6:a2:e7:b6 completed [id=0 id_str=]
Sep 11 22:37:30 BlackBox NetworkManager[817]: <info> (wlan0): supplicant interface state: associated -> completed
Sep 11 22:37:30 BlackBox NetworkManager[817]: <info> Activation (wlan0/wireless) Stage 2 of 5 (Device Configure) successful.  Connected to wireless network 'Copboco'.
Sep 11 22:37:30 BlackBox NetworkManager[817]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) scheduled.
Sep 11 22:37:30 BlackBox NetworkManager[817]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) started...
Sep 11 22:37:30 BlackBox NetworkManager[817]: <info> (wlan0): device state change: config -> ip-config (reason 'none') [50 70 0]
Sep 11 22:37:30 BlackBox NetworkManager[817]: <info> Activation (wlan0) Beginning DHCPv4 transaction (timeout in 45 seconds)
Sep 11 22:37:30 BlackBox NetworkManager[817]: <info> dhclient started with pid 1730
Sep 11 22:37:30 BlackBox avahi-daemon[792]: Withdrawing address record for fe80::21c:26ff:feb4:1649 on wlan0.
Sep 11 22:37:30 BlackBox avahi-daemon[792]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::21c:26ff:feb4:1649.
Sep 11 22:37:30 BlackBox avahi-daemon[792]: Interface wlan0.IPv6 no longer relevant for mDNS.
Sep 11 22:37:30 BlackBox NetworkManager[817]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) complete.
Sep 11 22:37:31 BlackBox dhclient: Internet Systems Consortium DHCP Client 4.2.4
Sep 11 22:37:31 BlackBox dhclient: Copyright 2004-2012 Internet Systems Consortium.
Sep 11 22:37:31 BlackBox NetworkManager[817]: <info> (wlan0): DHCPv4 state changed nbi -> preinit
Sep 11 22:37:31 BlackBox dhclient: Listening on LPF/wlan0/00:1c:26:b4:16:49
Sep 11 22:37:31 BlackBox dhclient: Sending on   LPF/wlan0/00:1c:26:b4:16:49
Sep 11 22:37:31 BlackBox dhclient: DHCPREQUEST of 192.168.1.5 on wlan0 to 255.255.255.255 port 67 (xid=0x65131b40)
Sep 11 22:37:32 BlackBox avahi-daemon[792]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::21c:26ff:feb4:1649.
Sep 11 22:37:32 BlackBox avahi-daemon[792]: New relevant interface wlan0.IPv6 for mDNS.
Sep 11 22:37:32 BlackBox avahi-daemon[792]: Registering new address record for fe80::21c:26ff:feb4:1649 on wlan0.*.
Sep 11 22:37:34 BlackBox dhclient: DHCPREQUEST of 192.168.1.5 on wlan0 to 255.255.255.255 port 67 (xid=0x65131b40)
Sep 11 22:37:34 BlackBox NetworkManager[817]: <info> (wlan0): DHCPv4 state changed preinit -> reboot
Sep 11 22:37:34 BlackBox NetworkManager[817]: <info>   address 192.168.1.5
Sep 11 22:37:34 BlackBox NetworkManager[817]: <info>   prefix 24 (255.255.255.0)
Sep 11 22:37:34 BlackBox NetworkManager[817]: <info>   gateway 192.168.1.1
Sep 11 22:37:34 BlackBox NetworkManager[817]: <info>   nameserver '192.168.1.1'
Sep 11 22:37:34 BlackBox NetworkManager[817]: <info>   domain name 'localdomain'
Sep 11 22:37:34 BlackBox NetworkManager[817]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Configure Commit) scheduled...
Sep 11 22:37:34 BlackBox NetworkManager[817]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) started...
Sep 11 22:37:34 BlackBox avahi-daemon[792]: Joining mDNS multicast group on interface wlan0.IPv4 with address 192.168.1.5.
Sep 11 22:37:34 BlackBox avahi-daemon[792]: New relevant interface wlan0.IPv4 for mDNS.
Sep 11 22:37:34 BlackBox avahi-daemon[792]: Registering new address record for 192.168.1.5 on wlan0.IPv4.
Sep 11 22:37:35 BlackBox NetworkManager[817]: <info> (wlan0): device state change: ip-config -> secondaries (reason 'none') [70 90 0]
Sep 11 22:37:35 BlackBox NetworkManager[817]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) complete.
Sep 11 22:37:35 BlackBox NetworkManager[817]: <info> (wlan0): device state change: secondaries -> activated (reason 'none') [90 100 0]
Sep 11 22:37:35 BlackBox NetworkManager[817]: <info> NetworkManager state is now CONNECTED_GLOBAL
Sep 11 22:37:35 BlackBox NetworkManager[817]: <info> Policy set 'Copboco' (wlan0) as default for IPv4 routing and DNS.
Sep 11 22:37:35 BlackBox NetworkManager[817]: <info> DNS: starting dnsmasq...
Sep 11 22:37:35 BlackBox NetworkManager[817]: <warn> dnsmasq not available on the bus, can't update servers.
Sep 11 22:37:35 BlackBox NetworkManager[817]: <error> [1410467855.791136] [nm-dns-dnsmasq.c:396] update(): dnsmasq owner not found on bus: Could not get owner of name 'org.freedesktop.NetworkManager.dnsmasq': no such name
Sep 11 22:37:35 BlackBox NetworkManager[817]: <warn> DNS: plugin dnsmasq update failed
Sep 11 22:37:35 BlackBox NetworkManager[817]: <info> Writing DNS information to /sbin/resolvconf
Sep 11 22:37:41 BlackBox NetworkManager[817]: <info> Activation (wlan0) successful, device activated.
Sep 11 22:37:41 BlackBox NetworkManager[817]: <warn> dnsmasq appeared on DBus: :1.30
Sep 11 22:37:41 BlackBox NetworkManager[817]: <info> Writing DNS information to /sbin/resolvconf
Sep 11 22:38:07 BlackBox wpa_supplicant[1054]: wlan0: CTRL-EVENT-SCAN-STARTED 
Sep 11 23:33:11 BlackBox NetworkManager[817]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted


$ 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' 
[    0.000000] original variable MTRRs
[    0.000000] free_area_init_node: node 0, pgdat c199b440, node_mem_map f6c3e020
[    0.004468] CPU0: Thermal monitoring enabled (TM2)
[    0.100925] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query honored via DMI
[    0.181693] pci_bus 0000:00: on NUMA node 0
[    0.181696] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
[    0.896646] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    0.897028] audit: initializing netlink socket (disabled)
[    0.938497] thermal LNXTHERM:00: registered as thermal_zone0
[    0.938500] ACPI: Thermal Zone [THM0] (34 C)
[    0.939917] thermal LNXTHERM:01: registered as thermal_zone1
[    0.939920] ACPI: Thermal Zone [THM1] (36 C)
[    1.944747] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.949497] ata2: port disabled--ignoring
[    1.997505] Loaded X.509 cert 'Magrathea: Glacier signing key: a28db5fd6e299cce4947dacaa66f459db4acce24'
[    2.227446] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
[    2.227450] e1000e: Copyright(c) 1999 - 2013 Intel Corporation.
[    2.227689] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    2.227721] e1000e 0000:00:19.0: irq 46 for MSI/MSI-X
[    2.550141] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 00:21:86:52:9b:22
[    2.550146] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
[    2.550178] e1000e 0000:00:19.0 eth0: MAC: 6, PHY: 6, PBA No: 1008FF-0FF
[   21.156548] Adding 3906556k swap on /dev/sda3.  Priority:-1 extents:1 across:3906556k FS
[   21.246243] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   21.720586] systemd-udevd[350]: renamed network interface eth0 to eth1
[   21.721693] wmi: Mapper loaded
[   21.949123] ath5k 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
[   21.949249] ath5k 0000:03:00.0: registered as 'phy0'
[   22.135151] thinkpad_acpi: http://ibm-acpi.sf.net/
[   22.929994] ath: EEPROM regdomain: 0x62
[   22.929999] ath: EEPROM indicates we should expect a direct regpair map
[   22.930005] ath: Country alpha2 being used: 00
[   22.930007] ath: Regpair used: 0x62
[   22.939903] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[   22.940347] ath5k: phy0: Atheros AR5414 chip found (MAC: 0xa3, PHY: 0x61)
[   26.607986] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   28.348262] e1000e 0000:00:19.0: irq 46 for MSI/MSI-X
[   28.400280] hdaps: LENOVO ThinkPad T61 detected, setting orientation 1
[   28.453669] e1000e 0000:00:19.0: irq 46 for MSI/MSI-X
[   28.453812] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[   28.454274] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[   28.474309] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   28.474710] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   36.517594] wlan0: authenticate with 84:9c:a6:a2:e7:b6
[   36.530018] wlan0: send auth to 84:9c:a6:a2:e7:b6 (try 1/3)
[   36.540736] wlan0: authenticated
[   36.544135] wlan0: associate with 84:9c:a6:a2:e7:b6 (try 1/3)
[   36.552719] wlan0: RX AssocResp from 84:9c:a6:a2:e7:b6 (capab=0x431 status=0 aid=1)
[   36.553012] wlan0: associated
[   36.553043] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   36.558144] ath: EEPROM regdomain: 0x8114
[   36.558149] ath: EEPROM indicates we should expect a country code
[   36.558151] ath: doing EEPROM country->regdmn map search
[   36.558153] ath: country maps to regdmn code: 0x37
[   36.558156] ath: Country alpha2 being used: DE
[   36.558157] ath: Regpair used: 0x37
[   36.558160] ath: regdomain 0x8114 dynamically updated by country IE
[   36.558169] cfg80211:   (5150000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[   40.604263] wlan0: authenticate with 9c:c7:a6:1c:c7:7e
[   40.608669] wlan0: send auth to 9c:c7:a6:1c:c7:7e (try 1/3)
[   40.613922] wlan0: authenticated
[   40.620101] wlan0: associate with 9c:c7:a6:1c:c7:7e (try 1/3)
[   40.657713] wlan0: RX AssocResp from 9c:c7:a6:1c:c7:7e (capab=0x431 status=0 aid=1)
[   40.658003] wlan0: associated
[   40.662528] ath: EEPROM regdomain: 0x8114
[   40.662532] ath: EEPROM indicates we should expect a country code
[   40.662534] ath: doing EEPROM country->regdmn map search
[   40.662536] ath: country maps to regdmn code: 0x37
[   40.662538] ath: Country alpha2 being used: DE
[   40.662539] ath: Regpair used: 0x37
[   40.662542] ath: regdomain 0x8114 dynamically updated by country IE
[   44.666291] wlan0: disassociated from 9c:c7:a6:1c:c7:7e (Reason: 2)
[   44.680321] wlan0: deauthenticating from 9c:c7:a6:1c:c7:7e by local choice (reason=3)
[   48.421074] wlan0: authenticate with 84:9c:a6:a2:e7:b6
[   48.434096] wlan0: send auth to 84:9c:a6:a2:e7:b6 (try 1/3)
[   48.442815] wlan0: authenticated
[   48.444127] wlan0: associate with 84:9c:a6:a2:e7:b6 (try 1/3)
[   48.465048] wlan0: RX AssocResp from 84:9c:a6:a2:e7:b6 (capab=0x431 status=0 aid=1)
[   48.465338] wlan0: associated
[   48.470933] ath: EEPROM regdomain: 0x8114
[   48.470937] ath: EEPROM indicates we should expect a country code
[   48.470940] ath: doing EEPROM country->regdmn map search
[   48.470942] ath: country maps to regdmn code: 0x37
[   48.470944] ath: Country alpha2 being used: DE
[   48.470946] ath: Regpair used: 0x37
[   48.470948] ath: regdomain 0x8114 dynamically updated by country IE
[   49.833811] ecryptfs_mount: kern_path() failed
[   57.231557] audit_printk_skb: 84 callbacks suppressed
[  977.005940] ath5k: ath5k_hw_get_isr: ISR: 0x00000080 IMR: 0x00000000
[ 3737.003584] ath5k: ath5k_hw_get_isr: ISR: 0x00000080 IMR: 0x00000000