diff --git a/Vagrantfile b/Vagrantfile
index 4c66d3b65381d91d2bc34f62453b6238997ee9b8..cf2cb1857da148ca791670eecf78fb139e4f6746 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -44,9 +44,6 @@ Vagrant.configure("2") do |config|
       # open TICK Kapacitor port
       config.vm.network "forwarded_port", guest: 9092, host: 9092
 
-      # open local Telegraf port
-      config.vm.network "forwarded_port", guest: 8186, host: 8186
-
       # install the TICK stack
       config.vm.provision :shell, :path => 'scripts/influx/install-tick-stack-vm.sh'
 
diff --git a/scripts/influx/start-telegraf.sh b/scripts/influx/start-telegraf.sh
new file mode 100644
index 0000000000000000000000000000000000000000..e12bb9ea9d5286e8df029559a2591089ec88c8a4
--- /dev/null
+++ b/scripts/influx/start-telegraf.sh
@@ -0,0 +1,28 @@
+#!/bin/bash
+#/////////////////////////////////////////////////////////////////////////
+#//
+#// (c) University of Southampton IT Innovation Centre, 2018
+#//
+#// Copyright in this software belongs to University of Southampton
+#// IT Innovation Centre of Gamma House, Enterprise Road,
+#// Chilworth Science Park, Southampton, SO16 7NS, UK.
+#//
+#// This software may not be used, sold, licensed, transferred, copied
+#// or reproduced in whole or in part in any manner or form or in or
+#// on any media by any person other than in accordance with the terms
+#// of the Licence Agreement supplied with the software, or otherwise
+#// without the prior written consent of the copyright owners.
+#//
+#// This software is distributed WITHOUT ANY WARRANTY, without even the
+#// implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+#// PURPOSE, except where stated in the Licence Agreement supplied with
+#// the software.
+#//
+#//      Created By :            Simon Crowle
+#//      Created Date :          03/11/2018
+#//      Created for Project :   FLAME
+#//
+#/////////////////////////////////////////////////////////////////////////
+
+echo Starting Telegraf services...
+systemctl start telegraf
\ No newline at end of file
diff --git a/scripts/influx/start-tick-stack-services.sh b/scripts/influx/start-tick-stack-services.sh
index ce453d43e82d320e0b35f436eed217283cb066fd..603fc75dbcd974196c91b55fd2de11b4b2a380ee 100644
--- a/scripts/influx/start-tick-stack-services.sh
+++ b/scripts/influx/start-tick-stack-services.sh
@@ -28,7 +28,7 @@ echo Starting TICK stack services...
 
 systemctl start influxdb
 systemctl start kapacitor
-systemctl start telegraf
+#systemctl start telegraf
 systemctl start chronograf
 
 # test influx
diff --git a/src/mediaServiceSim/LineProtocolGenerator.pyc b/src/mediaServiceSim/LineProtocolGenerator.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..1701c03b9385cc1425c3fa5d41d61ece154e0044
Binary files /dev/null and b/src/mediaServiceSim/LineProtocolGenerator.pyc differ
diff --git a/src/mediaServiceSim/__pycache__/LineProtocolGenerator.cpython-35.pyc b/src/mediaServiceSim/__pycache__/LineProtocolGenerator.cpython-35.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..ac11f6a88b988c0bd96dbc026a0b0facd6e6c2b0
Binary files /dev/null and b/src/mediaServiceSim/__pycache__/LineProtocolGenerator.cpython-35.pyc differ
diff --git a/src/mediaServiceSim/simulator_v2.py b/src/mediaServiceSim/simulator_v2.py
new file mode 100644
index 0000000000000000000000000000000000000000..70b7a886fa338400427f0610bfec012a73111148
--- /dev/null
+++ b/src/mediaServiceSim/simulator_v2.py
@@ -0,0 +1,91 @@
+import LineProtocolGenerator as lp
+import time
+import urllib.parse
+import urllib.request
+from random import random, randint
+
+# Simulator for services
+class sim:
+    def __init__(self, influx_url):
+        # requests per second for different quality levels
+        self.quality_request_rate = {"locA": [10, 20, 10], "locB": [5, 30, 5]}
+        self.influx_db = 'testDB'
+        self.influx_url = influx_url
+        # Teardown DB from previous sim and bring it back up
+        self._deleteDB()
+        self._createDB()
+
+
+    def run(self, simulation_length_seconds):
+        start_time = time.time()
+        current_time = int(time.time())
+        surrogate_services = [{'location': 'locA', 'cpu': 2, 'sfc': 'scenario1_template',
+                               'sfc_i': 'Scenario1_Template_I1', 'sf_package': 'MS_STREAMING', 'sf_i': 'MS_STREAMING_1',
+                               'mem': '8GB', 'storage': '1TB'},
+                              {'location': 'locB', 'cpu': 4, 'sfc': 'scenario1_template',
+                               'sfc_i': 'Scenario1_Template_I1', 'sf_package': 'MS_STREAMING', 'sf_i': 'MS_STREAMING_2',
+                               'mem': '8GB', 'storage': '1TB'}
+                              ]
+        # Simulate surrogate services being asserted
+        for service in surrogate_services:
+            self._sendInfluxData(lp.generate_vm_config('starting', service['cpu'], service['mem'], service['storage'], current_time))
+        for service in surrogate_services:
+            self._sendInfluxData(lp.generate_vm_config('running', service['cpu'], service['mem'], service['storage'], current_time))
+
+        # Run simulation
+        for i in range(simulation_length_seconds):
+            for service in surrogate_services:
+                # Scale CPU usage on number of requests, quality and cpu allocation
+                cpu_usage = self.quality_request_rate[service['location']][0]
+                cpu_usage += self.quality_request_rate[service['location']][1]*2
+                cpu_usage += self.quality_request_rate[service['location']][2]*4
+                cpu_usage = cpu_usage/service['cpu']
+                cpu_usage = cpu_usage/100 # Transform into %
+                self._sendInfluxData(lp.generate_cpu_report(service['location'], service['sfc'], service['sfc_i'],
+                                                            service['sf_package'], service['sf_i'],
+                                                            cpu_usage, cpu_usage, current_time))
+                # Scale SENT/REC bytes on requests and quality
+                bytes = self.quality_request_rate[service['location']][0]
+                bytes += self.quality_request_rate[service['location']][1]*2
+                bytes += self.quality_request_rate[service['location']][2]*4
+                bytes_sent = 1024*bytes
+                bytes_rec = 32*bytes
+                self._sendInfluxData(lp.generate_network_report(bytes_rec, bytes_sent, current_time))
+                # Scale MPEG Dash on requests, quality, cpu usage
+                avg_response_time = randint(0, 5 * self.quality_request_rate[service['location']][0])
+                avg_response_time += randint(0, 10 * self.quality_request_rate[service['location']][1])
+                avg_response_time += randint(0, 15 * self.quality_request_rate[service['location']][2])
+                avg_response_time *= cpu_usage
+                peak_response_time = avg_response_time + randint(30, 60)
+                requests = sum(self.quality_request_rate[service['location']])
+                self._sendInfluxData(lp.generate_mpegdash_report('https://Netflix.com/scream', requests,
+                                                                 avg_response_time, peak_response_time, current_time))
+            # Add a second to the clock
+            current_time += 1000
+        end_time = time.time()
+        print("Simulation Finished. Start time {0}. End time {1}. Total time {2}".format(start_time,end_time,end_time-start_time))
+
+    def _createDB(self):
+        self._sendInfluxQuery('CREATE DATABASE ' + self.influx_db)
+
+
+    def _deleteDB(self):
+        self._sendInfluxQuery('DROP DATABASE ' + self.influx_db)
+
+
+    def _sendInfluxQuery(self, query):
+        query = urllib.parse.urlencode({'q': query})
+        query = query.encode('ascii')
+        req = urllib.request.Request(self.influx_url + '/query ', query)
+        urllib.request.urlopen(req)
+
+    def _sendInfluxData(self, data):
+        data = data.encode()
+        header = {'Content-Type': 'application/octet-stream'}
+        req = urllib.request.Request(self.influx_url + '/write?db=' + self.influx_db, data, header)
+        urllib.request.urlopen(req)
+
+
+simulator = sim('http://localhost:8186')
+simulator.run(180)
+
diff --git a/ubuntu-xenial-16.04-cloudimg-console.log b/ubuntu-xenial-16.04-cloudimg-console.log
index 6a0fbd83f4b3d56a0202c88850e7a272605f99c8..f3285fb6e6cf0d7ec2def8dceb4ebecf988d9e32 100644
--- a/ubuntu-xenial-16.04-cloudimg-console.log
+++ b/ubuntu-xenial-16.04-cloudimg-console.log
@@ -47,7 +47,7 @@
 [    0.000000] NODE_DATA(0) allocated [mem 0x7ffeb000-0x7ffeffff]
 [    0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
 [    0.000000] kvm-clock: cpu 0, msr 0:7ffe3001, primary cpu clock
-[    0.000000] kvm-clock: using sched offset of 3607971923 cycles
+[    0.000000] kvm-clock: using sched offset of 3484004824 cycles
 [    0.000000] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
 [    0.000000] Zone ranges:
 [    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
@@ -90,412 +90,410 @@
 [    0.000000] console [tty1] enabled
 [    0.000000] console [ttyS0] enabled
 [    0.000000] tsc: Detected 2693.760 MHz processor
-[    0.699586] Calibrating delay loop (skipped) preset value.. 5387.52 BogoMIPS (lpj=10775040)
-[    0.702776] pid_max: default: 32768 minimum: 301
-[    0.703571] ACPI: Core revision 20150930
-[    0.705152] ACPI: 2 ACPI AML tables successfully acquired and loaded
-[    0.707425] Security Framework initialized
-[    0.708117] Yama: becoming mindful.
-[    0.708752] AppArmor: AppArmor initialized
-[    0.716536] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
-[    0.725079] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
-[    0.726253] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
-[    0.728461] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)
-[    0.777707] Initializing cgroup subsys io
-[    0.780906] Initializing cgroup subsys memory
-[    0.789380] Initializing cgroup subsys devices
-[    0.790126] Initializing cgroup subsys freezer
-[    0.790858] Initializing cgroup subsys net_cls
-[    0.792785] Initializing cgroup subsys perf_event
-[    0.794740] Initializing cgroup subsys net_prio
-[    0.817171] Initializing cgroup subsys hugetlb
-[    0.817923] Initializing cgroup subsys pids
-[    0.819900] CPU: Physical Processor ID: 0
-[    0.821456] mce: CPU supports 0 MCE banks
-[    0.822151] process: using mwait in idle threads
-[    0.822910] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
-[    0.825091] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
-[    0.839576] Freeing SMP alternatives memory: 32K
-[    0.856949] ftrace: allocating 32154 entries in 126 pages
-[    0.906075] smpboot: APIC(0) Converting physical 0 to logical package 0
-[    0.924435] smpboot: Max logical packages: 1
-[    0.925572] x2apic enabled
-[    0.933909] Switched APIC routing to physical x2apic.
-[    0.937266] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
-[    1.051304] smpboot: CPU0: Intel(R) Core(TM) i7-4600U CPU @ 2.10GHz (family: 0x6, model: 0x45, stepping: 0x1)
-[    1.058910] Performance Events: unsupported p6 CPU model 69 no PMU driver, software events only.
-[    1.066914] KVM setup paravirtual spinlock
-[    1.068191] x86: Booted up 1 node, 1 CPUs
-[    1.068882] smpboot: Total of 1 processors activated (5387.52 BogoMIPS)
-[    1.080211] devtmpfs: initialized
-[    1.101167] evm: security.selinux
-[    1.108370] evm: security.SMACK64
-[    1.108979] evm: security.SMACK64EXEC
-[    1.111355] evm: security.SMACK64TRANSMUTE
-[    1.121071] evm: security.SMACK64MMAP
-[    1.121720] evm: security.ima
-[    1.122281] evm: security.capability
-[    1.126221] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
-[    1.215470] futex hash table entries: 256 (order: 2, 16384 bytes)
-[    1.260405] pinctrl core: initialized pinctrl subsystem
-[    1.266847] RTC time: 12:31:02, date: 01/11/18
-[    1.272614] NET: Registered protocol family 16
-[    1.275461] cpuidle: using governor ladder
-[    1.276168] cpuidle: using governor menu
-[    1.278458] PCCT header not found.
-[    1.350554] ACPI: bus type PCI registered
-[    1.386023] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
-[    1.418078] PCI: Using configuration type 1 for base access
-[    1.420032] ACPI: Added _OSI(Module Device)
-[    1.440110] ACPI: Added _OSI(Processor Device)
-[    1.442858] ACPI: Added _OSI(3.0 _SCP Extensions)
-[    1.443634] ACPI: Added _OSI(Processor Aggregator Device)
-[    1.445340] ACPI: Executed 1 blocks of module-level executable AML code
-[    1.452214] ACPI: Interpreter enabled
-[    1.452872] ACPI: (supports S0 S5)
-[    1.455771] ACPI: Using IOAPIC for interrupt routing
-[    1.460684] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
-[    1.469242] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
-[    1.470183] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
-[    1.472845] acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
-[    1.474359] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
-[    1.483452] PCI host bridge to bus 0000:00
-[    1.484155] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
-[    1.486479] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
-[    1.491374] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
-[    1.496182] pci_bus 0000:00: root bus resource [mem 0x80000000-0xffdfffff window]
-[    1.538917] pci_bus 0000:00: root bus resource [bus 00-ff]
-[    1.587178] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
-[    1.613002] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
-[    1.628826] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
-[    1.644463] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
-[    1.677031] pci 0000:00:07.0: quirk: [io  0x4000-0x403f] claimed by PIIX4 ACPI
-[    1.687025] pci 0000:00:07.0: quirk: [io  0x4100-0x410f] claimed by PIIX4 SMB
-[    1.699754] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 9 10 *11)
-[    1.713746] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 9 10 *11)
-[    1.715037] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 9 *10 11)
-[    1.724789] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 *9 10 11)
-[    1.732895] ACPI: Enabled 2 GPEs in block 00 to 07
-[    1.733909] vgaarb: setting as boot device: PCI:0000:00:02.0
-[    1.734787] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
-[    1.741669] vgaarb: loaded
-[    1.742203] vgaarb: bridge control possible 0000:00:02.0
-[    1.743226] SCSI subsystem initialized
-[    1.756420] ACPI: bus type USB registered
-[    1.766677] usbcore: registered new interface driver usbfs
-[    1.767902] usbcore: registered new interface driver hub
-[    1.769103] usbcore: registered new device driver usb
-[    1.770415] PCI: Using ACPI for IRQ routing
-[    1.771598] NetLabel: Initializing
-[    1.787440] NetLabel:  domain hash size = 128
-[    1.816986] NetLabel:  protocols = UNLABELED CIPSOv4
-[    1.828734] NetLabel:  unlabeled traffic allowed by default
-[    1.829703] amd_nb: Cannot enumerate AMD northbridges
-[    1.834738] clocksource: Switched to clocksource kvm-clock
-[    1.855898] AppArmor: AppArmor Filesystem Enabled
-[    1.916384] pnp: PnP ACPI init
-[    1.917604] pnp: PnP ACPI: found 3 devices
-[    1.925723] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
-[    1.945662] NET: Registered protocol family 2
-[    1.958332] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
-[    1.989076] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
-[    1.992113] TCP: Hash tables configured (established 16384 bind 16384)
-[    2.000502] UDP hash table entries: 1024 (order: 3, 32768 bytes)
-[    2.004005] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
-[    2.010593] NET: Registered protocol family 1
-[    2.011878] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
-[    2.023949] pci 0000:00:01.0: Activating ISA DMA hang workarounds
-[    2.028463] Unpacking initramfs...
-[    3.876389] Freeing initrd memory: 10836K
-[    3.977411] RAPL PMU detected, API unit is 2^-32 Joules, 4 fixed counters 10737418240 ms ovfl timer
-[    3.982158] hw unit of domain pp0-core 2^-0 Joules
-[    4.000941] hw unit of domain package 2^-0 Joules
-[    4.063492] hw unit of domain dram 2^-0 Joules
-[    4.065720] hw unit of domain pp1-gpu 2^-0 Joules
-[    4.066542] platform rtc_cmos: registered platform RTC device (no PNP device found)
-[    4.069307] Scanning for low memory corruption every 60 seconds
-[    4.070421] audit: initializing netlink subsys (disabled)
-[    4.086713] audit: type=2000 audit(1515673870.002:1): initialized
-[    4.094691] Initialise system trusted keyring
-[    4.142847] HugeTLB registered 2 MB page size, pre-allocated 0 pages
-[    4.152659] zbud: loaded
-[    4.157693] VFS: Disk quotas dquot_6.6.0
-[    4.169818] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
-[    4.182934] squashfs: version 4.0 (2009/01/31) Phillip Lougher
-[    4.199022] fuse init (API version 7.23)
-[    4.215889] Key type big_key registered
-[    4.220192] Allocating IMA MOK and blacklist keyrings.
-[    4.241860] Key type asymmetric registered
-[    4.246102] Asymmetric key parser 'x509' registered
-[    4.255101] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
-[    4.256713] io scheduler noop registered
-[    4.258720] io scheduler deadline registered (default)
-[    4.283434] io scheduler cfq registered
-[    4.284178] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
-[    4.285043] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
-[    4.288368] ACPI: AC Adapter [AC] (on-line)
-[    4.289125] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
-[    4.291680] ACPI: Power Button [PWRF]
-[    4.297327] input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1
-[    4.314084] ACPI: Sleep Button [SLPF]
-[    4.389267] ACPI: Battery Slot [BAT0] (battery present)
-[    4.480559] GHES: HEST is not enabled!
-[    4.481326] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
-[    4.504246] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
-[    4.543966] Linux agpgart interface v0.103
-[    4.560158] loop: module loaded
-[    4.616979] scsi host0: ata_piix
-[    4.667530] scsi host1: ata_piix
-[    4.714324] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0xd000 irq 14
-[    4.719265] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0xd008 irq 15
-[    4.723102] libphy: Fixed MDIO Bus: probed
-[    4.724046] tun: Universal TUN/TAP device driver, 1.6
-[    4.726493] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
-[    4.745706] PPP generic driver version 2.4.2
-[    4.746494] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
-[    4.754925] ehci-pci: EHCI PCI platform driver
-[    4.776923] ehci-platform: EHCI generic platform driver
-[    4.826639] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
-[    4.829089] ohci-pci: OHCI PCI platform driver
-[    4.833455] ohci-platform: OHCI generic platform driver
-[    4.834291] uhci_hcd: USB Universal Host Controller Interface driver
-[    4.835323] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
-[    4.840740] serio: i8042 KBD port at 0x60,0x64 irq 1
-[    4.841982] serio: i8042 AUX port at 0x60,0x64 irq 12
-[    4.850504] mousedev: PS/2 mouse device common for all mice
-[    4.853657] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
-[    4.857086] rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0
-[    4.880759] rtc_cmos rtc_cmos: alarms up to one day, 114 bytes nvram
-[    4.965563] i2c /dev entries driver
-[    4.973248] device-mapper: uevent: version 1.0.3
-[    5.001265] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
-[    5.002654] ledtrig-cpu: registered to indicate activity on CPUs
-[    5.003812] NET: Registered protocol family 10
-[    5.006897] NET: Registered protocol family 17
-[    5.007703] Key type dns_resolver registered
-[    5.063484] tsc: Refined TSC clocksource calibration: 2693.759 MHz
-[    5.082098] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x26d436eef2b, max_idle_ns: 440795316752 ns
-[    5.083835] microcode: CPU0 sig=0x40651, pf=0x40, revision=0x0
-[    5.086339] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
-[    5.087885] registered taskstats version 1
-[    5.088605] Loading compiled-in X.509 certificates
-[    5.121130] Loaded X.509 cert 'Build time autogenerated kernel key: 7431eaeda5a51458aeb00f8de0f18f89e178d882'
-[    5.137321] zswap: loaded using pool lzo/zbud
-[    5.144396] Key type trusted registered
-[    5.150997] Key type encrypted registered
-[    5.151728] AppArmor: AppArmor sha1 policy hashing enabled
-[    5.152589] ima: No TPM chip found, activating TPM-bypass!
-[    5.156458] evm: HMAC attrs: 0x1
-[    5.162807]   Magic number: 2:544:531
-[    5.181010] tty ttyS11: hash matches
-[    5.181709] rtc_cmos rtc_cmos: setting system clock to 2018-01-11 12:31:06 UTC (1515673866)
-[    5.184766] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
-[    5.220142] EDD information not available.
-[    5.232892] Freeing unused kernel memory: 1492K
-[    5.235884] Write protecting the kernel read-only data: 14336k
-[    5.251031] Freeing unused kernel memory: 1744K
-[    5.263392] Freeing unused kernel memory: 108K
-Loading, please wait...
-starting version 229
-[    5.288968] random: udevadm: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
-[    5.291395] random: udevadm: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
-[    5.300997] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
-[    5.308004] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
-[    5.315064] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
-[    5.318626] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
-[    5.330887] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
-[    5.344755] random: udevadm: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
-[    5.353152] random: udevadm: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
-[    5.359608] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
-[    5.406968] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
-[    5.414898] e1000: Copyright (c) 1999-2006 Intel Corporation.
-[    5.418492] Fusion MPT base driver 3.04.20
-[    5.430606] Copyright (c) 1999-2008 LSI Corporation
-[    5.465127] AVX version of gcm_enc/dec engaged.
-[    5.482679] AES CTR mode by8 optimization enabled
-[    5.502740] Fusion MPT SPI Host driver 3.04.20
-[    5.646317] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4
-[    5.847080] e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 02:0a:1a:84:64:1f
-[    5.881130] e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection
-[    5.883333] e1000 0000:00:03.0 enp0s3: renamed from eth0
-[    5.887547] mptbase: ioc0: Initiating bringup
-[    5.951893] ioc0: LSI53C1030 A0: Capabilities={Initiator}
-[    6.218656] scsi host2: ioc0: LSI53C1030 A0, FwRev=00000000h, Ports=1, MaxQ=256, IRQ=20
-[    6.372812] scsi 2:0:0:0: Direct-Access     VBOX     HARDDISK         1.0  PQ: 0 ANSI: 5
-[    6.384146] scsi target2:0:0: Beginning Domain Validation
-[    6.402937] scsi target2:0:0: Domain Validation skipping write tests
-[    6.421158] scsi target2:0:0: Ending Domain Validation
-[    6.433550] scsi target2:0:0: asynchronous
-[    6.440955] scsi 2:0:1:0: Direct-Access     VBOX     HARDDISK         1.0  PQ: 0 ANSI: 5
-[    6.461152] scsi target2:0:1: Beginning Domain Validation
-[    6.469355] scsi target2:0:1: Domain Validation skipping write tests
-[    6.479424] scsi target2:0:1: Ending Domain Validation
-[    6.480306] scsi target2:0:1: asynchronous
-[    6.484879] sd 2:0:0:0: Attached scsi generic sg0 type 0
-[    6.487719] sd 2:0:0:0: [sda] 20971520 512-byte logical blocks: (10.7 GB/10.0 GiB)
-[    6.498250] sd 2:0:1:0: [sdb] 20480 512-byte logical blocks: (10.5 MB/10.0 MiB)
-[    6.501563] sd 2:0:1:0: Attached scsi generic sg1 type 0
-[    6.505018] sd 2:0:1:0: [sdb] Write Protect is off
-[    6.510094] sd 2:0:1:0: [sdb] Incomplete mode parameter data
-[    6.514210] sd 2:0:1:0: [sdb] Assuming drive cache: write through
-[    6.516271] sd 2:0:0:0: [sda] Write Protect is off
-[    6.517124] sd 2:0:0:0: [sda] Incomplete mode parameter data
-[    6.518004] sd 2:0:0:0: [sda] Assuming drive cache: write through
-[    6.556803]  sda: sda1
-[    6.562680] sd 2:0:0:0: [sda] Attached SCSI disk
-[    6.581928] sd 2:0:1:0: [sdb] Attached SCSI disk
-[    8.486964] floppy0: no floppy controllers found
-Begin: Loading e[    9.824051] md: linear personality registered for level -1
-ssential drivers ... [    9.866355] md: multipath personality registered for level -4
-[    9.878790] md: raid0 personality registered for level 0
-[    9.889928] md: raid1 personality registered for level 1
-[    9.970929] raid6: sse2x1   gen()  9088 MB/s
-[   10.043135] raid6: sse2x1   xor()  7204 MB/s
-[   10.138865] raid6: sse2x2   gen() 12250 MB/s
-[   10.235053] raid6: sse2x2   xor()  7672 MB/s
-[   10.310764] raid6: sse2x4   gen() 13556 MB/s
-[   10.402886] raid6: sse2x4   xor()  9791 MB/s
-[   10.411838] raid6: using algorithm sse2x4 gen() 13556 MB/s
-[   10.412707] raid6: .... xor() 9791 MB/s, rmw enabled
-[   10.413507] raid6: using ssse3x2 recovery algorithm
-[   10.417465] xor: automatically using best checksumming function:
-[   10.531095]    avx       : 21319.000 MB/sec
-[   10.543811] async_tx: api initialized (async)
-[   10.557793] md: raid6 personality registered for level 6
-[   10.570199] md: raid5 personality registered for level 5
-[   10.574239] md: raid4 personality registered for level 4
-[   10.579652] md: raid10 personality registered for level 10
+[    0.256791] Calibrating delay loop (skipped) preset value.. 5387.52 BogoMIPS (lpj=10775040)
+[    0.258196] pid_max: default: 32768 minimum: 301
+[    0.282933] ACPI: Core revision 20150930
+[    0.286920] ACPI: 2 ACPI AML tables successfully acquired and loaded
+[    0.289196] Security Framework initialized
+[    0.289897] Yama: becoming mindful.
+[    0.290527] AppArmor: AppArmor initialized
+[    0.293492] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
+[    0.314727] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
+[    0.317712] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
+[    0.318745] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)
+[    0.319964] Initializing cgroup subsys io
+[    0.321960] Initializing cgroup subsys memory
+[    0.323909] Initializing cgroup subsys devices
+[    0.359042] Initializing cgroup subsys freezer
+[    0.364370] Initializing cgroup subsys net_cls
+[    0.365109] Initializing cgroup subsys perf_event
+[    0.365870] Initializing cgroup subsys net_prio
+[    0.368814] Initializing cgroup subsys hugetlb
+[    0.370765] Initializing cgroup subsys pids
+[    0.371550] CPU: Physical Processor ID: 0
+[    0.373101] mce: CPU supports 0 MCE banks
+[    0.373800] process: using mwait in idle threads
+[    0.408750] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
+[    0.412110] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
+[    0.426255] Freeing SMP alternatives memory: 32K
+[    0.454155] ftrace: allocating 32154 entries in 126 pages
+[    0.550111] smpboot: APIC(0) Converting physical 0 to logical package 0
+[    0.565678] smpboot: Max logical packages: 1
+[    0.568595] x2apic enabled
+[    0.574172] Switched APIC routing to physical x2apic.
+[    0.576030] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
+[    0.686602] smpboot: CPU0: Intel(R) Core(TM) i7-4600U CPU @ 2.10GHz (family: 0x6, model: 0x45, stepping: 0x1)
+[    0.800229] Performance Events: unsupported p6 CPU model 69 no PMU driver, software events only.
+[    0.826382] KVM setup paravirtual spinlock
+[    0.831494] x86: Booted up 1 node, 1 CPUs
+[    0.834413] smpboot: Total of 1 processors activated (5387.52 BogoMIPS)
+[    0.837025] devtmpfs: initialized
+[    0.842382] evm: security.selinux
+[    0.867001] evm: security.SMACK64
+[    0.922199] evm: security.SMACK64EXEC
+[    0.929601] evm: security.SMACK64TRANSMUTE
+[    0.932117] evm: security.SMACK64MMAP
+[    0.932758] evm: security.ima
+[    0.935124] evm: security.capability
+[    0.935899] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
+[    0.938608] futex hash table entries: 256 (order: 2, 16384 bytes)
+[    0.939623] pinctrl core: initialized pinctrl subsystem
+[    0.962321] RTC time: 16:25:05, date: 01/12/18
+[    0.963184] NET: Registered protocol family 16
+[    0.964077] cpuidle: using governor ladder
+[    0.964773] cpuidle: using governor menu
+[    0.975245] PCCT header not found.
+[    0.980197] ACPI: bus type PCI registered
+[    0.982858] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
+[    1.018467] PCI: Using configuration type 1 for base access
+[    1.029753] ACPI: Added _OSI(Module Device)
+[    1.030636] ACPI: Added _OSI(Processor Device)
+[    1.038944] ACPI: Added _OSI(3.0 _SCP Extensions)
+[    1.047032] ACPI: Added _OSI(Processor Aggregator Device)
+[    1.049748] ACPI: Executed 1 blocks of module-level executable AML code
+[    1.054446] ACPI: Interpreter enabled
+[    1.059003] ACPI: (supports S0 S5)
+[    1.059747] ACPI: Using IOAPIC for interrupt routing
+[    1.065892] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
+[    1.071823] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
+[    1.077628] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
+[    1.086986] acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
+[    1.088532] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
+[    1.099742] PCI host bridge to bus 0000:00
+[    1.100436] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
+[    1.102834] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
+[    1.104287] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
+[    1.106011] pci_bus 0000:00: root bus resource [mem 0x80000000-0xffdfffff window]
+[    1.110595] pci_bus 0000:00: root bus resource [bus 00-ff]
+[    1.121043] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
+[    1.140109] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
+[    1.144990] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
+[    1.152251] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
+[    1.202799] pci 0000:00:07.0: quirk: [io  0x4000-0x403f] claimed by PIIX4 ACPI
+[    1.212606] pci 0000:00:07.0: quirk: [io  0x4100-0x410f] claimed by PIIX4 SMB
+[    1.223401] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 9 10 *11)
+[    1.233243] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 9 10 *11)
+[    1.234523] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 9 *10 11)
+[    1.244416] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 *9 10 11)
+[    1.255721] ACPI: Enabled 2 GPEs in block 00 to 07
+[    1.256733] vgaarb: setting as boot device: PCI:0000:00:02.0
+[    1.257611] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
+[    1.260628] vgaarb: loaded
+[    1.261170] vgaarb: bridge control possible 0000:00:02.0
+[    1.262200] SCSI subsystem initialized
+[    1.268054] ACPI: bus type USB registered
+[    1.269714] usbcore: registered new interface driver usbfs
+[    1.270596] usbcore: registered new interface driver hub
+[    1.283853] usbcore: registered new device driver usb
+[    1.284803] PCI: Using ACPI for IRQ routing
+[    1.321977] NetLabel: Initializing
+[    1.322619] NetLabel:  domain hash size = 128
+[    1.347520] NetLabel:  protocols = UNLABELED CIPSOv4
+[    1.348331] NetLabel:  unlabeled traffic allowed by default
+[    1.349277] amd_nb: Cannot enumerate AMD northbridges
+[    1.357565] clocksource: Switched to clocksource kvm-clock
+[    1.433745] AppArmor: AppArmor Filesystem Enabled
+[    1.473747] pnp: PnP ACPI init
+[    1.508714] pnp: PnP ACPI: found 3 devices
+[    1.553191] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
+[    1.630159] NET: Registered protocol family 2
+[    1.633259] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
+[    1.648516] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
+[    1.649531] TCP: Hash tables configured (established 16384 bind 16384)
+[    1.652999] UDP hash table entries: 1024 (order: 3, 32768 bytes)
+[    1.653945] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
+[    1.654958] NET: Registered protocol family 1
+[    1.657145] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
+[    1.661315] pci 0000:00:01.0: Activating ISA DMA hang workarounds
+[    1.662376] Unpacking initramfs...
+[    3.369314] Freeing initrd memory: 10836K
+[    3.376788] RAPL PMU detected, API unit is 2^-32 Joules, 4 fixed counters 10737418240 ms ovfl timer
+[    3.378246] hw unit of domain pp0-core 2^-0 Joules
+[    3.381438] hw unit of domain package 2^-0 Joules
+[    3.384156] hw unit of domain dram 2^-0 Joules
+[    3.384892] hw unit of domain pp1-gpu 2^-0 Joules
+[    3.386835] platform rtc_cmos: registered platform RTC device (no PNP device found)
+[    3.388151] Scanning for low memory corruption every 60 seconds
+[    3.390641] audit: initializing netlink subsys (disabled)
+[    3.395071] audit: type=2000 audit(1515774311.563:1): initialized
+[    3.398467] Initialise system trusted keyring
+[    3.399265] HugeTLB registered 2 MB page size, pre-allocated 0 pages
+[    3.403572] zbud: loaded
+[    3.404239] VFS: Disk quotas dquot_6.6.0
+[    3.404938] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
+[    3.410103] squashfs: version 4.0 (2009/01/31) Phillip Lougher
+[    3.412666] fuse init (API version 7.23)
+[    3.413456] Key type big_key registered
+[    3.414158] Allocating IMA MOK and blacklist keyrings.
+[    3.416207] Key type asymmetric registered
+[    3.416903] Asymmetric key parser 'x509' registered
+[    3.419230] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
+[    3.421991] io scheduler noop registered
+[    3.452698] io scheduler deadline registered (default)
+[    3.467401] io scheduler cfq registered
+[    3.522964] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
+[    3.527872] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
+[    3.530951] ACPI: AC Adapter [AC] (on-line)
+[    3.533936] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
+[    3.535185] ACPI: Power Button [PWRF]
+[    3.535930] input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1
+[    3.545128] ACPI: Sleep Button [SLPF]
+[    3.546391] ACPI: Battery Slot [BAT0] (battery present)
+[    3.557045] GHES: HEST is not enabled!
+[    3.558921] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
+[    3.581733] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
+[    3.648605] Linux agpgart interface v0.103
+[    3.659965] loop: module loaded
+[    3.660956] scsi host0: ata_piix
+[    3.661602] scsi host1: ata_piix
+[    3.662239] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0xd000 irq 14
+[    3.672846] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0xd008 irq 15
+[    3.696277] libphy: Fixed MDIO Bus: probed
+[    3.696980] tun: Universal TUN/TAP device driver, 1.6
+[    3.699208] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
+[    3.700202] PPP generic driver version 2.4.2
+[    3.700975] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
+[    3.715138] ehci-pci: EHCI PCI platform driver
+[    3.715902] ehci-platform: EHCI generic platform driver
+[    3.716737] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
+[    3.719562] ohci-pci: OHCI PCI platform driver
+[    3.721806] ohci-platform: OHCI generic platform driver
+[    3.723035] uhci_hcd: USB Universal Host Controller Interface driver
+[    3.738341] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
+[    3.754527] serio: i8042 KBD port at 0x60,0x64 irq 1
+[    3.759404] serio: i8042 AUX port at 0x60,0x64 irq 12
+[    3.760320] mousedev: PS/2 mouse device common for all mice
+[    3.763173] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
+[    3.766228] rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0
+[    3.797336] rtc_cmos rtc_cmos: alarms up to one day, 114 bytes nvram
+[    3.799578] i2c /dev entries driver
+[    3.800251] device-mapper: uevent: version 1.0.3
+[    3.801080] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
+[    3.823181] ledtrig-cpu: registered to indicate activity on CPUs
+[    3.833314] NET: Registered protocol family 10
+[    3.834209] NET: Registered protocol family 17
+[    3.837433] Key type dns_resolver registered
+[    3.846738] microcode: CPU0 sig=0x40651, pf=0x40, revision=0x0
+[    3.878877] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
+[    3.989751] registered taskstats version 1
+[    4.014883] Loading compiled-in X.509 certificates
+[    4.017715] Loaded X.509 cert 'Build time autogenerated kernel key: 7431eaeda5a51458aeb00f8de0f18f89e178d882'
+[    4.034521] zswap: loaded using pool lzo/zbud
+[    4.036304] Key type trusted registered
+[    4.038915] Key type encrypted registered
+[    4.055519] AppArmor: AppArmor sha1 policy hashing enabled
+[    4.108375] ima: No TPM chip found, activating TPM-bypass!
+[    4.128069] evm: HMAC attrs: 0x1
+[    4.131780]   Magic number: 2:940:438
+[    4.134397] rtc_cmos rtc_cmos: setting system clock to 2018-01-12 16:25:08 UTC (1515774308)
+[    4.137283] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
+[    4.174914] EDD information not available.
+[    4.219733] Freeing unused kernel memory: 1492K
+[    4.243669] Write protecting the kernel read-only data: 14336k
+[    4.244914] Freeing unused kernel memory: 1744K
+[    4.247109] Freeing unused kernel memory: 108K
+Loading, please [    4.275021] random: udevadm: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
+wait...
+startin[    4.363784] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
+g version 229
+[    4.389480] tsc: Refined TSC clocksource calibration: 2693.194 MHz
+[    4.401943] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x26d220f3262, max_idle_ns: 440795283780 ns
+[    4.416982] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
+[    4.427304] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
+[    4.442927] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
+[    4.445119] random: udevadm: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
+[    4.455191] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
+[    4.470361] random: udevadm: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
+[    4.473229] random: udevadm: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
+[    4.482163] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
+[    4.584220] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
+[    4.688969] e1000: Copyright (c) 1999-2006 Intel Corporation.
+[    4.700629] Fusion MPT base driver 3.04.20
+[    4.704710] Copyright (c) 1999-2008 LSI Corporation
+[    4.759681] AVX version of gcm_enc/dec engaged.
+[    4.816402] AES CTR mode by8 optimization enabled
+[    4.857738] Fusion MPT SPI Host driver 3.04.20
+[    4.894173] mptbase: ioc0: Initiating bringup
+[    4.935610] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4
+[    5.046602] ioc0: LSI53C1030 A0: Capabilities={Initiator}
+[    5.246451] scsi host2: ioc0: LSI53C1030 A0, FwRev=00000000h, Ports=1, MaxQ=256, IRQ=20
+[    5.507547] scsi 2:0:0:0: Direct-Access     VBOX     HARDDISK         1.0  PQ: 0 ANSI: 5
+[    5.596163] scsi target2:0:0: Beginning Domain Validation
+[    5.597610] scsi target2:0:0: Domain Validation skipping write tests
+[    5.601121] scsi target2:0:0: Ending Domain Validation
+[    5.603650] scsi target2:0:0: asynchronous
+[    5.676389] scsi 2:0:1:0: Direct-Access     VBOX     HARDDISK         1.0  PQ: 0 ANSI: 5
+[    5.711756] scsi target2:0:1: Beginning Domain Validation
+[    5.773532] scsi target2:0:1: Domain Validation skipping write tests
+[    5.785496] scsi target2:0:1: Ending Domain Validation
+[    5.829354] scsi target2:0:1: asynchronous
+[    5.997257] sd 2:0:0:0: Attached scsi generic sg0 type 0
+[    6.027056] sd 2:0:0:0: [sda] 20971520 512-byte logical blocks: (10.7 GB/10.0 GiB)
+[    6.035287] sd 2:0:0:0: [sda] Write Protect is off
+[    6.038133] sd 2:0:0:0: [sda] Incomplete mode parameter data
+[    6.042389] sd 2:0:0:0: [sda] Assuming drive cache: write through
+[    6.083697] sd 2:0:1:0: [sdb] 20480 512-byte logical blocks: (10.5 MB/10.0 MiB)
+[    6.109080] sd 2:0:1:0: Attached scsi generic sg1 type 0
+[    6.117987] e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 02:0a:1a:84:64:1f
+[    6.170822] e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection
+[    6.254058] sd 2:0:1:0: [sdb] Write Protect is off
+[    6.293243] e1000 0000:00:03.0 enp0s3: renamed from eth0
+[    6.305093] sd 2:0:1:0: [sdb] Incomplete mode parameter data
+[    6.323069] sd 2:0:1:0: [sdb] Assuming drive cache: write through
+[    6.325292]  sda: sda1
+[    6.326360] sd 2:0:0:0: [sda] Attached SCSI disk
+[    6.342542] sd 2:0:1:0: [sdb] Attached SCSI disk
+[    7.849858] floppy0: no floppy controllers found
+Begin: Loading e[    9.204901] md: linear personality registered for level -1
+ssential drivers[    9.326111] md: multipath personality registered for level -4
+ ... [    9.391342] md: raid0 personality registered for level 0
+[    9.400346] md: raid1 personality registered for level 1
+[    9.569946] raid6: sse2x1   gen()  8929 MB/s
+[    9.661742] raid6: sse2x1   xor()  7537 MB/s
+[    9.738410] raid6: sse2x2   gen() 11888 MB/s
+[    9.841905] raid6: sse2x2   xor()  8105 MB/s
+[    9.969864] raid6: sse2x4   gen() 13864 MB/s
+[   10.061649] raid6: sse2x4   xor()  7452 MB/s
+[   10.071282] raid6: using algorithm sse2x4 gen() 13864 MB/s
+[   10.080599] raid6: .... xor() 7452 MB/s, rmw enabled
+[   10.083561] raid6: using ssse3x2 recovery algorithm
+[   10.091035] xor: automatically using best checksumming function:
+[   10.133738]    avx       : 20041.000 MB/sec
+[   10.143240] async_tx: api initialized (async)
+[   10.156309] md: raid6 personality registered for level 6
+[   10.172071] md: raid5 personality registered for level 5
+[   10.172908] md: raid4 personality registered for level 4
+[   10.184860] md: raid10 personality registered for level 10
 done.
-Begin: Running[   10.653261] Btrfs loaded
- /scripts/init-premount ... done.
+Begin: Running /scripts/init-p[   10.228680] Btrfs loaded
+remount ... done.
 Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
 Begin: Running /scripts/local-premount ... Scanning for Btrfs filesystems
 done.
-Warning: fsck not present, so skipping root file[   10.849322] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
- system
+Warning: fsck not present, so skipping ro[   10.466800] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
+ot file system
 done.
 Begin: Running /scripts/local-bottom ... done.
 Begin: Running /scripts/init-bottom ... done.
-[   11.748151] random: nonblocking pool is initialized
-[   12.085862] systemd[1]: systemd 229 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN)
-[   12.108306] systemd[1]: Detected virtualization oracle.
-[   12.125664] systemd[1]: Detected architecture x86-64.
+[   11.226106] random: nonblocking pool is initialized
+[   11.721656] systemd[1]: systemd 229 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN)
+[   11.899319] systemd[1]: Detected virtualization oracle.
+[   11.962516] systemd[1]: Detected architecture x86-64.
 
 Welcome to Ubuntu 16.04.3 LTS!
 
-[   12.246958] systemd[1]: Set hostname to <ubuntu>.
-[   12.338953] systemd[1]: Initializing machine ID from random generator.
-[   12.388117] systemd[1]: Installed transient /etc/machine-id file.
-[   13.782166] systemd[1]: Started Trigger resolvconf update for networkd DNS.
-[  OK  ] Started Trigger resolvconf update for networkd DNS.
-[   13.927971] systemd[1]: Listening on Journal Socket.
-[  OK  ] Listening on Journal Socket.
-[   14.050679] systemd[1]: Reached target Encrypted Volumes.
-[  OK  ] Reached target Encrypted Volumes.
-[   14.207885] systemd[1]: Listening on udev Control Socket.
-[  OK  ] Listening on udev Control Socket.
-[   14.276130] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
+[   12.091866] systemd[1]: Set hostname to <ubuntu>.
+[   12.153482] systemd[1]: Initializing machine ID from random generator.
+[   12.185309] systemd[1]: Installed transient /etc/machine-id file.
+[   13.503456] systemd[1]: Listening on Device-mapper event daemon FIFOs.
+[  OK  ] Listening on Device-mapper event daemon FIFOs.
+[   13.529950] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
 [  OK  ] Started Forward Password Requests to Wall Directory Watch.
-[   14.312064] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
-[  OK  ] Set up automount Arbitrary Executab...ats File System Automount Point.
-[   14.359449] systemd[1]: Listening on Journal Socket (/dev/log).
+[   13.614555] systemd[1]: Created slice System Slice.
+[  OK  ] Created slice System Slice.
+[   13.673869] systemd[1]: Listening on Journal Socket (/dev/log).
 [  OK  ] Listening on Journal Socket (/dev/log).
-[   14.419708] systemd[1]: Listening on Device-mapper event daemon FIFOs.
-[  OK  ] Listening on Device-mapper event daemon FIFOs.
-[   14.524012] systemd[1]: Listening on Journal Audit Socket.
+[   13.822407] systemd[1]: Started Trigger resolvconf update for networkd DNS.
+[  OK  ] Started Trigger resolvconf update for networkd DNS.
+[   13.974332] systemd[1]: Listening on Journal Audit Socket.
 [  OK  ] Listening on Journal Audit Socket.
-[   14.643610] systemd[1]: Listening on LVM2 poll daemon socket.
-[  OK  ] Listening on LVM2 poll daemon socket.
-[   14.772431] systemd[1]: Created slice System Slice.
-[  OK  ] Created slice System Slice.
-[   14.880585] systemd[1]: Mounting Debug File System...
+[   14.077952] systemd[1]: Reached target Swap.
+[  OK  ] Reached target Swap.
+[   14.154910] systemd[1]: Listening on Journal Socket.
+[  OK  ] Listening on Journal Socket.
+[   14.249620] systemd[1]: Mounting Huge Pages File System...
+         Mounting Huge Pages File System...
+[   14.353434] systemd[1]: Mounting Debug File System...
          Mounting Debug File System...
-[   15.005033] systemd[1]: Starting Nameserver information manager...
+[   14.439859] systemd[1]: Mounting POSIX Message Queue File System...
+         Mounting POSIX Message Queue File System...
+[   14.517758] systemd[1]: Starting Remount Root and Kernel File Systems...
+         Starting Remount Root and Kernel File Systems...
+[   14.577090] systemd[1]: Created slice system-serial\x2dgetty.slice.
+[[   14.583214] EXT4-fs (sda1): re-mounted. Opts: (null)
+  OK  ] Created slice system-serial\x2dgetty.slice.
+[   14.614228] systemd[1]: Reached target Encrypted Volumes.
+[  OK  ] Reached target Encrypted Volumes.
+[   14.658211] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
+[  OK  ] Set up automount Arbitrary Executab...ats File System Automount Point.
+[   14.759259] systemd[1]: Starting Nameserver information manager...
          Starting Nameserver information manager...
-[   15.133166] systemd[1]: Mounting Huge Pages File System...
-         Mounting Huge Pages File System...
-[   15.237000] systemd[1]: Created slice system-serial\x2dgetty.slice.
-[  OK  ] Created slice system-serial\x2dgetty.slice.
-[   15.349575] systemd[1]: Starting Load Kernel Modules...
+[   14.872773] systemd[1]: Listening on udev Control Socket.
+[  OK  ] Listening on udev Control Socket.
+[   14.988643] systemd[1]: Starting Load Kernel Modules...
          Starting Load Kernel Modules...
-[   15.405706] systemd[1]: Starting Remount Root and Kernel File Systems...
-         Starting Remount[   15.438069] EXT4-fs (sda1): re-mounted. Opts: (null)
- Root and Kernel File Systems...
-[   15.466875] Loading iSCSI transport class v2.0-870.
-[   15.491978] systemd[1]: Starting Set console keymap...
+[   15.037865] systemd[1]: Starting Set console keymap...
          Starting Set console keymap...
-[   15.539490] systemd[1]: Mounting POSIX Message Queue File System...
-         Mounting POSIX M[   15.628703] iscsi: registered transport (tcp)
-essage Queue File System...
-[   15.715435] systemd[1]: Starting Uncomplicated firewall...
+[   15.163423] systemd[1]: Listening on udev Kernel Socket.
+[  OK  ] Listening on udev Kernel Sock[   15.295444] Loading iSCSI transport class v2.0-870.
+et.
+[   15.386156] systemd[1]: Starting Uncomplicated firewall...
          Starting Uncomplicated firewall...
-[   15.859696] systemd[1]: Listening on Syslog Socket.
-[  OK  [0[   15.901618] iscsi: registered transport (iser)
-m] Listening on Syslog Socket.
-[   15.939618] systemd[1]: Starting Journal Service...
+[   15.463024] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
+[   15.538173] iscsi: registered transport (tcp)
+[  OK  ] Listening on /dev/initctl Compatibility Named Pipe.
+[   15.630217] systemd[1]: Listening on LVM2 poll daemon socket.
+[  OK  ] Listening on [   15.671046] iscsi: registered transport (iser)
+LVM2 poll daemon socket.
+[   15.698146] systemd[1]: Listening on Syslog Socket.
+[  OK  ] Listening on Syslog Socket.
+[   15.718352] systemd[1]: Starting Journal Service...
          Starting Journal Service...
-[   16.027205] systemd[1]: Listening on udev Kernel Socket.
-[  OK  ] Listening on udev Kernel Socket.
-[   16.176118] systemd[1]: Reached target Swap.
-[  OK  ] Reached target Swap.
-[   16.264618] systemd[1]: Listening on LVM2 metadata daemon socket.
+[   15.815684] systemd[1]: Starting Create list of required static device nodes for the current kernel...
+         Starting Create list of required st... nodes for the current kernel...
+[   15.995151] systemd[1]: Listening on LVM2 metadata daemon socket.
 [  OK  ] Listening on LVM2 metadata daemon socket.
-[   16.417702] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
+[   16.034599] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
          Starting Monitoring of LVM2 mirrors... dmeventd or progress polling...
-[   16.567796] systemd[1]: Reached target User and Group Name Lookups.
-[  OK  ] Reached target User and Group Name Lookups.
-[   16.607476] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
-[  OK  ] Listening on /dev/initctl Compatibility Named Pipe.
-[   16.647548] systemd[1]: Created slice User and Session Slice.
+[   16.082137] systemd[1]: Created slice User and Session Slice.
 [  OK  ] Created slice User and Session Slice.
-[   16.661229] systemd[1]: Reached target Slices.
+[   16.118239] systemd[1]: Reached target Slices.
 [  OK  ] Reached target Slices.
-[   16.680641] systemd[1]: Starting Create list of required static device nodes for the current kernel...
-         Starting Create list of required st... nodes for the current kernel...
-[   16.836599] systemd[1]: Mounted Debug File System.
+[   16.166091] systemd[1]: Reached target User and Group Name Lookups.
+[  OK  ] Reached target User and Group Name Lookups.
+[   16.299022] systemd[1]: Mounted Debug File System.
 [  OK  ] Mounted Debug File System.
-[   16.895784] systemd[1]: Mounted Huge Pages File System.
+[   16.427265] systemd[1]: Mounted Huge Pages File System.
 [  OK  ] Mounted Huge Pages File System.
-[   17.015843] systemd[1]: Mounted POSIX Message Queue File System.
+[   16.530661] systemd[1]: Mounted POSIX Message Queue File System.
 [  OK  ] Mounted POSIX Message Queue File System.
-[   17.140286] systemd[1]: Started Journal Service.
+[   16.634561] systemd[1]: Started Journal Service.
 [  OK  ] Started Journal Service.
-[  OK  ] Started Load Kernel Modules.
 [  OK  ] Started Remount Root and Kernel File Systems.
+[  OK  ] Started Load Kernel Modules.
 [  OK  ] Started Set console keymap.
 [  OK  ] Started Uncomplicated firewall.
 [  OK  ] Started Create list of required sta...ce nodes for the current kernel.
 [  OK  ] Started Nameserver information manager.
 [  OK  ] Started LVM2 metadata daemon.
          Starting Create Static Device Nodes in /dev...
+         Mounting FUSE Control File System...
+         Starting Apply Kernel Variables...
+         Starting Load/Save Random Seed...
          Starting Initial cloud-init job (pre-networking)...
          Starting udev Coldplug all Devices...
-         Starting Load/Save Random Seed...
-         Starting Apply Kernel Variables...
-         Mounting FUSE Control File System...
          Starting Flush Journal to Persistent Storage...
 [  OK  ] Mounted FUSE Control File System.
 [  OK  ] Started Load/Save Random Seed.
+[  OK  ] Started Apply Kernel Variables.
 [  OK  ] Started udev Coldplug all Devices.
-[   18.275740] systemd-journald[407]: Received request to flush runtime journal from PID 1
-[  OK  ] Started Flush Journal to Persistent Storage.
 [  OK  ] Started Monitoring of LVM2 mirrors,...ng dmeventd or progress polling.
 [  OK  ] Started Create Static Device Nodes in /dev.
-[  OK  ] Started Apply Kernel Variables.
          Starting udev Kernel Device Manager...
+[  OK  ] Started Flush Journal to Persistent Storage.
 [  OK  ] Started udev Kernel Device Manager.
 [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
 [  OK  ] Reached target Local File Systems (Pre).
 [  OK  ] Reached target Local File Systems.
-         Starting Create Volatile Files and Directories...
-         Starting Set console font and keymap...
-         Starting Tell Plymouth To Write Out Runtime Data...
          Starting Commit a transient machine-id on disk...
          Starting LSB: AppArmor initialization...
-[  OK  ] Started Create Volatile Files and Directories.
-[  OK  ] Started Tell Plymouth To Write Out Runtime Data.
+         Starting Set console font and keymap...
+         Starting Tell Plymouth To Write Out Runtime Data...
+         Starting Create Volatile Files and Directories...
 [  OK  ] Started Commit a transient machine-id on disk.
+[  OK  ] Started Tell Plymouth To Write Out Runtime Data.
 [  OK  ] Found device /dev/ttyS0.
+[  OK  ] Started Create Volatile Files and Directories.
 [  OK  ] Reached target System Time Synchronized.
          Starting Update UTMP about System Boot/Shutdown...
 [  OK  ] Started Update UTMP about System Boot/Shutdown.
@@ -503,196 +501,205 @@ m] Listening on Syslog Socket.
 [  OK  ] Created slice system-getty.slice.
 [  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
 [  OK  ] Started LSB: AppArmor initialization.
-[   25.206203] cloud-init[435]: Cloud-init v. 0.7.9 running 'init-local' at Thu, 11 Jan 2018 12:31:26 +0000. Up 23.85 seconds.
+[   23.979073] cloud-init[448]: Cloud-init v. 0.7.9 running 'init-local' at Fri, 12 Jan 2018 16:25:28 +0000. Up 23.12 seconds.
 [  OK  ] Started Initial cloud-init job (pre-networking).
 [  OK  ] Reached target Network (Pre).
          Starting Raise network interfaces...
 [  OK  ] Started Raise network interfaces.
 [  OK  ] Reached target Network.
          Starting Initial cloud-init job (metadata service crawler)...
-[   28.497603] cloud-init[943]: Cloud-init v. 0.7.9 running 'init' at Thu, 11 Jan 2018 12:31:28 +0000. Up 26.17 seconds.
-[   28.539234] cloud-init[943]: ci-info: +++++++++++++++++++++++++++++++++++++Net device info+++++++++++++++++++++++++++++++++++++
+[   27.757580] cloud-init[957]: Cloud-init v. 0.7.9 running 'init' at Fri, 12 Jan 2018 16:25:30 +0000. Up 25.03 seconds.
+[   27.790452] cloud-init[957]: ci-info: +++++++++++++++++++++++++++++++++++++Net device info+++++++++++++++++++++++++++++++++++++
+[   27.817874] cloud-init[957]: ci-info: +--------+------+---------------------------+---------------+-------+-------------------+
+[   27.836487] cloud-init[957]: ci-info: | Device |  Up  |          Address          |      Mask     | Scope |     Hw-Address    |
 [  OK  ] Started Initial cloud-init job (metadata service crawler).
-[  OK  ] Reached target System Initialization.
-[   28.587103] cloud-init[943]: ci-info: +--------+------+---------------------------+---------------+-------+-------------------+
-[   28.692940] cloud-init[943]: ci-info: | Device |  Up  |          Address          |      Mask     | Scope |     Hw-Address    |
-[  OK  ] Listening on D-Bus System Message Bus Socket.
-[  OK  [   28.775827] cloud-init[943]: ci-info: +--------+------+---------------------------+---------------+-------+-------------------+
-[   28.821847] cloud-init[943]: ci-info: | enp0s3 | True |         10.0.2.15         | 255.255.255.0 |   .   | 02:0a:1a:84:64:1f |
-[   28.821903] cloud-init[943]: ci-info: | enp0s3 | True | fe80::a:1aff:fe84:641f/64 |       .       |  link | 02:0a:1a:84:64:1f |
-[   28.821944] cloud-init[943]: ci-info: |   lo   | True |         127.0.0.1         |   255.0.0.0   |   .   |         .         |
-[   28.822023] cloud-init[943]: ci-info: |   lo   | True |          ::1/128          |       .       |  host |         .         |
-[   28.822074] cloud-init[943]: ci-info: +--------+------+---------------------------+---------------+-------+-------------------+
-[   28.822115] cloud-init[943]: ci-info: +++++++++++++++++++++++++++Route IPv4 info++++++++++++++++++++++++++++
-[   28.822156] cloud-init[943]: ci-info: +-------+-------------+----------+---------------+-----------+-------+
-[   28.822200] cloud-init[943]: ci-info: | Route | Destination | Gateway  |    Genmask    | Interface | Flags |
-[   28.822239] cloud-init[943]: ci-info: +-------+-------------+----------+---------------+-----------+-------+
-[   28.822279] cloud-init[943]: ci-info: |   0   |   0.0.0.0   | 10.0.2.2 |    0.0.0.0    |   enp0s3  |   UG  |
-[   28.822318] cloud-init[943]: ci-info: |   1   |   10.0.2.0  | 0.0.0.0  | 255.255.255.0 |   enp0s3  |   U   |
-[   28.822359] cloud-init[943]: ci-info: +-------+-------------+----------+---------------+-----------+-------+
-[   28.822456] cloud-init[943]: Generating public/private rsa key pair.
-[   28.822505] cloud-init[943]: Your identification has been saved in /etc/ssh/ssh_host_rsa_key.
-[   28.822548] cloud-init[943]: Your public key has been saved in /etc/ssh/ssh_host_rsa_key.pub.
-[   28.822586] cloud-init[943]: The key fingerprint is:
-[   28.822626] cloud-init[943]: SHA256:o0sNKi1WQqtE1KoTNwAAM14abegfgjm6q7qM7missYo root@ubuntu-xenial
-[   28.822665] cloud-init[943]: The key's randomart image is:
-[   28.822704] cloud-init[943]: +---[RSA 2048]----+
-[   28.822746] cloud-init[943]: |Xo+.             |
-[   28.822784] cloud-init[943]: |++++             |
-[   28.822824] cloud-init[943]: |o*+              |
-[   28.822861] cloud-init[943]: |*=oo             |
-[   28.822901] cloud-init[943]: |o==.o . S        |
-[   28.822939] cloud-init[943]: |=. = . + .       |
-[   28.823005] cloud-init[943]: |+o+ o o .        |
-[   28.823047] cloud-init[943]: |** o . .         |
-[   28.823086] cloud-init[943]: |E*    .          |
-[   28.823125] cloud-init[943]: +----[SHA256]-----+
-[   28.823163] cloud-init[943]: Generating public/private dsa key pair.
-[   28.823201] cloud-init[943]: Your identification has been saved in /etc/ssh/ssh_host_dsa_key.
-[   28.823239] cloud-init[943]: Your public key has been saved in /etc/ssh/ssh_host_dsa_key.pub.
-[   28.823278] cloud-init[943]: The key fingerprint is:
-[   28.823316] cloud-init[943]: SHA256:3mMTMFxtvYRPDyDDHo/e9F5QVhqfLQO/9qiPSoP4zXE root@ubuntu-xenial
-[   28.823356] cloud-init[943]: The key's randomart image is:
-[   28.823397] cloud-init[943]: +---[DSA 1024]----+
-[   28.823436] cloud-init[943]: |         .+.o+. o|
-[   28.823475] cloud-init[943]: |       . .oo+o=+=|
-[   28.823512] cloud-init[943]: |        +. = +=Bo|
-[   28.823552] cloud-init[943]: |         oo o ++.|
-[   28.823591] cloud-init[943]: |        S..o .o. |
-[   28.823629] cloud-init[943]: |       o o.....o.|
-[   28.823668] cloud-init[943]: |      . o O E....|
-[   28.823709] cloud-init[943]: |       . = * o.  |
-[   28.823747] cloud-init[943]: |        . +.o..  |
-[   28.823786] cloud-init[943]: +----[SHA256]-----+
-[   28.823824] cloud-init[943]: Generating public/private ecdsa key pair.
-[   28.823863] cloud-init[943]: Your identification has been saved in /etc/ssh/ssh_host_ecdsa_key.
-[   28.823900] cloud-init[943]: Your public key has been saved in /etc/ssh/ssh_host_ecdsa_key.pub.
-[   28.823967] cloud-init[943]: The key fingerprint is:
-[   28.824012] cloud-init[943]: SHA256:TGn3WOt4BJ7GFh41U5y/3eYWp2+H4r3clNbLWf08cEo root@ubuntu-xenial
-[   29.770746] cloud-init[943]: The key's randomart image is:
-[   29.770781] cloud-init[943]: +---[ECDSA 256]---+
-[   29.770805] cloud-init[943]: |            +o.. |
-[   29.770827] cloud-init[943]: |         . . oo  |
-[   29.770855] cloud-init[943]: |        + = .  . |
-[   29.770878] cloud-init[943]: |       + = O .  .|
-[   29.770900] cloud-init[943]: |        S O +   +|
-[   29.770921] cloud-init[943]: |         o + E +O|
-[   29.770945] cloud-init[943]: |          . + +BB|
-[   29.770967] cloud-init[943]: |           ..+==X|
-[   29.770988] cloud-init[943]: |           ...+OB|
-[   29.771009] cloud-init[943]: +----[SHA256]-----+
-[   29.771031] cloud-init[943]: Generating public/private ed25519 key pair.
-[   29.771053] cloud-init[943]: Your identification has been saved in /etc/ssh/ssh_host_ed25519_key.
-[   29.771074] cloud-init[943]: Your public key has been saved in /etc/ssh/ssh_host_ed25519_key.pub.
-[   29.771097] cloud-init[943]: The key fingerprint is:
-[   29.771120] cloud-init[943]: SHA256:0LEvcQOpVrlULRDMRUjIuTKIiza4LLhoZANZ58sZPn8 root@ubuntu-xenial
-[   29.771142] cloud-init[943]: The key's randomart image is:
-[   29.771164] cloud-init[943]: +--[ED25519 256]--+
-[   29.771185] cloud-init[943]: |     . **X+.     |
-[   29.771207] cloud-init[943]: |  . . +.O+. .    |
-[   29.771228] cloud-init[943]: | + +  .=+.o.     |
-[   29.771250] cloud-init[943]: |+ . = +..+ .     |
-[   29.771272] cloud-init[943]: |+. o B  S .      |
-[   29.771294] cloud-init[943]: |+*  *    .       |
-[   29.771316] cloud-init[943]: |*.o  o           |
-[   29.771371] cloud-init[943]: |=o    . E        |
-[   29.771558] cloud-init[943]: |=.     .         |
-[   29.771589] cloud-init[943]: +----[SHA256]-----+
-] Started Timer to automatically refresh installed snaps.
-[  OK  ] Listening on ACPID Listen Socket.
-[  OK  ] Listening on UUID daemon activation socket.
+[   27.858377] cloud-init[957]: ci-info: +--------+------+---------------------------+---------------+-------+-------------------+
+[   27.926009] cloud-init[957]: ci-info: |   lo   | True |         127.0.0.1         |   255.0.0.0   |   .   |         .         |
+[   27.947398] cloud-init[957]: ci-info: |   lo   | True |          ::1/128          |       .       |  host |         .         |
+[  OK  ] Reached target Cloud-config availability.
+[  OK  ] Reached target Network is Online.
+[   28.006465] cloud-init[957]: ci-info: | enp0s3 | True |         10.0.2.15         | 255.255.255.0 |   .   | 02:0a:1a:84:64:1f |
+         Starting iSCSI initiator daemon (iscsid)...
+[[   28.104100] cloud-init[957]: ci-info: | enp0s3 | True | fe80::a:1aff:fe84:641f/64 |       .       |  link | 02:0a:1a:84:64:1f |
+[   28.108354] cloud-init[957]: ci-info: +--------+------+---------------------------+---------------+-------+-------------------+
+[   28.108388] cloud-init[957]: ci-info: +++++++++++++++++++++++++++Route IPv4 info++++++++++++++++++++++++++++
+[   28.108415] cloud-init[957]: ci-info: +-------+-------------+----------+---------------+-----------+-------+
+[   28.108456] cloud-init[957]: ci-info: | Route | Destination | Gateway  |    Genmask    | Interface | Flags |
+[   28.108486] cloud-init[957]: ci-info: +-------+-------------+----------+---------------+-----------+-------+
+[   28.108517] cloud-init[957]: ci-info: |   0   |   0.0.0.0   | 10.0.2.2 |    0.0.0.0    |   enp0s3  |   UG  |
+[   28.108543] cloud-init[957]: ci-info: |   1   |   10.0.2.0  | 0.0.0.0  | 255.255.255.0 |   enp0s3  |   U   |
+[   28.108568] cloud-init[957]: ci-info: +-------+-------------+----------+---------------+-----------+-------+
+[   28.108742] cloud-init[957]: Generating public/private rsa key pair.
+[   28.108775] cloud-init[957]: Your identification has been saved in /etc/ssh/ssh_host_rsa_key.
+[   28.108804] cloud-init[957]: Your public key has been saved in /etc/ssh/ssh_host_rsa_key.pub.
+[   28.108828] cloud-init[957]: The key fingerprint is:
+[   28.108853] cloud-init[957]: SHA256:V91RkFaDF9+XI2WH7hR1S4znUXSvnC8CpXUUoBdEMHw root@ubuntu-xenial
+[   28.108878] cloud-init[957]: The key's randomart image is:
+[   28.108902] cloud-init[957]: +---[RSA 2048]----+
+[   28.108929] cloud-init[957]: |         .o+=.B/&|
+[   28.108973] cloud-init[957]: |          .oE*O*%|
+[   28.109008] cloud-init[957]: |          ..=+*=B|
+[   28.109034] cloud-init[957]: |           * o++o|
+[   28.109059] cloud-init[957]: |        S +  o+  |
+[   28.109084] cloud-init[957]: |         . .  .. |
+[   28.109108] cloud-init[957]: |            . . .|
+[   28.109148] cloud-init[957]: |             . . |
+[   28.109189] cloud-init[957]: |                 |
+[   28.109235] cloud-init[957]: +----[SHA256]-----+
+[   28.109261] cloud-init[957]: Generating public/private dsa key pair.
+[   28.109285] cloud-init[957]: Your identification has been saved in /etc/ssh/ssh_host_dsa_key.
+[   28.109309] cloud-init[957]: Your public key has been saved in /etc/ssh/ssh_host_dsa_key.pub.
+[   28.109334] cloud-init[957]: The key fingerprint is:
+[   28.109358] cloud-init[957]: SHA256:Gy3BhAUZK67IVjGWoEJ9ZjL1iYQfFjqCZjJu7cuY5II root@ubuntu-xenial
+[   28.109384] cloud-init[957]: The key's randomart image is:
+[   28.109410] cloud-init[957]: +---[DSA 1024]----+
+[   28.109434] cloud-init[957]: | o. o++*o        |
+[   28.109459] cloud-init[957]: |+ .=+*=+.        |
+[   28.109483] cloud-init[957]: |*+ BX.ooo        |
+[   28.109506] cloud-init[957]: |*.+.+o   o       |
+[   28.109531] cloud-init[957]: | o o.   S .      |
+[   28.109554] cloud-init[957]: |o.o.     +       |
+[   28.109578] cloud-init[957]: |o+..    .        |
+[   28.109603] cloud-init[957]: |E + .            |
+[   28.109627] cloud-init[957]: |.+ o             |
+[   28.109651] cloud-init[957]: +----[SHA256]-----+
+[   28.109675] cloud-init[957]: Generating public/private ecdsa key pair.
+[   28.109699] cloud-init[957]: Your identification has been saved in /etc/ssh/ssh_host_ecdsa_key.
+[   28.109724] cloud-init[957]: Your public key has been saved in /etc/ssh/ssh_host_ecdsa_key.pub.
+[   28.109748] cloud-init[957]: The key fingerprint is:
+[   28.109772] cloud-init[957]: SHA256:LHPuX+xSX6TWlMG9eA2eVMHUlpNFqBi3/rMRUQSgxSo root@ubuntu-xenial
+[   28.109796] cloud-init[957]: The key's randomart image is:
+[   28.109819] cloud-init[957]: +---[ECDSA 256]---+
+[   28.109843] cloud-init[957]: |           .o.=O&|
+[   28.109869] cloud-init[957]: |          .oo +O+|
+[   28.109893] cloud-init[957]: |          .= =o+*|
+[   28.109918] cloud-init[957]: |       .E o o.o=+|
+[   28.109941] cloud-init[957]: |      o S. .  o= |
+[   28.109965] cloud-init[957]: |       =   .o o.o|
+[   28.109989] cloud-init[957]: |        .  .o+.. |
+[   29.113915] cloud-init[957]: |       .  .o  +. |
+[   29.113955] cloud-init[957]: |        ..... .o |
+[   29.113982] cloud-init[957]: +----[SHA256]-----+
+[   29.114006] cloud-init[957]: Generating public/private ed25519 key pair.
+[   29.114030] cloud-init[957]: Your identification has been saved in /etc/ssh/ssh_host_ed25519_key.
+[   29.114055] cloud-init[957]: Your public key has been saved in /etc/ssh/ssh_host_ed25519_key.pub.
+[   29.114086] cloud-init[957]: The key fingerprint is:
+[   29.114110] cloud-init[957]: SHA256:LyvReAP8OAsny5vYKNvrFLrJ1WLKnq2rNa7pXvOGAzE root@ubuntu-xenial
+[   29.114134] cloud-init[957]: The key's randomart image is:
+[   29.114160] cloud-init[957]: +--[ED25519 256]--+
+[   29.114185] cloud-init[957]: |                 |
+[   29.114209] cloud-init[957]: |                 |
+[   29.114232] cloud-init[957]: |     .           |
+[   29.114256] cloud-init[957]: | E    o          |
+[   29.114281] cloud-init[957]: |  +    *S        |
+[   29.114328] cloud-init[957]: | o .+ * =.       |
+[   29.114356] cloud-init[957]: |. =B.* =...      |
+[   29.114381] cloud-init[957]: |+OBB*oo  o       |
+[   29.114589] cloud-init[957]: |%/Xo*o ..        |
+[   29.114620] cloud-init[957]: +----[SHA256]-----+
+  OK  ] Reached target System Initialization.
 [  OK  ] Started Daily Cleanup of Temporary Directories.
+         Starting LXD - unix socket.
 [  OK  ] Started ACPI Events Check.
 [  OK  ] Reached target Paths.
-         Starting Socket activation for snappy daemon.
-         Starting LXD - unix socket.
-[  OK  ] Started Timer to automatically fetch and run repair assertions.
-[  OK  ] Reached target Network is Online.
+[  OK  ] Listening on ACPID Listen Socket.
 [  OK  ] Started Daily apt download activities.
 [  OK  ] Started Daily apt upgrade and clean activities.
+         Starting Socket activation for snappy daemon.
+[  OK  ] Started Timer to automatically refresh installed snaps.
+[  OK  ] Listening on UUID daemon activation socket.
+[  OK  ] Started Timer to automatically fetch and run repair assertions.
 [  OK  ] Reached target Timers.
-         Starting iSCSI initiator daemon (iscsid)...
-[  OK  ] Reached target Cloud-config availability.
-[  OK  ] Listening on Socket activation for snappy daemon.
+[  OK  ] Listening on D-Bus System Message Bus Socket.
 [  OK  ] Listening on LXD - unix socket.
+[  OK  ] Listening on Socket activation for snappy daemon.
+[  OK  ] Started iSCSI initiator daemon (iscsid).
+         Starting Login to default iSCSI targets...
 [  OK  ] Reached target Sockets.
 [  OK  ] Reached target Basic System.
-[  OK  ] Started Regular background program processing daemon.
-         Starting Apply the settings specified in cloud-config...
+[  OK  ] Started ACPI event daemon.
 [  OK  ] Started D-Bus System Message Bus.
+         Starting Apply the settings specified in cloud-config...
+         Starting /etc/rc.local Compatibility...
+         Starting Snappy daemon...
+[  OK  ] Started Regular background program processing daemon.
 [  OK  ] Started Deferred execution scheduler.
          Starting LSB: MD monitoring daemon...
+         Starting Login Service...
+         Starting LXD - container startup/shutdown...
          Starting System Logging Service...
-         Starting LSB: Record successful boot for GRUB...
          Starting Pollinate to seed the pseudo random number generator...
+         Starting LSB: Record successful boot for GRUB...
+[  OK  ] Started FUSE filesystem for LXC.
          Starting Accounts Service...
-         Starting LXD - container startup/shutdown...
 [  OK  ] Started Unattended Upgrades Shutdown.
-         Starting Login Service...
-         Starting /etc/rc.local Compatibility...
-[  OK  ] Started ACPI event daemon.
-[  OK  ] Started FUSE filesystem for LXC.
-         Starting Snappy daemon...
 [  OK  ] Started /etc/rc.local Compatibility.
-[  OK  ] Started Login Service.
-[  OK  ] Started iSCSI initiator daemon (iscsid).
-         Starting Login to default iSCSI targets...
-[   32.353346] cloud-init[1038]: Generating locales (this might take a while)...
-[  OK  ] Started LSB: Record successful boot for GRUB.
+[  OK  ] Started LSB: MD monitoring daemon.
 [  OK  ] Started Login to default iSCSI targets.
 [  OK  ] Reached target Remote File Systems (Pre).
 [  OK  ] Reached target Remote File Systems.
          Starting LSB: automatic crash report generation...
          Starting LSB: VirtualBox Linux Additions...
-         Starting LSB: daemon to balance interrupts for SMP systems...
          Starting Permit User Sessions...
          Starting LSB: Set the CPU Frequency Scaling governor to "ondemand"...
-[  OK  ] Started LSB: Set the CPU Frequency Scaling governor to "ondemand".
+         Starting LSB: daemon to balance interrupts for SMP systems...
+[  OK  ] Started Login Service.
+[  OK  ] Started System Logging Service.
+[  OK  ] Started LSB: automatic crash report generation.
 [  OK  ] Started Permit User Sessions.
-         Starting Hold until boot process finishes up...
          Starting Terminate Plymouth Boot Screen...
-[  OK  ] Started Hold until boot process finishes up.
+         Starting Hold until boot process finishes up...
 [  OK  ] Started Terminate Plymouth Boot Screen.
+[  OK  ] Started Hold until boot process finishes up.
 [  OK  ] Started Getty on tty1.
+         Starting Set console scheme...
 [  OK  ] Started Serial Getty on ttyS0.
 [  OK  ] Reached target Login Prompts.
-         Starting Set console scheme...
-[  OK  ] Started System Logging Service.
-[  OK  ] Started Set console scheme.
-[  OK  ] Started LSB: MD monitoring daemon.
-[  OK  ] Started LSB: automatic crash report generation.
+[  OK  ] Started LSB: Set the CPU Frequency Scaling governor to "ondemand".
 [  OK  ] Started LSB: daemon to balance interrupts for SMP systems.
-[  OK  ] Started LSB: VirtualBox Linux Additions.
+[  OK  ] Started LSB: Record successful boot for GRUB.
+[  OK  ] Started Set console scheme.
+[   31.754838] cloud-init[1067]: Generating locales (this might take a while)...
          Starting Authenticate and Authorize Users to Run Privileged Tasks...
+[  OK  ] Started LSB: VirtualBox Linux Additions.
 [  OK  ] Started Authenticate and Authorize Users to Run Privileged Tasks.
 [  OK  ] Started Accounts Service.
-[   36.144944] cloud-init[1038]:   en_US.UTF-8... done
-[   36.173098] cloud-init[1038]: Generation complete.
 [  OK  ] Started Pollinate to seed the pseudo random number generator.
          Starting OpenBSD Secure Shell server...
-[  OK  ] Started OpenBSD Secure Shell server.
 [  OK  ] Started Snappy daemon.
          Starting Auto import assertions from block devices...
 [  OK  ] Started Auto import assertions from block devices.
+[  OK  ] Started OpenBSD Secure Shell server.
+[   34.720983] cloud-init[1067]:   en_US.UTF-8... done
+[   34.742144] cloud-init[1067]: Generation complete.
+[  OK  ] Started LXD - container startup/shutdown.
+[  OK  ] Reached target Multi-User System.
+[  OK  ] Reached target Graphical Interface.
+         Starting Update UTMP about System Runlevel Changes...
+[  OK  ] Started Update UTMP about System Runlevel Changes.
+         Stopping OpenBSD Secure Shell server...
+[  OK  ] Stopped OpenBSD Secure Shell server.
+         Starting OpenBSD Secure Shell server...
+[  OK  ] Started OpenBSD Secure Shell server.
 

 Ubuntu 16.04.3 LTS ubuntu-xenial ttyS0
 
-ubuntu-xenial login: [   40.140064] cloud-init[1038]: Cloud-init v. 0.7.9 running 'modules:config' at Thu, 11 Jan 2018 12:31:34 +0000. Up 31.48 seconds.
+ubuntu-xenial login: [   37.338134] cloud-init[1067]: Cloud-init v. 0.7.9 running 'modules:config' at Fri, 12 Jan 2018 16:25:35 +0000. Up 30.49 seconds.
 ci-info: no authorized ssh keys fingerprints found for user ubuntu.
-<14>Jan 11 12:31:44 ec2: 
-<14>Jan 11 12:31:44 ec2: #############################################################
-<14>Jan 11 12:31:44 ec2: -----BEGIN SSH HOST KEY FINGERPRINTS-----
-<14>Jan 11 12:31:44 ec2: 1024 SHA256:3mMTMFxtvYRPDyDDHo/e9F5QVhqfLQO/9qiPSoP4zXE root@ubuntu-xenial (DSA)
-<14>Jan 11 12:31:44 ec2: 256 SHA256:TGn3WOt4BJ7GFh41U5y/3eYWp2+H4r3clNbLWf08cEo root@ubuntu-xenial (ECDSA)
-<14>Jan 11 12:31:44 ec2: 256 SHA256:0LEvcQOpVrlULRDMRUjIuTKIiza4LLhoZANZ58sZPn8 root@ubuntu-xenial (ED25519)
-<14>Jan 11 12:31:44 ec2: 2048 SHA256:o0sNKi1WQqtE1KoTNwAAM14abegfgjm6q7qM7missYo root@ubuntu-xenial (RSA)
-<14>Jan 11 12:31:44 ec2: -----END SSH HOST KEY FINGERPRINTS-----
-<14>Jan 11 12:31:44 ec2: #############################################################
+<14>Jan 12 16:25:43 ec2: 
+<14>Jan 12 16:25:43 ec2: #############################################################
+<14>Jan 12 16:25:43 ec2: -----BEGIN SSH HOST KEY FINGERPRINTS-----
+<14>Jan 12 16:25:43 ec2: 1024 SHA256:Gy3BhAUZK67IVjGWoEJ9ZjL1iYQfFjqCZjJu7cuY5II root@ubuntu-xenial (DSA)
+<14>Jan 12 16:25:43 ec2: 256 SHA256:LHPuX+xSX6TWlMG9eA2eVMHUlpNFqBi3/rMRUQSgxSo root@ubuntu-xenial (ECDSA)
+<14>Jan 12 16:25:43 ec2: 256 SHA256:LyvReAP8OAsny5vYKNvrFLrJ1WLKnq2rNa7pXvOGAzE root@ubuntu-xenial (ED25519)
+<14>Jan 12 16:25:43 ec2: 2048 SHA256:V91RkFaDF9+XI2WH7hR1S4znUXSvnC8CpXUUoBdEMHw root@ubuntu-xenial (RSA)
+<14>Jan 12 16:25:43 ec2: -----END SSH HOST KEY FINGERPRINTS-----
+<14>Jan 12 16:25:43 ec2: #############################################################
 -----BEGIN SSH HOST KEY KEYS-----
-ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBNwQngoyEP+4QjVe6pwrcMtdQQM7lisB1uPAnuhJiN+sxhzE9HPI6HYiWzi0rQRKa6R5BcJuUOa/hLmW0Oz599U= root@ubuntu-xenial
-ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEGFGfydIbuAZQ3zTUG3NHSagwIeWrD5GpeNKex1Vfzu root@ubuntu-xenial
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDnTsXwSg7UIi0QE+2+5/tGdRIjnWdlj0XvRlG3U4nBWPPSJ1E5vXKfmIsJCVXmyzEyLnhTguv4UKVqymVf1Yg3wUdqDnaFB86Ac1XJ9MGJ4EtlZYtIB5EZHzaGVnX7IIlST5TnZ+OQ5sEn10hs1ybz4TIGpqNSVLppV1RUmDGxsWTzW74wKZyFNPJaJh606TNJlImA8PnV1BVsF3+xfeQlp4wTlXHtDYif8SmaTQ0OuSA61Xa3RIjkZeItUw0ThicBXssWWr9NcV4LZ7vQdeC4Ce+VKeAg/LSsJHbZAZv4htcrZmQDGwX/wjl+Yv1d2COKilHC2MGkPmygFq5zb6Kz root@ubuntu-xenial
+ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGsHFzFvw/8X4/hE5vEkhvcrnggSWs22mCQ7H9e+srZUkuliJgzgN9mNlgHIvzYd91NUwt5oY7UAHLcHtmuIE1I= root@ubuntu-xenial
+ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIA+EnC3+7yWFVzntwRFn27WMpFRDDA7pQfA7Nr9cbOv7 root@ubuntu-xenial
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCcFX+xZ6aYvmYDV4RJN46CcOOYHxp0GCgrpdrvEPAXFolK9jj2nCmvMYTAM1UgR549wu10wgva6vdghCbBXUeykVjN4FCp3LtX63/kMZ3W7Iw+cYvPl8AoGlMT1qtSVFdY6Fvfhyns79b9doQd/Z+rh5lkEbwu1OO+h5IzQMTcK4Xd8rkDnyoXCd7FhPaP//uToVS0veeO9l7Nnnb+7wZfTaEJg57X7TppkNd5PWef7ChfD3KHLSaRv+c4ut1Nt5iczczDztzbeb2aH/niU6xhYb9JpXtu7TlOhBKFzXvc792AdJgyo9fxF9sLDXWpUQl5CFHjNdmQ2bPRYQjn4o8z root@ubuntu-xenial
 -----END SSH HOST KEY KEYS-----
-[   41.478741] cloud-init[1346]: Cloud-init v. 0.7.9 running 'modules:final' at Thu, 11 Jan 2018 12:31:43 +0000. Up 40.46 seconds.
-[   41.479193] cloud-init[1346]: ci-info: no authorized ssh keys fingerprints found for user ubuntu.
-[   41.479420] cloud-init[1346]: Cloud-init v. 0.7.9 finished at Thu, 11 Jan 2018 12:31:44 +0000. Datasource DataSourceNoCloud [seed=/dev/sdb][dsmode=net].  Up 41.46 seconds
+[   37.884730] cloud-init[1349]: Cloud-init v. 0.7.9 running 'modules:final' at Fri, 12 Jan 2018 16:25:43 +0000. Up 37.65 seconds.
+[   37.884874] cloud-init[1349]: ci-info: no authorized ssh keys fingerprints found for user ubuntu.
+[   37.884951] cloud-init[1349]: Cloud-init v. 0.7.9 finished at Fri, 12 Jan 2018 16:25:43 +0000. Datasource DataSourceNoCloud [seed=/dev/sdb][dsmode=net].  Up 37.87 seconds