Ubuntu Pastebin

Paste from naymyowin at Fri, 17 Mar 2017 12:41:08 +0000

Download as text
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
-- Logs begin at Thu 2016-10-27 19:32:09 MMT, end at Fri 2017-03-17 19:10:51 MMT. --
Oct 27 19:32:22 Inspiron-3443 systemd[1]: Starting Raise network interfaces...
Oct 27 19:32:23 Inspiron-3443 ifup[827]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Oct 27 19:37:22 Inspiron-3443 systemd[1]: networking.service: Start operation timed out. Terminating.
Oct 27 19:37:22 Inspiron-3443 systemd[1]: Failed to start Raise network interfaces.
Oct 27 19:37:22 Inspiron-3443 systemd[1]: networking.service: Unit entered failed state.
Oct 27 19:37:22 Inspiron-3443 systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Oct 28 09:03:29 Inspiron-3443 systemd[1]: Starting Raise network interfaces...
Oct 28 09:03:33 Inspiron-3443 ifup[820]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Oct 28 09:08:29 Inspiron-3443 systemd[1]: networking.service: Start operation timed out. Terminating.
Oct 28 09:08:29 Inspiron-3443 systemd[1]: Failed to start Raise network interfaces.
Oct 28 09:08:29 Inspiron-3443 systemd[1]: networking.service: Unit entered failed state.
Oct 28 09:08:29 Inspiron-3443 systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Oct 28 10:59:31 Inspiron-3443 systemd[1]: Starting Raise network interfaces...
Oct 28 10:59:35 Inspiron-3443 ifup[832]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Oct 28 11:04:31 Inspiron-3443 systemd[1]: networking.service: Start operation timed out. Terminating.
Oct 28 11:04:31 Inspiron-3443 systemd[1]: Failed to start Raise network interfaces.
Oct 28 11:04:31 Inspiron-3443 systemd[1]: networking.service: Unit entered failed state.
Oct 28 11:04:31 Inspiron-3443 systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Oct 28 19:51:05 Inspiron-3443 systemd[1]: Starting Raise network interfaces...
Oct 28 19:51:09 Inspiron-3443 ifup[828]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Oct 28 19:56:05 Inspiron-3443 systemd[1]: networking.service: Start operation timed out. Terminating.
Oct 28 19:56:05 Inspiron-3443 systemd[1]: Failed to start Raise network interfaces.
Oct 28 19:56:05 Inspiron-3443 systemd[1]: networking.service: Unit entered failed state.
Oct 28 19:56:05 Inspiron-3443 systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Oct 30 01:22:58 Inspiron-3443 systemd[1]: Starting Raise network interfaces...
Oct 30 01:23:02 Inspiron-3443 ifup[842]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Oct 30 01:27:57 Inspiron-3443 systemd[1]: networking.service: Start operation timed out. Terminating.
Oct 30 01:27:57 Inspiron-3443 systemd[1]: Failed to start Raise network interfaces.
Oct 30 01:27:57 Inspiron-3443 systemd[1]: networking.service: Unit entered failed state.
Oct 30 01:27:57 Inspiron-3443 systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Oct 30 17:27:25 Inspiron-3443 systemd[1]: Starting Raise network interfaces...
Oct 30 17:27:26 Inspiron-3443 ifup[841]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Oct 30 17:32:25 Inspiron-3443 systemd[1]: networking.service: Start operation timed out. Terminating.
Oct 30 17:32:25 Inspiron-3443 systemd[1]: Failed to start Raise network interfaces.
Oct 30 17:32:25 Inspiron-3443 systemd[1]: networking.service: Unit entered failed state.
Oct 30 17:32:25 Inspiron-3443 systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Oct 31 08:01:12 Inspiron-3443 systemd[1]: Starting Raise network interfaces...
Oct 31 08:01:14 Inspiron-3443 ifup[856]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Oct 31 08:06:13 Inspiron-3443 systemd[1]: networking.service: Start operation timed out. Terminating.
Oct 31 08:06:13 Inspiron-3443 systemd[1]: Failed to start Raise network interfaces.
Oct 31 08:06:13 Inspiron-3443 systemd[1]: networking.service: Unit entered failed state.
Oct 31 08:06:13 Inspiron-3443 systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Oct 31 09:10:07 Inspiron-3443 systemd[1]: Starting Raise network interfaces...
Oct 31 09:10:16 Inspiron-3443 ifup[1010]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Oct 31 09:15:15 Inspiron-3443 systemd[1]: networking.service: Start operation timed out. Terminating.
Oct 31 09:15:15 Inspiron-3443 systemd[1]: Failed to start Raise network interfaces.
Oct 31 09:15:15 Inspiron-3443 systemd[1]: networking.service: Unit entered failed state.
Oct 31 09:15:15 Inspiron-3443 systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 01 09:17:00 Inspiron-3443 ifup[824]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 01 09:16:54 Inspiron-3443 systemd[1]: Starting Raise network interfaces...
Nov 01 09:30:33 Inspiron-3443 systemd[1]: Started Raise network interfaces.
Nov 01 17:19:46 Inspiron-3443 systemd[1]: Stopping Raise network interfaces...
Nov 01 17:19:47 Inspiron-3443 dhclient[18745]: Killed old client process
Nov 01 17:19:47 Inspiron-3443 ifdown[18686]: Killed old client process
Nov 01 17:19:48 Inspiron-3443 dhclient[18745]: Internet Systems Consortium DHCP Client 4.3.3
Nov 01 17:19:48 Inspiron-3443 ifdown[18686]: Internet Systems Consortium DHCP Client 4.3.3
Nov 01 17:19:48 Inspiron-3443 ifdown[18686]: Copyright 2004-2015 Internet Systems Consortium.
Nov 01 17:19:48 Inspiron-3443 ifdown[18686]: All rights reserved.
Nov 01 17:19:48 Inspiron-3443 ifdown[18686]: For info, please visit https://www.isc.org/software/dhcp/
Nov 01 17:19:48 Inspiron-3443 dhclient[18745]: Copyright 2004-2015 Internet Systems Consortium.
Nov 01 17:19:48 Inspiron-3443 dhclient[18745]: All rights reserved.
Nov 01 17:19:48 Inspiron-3443 dhclient[18745]: For info, please visit https://www.isc.org/software/dhcp/
Nov 01 17:19:48 Inspiron-3443 dhclient[18745]: 
Nov 01 17:19:48 Inspiron-3443 dhclient[18745]: Listening on LPF/eth0/20:47:47:04:44:f6
Nov 01 17:19:48 Inspiron-3443 ifdown[18686]: Listening on LPF/eth0/20:47:47:04:44:f6
Nov 01 17:19:48 Inspiron-3443 ifdown[18686]: Sending on   LPF/eth0/20:47:47:04:44:f6
Nov 01 17:19:48 Inspiron-3443 ifdown[18686]: Sending on   Socket/fallback
Nov 01 17:19:48 Inspiron-3443 dhclient[18745]: Sending on   LPF/eth0/20:47:47:04:44:f6
Nov 01 17:19:48 Inspiron-3443 dhclient[18745]: Sending on   Socket/fallback
Nov 01 17:19:48 Inspiron-3443 dhclient[18745]: DHCPRELEASE on eth0 to 192.168.200.1 port 67 (xid=0x9c3a4b7)
Nov 01 17:19:48 Inspiron-3443 ifdown[18686]: DHCPRELEASE on eth0 to 192.168.200.1 port 67 (xid=0x9c3a4b7)
Nov 01 17:19:49 Inspiron-3443 systemd[1]: Stopped Raise network interfaces.
-- Reboot --
Nov 02 09:35:13 Inspiron-3443 ifup[1647]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 02 09:34:54 Inspiron-3443 systemd[1]: Starting Raise network interfaces...
Nov 02 09:39:53 Inspiron-3443 systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 02 09:39:53 Inspiron-3443 systemd[1]: Failed to start Raise network interfaces.
Nov 02 09:39:53 Inspiron-3443 systemd[1]: networking.service: Unit entered failed state.
Nov 02 09:39:53 Inspiron-3443 systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 02 20:40:54 Inspiron-3443 ifup[822]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 02 20:40:47 Inspiron-3443 systemd[1]: Starting Raise network interfaces...
Nov 02 20:45:47 Inspiron-3443 systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 02 20:45:47 Inspiron-3443 systemd[1]: Failed to start Raise network interfaces.
Nov 02 20:45:47 Inspiron-3443 systemd[1]: networking.service: Unit entered failed state.
Nov 02 20:45:47 Inspiron-3443 systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 03 09:09:41 Inspiron-3443 ifup[833]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 03 09:09:35 Inspiron-3443 systemd[1]: Starting Raise network interfaces...
Nov 03 09:14:35 Inspiron-3443 systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 03 09:14:35 Inspiron-3443 systemd[1]: Failed to start Raise network interfaces.
Nov 03 09:14:35 Inspiron-3443 systemd[1]: networking.service: Unit entered failed state.
Nov 03 09:14:35 Inspiron-3443 systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 03 19:42:59 linocisco ifup[846]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 03 19:42:50 linocisco systemd[1]: Starting Raise network interfaces...
Nov 03 19:47:50 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 03 19:47:50 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 03 19:47:50 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 03 19:47:50 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 04 09:00:23 linocisco ifup[831]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 04 09:00:05 linocisco systemd[1]: Starting Raise network interfaces...
Nov 04 09:05:04 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 04 09:05:04 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 04 09:05:04 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 04 09:05:04 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 04 23:23:14 linocisco systemd[1]: Starting Raise network interfaces...
Nov 04 23:23:27 linocisco ifup[953]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 04 23:28:25 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 04 23:28:25 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 04 23:28:25 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 04 23:28:25 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 05 13:14:16 linocisco ifup[830]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 05 13:13:53 linocisco systemd[1]: Starting Raise network interfaces...
Nov 05 13:18:52 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 05 13:18:52 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 05 13:18:52 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 05 13:18:52 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 06 22:48:45 linocisco ifup[824]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 06 22:48:21 linocisco systemd[1]: Starting Raise network interfaces...
Nov 06 22:53:21 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 06 22:53:21 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 06 22:53:21 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 06 22:53:21 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 07 09:20:14 linocisco ifup[821]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 07 09:19:49 linocisco systemd[1]: Starting Raise network interfaces...
Nov 07 09:24:49 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 07 09:24:49 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 07 09:24:49 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 07 09:24:49 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 08 09:20:09 linocisco ifup[832]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 08 09:19:41 linocisco systemd[1]: Starting Raise network interfaces...
Nov 08 09:24:41 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 08 09:24:41 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 08 09:24:41 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 08 09:24:41 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 08 10:42:58 linocisco ifup[847]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 08 10:42:27 linocisco systemd[1]: Starting Raise network interfaces...
Nov 08 10:47:27 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 08 10:47:27 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 08 10:47:27 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 08 10:47:27 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 08 14:48:23 linocisco ifup[823]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 08 14:47:53 linocisco systemd[1]: Starting Raise network interfaces...
Nov 08 14:52:53 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 08 14:52:53 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 08 14:52:53 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 08 14:52:53 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 08 23:12:31 linocisco ifup[823]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 08 23:12:02 linocisco systemd[1]: Starting Raise network interfaces...
Nov 08 23:17:02 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 08 23:17:02 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 08 23:17:02 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 08 23:17:02 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 09 09:20:02 linocisco ifup[825]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 09 09:19:32 linocisco systemd[1]: Starting Raise network interfaces...
Nov 09 09:24:32 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 09 09:24:32 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 09 09:24:32 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 09 09:24:32 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 09 12:12:12 linocisco ifup[864]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 09 12:11:36 linocisco systemd[1]: Starting Raise network interfaces...
Nov 09 12:16:41 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 09 12:16:41 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 09 12:16:41 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 09 12:16:41 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 10 09:01:21 linocisco ifup[859]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 10 09:00:43 linocisco systemd[1]: Starting Raise network interfaces...
Nov 10 09:05:47 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 10 09:05:47 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 10 09:05:47 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 10 09:05:47 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 10 17:08:58 linocisco ifup[831]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 10 17:08:21 linocisco systemd[1]: Starting Raise network interfaces...
Nov 10 17:13:21 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 10 17:13:21 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 10 17:13:21 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 10 17:13:21 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 10 19:52:23 linocisco ifup[828]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 10 19:51:45 linocisco systemd[1]: Starting Raise network interfaces...
Nov 10 19:56:45 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 10 19:56:45 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 10 19:56:45 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 10 19:56:45 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 11 22:46:44 linocisco systemd[1]: Starting Raise network interfaces...
Nov 11 22:46:51 linocisco ifup[933]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 11 22:51:49 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 11 22:51:49 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 11 22:51:49 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 11 22:51:49 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 12 20:19:10 linocisco systemd[1]: Starting Raise network interfaces...
Nov 12 20:19:14 linocisco ifup[837]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 12 20:24:10 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 12 20:24:10 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 12 20:24:10 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 12 20:24:10 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 14 23:35:06 linocisco systemd[1]: Starting Raise network interfaces...
Nov 14 23:35:08 linocisco ifup[833]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 14 23:40:06 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 14 23:40:06 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 14 23:40:06 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 14 23:40:06 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 15 09:07:05 linocisco ifup[821]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 15 09:07:03 linocisco systemd[1]: Starting Raise network interfaces...
Nov 15 09:12:03 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 15 09:12:03 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 15 09:12:03 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 15 09:12:03 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 15 22:29:48 linocisco ifup[826]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 15 22:29:45 linocisco systemd[1]: Starting Raise network interfaces...
Nov 15 22:34:45 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 15 22:34:45 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 15 22:34:45 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 15 22:34:45 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 16 09:06:46 linocisco ifup[832]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 16 09:06:41 linocisco systemd[1]: Starting Raise network interfaces...
Nov 16 09:11:41 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 16 09:11:41 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 16 09:11:41 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 16 09:11:41 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 16 17:01:21 linocisco systemd[1]: Starting Raise network interfaces...
Nov 16 17:01:32 linocisco ifup[934]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 16 17:06:30 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 16 17:06:30 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 16 17:06:30 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 16 17:06:30 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 16 22:24:16 linocisco ifup[823]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 16 22:23:56 linocisco systemd[1]: Starting Raise network interfaces...
Nov 16 22:28:56 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 16 22:28:56 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 16 22:28:56 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 16 22:28:56 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 17 11:42:40 linocisco ifup[829]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 17 11:42:21 linocisco systemd[1]: Starting Raise network interfaces...
Nov 17 11:47:20 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 17 11:47:20 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 17 11:47:20 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 17 11:47:20 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 18 09:07:36 linocisco ifup[822]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 18 09:07:16 linocisco systemd[1]: Starting Raise network interfaces...
Nov 18 09:12:15 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 18 09:12:15 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 18 09:12:15 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 18 09:12:15 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 18 16:42:29 linocisco ifup[822]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 18 16:42:07 linocisco systemd[1]: Starting Raise network interfaces...
Nov 18 16:47:08 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 18 16:47:08 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 18 16:47:08 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 18 16:47:08 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 20 09:33:32 linocisco ifup[783]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 20 09:33:11 linocisco systemd[1]: Starting Raise network interfaces...
Nov 20 09:38:09 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 20 09:38:09 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 20 09:38:09 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 20 09:38:09 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 21 09:38:44 linocisco ifup[809]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 21 09:38:21 linocisco systemd[1]: Starting Raise network interfaces...
Nov 21 09:43:20 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 21 09:43:20 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 21 09:43:20 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 21 09:43:20 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 21 10:52:13 linocisco ifup[818]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 21 10:51:52 linocisco systemd[1]: Starting Raise network interfaces...
Nov 21 10:56:52 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 21 10:56:52 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 21 10:56:52 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 21 10:56:52 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 22 09:26:02 linocisco ifup[815]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 22 09:25:52 linocisco systemd[1]: Starting Raise network interfaces...
Nov 22 09:30:52 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 22 09:30:52 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 22 09:30:52 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 22 09:30:52 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 23 09:11:40 linocisco ifup[844]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 23 09:11:13 linocisco systemd[1]: Starting Raise network interfaces...
Nov 23 09:16:14 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 23 09:16:14 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 23 09:16:14 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 23 09:16:14 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 23 13:00:10 linocisco ifup[855]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 23 12:59:44 linocisco systemd[1]: Starting Raise network interfaces...
Nov 23 13:04:44 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 23 13:04:44 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 23 13:04:44 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 23 13:04:44 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 23 20:27:59 linocisco ifup[823]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 23 20:27:32 linocisco systemd[1]: Starting Raise network interfaces...
Nov 23 20:32:32 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 23 20:32:32 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 23 20:32:32 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 23 20:32:32 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 24 22:47:12 linocisco ifup[823]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 24 22:46:44 linocisco systemd[1]: Starting Raise network interfaces...
Nov 24 22:51:43 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 24 22:51:43 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 24 22:51:43 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 24 22:51:43 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 25 09:16:33 linocisco ifup[829]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 25 09:16:03 linocisco systemd[1]: Starting Raise network interfaces...
Nov 25 09:21:03 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 25 09:21:03 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 25 09:21:03 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 25 09:21:03 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 25 16:38:22 linocisco ifup[870]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 25 16:37:52 linocisco systemd[1]: Starting Raise network interfaces...
Nov 25 16:42:56 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 25 16:42:56 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 25 16:42:56 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 25 16:42:56 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 25 21:30:41 linocisco ifup[811]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 25 21:30:13 linocisco systemd[1]: Starting Raise network interfaces...
Nov 25 21:35:13 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 25 21:35:13 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 25 21:35:13 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 25 21:35:13 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 27 20:34:45 linocisco ifup[797]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 27 20:34:15 linocisco systemd[1]: Starting Raise network interfaces...
Nov 27 20:39:15 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 27 20:39:15 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 27 20:39:15 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 27 20:39:15 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 28 09:10:43 linocisco systemd[1]: Starting Raise network interfaces...
Nov 28 09:10:49 linocisco ifup[820]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 28 09:15:43 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 28 09:15:43 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 28 09:15:43 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 28 09:15:43 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 28 11:01:07 linocisco systemd[1]: Starting Raise network interfaces...
Nov 28 11:01:13 linocisco ifup[839]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 28 11:06:06 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 28 11:06:06 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 28 11:06:06 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 28 11:06:06 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 28 22:50:33 linocisco ifup[795]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 28 22:50:29 linocisco systemd[1]: Starting Raise network interfaces...
Nov 28 22:55:30 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 28 22:55:30 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 28 22:55:30 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 28 22:55:30 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 29 09:29:02 linocisco ifup[808]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 29 09:28:57 linocisco systemd[1]: Starting Raise network interfaces...
Nov 29 09:33:57 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 29 09:33:57 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 29 09:33:57 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 29 09:33:57 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 29 19:48:57 linocisco ifup[813]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 29 19:48:41 linocisco systemd[1]: Starting Raise network interfaces...
Nov 29 19:53:42 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 29 19:53:42 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 29 19:53:42 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 29 19:53:42 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 30 00:37:42 linocisco ifup[817]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 30 00:37:23 linocisco systemd[1]: Starting Raise network interfaces...
Nov 30 00:42:22 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 30 00:42:22 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 30 00:42:22 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 30 00:42:22 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Nov 30 09:27:23 linocisco ifup[861]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Nov 30 09:27:01 linocisco systemd[1]: Starting Raise network interfaces...
Nov 30 09:32:05 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Nov 30 09:32:05 linocisco systemd[1]: Failed to start Raise network interfaces.
Nov 30 09:32:05 linocisco systemd[1]: networking.service: Unit entered failed state.
Nov 30 09:32:05 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 01 07:59:03 linocisco ifup[816]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 01 07:58:42 linocisco systemd[1]: Starting Raise network interfaces...
Dec 01 08:03:42 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 01 08:03:42 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 01 08:03:42 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 01 08:03:42 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 01 09:11:51 linocisco ifup[815]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 01 09:11:27 linocisco systemd[1]: Starting Raise network interfaces...
Dec 01 09:16:27 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 01 09:16:27 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 01 09:16:27 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 01 09:16:27 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 02 09:19:37 linocisco ifup[827]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 02 09:19:16 linocisco systemd[1]: Starting Raise network interfaces...
Dec 02 09:24:15 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 02 09:24:15 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 02 09:24:15 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 02 09:24:15 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 04 00:42:32 linocisco ifup[827]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 04 00:42:06 linocisco systemd[1]: Starting Raise network interfaces...
Dec 04 00:47:05 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 04 00:47:05 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 04 00:47:05 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 04 00:47:05 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 05 21:23:00 linocisco ifup[811]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 05 21:22:36 linocisco systemd[1]: Starting Raise network interfaces...
Dec 05 21:27:33 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 05 21:27:33 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 05 21:27:33 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 05 21:27:33 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 06 13:48:19 linocisco ifup[857]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 06 13:47:52 linocisco systemd[1]: Starting Raise network interfaces...
Dec 06 13:53:05 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 06 13:53:05 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 06 13:53:05 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 06 13:53:05 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 06 23:46:46 linocisco ifup[831]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 06 23:46:21 linocisco systemd[1]: Starting Raise network interfaces...
Dec 06 23:51:32 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 06 23:51:32 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 06 23:51:32 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 06 23:51:32 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 08 00:20:48 linocisco ifup[841]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 08 00:20:20 linocisco systemd[1]: Starting Raise network interfaces...
Dec 08 00:25:20 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 08 00:25:20 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 08 00:25:20 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 08 00:25:20 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 08 23:40:55 linocisco ifup[829]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 08 23:40:24 linocisco systemd[1]: Starting Raise network interfaces...
Dec 08 23:45:36 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 08 23:45:36 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 08 23:45:36 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 08 23:45:36 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 12 20:17:02 linocisco ifup[816]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 12 20:16:36 linocisco systemd[1]: Starting Raise network interfaces...
Dec 12 20:21:36 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 12 20:21:36 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 12 20:21:36 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 12 20:21:36 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 12 20:23:38 linocisco ifup[817]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 12 20:23:09 linocisco systemd[1]: Starting Raise network interfaces...
Dec 12 20:28:06 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 12 20:28:06 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 12 20:28:06 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 12 20:28:06 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 12 23:42:05 linocisco ifup[794]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 12 23:41:38 linocisco systemd[1]: Starting Raise network interfaces...
Dec 12 23:46:38 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 12 23:46:38 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 12 23:46:38 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 12 23:46:38 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 13 20:09:59 linocisco ifup[841]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 13 20:09:30 linocisco systemd[1]: Starting Raise network interfaces...
Dec 13 20:14:30 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 13 20:14:30 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 13 20:14:30 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 13 20:14:30 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 19 09:50:37 linocisco ifup[827]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 19 09:50:08 linocisco systemd[1]: Starting Raise network interfaces...
Dec 19 09:55:08 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 19 09:55:08 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 19 09:55:08 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 19 09:55:08 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 21 19:31:26 linocisco ifup[848]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 21 19:30:58 linocisco systemd[1]: Starting Raise network interfaces...
Dec 21 19:35:58 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 21 19:35:58 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 21 19:35:58 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 21 19:35:58 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 26 09:57:02 linocisco ifup[829]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 26 09:56:33 linocisco systemd[1]: Starting Raise network interfaces...
Dec 26 10:01:33 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 26 10:01:33 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 26 10:01:33 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 26 10:01:33 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 26 23:18:51 linocisco ifup[861]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 26 23:18:21 linocisco systemd[1]: Starting Raise network interfaces...
Dec 26 23:23:31 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 26 23:23:31 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 26 23:23:31 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 26 23:23:31 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 27 00:25:17 linocisco ifup[785]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 27 00:24:48 linocisco systemd[1]: Starting Raise network interfaces...
Dec 27 00:29:49 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 27 00:29:49 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 27 00:29:49 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 27 00:29:49 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 27 09:49:25 linocisco ifup[815]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 27 09:49:08 linocisco systemd[1]: Starting Raise network interfaces...
Dec 27 09:54:07 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 27 09:54:07 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 27 09:54:07 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 27 09:54:07 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 28 09:52:58 linocisco ifup[818]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 28 09:52:19 linocisco systemd[1]: Starting Raise network interfaces...
Dec 28 09:57:18 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 28 09:57:18 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 28 09:57:18 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 28 09:57:18 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 28 23:37:51 linocisco systemd[1]: Starting Raise network interfaces...
Dec 28 23:37:58 linocisco ifup[821]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 28 23:42:51 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 28 23:42:51 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 28 23:42:51 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 28 23:42:51 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 29 09:45:51 linocisco systemd[1]: Starting Raise network interfaces...
Dec 29 09:45:56 linocisco ifup[811]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 29 09:50:51 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 29 09:50:51 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 29 09:50:51 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 29 09:50:51 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 30 19:43:56 linocisco systemd[1]: Starting Raise network interfaces...
Dec 30 19:44:00 linocisco ifup[823]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 30 19:48:57 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 30 19:48:57 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 30 19:48:57 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 30 19:48:57 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 31 01:28:33 linocisco systemd[1]: Starting Raise network interfaces...
Dec 31 01:28:41 linocisco ifup[945]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 31 01:32:29 linocisco systemd[1]: Stopped Raise network interfaces.
-- Reboot --
Dec 31 01:33:27 linocisco systemd[1]: Starting Raise network interfaces...
Dec 31 01:33:34 linocisco ifup[813]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 31 01:38:27 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 31 01:38:27 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 31 01:38:27 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 31 01:38:27 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Dec 31 01:58:45 linocisco systemd[1]: Starting Raise network interfaces...
Dec 31 01:58:49 linocisco ifup[852]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 31 02:03:27 linocisco systemd[1]: Stopped Raise network interfaces.
-- Reboot --
Dec 31 11:26:56 linocisco systemd[1]: Starting Raise network interfaces...
Dec 31 11:27:01 linocisco ifup[789]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Dec 31 11:31:56 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Dec 31 11:31:56 linocisco systemd[1]: Failed to start Raise network interfaces.
Dec 31 11:31:56 linocisco systemd[1]: networking.service: Unit entered failed state.
Dec 31 11:31:56 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Jan 05 23:14:10 linocisco systemd[1]: Starting Raise network interfaces...
Jan 05 23:14:14 linocisco ifup[836]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Jan 05 23:19:03 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Jan 05 23:19:03 linocisco systemd[1]: Failed to start Raise network interfaces.
Jan 05 23:19:03 linocisco systemd[1]: networking.service: Unit entered failed state.
Jan 05 23:19:03 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Jan 13 10:51:58 linocisco systemd[1]: Starting Raise network interfaces...
Jan 13 10:52:02 linocisco ifup[833]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Jan 13 10:56:58 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Jan 13 10:56:58 linocisco systemd[1]: Failed to start Raise network interfaces.
Jan 13 10:56:58 linocisco systemd[1]: networking.service: Unit entered failed state.
Jan 13 10:56:58 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Jan 13 23:25:32 linocisco systemd[1]: Starting Raise network interfaces...
Jan 13 23:25:38 linocisco ifup[823]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Jan 13 23:30:31 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Jan 13 23:30:31 linocisco systemd[1]: Failed to start Raise network interfaces.
Jan 13 23:30:31 linocisco systemd[1]: networking.service: Unit entered failed state.
Jan 13 23:30:31 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Jan 15 15:59:48 linocisco systemd[1]: Starting Raise network interfaces...
Jan 15 15:59:49 linocisco ifup[956]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Jan 15 16:04:48 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Jan 15 16:04:48 linocisco systemd[1]: Failed to start Raise network interfaces.
Jan 15 16:04:48 linocisco systemd[1]: networking.service: Unit entered failed state.
Jan 15 16:04:48 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Jan 17 23:45:13 linocisco systemd[1]: Starting Raise network interfaces...
Jan 17 23:45:21 linocisco ifup[1080]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Jan 17 23:50:14 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Jan 17 23:50:14 linocisco systemd[1]: Failed to start Raise network interfaces.
Jan 17 23:50:14 linocisco systemd[1]: networking.service: Unit entered failed state.
Jan 17 23:50:14 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Jan 18 01:04:33 linocisco systemd[1]: Starting Raise network interfaces...
Jan 18 01:04:35 linocisco ifup[959]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
-- Reboot --
Jan 29 08:27:16 linocisco systemd[1]: Starting Raise network interfaces...
Jan 29 08:27:22 linocisco ifup[964]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Jan 29 08:32:03 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Jan 29 08:32:03 linocisco systemd[1]: Failed to start Raise network interfaces.
Jan 29 08:32:03 linocisco systemd[1]: networking.service: Unit entered failed state.
Jan 29 08:32:03 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Feb 04 23:52:00 linocisco systemd[1]: Starting Raise network interfaces...
Feb 04 23:52:06 linocisco ifup[969]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Feb 04 23:57:00 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Feb 04 23:57:00 linocisco systemd[1]: Failed to start Raise network interfaces.
Feb 04 23:57:00 linocisco systemd[1]: networking.service: Unit entered failed state.
Feb 04 23:57:00 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Feb 07 00:02:41 linocisco systemd[1]: Starting Raise network interfaces...
Feb 07 00:02:45 linocisco ifup[973]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Feb 07 00:07:41 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Feb 07 00:07:41 linocisco systemd[1]: Failed to start Raise network interfaces.
Feb 07 00:07:41 linocisco systemd[1]: networking.service: Unit entered failed state.
Feb 07 00:07:41 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Feb 09 09:59:34 linocisco systemd[1]: Starting Raise network interfaces...
Feb 09 09:59:39 linocisco ifup[987]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Feb 09 10:04:30 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Feb 09 10:04:30 linocisco systemd[1]: Failed to start Raise network interfaces.
Feb 09 10:04:30 linocisco systemd[1]: networking.service: Unit entered failed state.
Feb 09 10:04:30 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Feb 13 16:11:43 linocisco ifup[955]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Feb 13 16:11:24 linocisco systemd[1]: Starting Raise network interfaces...
Feb 13 16:16:25 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Feb 13 16:16:25 linocisco systemd[1]: Failed to start Raise network interfaces.
Feb 13 16:16:25 linocisco systemd[1]: networking.service: Unit entered failed state.
Feb 13 16:16:25 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Feb 15 10:05:18 linocisco ifup[959]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Feb 15 10:05:13 linocisco systemd[1]: Starting Raise network interfaces...
Feb 15 10:10:14 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Feb 15 10:10:14 linocisco systemd[1]: Failed to start Raise network interfaces.
Feb 15 10:10:14 linocisco systemd[1]: networking.service: Unit entered failed state.
Feb 15 10:10:14 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Feb 17 19:13:47 linocisco systemd[1]: Starting Raise network interfaces...
Feb 17 19:13:50 linocisco ifup[963]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Feb 17 19:18:44 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Feb 17 19:18:44 linocisco systemd[1]: Failed to start Raise network interfaces.
Feb 17 19:18:44 linocisco systemd[1]: networking.service: Unit entered failed state.
Feb 17 19:18:44 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Feb 18 11:05:31 linocisco systemd[1]: Starting Raise network interfaces...
Feb 18 11:05:36 linocisco ifup[970]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Feb 18 11:10:31 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Feb 18 11:10:31 linocisco systemd[1]: Failed to start Raise network interfaces.
Feb 18 11:10:31 linocisco systemd[1]: networking.service: Unit entered failed state.
Feb 18 11:10:31 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Feb 22 15:51:01 linocisco systemd[1]: Starting Raise network interfaces...
Feb 22 15:51:05 linocisco ifup[931]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Feb 22 15:56:01 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Feb 22 15:56:01 linocisco systemd[1]: Failed to start Raise network interfaces.
Feb 22 15:56:01 linocisco systemd[1]: networking.service: Unit entered failed state.
Feb 22 15:56:01 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Feb 22 17:37:35 linocisco systemd[1]: Starting Raise network interfaces...
Feb 22 17:37:40 linocisco ifup[972]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Feb 22 17:42:35 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Feb 22 17:42:35 linocisco systemd[1]: Failed to start Raise network interfaces.
Feb 22 17:42:35 linocisco systemd[1]: networking.service: Unit entered failed state.
Feb 22 17:42:35 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Feb 24 21:48:45 linocisco systemd[1]: Starting Raise network interfaces...
Feb 24 21:48:50 linocisco ifup[993]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Feb 24 21:53:45 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Feb 24 21:53:45 linocisco systemd[1]: Failed to start Raise network interfaces.
Feb 24 21:53:45 linocisco systemd[1]: networking.service: Unit entered failed state.
Feb 24 21:53:45 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Feb 25 09:54:30 linocisco systemd[1]: Starting Raise network interfaces...
Feb 25 09:54:39 linocisco ifup[1100]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Feb 25 09:59:35 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Feb 25 09:59:35 linocisco systemd[1]: Failed to start Raise network interfaces.
Feb 25 09:59:35 linocisco systemd[1]: networking.service: Unit entered failed state.
Feb 25 09:59:35 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Feb 25 23:30:24 linocisco systemd[1]: Starting Raise network interfaces...
Feb 25 23:30:34 linocisco ifup[962]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Feb 25 23:35:23 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Feb 25 23:35:23 linocisco systemd[1]: Failed to start Raise network interfaces.
Feb 25 23:35:23 linocisco systemd[1]: networking.service: Unit entered failed state.
Feb 25 23:35:23 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Feb 26 15:35:17 linocisco ifup[952]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Feb 26 15:34:59 linocisco systemd[1]: Starting Raise network interfaces...
Feb 26 15:39:58 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Feb 26 15:39:58 linocisco systemd[1]: Failed to start Raise network interfaces.
Feb 26 15:39:58 linocisco systemd[1]: networking.service: Unit entered failed state.
Feb 26 15:39:58 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Feb 28 09:08:43 linocisco systemd[1]: Starting Raise network interfaces...
Feb 28 09:08:45 linocisco ifup[978]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Feb 28 09:13:41 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Feb 28 09:13:41 linocisco systemd[1]: Failed to start Raise network interfaces.
Feb 28 09:13:41 linocisco systemd[1]: networking.service: Unit entered failed state.
Feb 28 09:13:41 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Feb 28 11:37:12 linocisco ifup[954]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Feb 28 11:36:46 linocisco systemd[1]: Starting Raise network interfaces...
Feb 28 11:41:46 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Feb 28 11:41:46 linocisco systemd[1]: Failed to start Raise network interfaces.
Feb 28 11:41:46 linocisco systemd[1]: networking.service: Unit entered failed state.
Feb 28 11:41:46 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Mar 02 20:18:05 linocisco systemd[1]: Starting Raise network interfaces...
Mar 02 20:18:10 linocisco ifup[968]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Mar 02 20:23:05 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Mar 02 20:23:05 linocisco systemd[1]: Failed to start Raise network interfaces.
Mar 02 20:23:05 linocisco systemd[1]: networking.service: Unit entered failed state.
Mar 02 20:23:05 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Mar 02 23:21:34 linocisco systemd[1]: Starting Raise network interfaces...
Mar 02 23:21:40 linocisco ifup[979]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Mar 02 23:26:34 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Mar 02 23:26:34 linocisco systemd[1]: Failed to start Raise network interfaces.
Mar 02 23:26:34 linocisco systemd[1]: networking.service: Unit entered failed state.
Mar 02 23:26:34 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Mar 03 15:55:09 linocisco systemd[1]: Starting Raise network interfaces...
Mar 03 15:55:12 linocisco ifup[947]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Mar 03 16:00:06 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Mar 03 16:00:06 linocisco systemd[1]: Failed to start Raise network interfaces.
Mar 03 16:00:06 linocisco systemd[1]: networking.service: Unit entered failed state.
Mar 03 16:00:06 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Mar 06 12:05:12 linocisco systemd[1]: Starting Raise network interfaces...
Mar 06 12:05:17 linocisco ifup[954]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Mar 06 12:10:09 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Mar 06 12:10:09 linocisco systemd[1]: Failed to start Raise network interfaces.
Mar 06 12:10:09 linocisco systemd[1]: networking.service: Unit entered failed state.
Mar 06 12:10:09 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Mar 06 20:10:52 linocisco systemd[1]: Starting Raise network interfaces...
Mar 06 20:10:54 linocisco ifup[960]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Mar 06 20:15:52 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Mar 06 20:15:52 linocisco systemd[1]: Failed to start Raise network interfaces.
Mar 06 20:15:52 linocisco systemd[1]: networking.service: Unit entered failed state.
Mar 06 20:15:52 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Mar 07 20:26:19 linocisco systemd[1]: Starting Raise network interfaces...
Mar 07 20:26:27 linocisco ifup[1077]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Mar 07 20:31:25 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Mar 07 20:31:25 linocisco systemd[1]: Failed to start Raise network interfaces.
Mar 07 20:31:25 linocisco systemd[1]: networking.service: Unit entered failed state.
Mar 07 20:31:25 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Mar 09 11:46:33 linocisco systemd[1]: Starting Raise network interfaces...
Mar 09 11:46:43 linocisco ifup[987]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Mar 09 11:51:33 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Mar 09 11:51:33 linocisco systemd[1]: Failed to start Raise network interfaces.
Mar 09 11:51:33 linocisco systemd[1]: networking.service: Unit entered failed state.
Mar 09 11:51:33 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Mar 11 10:34:17 linocisco ifup[968]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Mar 11 10:34:11 linocisco systemd[1]: Starting Raise network interfaces...
Mar 11 10:39:11 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Mar 11 10:39:11 linocisco systemd[1]: Failed to start Raise network interfaces.
Mar 11 10:39:11 linocisco systemd[1]: networking.service: Unit entered failed state.
Mar 11 10:39:11 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Mar 12 12:31:09 linocisco ifup[949]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Mar 12 12:31:03 linocisco systemd[1]: Starting Raise network interfaces...
Mar 12 12:36:04 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Mar 12 12:36:04 linocisco systemd[1]: Failed to start Raise network interfaces.
Mar 12 12:36:04 linocisco systemd[1]: networking.service: Unit entered failed state.
Mar 12 12:36:04 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Mar 14 11:29:39 linocisco ifup[977]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Mar 14 11:29:32 linocisco systemd[1]: Starting Raise network interfaces...
Mar 14 11:34:32 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Mar 14 11:34:32 linocisco systemd[1]: Failed to start Raise network interfaces.
Mar 14 11:34:32 linocisco systemd[1]: networking.service: Unit entered failed state.
Mar 14 11:34:32 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Mar 14 14:03:51 linocisco systemd[1]: Starting Raise network interfaces...
Mar 14 14:03:51 linocisco ifup[973]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Mar 14 14:08:51 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Mar 14 14:08:51 linocisco systemd[1]: Failed to start Raise network interfaces.
Mar 14 14:08:51 linocisco systemd[1]: networking.service: Unit entered failed state.
Mar 14 14:08:51 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Mar 14 19:24:09 linocisco systemd[1]: Starting Raise network interfaces...
Mar 14 19:24:16 linocisco ifup[977]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Mar 14 19:29:09 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Mar 14 19:29:09 linocisco systemd[1]: Failed to start Raise network interfaces.
Mar 14 19:29:09 linocisco systemd[1]: networking.service: Unit entered failed state.
Mar 14 19:29:09 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Mar 14 20:52:50 linocisco systemd[1]: Starting Raise network interfaces...
Mar 14 20:53:02 linocisco ifup[942]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Mar 14 20:57:51 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Mar 14 20:57:51 linocisco systemd[1]: Failed to start Raise network interfaces.
Mar 14 20:57:51 linocisco systemd[1]: networking.service: Unit entered failed state.
Mar 14 20:57:51 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Mar 15 12:18:16 linocisco ifup[946]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Mar 15 12:18:06 linocisco systemd[1]: Starting Raise network interfaces...
Mar 15 12:23:06 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Mar 15 12:23:06 linocisco systemd[1]: Failed to start Raise network interfaces.
Mar 15 12:23:06 linocisco systemd[1]: networking.service: Unit entered failed state.
Mar 15 12:23:06 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Mar 15 23:24:30 linocisco ifup[945]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Mar 15 23:24:18 linocisco systemd[1]: Starting Raise network interfaces...
Mar 15 23:29:18 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Mar 15 23:29:18 linocisco systemd[1]: Failed to start Raise network interfaces.
Mar 15 23:29:18 linocisco systemd[1]: networking.service: Unit entered failed state.
Mar 15 23:29:18 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Mar 16 12:39:22 linocisco ifup[949]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Mar 16 12:39:07 linocisco systemd[1]: Starting Raise network interfaces...
Mar 16 12:44:07 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Mar 16 12:44:07 linocisco systemd[1]: Failed to start Raise network interfaces.
Mar 16 12:44:07 linocisco systemd[1]: networking.service: Unit entered failed state.
Mar 16 12:44:07 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Mar 16 23:15:57 linocisco ifup[939]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Mar 16 23:15:42 linocisco systemd[1]: Starting Raise network interfaces...
Mar 16 23:20:42 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Mar 16 23:20:42 linocisco systemd[1]: Failed to start Raise network interfaces.
Mar 16 23:20:42 linocisco systemd[1]: networking.service: Unit entered failed state.
Mar 16 23:20:42 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
-- Reboot --
Mar 17 11:14:31 linocisco ifup[962]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Mar 17 11:14:16 linocisco systemd[1]: Starting Raise network interfaces...
Mar 17 11:19:17 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Mar 17 11:19:17 linocisco systemd[1]: Failed to start Raise network interfaces.
Mar 17 11:19:17 linocisco systemd[1]: networking.service: Unit entered failed state.
Mar 17 11:19:17 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
Mar 17 14:01:50 linocisco systemd[1]: Stopped Raise network interfaces.
Mar 17 14:01:50 linocisco systemd[1]: Starting Raise network interfaces...
Mar 17 14:01:51 linocisco systemd[1]: Started Raise network interfaces.
Mar 17 16:46:32 linocisco systemd[1]: Stopping Raise network interfaces...
Mar 17 16:46:33 linocisco ifdown[19055]: RTNETLINK answers: No such process
Mar 17 16:46:33 linocisco dhclient[19089]: Killed old client process
Mar 17 16:46:33 linocisco ifdown[19055]: Killed old client process
Mar 17 16:46:34 linocisco dhclient[19089]: Internet Systems Consortium DHCP Client 4.3.3
Mar 17 16:46:34 linocisco dhclient[19089]: Copyright 2004-2015 Internet Systems Consortium.
Mar 17 16:46:34 linocisco ifdown[19055]: Internet Systems Consortium DHCP Client 4.3.3
Mar 17 16:46:34 linocisco ifdown[19055]: Copyright 2004-2015 Internet Systems Consortium.
Mar 17 16:46:34 linocisco ifdown[19055]: All rights reserved.
Mar 17 16:46:34 linocisco ifdown[19055]: For info, please visit https://www.isc.org/software/dhcp/
Mar 17 16:46:34 linocisco dhclient[19089]: All rights reserved.
Mar 17 16:46:34 linocisco dhclient[19089]: For info, please visit https://www.isc.org/software/dhcp/
Mar 17 16:46:34 linocisco dhclient[19089]: 
Mar 17 16:46:34 linocisco dhclient[19089]: Listening on LPF/eth0/20:47:47:04:44:f6
Mar 17 16:46:34 linocisco ifdown[19055]: Listening on LPF/eth0/20:47:47:04:44:f6
Mar 17 16:46:34 linocisco ifdown[19055]: Sending on   LPF/eth0/20:47:47:04:44:f6
Mar 17 16:46:34 linocisco ifdown[19055]: Sending on   Socket/fallback
Mar 17 16:46:34 linocisco dhclient[19089]: Sending on   LPF/eth0/20:47:47:04:44:f6
Mar 17 16:46:34 linocisco dhclient[19089]: Sending on   Socket/fallback
Mar 17 16:46:34 linocisco dhclient[19089]: DHCPRELEASE on eth0 to 192.168.1.1 port 67 (xid=0x1abe6c3a)
Mar 17 16:46:34 linocisco ifdown[19055]: DHCPRELEASE on eth0 to 192.168.1.1 port 67 (xid=0x1abe6c3a)
Mar 17 16:46:34 linocisco ifdown[19055]: /etc/resolvconf/update.d/libc: Warning: /etc/resolv.conf is not a symbolic link to /run/resolvconf/resolv.conf
Mar 17 16:46:35 linocisco systemd[1]: Stopped Raise network interfaces.
Mar 17 16:46:35 linocisco systemd[1]: Starting Raise network interfaces...
Mar 17 16:46:35 linocisco dhclient[19170]: Internet Systems Consortium DHCP Client 4.3.3
Mar 17 16:46:35 linocisco dhclient[19170]: Copyright 2004-2015 Internet Systems Consortium.
Mar 17 16:46:35 linocisco ifup[19150]: Internet Systems Consortium DHCP Client 4.3.3
Mar 17 16:46:35 linocisco ifup[19150]: Copyright 2004-2015 Internet Systems Consortium.
Mar 17 16:46:35 linocisco ifup[19150]: All rights reserved.
Mar 17 16:46:35 linocisco ifup[19150]: For info, please visit https://www.isc.org/software/dhcp/
Mar 17 16:46:35 linocisco dhclient[19170]: All rights reserved.
Mar 17 16:46:35 linocisco dhclient[19170]: For info, please visit https://www.isc.org/software/dhcp/
Mar 17 16:46:35 linocisco dhclient[19170]: 
Mar 17 16:46:35 linocisco dhclient[19170]: Listening on LPF/eth0/20:47:47:04:44:f6
Mar 17 16:46:35 linocisco dhclient[19170]: Sending on   LPF/eth0/20:47:47:04:44:f6
Mar 17 16:46:35 linocisco ifup[19150]: Listening on LPF/eth0/20:47:47:04:44:f6
Mar 17 16:46:35 linocisco ifup[19150]: Sending on   LPF/eth0/20:47:47:04:44:f6
Mar 17 16:46:35 linocisco ifup[19150]: Sending on   Socket/fallback
Mar 17 16:46:35 linocisco ifup[19150]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 3 (xid=0x691d920c)
Mar 17 16:46:35 linocisco dhclient[19170]: Sending on   Socket/fallback
Mar 17 16:46:35 linocisco dhclient[19170]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 3 (xid=0x691d920c)
Mar 17 16:46:38 linocisco dhclient[19170]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 5 (xid=0x691d920c)
Mar 17 16:46:38 linocisco ifup[19150]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 5 (xid=0x691d920c)
Mar 17 16:46:38 linocisco dhclient[19170]: DHCPREQUEST of 192.168.1.7 on eth0 to 255.255.255.255 port 67 (xid=0xc921d69)
Mar 17 16:46:38 linocisco ifup[19150]: DHCPREQUEST of 192.168.1.7 on eth0 to 255.255.255.255 port 67 (xid=0xc921d69)
Mar 17 16:46:38 linocisco ifup[19150]: DHCPOFFER of 192.168.1.7 from 192.168.1.1
Mar 17 16:46:38 linocisco dhclient[19170]: DHCPOFFER of 192.168.1.7 from 192.168.1.1
Mar 17 16:46:38 linocisco dhclient[19170]: DHCPACK of 192.168.1.7 from 192.168.1.1
Mar 17 16:46:38 linocisco ifup[19150]: DHCPACK of 192.168.1.7 from 192.168.1.1
Mar 17 16:46:38 linocisco ifup[19150]: /etc/resolvconf/update.d/libc: Warning: /etc/resolv.conf is not a symbolic link to /run/resolvconf/resolv.conf
Mar 17 16:46:38 linocisco ifup[19150]: bound to 192.168.1.7 -- renewal in 32919 seconds.
Mar 17 16:46:39 linocisco systemd[1]: Started Raise network interfaces.
Mar 17 16:51:47 linocisco systemd[1]: Stopping Raise network interfaces...
Mar 17 16:51:47 linocisco dhclient[20401]: Killed old client process
Mar 17 16:51:47 linocisco ifdown[20368]: Killed old client process
Mar 17 16:51:48 linocisco dhclient[20401]: Internet Systems Consortium DHCP Client 4.3.3
Mar 17 16:51:48 linocisco dhclient[20401]: Copyright 2004-2015 Internet Systems Consortium.
Mar 17 16:51:48 linocisco ifdown[20368]: Internet Systems Consortium DHCP Client 4.3.3
Mar 17 16:51:48 linocisco ifdown[20368]: Copyright 2004-2015 Internet Systems Consortium.
Mar 17 16:51:48 linocisco ifdown[20368]: All rights reserved.
Mar 17 16:51:48 linocisco ifdown[20368]: For info, please visit https://www.isc.org/software/dhcp/
Mar 17 16:51:48 linocisco dhclient[20401]: All rights reserved.
Mar 17 16:51:48 linocisco dhclient[20401]: For info, please visit https://www.isc.org/software/dhcp/
Mar 17 16:51:48 linocisco dhclient[20401]: 
Mar 17 16:51:48 linocisco dhclient[20401]: Listening on LPF/eth0/20:47:47:04:44:f6
Mar 17 16:51:48 linocisco ifdown[20368]: Listening on LPF/eth0/20:47:47:04:44:f6
Mar 17 16:51:48 linocisco ifdown[20368]: Sending on   LPF/eth0/20:47:47:04:44:f6
Mar 17 16:51:48 linocisco ifdown[20368]: Sending on   Socket/fallback
Mar 17 16:51:48 linocisco dhclient[20401]: Sending on   LPF/eth0/20:47:47:04:44:f6
Mar 17 16:51:48 linocisco dhclient[20401]: Sending on   Socket/fallback
Mar 17 16:51:48 linocisco dhclient[20401]: DHCPRELEASE on eth0 to 192.168.1.1 port 67 (xid=0x77bdda19)
Mar 17 16:51:48 linocisco ifdown[20368]: DHCPRELEASE on eth0 to 192.168.1.1 port 67 (xid=0x77bdda19)
Mar 17 16:51:48 linocisco ifdown[20368]: /etc/resolvconf/update.d/libc: Warning: /etc/resolv.conf is not a symbolic link to /run/resolvconf/resolv.conf
Mar 17 16:51:48 linocisco systemd[1]: Stopped Raise network interfaces.
Mar 17 16:51:48 linocisco systemd[1]: Starting Raise network interfaces...
Mar 17 16:51:48 linocisco dhclient[20480]: Internet Systems Consortium DHCP Client 4.3.3
Mar 17 16:51:48 linocisco ifup[20460]: Internet Systems Consortium DHCP Client 4.3.3
Mar 17 16:51:48 linocisco ifup[20460]: Copyright 2004-2015 Internet Systems Consortium.
Mar 17 16:51:48 linocisco ifup[20460]: All rights reserved.
Mar 17 16:51:48 linocisco ifup[20460]: For info, please visit https://www.isc.org/software/dhcp/
Mar 17 16:51:48 linocisco dhclient[20480]: Copyright 2004-2015 Internet Systems Consortium.
Mar 17 16:51:48 linocisco dhclient[20480]: All rights reserved.
Mar 17 16:51:48 linocisco dhclient[20480]: For info, please visit https://www.isc.org/software/dhcp/
Mar 17 16:51:48 linocisco dhclient[20480]: 
Mar 17 16:51:48 linocisco dhclient[20480]: Listening on LPF/eth0/20:47:47:04:44:f6
Mar 17 16:51:48 linocisco ifup[20460]: Listening on LPF/eth0/20:47:47:04:44:f6
Mar 17 16:51:48 linocisco ifup[20460]: Sending on   LPF/eth0/20:47:47:04:44:f6
Mar 17 16:51:48 linocisco ifup[20460]: Sending on   Socket/fallback
Mar 17 16:51:48 linocisco ifup[20460]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 3 (xid=0xee65ca5f)
Mar 17 16:51:48 linocisco dhclient[20480]: Sending on   LPF/eth0/20:47:47:04:44:f6
Mar 17 16:51:48 linocisco dhclient[20480]: Sending on   Socket/fallback
Mar 17 16:51:48 linocisco dhclient[20480]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 3 (xid=0xee65ca5f)
Mar 17 16:51:51 linocisco dhclient[20480]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7 (xid=0xee65ca5f)
Mar 17 16:51:51 linocisco ifup[20460]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7 (xid=0xee65ca5f)
Mar 17 16:51:58 linocisco dhclient[20480]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7 (xid=0xee65ca5f)
Mar 17 16:51:58 linocisco ifup[20460]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7 (xid=0xee65ca5f)
Mar 17 16:51:58 linocisco dhclient[20480]: DHCPREQUEST of 192.168.1.7 on eth0 to 255.255.255.255 port 67 (xid=0x5fca65ee)
Mar 17 16:51:58 linocisco dhclient[20480]: DHCPOFFER of 192.168.1.7 from 192.168.1.1
Mar 17 16:51:58 linocisco ifup[20460]: DHCPREQUEST of 192.168.1.7 on eth0 to 255.255.255.255 port 67 (xid=0x5fca65ee)
Mar 17 16:51:58 linocisco ifup[20460]: DHCPOFFER of 192.168.1.7 from 192.168.1.1
Mar 17 16:51:58 linocisco dhclient[20480]: DHCPACK of 192.168.1.7 from 192.168.1.1
Mar 17 16:51:58 linocisco ifup[20460]: DHCPACK of 192.168.1.7 from 192.168.1.1
Mar 17 16:51:58 linocisco ifup[20460]: /etc/resolvconf/update.d/libc: Warning: /etc/resolv.conf is not a symbolic link to /run/resolvconf/resolv.conf
Mar 17 16:51:58 linocisco ifup[20460]: bound to 192.168.1.7 -- renewal in 41980 seconds.
Mar 17 16:51:58 linocisco systemd[1]: Started Raise network interfaces.
Mar 17 17:30:41 linocisco systemd[1]: Stopping Raise network interfaces...
Mar 17 17:30:42 linocisco dhclient[28460]: Killed old client process
Mar 17 17:30:42 linocisco ifdown[28425]: Killed old client process
Mar 17 17:30:43 linocisco dhclient[28460]: Internet Systems Consortium DHCP Client 4.3.3
Mar 17 17:30:43 linocisco ifdown[28425]: Internet Systems Consortium DHCP Client 4.3.3
Mar 17 17:30:43 linocisco ifdown[28425]: Copyright 2004-2015 Internet Systems Consortium.
Mar 17 17:30:43 linocisco ifdown[28425]: All rights reserved.
Mar 17 17:30:43 linocisco ifdown[28425]: For info, please visit https://www.isc.org/software/dhcp/
Mar 17 17:30:43 linocisco dhclient[28460]: Copyright 2004-2015 Internet Systems Consortium.
Mar 17 17:30:43 linocisco dhclient[28460]: All rights reserved.
Mar 17 17:30:43 linocisco dhclient[28460]: For info, please visit https://www.isc.org/software/dhcp/
Mar 17 17:30:43 linocisco dhclient[28460]: 
Mar 17 17:30:43 linocisco dhclient[28460]: Listening on LPF/eth0/20:47:47:04:44:f6
Mar 17 17:30:43 linocisco dhclient[28460]: Sending on   LPF/eth0/20:47:47:04:44:f6
Mar 17 17:30:43 linocisco ifdown[28425]: Listening on LPF/eth0/20:47:47:04:44:f6
Mar 17 17:30:43 linocisco ifdown[28425]: Sending on   LPF/eth0/20:47:47:04:44:f6
Mar 17 17:30:43 linocisco ifdown[28425]: Sending on   Socket/fallback
Mar 17 17:30:43 linocisco dhclient[28460]: Sending on   Socket/fallback
Mar 17 17:30:43 linocisco dhclient[28460]: DHCPRELEASE on eth0 to 192.168.1.1 port 67 (xid=0x779f43cf)
Mar 17 17:30:43 linocisco ifdown[28425]: DHCPRELEASE on eth0 to 192.168.1.1 port 67 (xid=0x779f43cf)
Mar 17 17:30:43 linocisco ifdown[28425]: /etc/resolvconf/update.d/libc: Warning: /etc/resolv.conf is not a symbolic link to /run/resolvconf/resolv.conf
Mar 17 17:30:43 linocisco systemd[1]: Stopped Raise network interfaces.
-- Reboot --
Mar 17 18:10:44 linocisco systemd[1]: Starting Raise network interfaces...
Mar 17 18:10:52 linocisco ifup[953]: /sbin/ifup: waiting for lock on /run/network/ifstate.eth0
Mar 17 18:15:44 linocisco systemd[1]: networking.service: Start operation timed out. Terminating.
Mar 17 18:15:44 linocisco systemd[1]: Failed to start Raise network interfaces.
Mar 17 18:15:44 linocisco systemd[1]: networking.service: Unit entered failed state.
Mar 17 18:15:44 linocisco systemd[1]: networking.service: Failed with result 'timeout'.
Download as text