ubuntuusers.de

Wifi.log

Autor:
Appiah_92
Datum:
29. Oktober 2016 15:20
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
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
Linux stru-hp 3.13.0-100-generic #147-Ubuntu SMP Tue Oct 18 16:48:51 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
02:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8101/2/6E PCI Express Fast/Gigabit Ethernet controller [10ec:8136] (rev 07)
	Subsystem: Hewlett-Packard Company Device [103c:80b5]
	Kernel driver in use: r8169
03:00.0 Network controller [0280]: Broadcom Corporation BCM43142 802.11b/g/n [14e4:4365] (rev 01)
	Subsystem: Hewlett-Packard Company Device [103c:804a]
	Kernel driver in use: wl


# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
# 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
127.0.0.1	localhost
127.0.1.1	stru-hp

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


eth0      Link encap:Ethernet  Hardware Adresse dc:4a:3e:e7:a7:d0  
          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)

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:1740 Fehler:0 Verloren:0 Überläufe:0 Fenster:0
          TX-Pakete:1740 Fehler:0 Verloren:0 Überläufe:0 Träger:0
          Kollisionen:0 Sendewarteschlangenlänge:0 
          RX-Bytes:163701 (163.7 KB)  TX-Bytes:163701 (163.7 KB)

wlan0     Link encap:Ethernet  Hardware Adresse 60:6d:c7:ee:47:d5  
          inet Adresse:192.168.0.112  Bcast:192.168.0.255  Maske:255.255.255.0
          inet6-Adresse: fe80::626d:c7ff:feee:47d5/64 Gültigkeitsbereich:Verbindung
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metrik:1
          RX-Pakete:21358 Fehler:0 Verloren:0 Überläufe:0 Fenster:4097
          TX-Pakete:20503 Fehler:0 Verloren:0 Überläufe:0 Träger:0
          Kollisionen:0 Sendewarteschlangenlänge:1000 
          RX-Bytes:17549516 (17.5 MB)  TX-Bytes:3153502 (3.1 MB)
          Interrupt:36 

wlan0     IEEE 802.11abg  ESSID:"RUOFF_Repeater"  
          Mode:Managed  Frequency:2.427 GHz  Access Point: 60:E3:27:5A:9F:2A   
          Retry  long limit:7   RTS thr:off   Fragment thr:off
          Power Management:off
          
Kernel-IP-Routentabelle
Ziel            Router          Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.0.1     0.0.0.0         UG    0      0        0 wlan0
192.168.0.0     0.0.0.0         255.255.255.0   U     9      0        0 wlan0
? (192.168.0.1) auf 90:f6:52:a7:79:78 [ether] auf wlan0
? (192.168.0.102) auf c4:6e:1f:19:31:de [ether] auf wlan0
Einträge: 2   Ignoriert: 0   Gefunden: 2
192.168.0.1 dev wlan0 lladdr 90:f6:52:a7:79:78 REACHABLE
192.168.0.102 dev wlan0 lladdr c4:6e:1f:19:31:de STALE


[main]
NetworkingEnabled=true
WirelessEnabled=true
WWANEnabled=true
WimaxEnabled=true
[main]
plugins=ifupdown,keyfile,ofono
dns=dnsmasq

[ifupdown]
managed=false


# PCI device 0x10ec:0x8136 (r8169)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="dc:4a:3e:e7:a7:d0", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"

# PCI device 0x14e4:0x4365 (wl)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="60:6d:c7:ee:47:d5", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="wlan*", NAME="wlan0"


PING 192.168.0.1 (192.168.0.1) 56(84) bytes of data.
64 bytes from 192.168.0.1: icmp_seq=1 ttl=64 time=3.96 ms

--- 192.168.0.1 ping statistics ---
2 packets transmitted, 1 received, 50% packet loss, time 1001ms
rtt min/avg/max/mdev = 3.960/3.960/3.960/0.000 ms
PING ubuntuusers.de (213.95.41.4) 56(84) bytes of data.
64 bytes from ha.ubuntu-eu.org (213.95.41.4): icmp_seq=1 ttl=55 time=19.0 ms

--- ubuntuusers.de ping statistics ---
2 packets transmitted, 1 received, 50% packet loss, time 1001ms
rtt min/avg/max/mdev = 19.029/19.029/19.029/0.000 ms
PING 213.95.41.4 (213.95.41.4) 56(84) bytes of data.

--- 213.95.41.4 ping statistics ---
2 packets transmitted, 0 received, 100% packet loss, time 1007ms



0: hci0: Bluetooth
	Soft blocked: yes
	Hard blocked: no
1: phy0: Wireless LAN
	Soft blocked: no
	Hard blocked: no
2: brcmwl-0: Wireless LAN
	Soft blocked: no
	Hard blocked: no


Module                  Size  Used by
ip6table_filter        12815  0 
ip6_tables             26901  1 ip6table_filter
iptable_filter         12810  0 
ip_tables              27116  1 iptable_filter
x_tables               34802  4 ip6table_filter,ip_tables,iptable_filter,ip6_tables
rfcomm                 69160  10 
bnep                   19624  2 
fglrx               13510274  171 
snd_hda_codec_realtek    65904  1 
kvm                   455843  0 
snd_hda_codec_hdmi     46368  1 
snd_hda_intel          56611  5 
crct10dif_pclmul       14289  0 
snd_hda_codec         193017  3 snd_hda_codec_realtek,snd_hda_codec_hdmi,snd_hda_intel
crc32_pclmul           13113  0 
snd_hwdep              13602  1 snd_hda_codec
hp_wmi                 14062  0 
wl                   6367819  0 
snd_pcm               102099  3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
sparse_keymap          13948  1 hp_wmi
aesni_intel            55624  0 
aes_x86_64             17131  1 aesni_intel
snd_page_alloc         18710  2 snd_pcm,snd_hda_intel
lrw                    13286  1 aesni_intel
gf128mul               14951  1 lrw
snd_seq_midi           13324  0 
uvcvideo               80885  0 
glue_helper            13990  1 aesni_intel
ablk_helper            13597  1 aesni_intel
snd_seq_midi_event     14899  1 snd_seq_midi
snd_rawmidi            30731  1 snd_seq_midi
videobuf2_vmalloc      13216  1 uvcvideo
btusb                  32412  0 
cryptd                 20359  2 aesni_intel,ablk_helper
bluetooth             391136  22 bnep,btusb,rfcomm
videobuf2_memops       13362  1 videobuf2_vmalloc
snd_seq                61616  2 snd_seq_midi_event,snd_seq_midi
videobuf2_core         40664  1 uvcvideo
videodev              134688  2 uvcvideo,videobuf2_core
snd_seq_device         14497  3 snd_seq,snd_rawmidi,snd_seq_midi
snd_timer              29549  2 snd_pcm,snd_seq
joydev                 17381  0 
rtsx_pci_ms            18151  0 
serio_raw              13462  0 
memstick               16966  1 rtsx_pci_ms
snd                    69416  21 snd_hda_codec_realtek,snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_seq,snd_rawmidi,snd_hda_codec,snd_hda_intel,snd_seq_device,snd_seq_midi
cfg80211              496328  1 wl
i2c_piix4              22155  0 
soundcore              12680  1 snd
shpchp                 37032  0 
amd_iommu_v2           19054  1 fglrx
wmi                    19177  1 hp_wmi
hp_accel               26012  0 
video                  19476  0 
lis3lv02d              20156  1 hp_accel
input_polldev          13896  1 lis3lv02d
hp_wireless            12637  0 
nls_iso8859_1          12713  1 
parport_pc             32701  0 
ppdev                  17671  0 
mac_hid                13205  0 
lp                     17759  0 
parport                42348  3 lp,ppdev,parport_pc
rtsx_pci_sdmmc         23274  0 
psmouse               106692  0 
ahci                   34091  4 
r8169                  71677  0 
libahci                32716  1 ahci
rtsx_pci               46245  2 rtsx_pci_ms,rtsx_pci_sdmmc
mii                    13934  1 r8169


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 34 : 5.17 GHz
          Channel 36 : 5.18 GHz
          Channel 38 : 5.19 GHz
          Channel 40 : 5.2 GHz
          Channel 42 : 5.21 GHz
          Channel 44 : 5.22 GHz
          Channel 46 : 5.23 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
          Current Frequency:2.427 GHz (Channel 4)



wlan0     Scan completed :
          Cell 01 - Address: 60:E3:27:5A:9F:2A
                    Channel:4
                    Frequency:2.427 GHz (Channel 4)
                    Quality=70/70  Signal level=-40 dBm  
                    Encryption key:on
                    ESSID:"RUOFF_Repeater"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s
                              9 Mb/s; 12 Mb/s; 18 Mb/s
                    Bit Rates:24 Mb/s; 36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=0000000000000000
                    Extra: Last beacon: 48ms ago
                    IE: Unknown: 000E52554F46465F5265706561746572
                    IE: Unknown: 010882848B960C121824
                    IE: Unknown: 030104
                    IE: Unknown: 0706444520010D14
                    IE: Unknown: 2A0100
                    IE: Unknown: 32043048606C
                    IE: Unknown: 2D1AEF1103FFFF0000000000000000000000000000000406E6E70D00
                    IE: Unknown: 331AEF1103FFFF0000000000000000000000000000000406E6E70D00
                    IE: Unknown: 3D16040D0600000000000000000000000000000000000000
                    IE: Unknown: 3416040D0600000000000000000000000000000000000000
                    IE: Unknown: DD180050F2020101850003A4000027A4000042435E0062322F00
                    IE: Unknown: DD0900037F01010000FF7F
                    IE: Unknown: DD7E0050F204104A0001101044000102103B000103104700105B541821210758F697D1DEE170CEE5051021000754502D4C494E4B1023000A544C2D5741383534524510240003312E301042000010540008000000000000000010110018576972656C657373204E20415020544C2D57413835345245100800020008103C000103
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
          Cell 02 - Address: 90:F6:52:A7:79:78
                    Channel:4
                    Frequency:2.427 GHz (Channel 4)
                    Quality=50/70  Signal level=-60 dBm  
                    Encryption key:on
                    ESSID:"STEPHANRUOFF-PC_Network"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s
                              9 Mb/s; 12 Mb/s; 18 Mb/s
                    Bit Rates:24 Mb/s; 36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=0000000000000000
                    Extra: Last beacon: 48ms ago
                    IE: Unknown: 00175354455048414E52554F46462D50435F4E6574776F726B
                    IE: Unknown: 010882848B960C121824
                    IE: Unknown: 030104
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
                    IE: Unknown: 2A0100
                    IE: Unknown: 32043048606C
                    IE: Unknown: DD180050F2020101860003A4000027A4000042435E0062322F00
                    IE: Unknown: DD1E00904C334E101BFFFF000000000000000000000000000000000000000000
                    IE: Unknown: 2D1A4E101BFFFF000000000000000000000000000000000000000000
                    IE: Unknown: DD1A00904C34040D0A00000000000000000000000000000000000000
                    IE: Unknown: 3D16040D0A00000000000000000000000000000000000000
                    IE: Unknown: DD0900037F01010000FF7F
                    IE: Unknown: DD0A00037F04010000004000
                    IE: Unknown: DD850050F204104A0001101044000102103B000103104700100000000000001000000090F652A779781021000754502D4C494E4B10230009544C2D57523834314E10240007362E302F372E3010420003312E301054000800060050F204000110110019576972656C65737320526F7574657220544C2D57523834314E100800020086103C000101



Oct 26 09:20:24 stru-hp dhclient: DHCPREQUEST of 192.168.0.112 on wlan0 to 192.168.0.1 port 67 (xid=0x4a4868dd)
Oct 26 10:05:50 stru-hp dhclient: message repeated 203 times: [ DHCPREQUEST of 192.168.0.112 on wlan0 to 192.168.0.1 port 67 (xid=0x4a4868dd)]
Oct 26 10:06:07 stru-hp dhclient: DHCPREQUEST of 192.168.0.112 on wlan0 to 255.255.255.255 port 67 (xid=0x4a4868dd)
Oct 26 10:19:54 stru-hp wpa_supplicant[940]: message repeated 61 times: [ wlan0: CTRL-EVENT-SCAN-STARTED ]
Oct 26 10:19:55 stru-hp wpa_supplicant[940]: wlan0: CTRL-EVENT-DISCONNECTED bssid=60:e3:27:5a:9f:2a reason=0
Oct 26 10:19:55 stru-hp NetworkManager[790]: <info> (wlan0): roamed from BSSID 60:E3:27:5A:9F:2A (RUOFF_Repeater) to (none) ((none))
Oct 26 10:19:55 stru-hp NetworkManager[790]: <info> (wlan0): supplicant interface state: completed -> disconnected
Oct 26 10:19:55 stru-hp wpa_supplicant[940]: wlan0: Reject scan trigger since one is already pending
Oct 26 10:19:55 stru-hp wpa_supplicant[940]: wlan0: Failed to initiate AP scan
Oct 26 10:19:56 stru-hp wpa_supplicant[940]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 10:19:56 stru-hp NetworkManager[790]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 10:19:57 stru-hp wpa_supplicant[940]: wlan0: Trying to associate with 60:e3:27:5a:9f:2a (SSID='RUOFF_Repeater' freq=2427 MHz)
Oct 26 10:19:57 stru-hp NetworkManager[790]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 10:19:57 stru-hp wpa_supplicant[940]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=60:e3:27:5a:9f:2a status_code=16
Oct 26 10:19:57 stru-hp NetworkManager[790]: <info> (wlan0): supplicant interface state: associating -> disconnected
Oct 26 10:19:57 stru-hp wpa_supplicant[940]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 10:19:57 stru-hp NetworkManager[790]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 10:19:58 stru-hp wpa_supplicant[940]: wlan0: Trying to associate with 60:e3:27:5a:9f:2a (SSID='RUOFF_Repeater' freq=2427 MHz)
Oct 26 10:19:58 stru-hp NetworkManager[790]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 10:19:58 stru-hp wpa_supplicant[940]: wlan0: Associated with 60:e3:27:5a:9f:2a
Oct 26 10:19:58 stru-hp NetworkManager[790]: <info> (wlan0): supplicant interface state: associating -> 4-way handshake
Oct 26 10:19:58 stru-hp wpa_supplicant[940]: wlan0: WPA: Key negotiation completed with 60:e3:27:5a:9f:2a [PTK=CCMP GTK=TKIP]
Oct 26 10:19:58 stru-hp wpa_supplicant[940]: wlan0: CTRL-EVENT-CONNECTED - Connection to 60:e3:27:5a:9f:2a completed [id=0 id_str=]
Oct 26 10:19:58 stru-hp NetworkManager[790]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Oct 26 10:19:58 stru-hp NetworkManager[790]: <info> (wlan0): roamed from BSSID (none) ((none)) to 60:E3:27:5A:9F:2A (RUOFF_Repeater)
Oct 26 10:20:54 stru-hp NetworkManager[790]: <info> (wlan0): DHCPv4 state changed bound -> expire
Oct 26 10:20:42 stru-hp dhclient: message repeated 58 times: [ DHCPREQUEST of 192.168.0.112 on wlan0 to 255.255.255.255 port 67 (xid=0x4a4868dd)]
Oct 26 10:20:54 stru-hp dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 3 (xid=0x8fa8543)
Oct 26 10:20:54 stru-hp NetworkManager[790]: <info> (wlan0): DHCPv4 state changed expire -> preinit
Oct 26 10:20:54 stru-hp dhclient: DHCPREQUEST of 192.168.0.112 on wlan0 to 255.255.255.255 port 67 (xid=0x4385fa08)
Oct 26 10:20:57 stru-hp dhclient: DHCPREQUEST of 192.168.0.112 on wlan0 to 255.255.255.255 port 67 (xid=0x4385fa08)
Oct 26 10:20:57 stru-hp NetworkManager[790]: <info> (wlan0): DHCPv4 state changed preinit -> bound
Oct 26 10:20:57 stru-hp NetworkManager[790]: <info>   address 192.168.0.112
Oct 26 10:20:57 stru-hp NetworkManager[790]: <info>   prefix 24 (255.255.255.0)
Oct 26 10:20:57 stru-hp NetworkManager[790]: <info>   gateway 192.168.0.1
Oct 26 10:20:57 stru-hp NetworkManager[790]: <info>   nameserver '192.168.0.1'
Oct 26 10:21:54 stru-hp wpa_supplicant[940]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 11:08:56 stru-hp dhclient: DHCPREQUEST of 192.168.0.112 on wlan0 to 192.168.0.1 port 67 (xid=0x4385fa08)
Oct 26 12:05:48 stru-hp dhclient: message repeated 251 times: [ DHCPREQUEST of 192.168.0.112 on wlan0 to 192.168.0.1 port 67 (xid=0x4385fa08)]
Oct 26 12:06:04 stru-hp dhclient: DHCPREQUEST of 192.168.0.112 on wlan0 to 255.255.255.255 port 67 (xid=0x4385fa08)
Oct 26 12:20:58 stru-hp NetworkManager[790]: <info> (wlan0): DHCPv4 state changed bound -> expire
Oct 26 12:20:52 stru-hp dhclient: message repeated 64 times: [ DHCPREQUEST of 192.168.0.112 on wlan0 to 255.255.255.255 port 67 (xid=0x4385fa08)]
Oct 26 12:20:58 stru-hp dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 3 (xid=0x5f5b9808)
Oct 26 12:20:58 stru-hp NetworkManager[790]: <info> (wlan0): DHCPv4 state changed expire -> preinit
Oct 26 12:21:01 stru-hp dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 7 (xid=0x5f5b9808)
Oct 26 12:21:08 stru-hp dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 10 (xid=0x5f5b9808)
Oct 26 12:21:08 stru-hp dhclient: DHCPREQUEST of 192.168.0.112 on wlan0 to 255.255.255.255 port 67 (xid=0x8985b5f)
Oct 26 12:21:11 stru-hp dhclient: DHCPREQUEST of 192.168.0.112 on wlan0 to 255.255.255.255 port 67 (xid=0x8985b5f)
Oct 26 12:21:15 stru-hp dhclient: DHCPREQUEST of 192.168.0.112 on wlan0 to 255.255.255.255 port 67 (xid=0x8985b5f)
Oct 26 12:21:25 stru-hp dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 3 (xid=0xa6ef315a)
Oct 26 12:21:28 stru-hp dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 5 (xid=0xa6ef315a)
Oct 26 12:21:33 stru-hp dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 12 (xid=0xa6ef315a)
Oct 26 12:21:45 stru-hp dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 19 (xid=0xa6ef315a)
Oct 26 12:22:04 stru-hp dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 16 (xid=0xa6ef315a)
Oct 26 12:22:20 stru-hp dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 21 (xid=0xa6ef315a)
Oct 26 12:22:21 stru-hp dhclient: DHCPREQUEST of 192.168.0.112 on wlan0 to 255.255.255.255 port 67 (xid=0x5a31efa6)
Oct 26 12:22:21 stru-hp NetworkManager[790]: <info> (wlan0): DHCPv4 state changed preinit -> bound
Oct 26 12:22:21 stru-hp NetworkManager[790]: <info>   address 192.168.0.112
Oct 26 12:22:21 stru-hp NetworkManager[790]: <info>   prefix 24 (255.255.255.0)
Oct 26 12:22:21 stru-hp NetworkManager[790]: <info>   gateway 192.168.0.1
Oct 26 12:22:21 stru-hp NetworkManager[790]: <info>   nameserver '192.168.0.1'
Oct 26 13:08:48 stru-hp dhclient: DHCPREQUEST of 192.168.0.112 on wlan0 to 192.168.0.1 port 67 (xid=0x5a31efa6)
Oct 26 13:12:30 stru-hp kernel: [    0.125374] NET: Registered protocol family 16
Oct 26 13:12:30 stru-hp kernel: [    0.172662] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
Oct 26 13:12:30 stru-hp kernel: [    0.689259] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
Oct 26 13:12:30 stru-hp kernel: [    0.689280] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
Oct 26 13:12:30 stru-hp kernel: [    0.692208] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
Oct 26 13:12:30 stru-hp kernel: [    0.692222] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
Oct 26 13:12:30 stru-hp kernel: [    0.781763] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
Oct 26 13:12:30 stru-hp kernel: [    0.842092] NetLabel: Initializing
Oct 26 13:12:30 stru-hp kernel: [    0.842093] NetLabel:  domain hash size = 128
Oct 26 13:12:30 stru-hp kernel: [    0.842094] NetLabel:  protocols = UNLABELED CIPSOv4
Oct 26 13:12:30 stru-hp kernel: [    0.842106] NetLabel:  unlabeled traffic allowed by default
Oct 26 13:12:30 stru-hp kernel: [    0.881379] NET: Registered protocol family 2
Oct 26 13:12:30 stru-hp kernel: [    0.882380] NET: Registered protocol family 1
Oct 26 13:12:30 stru-hp kernel: [    1.178578] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Oct 26 13:12:30 stru-hp kernel: [    1.178949] audit: initializing netlink socket (disabled)
Oct 26 13:12:30 stru-hp kernel: [    1.373136] NET: Registered protocol family 10
Oct 26 13:12:30 stru-hp kernel: [    1.373314] NET: Registered protocol family 17
Oct 26 13:12:30 stru-hp kernel: [    1.476558] ACPI Error: Method parse/execution failed [\_SB_.ACAD._PSR] (Node ffff880203ee2780), AE_ALREADY_EXISTS (20131115/psparse-536)
Oct 26 13:12:30 stru-hp kernel: [    1.492683] ACPI Error: Method parse/execution failed [\_SB_.ACAD._PSR] (Node ffff880203ee2780), AE_ALREADY_EXISTS (20131115/psparse-536)
Oct 26 13:12:30 stru-hp kernel: [    1.508149] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
Oct 26 13:12:30 stru-hp kernel: [    1.508648] r8169 0000:02:00.0 eth0: RTL8106e at 0xffffc90000c94000, dc:4a:3e:e7:a7:d0, XID 04900000 IRQ 81
Oct 26 13:12:30 stru-hp kernel: [    1.564453] ACPI Error: Method parse/execution failed [\_SB_.ACAD._PSR] (Node ffff880203ee2780), AE_ALREADY_EXISTS (20131115/psparse-536)
Oct 26 13:12:30 stru-hp kernel: [    1.564885] ACPI Error: Method parse/execution failed [\_SB_.ACAD._PSR] (Node ffff880203ee2780), AE_ALREADY_EXISTS (20131115/psparse-536)
Oct 26 13:12:30 stru-hp kernel: [    1.564896] ACPI: Marking method _PSR as Serialized because of AE_ALREADY_EXISTS error
Oct 26 13:12:30 stru-hp kernel: [    6.074621] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
Oct 26 13:12:30 stru-hp kernel: [    6.074647] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
Oct 26 13:12:30 stru-hp kernel: [    6.122335] type=1400 audit(1477480348.234:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=418 comm="apparmor_parser"
Oct 26 13:12:30 stru-hp kernel: [    6.122913] type=1400 audit(1477480348.234:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=418 comm="apparmor_parser"
Oct 26 13:12:30 stru-hp kernel: [    6.250608] NET: Registered protocol family 31
Oct 26 13:12:30 stru-hp kernel: [    6.297372] usb 2-2: Direct firmware load failed with error -2
Oct 26 13:12:30 stru-hp kernel: [    6.397083] Bluetooth: can't load firmware, may not work correctly
Oct 26 13:12:30 stru-hp kernel: [    6.398671] ACPI Error: Method parse/execution failed [\HWMC] (Node ffff880203eddf50), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 13:12:30 stru-hp kernel: [    6.398683] ACPI Error: Method parse/execution failed [\_SB_.WMID.WMAA] (Node ffff880203ee00c8), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 13:12:30 stru-hp kernel: [    6.398756] ACPI Error: Method parse/execution failed [\HWMC] (Node ffff880203eddf50), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 13:12:30 stru-hp kernel: [    6.398766] ACPI Error: Method parse/execution failed [\_SB_.WMID.WMAA] (Node ffff880203ee00c8), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 13:12:30 stru-hp kernel: [    6.399054] ACPI Error: Method parse/execution failed [\HWMC] (Node ffff880203eddf50), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 13:12:30 stru-hp kernel: [    6.399066] ACPI Error: Method parse/execution failed [\_SB_.WMID.WMAA] (Node ffff880203ee00c8), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 13:12:30 stru-hp kernel: [    6.399153] ACPI Error: Method parse/execution failed [\HWMC] (Node ffff880203eddf50), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 13:12:30 stru-hp kernel: [    6.399163] ACPI Error: Method parse/execution failed [\_SB_.WMID.WMAA] (Node ffff880203ee00c8), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 13:12:30 stru-hp kernel: [    6.562396] wlan0: Broadcom BCM4365 802.11 Hybrid Wireless Controller 6.30.223.248 (r487574)
Oct 26 13:12:30 stru-hp kernel: [    8.674266] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Oct 26 13:12:30 stru-hp NetworkManager[842]: <info> NetworkManager (version 0.9.8.8) is starting...
Oct 26 13:12:30 stru-hp NetworkManager[842]: <info> Read config file /etc/NetworkManager/NetworkManager.conf
Oct 26 13:12:30 stru-hp NetworkManager[842]: <info> WEXT support is enabled
Oct 26 13:12:30 stru-hp avahi-daemon[848]: Network interface enumeration completed.
Oct 26 13:12:30 stru-hp NetworkManager[842]: <info> VPN: loaded org.freedesktop.NetworkManager.openconnect
Oct 26 13:12:30 stru-hp NetworkManager[842]: <info> VPN: loaded org.freedesktop.NetworkManager.pptp
Oct 26 13:12:30 stru-hp NetworkManager[842]: <info> DNS: loaded plugin dnsmasq
Oct 26 13:12:30 stru-hp NetworkManager[842]:    SCPlugin-Ifupdown: init!
Oct 26 13:12:30 stru-hp NetworkManager[842]:    SCPlugin-Ifupdown: update_system_hostname
Oct 26 13:12:30 stru-hp NetworkManager[842]:       interface-parser: parsing file /etc/network/interfaces
Oct 26 13:12:30 stru-hp NetworkManager[842]:       interface-parser: finished parsing file /etc/network/interfaces
Oct 26 13:12:30 stru-hp NetworkManager[842]:    SCPluginIfupdown: management mode: unmanaged
Oct 26 13:12:30 stru-hp NetworkManager[842]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:02.3/0000:02:00.0/net/eth0, iface: eth0)
Oct 26 13:12:30 stru-hp NetworkManager[842]:    SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:02.3/0000:02:00.0/net/eth0, iface: eth0): no ifupdown configuration found.
Oct 26 13:12:30 stru-hp NetworkManager[842]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:02.4/0000:03:00.0/net/wlan0, iface: wlan0)
Oct 26 13:12:30 stru-hp NetworkManager[842]:    SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:02.4/0000:03:00.0/net/wlan0, iface: wlan0): no ifupdown configuration found.
Oct 26 13:12:30 stru-hp NetworkManager[842]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/virtual/net/lo, iface: lo)
Oct 26 13:12:30 stru-hp NetworkManager[842]:    SCPlugin-Ifupdown: device added (path: /sys/devices/virtual/net/lo, iface: lo): no ifupdown configuration found.
Oct 26 13:12:30 stru-hp NetworkManager[842]:    SCPlugin-Ifupdown: end _init.
Oct 26 13:12:30 stru-hp NetworkManager[842]: <info> Loaded plugin ifupdown: (C) 2008 Canonical Ltd.  To report bugs please use the NetworkManager mailing list.
Oct 26 13:12:30 stru-hp NetworkManager[842]: <info> Loaded plugin keyfile: (c) 2007 - 2010 Red Hat, Inc.  To report bugs please use the NetworkManager mailing list.
Oct 26 13:12:30 stru-hp NetworkManager[842]:    SCPlugin-Ofono: Acquired D-Bus service com.canonical.NMOfono
Oct 26 13:12:30 stru-hp NetworkManager[842]:    SCPlugin-Ofono: init!
Oct 26 13:12:30 stru-hp NetworkManager[842]:    SCPlugin-Ofono: end _init.
Oct 26 13:12:30 stru-hp NetworkManager[842]: <info> Loaded plugin (null): (null)
Oct 26 13:12:30 stru-hp NetworkManager[842]:    Ifupdown: get unmanaged devices count: 0
Oct 26 13:12:30 stru-hp NetworkManager[842]:    SCPlugin-Ifupdown: (23719696) ... get_connections.
Oct 26 13:12:30 stru-hp NetworkManager[842]:    SCPlugin-Ifupdown: (23719696) ... get_connections (managed=false): return empty list.
Oct 26 13:12:30 stru-hp NetworkManager[842]:    keyfile: parsing Uni ... 
Oct 26 13:12:30 stru-hp NetworkManager[842]:    keyfile:     read connection 'Uni'
Oct 26 13:12:30 stru-hp NetworkManager[842]:    keyfile: parsing FRITZ!Box 7430 ZL ... 
Oct 26 13:12:30 stru-hp NetworkManager[842]:    keyfile:     read connection 'FRITZ!Box 7430 ZL'
Oct 26 13:12:30 stru-hp NetworkManager[842]:    keyfile: parsing RUOFF_Repeater ... 
Oct 26 13:12:30 stru-hp NetworkManager[842]:    keyfile:     read connection 'RUOFF_Repeater'
Oct 26 13:12:30 stru-hp NetworkManager[842]:    keyfile: parsing STEPHANRUOFF-PC_Network ... 
Oct 26 13:12:30 stru-hp kernel: [    8.834418] type=1400 audit(1477480350.946:12): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=918 comm="apparmor_parser"
Oct 26 13:12:30 stru-hp kernel: [    8.834957] type=1400 audit(1477480350.946:14): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=918 comm="apparmor_parser"
Oct 26 13:12:30 stru-hp NetworkManager[842]:    keyfile:     read connection 'STEPHANRUOFF-PC_Network'
Oct 26 13:12:30 stru-hp NetworkManager[842]:    keyfile: parsing belwue ... 
Oct 26 13:12:30 stru-hp NetworkManager[842]:    keyfile:     read connection 'belwue'
Oct 26 13:12:30 stru-hp NetworkManager[842]:    keyfile: parsing STEPHANRUOFF-PC_Network 1 ... 
Oct 26 13:12:30 stru-hp NetworkManager[842]:    keyfile:     read connection 'STEPHANRUOFF-PC_Network 1'
Oct 26 13:12:30 stru-hp NetworkManager[842]:    keyfile: parsing o2-WLAN94 ... 
Oct 26 13:12:30 stru-hp NetworkManager[842]:    keyfile:     read connection 'o2-WLAN94'
Oct 26 13:12:30 stru-hp NetworkManager[842]:    keyfile: parsing o2-WLAN57 ... 
Oct 26 13:12:31 stru-hp NetworkManager[842]:    keyfile:     read connection 'o2-WLAN57'
Oct 26 13:12:31 stru-hp NetworkManager[842]:    keyfile: parsing eduroam ... 
Oct 26 13:12:31 stru-hp NetworkManager[842]:    keyfile:     read connection 'eduroam'
Oct 26 13:12:31 stru-hp NetworkManager[842]:    SCPlugin-Ofono: (23526448) ... get_connections.
Oct 26 13:12:31 stru-hp NetworkManager[842]:    SCPlugin-Ofono: (23526448) connections count: 0
Oct 26 13:12:31 stru-hp NetworkManager[842]:    Ifupdown: get unmanaged devices count: 0
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> monitoring kernel firmware directory '/lib/firmware'.
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> rfkill1: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:02.4/0000:03:00.0/ieee80211/phy0/rfkill1) (driver wl)
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> rfkill2: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:02.4/0000:03:00.0/net/wlan0/rfkill2) (driver wl)
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> WiFi enabled by radio killswitch; enabled by state file
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> WWAN enabled by radio killswitch; enabled by state file
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> WiMAX enabled by radio killswitch; enabled by state file
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> Networking is enabled by state file
Oct 26 13:12:31 stru-hp NetworkManager[842]: <warn> failed to allocate link cache: (-12) Object not found
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> (eth0): carrier is OFF
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> (eth0): new Ethernet device (driver: 'r8169' ifindex: 2)
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> (eth0): exported as /org/freedesktop/NetworkManager/Devices/0
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> (eth0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> (eth0): bringing up device.
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> (eth0): preparing device.
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> (eth0): deactivating device (reason 'managed') [2]
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> Added default wired connection 'Kabelnetzwerkverbindung 1' for /sys/devices/pci0000:00/0000:00:02.3/0000:02:00.0/net/eth0
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> (wlan0): using nl80211 for WiFi device control
Oct 26 13:12:31 stru-hp kernel: [    9.089203] r8169 0000:02:00.0 eth0: link down
Oct 26 13:12:31 stru-hp kernel: [    9.089295] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> (wlan0): new 802.11 WiFi device (driver: 'wl' ifindex: 3)
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> (wlan0): exported as /org/freedesktop/NetworkManager/Devices/1
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> (wlan0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> (wlan0): bringing up device.
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> (wlan0): preparing device.
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> (wlan0): deactivating device (reason 'managed') [2]
Oct 26 13:12:31 stru-hp NetworkManager[842]: <warn> /sys/devices/virtual/net/lo: couldn't determine device driver; ignoring...
Oct 26 13:12:31 stru-hp NetworkManager[842]: <warn> /sys/devices/virtual/net/lo: couldn't determine device driver; ignoring...
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> urfkill disappeared from the bus
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> wpa_supplicant started
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> ModemManager available in the bus
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> (wlan0) supports 1 scan SSIDs
Oct 26 13:12:31 stru-hp NetworkManager[842]: <warn> Trying to remove a non-existant call id.
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: starting -> ready
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> (wlan0): device state change: unavailable -> disconnected (reason 'supplicant-available') [20 30 42]
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: ready -> disconnected
Oct 26 13:12:31 stru-hp NetworkManager[842]: <info> (wlan0) supports 1 scan SSIDs
Oct 26 13:12:31 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 13:12:31 stru-hp wpa_supplicant[980]: wlan0: Reject scan trigger since one is already pending
Oct 26 13:12:31 stru-hp acpid: starting up with netlink and the input layer
Oct 26 13:12:31 stru-hp kernel: [    9.742361] ip_tables: (C) 2000-2006 Netfilter Core Team
Oct 26 13:12:31 stru-hp kernel: [    9.777909] ip6_tables: (C) 2000-2006 Netfilter Core Team
Oct 26 13:12:32 stru-hp NetworkManager[842]: <info> Auto-activating connection 'STEPHANRUOFF-PC_Network'.
Oct 26 13:12:32 stru-hp NetworkManager[842]: <info> Activation (wlan0) starting connection 'STEPHANRUOFF-PC_Network'
Oct 26 13:12:32 stru-hp NetworkManager[842]: <info> (wlan0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
Oct 26 13:12:32 stru-hp NetworkManager[842]: <info> NetworkManager state is now CONNECTING
Oct 26 13:12:32 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
Oct 26 13:12:32 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
Oct 26 13:12:32 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
Oct 26 13:12:32 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
Oct 26 13:12:32 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
Oct 26 13:12:32 stru-hp NetworkManager[842]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
Oct 26 13:12:32 stru-hp NetworkManager[842]: <info> Activation (wlan0/wireless): connection 'STEPHANRUOFF-PC_Network' has security, and secrets exist.  No new secrets needed.
Oct 26 13:12:32 stru-hp NetworkManager[842]: <info> Config: added 'ssid' value 'STEPHANRUOFF-PC_Network'
Oct 26 13:12:32 stru-hp NetworkManager[842]: <info> Config: added 'scan_ssid' value '1'
Oct 26 13:12:32 stru-hp NetworkManager[842]: <info> Config: added 'key_mgmt' value 'WPA-PSK'
Oct 26 13:12:32 stru-hp NetworkManager[842]: <info> Config: added 'auth_alg' value 'OPEN'
Oct 26 13:12:32 stru-hp NetworkManager[842]: <info> Config: added 'psk' value '<omitted>'
Oct 26 13:12:32 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
Oct 26 13:12:32 stru-hp NetworkManager[842]: <info> Config: set interface ap_scan to 1
Oct 26 13:12:32 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: disconnected -> inactive
Oct 26 13:12:32 stru-hp wpa_supplicant[980]: wlan0: Trying to associate with 90:f6:52:a7:79:78 (SSID='STEPHANRUOFF-PC_Network' freq=2427 MHz)
Oct 26 13:12:32 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: inactive -> associating
Oct 26 13:12:32 stru-hp avahi-daemon[848]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::626d:c7ff:feee:47d5.
Oct 26 13:12:32 stru-hp avahi-daemon[848]: New relevant interface wlan0.IPv6 for mDNS.
Oct 26 13:12:32 stru-hp avahi-daemon[848]: Registering new address record for fe80::626d:c7ff:feee:47d5 on wlan0.*.
Oct 26 13:12:36 stru-hp NetworkManager[842]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/virtual/net/cscotun0, iface: cscotun0)
Oct 26 13:12:36 stru-hp NetworkManager[842]:    SCPlugin-Ifupdown: device added (path: /sys/devices/virtual/net/cscotun0, iface: cscotun0): no ifupdown configuration found.
Oct 26 13:12:36 stru-hp NetworkManager[842]: <warn> /sys/devices/virtual/net/cscotun0: couldn't determine device driver; ignoring...
Oct 26 13:12:36 stru-hp NetworkManager[842]:    SCPlugin-Ifupdown: devices removed (path: /sys/devices/virtual/net/cscotun0, iface: cscotun0)
Oct 26 13:12:41 stru-hp NetworkManager[842]: <info> WiFi hardware radio set enabled
Oct 26 13:12:42 stru-hp wpa_supplicant[980]: wlan0: Authentication with 90:f6:52:a7:79:78 timed out.
Oct 26 13:12:42 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-DISCONNECTED bssid=90:f6:52:a7:79:78 reason=3 locally_generated=1
Oct 26 13:12:42 stru-hp NetworkManager[842]: <warn> Connection disconnected (reason -3)
Oct 26 13:12:42 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: associating -> disconnected
Oct 26 13:12:42 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 13:12:42 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 13:12:43 stru-hp wpa_supplicant[980]: wlan0: Trying to associate with 90:f6:52:a7:79:78 (SSID='STEPHANRUOFF-PC_Network' freq=2427 MHz)
Oct 26 13:12:43 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 13:12:43 stru-hp wpa_supplicant[980]: wlan0: Associated with 90:f6:52:a7:79:78
Oct 26 13:12:43 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: associating -> 4-way handshake
Oct 26 13:12:43 stru-hp wpa_supplicant[980]: wlan0: WPA: Key negotiation completed with 90:f6:52:a7:79:78 [PTK=CCMP GTK=CCMP]
Oct 26 13:12:43 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-CONNECTED - Connection to 90:f6:52:a7:79:78 completed [id=0 id_str=]
Oct 26 13:12:43 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Oct 26 13:12:43 stru-hp NetworkManager[842]: <info> Activation (wlan0/wireless) Stage 2 of 5 (Device Configure) successful.  Connected to wireless network 'STEPHANRUOFF-PC_Network'.
Oct 26 13:12:43 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) scheduled.
Oct 26 13:12:43 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) started...
Oct 26 13:12:43 stru-hp NetworkManager[842]: <info> (wlan0): device state change: config -> ip-config (reason 'none') [50 70 0]
Oct 26 13:12:43 stru-hp NetworkManager[842]: <info> Activation (wlan0) Beginning DHCPv4 transaction (timeout in 45 seconds)
Oct 26 13:12:43 stru-hp NetworkManager[842]: <info> dhclient started with pid 2227
Oct 26 13:12:43 stru-hp NetworkManager[842]: <info> Activation (wlan0) Beginning IP6 addrconf.
Oct 26 13:12:43 stru-hp avahi-daemon[848]: Withdrawing address record for fe80::626d:c7ff:feee:47d5 on wlan0.
Oct 26 13:12:43 stru-hp avahi-daemon[848]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::626d:c7ff:feee:47d5.
Oct 26 13:12:43 stru-hp avahi-daemon[848]: Interface wlan0.IPv6 no longer relevant for mDNS.
Oct 26 13:12:43 stru-hp acvpnagent[1143]: A new network interface has been detected.
Oct 26 13:12:43 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) complete.
Oct 26 13:12:43 stru-hp acvpnagent[1143]: Function: netInterfaceNoticeCategoryHandler File: ../../vpn/Agent/MainThread.cpp Line: 7914 Network Interface change detected, refreshing physical MAC addresses
Oct 26 13:12:43 stru-hp dhclient: Internet Systems Consortium DHCP Client 4.2.4
Oct 26 13:12:43 stru-hp dhclient: Copyright 2004-2012 Internet Systems Consortium.
Oct 26 13:12:43 stru-hp NetworkManager[842]: <info> (wlan0): DHCPv4 state changed nbi -> preinit
Oct 26 13:12:43 stru-hp dhclient: Listening on LPF/wlan0/60:6d:c7:ee:47:d5
Oct 26 13:12:43 stru-hp dhclient: Sending on   LPF/wlan0/60:6d:c7:ee:47:d5
Oct 26 13:12:43 stru-hp dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 3 (xid=0x6430ff1e)
Oct 26 13:12:44 stru-hp avahi-daemon[848]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::626d:c7ff:feee:47d5.
Oct 26 13:12:44 stru-hp avahi-daemon[848]: New relevant interface wlan0.IPv6 for mDNS.
Oct 26 13:12:44 stru-hp avahi-daemon[848]: Registering new address record for fe80::626d:c7ff:feee:47d5 on wlan0.*.
Oct 26 13:12:46 stru-hp dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 8 (xid=0x6430ff1e)
Oct 26 13:12:46 stru-hp dhclient: DHCPREQUEST of 192.168.0.112 on wlan0 to 255.255.255.255 port 67 (xid=0x1eff3064)
Oct 26 13:12:46 stru-hp NetworkManager[842]: <info> (wlan0): DHCPv4 state changed preinit -> bound
Oct 26 13:12:46 stru-hp NetworkManager[842]: <info>   address 192.168.0.112
Oct 26 13:12:46 stru-hp NetworkManager[842]: <info>   prefix 24 (255.255.255.0)
Oct 26 13:12:46 stru-hp NetworkManager[842]: <info>   gateway 192.168.0.1
Oct 26 13:12:46 stru-hp NetworkManager[842]: <info>   nameserver '192.168.0.1'
Oct 26 13:12:46 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Configure Commit) scheduled...
Oct 26 13:12:46 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) started...
Oct 26 13:12:46 stru-hp avahi-daemon[848]: Joining mDNS multicast group on interface wlan0.IPv4 with address 192.168.0.112.
Oct 26 13:12:46 stru-hp avahi-daemon[848]: New relevant interface wlan0.IPv4 for mDNS.
Oct 26 13:12:46 stru-hp avahi-daemon[848]: Registering new address record for 192.168.0.112 on wlan0.IPv4.
Oct 26 13:12:46 stru-hp acvpnagent[1143]: A new network interface has been detected.
Oct 26 13:12:46 stru-hp acvpnagent[1143]: Function: netInterfaceNoticeCategoryHandler File: ../../vpn/Agent/MainThread.cpp Line: 7914 Network Interface change detected, refreshing physical MAC addresses
Oct 26 13:12:47 stru-hp NetworkManager[842]: <info> (wlan0): device state change: ip-config -> secondaries (reason 'none') [70 90 0]
Oct 26 13:12:47 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) complete.
Oct 26 13:12:47 stru-hp NetworkManager[842]: <info> (wlan0): device state change: secondaries -> activated (reason 'none') [90 100 0]
Oct 26 13:12:47 stru-hp NetworkManager[842]: <info> NetworkManager state is now CONNECTED_GLOBAL
Oct 26 13:12:47 stru-hp NetworkManager[842]: <info> Policy set 'STEPHANRUOFF-PC_Network' (wlan0) as default for IPv4 routing and DNS.
Oct 26 13:12:47 stru-hp NetworkManager[842]: <info> DNS: starting dnsmasq...
Oct 26 13:12:47 stru-hp NetworkManager[842]: <warn> dnsmasq not available on the bus, can't update servers.
Oct 26 13:12:47 stru-hp NetworkManager[842]: <error> [1477480367.597535] [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
Oct 26 13:12:47 stru-hp NetworkManager[842]: <warn> DNS: plugin dnsmasq update failed
Oct 26 13:12:47 stru-hp NetworkManager[842]: <info> Writing DNS information to /sbin/resolvconf
Oct 26 13:12:47 stru-hp NetworkManager[842]: <info> Activation (wlan0) successful, device activated.
Oct 26 13:12:47 stru-hp NetworkManager[842]: <warn> dnsmasq appeared on DBus: :1.52
Oct 26 13:12:47 stru-hp NetworkManager[842]: <info> Writing DNS information to /sbin/resolvconf
Oct 26 13:12:54 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 13:13:04 stru-hp NetworkManager[842]: <info> (wlan0): IP6 addrconf timed out or failed.
Oct 26 13:13:04 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) scheduled...
Oct 26 13:13:04 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) started...
Oct 26 13:13:04 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) complete.
Oct 26 13:26:17 stru-hp kernel: [  833.872254] WARNING: CPU: 3 PID: 549 at /build/linux-EbDtle/linux-3.13.0/net/wireless/sme.c:797 cfg80211_roamed+0x89/0x90 [cfg80211]()
Oct 26 13:26:18 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: completed -> 4-way handshake
Oct 26 13:25:47 stru-hp wpa_supplicant[980]: message repeated 8 times: [ wlan0: CTRL-EVENT-SCAN-STARTED ]
Oct 26 13:26:18 stru-hp wpa_supplicant[980]: wlan0: WPA: Key negotiation completed with 90:f6:52:a7:79:78 [PTK=CCMP GTK=CCMP]
Oct 26 13:26:18 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Oct 26 13:27:47 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> (wlan0): disconnecting for new activation request.
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> (wlan0): device state change: activated -> disconnected (reason 'none') [100 30 0]
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> (wlan0): deactivating device (reason 'none') [0]
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> (wlan0): canceled DHCP transaction, DHCP client pid 2227
Oct 26 13:29:47 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 13:30:35 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-DISCONNECTED bssid=90:f6:52:a7:79:78 reason=3 locally_generated=1
Oct 26 13:30:35 stru-hp acvpnagent[1143]: A network interface has gone down.
Oct 26 13:30:35 stru-hp acvpnagent[1143]: Function: netInterfaceNoticeCategoryHandler File: ../../vpn/Agent/MainThread.cpp Line: 7914 Network Interface change detected, refreshing physical MAC addresses
Oct 26 13:30:35 stru-hp acvpnagent[1143]: A network interface has gone down.
Oct 26 13:30:35 stru-hp acvpnagent[1143]: Function: netInterfaceNoticeCategoryHandler File: ../../vpn/Agent/MainThread.cpp Line: 7914 Network Interface change detected, refreshing physical MAC addresses
Oct 26 13:30:35 stru-hp avahi-daemon[848]: Withdrawing address record for 192.168.0.112 on wlan0.
Oct 26 13:30:35 stru-hp avahi-daemon[848]: Leaving mDNS multicast group on interface wlan0.IPv4 with address 192.168.0.112.
Oct 26 13:30:35 stru-hp avahi-daemon[848]: Interface wlan0.IPv4 no longer relevant for mDNS.
Oct 26 13:30:35 stru-hp NetworkManager[842]: <warn> DNS: plugin dnsmasq update failed
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> Removing DNS information from /sbin/resolvconf
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> NetworkManager state is now DISCONNECTED
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> Activation (wlan0) starting connection 'RUOFF_Repeater'
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> (wlan0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> NetworkManager state is now CONNECTING
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
Oct 26 13:30:35 stru-hp NetworkManager[842]: <warn> Connection disconnected (reason -3)
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: completed -> disconnected
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> Activation (wlan0/wireless): connection 'RUOFF_Repeater' has security, and secrets exist.  No new secrets needed.
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> Config: added 'ssid' value 'RUOFF_Repeater'
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> Config: added 'scan_ssid' value '1'
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> Config: added 'key_mgmt' value 'WPA-PSK'
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> Config: added 'auth_alg' value 'OPEN'
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> Config: added 'psk' value '<omitted>'
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
Oct 26 13:30:35 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 13:30:35 stru-hp NetworkManager[842]: <info> Config: set interface ap_scan to 1
Oct 26 13:30:36 stru-hp wpa_supplicant[980]: wlan0: Trying to associate with 60:e3:27:5a:9f:2a (SSID='RUOFF_Repeater' freq=2427 MHz)
Oct 26 13:30:36 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: disconnected -> associating
Oct 26 13:30:36 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=90:f6:52:a7:79:78 status_code=16
Oct 26 13:30:36 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: associating -> disconnected
Oct 26 13:30:36 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 13:30:36 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 13:30:37 stru-hp wpa_supplicant[980]: wlan0: Trying to associate with 60:e3:27:5a:9f:2a (SSID='RUOFF_Repeater' freq=2427 MHz)
Oct 26 13:30:37 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 13:30:37 stru-hp wpa_supplicant[980]: wlan0: Associated with 60:e3:27:5a:9f:2a
Oct 26 13:30:37 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: associating -> associated
Oct 26 13:30:37 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: associated -> 4-way handshake
Oct 26 13:30:37 stru-hp wpa_supplicant[980]: wlan0: WPA: Key negotiation completed with 60:e3:27:5a:9f:2a [PTK=CCMP GTK=TKIP]
Oct 26 13:30:37 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-CONNECTED - Connection to 60:e3:27:5a:9f:2a completed [id=0 id_str=]
Oct 26 13:30:37 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Oct 26 13:30:37 stru-hp NetworkManager[842]: <info> Activation (wlan0/wireless) Stage 2 of 5 (Device Configure) successful.  Connected to wireless network 'RUOFF_Repeater'.
Oct 26 13:30:37 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) scheduled.
Oct 26 13:30:37 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) started...
Oct 26 13:30:37 stru-hp NetworkManager[842]: <info> (wlan0): device state change: config -> ip-config (reason 'none') [50 70 0]
Oct 26 13:30:37 stru-hp NetworkManager[842]: <info> Activation (wlan0) Beginning DHCPv4 transaction (timeout in 45 seconds)
Oct 26 13:30:37 stru-hp NetworkManager[842]: <info> dhclient started with pid 3635
Oct 26 13:30:37 stru-hp NetworkManager[842]: <info> Activation (wlan0) Beginning IP6 addrconf.
Oct 26 13:30:37 stru-hp acvpnagent[1143]: A new network interface has been detected.
Oct 26 13:30:37 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) complete.
Oct 26 13:30:37 stru-hp acvpnagent[1143]: Function: netInterfaceNoticeCategoryHandler File: ../../vpn/Agent/MainThread.cpp Line: 7914 Network Interface change detected, refreshing physical MAC addresses
Oct 26 13:30:37 stru-hp avahi-daemon[848]: Withdrawing address record for fe80::626d:c7ff:feee:47d5 on wlan0.
Oct 26 13:30:37 stru-hp avahi-daemon[848]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::626d:c7ff:feee:47d5.
Oct 26 13:30:37 stru-hp avahi-daemon[848]: Interface wlan0.IPv6 no longer relevant for mDNS.
Oct 26 13:30:37 stru-hp dhclient: Internet Systems Consortium DHCP Client 4.2.4
Oct 26 13:30:37 stru-hp dhclient: Copyright 2004-2012 Internet Systems Consortium.
Oct 26 13:30:37 stru-hp NetworkManager[842]: <info> (wlan0): DHCPv4 state changed nbi -> preinit
Oct 26 13:30:37 stru-hp dhclient: Listening on LPF/wlan0/60:6d:c7:ee:47:d5
Oct 26 13:30:37 stru-hp dhclient: Sending on   LPF/wlan0/60:6d:c7:ee:47:d5
Oct 26 13:30:37 stru-hp dhclient: DHCPREQUEST of 192.168.0.112 on wlan0 to 255.255.255.255 port 67 (xid=0x1de16a18)
Oct 26 13:30:38 stru-hp avahi-daemon[848]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::626d:c7ff:feee:47d5.
Oct 26 13:30:38 stru-hp avahi-daemon[848]: New relevant interface wlan0.IPv6 for mDNS.
Oct 26 13:30:38 stru-hp avahi-daemon[848]: Registering new address record for fe80::626d:c7ff:feee:47d5 on wlan0.*.
Oct 26 13:30:40 stru-hp dhclient: DHCPREQUEST of 192.168.0.112 on wlan0 to 255.255.255.255 port 67 (xid=0x1de16a18)
Oct 26 13:30:42 stru-hp NetworkManager[842]: <info> (wlan0): DHCPv4 state changed preinit -> reboot
Oct 26 13:30:42 stru-hp NetworkManager[842]: <info>   address 192.168.0.112
Oct 26 13:30:42 stru-hp NetworkManager[842]: <info>   prefix 24 (255.255.255.0)
Oct 26 13:30:42 stru-hp NetworkManager[842]: <info>   gateway 192.168.0.1
Oct 26 13:30:42 stru-hp NetworkManager[842]: <info>   nameserver '192.168.0.1'
Oct 26 13:30:42 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Configure Commit) scheduled...
Oct 26 13:30:42 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) started...
Oct 26 13:30:42 stru-hp acvpnagent[1143]: A new network interface has been detected.
Oct 26 13:30:42 stru-hp acvpnagent[1143]: Function: netInterfaceNoticeCategoryHandler File: ../../vpn/Agent/MainThread.cpp Line: 7914 Network Interface change detected, refreshing physical MAC addresses
Oct 26 13:30:42 stru-hp avahi-daemon[848]: Joining mDNS multicast group on interface wlan0.IPv4 with address 192.168.0.112.
Oct 26 13:30:42 stru-hp avahi-daemon[848]: New relevant interface wlan0.IPv4 for mDNS.
Oct 26 13:30:42 stru-hp avahi-daemon[848]: Registering new address record for 192.168.0.112 on wlan0.IPv4.
Oct 26 13:30:43 stru-hp NetworkManager[842]: <info> (wlan0): device state change: ip-config -> secondaries (reason 'none') [70 90 0]
Oct 26 13:30:43 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) complete.
Oct 26 13:30:43 stru-hp NetworkManager[842]: <info> (wlan0): device state change: secondaries -> activated (reason 'none') [90 100 0]
Oct 26 13:30:43 stru-hp NetworkManager[842]: <info> NetworkManager state is now CONNECTED_GLOBAL
Oct 26 13:30:43 stru-hp NetworkManager[842]: <info> Policy set 'RUOFF_Repeater' (wlan0) as default for IPv4 routing and DNS.
Oct 26 13:30:43 stru-hp NetworkManager[842]: <info> Writing DNS information to /sbin/resolvconf
Oct 26 13:30:43 stru-hp NetworkManager[842]: <info> Activation (wlan0) successful, device activated.
Oct 26 13:30:57 stru-hp NetworkManager[842]: <info> (wlan0): IP6 addrconf timed out or failed.
Oct 26 13:30:57 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) scheduled...
Oct 26 13:30:57 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) started...
Oct 26 13:30:57 stru-hp NetworkManager[842]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) complete.
Oct 26 13:31:01 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 14:13:53 stru-hp wpa_supplicant[980]: message repeated 23 times: [ wlan0: CTRL-EVENT-SCAN-STARTED ]
Oct 26 14:15:31 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-DISCONNECTED bssid=60:e3:27:5a:9f:2a reason=0
Oct 26 14:15:31 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: completed -> disconnected
Oct 26 14:15:31 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 14:15:31 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 14:15:31 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: scanning -> disconnected
Oct 26 14:15:32 stru-hp wpa_supplicant[980]: wlan0: Trying to associate with 60:e3:27:5a:9f:2a (SSID='RUOFF_Repeater' freq=2427 MHz)
Oct 26 14:15:32 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: disconnected -> associating
Oct 26 14:15:32 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=60:e3:27:5a:9f:2a status_code=16
Oct 26 14:15:32 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: associating -> disconnected
Oct 26 14:15:32 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 14:15:32 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 14:15:33 stru-hp wpa_supplicant[980]: wlan0: Trying to associate with 60:e3:27:5a:9f:2a (SSID='RUOFF_Repeater' freq=2427 MHz)
Oct 26 14:15:33 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 14:15:33 stru-hp wpa_supplicant[980]: wlan0: Associated with 60:e3:27:5a:9f:2a
Oct 26 14:15:33 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: associating -> 4-way handshake
Oct 26 14:15:33 stru-hp wpa_supplicant[980]: wlan0: WPA: Key negotiation completed with 60:e3:27:5a:9f:2a [PTK=CCMP GTK=TKIP]
Oct 26 14:15:33 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-CONNECTED - Connection to 60:e3:27:5a:9f:2a completed [id=0 id_str=]
Oct 26 14:15:33 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Oct 26 14:15:53 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 14:28:00 stru-hp dhclient: DHCPREQUEST of 192.168.0.112 on wlan0 to 192.168.0.1 port 67 (xid=0x1de16a18)
Oct 26 14:35:53 stru-hp wpa_supplicant[980]: message repeated 10 times: [ wlan0: CTRL-EVENT-SCAN-STARTED ]
Oct 26 14:35:54 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-DISCONNECTED bssid=60:e3:27:5a:9f:2a reason=0
Oct 26 14:35:54 stru-hp NetworkManager[842]: <info> (wlan0): roamed from BSSID 60:E3:27:5A:9F:2A (RUOFF_Repeater) to (none) ((none))
Oct 26 14:35:54 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: completed -> disconnected
Oct 26 14:35:54 stru-hp wpa_supplicant[980]: wlan0: Reject scan trigger since one is already pending
Oct 26 14:35:54 stru-hp wpa_supplicant[980]: wlan0: Failed to initiate AP scan
Oct 26 14:35:55 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 14:35:55 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 14:36:06 stru-hp wpa_supplicant[980]: message repeated 2 times: [ wlan0: CTRL-EVENT-SCAN-STARTED ]
Oct 26 14:36:07 stru-hp wpa_supplicant[980]: wlan0: Trying to associate with 60:e3:27:5a:9f:2a (SSID='RUOFF_Repeater' freq=2427 MHz)
Oct 26 14:36:07 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 14:36:07 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=60:e3:27:5a:9f:2a status_code=16
Oct 26 14:36:07 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: associating -> disconnected
Oct 26 14:36:07 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 14:36:07 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 14:36:08 stru-hp wpa_supplicant[980]: wlan0: Trying to associate with 60:e3:27:5a:9f:2a (SSID='RUOFF_Repeater' freq=2427 MHz)
Oct 26 14:36:08 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 14:36:08 stru-hp wpa_supplicant[980]: wlan0: Associated with 60:e3:27:5a:9f:2a
Oct 26 14:36:08 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: associating -> associated
Oct 26 14:36:08 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: associated -> 4-way handshake
Oct 26 14:36:08 stru-hp wpa_supplicant[980]: wlan0: WPA: Key negotiation completed with 60:e3:27:5a:9f:2a [PTK=CCMP GTK=TKIP]
Oct 26 14:36:08 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-CONNECTED - Connection to 60:e3:27:5a:9f:2a completed [id=0 id_str=]
Oct 26 14:36:08 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Oct 26 14:36:08 stru-hp NetworkManager[842]: <info> (wlan0): roamed from BSSID (none) ((none)) to 60:E3:27:5A:9F:2A (RUOFF_Repeater)
Oct 26 14:37:53 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 14:43:53 stru-hp wpa_supplicant[980]: message repeated 3 times: [ wlan0: CTRL-EVENT-SCAN-STARTED ]
Oct 26 14:43:54 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-DISCONNECTED bssid=60:e3:27:5a:9f:2a reason=0
Oct 26 14:43:54 stru-hp NetworkManager[842]: <info> (wlan0): roamed from BSSID 60:E3:27:5A:9F:2A (RUOFF_Repeater) to (none) ((none))
Oct 26 14:43:54 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: completed -> disconnected
Oct 26 14:43:54 stru-hp wpa_supplicant[980]: wlan0: Reject scan trigger since one is already pending
Oct 26 14:43:54 stru-hp wpa_supplicant[980]: wlan0: Failed to initiate AP scan
Oct 26 14:43:55 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 14:43:55 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 14:43:55 stru-hp wpa_supplicant[980]: wlan0: Trying to associate with 60:e3:27:5a:9f:2a (SSID='RUOFF_Repeater' freq=2427 MHz)
Oct 26 14:43:55 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 14:43:55 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=60:e3:27:5a:9f:2a status_code=16
Oct 26 14:43:55 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: associating -> disconnected
Oct 26 14:43:56 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 14:43:56 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 14:43:56 stru-hp wpa_supplicant[980]: wlan0: Trying to associate with 60:e3:27:5a:9f:2a (SSID='RUOFF_Repeater' freq=2427 MHz)
Oct 26 14:43:56 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 14:43:57 stru-hp wpa_supplicant[980]: wlan0: Associated with 60:e3:27:5a:9f:2a
Oct 26 14:43:57 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: associating -> associated
Oct 26 14:43:57 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: associated -> 4-way handshake
Oct 26 14:43:57 stru-hp wpa_supplicant[980]: wlan0: WPA: Key negotiation completed with 60:e3:27:5a:9f:2a [PTK=CCMP GTK=TKIP]
Oct 26 14:43:57 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-CONNECTED - Connection to 60:e3:27:5a:9f:2a completed [id=0 id_str=]
Oct 26 14:43:57 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Oct 26 14:43:57 stru-hp NetworkManager[842]: <info> (wlan0): roamed from BSSID (none) ((none)) to 60:E3:27:5A:9F:2A (RUOFF_Repeater)
Oct 26 14:45:53 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 15:15:35 stru-hp dhclient: message repeated 205 times: [ DHCPREQUEST of 192.168.0.112 on wlan0 to 192.168.0.1 port 67 (xid=0x1de16a18)]
Oct 26 15:15:50 stru-hp dhclient: DHCPREQUEST of 192.168.0.112 on wlan0 to 255.255.255.255 port 67 (xid=0x1de16a18)
Oct 26 15:27:53 stru-hp wpa_supplicant[980]: message repeated 21 times: [ wlan0: CTRL-EVENT-SCAN-STARTED ]
Oct 26 15:29:03 stru-hp wpa_supplicant[980]: wlan0: WPA: EAPOL-Key Replay Counter did not increase - dropping packet
Oct 26 15:29:03 stru-hp kernel: [ 8200.044795] WARNING: CPU: 0 PID: 549 at /build/linux-EbDtle/linux-3.13.0/net/wireless/sme.c:797 cfg80211_roamed+0x89/0x90 [cfg80211]()
Oct 26 15:29:05 stru-hp wpa_supplicant[980]: wlan0: WPA: EAPOL-Key Replay Counter did not increase - dropping packet
Oct 26 15:29:07 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-DISCONNECTED bssid=60:e3:27:5a:9f:2a reason=0
Oct 26 15:29:07 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: completed -> disconnected
Oct 26 15:29:07 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 15:29:07 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 15:29:08 stru-hp wpa_supplicant[980]: wlan0: Trying to associate with 60:e3:27:5a:9f:2a (SSID='RUOFF_Repeater' freq=2427 MHz)
Oct 26 15:29:08 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 15:29:08 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=60:e3:27:5a:9f:2a status_code=16
Oct 26 15:29:08 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: associating -> disconnected
Oct 26 15:29:08 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 15:29:08 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 15:29:09 stru-hp wpa_supplicant[980]: wlan0: Trying to associate with 60:e3:27:5a:9f:2a (SSID='RUOFF_Repeater' freq=2427 MHz)
Oct 26 15:29:09 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 15:29:09 stru-hp wpa_supplicant[980]: wlan0: Associated with 60:e3:27:5a:9f:2a
Oct 26 15:29:09 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: associating -> associated
Oct 26 15:29:09 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: associated -> 4-way handshake
Oct 26 15:29:09 stru-hp wpa_supplicant[980]: wlan0: WPA: Key negotiation completed with 60:e3:27:5a:9f:2a [PTK=CCMP GTK=TKIP]
Oct 26 15:29:09 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-CONNECTED - Connection to 60:e3:27:5a:9f:2a completed [id=0 id_str=]
Oct 26 15:29:09 stru-hp NetworkManager[842]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Oct 26 15:29:53 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 15:30:40 stru-hp dhclient: message repeated 70 times: [ DHCPREQUEST of 192.168.0.112 on wlan0 to 255.255.255.255 port 67 (xid=0x1de16a18)]
Oct 26 15:30:43 stru-hp dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 3 (xid=0x109b025e)
Oct 26 15:30:43 stru-hp NetworkManager[842]: <info> (wlan0): DHCPv4 state changed reboot -> expire
Oct 26 15:30:43 stru-hp NetworkManager[842]: <info> (wlan0): DHCPv4 state changed expire -> preinit
Oct 26 15:30:46 stru-hp dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 6 (xid=0x109b025e)
Oct 26 15:30:52 stru-hp dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 8 (xid=0x109b025e)
Oct 26 15:31:00 stru-hp dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 7 (xid=0x109b025e)
Oct 26 15:31:07 stru-hp dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 10 (xid=0x109b025e)
Oct 26 15:31:17 stru-hp dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 9 (xid=0x109b025e)
Oct 26 15:31:17 stru-hp dhclient: DHCPREQUEST of 192.168.0.112 on wlan0 to 255.255.255.255 port 67 (xid=0x5e029b10)
Oct 26 15:31:17 stru-hp NetworkManager[842]: <info> (wlan0): DHCPv4 state changed preinit -> bound
Oct 26 15:31:17 stru-hp NetworkManager[842]: <info>   address 192.168.0.112
Oct 26 15:31:17 stru-hp NetworkManager[842]: <info>   prefix 24 (255.255.255.0)
Oct 26 15:31:17 stru-hp NetworkManager[842]: <info>   gateway 192.168.0.1
Oct 26 15:31:17 stru-hp NetworkManager[842]: <info>   nameserver '192.168.0.1'
Oct 26 16:25:38 stru-hp NetworkManager[842]:    keyfile: removed /etc/NetworkManager/system-connections/STEPHANRUOFF-PC_Network 1.
Oct 26 16:26:17 stru-hp NetworkManager[842]: <info> caught signal 15, shutting down normally.
Oct 26 16:26:17 stru-hp NetworkManager[842]: <info> (eth0): device state change: unavailable -> unmanaged (reason 'removed') [20 10 36]
Oct 26 16:26:17 stru-hp NetworkManager[842]: <info> (eth0): cleaning up...
Oct 26 16:26:17 stru-hp NetworkManager[842]: <info> (eth0): taking down device.
Oct 26 16:26:17 stru-hp NetworkManager[842]: <info> Unmanaged Device found; state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
Oct 26 16:26:17 stru-hp NetworkManager[842]: <info> (wlan0): device state change: activated -> unmanaged (reason 'removed') [100 10 36]
Oct 26 16:26:17 stru-hp NetworkManager[842]: <info> (wlan0): deactivating device (reason 'removed') [36]
Oct 26 16:26:17 stru-hp NetworkManager[842]: <info> (wlan0): canceled DHCP transaction, DHCP client pid 3635
Oct 26 16:25:53 stru-hp wpa_supplicant[980]: message repeated 28 times: [ wlan0: CTRL-EVENT-SCAN-STARTED ]
Oct 26 16:26:17 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-DISCONNECTED bssid=60:e3:27:5a:9f:2a reason=3 locally_generated=1
Oct 26 16:26:17 stru-hp acvpnagent[1143]: A network interface has gone down.
Oct 26 16:26:17 stru-hp acvpnagent[1143]: Function: netInterfaceNoticeCategoryHandler File: ../../vpn/Agent/MainThread.cpp Line: 7914 Network Interface change detected, refreshing physical MAC addresses
Oct 26 16:26:17 stru-hp avahi-daemon[848]: Withdrawing address record for 192.168.0.112 on wlan0.
Oct 26 16:26:17 stru-hp NetworkManager[842]: <warn> DNS: plugin dnsmasq update failed
Oct 26 16:26:17 stru-hp avahi-daemon[848]: Leaving mDNS multicast group on interface wlan0.IPv4 with address 192.168.0.112.
Oct 26 16:26:17 stru-hp NetworkManager[842]: <info> Removing DNS information from /sbin/resolvconf
Oct 26 16:26:17 stru-hp avahi-daemon[848]: Interface wlan0.IPv4 no longer relevant for mDNS.
Oct 26 16:26:17 stru-hp NetworkManager[842]: <info> (wlan0): cleaning up...
Oct 26 16:26:17 stru-hp NetworkManager[842]: <info> (wlan0): taking down device.
Oct 26 16:26:17 stru-hp avahi-daemon[848]: Interface wlan0.IPv6 no longer relevant for mDNS.
Oct 26 16:26:17 stru-hp avahi-daemon[848]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::626d:c7ff:feee:47d5.
Oct 26 16:26:17 stru-hp avahi-daemon[848]: Withdrawing address record for fe80::626d:c7ff:feee:47d5 on wlan0.
Oct 26 16:26:17 stru-hp NetworkManager[842]: <info> Unmanaged Device found; state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
Oct 26 16:26:17 stru-hp NetworkManager[842]: <info> Removing DNS information from /sbin/resolvconf
Oct 26 16:26:17 stru-hp NetworkManager[842]: <info> exiting (success)
Oct 26 16:26:17 stru-hp NetworkManager[11011]: <info> NetworkManager (version 0.9.8.8) is starting...
Oct 26 16:26:17 stru-hp NetworkManager[11011]: <info> Read config file /etc/NetworkManager/NetworkManager.conf
Oct 26 16:26:17 stru-hp NetworkManager[11011]: <info> WEXT support is enabled
Oct 26 16:26:17 stru-hp NetworkManager[11011]: <info> VPN: loaded org.freedesktop.NetworkManager.openconnect
Oct 26 16:26:17 stru-hp NetworkManager[11011]: <info> VPN: loaded org.freedesktop.NetworkManager.pptp
Oct 26 16:26:17 stru-hp NetworkManager[11011]: <info> DNS: loaded plugin dnsmasq
Oct 26 16:26:17 stru-hp NetworkManager[11011]:    SCPlugin-Ifupdown: init!
Oct 26 16:26:17 stru-hp NetworkManager[11011]:    SCPlugin-Ifupdown: update_system_hostname
Oct 26 16:26:17 stru-hp NetworkManager[11011]:       interface-parser: parsing file /etc/network/interfaces
Oct 26 16:26:17 stru-hp NetworkManager[11011]:       interface-parser: finished parsing file /etc/network/interfaces
Oct 26 16:26:17 stru-hp NetworkManager[11011]:    SCPluginIfupdown: management mode: unmanaged
Oct 26 16:26:17 stru-hp NetworkManager[11011]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:02.3/0000:02:00.0/net/eth0, iface: eth0)
Oct 26 16:26:17 stru-hp NetworkManager[11011]:    SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:02.3/0000:02:00.0/net/eth0, iface: eth0): no ifupdown configuration found.
Oct 26 16:26:17 stru-hp NetworkManager[11011]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:02.4/0000:03:00.0/net/wlan0, iface: wlan0)
Oct 26 16:26:17 stru-hp NetworkManager[11011]:    SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:02.4/0000:03:00.0/net/wlan0, iface: wlan0): no ifupdown configuration found.
Oct 26 16:26:17 stru-hp NetworkManager[11011]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/virtual/net/lo, iface: lo)
Oct 26 16:26:17 stru-hp NetworkManager[11011]:    SCPlugin-Ifupdown: device added (path: /sys/devices/virtual/net/lo, iface: lo): no ifupdown configuration found.
Oct 26 16:26:17 stru-hp NetworkManager[11011]:    SCPlugin-Ifupdown: end _init.
Oct 26 16:26:17 stru-hp NetworkManager[11011]: <info> Loaded plugin ifupdown: (C) 2008 Canonical Ltd.  To report bugs please use the NetworkManager mailing list.
Oct 26 16:26:17 stru-hp NetworkManager[11011]: <info> Loaded plugin keyfile: (c) 2007 - 2010 Red Hat, Inc.  To report bugs please use the NetworkManager mailing list.
Oct 26 16:26:17 stru-hp NetworkManager[11011]:    SCPlugin-Ofono: Acquired D-Bus service com.canonical.NMOfono
Oct 26 16:26:17 stru-hp NetworkManager[11011]:    SCPlugin-Ofono: init!
Oct 26 16:26:17 stru-hp NetworkManager[11011]:    SCPlugin-Ofono: end _init.
Oct 26 16:26:17 stru-hp NetworkManager[11011]: <info> Loaded plugin (null): (null)
Oct 26 16:26:17 stru-hp NetworkManager[11011]:    Ifupdown: get unmanaged devices count: 0
Oct 26 16:26:17 stru-hp NetworkManager[11011]:    SCPlugin-Ifupdown: (35966704) ... get_connections.
Oct 26 16:26:17 stru-hp NetworkManager[11011]:    SCPlugin-Ifupdown: (35966704) ... get_connections (managed=false): return empty list.
Oct 26 16:26:17 stru-hp NetworkManager[11011]:    keyfile: parsing Uni ... 
Oct 26 16:26:17 stru-hp NetworkManager[11011]:    keyfile:     read connection 'Uni'
Oct 26 16:26:17 stru-hp NetworkManager[11011]:    keyfile: parsing FRITZ!Box 7430 ZL ... 
Oct 26 16:26:17 stru-hp NetworkManager[11011]:    keyfile:     read connection 'FRITZ!Box 7430 ZL'
Oct 26 16:26:17 stru-hp NetworkManager[11011]:    keyfile: parsing RUOFF_Repeater ... 
Oct 26 16:26:18 stru-hp NetworkManager[11011]:    keyfile:     read connection 'RUOFF_Repeater'
Oct 26 16:26:18 stru-hp NetworkManager[11011]:    keyfile: parsing STEPHANRUOFF-PC_Network ... 
Oct 26 16:26:18 stru-hp NetworkManager[11011]:    keyfile:     read connection 'STEPHANRUOFF-PC_Network'
Oct 26 16:26:18 stru-hp NetworkManager[11011]:    keyfile: parsing belwue ... 
Oct 26 16:26:18 stru-hp NetworkManager[11011]:    keyfile:     read connection 'belwue'
Oct 26 16:26:18 stru-hp NetworkManager[11011]:    keyfile: parsing o2-WLAN94 ... 
Oct 26 16:26:18 stru-hp NetworkManager[11011]:    keyfile:     read connection 'o2-WLAN94'
Oct 26 16:26:18 stru-hp NetworkManager[11011]:    keyfile: parsing o2-WLAN57 ... 
Oct 26 16:26:18 stru-hp NetworkManager[11011]:    keyfile:     read connection 'o2-WLAN57'
Oct 26 16:26:18 stru-hp NetworkManager[11011]:    keyfile: parsing eduroam ... 
Oct 26 16:26:18 stru-hp NetworkManager[11011]:    keyfile:     read connection 'eduroam'
Oct 26 16:26:18 stru-hp NetworkManager[11011]:    SCPlugin-Ofono: (35773488) ... get_connections.
Oct 26 16:26:18 stru-hp NetworkManager[11011]:    SCPlugin-Ofono: (35773488) connections count: 0
Oct 26 16:26:18 stru-hp NetworkManager[11011]:    Ifupdown: get unmanaged devices count: 0
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> monitoring kernel firmware directory '/lib/firmware'.
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> rfkill1: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:02.4/0000:03:00.0/ieee80211/phy0/rfkill1) (driver wl)
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> rfkill2: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:02.4/0000:03:00.0/net/wlan0/rfkill2) (driver wl)
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> WiFi enabled by radio killswitch; enabled by state file
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> WWAN enabled by radio killswitch; enabled by state file
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> WiMAX enabled by radio killswitch; enabled by state file
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> Networking is enabled by state file
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <warn> failed to allocate link cache: (-12) Object not found
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> (eth0): carrier is OFF
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> (eth0): new Ethernet device (driver: 'r8169' ifindex: 2)
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> (eth0): exported as /org/freedesktop/NetworkManager/Devices/0
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> (eth0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> (eth0): bringing up device.
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> (eth0): preparing device.
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> (eth0): deactivating device (reason 'managed') [2]
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> Added default wired connection 'Kabelnetzwerkverbindung 1' for /sys/devices/pci0000:00/0000:00:02.3/0000:02:00.0/net/eth0
Oct 26 16:26:18 stru-hp kernel: [11634.725239] r8169 0000:02:00.0 eth0: link down
Oct 26 16:26:18 stru-hp kernel: [11634.725323] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> (wlan0): using nl80211 for WiFi device control
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> (wlan0): new 802.11 WiFi device (driver: 'wl' ifindex: 3)
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> (wlan0): exported as /org/freedesktop/NetworkManager/Devices/1
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> (wlan0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> (wlan0): bringing up device.
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> (wlan0): preparing device.
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> (wlan0): deactivating device (reason 'managed') [2]
Oct 26 16:26:18 stru-hp acvpnagent[1143]: A new network interface has been detected.
Oct 26 16:26:18 stru-hp acvpnagent[1143]: Function: netInterfaceNoticeCategoryHandler File: ../../vpn/Agent/MainThread.cpp Line: 7914 Network Interface change detected, refreshing physical MAC addresses
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <warn> /sys/devices/virtual/net/lo: couldn't determine device driver; ignoring...
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <warn> /sys/devices/virtual/net/lo: couldn't determine device driver; ignoring...
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> urfkill disappeared from the bus
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> ModemManager available in the bus
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> (wlan0) supports 1 scan SSIDs
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> (wlan0): supplicant interface state: starting -> ready
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> (wlan0): device state change: unavailable -> disconnected (reason 'supplicant-available') [20 30 42]
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <warn> Trying to remove a non-existant call id.
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> (wlan0): supplicant interface state: ready -> disconnected
Oct 26 16:26:18 stru-hp NetworkManager[11011]: <info> (wlan0) supports 1 scan SSIDs
Oct 26 16:26:18 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 16:26:19 stru-hp NetworkManager[11011]: <info> Auto-activating connection 'STEPHANRUOFF-PC_Network'.
Oct 26 16:26:19 stru-hp NetworkManager[11011]: <info> Activation (wlan0) starting connection 'STEPHANRUOFF-PC_Network'
Oct 26 16:26:19 stru-hp NetworkManager[11011]: <info> (wlan0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
Oct 26 16:26:19 stru-hp NetworkManager[11011]: <info> NetworkManager state is now CONNECTING
Oct 26 16:26:19 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
Oct 26 16:26:19 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
Oct 26 16:26:19 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
Oct 26 16:26:19 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
Oct 26 16:26:19 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
Oct 26 16:26:19 stru-hp NetworkManager[11011]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
Oct 26 16:26:19 stru-hp NetworkManager[11011]: <info> Activation (wlan0/wireless): connection 'STEPHANRUOFF-PC_Network' has security, and secrets exist.  No new secrets needed.
Oct 26 16:26:19 stru-hp NetworkManager[11011]: <info> Config: added 'ssid' value 'STEPHANRUOFF-PC_Network'
Oct 26 16:26:19 stru-hp NetworkManager[11011]: <info> Config: added 'scan_ssid' value '1'
Oct 26 16:26:19 stru-hp NetworkManager[11011]: <info> Config: added 'key_mgmt' value 'WPA-PSK'
Oct 26 16:26:19 stru-hp NetworkManager[11011]: <info> Config: added 'auth_alg' value 'OPEN'
Oct 26 16:26:19 stru-hp NetworkManager[11011]: <info> Config: added 'psk' value '<omitted>'
Oct 26 16:26:19 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
Oct 26 16:26:19 stru-hp NetworkManager[11011]: <info> (wlan0): supplicant interface state: disconnected -> inactive
Oct 26 16:26:19 stru-hp NetworkManager[11011]: <info> Config: set interface ap_scan to 1
Oct 26 16:26:19 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 16:26:19 stru-hp wpa_supplicant[980]: wlan0: Trying to associate with 90:f6:52:a7:79:78 (SSID='STEPHANRUOFF-PC_Network' freq=2427 MHz)
Oct 26 16:26:19 stru-hp avahi-daemon[848]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::626d:c7ff:feee:47d5.
Oct 26 16:26:19 stru-hp avahi-daemon[848]: New relevant interface wlan0.IPv6 for mDNS.
Oct 26 16:26:19 stru-hp avahi-daemon[848]: Registering new address record for fe80::626d:c7ff:feee:47d5 on wlan0.*.
Oct 26 16:26:19 stru-hp acvpnagent[1143]: A network interface has gone down.
Oct 26 16:26:19 stru-hp acvpnagent[1143]: Function: netInterfaceNoticeCategoryHandler File: ../../vpn/Agent/MainThread.cpp Line: 7914 Network Interface change detected, refreshing physical MAC addresses
Oct 26 16:26:19 stru-hp NetworkManager[11011]: <info> (wlan0): supplicant interface state: inactive -> associating
Oct 26 16:26:19 stru-hp wpa_supplicant[980]: wlan0: Associated with 90:f6:52:a7:79:78
Oct 26 16:26:19 stru-hp NetworkManager[11011]: <info> (wlan0): supplicant interface state: associating -> 4-way handshake
Oct 26 16:26:19 stru-hp wpa_supplicant[980]: wlan0: WPA: Key negotiation completed with 90:f6:52:a7:79:78 [PTK=CCMP GTK=CCMP]
Oct 26 16:26:19 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-CONNECTED - Connection to 90:f6:52:a7:79:78 completed [id=0 id_str=]
Oct 26 16:26:19 stru-hp wpa_supplicant[980]: wlan0: Trying to associate with 90:f6:52:a7:79:78 (SSID='STEPHANRUOFF-PC_Network' freq=2427 MHz)
Oct 26 16:26:19 stru-hp NetworkManager[11011]: <info> (wlan0): supplicant interface state: 4-way handshake -> associating
Oct 26 16:26:22 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-DISCONNECTED bssid=90:f6:52:a7:79:78 reason=0
Oct 26 16:26:22 stru-hp NetworkManager[11011]: <info> (wlan0): supplicant interface state: associating -> disconnected
Oct 26 16:26:23 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 16:26:23 stru-hp NetworkManager[11011]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 16:26:23 stru-hp wpa_supplicant[980]: wlan0: Trying to associate with 90:f6:52:a7:79:78 (SSID='STEPHANRUOFF-PC_Network' freq=2427 MHz)
Oct 26 16:26:23 stru-hp NetworkManager[11011]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 16:26:23 stru-hp wpa_supplicant[980]: wlan0: Associated with 90:f6:52:a7:79:78
Oct 26 16:26:23 stru-hp NetworkManager[11011]: <info> (wlan0): supplicant interface state: associating -> 4-way handshake
Oct 26 16:26:23 stru-hp wpa_supplicant[980]: wlan0: WPA: Key negotiation completed with 90:f6:52:a7:79:78 [PTK=CCMP GTK=CCMP]
Oct 26 16:26:23 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-CONNECTED - Connection to 90:f6:52:a7:79:78 completed [id=0 id_str=]
Oct 26 16:26:23 stru-hp NetworkManager[11011]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Oct 26 16:26:23 stru-hp NetworkManager[11011]: <info> Activation (wlan0/wireless) Stage 2 of 5 (Device Configure) successful.  Connected to wireless network 'STEPHANRUOFF-PC_Network'.
Oct 26 16:26:23 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) scheduled.
Oct 26 16:26:23 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) started...
Oct 26 16:26:23 stru-hp NetworkManager[11011]: <info> (wlan0): device state change: config -> ip-config (reason 'none') [50 70 0]
Oct 26 16:26:23 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Beginning DHCPv4 transaction (timeout in 45 seconds)
Oct 26 16:26:23 stru-hp NetworkManager[11011]: <info> dhclient started with pid 11020
Oct 26 16:26:23 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Beginning IP6 addrconf.
Oct 26 16:26:23 stru-hp avahi-daemon[848]: Withdrawing address record for fe80::626d:c7ff:feee:47d5 on wlan0.
Oct 26 16:26:23 stru-hp avahi-daemon[848]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::626d:c7ff:feee:47d5.
Oct 26 16:26:23 stru-hp avahi-daemon[848]: Interface wlan0.IPv6 no longer relevant for mDNS.
Oct 26 16:26:23 stru-hp acvpnagent[1143]: A new network interface has been detected.
Oct 26 16:26:23 stru-hp acvpnagent[1143]: Function: netInterfaceNoticeCategoryHandler File: ../../vpn/Agent/MainThread.cpp Line: 7914 Network Interface change detected, refreshing physical MAC addresses
Oct 26 16:26:23 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) complete.
Oct 26 16:26:23 stru-hp dhclient: Internet Systems Consortium DHCP Client 4.2.4
Oct 26 16:26:23 stru-hp dhclient: Copyright 2004-2012 Internet Systems Consortium.
Oct 26 16:26:23 stru-hp NetworkManager[11011]: <info> (wlan0): DHCPv4 state changed nbi -> preinit
Oct 26 16:26:23 stru-hp dhclient: Listening on LPF/wlan0/60:6d:c7:ee:47:d5
Oct 26 16:26:23 stru-hp dhclient: Sending on   LPF/wlan0/60:6d:c7:ee:47:d5
Oct 26 16:26:23 stru-hp dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 3 (xid=0x468cd46b)
Oct 26 16:26:23 stru-hp dhclient: DHCPREQUEST of 192.168.0.112 on wlan0 to 255.255.255.255 port 67 (xid=0x6bd48c46)
Oct 26 16:26:23 stru-hp NetworkManager[11011]: <info> (wlan0): DHCPv4 state changed preinit -> bound
Oct 26 16:26:23 stru-hp NetworkManager[11011]: <info>   address 192.168.0.112
Oct 26 16:26:23 stru-hp NetworkManager[11011]: <info>   prefix 24 (255.255.255.0)
Oct 26 16:26:23 stru-hp NetworkManager[11011]: <info>   gateway 192.168.0.1
Oct 26 16:26:23 stru-hp NetworkManager[11011]: <info>   nameserver '192.168.0.1'
Oct 26 16:26:23 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Configure Commit) scheduled...
Oct 26 16:26:23 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) started...
Oct 26 16:26:23 stru-hp avahi-daemon[848]: Joining mDNS multicast group on interface wlan0.IPv4 with address 192.168.0.112.
Oct 26 16:26:23 stru-hp avahi-daemon[848]: New relevant interface wlan0.IPv4 for mDNS.
Oct 26 16:26:23 stru-hp avahi-daemon[848]: Registering new address record for 192.168.0.112 on wlan0.IPv4.
Oct 26 16:26:23 stru-hp acvpnagent[1143]: A new network interface has been detected.
Oct 26 16:26:23 stru-hp acvpnagent[1143]: Function: netInterfaceNoticeCategoryHandler File: ../../vpn/Agent/MainThread.cpp Line: 7914 Network Interface change detected, refreshing physical MAC addresses
Oct 26 16:26:24 stru-hp NetworkManager[11011]: <info> (wlan0): device state change: ip-config -> secondaries (reason 'none') [70 90 0]
Oct 26 16:26:24 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) complete.
Oct 26 16:26:24 stru-hp NetworkManager[11011]: <info> (wlan0): device state change: secondaries -> activated (reason 'none') [90 100 0]
Oct 26 16:26:24 stru-hp NetworkManager[11011]: <info> NetworkManager state is now CONNECTED_GLOBAL
Oct 26 16:26:24 stru-hp NetworkManager[11011]: <info> Policy set 'STEPHANRUOFF-PC_Network' (wlan0) as default for IPv4 routing and DNS.
Oct 26 16:26:24 stru-hp NetworkManager[11011]: <info> DNS: starting dnsmasq...
Oct 26 16:26:24 stru-hp NetworkManager[11011]: <warn> dnsmasq not available on the bus, can't update servers.
Oct 26 16:26:24 stru-hp NetworkManager[11011]: <error> [1477491984.978650] [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
Oct 26 16:26:24 stru-hp NetworkManager[11011]: <warn> DNS: plugin dnsmasq update failed
Oct 26 16:26:24 stru-hp NetworkManager[11011]: <info> Writing DNS information to /sbin/resolvconf
Oct 26 16:26:25 stru-hp NetworkManager[11011]: <info> Activation (wlan0) successful, device activated.
Oct 26 16:26:25 stru-hp NetworkManager[11011]: <warn> dnsmasq appeared on DBus: :1.99
Oct 26 16:26:25 stru-hp NetworkManager[11011]: <info> Writing DNS information to /sbin/resolvconf
Oct 26 16:26:25 stru-hp avahi-daemon[848]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::626d:c7ff:feee:47d5.
Oct 26 16:26:25 stru-hp avahi-daemon[848]: New relevant interface wlan0.IPv6 for mDNS.
Oct 26 16:26:25 stru-hp avahi-daemon[848]: Registering new address record for fe80::626d:c7ff:feee:47d5 on wlan0.*.
Oct 26 16:26:28 stru-hp NetworkManager[11011]: <info> WiFi hardware radio set enabled
Oct 26 16:26:41 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 16:26:44 stru-hp NetworkManager[11011]: <info> (wlan0): IP6 addrconf timed out or failed.
Oct 26 16:26:44 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) scheduled...
Oct 26 16:26:44 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) started...
Oct 26 16:26:44 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) complete.
Oct 26 16:34:31 stru-hp NetworkManager[11011]: <info> (wlan0): supplicant interface state: completed -> 4-way handshake
Oct 26 16:33:33 stru-hp wpa_supplicant[980]: message repeated 5 times: [ wlan0: CTRL-EVENT-SCAN-STARTED ]
Oct 26 16:34:31 stru-hp wpa_supplicant[980]: wlan0: WPA: Key negotiation completed with 90:f6:52:a7:79:78 [PTK=CCMP GTK=CCMP]
Oct 26 16:34:31 stru-hp NetworkManager[11011]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Oct 26 16:34:31 stru-hp kernel: [12128.376300] WARNING: CPU: 2 PID: 549 at /build/linux-EbDtle/linux-3.13.0/net/wireless/sme.c:797 cfg80211_roamed+0x89/0x90 [cfg80211]()
Oct 26 16:35:33 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> (wlan0): disconnecting for new activation request.
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> (wlan0): device state change: activated -> disconnected (reason 'none') [100 30 0]
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> (wlan0): deactivating device (reason 'none') [0]
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> (wlan0): canceled DHCP transaction, DHCP client pid 11020
Oct 26 16:41:33 stru-hp wpa_supplicant[980]: message repeated 3 times: [ wlan0: CTRL-EVENT-SCAN-STARTED ]
Oct 26 16:41:52 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-DISCONNECTED bssid=90:f6:52:a7:79:78 reason=3 locally_generated=1
Oct 26 16:41:52 stru-hp avahi-daemon[848]: Withdrawing address record for 192.168.0.112 on wlan0.
Oct 26 16:41:52 stru-hp acvpnagent[1143]: A network interface has gone down.
Oct 26 16:41:52 stru-hp avahi-daemon[848]: Leaving mDNS multicast group on interface wlan0.IPv4 with address 192.168.0.112.
Oct 26 16:41:52 stru-hp acvpnagent[1143]: Function: netInterfaceNoticeCategoryHandler File: ../../vpn/Agent/MainThread.cpp Line: 7914 Network Interface change detected, refreshing physical MAC addresses
Oct 26 16:41:52 stru-hp avahi-daemon[848]: Interface wlan0.IPv4 no longer relevant for mDNS.
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <warn> DNS: plugin dnsmasq update failed
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> Removing DNS information from /sbin/resolvconf
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> NetworkManager state is now DISCONNECTED
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> Activation (wlan0) starting connection 'RUOFF_Repeater'
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> (wlan0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> NetworkManager state is now CONNECTING
Oct 26 16:41:52 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <warn> Connection disconnected (reason -3)
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> (wlan0): supplicant interface state: completed -> disconnected
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> Activation (wlan0/wireless): connection 'RUOFF_Repeater' has security, and secrets exist.  No new secrets needed.
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> Config: added 'ssid' value 'RUOFF_Repeater'
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> Config: added 'scan_ssid' value '1'
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> Config: added 'key_mgmt' value 'WPA-PSK'
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> Config: added 'auth_alg' value 'OPEN'
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> Config: added 'psk' value '<omitted>'
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
Oct 26 16:41:52 stru-hp NetworkManager[11011]: <info> Config: set interface ap_scan to 1
Oct 26 16:41:53 stru-hp wpa_supplicant[980]: wlan0: Trying to associate with 60:e3:27:5a:9f:2a (SSID='RUOFF_Repeater' freq=2427 MHz)
Oct 26 16:41:53 stru-hp NetworkManager[11011]: <info> (wlan0): supplicant interface state: disconnected -> associating
Oct 26 16:41:53 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=90:f6:52:a7:79:78 status_code=16
Oct 26 16:41:53 stru-hp NetworkManager[11011]: <info> (wlan0): supplicant interface state: associating -> disconnected
Oct 26 16:41:53 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 16:41:53 stru-hp NetworkManager[11011]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 16:41:54 stru-hp wpa_supplicant[980]: wlan0: Trying to associate with 60:e3:27:5a:9f:2a (SSID='RUOFF_Repeater' freq=2427 MHz)
Oct 26 16:41:54 stru-hp NetworkManager[11011]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 16:41:54 stru-hp wpa_supplicant[980]: wlan0: Associated with 60:e3:27:5a:9f:2a
Oct 26 16:41:54 stru-hp NetworkManager[11011]: <info> (wlan0): supplicant interface state: associating -> 4-way handshake
Oct 26 16:41:54 stru-hp wpa_supplicant[980]: wlan0: WPA: Key negotiation completed with 60:e3:27:5a:9f:2a [PTK=CCMP GTK=TKIP]
Oct 26 16:41:54 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-CONNECTED - Connection to 60:e3:27:5a:9f:2a completed [id=0 id_str=]
Oct 26 16:41:54 stru-hp NetworkManager[11011]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Oct 26 16:41:54 stru-hp NetworkManager[11011]: <info> Activation (wlan0/wireless) Stage 2 of 5 (Device Configure) successful.  Connected to wireless network 'RUOFF_Repeater'.
Oct 26 16:41:54 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) scheduled.
Oct 26 16:41:54 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) started...
Oct 26 16:41:54 stru-hp NetworkManager[11011]: <info> (wlan0): device state change: config -> ip-config (reason 'none') [50 70 0]
Oct 26 16:41:54 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Beginning DHCPv4 transaction (timeout in 45 seconds)
Oct 26 16:41:54 stru-hp NetworkManager[11011]: <info> dhclient started with pid 11634
Oct 26 16:41:54 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Beginning IP6 addrconf.
Oct 26 16:41:54 stru-hp avahi-daemon[848]: Withdrawing address record for fe80::626d:c7ff:feee:47d5 on wlan0.
Oct 26 16:41:54 stru-hp avahi-daemon[848]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::626d:c7ff:feee:47d5.
Oct 26 16:41:54 stru-hp avahi-daemon[848]: Interface wlan0.IPv6 no longer relevant for mDNS.
Oct 26 16:41:54 stru-hp acvpnagent[1143]: A new network interface has been detected.
Oct 26 16:41:54 stru-hp acvpnagent[1143]: Function: netInterfaceNoticeCategoryHandler File: ../../vpn/Agent/MainThread.cpp Line: 7914 Network Interface change detected, refreshing physical MAC addresses
Oct 26 16:41:54 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) complete.
Oct 26 16:41:54 stru-hp dhclient: Internet Systems Consortium DHCP Client 4.2.4
Oct 26 16:41:54 stru-hp dhclient: Copyright 2004-2012 Internet Systems Consortium.
Oct 26 16:41:54 stru-hp NetworkManager[11011]: <info> (wlan0): DHCPv4 state changed nbi -> preinit
Oct 26 16:41:54 stru-hp dhclient: Listening on LPF/wlan0/60:6d:c7:ee:47:d5
Oct 26 16:41:54 stru-hp dhclient: Sending on   LPF/wlan0/60:6d:c7:ee:47:d5
Oct 26 16:41:54 stru-hp dhclient: DHCPREQUEST of 192.168.0.112 on wlan0 to 255.255.255.255 port 67 (xid=0x506f2f3)
Oct 26 16:41:54 stru-hp NetworkManager[11011]: <info> (wlan0): DHCPv4 state changed preinit -> reboot
Oct 26 16:41:54 stru-hp NetworkManager[11011]: <info>   address 192.168.0.112
Oct 26 16:41:54 stru-hp NetworkManager[11011]: <info>   prefix 24 (255.255.255.0)
Oct 26 16:41:54 stru-hp NetworkManager[11011]: <info>   gateway 192.168.0.1
Oct 26 16:41:54 stru-hp NetworkManager[11011]: <info>   nameserver '192.168.0.1'
Oct 26 16:41:54 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Configure Commit) scheduled...
Oct 26 16:41:54 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) started...
Oct 26 16:41:54 stru-hp acvpnagent[1143]: A new network interface has been detected.
Oct 26 16:41:54 stru-hp acvpnagent[1143]: Function: netInterfaceNoticeCategoryHandler File: ../../vpn/Agent/MainThread.cpp Line: 7914 Network Interface change detected, refreshing physical MAC addresses
Oct 26 16:41:54 stru-hp avahi-daemon[848]: Joining mDNS multicast group on interface wlan0.IPv4 with address 192.168.0.112.
Oct 26 16:41:54 stru-hp avahi-daemon[848]: New relevant interface wlan0.IPv4 for mDNS.
Oct 26 16:41:54 stru-hp avahi-daemon[848]: Registering new address record for 192.168.0.112 on wlan0.IPv4.
Oct 26 16:41:55 stru-hp NetworkManager[11011]: <info> (wlan0): device state change: ip-config -> secondaries (reason 'none') [70 90 0]
Oct 26 16:41:55 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) complete.
Oct 26 16:41:55 stru-hp NetworkManager[11011]: <info> (wlan0): device state change: secondaries -> activated (reason 'none') [90 100 0]
Oct 26 16:41:55 stru-hp NetworkManager[11011]: <info> NetworkManager state is now CONNECTED_GLOBAL
Oct 26 16:41:55 stru-hp NetworkManager[11011]: <info> Policy set 'RUOFF_Repeater' (wlan0) as default for IPv4 routing and DNS.
Oct 26 16:41:55 stru-hp NetworkManager[11011]: <info> Writing DNS information to /sbin/resolvconf
Oct 26 16:41:55 stru-hp NetworkManager[11011]: <info> Activation (wlan0) successful, device activated.
Oct 26 16:41:56 stru-hp avahi-daemon[848]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::626d:c7ff:feee:47d5.
Oct 26 16:41:56 stru-hp avahi-daemon[848]: New relevant interface wlan0.IPv6 for mDNS.
Oct 26 16:41:56 stru-hp avahi-daemon[848]: Registering new address record for fe80::626d:c7ff:feee:47d5 on wlan0.*.
Oct 26 16:42:14 stru-hp NetworkManager[11011]: <info> (wlan0): IP6 addrconf timed out or failed.
Oct 26 16:42:14 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) scheduled...
Oct 26 16:42:14 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) started...
Oct 26 16:42:14 stru-hp NetworkManager[11011]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) complete.
Oct 26 16:42:18 stru-hp wpa_supplicant[980]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 17:20:20 stru-hp kernel: [    0.125379] NET: Registered protocol family 16
Oct 26 17:20:20 stru-hp kernel: [    0.172664] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
Oct 26 17:20:20 stru-hp kernel: [    0.689263] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
Oct 26 17:20:20 stru-hp kernel: [    0.689325] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
Oct 26 17:20:20 stru-hp kernel: [    0.692207] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
Oct 26 17:20:20 stru-hp kernel: [    0.692222] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
Oct 26 17:20:20 stru-hp kernel: [    0.782868] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
Oct 26 17:20:20 stru-hp kernel: [    0.842076] NetLabel: Initializing
Oct 26 17:20:20 stru-hp kernel: [    0.842077] NetLabel:  domain hash size = 128
Oct 26 17:20:20 stru-hp kernel: [    0.842078] NetLabel:  protocols = UNLABELED CIPSOv4
Oct 26 17:20:20 stru-hp kernel: [    0.842092] NetLabel:  unlabeled traffic allowed by default
Oct 26 17:20:20 stru-hp kernel: [    0.881387] NET: Registered protocol family 2
Oct 26 17:20:20 stru-hp kernel: [    0.882391] NET: Registered protocol family 1
Oct 26 17:20:20 stru-hp kernel: [    1.178869] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Oct 26 17:20:20 stru-hp kernel: [    1.179244] audit: initializing netlink socket (disabled)
Oct 26 17:20:20 stru-hp kernel: [    1.372833] NET: Registered protocol family 10
Oct 26 17:20:20 stru-hp kernel: [    1.372974] NET: Registered protocol family 17
Oct 26 17:20:20 stru-hp kernel: [    1.476676] ACPI Error: Method parse/execution failed [\_SB_.ACAD._PSR] (Node ffff880203ee2780), AE_ALREADY_EXISTS (20131115/psparse-536)
Oct 26 17:20:20 stru-hp kernel: [    1.492646] ACPI Error: Method parse/execution failed [\_SB_.ACAD._PSR] (Node ffff880203ee2780), AE_ALREADY_EXISTS (20131115/psparse-536)
Oct 26 17:20:20 stru-hp kernel: [    1.507837] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
Oct 26 17:20:20 stru-hp kernel: [    1.508315] r8169 0000:02:00.0 eth0: RTL8106e at 0xffffc90000c94000, dc:4a:3e:e7:a7:d0, XID 04900000 IRQ 81
Oct 26 17:20:20 stru-hp kernel: [    1.560448] ACPI Error: Method parse/execution failed [\_SB_.ACAD._PSR] (Node ffff880203ee2780), AE_ALREADY_EXISTS (20131115/psparse-536)
Oct 26 17:20:20 stru-hp kernel: [    1.560735] ACPI Error: Method parse/execution failed [\_SB_.ACAD._PSR] (Node ffff880203ee2780), AE_ALREADY_EXISTS (20131115/psparse-536)
Oct 26 17:20:20 stru-hp kernel: [    1.560746] ACPI: Marking method _PSR as Serialized because of AE_ALREADY_EXISTS error
Oct 26 17:20:20 stru-hp kernel: [    6.044954] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
Oct 26 17:20:20 stru-hp kernel: [    6.045032] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
Oct 26 17:20:20 stru-hp kernel: [    6.168748] type=1400 audit(1477495219.282:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=431 comm="apparmor_parser"
Oct 26 17:20:20 stru-hp kernel: [    6.170074] type=1400 audit(1477495219.282:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=431 comm="apparmor_parser"
Oct 26 17:20:20 stru-hp kernel: [    6.265490] NET: Registered protocol family 31
Oct 26 17:20:20 stru-hp kernel: [    6.302138] usb 2-2: Direct firmware load failed with error -2
Oct 26 17:20:20 stru-hp kernel: [    6.487720] ACPI Error: Method parse/execution failed [\HWMC] (Node ffff880203eddf50), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 17:20:20 stru-hp kernel: [    6.487733] ACPI Error: Method parse/execution failed [\_SB_.WMID.WMAA] (Node ffff880203ee00c8), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 17:20:20 stru-hp kernel: [    6.487808] ACPI Error: Method parse/execution failed [\HWMC] (Node ffff880203eddf50), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 17:20:20 stru-hp kernel: [    6.487818] ACPI Error: Method parse/execution failed [\_SB_.WMID.WMAA] (Node ffff880203ee00c8), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 17:20:20 stru-hp kernel: [    6.491145] ACPI Error: Method parse/execution failed [\HWMC] (Node ffff880203eddf50), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 17:20:20 stru-hp kernel: [    6.491176] ACPI Error: Method parse/execution failed [\_SB_.WMID.WMAA] (Node ffff880203ee00c8), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 17:20:20 stru-hp kernel: [    6.491261] ACPI Error: Method parse/execution failed [\HWMC] (Node ffff880203eddf50), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 17:20:20 stru-hp kernel: [    6.491272] ACPI Error: Method parse/execution failed [\_SB_.WMID.WMAA] (Node ffff880203ee00c8), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 17:20:20 stru-hp kernel: [    6.515513] wlan0: Broadcom BCM4365 802.11 Hybrid Wireless Controller 6.30.223.248 (r487574)
Oct 26 17:20:20 stru-hp kernel: [    6.529948] Bluetooth: can't load firmware, may not work correctly
Oct 26 17:20:20 stru-hp kernel: [    7.309902] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> NetworkManager (version 0.9.8.8) is starting...
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> Read config file /etc/NetworkManager/NetworkManager.conf
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> WEXT support is enabled
Oct 26 17:20:20 stru-hp avahi-daemon[806]: Network interface enumeration completed.
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> VPN: loaded org.freedesktop.NetworkManager.openconnect
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> VPN: loaded org.freedesktop.NetworkManager.pptp
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> DNS: loaded plugin dnsmasq
Oct 26 17:20:20 stru-hp NetworkManager[814]:    SCPlugin-Ifupdown: init!
Oct 26 17:20:20 stru-hp NetworkManager[814]:    SCPlugin-Ifupdown: update_system_hostname
Oct 26 17:20:20 stru-hp NetworkManager[814]:       interface-parser: parsing file /etc/network/interfaces
Oct 26 17:20:20 stru-hp NetworkManager[814]:       interface-parser: finished parsing file /etc/network/interfaces
Oct 26 17:20:20 stru-hp NetworkManager[814]:    SCPluginIfupdown: management mode: unmanaged
Oct 26 17:20:20 stru-hp NetworkManager[814]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:02.3/0000:02:00.0/net/eth0, iface: eth0)
Oct 26 17:20:20 stru-hp NetworkManager[814]:    SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:02.3/0000:02:00.0/net/eth0, iface: eth0): no ifupdown configuration found.
Oct 26 17:20:20 stru-hp NetworkManager[814]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:02.4/0000:03:00.0/net/wlan0, iface: wlan0)
Oct 26 17:20:20 stru-hp NetworkManager[814]:    SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:02.4/0000:03:00.0/net/wlan0, iface: wlan0): no ifupdown configuration found.
Oct 26 17:20:20 stru-hp NetworkManager[814]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/virtual/net/lo, iface: lo)
Oct 26 17:20:20 stru-hp NetworkManager[814]:    SCPlugin-Ifupdown: device added (path: /sys/devices/virtual/net/lo, iface: lo): no ifupdown configuration found.
Oct 26 17:20:20 stru-hp NetworkManager[814]:    SCPlugin-Ifupdown: end _init.
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> Loaded plugin ifupdown: (C) 2008 Canonical Ltd.  To report bugs please use the NetworkManager mailing list.
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> Loaded plugin keyfile: (c) 2007 - 2010 Red Hat, Inc.  To report bugs please use the NetworkManager mailing list.
Oct 26 17:20:20 stru-hp NetworkManager[814]:    SCPlugin-Ofono: Acquired D-Bus service com.canonical.NMOfono
Oct 26 17:20:20 stru-hp NetworkManager[814]:    SCPlugin-Ofono: init!
Oct 26 17:20:20 stru-hp NetworkManager[814]:    SCPlugin-Ofono: end _init.
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> Loaded plugin (null): (null)
Oct 26 17:20:20 stru-hp NetworkManager[814]:    Ifupdown: get unmanaged devices count: 0
Oct 26 17:20:20 stru-hp NetworkManager[814]:    SCPlugin-Ifupdown: (38997776) ... get_connections.
Oct 26 17:20:20 stru-hp NetworkManager[814]:    SCPlugin-Ifupdown: (38997776) ... get_connections (managed=false): return empty list.
Oct 26 17:20:20 stru-hp NetworkManager[814]:    keyfile: parsing Uni ... 
Oct 26 17:20:20 stru-hp NetworkManager[814]:    keyfile:     read connection 'Uni'
Oct 26 17:20:20 stru-hp NetworkManager[814]:    keyfile: parsing FRITZ!Box 7430 ZL ... 
Oct 26 17:20:20 stru-hp NetworkManager[814]:    keyfile:     read connection 'FRITZ!Box 7430 ZL'
Oct 26 17:20:20 stru-hp NetworkManager[814]:    keyfile: parsing RUOFF_Repeater ... 
Oct 26 17:20:20 stru-hp kernel: [    7.491407] type=1400 audit(1477495220.602:16): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=861 comm="apparmor_parser"
Oct 26 17:20:20 stru-hp NetworkManager[814]:    keyfile:     read connection 'RUOFF_Repeater'
Oct 26 17:20:20 stru-hp NetworkManager[814]:    keyfile: parsing STEPHANRUOFF-PC_Network ... 
Oct 26 17:20:20 stru-hp NetworkManager[814]:    keyfile:     read connection 'STEPHANRUOFF-PC_Network'
Oct 26 17:20:20 stru-hp NetworkManager[814]:    keyfile: parsing belwue ... 
Oct 26 17:20:20 stru-hp NetworkManager[814]:    keyfile:     read connection 'belwue'
Oct 26 17:20:20 stru-hp NetworkManager[814]:    keyfile: parsing o2-WLAN94 ... 
Oct 26 17:20:20 stru-hp NetworkManager[814]:    keyfile:     read connection 'o2-WLAN94'
Oct 26 17:20:20 stru-hp NetworkManager[814]:    keyfile: parsing o2-WLAN57 ... 
Oct 26 17:20:20 stru-hp NetworkManager[814]:    keyfile:     read connection 'o2-WLAN57'
Oct 26 17:20:20 stru-hp NetworkManager[814]:    keyfile: parsing eduroam ... 
Oct 26 17:20:20 stru-hp NetworkManager[814]:    keyfile:     read connection 'eduroam'
Oct 26 17:20:20 stru-hp NetworkManager[814]:    SCPlugin-Ofono: (38804528) ... get_connections.
Oct 26 17:20:20 stru-hp NetworkManager[814]:    SCPlugin-Ofono: (38804528) connections count: 0
Oct 26 17:20:20 stru-hp NetworkManager[814]:    Ifupdown: get unmanaged devices count: 0
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> monitoring kernel firmware directory '/lib/firmware'.
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> rfkill1: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:02.4/0000:03:00.0/ieee80211/phy0/rfkill1) (driver wl)
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> rfkill2: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:02.4/0000:03:00.0/net/wlan0/rfkill2) (driver wl)
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> WiFi enabled by radio killswitch; enabled by state file
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> WWAN enabled by radio killswitch; enabled by state file
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> WiMAX enabled by radio killswitch; enabled by state file
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> Networking is enabled by state file
Oct 26 17:20:20 stru-hp NetworkManager[814]: <warn> failed to allocate link cache: (-12) Object not found
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> (eth0): carrier is OFF
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> (eth0): new Ethernet device (driver: 'r8169' ifindex: 2)
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> (eth0): exported as /org/freedesktop/NetworkManager/Devices/0
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> (eth0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> (eth0): bringing up device.
Oct 26 17:20:20 stru-hp kernel: [    7.761176] r8169 0000:02:00.0 eth0: link down
Oct 26 17:20:20 stru-hp kernel: [    7.761262] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> (eth0): preparing device.
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> (eth0): deactivating device (reason 'managed') [2]
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> Added default wired connection 'Kabelnetzwerkverbindung 1' for /sys/devices/pci0000:00/0000:00:02.3/0000:02:00.0/net/eth0
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> (wlan0): using nl80211 for WiFi device control
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> (wlan0): new 802.11 WiFi device (driver: 'wl' ifindex: 3)
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> (wlan0): exported as /org/freedesktop/NetworkManager/Devices/1
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> (wlan0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> (wlan0): bringing up device.
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> (wlan0): preparing device.
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> (wlan0): deactivating device (reason 'managed') [2]
Oct 26 17:20:20 stru-hp NetworkManager[814]: <warn> /sys/devices/virtual/net/lo: couldn't determine device driver; ignoring...
Oct 26 17:20:20 stru-hp NetworkManager[814]: <warn> /sys/devices/virtual/net/lo: couldn't determine device driver; ignoring...
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> urfkill disappeared from the bus
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> ModemManager available in the bus
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> wpa_supplicant started
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> (wlan0) supports 1 scan SSIDs
Oct 26 17:20:20 stru-hp NetworkManager[814]: <warn> Trying to remove a non-existant call id.
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> (wlan0): supplicant interface state: starting -> ready
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> (wlan0): device state change: unavailable -> disconnected (reason 'supplicant-available') [20 30 42]
Oct 26 17:20:20 stru-hp wpa_supplicant[955]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> (wlan0): supplicant interface state: ready -> disconnected
Oct 26 17:20:20 stru-hp NetworkManager[814]: <info> (wlan0) supports 1 scan SSIDs
Oct 26 17:20:21 stru-hp acpid: starting up with netlink and the input layer
Oct 26 17:20:21 stru-hp NetworkManager[814]: <info> Auto-activating connection 'RUOFF_Repeater'.
Oct 26 17:20:21 stru-hp NetworkManager[814]: <info> Activation (wlan0) starting connection 'RUOFF_Repeater'
Oct 26 17:20:21 stru-hp NetworkManager[814]: <info> (wlan0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
Oct 26 17:20:21 stru-hp NetworkManager[814]: <info> NetworkManager state is now CONNECTING
Oct 26 17:20:21 stru-hp NetworkManager[814]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
Oct 26 17:20:21 stru-hp NetworkManager[814]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
Oct 26 17:20:21 stru-hp NetworkManager[814]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
Oct 26 17:20:21 stru-hp NetworkManager[814]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
Oct 26 17:20:21 stru-hp NetworkManager[814]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
Oct 26 17:20:21 stru-hp NetworkManager[814]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
Oct 26 17:20:21 stru-hp NetworkManager[814]: <info> Activation (wlan0/wireless): connection 'RUOFF_Repeater' has security, and secrets exist.  No new secrets needed.
Oct 26 17:20:21 stru-hp NetworkManager[814]: <info> Config: added 'ssid' value 'RUOFF_Repeater'
Oct 26 17:20:21 stru-hp NetworkManager[814]: <info> Config: added 'scan_ssid' value '1'
Oct 26 17:20:21 stru-hp NetworkManager[814]: <info> Config: added 'key_mgmt' value 'WPA-PSK'
Oct 26 17:20:21 stru-hp NetworkManager[814]: <info> Config: added 'auth_alg' value 'OPEN'
Oct 26 17:20:21 stru-hp NetworkManager[814]: <info> Config: added 'psk' value '<omitted>'
Oct 26 17:20:21 stru-hp NetworkManager[814]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
Oct 26 17:20:21 stru-hp NetworkManager[814]: <info> Config: set interface ap_scan to 1
Oct 26 17:20:21 stru-hp NetworkManager[814]: <info> (wlan0): supplicant interface state: disconnected -> inactive
Oct 26 17:20:21 stru-hp kernel: [    8.711064] ip_tables: (C) 2000-2006 Netfilter Core Team
Oct 26 17:20:21 stru-hp kernel: [    8.744384] ip6_tables: (C) 2000-2006 Netfilter Core Team
Oct 26 17:20:21 stru-hp avahi-daemon[806]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::626d:c7ff:feee:47d5.
Oct 26 17:20:21 stru-hp avahi-daemon[806]: New relevant interface wlan0.IPv6 for mDNS.
Oct 26 17:20:21 stru-hp avahi-daemon[806]: Registering new address record for fe80::626d:c7ff:feee:47d5 on wlan0.*.
Oct 26 17:20:21 stru-hp wpa_supplicant[955]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 17:20:22 stru-hp wpa_supplicant[955]: wlan0: Trying to associate with 60:e3:27:5a:9f:2a (SSID='RUOFF_Repeater' freq=2427 MHz)
Oct 26 17:20:22 stru-hp NetworkManager[814]: <info> (wlan0): supplicant interface state: inactive -> associating
Oct 26 17:20:22 stru-hp wpa_supplicant[955]: wlan0: Associated with 60:e3:27:5a:9f:2a
Oct 26 17:20:22 stru-hp NetworkManager[814]: <info> (wlan0): supplicant interface state: associating -> associated
Oct 26 17:20:22 stru-hp NetworkManager[814]: <info> (wlan0): supplicant interface state: associated -> 4-way handshake
Oct 26 17:20:22 stru-hp wpa_supplicant[955]: wlan0: WPA: Key negotiation completed with 60:e3:27:5a:9f:2a [PTK=CCMP GTK=TKIP]
Oct 26 17:20:22 stru-hp wpa_supplicant[955]: wlan0: CTRL-EVENT-CONNECTED - Connection to 60:e3:27:5a:9f:2a completed [id=0 id_str=]
Oct 26 17:20:22 stru-hp wpa_supplicant[955]: wlan0: Trying to associate with 60:e3:27:5a:9f:2a (SSID='RUOFF_Repeater' freq=2427 MHz)
Oct 26 17:20:22 stru-hp NetworkManager[814]: <info> (wlan0): supplicant interface state: 4-way handshake -> associating
Oct 26 17:20:23 stru-hp wpa_supplicant[955]: wlan0: Associated with 60:e3:27:5a:9f:2a
Oct 26 17:20:23 stru-hp NetworkManager[814]: <info> (wlan0): supplicant interface state: associating -> associated
Oct 26 17:20:23 stru-hp NetworkManager[814]: <info> (wlan0): supplicant interface state: associated -> 4-way handshake
Oct 26 17:20:23 stru-hp wpa_supplicant[955]: wlan0: WPA: Key negotiation completed with 60:e3:27:5a:9f:2a [PTK=CCMP GTK=TKIP]
Oct 26 17:20:23 stru-hp wpa_supplicant[955]: wlan0: CTRL-EVENT-CONNECTED - Connection to 60:e3:27:5a:9f:2a completed [id=0 id_str=]
Oct 26 17:20:23 stru-hp NetworkManager[814]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Oct 26 17:20:23 stru-hp NetworkManager[814]: <info> Activation (wlan0/wireless) Stage 2 of 5 (Device Configure) successful.  Connected to wireless network 'RUOFF_Repeater'.
Oct 26 17:20:23 stru-hp NetworkManager[814]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) scheduled.
Oct 26 17:20:23 stru-hp NetworkManager[814]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) started...
Oct 26 17:20:23 stru-hp NetworkManager[814]: <info> (wlan0): device state change: config -> ip-config (reason 'none') [50 70 0]
Oct 26 17:20:23 stru-hp kernel: [   10.264301] WARNING: CPU: 0 PID: 530 at /build/linux-EbDtle/linux-3.13.0/net/wireless/sme.c:797 cfg80211_roamed+0x89/0x90 [cfg80211]()
Oct 26 17:20:23 stru-hp NetworkManager[814]: <info> Activation (wlan0) Beginning DHCPv4 transaction (timeout in 45 seconds)
Oct 26 17:20:23 stru-hp NetworkManager[814]: <info> dhclient started with pid 1268
Oct 26 17:20:23 stru-hp NetworkManager[814]: <info> Activation (wlan0) Beginning IP6 addrconf.
Oct 26 17:20:23 stru-hp avahi-daemon[806]: Withdrawing address record for fe80::626d:c7ff:feee:47d5 on wlan0.
Oct 26 17:20:23 stru-hp avahi-daemon[806]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::626d:c7ff:feee:47d5.
Oct 26 17:20:23 stru-hp avahi-daemon[806]: Interface wlan0.IPv6 no longer relevant for mDNS.
Oct 26 17:20:23 stru-hp acvpnagent[1192]: A new network interface has been detected.
Oct 26 17:20:23 stru-hp acvpnagent[1192]: Function: netInterfaceNoticeCategoryHandler File: ../../vpn/Agent/MainThread.cpp Line: 7914 Network Interface change detected, refreshing physical MAC addresses
Oct 26 17:20:23 stru-hp NetworkManager[814]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) complete.
Oct 26 17:20:23 stru-hp dhclient: Internet Systems Consortium DHCP Client 4.2.4
Oct 26 17:20:23 stru-hp dhclient: Copyright 2004-2012 Internet Systems Consortium.
Oct 26 17:20:23 stru-hp NetworkManager[814]: <info> (wlan0): DHCPv4 state changed nbi -> preinit
Oct 26 17:20:23 stru-hp dhclient: Listening on LPF/wlan0/60:6d:c7:ee:47:d5
Oct 26 17:20:23 stru-hp dhclient: Sending on   LPF/wlan0/60:6d:c7:ee:47:d5
Oct 26 17:20:23 stru-hp dhclient: DHCPREQUEST of 192.168.0.112 on wlan0 to 255.255.255.255 port 67 (xid=0x48eabc4f)
Oct 26 17:20:23 stru-hp NetworkManager[814]: <info> (wlan0): DHCPv4 state changed preinit -> reboot
Oct 26 17:20:23 stru-hp NetworkManager[814]: <info>   address 192.168.0.112
Oct 26 17:20:23 stru-hp NetworkManager[814]: <info>   prefix 24 (255.255.255.0)
Oct 26 17:20:23 stru-hp NetworkManager[814]: <info>   gateway 192.168.0.1
Oct 26 17:20:23 stru-hp NetworkManager[814]: <info>   nameserver '192.168.0.1'
Oct 26 17:20:23 stru-hp NetworkManager[814]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Configure Commit) scheduled...
Oct 26 17:20:23 stru-hp NetworkManager[814]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) started...
Oct 26 17:20:23 stru-hp avahi-daemon[806]: Joining mDNS multicast group on interface wlan0.IPv4 with address 192.168.0.112.
Oct 26 17:20:23 stru-hp acvpnagent[1192]: A new network interface has been detected.
Oct 26 17:20:23 stru-hp acvpnagent[1192]: Function: netInterfaceNoticeCategoryHandler File: ../../vpn/Agent/MainThread.cpp Line: 7914 Network Interface change detected, refreshing physical MAC addresses
Oct 26 17:20:23 stru-hp avahi-daemon[806]: New relevant interface wlan0.IPv4 for mDNS.
Oct 26 17:20:23 stru-hp avahi-daemon[806]: Registering new address record for 192.168.0.112 on wlan0.IPv4.
Oct 26 17:20:24 stru-hp avahi-daemon[806]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::626d:c7ff:feee:47d5.
Oct 26 17:20:24 stru-hp avahi-daemon[806]: New relevant interface wlan0.IPv6 for mDNS.
Oct 26 17:20:24 stru-hp avahi-daemon[806]: Registering new address record for fe80::626d:c7ff:feee:47d5 on wlan0.*.
Oct 26 17:20:24 stru-hp NetworkManager[814]: <info> (wlan0): device state change: ip-config -> secondaries (reason 'none') [70 90 0]
Oct 26 17:20:24 stru-hp NetworkManager[814]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) complete.
Oct 26 17:20:24 stru-hp NetworkManager[814]: <info> (wlan0): device state change: secondaries -> activated (reason 'none') [90 100 0]
Oct 26 17:20:24 stru-hp NetworkManager[814]: <info> NetworkManager state is now CONNECTED_GLOBAL
Oct 26 17:20:24 stru-hp NetworkManager[814]: <info> Policy set 'RUOFF_Repeater' (wlan0) as default for IPv4 routing and DNS.
Oct 26 17:20:24 stru-hp NetworkManager[814]: <info> DNS: starting dnsmasq...
Oct 26 17:20:24 stru-hp NetworkManager[814]: <warn> dnsmasq not available on the bus, can't update servers.
Oct 26 17:20:24 stru-hp NetworkManager[814]: <error> [1477495224.714746] [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
Oct 26 17:20:24 stru-hp NetworkManager[814]: <warn> DNS: plugin dnsmasq update failed
Oct 26 17:20:24 stru-hp NetworkManager[814]: <info> Writing DNS information to /sbin/resolvconf
Oct 26 17:20:24 stru-hp NetworkManager[814]: <info> Activation (wlan0) successful, device activated.
Oct 26 17:20:24 stru-hp NetworkManager[814]: <warn> dnsmasq appeared on DBus: :1.17
Oct 26 17:20:24 stru-hp NetworkManager[814]: <info> Writing DNS information to /sbin/resolvconf
Oct 26 17:20:26 stru-hp NetworkManager[814]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/virtual/net/cscotun0, iface: cscotun0)
Oct 26 17:20:26 stru-hp NetworkManager[814]:    SCPlugin-Ifupdown: device added (path: /sys/devices/virtual/net/cscotun0, iface: cscotun0): no ifupdown configuration found.
Oct 26 17:20:26 stru-hp NetworkManager[814]: <warn> /sys/devices/virtual/net/cscotun0: couldn't determine device driver; ignoring...
Oct 26 17:20:26 stru-hp NetworkManager[814]:    SCPlugin-Ifupdown: devices removed (path: /sys/devices/virtual/net/cscotun0, iface: cscotun0)
Oct 26 17:20:31 stru-hp NetworkManager[814]: <info> WiFi hardware radio set enabled
Oct 26 17:20:43 stru-hp NetworkManager[814]: <info> (wlan0): IP6 addrconf timed out or failed.
Oct 26 17:20:43 stru-hp NetworkManager[814]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) scheduled...
Oct 26 17:20:43 stru-hp NetworkManager[814]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) started...
Oct 26 17:20:43 stru-hp NetworkManager[814]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) complete.
Oct 26 17:20:43 stru-hp wpa_supplicant[955]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 17:24:44 stru-hp 40grub2: debug: parsing: ### BEGIN /etc/grub.d/37_uefi-firmware ###
Oct 26 17:24:44 stru-hp 40grub2: debug: parsing: menuentry 'System setup' $menuentry_id_option 'uefi-firmware' {
Oct 26 17:24:44 stru-hp 40grub2: debug: parsing: ### END /etc/grub.d/37_uefi-firmware ###
Oct 26 17:26:09 stru-hp kernel: [    0.113371] NET: Registered protocol family 16
Oct 26 17:26:09 stru-hp kernel: [    0.160662] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
Oct 26 17:26:09 stru-hp kernel: [    0.669275] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
Oct 26 17:26:09 stru-hp kernel: [    0.669309] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
Oct 26 17:26:09 stru-hp kernel: [    0.672205] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
Oct 26 17:26:09 stru-hp kernel: [    0.672223] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
Oct 26 17:26:09 stru-hp kernel: [    0.761760] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
Oct 26 17:26:09 stru-hp kernel: [    0.821959] NetLabel: Initializing
Oct 26 17:26:09 stru-hp kernel: [    0.821962] NetLabel:  domain hash size = 128
Oct 26 17:26:09 stru-hp kernel: [    0.821964] NetLabel:  protocols = UNLABELED CIPSOv4
Oct 26 17:26:09 stru-hp kernel: [    0.821976] NetLabel:  unlabeled traffic allowed by default
Oct 26 17:26:09 stru-hp kernel: [    0.861178] NET: Registered protocol family 2
Oct 26 17:26:09 stru-hp kernel: [    0.862128] NET: Registered protocol family 1
Oct 26 17:26:09 stru-hp kernel: [    1.156449] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Oct 26 17:26:09 stru-hp kernel: [    1.156814] audit: initializing netlink socket (disabled)
Oct 26 17:26:09 stru-hp kernel: [    1.384464] NET: Registered protocol family 10
Oct 26 17:26:09 stru-hp kernel: [    1.385103] NET: Registered protocol family 17
Oct 26 17:26:09 stru-hp kernel: [    1.564794] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
Oct 26 17:26:09 stru-hp kernel: [    1.566750] r8169 0000:02:00.0 eth0: RTL8106e at 0xffffc90000c94000, dc:4a:3e:e7:a7:d0, XID 04900000 IRQ 81
Oct 26 17:26:09 stru-hp kernel: [    1.605191] ACPI Error: Method parse/execution failed [\_SB_.ACAD._PSR] (Node ffff880203ee2780), AE_ALREADY_EXISTS (20131115/psparse-536)
Oct 26 17:26:09 stru-hp kernel: [    1.613718] ACPI Error: Method parse/execution failed [\_SB_.ACAD._PSR] (Node ffff880203ee2780), AE_ALREADY_EXISTS (20131115/psparse-536)
Oct 26 17:26:09 stru-hp kernel: [    1.614951] ACPI: Marking method _PSR as Serialized because of AE_ALREADY_EXISTS error
Oct 26 17:26:09 stru-hp kernel: [    6.117426] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
Oct 26 17:26:09 stru-hp kernel: [    6.117453] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
Oct 26 17:26:09 stru-hp kernel: [    6.200831] type=1400 audit(1477495568.296:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=482 comm="apparmor_parser"
Oct 26 17:26:09 stru-hp kernel: [    6.201341] type=1400 audit(1477495568.296:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=482 comm="apparmor_parser"
Oct 26 17:26:09 stru-hp kernel: [    6.277385] NET: Registered protocol family 31
Oct 26 17:26:09 stru-hp kernel: [    6.315492] usb 2-2: Direct firmware load failed with error -2
Oct 26 17:26:09 stru-hp kernel: [    6.412915] ACPI Error: Method parse/execution failed [\HWMC] (Node ffff880203eddf50), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 17:26:09 stru-hp kernel: [    6.412930] ACPI Error: Method parse/execution failed [\_SB_.WMID.WMAA] (Node ffff880203ee00c8), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 17:26:09 stru-hp kernel: [    6.413013] ACPI Error: Method parse/execution failed [\HWMC] (Node ffff880203eddf50), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 17:26:09 stru-hp kernel: [    6.413024] ACPI Error: Method parse/execution failed [\_SB_.WMID.WMAA] (Node ffff880203ee00c8), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 17:26:09 stru-hp kernel: [    6.413681] ACPI Error: Method parse/execution failed [\HWMC] (Node ffff880203eddf50), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 17:26:09 stru-hp kernel: [    6.413695] ACPI Error: Method parse/execution failed [\_SB_.WMID.WMAA] (Node ffff880203ee00c8), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 17:26:09 stru-hp kernel: [    6.413892] ACPI Error: Method parse/execution failed [\HWMC] (Node ffff880203eddf50), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 17:26:09 stru-hp kernel: [    6.413903] ACPI Error: Method parse/execution failed [\_SB_.WMID.WMAA] (Node ffff880203ee00c8), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
Oct 26 17:26:09 stru-hp kernel: [    6.422010] Bluetooth: can't load firmware, may not work correctly
Oct 26 17:26:09 stru-hp kernel: [    6.543678] wlan0: Broadcom BCM4365 802.11 Hybrid Wireless Controller 6.30.223.248 (r487574)
Oct 26 17:26:09 stru-hp kernel: [    7.115569] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Oct 26 17:26:09 stru-hp avahi-daemon[828]: Network interface enumeration completed.
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> NetworkManager (version 0.9.8.8) is starting...
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> Read config file /etc/NetworkManager/NetworkManager.conf
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> WEXT support is enabled
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> VPN: loaded org.freedesktop.NetworkManager.openconnect
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> VPN: loaded org.freedesktop.NetworkManager.pptp
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> DNS: loaded plugin dnsmasq
Oct 26 17:26:09 stru-hp NetworkManager[837]:    SCPlugin-Ifupdown: init!
Oct 26 17:26:09 stru-hp NetworkManager[837]:    SCPlugin-Ifupdown: update_system_hostname
Oct 26 17:26:09 stru-hp NetworkManager[837]:       interface-parser: parsing file /etc/network/interfaces
Oct 26 17:26:09 stru-hp NetworkManager[837]:       interface-parser: finished parsing file /etc/network/interfaces
Oct 26 17:26:09 stru-hp NetworkManager[837]:    SCPluginIfupdown: management mode: unmanaged
Oct 26 17:26:09 stru-hp NetworkManager[837]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:02.3/0000:02:00.0/net/eth0, iface: eth0)
Oct 26 17:26:09 stru-hp NetworkManager[837]:    SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:02.3/0000:02:00.0/net/eth0, iface: eth0): no ifupdown configuration found.
Oct 26 17:26:09 stru-hp NetworkManager[837]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:02.4/0000:03:00.0/net/wlan0, iface: wlan0)
Oct 26 17:26:09 stru-hp NetworkManager[837]:    SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:02.4/0000:03:00.0/net/wlan0, iface: wlan0): no ifupdown configuration found.
Oct 26 17:26:09 stru-hp NetworkManager[837]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/virtual/net/lo, iface: lo)
Oct 26 17:26:09 stru-hp NetworkManager[837]:    SCPlugin-Ifupdown: device added (path: /sys/devices/virtual/net/lo, iface: lo): no ifupdown configuration found.
Oct 26 17:26:09 stru-hp NetworkManager[837]:    SCPlugin-Ifupdown: end _init.
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> Loaded plugin ifupdown: (C) 2008 Canonical Ltd.  To report bugs please use the NetworkManager mailing list.
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> Loaded plugin keyfile: (c) 2007 - 2010 Red Hat, Inc.  To report bugs please use the NetworkManager mailing list.
Oct 26 17:26:09 stru-hp NetworkManager[837]:    SCPlugin-Ofono: Acquired D-Bus service com.canonical.NMOfono
Oct 26 17:26:09 stru-hp NetworkManager[837]:    SCPlugin-Ofono: init!
Oct 26 17:26:09 stru-hp NetworkManager[837]:    SCPlugin-Ofono: end _init.
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> Loaded plugin (null): (null)
Oct 26 17:26:09 stru-hp NetworkManager[837]:    Ifupdown: get unmanaged devices count: 0
Oct 26 17:26:09 stru-hp NetworkManager[837]:    SCPlugin-Ifupdown: (9355024) ... get_connections.
Oct 26 17:26:09 stru-hp NetworkManager[837]:    SCPlugin-Ifupdown: (9355024) ... get_connections (managed=false): return empty list.
Oct 26 17:26:09 stru-hp NetworkManager[837]:    keyfile: parsing Uni ... 
Oct 26 17:26:09 stru-hp NetworkManager[837]:    keyfile:     read connection 'Uni'
Oct 26 17:26:09 stru-hp NetworkManager[837]:    keyfile: parsing FRITZ!Box 7430 ZL ... 
Oct 26 17:26:09 stru-hp NetworkManager[837]:    keyfile:     read connection 'FRITZ!Box 7430 ZL'
Oct 26 17:26:09 stru-hp NetworkManager[837]:    keyfile: parsing RUOFF_Repeater ... 
Oct 26 17:26:09 stru-hp NetworkManager[837]:    keyfile:     read connection 'RUOFF_Repeater'
Oct 26 17:26:09 stru-hp NetworkManager[837]:    keyfile: parsing STEPHANRUOFF-PC_Network ... 
Oct 26 17:26:09 stru-hp NetworkManager[837]:    keyfile:     read connection 'STEPHANRUOFF-PC_Network'
Oct 26 17:26:09 stru-hp NetworkManager[837]:    keyfile: parsing belwue ... 
Oct 26 17:26:09 stru-hp NetworkManager[837]:    keyfile:     read connection 'belwue'
Oct 26 17:26:09 stru-hp NetworkManager[837]:    keyfile: parsing o2-WLAN94 ... 
Oct 26 17:26:09 stru-hp NetworkManager[837]:    keyfile:     read connection 'o2-WLAN94'
Oct 26 17:26:09 stru-hp NetworkManager[837]:    keyfile: parsing o2-WLAN57 ... 
Oct 26 17:26:09 stru-hp NetworkManager[837]:    keyfile:     read connection 'o2-WLAN57'
Oct 26 17:26:09 stru-hp NetworkManager[837]:    keyfile: parsing eduroam ... 
Oct 26 17:26:09 stru-hp NetworkManager[837]:    keyfile:     read connection 'eduroam'
Oct 26 17:26:09 stru-hp NetworkManager[837]:    SCPlugin-Ofono: (9161152) ... get_connections.
Oct 26 17:26:09 stru-hp NetworkManager[837]:    SCPlugin-Ofono: (9161152) connections count: 0
Oct 26 17:26:09 stru-hp NetworkManager[837]:    Ifupdown: get unmanaged devices count: 0
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> monitoring kernel firmware directory '/lib/firmware'.
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> rfkill1: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:02.4/0000:03:00.0/ieee80211/phy0/rfkill1) (driver wl)
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> rfkill2: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:02.4/0000:03:00.0/net/wlan0/rfkill2) (driver wl)
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> WiFi enabled by radio killswitch; enabled by state file
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> WWAN enabled by radio killswitch; enabled by state file
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> WiMAX enabled by radio killswitch; enabled by state file
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> Networking is enabled by state file
Oct 26 17:26:09 stru-hp NetworkManager[837]: <warn> failed to allocate link cache: (-12) Object not found
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> (eth0): carrier is OFF
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> (eth0): new Ethernet device (driver: 'r8169' ifindex: 2)
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> (eth0): exported as /org/freedesktop/NetworkManager/Devices/0
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> (eth0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> (eth0): bringing up device.
Oct 26 17:26:09 stru-hp kernel: [    7.546026] r8169 0000:02:00.0 eth0: link down
Oct 26 17:26:09 stru-hp kernel: [    7.546072] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> (eth0): preparing device.
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> (eth0): deactivating device (reason 'managed') [2]
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> Added default wired connection 'Kabelnetzwerkverbindung 1' for /sys/devices/pci0000:00/0000:00:02.3/0000:02:00.0/net/eth0
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> (wlan0): using nl80211 for WiFi device control
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> (wlan0): new 802.11 WiFi device (driver: 'wl' ifindex: 3)
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> (wlan0): exported as /org/freedesktop/NetworkManager/Devices/1
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> (wlan0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> (wlan0): bringing up device.
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> (wlan0): preparing device.
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> (wlan0): deactivating device (reason 'managed') [2]
Oct 26 17:26:09 stru-hp NetworkManager[837]: <warn> /sys/devices/virtual/net/lo: couldn't determine device driver; ignoring...
Oct 26 17:26:09 stru-hp NetworkManager[837]: <warn> /sys/devices/virtual/net/lo: couldn't determine device driver; ignoring...
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> urfkill disappeared from the bus
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> wpa_supplicant started
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> ModemManager available in the bus
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> (wlan0) supports 1 scan SSIDs
Oct 26 17:26:09 stru-hp NetworkManager[837]: <warn> Trying to remove a non-existant call id.
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: starting -> ready
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> (wlan0): device state change: unavailable -> disconnected (reason 'supplicant-available') [20 30 42]
Oct 26 17:26:09 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: ready -> disconnected
Oct 26 17:26:09 stru-hp NetworkManager[837]: <info> (wlan0) supports 1 scan SSIDs
Oct 26 17:26:10 stru-hp acpid: starting up with netlink and the input layer
Oct 26 17:26:10 stru-hp NetworkManager[837]: <info> Auto-activating connection 'STEPHANRUOFF-PC_Network'.
Oct 26 17:26:10 stru-hp NetworkManager[837]: <info> Activation (wlan0) starting connection 'STEPHANRUOFF-PC_Network'
Oct 26 17:26:10 stru-hp NetworkManager[837]: <info> (wlan0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
Oct 26 17:26:10 stru-hp NetworkManager[837]: <info> NetworkManager state is now CONNECTING
Oct 26 17:26:10 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
Oct 26 17:26:10 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
Oct 26 17:26:10 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
Oct 26 17:26:10 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
Oct 26 17:26:10 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
Oct 26 17:26:10 stru-hp NetworkManager[837]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
Oct 26 17:26:10 stru-hp NetworkManager[837]: <info> Activation (wlan0/wireless): connection 'STEPHANRUOFF-PC_Network' has security, and secrets exist.  No new secrets needed.
Oct 26 17:26:10 stru-hp NetworkManager[837]: <info> Config: added 'ssid' value 'STEPHANRUOFF-PC_Network'
Oct 26 17:26:10 stru-hp NetworkManager[837]: <info> Config: added 'scan_ssid' value '1'
Oct 26 17:26:10 stru-hp NetworkManager[837]: <info> Config: added 'key_mgmt' value 'WPA-PSK'
Oct 26 17:26:10 stru-hp NetworkManager[837]: <info> Config: added 'auth_alg' value 'OPEN'
Oct 26 17:26:10 stru-hp NetworkManager[837]: <info> Config: added 'psk' value '<omitted>'
Oct 26 17:26:10 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
Oct 26 17:26:10 stru-hp NetworkManager[837]: <info> Config: set interface ap_scan to 1
Oct 26 17:26:10 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: disconnected -> inactive
Oct 26 17:26:10 stru-hp kernel: [    8.438238] ip_tables: (C) 2000-2006 Netfilter Core Team
Oct 26 17:26:10 stru-hp kernel: [    8.467379] ip6_tables: (C) 2000-2006 Netfilter Core Team
Oct 26 17:26:10 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 17:26:11 stru-hp wpa_supplicant[985]: wlan0: Trying to associate with 90:f6:52:a7:79:78 (SSID='STEPHANRUOFF-PC_Network' freq=2427 MHz)
Oct 26 17:26:11 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: inactive -> associating
Oct 26 17:26:11 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-ASSOC-REJECT status_code=16
Oct 26 17:26:11 stru-hp wpa_supplicant[985]: wlan0: Trying to associate with 90:f6:52:a7:79:78 (SSID='STEPHANRUOFF-PC_Network' freq=2427 MHz)
Oct 26 17:26:11 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-ASSOC-REJECT status_code=16
Oct 26 17:26:11 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: associating -> disconnected
Oct 26 17:26:11 stru-hp avahi-daemon[828]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::626d:c7ff:feee:47d5.
Oct 26 17:26:11 stru-hp avahi-daemon[828]: New relevant interface wlan0.IPv6 for mDNS.
Oct 26 17:26:11 stru-hp avahi-daemon[828]: Registering new address record for fe80::626d:c7ff:feee:47d5 on wlan0.*.
Oct 26 17:26:11 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 17:26:11 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 17:26:12 stru-hp wpa_supplicant[985]: wlan0: Trying to associate with 90:f6:52:a7:79:78 (SSID='STEPHANRUOFF-PC_Network' freq=2427 MHz)
Oct 26 17:26:12 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 17:26:12 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-ASSOC-REJECT status_code=16
Oct 26 17:26:12 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: associating -> disconnected
Oct 26 17:26:13 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 17:26:13 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 17:26:14 stru-hp wpa_supplicant[985]: wlan0: Trying to associate with 90:f6:52:a7:79:78 (SSID='STEPHANRUOFF-PC_Network' freq=2427 MHz)
Oct 26 17:26:14 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 17:26:14 stru-hp wpa_supplicant[985]: wlan0: Associated with 90:f6:52:a7:79:78
Oct 26 17:26:14 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: associating -> 4-way handshake
Oct 26 17:26:14 stru-hp wpa_supplicant[985]: wlan0: WPA: Key negotiation completed with 90:f6:52:a7:79:78 [PTK=CCMP GTK=CCMP]
Oct 26 17:26:14 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-CONNECTED - Connection to 90:f6:52:a7:79:78 completed [id=0 id_str=]
Oct 26 17:26:14 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Oct 26 17:26:14 stru-hp NetworkManager[837]: <info> Activation (wlan0/wireless) Stage 2 of 5 (Device Configure) successful.  Connected to wireless network 'STEPHANRUOFF-PC_Network'.
Oct 26 17:26:14 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) scheduled.
Oct 26 17:26:14 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) started...
Oct 26 17:26:14 stru-hp NetworkManager[837]: <info> (wlan0): device state change: config -> ip-config (reason 'none') [50 70 0]
Oct 26 17:26:14 stru-hp NetworkManager[837]: <info> Activation (wlan0) Beginning DHCPv4 transaction (timeout in 45 seconds)
Oct 26 17:26:14 stru-hp NetworkManager[837]: <info> dhclient started with pid 1702
Oct 26 17:26:14 stru-hp NetworkManager[837]: <info> Activation (wlan0) Beginning IP6 addrconf.
Oct 26 17:26:14 stru-hp avahi-daemon[828]: Withdrawing address record for fe80::626d:c7ff:feee:47d5 on wlan0.
Oct 26 17:26:14 stru-hp avahi-daemon[828]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::626d:c7ff:feee:47d5.
Oct 26 17:26:14 stru-hp avahi-daemon[828]: Interface wlan0.IPv6 no longer relevant for mDNS.
Oct 26 17:26:14 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) complete.
Oct 26 17:26:14 stru-hp acvpnagent[1189]: A new network interface has been detected.
Oct 26 17:26:14 stru-hp acvpnagent[1189]: Function: netInterfaceNoticeCategoryHandler File: ../../vpn/Agent/MainThread.cpp Line: 7914 Network Interface change detected, refreshing physical MAC addresses
Oct 26 17:26:14 stru-hp dhclient: Internet Systems Consortium DHCP Client 4.2.4
Oct 26 17:26:14 stru-hp dhclient: Copyright 2004-2012 Internet Systems Consortium.
Oct 26 17:26:14 stru-hp NetworkManager[837]: <info> (wlan0): DHCPv4 state changed nbi -> preinit
Oct 26 17:26:14 stru-hp dhclient: Listening on LPF/wlan0/60:6d:c7:ee:47:d5
Oct 26 17:26:14 stru-hp dhclient: Sending on   LPF/wlan0/60:6d:c7:ee:47:d5
Oct 26 17:26:14 stru-hp dhclient: DHCPREQUEST of 192.168.0.112 on wlan0 to 255.255.255.255 port 67 (xid=0x72c651b6)
Oct 26 17:26:15 stru-hp NetworkManager[837]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/virtual/net/cscotun0, iface: cscotun0)
Oct 26 17:26:15 stru-hp NetworkManager[837]:    SCPlugin-Ifupdown: device added (path: /sys/devices/virtual/net/cscotun0, iface: cscotun0): no ifupdown configuration found.
Oct 26 17:26:15 stru-hp NetworkManager[837]: <warn> /sys/devices/virtual/net/cscotun0: couldn't determine device driver; ignoring...
Oct 26 17:26:15 stru-hp NetworkManager[837]:    SCPlugin-Ifupdown: devices removed (path: /sys/devices/virtual/net/cscotun0, iface: cscotun0)
Oct 26 17:26:15 stru-hp avahi-daemon[828]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::626d:c7ff:feee:47d5.
Oct 26 17:26:15 stru-hp avahi-daemon[828]: New relevant interface wlan0.IPv6 for mDNS.
Oct 26 17:26:15 stru-hp avahi-daemon[828]: Registering new address record for fe80::626d:c7ff:feee:47d5 on wlan0.*.
Oct 26 17:26:17 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-DISCONNECTED bssid=90:f6:52:a7:79:78 reason=0
Oct 26 17:26:17 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: completed -> disconnected
Oct 26 17:26:17 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 17:26:17 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 17:26:18 stru-hp wpa_supplicant[985]: wlan0: Trying to associate with 90:f6:52:a7:79:78 (SSID='STEPHANRUOFF-PC_Network' freq=2427 MHz)
Oct 26 17:26:18 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 17:26:18 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=90:f6:52:a7:79:78 status_code=16
Oct 26 17:26:18 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: associating -> disconnected
Oct 26 17:26:18 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 17:26:18 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 17:26:19 stru-hp wpa_supplicant[985]: wlan0: Trying to associate with 90:f6:52:a7:79:78 (SSID='STEPHANRUOFF-PC_Network' freq=2427 MHz)
Oct 26 17:26:19 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 17:26:19 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=90:f6:52:a7:79:78 status_code=16
Oct 26 17:26:19 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: associating -> disconnected
Oct 26 17:26:20 stru-hp NetworkManager[837]: <info> WiFi hardware radio set enabled
Oct 26 17:26:20 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 17:26:20 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 17:26:21 stru-hp wpa_supplicant[985]: wlan0: Trying to associate with 90:f6:52:a7:79:78 (SSID='STEPHANRUOFF-PC_Network' freq=2427 MHz)
Oct 26 17:26:21 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 17:26:21 stru-hp wpa_supplicant[985]: wlan0: Associated with 90:f6:52:a7:79:78
Oct 26 17:26:21 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: associating -> 4-way handshake
Oct 26 17:26:21 stru-hp wpa_supplicant[985]: wlan0: WPA: Key negotiation completed with 90:f6:52:a7:79:78 [PTK=CCMP GTK=CCMP]
Oct 26 17:26:21 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-CONNECTED - Connection to 90:f6:52:a7:79:78 completed [id=0 id_str=]
Oct 26 17:26:21 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Oct 26 17:26:24 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-DISCONNECTED bssid=90:f6:52:a7:79:78 reason=0
Oct 26 17:26:24 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: completed -> disconnected
Oct 26 17:26:24 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 17:26:24 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 17:26:25 stru-hp wpa_supplicant[985]: wlan0: Trying to associate with 90:f6:52:a7:79:78 (SSID='STEPHANRUOFF-PC_Network' freq=2427 MHz)
Oct 26 17:26:25 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 17:26:25 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=90:f6:52:a7:79:78 status_code=16
Oct 26 17:26:25 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: associating -> disconnected
Oct 26 17:26:26 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 17:26:26 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 17:26:26 stru-hp wpa_supplicant[985]: wlan0: Trying to associate with 90:f6:52:a7:79:78 (SSID='STEPHANRUOFF-PC_Network' freq=2427 MHz)
Oct 26 17:26:26 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 17:26:26 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=90:f6:52:a7:79:78 status_code=16
Oct 26 17:26:26 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: associating -> disconnected
Oct 26 17:26:27 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 17:26:27 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 17:26:28 stru-hp wpa_supplicant[985]: wlan0: Trying to associate with 90:f6:52:a7:79:78 (SSID='STEPHANRUOFF-PC_Network' freq=2427 MHz)
Oct 26 17:26:28 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 17:26:28 stru-hp wpa_supplicant[985]: wlan0: Associated with 90:f6:52:a7:79:78
Oct 26 17:26:28 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: associating -> 4-way handshake
Oct 26 17:26:28 stru-hp wpa_supplicant[985]: wlan0: WPA: Key negotiation completed with 90:f6:52:a7:79:78 [PTK=CCMP GTK=CCMP]
Oct 26 17:26:28 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-CONNECTED - Connection to 90:f6:52:a7:79:78 completed [id=0 id_str=]
Oct 26 17:26:28 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Oct 26 17:26:31 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-DISCONNECTED bssid=90:f6:52:a7:79:78 reason=0
Oct 26 17:26:31 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: completed -> disconnected
Oct 26 17:26:31 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 17:26:31 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 17:26:32 stru-hp wpa_supplicant[985]: wlan0: Trying to associate with 90:f6:52:a7:79:78 (SSID='STEPHANRUOFF-PC_Network' freq=2427 MHz)
Oct 26 17:26:32 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 17:26:32 stru-hp wpa_supplicant[985]: wlan0: Associated with 90:f6:52:a7:79:78
Oct 26 17:26:32 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: associating -> 4-way handshake
Oct 26 17:26:34 stru-hp wpa_supplicant[985]: wlan0: WPA: Key negotiation completed with 90:f6:52:a7:79:78 [PTK=CCMP GTK=CCMP]
Oct 26 17:26:34 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-CONNECTED - Connection to 90:f6:52:a7:79:78 completed [id=0 id_str=]
Oct 26 17:26:34 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Oct 26 17:26:35 stru-hp NetworkManager[837]: <info> (wlan0): IP6 addrconf timed out or failed.
Oct 26 17:26:35 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) scheduled...
Oct 26 17:26:35 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) started...
Oct 26 17:26:35 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) complete.
Oct 26 17:26:36 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-DISCONNECTED bssid=90:f6:52:a7:79:78 reason=0
Oct 26 17:26:36 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: completed -> disconnected
Oct 26 17:26:36 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 17:26:36 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 17:26:24 stru-hp dhclient: message repeated 2 times: [ DHCPREQUEST of 192.168.0.112 on wlan0 to 255.255.255.255 port 67 (xid=0x72c651b6)]
Oct 26 17:26:36 stru-hp dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 3 (xid=0xab028144)
Oct 26 17:26:37 stru-hp wpa_supplicant[985]: wlan0: Trying to associate with 90:f6:52:a7:79:78 (SSID='STEPHANRUOFF-PC_Network' freq=2427 MHz)
Oct 26 17:26:37 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 17:26:37 stru-hp wpa_supplicant[985]: wlan0: Associated with 90:f6:52:a7:79:78
Oct 26 17:26:37 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: associating -> 4-way handshake
Oct 26 17:26:39 stru-hp wpa_supplicant[985]: wlan0: WPA: Key negotiation completed with 90:f6:52:a7:79:78 [PTK=CCMP GTK=CCMP]
Oct 26 17:26:39 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-CONNECTED - Connection to 90:f6:52:a7:79:78 completed [id=0 id_str=]
Oct 26 17:26:39 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Oct 26 17:26:39 stru-hp dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 8 (xid=0xab028144)
Oct 26 17:26:43 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-DISCONNECTED bssid=90:f6:52:a7:79:78 reason=0
Oct 26 17:26:43 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: completed -> disconnected
Oct 26 17:26:43 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 17:26:43 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 17:26:43 stru-hp wpa_supplicant[985]: wlan0: Trying to associate with 90:f6:52:a7:79:78 (SSID='STEPHANRUOFF-PC_Network' freq=2427 MHz)
Oct 26 17:26:43 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 17:26:43 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=90:f6:52:a7:79:78 status_code=16
Oct 26 17:26:43 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: associating -> disconnected
Oct 26 17:26:44 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 17:26:44 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 17:26:45 stru-hp wpa_supplicant[985]: wlan0: Trying to associate with 90:f6:52:a7:79:78 (SSID='STEPHANRUOFF-PC_Network' freq=2427 MHz)
Oct 26 17:26:45 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 17:26:45 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=90:f6:52:a7:79:78 status_code=16
Oct 26 17:26:45 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: associating -> disconnected
Oct 26 17:26:46 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 17:26:46 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 17:26:46 stru-hp wpa_supplicant[985]: wlan0: Trying to associate with 90:f6:52:a7:79:78 (SSID='STEPHANRUOFF-PC_Network' freq=2427 MHz)
Oct 26 17:26:46 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 17:26:46 stru-hp wpa_supplicant[985]: wlan0: Associated with 90:f6:52:a7:79:78
Oct 26 17:26:46 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: associating -> 4-way handshake
Oct 26 17:26:46 stru-hp wpa_supplicant[985]: wlan0: WPA: Key negotiation completed with 90:f6:52:a7:79:78 [PTK=CCMP GTK=CCMP]
Oct 26 17:26:46 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-CONNECTED - Connection to 90:f6:52:a7:79:78 completed [id=0 id_str=]
Oct 26 17:26:46 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Oct 26 17:26:47 stru-hp dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 8 (xid=0xab028144)
Oct 26 17:26:47 stru-hp dhclient: DHCPREQUEST of 192.168.0.112 on wlan0 to 255.255.255.255 port 67 (xid=0x448102ab)
Oct 26 17:26:47 stru-hp NetworkManager[837]: <info> (wlan0): DHCPv4 state changed preinit -> bound
Oct 26 17:26:47 stru-hp NetworkManager[837]: <info>   address 192.168.0.112
Oct 26 17:26:47 stru-hp NetworkManager[837]: <info>   prefix 24 (255.255.255.0)
Oct 26 17:26:47 stru-hp NetworkManager[837]: <info>   gateway 192.168.0.1
Oct 26 17:26:47 stru-hp NetworkManager[837]: <info>   nameserver '192.168.0.1'
Oct 26 17:26:47 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Configure Commit) scheduled...
Oct 26 17:26:47 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) started...
Oct 26 17:26:47 stru-hp avahi-daemon[828]: Joining mDNS multicast group on interface wlan0.IPv4 with address 192.168.0.112.
Oct 26 17:26:47 stru-hp avahi-daemon[828]: New relevant interface wlan0.IPv4 for mDNS.
Oct 26 17:26:47 stru-hp avahi-daemon[828]: Registering new address record for 192.168.0.112 on wlan0.IPv4.
Oct 26 17:26:47 stru-hp acvpnagent[1189]: A new network interface has been detected.
Oct 26 17:26:47 stru-hp acvpnagent[1189]: Function: netInterfaceNoticeCategoryHandler File: ../../vpn/Agent/MainThread.cpp Line: 7914 Network Interface change detected, refreshing physical MAC addresses
Oct 26 17:26:48 stru-hp NetworkManager[837]: <info> (wlan0): device state change: ip-config -> secondaries (reason 'none') [70 90 0]
Oct 26 17:26:48 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) complete.
Oct 26 17:26:48 stru-hp NetworkManager[837]: <info> (wlan0): device state change: secondaries -> activated (reason 'none') [90 100 0]
Oct 26 17:26:48 stru-hp NetworkManager[837]: <info> NetworkManager state is now CONNECTED_GLOBAL
Oct 26 17:26:48 stru-hp NetworkManager[837]: <info> Policy set 'STEPHANRUOFF-PC_Network' (wlan0) as default for IPv4 routing and DNS.
Oct 26 17:26:48 stru-hp NetworkManager[837]: <info> DNS: starting dnsmasq...
Oct 26 17:26:48 stru-hp NetworkManager[837]: <warn> dnsmasq not available on the bus, can't update servers.
Oct 26 17:26:48 stru-hp NetworkManager[837]: <error> [1477495608.901735] [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
Oct 26 17:26:48 stru-hp NetworkManager[837]: <warn> DNS: plugin dnsmasq update failed
Oct 26 17:26:48 stru-hp NetworkManager[837]: <info> Writing DNS information to /sbin/resolvconf
Oct 26 17:26:49 stru-hp NetworkManager[837]: <info> Activation (wlan0) successful, device activated.
Oct 26 17:26:49 stru-hp NetworkManager[837]: <warn> dnsmasq appeared on DBus: :1.57
Oct 26 17:26:49 stru-hp NetworkManager[837]: <info> Writing DNS information to /sbin/resolvconf
Oct 26 17:27:05 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> (wlan0): disconnecting for new activation request.
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> (wlan0): device state change: activated -> disconnected (reason 'none') [100 30 0]
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> (wlan0): deactivating device (reason 'none') [0]
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> (wlan0): canceled DHCP transaction, DHCP client pid 1702
Oct 26 17:37:57 stru-hp wpa_supplicant[985]: message repeated 7 times: [ wlan0: CTRL-EVENT-SCAN-STARTED ]
Oct 26 17:38:24 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-DISCONNECTED bssid=90:f6:52:a7:79:78 reason=3 locally_generated=1
Oct 26 17:38:24 stru-hp avahi-daemon[828]: Withdrawing address record for 192.168.0.112 on wlan0.
Oct 26 17:38:24 stru-hp avahi-daemon[828]: Leaving mDNS multicast group on interface wlan0.IPv4 with address 192.168.0.112.
Oct 26 17:38:24 stru-hp avahi-daemon[828]: Interface wlan0.IPv4 no longer relevant for mDNS.
Oct 26 17:38:24 stru-hp acvpnagent[1189]: A network interface has gone down.
Oct 26 17:38:24 stru-hp acvpnagent[1189]: Function: netInterfaceNoticeCategoryHandler File: ../../vpn/Agent/MainThread.cpp Line: 7914 Network Interface change detected, refreshing physical MAC addresses
Oct 26 17:38:24 stru-hp NetworkManager[837]: <warn> DNS: plugin dnsmasq update failed
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> Removing DNS information from /sbin/resolvconf
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> NetworkManager state is now DISCONNECTED
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> Activation (wlan0) starting connection 'RUOFF_Repeater'
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> (wlan0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> NetworkManager state is now CONNECTING
Oct 26 17:38:24 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
Oct 26 17:38:24 stru-hp NetworkManager[837]: <warn> Connection disconnected (reason -3)
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: completed -> disconnected
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> Activation (wlan0/wireless): connection 'RUOFF_Repeater' has security, and secrets exist.  No new secrets needed.
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> Config: added 'ssid' value 'RUOFF_Repeater'
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> Config: added 'scan_ssid' value '1'
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> Config: added 'key_mgmt' value 'WPA-PSK'
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> Config: added 'auth_alg' value 'OPEN'
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> Config: added 'psk' value '<omitted>'
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
Oct 26 17:38:24 stru-hp NetworkManager[837]: <info> Config: set interface ap_scan to 1
Oct 26 17:38:25 stru-hp wpa_supplicant[985]: wlan0: Trying to associate with 60:e3:27:5a:9f:2a (SSID='RUOFF_Repeater' freq=2427 MHz)
Oct 26 17:38:25 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: disconnected -> associating
Oct 26 17:38:25 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-ASSOC-REJECT bssid=90:f6:52:a7:79:78 status_code=16
Oct 26 17:38:25 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: associating -> disconnected
Oct 26 17:38:25 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 17:38:25 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: disconnected -> scanning
Oct 26 17:38:26 stru-hp wpa_supplicant[985]: wlan0: Trying to associate with 60:e3:27:5a:9f:2a (SSID='RUOFF_Repeater' freq=2427 MHz)
Oct 26 17:38:26 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: scanning -> associating
Oct 26 17:38:26 stru-hp wpa_supplicant[985]: wlan0: Associated with 60:e3:27:5a:9f:2a
Oct 26 17:38:26 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: associating -> associated
Oct 26 17:38:26 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: associated -> 4-way handshake
Oct 26 17:38:26 stru-hp wpa_supplicant[985]: wlan0: WPA: Key negotiation completed with 60:e3:27:5a:9f:2a [PTK=CCMP GTK=TKIP]
Oct 26 17:38:26 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-CONNECTED - Connection to 60:e3:27:5a:9f:2a completed [id=0 id_str=]
Oct 26 17:38:26 stru-hp NetworkManager[837]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Oct 26 17:38:26 stru-hp NetworkManager[837]: <info> Activation (wlan0/wireless) Stage 2 of 5 (Device Configure) successful.  Connected to wireless network 'RUOFF_Repeater'.
Oct 26 17:38:26 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) scheduled.
Oct 26 17:38:26 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) started...
Oct 26 17:38:26 stru-hp NetworkManager[837]: <info> (wlan0): device state change: config -> ip-config (reason 'none') [50 70 0]
Oct 26 17:38:26 stru-hp NetworkManager[837]: <info> Activation (wlan0) Beginning DHCPv4 transaction (timeout in 45 seconds)
Oct 26 17:38:26 stru-hp NetworkManager[837]: <info> dhclient started with pid 3251
Oct 26 17:38:26 stru-hp NetworkManager[837]: <info> Activation (wlan0) Beginning IP6 addrconf.
Oct 26 17:38:26 stru-hp avahi-daemon[828]: Withdrawing address record for fe80::626d:c7ff:feee:47d5 on wlan0.
Oct 26 17:38:26 stru-hp avahi-daemon[828]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::626d:c7ff:feee:47d5.
Oct 26 17:38:26 stru-hp avahi-daemon[828]: Interface wlan0.IPv6 no longer relevant for mDNS.
Oct 26 17:38:26 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) complete.
Oct 26 17:38:26 stru-hp dhclient: Internet Systems Consortium DHCP Client 4.2.4
Oct 26 17:38:26 stru-hp dhclient: Copyright 2004-2012 Internet Systems Consortium.
Oct 26 17:38:26 stru-hp NetworkManager[837]: <info> (wlan0): DHCPv4 state changed nbi -> preinit
Oct 26 17:38:26 stru-hp dhclient: Listening on LPF/wlan0/60:6d:c7:ee:47:d5
Oct 26 17:38:26 stru-hp dhclient: Sending on   LPF/wlan0/60:6d:c7:ee:47:d5
Oct 26 17:38:26 stru-hp dhclient: DHCPREQUEST of 192.168.0.112 on wlan0 to 255.255.255.255 port 67 (xid=0x6e96be01)
Oct 26 17:38:26 stru-hp NetworkManager[837]: <info> (wlan0): DHCPv4 state changed preinit -> reboot
Oct 26 17:38:26 stru-hp NetworkManager[837]: <info>   address 192.168.0.112
Oct 26 17:38:26 stru-hp NetworkManager[837]: <info>   prefix 24 (255.255.255.0)
Oct 26 17:38:26 stru-hp NetworkManager[837]: <info>   gateway 192.168.0.1
Oct 26 17:38:26 stru-hp NetworkManager[837]: <info>   nameserver '192.168.0.1'
Oct 26 17:38:26 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Configure Commit) scheduled...
Oct 26 17:38:26 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) started...
Oct 26 17:38:26 stru-hp avahi-daemon[828]: Joining mDNS multicast group on interface wlan0.IPv4 with address 192.168.0.112.
Oct 26 17:38:26 stru-hp avahi-daemon[828]: New relevant interface wlan0.IPv4 for mDNS.
Oct 26 17:38:26 stru-hp avahi-daemon[828]: Registering new address record for 192.168.0.112 on wlan0.IPv4.
Oct 26 17:38:26 stru-hp acvpnagent[1189]: A new network interface has been detected.
Oct 26 17:38:26 stru-hp acvpnagent[1189]: Function: netInterfaceNoticeCategoryHandler File: ../../vpn/Agent/MainThread.cpp Line: 7914 Network Interface change detected, refreshing physical MAC addresses
Oct 26 17:38:27 stru-hp NetworkManager[837]: <info> (wlan0): device state change: ip-config -> secondaries (reason 'none') [70 90 0]
Oct 26 17:38:27 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) complete.
Oct 26 17:38:27 stru-hp NetworkManager[837]: <info> (wlan0): device state change: secondaries -> activated (reason 'none') [90 100 0]
Oct 26 17:38:27 stru-hp NetworkManager[837]: <info> NetworkManager state is now CONNECTED_GLOBAL
Oct 26 17:38:27 stru-hp NetworkManager[837]: <info> Policy set 'RUOFF_Repeater' (wlan0) as default for IPv4 routing and DNS.
Oct 26 17:38:27 stru-hp NetworkManager[837]: <info> Writing DNS information to /sbin/resolvconf
Oct 26 17:38:27 stru-hp NetworkManager[837]: <info> Activation (wlan0) successful, device activated.
Oct 26 17:38:28 stru-hp wpa_supplicant[985]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 26 17:38:28 stru-hp avahi-daemon[828]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::626d:c7ff:feee:47d5.
Oct 26 17:38:28 stru-hp avahi-daemon[828]: New relevant interface wlan0.IPv6 for mDNS.
Oct 26 17:38:28 stru-hp avahi-daemon[828]: Registering new address record for fe80::626d:c7ff:feee:47d5 on wlan0.*.
Oct 26 17:38:46 stru-hp NetworkManager[837]: <info> (wlan0): IP6 addrconf timed out or failed.
Oct 26 17:38:46 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) scheduled...
Oct 26 17:38:46 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) started...
Oct 26 17:38:46 stru-hp NetworkManager[837]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) complete.


[    0.000000] original variable MTRRs
[    0.000000] PERCPU: Embedded 27 pages/cpu @ffff88020ec00000 s81536 r8192 d20864 u524288
[    0.000000] pcpu-alloc: s81536 r8192 d20864 u524288 alloc=1*2097152
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.669275] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
[    0.669309] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
[    0.672205] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
[    0.672223] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
[    1.156449] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    1.156814] audit: initializing netlink socket (disabled)
[    1.308375] thermal LNXTHERM:00: registered as thermal_zone0
[    1.308962] ACPI: Thermal Zone [THRM] (60 C)
[    1.320303] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.388111] Loaded X.509 cert 'Magrathea: Glacier signing key: db4b16354c147008e161439191dae8c83268d04b'
[    1.564794] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    1.565525] r8169 0000:02:00.0: enabling device (0000 -> 0003)
[    1.566536] r8169 0000:02:00.0: irq 81 for MSI/MSI-X
[    1.566750] r8169 0000:02:00.0 eth0: RTL8106e at 0xffffc90000c94000, dc:4a:3e:e7:a7:d0, XID 04900000 IRQ 81
[    1.605191] ACPI Error: Method parse/execution failed [\_SB_.ACAD._PSR] (Node ffff880203ee2780), AE_ALREADY_EXISTS (20131115/psparse-536)
[    1.613718] ACPI Error: Method parse/execution failed [\_SB_.ACAD._PSR] (Node ffff880203ee2780), AE_ALREADY_EXISTS (20131115/psparse-536)
[    1.614951] ACPI: Marking method _PSR as Serialized because of AE_ALREADY_EXISTS error
[    5.823138] Adding 7812092k swap on /dev/sda7.  Priority:-1 extents:1 across:7812092k FS
[    6.117426] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
[    6.117453] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
[    6.148476] wmi: Mapper loaded
[    6.394859] wl: module license 'MIXED/Proprietary' taints kernel.
[    6.400068] wl: module verification failed: signature and/or  required key missing - tainting kernel
[    6.412915] ACPI Error: Method parse/execution failed [\HWMC] (Node ffff880203eddf50), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
[    6.412930] ACPI Error: Method parse/execution failed [\_SB_.WMID.WMAA] (Node ffff880203ee00c8), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
[    6.413013] ACPI Error: Method parse/execution failed [\HWMC] (Node ffff880203eddf50), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
[    6.413024] ACPI Error: Method parse/execution failed [\_SB_.WMID.WMAA] (Node ffff880203ee00c8), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
[    6.413681] ACPI Error: Method parse/execution failed [\HWMC] (Node ffff880203eddf50), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
[    6.413695] ACPI Error: Method parse/execution failed [\_SB_.WMID.WMAA] (Node ffff880203ee00c8), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
[    6.413869] wl 0000:03:00.0: enabling device (0000 -> 0002)
[    6.413892] ACPI Error: Method parse/execution failed [\HWMC] (Node ffff880203eddf50), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
[    6.413903] ACPI Error: Method parse/execution failed [\_SB_.WMID.WMAA] (Node ffff880203ee00c8), AE_AML_BUFFER_LIMIT (20131115/psparse-536)
[    6.543678] wlan0: Broadcom BCM4365 802.11 Hybrid Wireless Controller 6.30.223.248 (r487574)
[    7.115569] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    7.546026] r8169 0000:02:00.0 eth0: link down
[    7.546072] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   37.310461] audit_printk_skb: 150 callbacks suppressed
[ 1014.879814] ERROR @wl_dev_intvar_get : error (-1)
[ 1014.879823] ERROR @wl_cfg80211_get_tx_power : error (-1)
[ 2119.348829] ERROR @wl_dev_intvar_get : error (-1)
[ 2119.348838] ERROR @wl_cfg80211_get_tx_power : error (-1)
[ 2580.194984] ERROR @wl_dev_intvar_get : error (-1)
[ 2580.194993] ERROR @wl_cfg80211_get_tx_power : error (-1)
[ 2697.303138] ERROR @wl_dev_intvar_get : error (-1)
[ 2697.303145] ERROR @wl_cfg80211_get_tx_power : error (-1)
[ 2722.718432] ERROR @wl_dev_intvar_get : error (-1)
[ 2722.718440] ERROR @wl_cfg80211_get_tx_power : error (-1)
[ 2810.211996] ERROR @wl_dev_intvar_get : error (-1)
[ 2810.212028] ERROR @wl_cfg80211_get_tx_power : error (-1)