Vagrant-libvirt: Trying to replicate network config of Virtualbox

Created on 5 Apr 2017  路  5Comments  路  Source: vagrant-libvirt/vagrant-libvirt

We have a solution which most people use with Virtualbox, so the expected IP address on eth0 is 10.0.2.15 for various components.

I am trying to replicate this with Libvirt plugin but seem to fail at it. It actually worked for some time but broke after Fedora update.

I used this config in Vagrantfile:
config.vm.network :private_network, ip: "10.0.2.15"

For some time it was all fine but now what happens is that at the set Configuring and enabling network interfaces...

I get following error:
ERROR : [/etc/sysconfig/network-scripts/ifup-eth] Device eth2 has different MAC address than expected, ignoring.

Inside of the VM with ifconfig I see this:

docker0: flags=4099<UP,BROADCAST,MULTICAST>  mtu 1500
        inet 172.17.0.1  netmask 255.255.0.0  broadcast 0.0.0.0
        ether 02:42:52:0a:ae:d5  txqueuelen 0  (Ethernet)
        RX packets 0  bytes 0 (0.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 0  bytes 0 (0.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.121.49  netmask 255.255.255.0  broadcast 192.168.121.255
        inet6 fe80::a3b9:3a0c:1bfb:a7bd  prefixlen 64  scopeid 0x20<link>
        ether 52:54:00:09:a1:d4  txqueuelen 1000  (Ethernet)
        RX packets 2892  bytes 318216 (310.7 KiB)
        RX errors 0  dropped 4  overruns 0  frame 0
        TX packets 2869  bytes 283704 (277.0 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

eth1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 10.0.2.15  netmask 255.255.255.0  broadcast 10.0.2.255
        inet6 fe80::5054:ff:fe2c:e7f5  prefixlen 64  scopeid 0x20<link>
        ether 52:54:00:2c:e7:f5  txqueuelen 1000  (Ethernet)
        RX packets 843  bytes 58449 (57.0 KiB)
        RX errors 0  dropped 4  overruns 0  frame 0
        TX packets 811  bytes 54982 (53.6 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

eth2: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 10.0.2.205  netmask 255.255.255.0  broadcast 10.0.2.255
        inet6 fe80::8e6d:5015:27b3:427c  prefixlen 64  scopeid 0x20<link>
        ether 52:54:00:70:71:41  txqueuelen 1000  (Ethernet)
        RX packets 58  bytes 6259 (6.1 KiB)
        RX errors 0  dropped 4  overruns 0  frame 0
        TX packets 11  bytes 1650 (1.6 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 1  (Local Loopback)
        RX packets 149  bytes 16771 (16.3 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 149  bytes 16771 (16.3 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

It seems that there are a bit too many interfaces created? Would it be possible for me to just change the default IP that this plugin uses? It creates eth0 always and in my host it makes a virtbr1 for it. How could I change it to use the IP range I want?

EDIT:

Info:

vagrant version; vagrant plugin list
Installed Version: 1.8.5
Latest Version: 1.9.3

To upgrade to the latest version, visit the downloads page and
download and install the latest version of Vagrant from the URL
below:

  https://www.vagrantup.com/downloads.html

If you're curious what changed in the latest release, view the
CHANGELOG below:

  https://github.com/mitchellh/vagrant/blob/v1.9.3/CHANGELOG.md
vagrant-env (0.0.3)
vagrant-libvirt (0.0.37, system)
vagrant-mutate (1.2.0)
vagrant-sshfs (1.3.0)

Debug log:

 INFO global: Vagrant version: 1.8.5
 INFO global: Ruby version: 2.3.3
 INFO global: RubyGems version: 2.5.2
 INFO global: VAGRANT_DEFAULT_PROVIDER="libvirt"
 INFO global: VAGRANT_EXECUTABLE="/usr/share/vagrant/bin/vagrant"
 INFO global: VAGRANT_LOG="debug"
 INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="/var/lib/vagrant"
 INFO global: VAGRANT_INSTALLER_VERSION="2"
 INFO global: VAGRANT_INTERNAL_BUNDLERIZED="1"
 INFO global: VAGRANT_DETECTED_OS="Linux"
 INFO global: VAGRANT_INSTALLER_ENV="1"
 INFO global: Plugins:
 INFO global:   - builder = 3.2.3
 INFO global:   - bundler = 1.12.5
 INFO global:   - dotenv-deployment = 0.0.2
 INFO global:   - dotenv = 0.11.1
 INFO global:   - excon = 0.55.0
 INFO global:   - ffi = 1.9.18
 INFO global:   - formatador = 0.2.5
 INFO global:   - fog-core = 1.43.0
 INFO global:   - multi_json = 1.12.1
 INFO global:   - fog-json = 1.0.2
 INFO global:   - mini_portile2 = 2.1.0
 INFO global:   - nokogiri = 1.6.8.1
 INFO global:   - fog-xml = 0.1.2
 INFO global:   - json = 2.0.3
 INFO global:   - ruby-libvirt = 0.7.0
 INFO global:   - fog-libvirt = 0.3.0
 INFO global:   - vagrant-env = 0.0.3
 INFO global:   - vagrant-libvirt = 0.0.37
 INFO global:   - vagrant-mutate = 1.2.0
 INFO global:   - win32-process = 0.8.3
 INFO global:   - vagrant-sshfs = 1.3.0
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/synced_folders/smb/plugin.rb
 INFO manager: Registered plugin: SMB synced folders
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/synced_folders/nfs/plugin.rb
 INFO manager: Registered plugin: NFS synced folders
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/synced_folders/rsync/plugin.rb
 INFO manager: Registered plugin: RSync synced folders
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/kernel_v1/plugin.rb
 INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/shell/plugin.rb
 INFO manager: Registered plugin: shell
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/file/plugin.rb
 INFO manager: Registered plugin: file
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/docker/plugin.rb
 INFO manager: Registered plugin: docker
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/ansible/plugin.rb
 INFO manager: Registered plugin: ansible
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/puppet/plugin.rb
 INFO manager: Registered plugin: puppet
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/cfengine/plugin.rb
 INFO manager: Registered plugin: CFEngine Provisioner
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/chef/plugin.rb
 INFO manager: Registered plugin: chef
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/salt/plugin.rb
 INFO manager: Registered plugin: salt
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/mint/plugin.rb
 INFO manager: Registered plugin: Mint guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/fedora/plugin.rb
 INFO manager: Registered plugin: Fedora guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/atomic/plugin.rb
 INFO manager: Registered plugin: Atomic Host guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/redhat/plugin.rb
 INFO manager: Registered plugin: Red Hat Enterprise Linux guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/trisquel/plugin.rb
 INFO manager: Registered plugin: Trisquel guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/bsd/plugin.rb
 INFO manager: Registered plugin: BSD-based guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/suse/plugin.rb
 INFO manager: Registered plugin: SUSE guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/gentoo/plugin.rb
 INFO manager: Registered plugin: Gentoo guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/solaris11/plugin.rb
 INFO manager: Registered plugin: Solaris 11 guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/slackware/plugin.rb
 INFO manager: Registered plugin: Slackware guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/nixos/plugin.rb
 INFO manager: Registered plugin: NixOS guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/smartos/plugin.rb
 INFO manager: Registered plugin: SmartOS guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/solaris/plugin.rb
 INFO manager: Registered plugin: Solaris guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/linux/plugin.rb
 INFO manager: Registered plugin: Linux guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/photon/plugin.rb
 INFO manager: Registered plugin: VMware Photon guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/tinycore/plugin.rb
 INFO manager: Registered plugin: TinyCore Linux guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/pld/plugin.rb
 INFO manager: Registered plugin: PLD Linux guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/freebsd/plugin.rb
 INFO manager: Registered plugin: FreeBSD guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/omnios/plugin.rb
 INFO manager: Registered plugin: OmniOS guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/amazon/plugin.rb
 INFO manager: Registered plugin: Amazon Linux guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/coreos/plugin.rb
 INFO manager: Registered plugin: CoreOS guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/netbsd/plugin.rb
 INFO manager: Registered plugin: NetBSD guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/openbsd/plugin.rb
 INFO manager: Registered plugin: OpenBSD guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/darwin/plugin.rb
 INFO manager: Registered plugin: Darwin guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/debian/plugin.rb
 INFO manager: Registered plugin: Debian guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/funtoo/plugin.rb
 INFO manager: Registered plugin: Funtoo guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/esxi/plugin.rb
 INFO manager: Registered plugin: ESXi guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/ubuntu/plugin.rb
 INFO manager: Registered plugin: Ubuntu guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/windows/plugin.rb
 INFO manager: Registered plugin: Windows guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/arch/plugin.rb
 INFO manager: Registered plugin: Arch guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/rdp/plugin.rb
 INFO manager: Registered plugin: rdp command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/login/plugin.rb
 INFO manager: Registered plugin: vagrant-login
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/resume/plugin.rb
 INFO manager: Registered plugin: resume command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/reload/plugin.rb
 INFO manager: Registered plugin: reload command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/plugin/plugin.rb
 INFO manager: Registered plugin: plugin command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/push/plugin.rb
 INFO manager: Registered plugin: push command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/halt/plugin.rb
 INFO manager: Registered plugin: halt command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/ssh/plugin.rb
 INFO manager: Registered plugin: ssh command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/destroy/plugin.rb
 INFO manager: Registered plugin: destroy command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/version/plugin.rb
 INFO manager: Registered plugin: version command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/box/plugin.rb
 INFO manager: Registered plugin: box command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/global-status/plugin.rb
 INFO manager: Registered plugin: global-status command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/cap/plugin.rb
 INFO manager: Registered plugin: cap command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/package/plugin.rb
 INFO manager: Registered plugin: package command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/up/plugin.rb
 INFO manager: Registered plugin: up command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/powershell/plugin.rb
 INFO manager: Registered plugin: powershell command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/suspend/plugin.rb
 INFO manager: Registered plugin: suspend command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/port/plugin.rb
 INFO manager: Registered plugin: port command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/list-commands/plugin.rb
 INFO manager: Registered plugin: list-commands command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/ssh_config/plugin.rb
 INFO manager: Registered plugin: ssh-config command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/provider/plugin.rb
 INFO manager: Registered plugin: provider command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/provision/plugin.rb
 INFO manager: Registered plugin: provision command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/snapshot/plugin.rb
 INFO manager: Registered plugin: snapshot command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/status/plugin.rb
 INFO manager: Registered plugin: status command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/help/plugin.rb
 INFO manager: Registered plugin: help command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/init/plugin.rb
 INFO manager: Registered plugin: init command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/pushes/atlas/plugin.rb
 INFO manager: Registered plugin: atlas
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/pushes/local-exec/plugin.rb
 INFO manager: Registered plugin: local-exec
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/pushes/noop/plugin.rb
 INFO manager: Registered plugin: noop
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/pushes/heroku/plugin.rb
 INFO manager: Registered plugin: heroku
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/pushes/ftp/plugin.rb
 INFO manager: Registered plugin: ftp
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/kernel_v2/plugin.rb
 INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/communicators/ssh/plugin.rb
 INFO manager: Registered plugin: ssh communicator
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/communicators/winrm/plugin.rb
 INFO manager: Registered plugin: winrm communicator
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/redhat/plugin.rb
 INFO manager: Registered plugin: Red Hat Enterprise Linux host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/bsd/plugin.rb
 INFO manager: Registered plugin: BSD host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/suse/plugin.rb
 INFO manager: Registered plugin: SUSE host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/gentoo/plugin.rb
 INFO manager: Registered plugin: Gentoo host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/slackware/plugin.rb
 INFO manager: Registered plugin: Slackware host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/linux/plugin.rb
 INFO manager: Registered plugin: Linux host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/freebsd/plugin.rb
 INFO manager: Registered plugin: FreeBSD host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/darwin/plugin.rb
 INFO manager: Registered plugin: Mac OS X host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/null/plugin.rb
 INFO manager: Registered plugin: null host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/windows/plugin.rb
 INFO manager: Registered plugin: Windows host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/arch/plugin.rb
 INFO manager: Registered plugin: Arch host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/providers/docker/plugin.rb
 INFO manager: Registered plugin: docker-provider
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/providers/hyperv/plugin.rb
 INFO manager: Registered plugin: Hyper-V provider
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/providers/virtualbox/plugin.rb
 INFO manager: Registered plugin: VirtualBox provider
 INFO global: Loading plugins!
 INFO manager: Registered plugin: libvirt
 INFO manager: Registered plugin: ENV
 INFO manager: Registered plugin: vagrant-mutate
 INFO manager: Registered plugin: SSHFS synced folders
 INFO vagrant: `vagrant` invoked: ["up", "--provider=libvirt"]
DEBUG vagrant: Creating Vagrant environment
 INFO environment: Environment initialized (#<Vagrant::Environment:0x0055cfb6e6d030>)
 INFO environment:   - cwd: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker
 INFO environment: Home path: /home/kaspar/.vagrant.d
 INFO environment: Local data path: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant
DEBUG environment: Creating: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant
 INFO environment: Running hook: environment_plugins_loaded
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: environment_plugins_loaded #<Vagrant::Action::Builder:0x0055cfb6968738>
 INFO environment: Running hook: environment_load
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: environment_load #<Vagrant::Action::Builder:0x0055cfb6fb4060>
 INFO cli: CLI: [] "up" ["--provider=libvirt"]
DEBUG cli: Invoking command class: VagrantPlugins::CommandUp::Command ["--provider=libvirt"]
DEBUG command: 'Up' each target VM...
 INFO loader: Set :root = ["#<Pathname:/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/Vagrantfile>"]
DEBUG loader: Populating proc cache for #<Pathname:/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/Vagrantfile>
DEBUG loader: Load procs for pathname: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/Vagrantfile
 INFO loader: Loading configuration in order: [:home, :root]
DEBUG loader: Loading from: root (evaluating)
DEBUG provisioner: Provisioner defined: 
DEBUG provisioner: Provisioner defined: 
DEBUG provisioner: Provisioner defined: 
DEBUG provisioner: Provisioner defined: 
DEBUG provisioner: Provisioner defined: 
DEBUG provisioner: Provisioner defined: 
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
DEBUG command: Getting target VMs for command. Arguments:
DEBUG command:  -- names: ["default"]
DEBUG command:  -- options: nil
DEBUG command: Finding machine that match name: default
 INFO environment: Getting machine: default (libvirt)
 INFO environment: Uncached load of machine.
 INFO loader: Set "47175304619180_machine_default" = []
 INFO loader: Loading configuration in order: [:home, :root, "47175304619180_machine_default"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO box_collection: Box found: live2-personal (libvirt)
 INFO environment: Running hook: authenticate_box_url
 INFO host: Autodetecting host type for [#<Vagrant::Environment: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker>]
DEBUG host: Trying: redhat
 INFO host: Detected: redhat!
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 3 hooks defined.
 INFO runner: Running action: authenticate_box_url #<Vagrant::Action::Builder:0x0055cfb7cb7528>
 INFO warden: Calling IN action: #<VagrantPlugins::LoginCommand::AddAuthentication:0x0055cfb7a73668>
DEBUG client: No authentication token in environment or /home/kaspar/.vagrant.d/data/vagrant_login_token
 INFO warden: Calling OUT action: #<VagrantPlugins::LoginCommand::AddAuthentication:0x0055cfb7a73668>
 INFO loader: Set :"47175307150060_live2-personal_libvirt" = ["#<Pathname:/home/kaspar/.vagrant.d/boxes/live2-personal/0.57/libvirt/Vagrantfile>"]
DEBUG loader: Populating proc cache for #<Pathname:/home/kaspar/.vagrant.d/boxes/live2-personal/0.57/libvirt/Vagrantfile>
DEBUG loader: Load procs for pathname: /home/kaspar/.vagrant.d/boxes/live2-personal/0.57/libvirt/Vagrantfile
 INFO loader: Loading configuration in order: [:"47175307150060_live2-personal_libvirt", :home, :root, "47175304619180_machine_default"]
DEBUG loader: Loading from: 47175307150060_live2-personal_libvirt (evaluating)
DEBUG loader: Loading from: root (cache)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO machine: Initializing machine: default
 INFO machine:   - Provider: VagrantPlugins::ProviderLibvirt::Provider
 INFO machine:   - Box: #<Vagrant::Box:0x0055cfb7cd1e00>
 INFO machine:   - Data dir: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt
 INFO machine: New machine ID: nil
 INFO interface: Machine: metadata ["provider", :libvirt, {:target=>:default}]
 INFO command: With machine: default (#<VagrantPlugins::ProviderLibvirt::Provider:0x0055cfb82c6928 @machine=#<Vagrant::Machine: default (VagrantPlugins::ProviderLibvirt::Provider)>, @cap_logger=#<Log4r::Logger:0x0055cfb82c6400 @fullname="vagrant::capability_host::vagrantplugins::providerlibvirt::provider", @outputters=[], @additive=true, @name="provider", @path="vagrant::capability_host::vagrantplugins::providerlibvirt", @parent=#<Log4r::Logger:0x0055cfb7133fa8 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0055cfb70fd688 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x0055cfb70fd5e8>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0055cfb70f9ad8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0055cfb7133e90 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @cap_host_chain=[[:libvirt, #<#<Class:0x0055cfb82c68d8>:0x0055cfb82fefd0>]], @cap_args=[#<Vagrant::Machine: default (VagrantPlugins::ProviderLibvirt::Provider)>], @cap_caps={:docker=>#<Vagrant::Registry:0x0055cfb82c6798 @items={:public_address=>#<Proc:0x0055cfb713d968@/usr/share/vagrant/plugins/providers/docker/plugin.rb:60>, :proxy_machine=>#<Proc:0x0055cfb713d788@/usr/share/vagrant/plugins/providers/docker/plugin.rb:65>}, @results_cache={}>, :hyperv=>#<Vagrant::Registry:0x0055cfb82c66f8 @items={:public_address=>#<Proc:0x0055cfb7126b00@/usr/share/vagrant/plugins/providers/hyperv/plugin.rb:25>, :snapshot_list=>#<Proc:0x0055cfb7126a10@/usr/share/vagrant/plugins/providers/hyperv/plugin.rb:30>}, @results_cache={}>, :virtualbox=>#<Vagrant::Registry:0x0055cfb82c6658 @items={:forwarded_ports=>#<Proc:0x0055cfb70e56f0@/usr/share/vagrant/plugins/providers/virtualbox/plugin.rb:27>, :nic_mac_addresses=>#<Proc:0x0055cfb70e55b0@/usr/share/vagrant/plugins/providers/virtualbox/plugin.rb:32>, :public_address=>#<Proc:0x0055cfb70e5588@/usr/share/vagrant/plugins/providers/virtualbox/plugin.rb:37>, :snapshot_list=>#<Proc:0x0055cfb70e5510@/usr/share/vagrant/plugins/providers/virtualbox/plugin.rb:42>}, @results_cache={}>, :libvirt=>#<Vagrant::Registry:0x0055cfb82c65b8 @items={:nic_mac_addresses=>#<Proc:0x0055cfb7026020@/home/kaspar/.vagrant.d/gems/gems/vagrant-libvirt-0.0.37/lib/vagrant-libvirt/plugin.rb:37>}, @results_cache={}>}>)
DEBUG host: Searching for cap: provider_install_libvirt
DEBUG host: Checking in: redhat
DEBUG host: Checking in: linux
DEBUG command: Getting target VMs for command. Arguments:
DEBUG command:  -- names: ["default"]
DEBUG command:  -- options: {:provider=>"libvirt"}
DEBUG command: Finding machine that match name: default
 INFO environment: Getting machine: default (libvirt)
 INFO environment: Returning cached machine: default (libvirt)
 INFO command: With machine: default (#<VagrantPlugins::ProviderLibvirt::Provider:0x0055cfb82c6928 @machine=#<Vagrant::Machine: default (VagrantPlugins::ProviderLibvirt::Provider)>, @cap_logger=#<Log4r::Logger:0x0055cfb82c6400 @fullname="vagrant::capability_host::vagrantplugins::providerlibvirt::provider", @outputters=[], @additive=true, @name="provider", @path="vagrant::capability_host::vagrantplugins::providerlibvirt", @parent=#<Log4r::Logger:0x0055cfb7133fa8 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0055cfb70fd688 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x0055cfb70fd5e8>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0055cfb70f9ad8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0055cfb7133e90 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @cap_host_chain=[[:libvirt, #<#<Class:0x0055cfb82c68d8>:0x0055cfb82fefd0>]], @cap_args=[#<Vagrant::Machine: default (VagrantPlugins::ProviderLibvirt::Provider)>], @cap_caps={:docker=>#<Vagrant::Registry:0x0055cfb82c6798 @items={:public_address=>#<Proc:0x0055cfb713d968@/usr/share/vagrant/plugins/providers/docker/plugin.rb:60>, :proxy_machine=>#<Proc:0x0055cfb713d788@/usr/share/vagrant/plugins/providers/docker/plugin.rb:65>}, @results_cache={}>, :hyperv=>#<Vagrant::Registry:0x0055cfb82c66f8 @items={:public_address=>#<Proc:0x0055cfb7126b00@/usr/share/vagrant/plugins/providers/hyperv/plugin.rb:25>, :snapshot_list=>#<Proc:0x0055cfb7126a10@/usr/share/vagrant/plugins/providers/hyperv/plugin.rb:30>}, @results_cache={}>, :virtualbox=>#<Vagrant::Registry:0x0055cfb82c6658 @items={:forwarded_ports=>#<Proc:0x0055cfb70e56f0@/usr/share/vagrant/plugins/providers/virtualbox/plugin.rb:27>, :nic_mac_addresses=>#<Proc:0x0055cfb70e55b0@/usr/share/vagrant/plugins/providers/virtualbox/plugin.rb:32>, :public_address=>#<Proc:0x0055cfb70e5588@/usr/share/vagrant/plugins/providers/virtualbox/plugin.rb:37>, :snapshot_list=>#<Proc:0x0055cfb70e5510@/usr/share/vagrant/plugins/providers/virtualbox/plugin.rb:42>}, @results_cache={}>, :libvirt=>#<Vagrant::Registry:0x0055cfb82c65b8 @items={:nic_mac_addresses=>#<Proc:0x0055cfb7026020@/home/kaspar/.vagrant.d/gems/gems/vagrant-libvirt-0.0.37/lib/vagrant-libvirt/plugin.rb:37>}, @results_cache={}>}>)
 INFO interface: info: Bringing machine 'default' up with 'libvirt' provider...
Bringing machine 'default' up with 'libvirt' provider...
 INFO batch_action: Enabling parallelization by default.
 INFO batch_action: Disabling parallelization because only executing one action
 INFO batch_action: Batch action will parallelize: false
 INFO batch_action: Starting action: #<Vagrant::Machine:0x0055cfb8248ac8> up {:destroy_on_error=>true, :install_provider=>true, :parallel=>true, :provision_ignore_sentinel=>false, :provision_types=>nil, :provider=>"libvirt"}
 INFO machine: Calling action: up on provider Libvirt (new)
DEBUG environment: Attempting to acquire process-lock: machine-action-b3d14dda65354098022d4a15f7908700
DEBUG environment: Attempting to acquire process-lock: dotlock
 INFO environment: Acquired process lock: dotlock
 INFO environment: Released process lock: dotlock
 INFO environment: Acquired process lock: machine-action-b3d14dda65354098022d4a15f7908700
 INFO interface: Machine: action ["up", "start", {:target=>:default}]
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x0055cfb8490c68>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::ConfigValidate:0x007fd3d401f450>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x007fd3d401f428>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x007fd3d40929f0>
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::IsCreated:0x0055cfb7be3570>
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderLibvirt::Action::IsCreated:0x0055cfb7be3570>
 INFO driver: Connecting to Libvirt (qemu:///system?no_verify=1&keyfile=/home/kaspar/.ssh/id_rsa) ...
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x007fd3d47d97b8>
 INFO warden: Calling IN action: #<Proc:0x0055cfb7868008@/usr/share/vagrant/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::SetNameOfDomain:0x007fd3d47dacd0>
 INFO set_name_of_domain: Looking for domain docker_default through list []
 INFO set_name_of_domain: Looking for domain docker_default
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::HandleStoragePool:0x007fd3d47930d8>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::HandleBox:0x007fd3d475f5f8>
 INFO handle_box: Machine already has box. HandleBox will not run.
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::HandleBoxImage:0x007fd3d4726398>
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::CreateDomainVolume:0x007fd3d46ee060>
 INFO interface: info: Creating image (snapshot of base box volume).
 INFO interface: info: ==> default: Creating image (snapshot of base box volume).
==> default: Creating image (snapshot of base box volume).
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::CreateDomain:0x007fd3d46a41e0>
 INFO interface: info: Creating domain with the following settings...
 INFO interface: info: ==> default: Creating domain with the following settings...
==> default: Creating domain with the following settings...
 INFO interface: info:  -- Name:              docker_default
 INFO interface: info: ==> default:  -- Name:              docker_default
==> default:  -- Name:              docker_default
 INFO interface: info:  -- Domain type:       kvm
 INFO interface: info: ==> default:  -- Domain type:       kvm
==> default:  -- Domain type:       kvm
 INFO interface: info:  -- Cpus:              2
 INFO interface: info: ==> default:  -- Cpus:              2
==> default:  -- Cpus:              2
 INFO interface: info:  -- Memory:            14336M
 INFO interface: info: ==> default:  -- Memory:            14336M
==> default:  -- Memory:            14336M
 INFO interface: info:  -- Management MAC:    
 INFO interface: info: ==> default:  -- Management MAC:    
==> default:  -- Management MAC:    
 INFO interface: info:  -- Loader:            
 INFO interface: info: ==> default:  -- Loader:            
==> default:  -- Loader:            
 INFO interface: info:  -- Base box:          live2-personal
 INFO interface: info: ==> default:  -- Base box:          live2-personal
==> default:  -- Base box:          live2-personal
 INFO interface: info:  -- Storage pool:      default
 INFO interface: info: ==> default:  -- Storage pool:      default
==> default:  -- Storage pool:      default
 INFO interface: info:  -- Image:             /var/lib/libvirt/images/docker_default.img (40G)
 INFO interface: info: ==> default:  -- Image:             /var/lib/libvirt/images/docker_default.img (40G)
==> default:  -- Image:             /var/lib/libvirt/images/docker_default.img (40G)
 INFO interface: info:  -- Volume Cache:      default
 INFO interface: info: ==> default:  -- Volume Cache:      default
==> default:  -- Volume Cache:      default
 INFO interface: info:  -- Kernel:            
 INFO interface: info: ==> default:  -- Kernel:            
==> default:  -- Kernel:            
 INFO interface: info:  -- Initrd:            
 INFO interface: info: ==> default:  -- Initrd:            
==> default:  -- Initrd:            
 INFO interface: info:  -- Graphics Type:     vnc
 INFO interface: info: ==> default:  -- Graphics Type:     vnc
==> default:  -- Graphics Type:     vnc
 INFO interface: info:  -- Graphics Port:     5900
 INFO interface: info: ==> default:  -- Graphics Port:     5900
==> default:  -- Graphics Port:     5900
 INFO interface: info:  -- Graphics IP:       127.0.0.1
 INFO interface: info: ==> default:  -- Graphics IP:       127.0.0.1
==> default:  -- Graphics IP:       127.0.0.1
 INFO interface: info:  -- Graphics Password: Not defined
 INFO interface: info: ==> default:  -- Graphics Password: Not defined
==> default:  -- Graphics Password: Not defined
 INFO interface: info:  -- Video Type:        cirrus
 INFO interface: info: ==> default:  -- Video Type:        cirrus
==> default:  -- Video Type:        cirrus
 INFO interface: info:  -- Video VRAM:        9216
 INFO interface: info: ==> default:  -- Video VRAM:        9216
==> default:  -- Video VRAM:        9216
 INFO interface: info:  -- Keymap:            en-us
 INFO interface: info: ==> default:  -- Keymap:            en-us
==> default:  -- Keymap:            en-us
 INFO interface: info:  -- TPM Path:          
 INFO interface: info: ==> default:  -- TPM Path:          
==> default:  -- TPM Path:          
 INFO interface: info:  -- INPUT:             type=mouse, bus=ps2
 INFO interface: info: ==> default:  -- INPUT:             type=mouse, bus=ps2
==> default:  -- INPUT:             type=mouse, bus=ps2
 INFO interface: info:  -- Command line : 
 INFO interface: info: ==> default:  -- Command line : 
==> default:  -- Command line : 
 INFO machine: New machine ID: "856d2cf5-2436-4644-8524-72dcae2b1bc1"
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Provision:0x007fd3d4688e40>
 INFO provision: Checking provisioner sentinel file...
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::PrepareNFSValidIds:0x007fd3d4617a38>
 INFO warden: Calling IN action: #<VagrantPlugins::SyncedFolderNFS::ActionCleanup:0x007fd3d45dad18>
DEBUG host: Searching for cap: nfs_prune
DEBUG host: Checking in: redhat
DEBUG host: Checking in: linux
DEBUG host: Found cap: nfs_prune in linux
 INFO nfs: NFS pruning. Valid IDs: ["856d2cf5-2436-4644-8524-72dcae2b1bc1"]
DEBUG host: Searching for cap: nfs_prune
DEBUG host: Checking in: redhat
DEBUG host: Checking in: linux
DEBUG host: Found cap: nfs_prune in linux
 INFO host: Execute capability: nfs_prune [#<Vagrant::Environment: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker>, #<Vagrant::UI::Prefixed:0x0055cfb828e820 @logger=#<Log4r::Logger:0x0055cfb828e7d0 @fullname="vagrant::ui::interface", @outputters=[], @additive=true, @name="interface", @path="vagrant::ui", @parent=#<Log4r::Logger:0x0055cfb7133fa8 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0055cfb70fd688 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x0055cfb70fd5e8>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0055cfb70f9ad8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0055cfb7133e90 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @opts={}, @stdin=#<IO:<STDIN>>, @stdout=#<IO:<STDOUT>>, @stderr=#<IO:<STDERR>>, @prefix=:default, @ui=#<Vagrant::UI::Colored:0x0055cfb6e6cd60 @logger=#<Log4r::Logger:0x0055cfb6e6cce8 @fullname="vagrant::ui::interface", @outputters=[], @additive=true, @name="interface", @path="vagrant::ui", @parent=#<Log4r::Logger:0x0055cfb7133fa8 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0055cfb70fd688 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x0055cfb70fd5e8>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0055cfb70f9ad8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0055cfb7133e90 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @opts={:color=>:default}, @stdin=#<IO:<STDIN>>, @stdout=#<IO:<STDOUT>>, @stderr=#<IO:<STDERR>>, @lock=#<Thread::Mutex:0x0055cfb6e0f548>>>, ["856d2cf5-2436-4644-8524-72dcae2b1bc1"]] (redhat)
 INFO linux: Pruning invalid NFS entries...
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::SyncedFolderCleanup:0x007fd3d45995c0>
 INFO synced_folder_cleanup: Invoking synced folder cleanup for: sshfs
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::SyncedFolders:0x007fd3d4555398>
 INFO synced_folders: SyncedFolders loading from cache: false
 INFO synced_folders: Synced Folder Implementation: sshfs
 INFO synced_folders:   - /vagrant: . => /vagrant
 INFO synced_folders: Invoking synced folder prepare for: sshfs
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::PrepareNFSSettings:0x007fd3d450fdc0>
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::ShareFolders:0x007fd3d44eb498>
 INFO interface: info: Creating shared folders metadata...
 INFO interface: info: ==> default: Creating shared folders metadata...
==> default: Creating shared folders metadata...
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::CreateNetworks:0x007fd3d44ba168>
 INFO create_networks: Using vagrant-libvirt at 192.168.121.0/24 as the management network nat is the mode
DEBUG create_networks: In config found network type forwarded_port options {:guest=>8080, :host=>8080, :host_ip=>"0.0.0.0", :id=>"tomcat", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>10500, :host=>10500, :host_ip=>"0.0.0.0", :id=>"cadvisor", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>8500, :host=>8500, :host_ip=>"0.0.0.0", :id=>"consul", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>5800, :host=>5800, :host_ip=>"0.0.0.0", :id=>"frontend-int-json", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>5810, :host=>5810, :host_ip=>"0.0.0.0", :id=>"frontend-int-socketio", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>5850, :host=>5850, :host_ip=>"0.0.0.0", :id=>"frontend-int", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>4800, :host=>4800, :host_ip=>"0.0.0.0", :id=>"frontend-ext-json", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>4810, :host=>4810, :host_ip=>"0.0.0.0", :id=>"frontend-ext-socketio", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>4850, :host=>4850, :host_ip=>"0.0.0.0", :id=>"frontend-ext", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>6969, :host=>6969, :host_ip=>"0.0.0.0", :id=>"JMX1debug", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>6970, :host=>6970, :host_ip=>"0.0.0.0", :id=>"JMX2debug", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>8079, :host=>8079, :host_ip=>"0.0.0.0", :id=>"apex", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>22, :host=>2232, :host_ip=>"0.0.0.0", :id=>"ssh", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>1521, :host=>1521, :host_ip=>"0.0.0.0", :id=>"oracle", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>8765, :host=>8765, :host_ip=>"0.0.0.0", :id=>"game1debug", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>8766, :host=>8766, :host_ip=>"0.0.0.0", :id=>"game2debug", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>8767, :host=>8767, :host_ip=>"0.0.0.0", :id=>"tabledebug", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>8768, :host=>8768, :host_ip=>"0.0.0.0", :id=>"nsdebug", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>5671, :host=>5671, :host_ip=>"0.0.0.0", :id=>"amqp1", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>5672, :host=>5672, :host_ip=>"0.0.0.0", :id=>"amqp2", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>15672, :host=>15672, :host_ip=>"0.0.0.0", :id=>"rabbitmqmgmt", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>2375, :host=>2375, :host_ip=>"0.0.0.0", :id=>"dockerd", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>5601, :host=>5601, :host_ip=>"0.0.0.0", :id=>"kibana", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>9200, :host=>9200, :host_ip=>"0.0.0.0", :id=>"elastic", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>5044, :host=>5044, :host_ip=>"0.0.0.0", :id=>"logstash", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: In config found network type private_network options {:ip=>"10.0.2.15", :protocol=>"tcp", :id=>"cbdf23fc-c611-4feb-aadd-2e6fb9bc32c2"}
DEBUG create_networks: In config found network type private_network options {:ip=>"10.0.2.15", :protocol=>"tcp", :id=>"ef23fe8b-b3b1-47b7-9cd4-17936a782eb4"}
DEBUG create_networks: Searching for network with options {:iface_type=>:private_network, :network_name=>"vagrant-libvirt", :ip=>"192.168.121.0", :netmask=>"255.255.255.0", :dhcp_enabled=>true, :forward_mode=>"nat", :guest_ipv6=>"yes", :autostart=>false}
DEBUG create_networks: looking up network with ip == 192.168.121.0
DEBUG create_networks: Checking that network name does not clash with ip
DEBUG create_networks: looking up network named vagrant-libvirt
DEBUG create_networks: generating name for bridge
DEBUG create_networks: looking up bridge named virbr0
DEBUG create_networks: looking up bridge named virbr1
DEBUG create_networks: found available bridge name virbr1
DEBUG create_networks: created network
 INFO create_networks: Saving information about created network vagrant-libvirt, UUID=4c94a5be-bfb0-47a2-806b-dfc028532a24 to file /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/created_networks.
DEBUG create_networks: Searching for network with options {:iface_type=>:private_network, :netmask=>"255.255.255.0", :dhcp_enabled=>true, :forward_mode=>"nat", :ip=>"10.0.2.15", :protocol=>"tcp", :id=>"cbdf23fc-c611-4feb-aadd-2e6fb9bc32c2"}
DEBUG create_networks: looking up network with ip == 10.0.2.0
DEBUG create_networks: generating name for network
DEBUG create_networks: looking up network named docker0
DEBUG create_networks: generating name for bridge
DEBUG create_networks: looking up bridge named virbr0
DEBUG create_networks: looking up bridge named virbr1
DEBUG create_networks: looking up bridge named virbr2
DEBUG create_networks: found available bridge name virbr2
DEBUG create_networks: created network
 INFO create_networks: Saving information about created network docker0, UUID=cc604c8f-39d6-4b9d-9947-54dc1bf2350f to file /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/created_networks.
DEBUG create_networks: Searching for network with options {:iface_type=>:private_network, :netmask=>"255.255.255.0", :dhcp_enabled=>true, :forward_mode=>"nat", :ip=>"10.0.2.15", :protocol=>"tcp", :id=>"ef23fe8b-b3b1-47b7-9cd4-17936a782eb4"}
DEBUG create_networks: looking up network with ip == 10.0.2.0
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::CreateNetworkInterfaces:0x0055cfb7c6fdb8>
 INFO create_network_interfaces: Using vagrant-libvirt at 192.168.121.0/24 as the management network nat is the mode
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>8080, :host=>8080, :host_ip=>"0.0.0.0", :id=>"tomcat", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>10500, :host=>10500, :host_ip=>"0.0.0.0", :id=>"cadvisor", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>8500, :host=>8500, :host_ip=>"0.0.0.0", :id=>"consul", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>5800, :host=>5800, :host_ip=>"0.0.0.0", :id=>"frontend-int-json", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>5810, :host=>5810, :host_ip=>"0.0.0.0", :id=>"frontend-int-socketio", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>5850, :host=>5850, :host_ip=>"0.0.0.0", :id=>"frontend-int", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>4800, :host=>4800, :host_ip=>"0.0.0.0", :id=>"frontend-ext-json", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>4810, :host=>4810, :host_ip=>"0.0.0.0", :id=>"frontend-ext-socketio", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>4850, :host=>4850, :host_ip=>"0.0.0.0", :id=>"frontend-ext", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>6969, :host=>6969, :host_ip=>"0.0.0.0", :id=>"JMX1debug", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>6970, :host=>6970, :host_ip=>"0.0.0.0", :id=>"JMX2debug", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>8079, :host=>8079, :host_ip=>"0.0.0.0", :id=>"apex", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>22, :host=>2232, :host_ip=>"0.0.0.0", :id=>"ssh", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>1521, :host=>1521, :host_ip=>"0.0.0.0", :id=>"oracle", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>8765, :host=>8765, :host_ip=>"0.0.0.0", :id=>"game1debug", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>8766, :host=>8766, :host_ip=>"0.0.0.0", :id=>"game2debug", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>8767, :host=>8767, :host_ip=>"0.0.0.0", :id=>"tabledebug", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>8768, :host=>8768, :host_ip=>"0.0.0.0", :id=>"nsdebug", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>5671, :host=>5671, :host_ip=>"0.0.0.0", :id=>"amqp1", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>5672, :host=>5672, :host_ip=>"0.0.0.0", :id=>"amqp2", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>15672, :host=>15672, :host_ip=>"0.0.0.0", :id=>"rabbitmqmgmt", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>2375, :host=>2375, :host_ip=>"0.0.0.0", :id=>"dockerd", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>5601, :host=>5601, :host_ip=>"0.0.0.0", :id=>"kibana", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>9200, :host=>9200, :host_ip=>"0.0.0.0", :id=>"elastic", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>5044, :host=>5044, :host_ip=>"0.0.0.0", :id=>"logstash", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: In config found network type private_network options {:ip=>"10.0.2.15", :protocol=>"tcp", :id=>"cbdf23fc-c611-4feb-aadd-2e6fb9bc32c2"}
DEBUG create_network_interfaces: In config found network type private_network options {:ip=>"10.0.2.15", :protocol=>"tcp", :id=>"ef23fe8b-b3b1-47b7-9cd4-17936a782eb4"}
DEBUG create_network_interfaces: Adapter not specified so found slot 0
DEBUG create_network_interfaces: Found network by name
DEBUG create_network_interfaces: Adapter not specified so found slot 1
DEBUG create_network_interfaces: Found network by ip
DEBUG create_network_interfaces: Adapter not specified so found slot 2
DEBUG create_network_interfaces: Found network by ip
 INFO create_network_interfaces: Creating network interface eth0 connected to network vagrant-libvirt.
 INFO create_network_interfaces: Creating network interface eth1 connected to network docker0.
 INFO create_network_interfaces: Creating network interface eth2 connected to network docker0.
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::SetBootOrder:0x0055cfb7bb7100>
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::StartDomain:0x0055cfb7b483b8>
 INFO interface: info: Starting domain.
 INFO interface: info: ==> default: Starting domain.
==> default: Starting domain.
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::WaitTillUp:0x0055cfb7a87410>
DEBUG wait_till_up: Searching for IP for MAC address: 52:54:00:c7:eb:bb
 INFO interface: info: Waiting for domain to get an IP address...
 INFO interface: info: ==> default: Waiting for domain to get an IP address...
==> default: Waiting for domain to get an IP address...
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO wait_till_up: Got IP address 192.168.121.142
 INFO wait_till_up: Time for getting IP: 10.11495065689087
 INFO interface: info: Waiting for SSH to become available...
 INFO interface: info: ==> default: Waiting for SSH to become available...
==> default: Waiting for SSH to become available...
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Checking key permissions: /home/kaspar/.vagrant.d/insecure_private_key
 INFO ssh: Attempting SSH connection...
 INFO ssh: Attempting to connect to SSH...
 INFO ssh:   - Host: 192.168.121.142
 INFO ssh:   - Port: 22
 INFO ssh:   - Username: vagrant
 INFO ssh:   - Password? false
 INFO ssh:   - Key Path: ["/home/kaspar/.vagrant.d/insecure_private_key"]
DEBUG ssh: == Net-SSH connection debug-level log START ==
DEBUG ssh: D, [2017-04-05T17:19:06.334196 #29791] DEBUG -- net.ssh.transport.session[2ae7dbf847e0]: establishing connection to 192.168.121.142:22
D, [2017-04-05T17:19:06.335007 #29791] DEBUG -- net.ssh.transport.session[2ae7dbf847e0]: connection established
I, [2017-04-05T17:19:06.335092 #29791]  INFO -- net.ssh.transport.server_version[2ae7dbf839bc]: negotiating protocol version
D, [2017-04-05T17:19:06.335127 #29791] DEBUG -- net.ssh.transport.server_version[2ae7dbf839bc]: local is `SSH-2.0-Ruby/Net::SSH_3.2.0 x86_64-linux'
D, [2017-04-05T17:19:06.424918 #29791] DEBUG -- net.ssh.transport.server_version[2ae7dbf839bc]: remote is `SSH-2.0-OpenSSH_6.6.1'
I, [2017-04-05T17:19:06.425243 #29791]  INFO -- net.ssh.transport.algorithms[2ae7dbf6bca4]: sending KEXINIT
D, [2017-04-05T17:19:06.425493 #29791] DEBUG -- socket[2ae7dbf84010]: queueing packet nr 0 type 20 len 1684
D, [2017-04-05T17:19:06.425620 #29791] DEBUG -- socket[2ae7dbf84010]: sent 1688 bytes
D, [2017-04-05T17:19:06.435325 #29791] DEBUG -- socket[2ae7dbf84010]: read 1640 bytes
D, [2017-04-05T17:19:06.435456 #29791] DEBUG -- socket[2ae7dbf84010]: received packet nr 0 type 20 len 1636
I, [2017-04-05T17:19:06.435511 #29791]  INFO -- net.ssh.transport.algorithms[2ae7dbf6bca4]: got KEXINIT from server
I, [2017-04-05T17:19:06.435621 #29791]  INFO -- net.ssh.transport.algorithms[2ae7dbf6bca4]: negotiating algorithms
D, [2017-04-05T17:19:06.435735 #29791] DEBUG -- net.ssh.transport.algorithms[2ae7dbf6bca4]: negotiated:
* kex: diffie-hellman-group-exchange-sha1
* host_key: ssh-rsa
* encryption_server: aes128-cbc
* encryption_client: aes128-cbc
* hmac_client: hmac-sha1
* hmac_server: hmac-sha1
* compression_client: none
* compression_server: none
* language_client: 
* language_server: 
D, [2017-04-05T17:19:06.435761 #29791] DEBUG -- net.ssh.transport.algorithms[2ae7dbf6bca4]: exchanging keys
D, [2017-04-05T17:19:06.435931 #29791] DEBUG -- socket[2ae7dbf84010]: queueing packet nr 1 type 34 len 20
D, [2017-04-05T17:19:06.436077 #29791] DEBUG -- socket[2ae7dbf84010]: sent 24 bytes
D, [2017-04-05T17:19:06.442879 #29791] DEBUG -- socket[2ae7dbf84010]: read 152 bytes
D, [2017-04-05T17:19:06.443021 #29791] DEBUG -- socket[2ae7dbf84010]: received packet nr 1 type 31 len 148
D, [2017-04-05T17:19:06.444281 #29791] DEBUG -- socket[2ae7dbf84010]: queueing packet nr 2 type 32 len 140
D, [2017-04-05T17:19:06.444397 #29791] DEBUG -- socket[2ae7dbf84010]: sent 144 bytes
D, [2017-04-05T17:19:06.446367 #29791] DEBUG -- socket[2ae7dbf84010]: read 720 bytes
D, [2017-04-05T17:19:06.446530 #29791] DEBUG -- socket[2ae7dbf84010]: received packet nr 2 type 33 len 700
D, [2017-04-05T17:19:06.447255 #29791] DEBUG -- socket[2ae7dbf84010]: queueing packet nr 3 type 21 len 20
D, [2017-04-05T17:19:06.447356 #29791] DEBUG -- socket[2ae7dbf84010]: sent 24 bytes
D, [2017-04-05T17:19:06.447432 #29791] DEBUG -- socket[2ae7dbf84010]: received packet nr 3 type 21 len 12
D, [2017-04-05T17:19:06.447707 #29791] DEBUG -- net.ssh.authentication.session[2ae7dbd326b8]: beginning authentication of `vagrant'
D, [2017-04-05T17:19:06.447853 #29791] DEBUG -- socket[2ae7dbf84010]: queueing packet nr 4 type 5 len 28
D, [2017-04-05T17:19:06.447893 #29791] DEBUG -- socket[2ae7dbf84010]: sent 52 bytes
D, [2017-04-05T17:19:06.490224 #29791] DEBUG -- socket[2ae7dbf84010]: read 52 bytes
D, [2017-04-05T17:19:06.490434 #29791] DEBUG -- socket[2ae7dbf84010]: received packet nr 4 type 6 len 28
D, [2017-04-05T17:19:06.490565 #29791] DEBUG -- net.ssh.authentication.session[2ae7dbd326b8]: trying none
D, [2017-04-05T17:19:06.490745 #29791] DEBUG -- socket[2ae7dbf84010]: queueing packet nr 5 type 50 len 44
D, [2017-04-05T17:19:06.490816 #29791] DEBUG -- socket[2ae7dbf84010]: sent 68 bytes
D, [2017-04-05T17:19:06.498628 #29791] DEBUG -- socket[2ae7dbf84010]: read 84 bytes
D, [2017-04-05T17:19:06.498841 #29791] DEBUG -- socket[2ae7dbf84010]: received packet nr 5 type 51 len 60
D, [2017-04-05T17:19:06.498944 #29791] DEBUG -- net.ssh.authentication.session[2ae7dbd326b8]: allowed methods: publickey,gssapi-keyex,gssapi-with-mic,password
D, [2017-04-05T17:19:06.499007 #29791] DEBUG -- net.ssh.authentication.methods.none[2ae7dbd2c574]: none failed
D, [2017-04-05T17:19:06.499072 #29791] DEBUG -- net.ssh.authentication.session[2ae7dbd326b8]: trying publickey
D, [2017-04-05T17:19:06.499368 #29791] DEBUG -- net.ssh.authentication.agent[2ae7dbd281a4]: connecting to ssh-agent
D, [2017-04-05T17:19:06.499985 #29791] DEBUG -- net.ssh.authentication.agent[2ae7dbd281a4]: sending agent request 1 len 44
D, [2017-04-05T17:19:06.500703 #29791] DEBUG -- net.ssh.authentication.agent[2ae7dbd281a4]: received agent packet 2 len 5
D, [2017-04-05T17:19:06.500759 #29791] DEBUG -- net.ssh.authentication.agent[2ae7dbd281a4]: sending agent request 11 len 0
D, [2017-04-05T17:19:06.501946 #29791] DEBUG -- net.ssh.authentication.agent[2ae7dbd281a4]: received agent packet 12 len 1133
D, [2017-04-05T17:19:06.502256 #29791] DEBUG -- net.ssh.authentication.methods.publickey[2ae7dbd28528]: trying publickey (dd:3b:b8:2e:85:04:06:e9:ab:ff:a8:0a:c0:04:6e:d6)
D, [2017-04-05T17:19:06.502381 #29791] DEBUG -- socket[2ae7dbf84010]: queueing packet nr 6 type 50 len 348
D, [2017-04-05T17:19:06.502503 #29791] DEBUG -- socket[2ae7dbf84010]: sent 372 bytes
D, [2017-04-05T17:19:06.512884 #29791] DEBUG -- socket[2ae7dbf84010]: read 324 bytes
D, [2017-04-05T17:19:06.513090 #29791] DEBUG -- socket[2ae7dbf84010]: received packet nr 6 type 60 len 300
D, [2017-04-05T17:19:06.514450 #29791] DEBUG -- socket[2ae7dbf84010]: queueing packet nr 7 type 50 len 620
D, [2017-04-05T17:19:06.514548 #29791] DEBUG -- socket[2ae7dbf84010]: sent 644 bytes
D, [2017-04-05T17:19:06.519698 #29791] DEBUG -- socket[2ae7dbf84010]: read 36 bytes
D, [2017-04-05T17:19:06.519849 #29791] DEBUG -- socket[2ae7dbf84010]: received packet nr 7 type 52 len 12
D, [2017-04-05T17:19:06.519920 #29791] DEBUG -- net.ssh.authentication.methods.publickey[2ae7dbd28528]: publickey succeeded (dd:3b:b8:2e:85:04:06:e9:ab:ff:a8:0a:c0:04:6e:d6)

DEBUG ssh: == Net-SSH connection debug-level log END ==
 INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute:  (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: Checking key permissions: /home/kaspar/.vagrant.d/insecure_private_key
 INFO interface: detail: 
Vagrant insecure key detected. Vagrant will automatically replace
this with a newly generated keypair for better security.
 INFO interface: detail:     default: 
    default: Vagrant insecure key detected. Vagrant will automatically replace
    default: this with a newly generated keypair for better security.
    default: 
    default: Vagrant insecure key detected. Vagrant will automatically replace
    default: this with a newly generated keypair for better security.
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
 INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute:  (sudo=false)
DEBUG ssh: Exit status: 0
 INFO guest: Autodetecting host type for [#<Vagrant::Machine: default (VagrantPlugins::ProviderLibvirt::Provider)>]
DEBUG guest: Trying: mint
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute: cat /etc/issue | grep 'Linux Mint' (sudo=false)
DEBUG ssh: Exit status: 1
DEBUG guest: Trying: atomic
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute: grep 'ostree=' /proc/cmdline (sudo=false)
DEBUG ssh: Exit status: 1
DEBUG guest: Trying: trisquel
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute: [ -x /usr/bin/lsb_release ] && /usr/bin/lsb_release -i 2>/dev/null | grep Trisquel (sudo=false)
DEBUG ssh: Exit status: 1
DEBUG guest: Trying: fedora
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute: grep 'Fedora release' /etc/redhat-release (sudo=false)
DEBUG ssh: Exit status: 1
DEBUG guest: Trying: pld
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute: cat /etc/pld-release (sudo=false)
DEBUG ssh: stderr: cat: /etc/pld-release
DEBUG ssh: stderr: : No such file or directory

DEBUG ssh: Exit status: 1
DEBUG guest: Trying: amazon
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute: grep 'Amazon Linux AMI' /etc/os-release (sudo=false)
DEBUG ssh: Exit status: 1
DEBUG guest: Trying: funtoo
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute: grep Funtoo /etc/gentoo-release (sudo=false)
DEBUG ssh: stderr: grep: /etc/gentoo-release: No such file or directory

DEBUG ssh: Exit status: 2
DEBUG guest: Trying: ubuntu
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute: test -r /etc/os-release && . /etc/os-release && test xubuntu = x$ID (sudo=false)
DEBUG ssh: Exit status: 1
DEBUG guest: Trying: redhat
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute: cat /etc/redhat-release (sudo=false)
DEBUG ssh: stdout: CentOS Linux release 7.3.1611 (Core) 

DEBUG ssh: Exit status: 0
 INFO guest: Detected: redhat!
DEBUG guest: Searching for cap: insert_public_key
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: insert_public_key in linux
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
 INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute:  (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: remove_public_key
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: remove_public_key in linux
 INFO ssh: Inserting key to avoid password: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDrwhNBRvqm+AO1VBlULCFwxaTNXeF2qccXV9bnVI/AC1g1dnMYcxuYgPsYpV5gN23pAx/63dGSjSKS8rhiTOtNL9QMRNhelUN4zigUGw2tfQMW+yYzMlB1GgKrDEBp2AeDkmG+B+EOfcCE6aQYVSfHXGx5ZPtf8XAcBDZEaqb6YYBDNx+tSh0dY6Idt8jKV6NkQi32R5BISIbzo2SfdFXDWlExIxqc37D3LJNZnf1ANZcH6l+ihW3ErQl5ulMuoTva2CxQkzD8Rzsx+TJBJhYqlsSvkrjSt7z5X3I/Sk2xDnobitl+lPciQkRk7pefAtx6Qa+KsemMKMbVbHpzlsx7 vagrant
 INFO interface: detail: 
Inserting generated public key within guest...
 INFO interface: detail:     default: 
    default: Inserting generated public key within guest...
    default: 
    default: Inserting generated public key within guest...
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
 INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute:  (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: insert_public_key
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: insert_public_key in linux
 INFO guest: Execute capability: insert_public_key [#<Vagrant::Machine: default (VagrantPlugins::ProviderLibvirt::Provider)>, "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDrwhNBRvqm+AO1VBlULCFwxaTNXeF2qccXV9bnVI/AC1g1dnMYcxuYgPsYpV5gN23pAx/63dGSjSKS8rhiTOtNL9QMRNhelUN4zigUGw2tfQMW+yYzMlB1GgKrDEBp2AeDkmG+B+EOfcCE6aQYVSfHXGx5ZPtf8XAcBDZEaqb6YYBDNx+tSh0dY6Idt8jKV6NkQi32R5BISIbzo2SfdFXDWlExIxqc37D3LJNZnf1ANZcH6l+ihW3ErQl5ulMuoTva2CxQkzD8Rzsx+TJBJhYqlsSvkrjSt7z5X3I/Sk2xDnobitl+lPciQkRk7pefAtx6Qa+KsemMKMbVbHpzlsx7 vagrant"] (redhat)
DEBUG ssh: Uploading: /tmp/vagrant-linux-insert-public-key20170405-29791-16qtoz6 to /tmp/vagrant-insert-pubkey-1491401947
DEBUG ssh: Re-using SSH connection.
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute: set -e

mkdir -p ~/.ssh
chmod 0700 ~/.ssh
cat '/tmp/vagrant-insert-pubkey-1491401947' >> ~/.ssh/authorized_keys
chmod 0600 ~/.ssh/authorized_keys

rm -f '/tmp/vagrant-insert-pubkey-1491401947'
 (sudo=false)
DEBUG ssh: Exit status: 0
 INFO interface: detail: Removing insecure key from the guest if it's present...
 INFO interface: detail:     default: Removing insecure key from the guest if it's present...
    default: Removing insecure key from the guest if it's present...
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
 INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute:  (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: remove_public_key
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: remove_public_key in linux
 INFO guest: Execute capability: remove_public_key [#<Vagrant::Machine: default (VagrantPlugins::ProviderLibvirt::Provider)>, "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA6NF8iallvQVp22WDkTkyrtvp9eWW6A8YVr+kz4TjGYe7gHzIw+niNltGEFHzD8+v1I2YJ6oXevct1YeS0o9HZyN1Q9qgCgzUFtdOKLv6IedplqoPkcmF0aYet2PkEDo3MlTBckFXPITAMzF8dJSIFo9D8HfdOV0IAdx4O7PtixWKn5y2hMNG0zQPyUecp4pzC6kivAIhyfHilFR61RGL+GPXQ2MWZWFYbAGjyiYJnAmCP3NOTd0jMZEnDkbUvxhMmBYSdETk1rRgm+R4LOzFUGaHqHDLKLX+FIPKcF96hrucXzcWyLbIbEgE98OHlnVYCzRdK8jlqm8tehUc9c9WhQ== vagrant insecure public key"] (redhat)
DEBUG ssh: Uploading: /tmp/vagrant-bsd-remove-public-key20170405-29791-4oscf8 to /tmp/vagrant-remove-pubkey-1491401947
DEBUG ssh: Re-using SSH connection.
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute: set -e

            if test -f ~/.ssh/authorized_keys; then
              grep -v -x -f '/tmp/vagrant-remove-pubkey-1491401947' ~/.ssh/authorized_keys > ~/.ssh/authorized_keys.tmp
              mv ~/.ssh/authorized_keys.tmp ~/.ssh/authorized_keys
              chmod 0600 ~/.ssh/authorized_keys
            fi

            rm -f '/tmp/vagrant-remove-pubkey-1491401947'
 (sudo=false)
DEBUG ssh: Exit status: 0
 INFO interface: detail: Key inserted! Disconnecting and reconnecting using new SSH key...
 INFO interface: detail:     default: Key inserted! Disconnecting and reconnecting using new SSH key...
    default: Key inserted! Disconnecting and reconnecting using new SSH key...
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
 INFO ssh: Attempting to correct key permissions to 0600
 INFO ssh: Attempting SSH connection...
 INFO ssh: Attempting to connect to SSH...
 INFO ssh:   - Host: 192.168.121.142
 INFO ssh:   - Port: 22
 INFO ssh:   - Username: vagrant
 INFO ssh:   - Password? false
 INFO ssh:   - Key Path: ["/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"]
DEBUG ssh: == Net-SSH connection debug-level log START ==
DEBUG ssh: D, [2017-04-05T17:19:07.798030 #29791] DEBUG -- net.ssh.transport.session[3fe9ea0960b4]: establishing connection to 192.168.121.142:22
D, [2017-04-05T17:19:07.799350 #29791] DEBUG -- net.ssh.transport.session[3fe9ea0960b4]: connection established
I, [2017-04-05T17:19:07.799620 #29791]  INFO -- net.ssh.transport.server_version[3fe9ea09167c]: negotiating protocol version
D, [2017-04-05T17:19:07.799681 #29791] DEBUG -- net.ssh.transport.server_version[3fe9ea09167c]: local is `SSH-2.0-Ruby/Net::SSH_3.2.0 x86_64-linux'
D, [2017-04-05T17:19:07.813605 #29791] DEBUG -- net.ssh.transport.server_version[3fe9ea09167c]: remote is `SSH-2.0-OpenSSH_6.6.1'
I, [2017-04-05T17:19:07.813855 #29791]  INFO -- net.ssh.transport.algorithms[3fe9ea090d30]: sending KEXINIT
D, [2017-04-05T17:19:07.814091 #29791] DEBUG -- socket[3fe9ea091d34]: queueing packet nr 0 type 20 len 1684
D, [2017-04-05T17:19:07.814188 #29791] DEBUG -- socket[3fe9ea091d34]: sent 1688 bytes
D, [2017-04-05T17:19:07.816799 #29791] DEBUG -- socket[3fe9ea091d34]: read 1640 bytes
D, [2017-04-05T17:19:07.816963 #29791] DEBUG -- socket[3fe9ea091d34]: received packet nr 0 type 20 len 1636
I, [2017-04-05T17:19:07.817015 #29791]  INFO -- net.ssh.transport.algorithms[3fe9ea090d30]: got KEXINIT from server
I, [2017-04-05T17:19:07.817116 #29791]  INFO -- net.ssh.transport.algorithms[3fe9ea090d30]: negotiating algorithms
D, [2017-04-05T17:19:07.817271 #29791] DEBUG -- net.ssh.transport.algorithms[3fe9ea090d30]: negotiated:
* kex: diffie-hellman-group-exchange-sha1
* host_key: ssh-rsa
* encryption_server: aes128-cbc
* encryption_client: aes128-cbc
* hmac_client: hmac-sha1
* hmac_server: hmac-sha1
* compression_client: none
* compression_server: none
* language_client: 
* language_server: 
D, [2017-04-05T17:19:07.817310 #29791] DEBUG -- net.ssh.transport.algorithms[3fe9ea090d30]: exchanging keys
D, [2017-04-05T17:19:07.817541 #29791] DEBUG -- socket[3fe9ea091d34]: queueing packet nr 1 type 34 len 20
D, [2017-04-05T17:19:07.817640 #29791] DEBUG -- socket[3fe9ea091d34]: sent 24 bytes
D, [2017-04-05T17:19:07.822491 #29791] DEBUG -- socket[3fe9ea091d34]: read 152 bytes
D, [2017-04-05T17:19:07.822686 #29791] DEBUG -- socket[3fe9ea091d34]: received packet nr 1 type 31 len 148
D, [2017-04-05T17:19:07.824215 #29791] DEBUG -- socket[3fe9ea091d34]: queueing packet nr 2 type 32 len 140
D, [2017-04-05T17:19:07.824366 #29791] DEBUG -- socket[3fe9ea091d34]: sent 144 bytes
D, [2017-04-05T17:19:07.828154 #29791] DEBUG -- socket[3fe9ea091d34]: read 720 bytes
D, [2017-04-05T17:19:07.828313 #29791] DEBUG -- socket[3fe9ea091d34]: received packet nr 2 type 33 len 700
D, [2017-04-05T17:19:07.829145 #29791] DEBUG -- socket[3fe9ea091d34]: queueing packet nr 3 type 21 len 20
D, [2017-04-05T17:19:07.829281 #29791] DEBUG -- socket[3fe9ea091d34]: sent 24 bytes
D, [2017-04-05T17:19:07.829376 #29791] DEBUG -- socket[3fe9ea091d34]: received packet nr 3 type 21 len 12
D, [2017-04-05T17:19:07.829804 #29791] DEBUG -- net.ssh.authentication.session[2ae7dc17ac0c]: beginning authentication of `vagrant'
D, [2017-04-05T17:19:07.829970 #29791] DEBUG -- socket[3fe9ea091d34]: queueing packet nr 4 type 5 len 28
D, [2017-04-05T17:19:07.830021 #29791] DEBUG -- socket[3fe9ea091d34]: sent 52 bytes
D, [2017-04-05T17:19:07.878210 #29791] DEBUG -- socket[3fe9ea091d34]: read 52 bytes
D, [2017-04-05T17:19:07.878469 #29791] DEBUG -- socket[3fe9ea091d34]: received packet nr 4 type 6 len 28
D, [2017-04-05T17:19:07.878592 #29791] DEBUG -- net.ssh.authentication.session[2ae7dc17ac0c]: trying none
D, [2017-04-05T17:19:07.878726 #29791] DEBUG -- socket[3fe9ea091d34]: queueing packet nr 5 type 50 len 44
D, [2017-04-05T17:19:07.878803 #29791] DEBUG -- socket[3fe9ea091d34]: sent 68 bytes
D, [2017-04-05T17:19:07.894482 #29791] DEBUG -- socket[3fe9ea091d34]: read 84 bytes
D, [2017-04-05T17:19:07.894677 #29791] DEBUG -- socket[3fe9ea091d34]: received packet nr 5 type 51 len 60
D, [2017-04-05T17:19:07.894775 #29791] DEBUG -- net.ssh.authentication.session[2ae7dc17ac0c]: allowed methods: publickey,gssapi-keyex,gssapi-with-mic,password
D, [2017-04-05T17:19:07.894833 #29791] DEBUG -- net.ssh.authentication.methods.none[2ae7dc163b38]: none failed
D, [2017-04-05T17:19:07.894891 #29791] DEBUG -- net.ssh.authentication.session[2ae7dc17ac0c]: trying publickey
D, [2017-04-05T17:19:07.895165 #29791] DEBUG -- net.ssh.authentication.agent[2ae7dc162184]: connecting to ssh-agent
D, [2017-04-05T17:19:07.895370 #29791] DEBUG -- net.ssh.authentication.agent[2ae7dc162184]: sending agent request 1 len 44
D, [2017-04-05T17:19:07.895794 #29791] DEBUG -- net.ssh.authentication.agent[2ae7dc162184]: received agent packet 2 len 5
D, [2017-04-05T17:19:07.895860 #29791] DEBUG -- net.ssh.authentication.agent[2ae7dc162184]: sending agent request 11 len 0
D, [2017-04-05T17:19:07.896941 #29791] DEBUG -- net.ssh.authentication.agent[2ae7dc162184]: received agent packet 12 len 1133
D, [2017-04-05T17:19:07.897317 #29791] DEBUG -- net.ssh.authentication.methods.publickey[2ae7dc162378]: trying publickey (a2:b9:17:fb:ee:5e:84:47:15:e7:9d:b5:f4:a9:0c:56)
D, [2017-04-05T17:19:07.897541 #29791] DEBUG -- socket[3fe9ea091d34]: queueing packet nr 6 type 50 len 348
D, [2017-04-05T17:19:07.897642 #29791] DEBUG -- socket[3fe9ea091d34]: sent 372 bytes
D, [2017-04-05T17:19:07.899688 #29791] DEBUG -- socket[3fe9ea091d34]: read 324 bytes
D, [2017-04-05T17:19:07.899854 #29791] DEBUG -- socket[3fe9ea091d34]: received packet nr 6 type 60 len 300
D, [2017-04-05T17:19:07.901276 #29791] DEBUG -- socket[3fe9ea091d34]: queueing packet nr 7 type 50 len 620
D, [2017-04-05T17:19:07.901390 #29791] DEBUG -- socket[3fe9ea091d34]: sent 644 bytes
D, [2017-04-05T17:19:07.912006 #29791] DEBUG -- socket[3fe9ea091d34]: read 36 bytes
D, [2017-04-05T17:19:07.912200 #29791] DEBUG -- socket[3fe9ea091d34]: received packet nr 7 type 52 len 12
D, [2017-04-05T17:19:07.912285 #29791] DEBUG -- net.ssh.authentication.methods.publickey[2ae7dc162378]: publickey succeeded (a2:b9:17:fb:ee:5e:84:47:15:e7:9d:b5:f4:a9:0c:56)

DEBUG ssh: == Net-SSH connection debug-level log END ==
 INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute:  (sudo=false)
DEBUG ssh: Exit status: 0
 INFO wait_till_up: Time for SSH ready: 1.8065359592437744
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::ForwardPorts:0x0055cfb79ca658>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::SetHostname:0x0055cfb78fe3c8>
 INFO warden: Calling IN action: #<Proc:0x0055cfb78fe300@/usr/share/vagrant/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Proc:0x0055cfb78fe300@/usr/share/vagrant/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::SetHostname:0x0055cfb78fe3c8>
 INFO interface: info: Forwarding ports...
 INFO interface: info: ==> default: Forwarding ports...
==> default: Forwarding ports...
 INFO interface: info: 8080 (guest) => 8080 (host) (adapter eth0)
 INFO interface: info: ==> default: 8080 (guest) => 8080 (host) (adapter eth0)
==> default: 8080 (guest) => 8080 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:8080:192.168.121.142:8080 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_8080-192.168.121.142_8080.log
 INFO interface: info: 10500 (guest) => 10500 (host) (adapter eth0)
 INFO interface: info: ==> default: 10500 (guest) => 10500 (host) (adapter eth0)
==> default: 10500 (guest) => 10500 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:10500:192.168.121.142:10500 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_10500-192.168.121.142_10500.log
 INFO interface: info: 8500 (guest) => 8500 (host) (adapter eth0)
 INFO interface: info: ==> default: 8500 (guest) => 8500 (host) (adapter eth0)
==> default: 8500 (guest) => 8500 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:8500:192.168.121.142:8500 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_8500-192.168.121.142_8500.log
 INFO interface: info: 5800 (guest) => 5800 (host) (adapter eth0)
 INFO interface: info: ==> default: 5800 (guest) => 5800 (host) (adapter eth0)
==> default: 5800 (guest) => 5800 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:5800:192.168.121.142:5800 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_5800-192.168.121.142_5800.log
 INFO interface: info: 5810 (guest) => 5810 (host) (adapter eth0)
 INFO interface: info: ==> default: 5810 (guest) => 5810 (host) (adapter eth0)
==> default: 5810 (guest) => 5810 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:5810:192.168.121.142:5810 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_5810-192.168.121.142_5810.log
 INFO interface: info: 5850 (guest) => 5850 (host) (adapter eth0)
 INFO interface: info: ==> default: 5850 (guest) => 5850 (host) (adapter eth0)
==> default: 5850 (guest) => 5850 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:5850:192.168.121.142:5850 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_5850-192.168.121.142_5850.log
 INFO interface: info: 4800 (guest) => 4800 (host) (adapter eth0)
 INFO interface: info: ==> default: 4800 (guest) => 4800 (host) (adapter eth0)
==> default: 4800 (guest) => 4800 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:4800:192.168.121.142:4800 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_4800-192.168.121.142_4800.log
 INFO interface: info: 4810 (guest) => 4810 (host) (adapter eth0)
 INFO interface: info: ==> default: 4810 (guest) => 4810 (host) (adapter eth0)
==> default: 4810 (guest) => 4810 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:4810:192.168.121.142:4810 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_4810-192.168.121.142_4810.log
 INFO interface: info: 4850 (guest) => 4850 (host) (adapter eth0)
 INFO interface: info: ==> default: 4850 (guest) => 4850 (host) (adapter eth0)
==> default: 4850 (guest) => 4850 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:4850:192.168.121.142:4850 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_4850-192.168.121.142_4850.log
 INFO interface: info: 6969 (guest) => 6969 (host) (adapter eth0)
 INFO interface: info: ==> default: 6969 (guest) => 6969 (host) (adapter eth0)
==> default: 6969 (guest) => 6969 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:6969:192.168.121.142:6969 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_6969-192.168.121.142_6969.log
 INFO interface: info: 6970 (guest) => 6970 (host) (adapter eth0)
 INFO interface: info: ==> default: 6970 (guest) => 6970 (host) (adapter eth0)
==> default: 6970 (guest) => 6970 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:6970:192.168.121.142:6970 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_6970-192.168.121.142_6970.log
 INFO interface: info: 8079 (guest) => 8079 (host) (adapter eth0)
 INFO interface: info: ==> default: 8079 (guest) => 8079 (host) (adapter eth0)
==> default: 8079 (guest) => 8079 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:8079:192.168.121.142:8079 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_8079-192.168.121.142_8079.log
 INFO interface: info: 1521 (guest) => 1521 (host) (adapter eth0)
 INFO interface: info: ==> default: 1521 (guest) => 1521 (host) (adapter eth0)
==> default: 1521 (guest) => 1521 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:1521:192.168.121.142:1521 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_1521-192.168.121.142_1521.log
 INFO interface: info: 8765 (guest) => 8765 (host) (adapter eth0)
 INFO interface: info: ==> default: 8765 (guest) => 8765 (host) (adapter eth0)
==> default: 8765 (guest) => 8765 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:8765:192.168.121.142:8765 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_8765-192.168.121.142_8765.log
 INFO interface: info: 8766 (guest) => 8766 (host) (adapter eth0)
 INFO interface: info: ==> default: 8766 (guest) => 8766 (host) (adapter eth0)
==> default: 8766 (guest) => 8766 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:8766:192.168.121.142:8766 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_8766-192.168.121.142_8766.log
 INFO interface: info: 8767 (guest) => 8767 (host) (adapter eth0)
 INFO interface: info: ==> default: 8767 (guest) => 8767 (host) (adapter eth0)
==> default: 8767 (guest) => 8767 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:8767:192.168.121.142:8767 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_8767-192.168.121.142_8767.log
 INFO interface: info: 8768 (guest) => 8768 (host) (adapter eth0)
 INFO interface: info: ==> default: 8768 (guest) => 8768 (host) (adapter eth0)
==> default: 8768 (guest) => 8768 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:8768:192.168.121.142:8768 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_8768-192.168.121.142_8768.log
 INFO interface: info: 5671 (guest) => 5671 (host) (adapter eth0)
 INFO interface: info: ==> default: 5671 (guest) => 5671 (host) (adapter eth0)
==> default: 5671 (guest) => 5671 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:5671:192.168.121.142:5671 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_5671-192.168.121.142_5671.log
 INFO interface: info: 5672 (guest) => 5672 (host) (adapter eth0)
 INFO interface: info: ==> default: 5672 (guest) => 5672 (host) (adapter eth0)
==> default: 5672 (guest) => 5672 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:5672:192.168.121.142:5672 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_5672-192.168.121.142_5672.log
 INFO interface: info: 15672 (guest) => 15672 (host) (adapter eth0)
 INFO interface: info: ==> default: 15672 (guest) => 15672 (host) (adapter eth0)
==> default: 15672 (guest) => 15672 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:15672:192.168.121.142:15672 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_15672-192.168.121.142_15672.log
 INFO interface: info: 2375 (guest) => 2375 (host) (adapter eth0)
 INFO interface: info: ==> default: 2375 (guest) => 2375 (host) (adapter eth0)
==> default: 2375 (guest) => 2375 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:2375:192.168.121.142:2375 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_2375-192.168.121.142_2375.log
 INFO interface: info: 5601 (guest) => 5601 (host) (adapter eth0)
 INFO interface: info: ==> default: 5601 (guest) => 5601 (host) (adapter eth0)
==> default: 5601 (guest) => 5601 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:5601:192.168.121.142:5601 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_5601-192.168.121.142_5601.log
 INFO interface: info: 9200 (guest) => 9200 (host) (adapter eth0)
 INFO interface: info: ==> default: 9200 (guest) => 9200 (host) (adapter eth0)
==> default: 9200 (guest) => 9200 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:9200:192.168.121.142:9200 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_9200-192.168.121.142_9200.log
 INFO interface: info: 5044 (guest) => 5044 (host) (adapter eth0)
 INFO interface: info: ==> default: 5044 (guest) => 5044 (host) (adapter eth0)
==> default: 5044 (guest) => 5044 (host) (adapter eth0)
DEBUG ssh: Checking key permissions: /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key
DEBUG forward_ports: Forwarding port with `ssh -o User=vagrant -o Port=22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ForwardX11=no -o IdentityFile='"/home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/private_key"' -L 0.0.0.0:5044:192.168.121.142:5044 -N 192.168.121.142`
 INFO forward_ports: Logging to /home/kaspar/Documents/IdeaProjects/vagrant_personal/docker/.vagrant/machines/default/libvirt/logs/ssh-forwarding-0.0.0.0_5044-192.168.121.142_5044.log
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderLibvirt::Action::ForwardPorts:0x0055cfb79ca658>
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderLibvirt::Action::WaitTillUp:0x0055cfb7a87410>
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderLibvirt::Action::StartDomain:0x0055cfb7b483b8>
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderLibvirt::Action::SetBootOrder:0x0055cfb7bb7100>
DEBUG create_network_interfaces: Configuring interface slot_number 1 options {:iface_type=>:private_network, :netmask=>"255.255.255.0", :dhcp_enabled=>true, :forward_mode=>"nat", :ip=>"10.0.2.15", :protocol=>"tcp", :id=>"cbdf23fc-c611-4feb-aadd-2e6fb9bc32c2", :network_name=>"docker0", :mac=>"52:54:00:6e:c0:1a"}
DEBUG create_network_interfaces: Configuring interface slot_number 2 options {:iface_type=>:private_network, :netmask=>"255.255.255.0", :dhcp_enabled=>true, :forward_mode=>"nat", :ip=>"10.0.2.15", :protocol=>"tcp", :id=>"ef23fe8b-b3b1-47b7-9cd4-17936a782eb4", :network_name=>"docker0", :mac=>"52:54:00:6e:c0:1a52:54:00:db:32:3e"}
 INFO interface: info: Configuring and enabling network interfaces...
 INFO interface: info: ==> default: Configuring and enabling network interfaces...
==> default: Configuring and enabling network interfaces...
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
 INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute:  (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: configure_networks
DEBUG guest: Checking in: redhat
DEBUG guest: Found cap: configure_networks in redhat
 INFO guest: Execute capability: configure_networks [#<Vagrant::Machine: default (VagrantPlugins::ProviderLibvirt::Provider)>, [{:type=>:static, :ip=>"10.0.2.15", :netmask=>"255.255.255.0", :gateway=>nil, :interface=>1, :use_dhcp_assigned_default_route=>nil, :mac_address=>"52:54:00:6e:c0:1a"}, {:type=>:static, :ip=>"10.0.2.15", :netmask=>"255.255.255.0", :gateway=>nil, :interface=>2, :use_dhcp_assigned_default_route=>nil, :mac_address=>"52:54:00:6e:c0:1a52:54:00:db:32:3e"}]] (redhat)
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
 INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute:  (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: network_scripts_dir
DEBUG guest: Checking in: redhat
DEBUG guest: Found cap: network_scripts_dir in redhat
 INFO guest: Execute capability: network_scripts_dir [#<Vagrant::Machine: default (VagrantPlugins::ProviderLibvirt::Provider)>] (redhat)
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
 INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute:  (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: network_interfaces
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: network_interfaces in linux
 INFO guest: Execute capability: network_interfaces [#<Vagrant::Machine: default (VagrantPlugins::ProviderLibvirt::Provider)>] (redhat)
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute: /sbin/ip -o -0 addr | grep -v LOOPBACK | awk '{print $2}' | sed 's/://' (sudo=true)
DEBUG ssh: stdout: eth0
eth1
eth2
docker0

DEBUG ssh: Exit status: 0
DEBUG ssh: Uploading: /tmp/vagrant-redhat-configure-networks20170405-29791-17qh8g3 to /tmp/vagrant-network-entry-eth1-1491401950-0
DEBUG ssh: Re-using SSH connection.
DEBUG ssh: Uploading: /tmp/vagrant-redhat-configure-networks20170405-29791-12wtxk7 to /tmp/vagrant-network-entry-eth2-1491401950-1
DEBUG ssh: Re-using SSH connection.
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute: # Down the interface before munging the config file. This might
# fail if the interface is not actually set up yet so ignore
# errors.
/sbin/ifdown 'eth1' || true

# Move new config into place
mv '/tmp/vagrant-network-entry-eth1-1491401950-0' '/etc/sysconfig/network-scripts/ifcfg-eth1'

# Bring the interface up
ARPCHECK=no /sbin/ifup 'eth1'

# Down the interface before munging the config file. This might
# fail if the interface is not actually set up yet so ignore
# errors.
/sbin/ifdown 'eth2' || true

# Move new config into place
mv '/tmp/vagrant-network-entry-eth2-1491401950-1' '/etc/sysconfig/network-scripts/ifcfg-eth2'

# Bring the interface up
ARPCHECK=no /sbin/ifup 'eth2'
 (sudo=true)
DEBUG ssh: stderr: usage: ifdown <configuration>

DEBUG ssh: stderr: usage: ifdown <configuration>

DEBUG ssh: stdout: ERROR    : [/etc/sysconfig/network-scripts/ifup-eth] Device eth2 has different MAC address than expected, ignoring.

DEBUG ssh: Exit status: 1
ERROR warden: Error occurred: The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!

# Down the interface before munging the config file. This might
# fail if the interface is not actually set up yet so ignore
# errors.
/sbin/ifdown 'eth1' || true

# Move new config into place
mv '/tmp/vagrant-network-entry-eth1-1491401950-0' '/etc/sysconfig/network-scripts/ifcfg-eth1'

# Bring the interface up
ARPCHECK=no /sbin/ifup 'eth1'

# Down the interface before munging the config file. This might
# fail if the interface is not actually set up yet so ignore
# errors.
/sbin/ifdown 'eth2' || true

# Move new config into place
mv '/tmp/vagrant-network-entry-eth2-1491401950-1' '/etc/sysconfig/network-scripts/ifcfg-eth2'

# Bring the interface up
ARPCHECK=no /sbin/ifup 'eth2'


Stdout from the command:

ERROR    : [/etc/sysconfig/network-scripts/ifup-eth] Device eth2 has different MAC address than expected, ignoring.


Stderr from the command:

usage: ifdown <configuration>
usage: ifdown <configuration>

 INFO warden: Beginning recovery process...
 INFO warden: Calling recover: #<VagrantPlugins::ProviderLibvirt::Action::WaitTillUp:0x0055cfb7a87410>
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!

# Down the interface before munging the config file. This might
# fail if the interface is not actually set up yet so ignore
# errors.
/sbin/ifdown 'eth1' || true

# Move new config into place
mv '/tmp/vagrant-network-entry-eth1-1491401950-0' '/etc/sysconfig/network-scripts/ifcfg-eth1'

# Bring the interface up
ARPCHECK=no /sbin/ifup 'eth1'

# Down the interface before munging the config file. This might
# fail if the interface is not actually set up yet so ignore
# errors.
/sbin/ifdown 'eth2' || true

# Move new config into place
mv '/tmp/vagrant-network-entry-eth2-1491401950-1' '/etc/sysconfig/network-scripts/ifcfg-eth2'

# Bring the interface up
ARPCHECK=no /sbin/ifup 'eth2'


Stdout from the command:

ERROR    : [/etc/sysconfig/network-scripts/ifup-eth] Device eth2 has different MAC address than expected, ignoring.


Stderr from the command:

usage: ifdown <configuration>
usage: ifdown <configuration>

 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!

# Down the interface before munging the config file. This might
# fail if the interface is not actually set up yet so ignore
# errors.
/sbin/ifdown 'eth1' || true

# Move new config into place
mv '/tmp/vagrant-network-entry-eth1-1491401950-0' '/etc/sysconfig/network-scripts/ifcfg-eth1'

# Bring the interface up
ARPCHECK=no /sbin/ifup 'eth1'

# Down the interface before munging the config file. This might
# fail if the interface is not actually set up yet so ignore
# errors.
/sbin/ifdown 'eth2' || true

# Move new config into place
mv '/tmp/vagrant-network-entry-eth2-1491401950-1' '/etc/sysconfig/network-scripts/ifcfg-eth2'

# Bring the interface up
ARPCHECK=no /sbin/ifup 'eth2'


Stdout from the command:

ERROR    : [/etc/sysconfig/network-scripts/ifup-eth] Device eth2 has different MAC address than expected, ignoring.


Stderr from the command:

usage: ifdown <configuration>
usage: ifdown <configuration>

 INFO warden: Beginning recovery process...
 INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x007fd3d401f428>
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO environment: Released process lock: machine-action-b3d14dda65354098022d4a15f7908700
 INFO environment: Running hook: environment_unload
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: environment_unload #<Vagrant::Action::Builder:0x0055cfb828fdb0>
ERROR vagrant: Vagrant experienced an error! Details:
ERROR vagrant: #<Vagrant::Errors::VagrantError: The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!

# Down the interface before munging the config file. This might
# fail if the interface is not actually set up yet so ignore
# errors.
/sbin/ifdown 'eth1' || true

# Move new config into place
mv '/tmp/vagrant-network-entry-eth1-1491401950-0' '/etc/sysconfig/network-scripts/ifcfg-eth1'

# Bring the interface up
ARPCHECK=no /sbin/ifup 'eth1'

# Down the interface before munging the config file. This might
# fail if the interface is not actually set up yet so ignore
# errors.
/sbin/ifdown 'eth2' || true

# Move new config into place
mv '/tmp/vagrant-network-entry-eth2-1491401950-1' '/etc/sysconfig/network-scripts/ifcfg-eth2'

# Bring the interface up
ARPCHECK=no /sbin/ifup 'eth2'


Stdout from the command:

ERROR    : [/etc/sysconfig/network-scripts/ifup-eth] Device eth2 has different MAC address than expected, ignoring.


Stderr from the command:

usage: ifdown <configuration>
usage: ifdown <configuration>
>
ERROR vagrant: The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!

# Down the interface before munging the config file. This might
# fail if the interface is not actually set up yet so ignore
# errors.
/sbin/ifdown 'eth1' || true

# Move new config into place
mv '/tmp/vagrant-network-entry-eth1-1491401950-0' '/etc/sysconfig/network-scripts/ifcfg-eth1'

# Bring the interface up
ARPCHECK=no /sbin/ifup 'eth1'

# Down the interface before munging the config file. This might
# fail if the interface is not actually set up yet so ignore
# errors.
/sbin/ifdown 'eth2' || true

# Move new config into place
mv '/tmp/vagrant-network-entry-eth2-1491401950-1' '/etc/sysconfig/network-scripts/ifcfg-eth2'

# Bring the interface up
ARPCHECK=no /sbin/ifup 'eth2'


Stdout from the command:

ERROR    : [/etc/sysconfig/network-scripts/ifup-eth] Device eth2 has different MAC address than expected, ignoring.


Stderr from the command:

usage: ifdown <configuration>
usage: ifdown <configuration>

ERROR vagrant: /usr/share/vagrant/plugins/communicators/ssh/communicator.rb:236:in `execute'
/usr/share/vagrant/plugins/communicators/ssh/communicator.rb:246:in `sudo'
/usr/share/vagrant/plugins/guests/redhat/cap/configure_networks.rb:53:in `configure_networks'
/usr/share/vagrant/lib/vagrant/capability_host.rb:111:in `call'
/usr/share/vagrant/lib/vagrant/capability_host.rb:111:in `capability'
/usr/share/vagrant/lib/vagrant/guest.rb:43:in `capability'
/home/kaspar/.vagrant.d/gems/gems/vagrant-libvirt-0.0.37/lib/vagrant-libvirt/action/create_network_interfaces.rb:181:in `call'
/usr/share/vagrant/lib/vagrant/action/warden.rb:34:in `call'
/home/kaspar/.vagrant.d/gems/gems/vagrant-libvirt-0.0.37/lib/vagrant-libvirt/action/create_networks.rb:83:in `call'
/usr/share/vagrant/lib/vagrant/action/warden.rb:34:in `call'
/home/kaspar/.vagrant.d/gems/gems/vagrant-libvirt-0.0.37/lib/vagrant-libvirt/action/share_folders.rb:20:in `call'
/usr/share/vagrant/lib/vagrant/action/warden.rb:34:in `call'
/home/kaspar/.vagrant.d/gems/gems/vagrant-libvirt-0.0.37/lib/vagrant-libvirt/action/prepare_nfs_settings.rb:18:in `call'
/usr/share/vagrant/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/vagrant/lib/vagrant/action/builtin/synced_folders.rb:87:in `call'
/usr/share/vagrant/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/vagrant/lib/vagrant/action/builtin/synced_folder_cleanup.rb:28:in `call'
/usr/share/vagrant/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/vagrant/plugins/synced_folders/nfs/action_cleanup.rb:25:in `call'
/usr/share/vagrant/lib/vagrant/action/warden.rb:34:in `call'
/home/kaspar/.vagrant.d/gems/gems/vagrant-libvirt-0.0.37/lib/vagrant-libvirt/action/prepare_nfs_valid_ids.rb:12:in `call'
/usr/share/vagrant/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/vagrant/lib/vagrant/action/builtin/provision.rb:80:in `call'
/usr/share/vagrant/lib/vagrant/action/warden.rb:34:in `call'
/home/kaspar/.vagrant.d/gems/gems/vagrant-libvirt-0.0.37/lib/vagrant-libvirt/action/create_domain.rb:278:in `call'
/usr/share/vagrant/lib/vagrant/action/warden.rb:34:in `call'
/home/kaspar/.vagrant.d/gems/gems/vagrant-libvirt-0.0.37/lib/vagrant-libvirt/action/create_domain_volume.rb:53:in `call'
/usr/share/vagrant/lib/vagrant/action/warden.rb:34:in `call'
/home/kaspar/.vagrant.d/gems/gems/vagrant-libvirt-0.0.37/lib/vagrant-libvirt/action/handle_box_image.rb:113:in `call'
/usr/share/vagrant/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/vagrant/lib/vagrant/action/builtin/handle_box.rb:56:in `call'
/usr/share/vagrant/lib/vagrant/action/warden.rb:34:in `call'
/home/kaspar/.vagrant.d/gems/gems/vagrant-libvirt-0.0.37/lib/vagrant-libvirt/action/handle_storage_pool.rb:52:in `call'
/usr/share/vagrant/lib/vagrant/action/warden.rb:34:in `call'
/home/kaspar/.vagrant.d/gems/gems/vagrant-libvirt-0.0.37/lib/vagrant-libvirt/action/set_name_of_domain.rb:35:in `call'
/usr/share/vagrant/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/vagrant/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
/usr/share/vagrant/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/vagrant/lib/vagrant/action/builder.rb:116:in `call'
/usr/share/vagrant/lib/vagrant/action/runner.rb:66:in `block in run'
/usr/share/vagrant/lib/vagrant/util/busy.rb:19:in `busy'
/usr/share/vagrant/lib/vagrant/action/runner.rb:66:in `run'
/usr/share/vagrant/lib/vagrant/action/builtin/call.rb:53:in `call'
/usr/share/vagrant/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/vagrant/lib/vagrant/action/builtin/config_validate.rb:25:in `call'
/usr/share/vagrant/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/vagrant/lib/vagrant/action/builder.rb:116:in `call'
/usr/share/vagrant/lib/vagrant/action/runner.rb:66:in `block in run'
/usr/share/vagrant/lib/vagrant/util/busy.rb:19:in `busy'
/usr/share/vagrant/lib/vagrant/action/runner.rb:66:in `run'
/usr/share/vagrant/lib/vagrant/machine.rb:225:in `action_raw'
/usr/share/vagrant/lib/vagrant/machine.rb:200:in `block in action'
/usr/share/vagrant/lib/vagrant/environment.rb:561:in `lock'
/usr/share/vagrant/lib/vagrant/machine.rb:186:in `call'
/usr/share/vagrant/lib/vagrant/machine.rb:186:in `action'
/usr/share/vagrant/lib/vagrant/batch_action.rb:82:in `block (2 levels) in run'
 INFO interface: error: The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!

# Down the interface before munging the config file. This might
# fail if the interface is not actually set up yet so ignore
# errors.
/sbin/ifdown 'eth1' || true

# Move new config into place
mv '/tmp/vagrant-network-entry-eth1-1491401950-0' '/etc/sysconfig/network-scripts/ifcfg-eth1'

# Bring the interface up
ARPCHECK=no /sbin/ifup 'eth1'

# Down the interface before munging the config file. This might
# fail if the interface is not actually set up yet so ignore
# errors.
/sbin/ifdown 'eth2' || true

# Move new config into place
mv '/tmp/vagrant-network-entry-eth2-1491401950-1' '/etc/sysconfig/network-scripts/ifcfg-eth2'

# Bring the interface up
ARPCHECK=no /sbin/ifup 'eth2'


Stdout from the command:

ERROR    : [/etc/sysconfig/network-scripts/ifup-eth] Device eth2 has different MAC address than expected, ignoring.


Stderr from the command:

usage: ifdown <configuration>
usage: ifdown <configuration>

The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!

# Down the interface before munging the config file. This might
# fail if the interface is not actually set up yet so ignore
# errors.
/sbin/ifdown 'eth1' || true

# Move new config into place
mv '/tmp/vagrant-network-entry-eth1-1491401950-0' '/etc/sysconfig/network-scripts/ifcfg-eth1'

# Bring the interface up
ARPCHECK=no /sbin/ifup 'eth1'

# Down the interface before munging the config file. This might
# fail if the interface is not actually set up yet so ignore
# errors.
/sbin/ifdown 'eth2' || true

# Move new config into place
mv '/tmp/vagrant-network-entry-eth2-1491401950-1' '/etc/sysconfig/network-scripts/ifcfg-eth2'

# Bring the interface up
ARPCHECK=no /sbin/ifup 'eth2'


Stdout from the command:

ERROR    : [/etc/sysconfig/network-scripts/ifup-eth] Device eth2 has different MAC address than expected, ignoring.


Stderr from the command:

usage: ifdown <configuration>
usage: ifdown <configuration>

 INFO interface: Machine: error-exit ["Vagrant::Errors::VagrantError", "The following SSH command responded with a non-zero exit status.\nVagrant assumes that this means the command failed!\n\n# Down the interface before munging the config file. This might\n# fail if the interface is not actually set up yet so ignore\n# errors.\n/sbin/ifdown 'eth1' || true\n\n# Move new config into place\nmv '/tmp/vagrant-network-entry-eth1-1491401950-0' '/etc/sysconfig/network-scripts/ifcfg-eth1'\n\n# Bring the interface up\nARPCHECK=no /sbin/ifup 'eth1'\n\n# Down the interface before munging the config file. This might\n# fail if the interface is not actually set up yet so ignore\n# errors.\n/sbin/ifdown 'eth2' || true\n\n# Move new config into place\nmv '/tmp/vagrant-network-entry-eth2-1491401950-1' '/etc/sysconfig/network-scripts/ifcfg-eth2'\n\n# Bring the interface up\nARPCHECK=no /sbin/ifup 'eth2'\n\n\nStdout from the command:\n\nERROR    : [/etc/sysconfig/network-scripts/ifup-eth] Device eth2 has different MAC address than expected, ignoring.\n\n\nStderr from the command:\n\nusage: ifdown <configuration>\nusage: ifdown <configuration>\n"]

Vagrantfile:

Vagrant.configure(2) do |config|
  config.vm.box = "someCentOsBox"

  # Port configuration for Live2 environment
  config.vm.network :forwarded_port, guest: 8080,  host: 8080,  host_ip: "0.0.0.0", id: "tomcat",                 auto_correct: true
  config.vm.network :forwarded_port, guest: 10500, host: 10500, host_ip: "0.0.0.0", id: "cadvisor",               auto_correct: true
  config.vm.network :forwarded_port, guest: 8500,  host: 8500,  host_ip: "0.0.0.0", id: "consul",                 auto_correct: true
  config.vm.network :forwarded_port, guest: 5800,  host: 5800,  host_ip: "0.0.0.0", id: "frontend-int-json",      auto_correct: true
  config.vm.network :forwarded_port, guest: 5810,  host: 5810,  host_ip: "0.0.0.0", id: "frontend-int-socketio",  auto_correct: true
  config.vm.network :forwarded_port, guest: 5850,  host: 5850,  host_ip: "0.0.0.0", id: "frontend-int",           auto_correct: true
  config.vm.network :forwarded_port, guest: 4800,  host: 4800,  host_ip: "0.0.0.0", id: "frontend-ext-json",      auto_correct: true
  config.vm.network :forwarded_port, guest: 4810,  host: 4810,  host_ip: "0.0.0.0", id: "frontend-ext-socketio",  auto_correct: true
  config.vm.network :forwarded_port, guest: 4850,  host: 4850,  host_ip: "0.0.0.0", id: "frontend-ext",           auto_correct: true
  config.vm.network :forwarded_port, guest: 6969,  host: 6969,  host_ip: "0.0.0.0", id: "JMX1debug",              auto_correct: true
  config.vm.network :forwarded_port, guest: 6970,  host: 6970,  host_ip: "0.0.0.0", id: "JMX2debug",              auto_correct: true
  config.vm.network :forwarded_port, guest: 8079,  host: 8079,  host_ip: "0.0.0.0", id: "apex",                   auto_correct: true
  config.vm.network :forwarded_port, guest: 22,    host: 2232,  host_ip: "0.0.0.0", id: "ssh",                    auto_correct: true
  config.vm.network :forwarded_port, guest: 1521,  host: 1521,  host_ip: "0.0.0.0", id: "oracle",                 auto_correct: true
  config.vm.network :forwarded_port, guest: 8765,  host: 8765,  host_ip: "0.0.0.0", id: "game1debug",             auto_correct: true
  config.vm.network :forwarded_port, guest: 8766,  host: 8766,  host_ip: "0.0.0.0", id: "game2debug",             auto_correct: true
  config.vm.network :forwarded_port, guest: 8767,  host: 8767,  host_ip: "0.0.0.0", id: "tabledebug",             auto_correct: true
  config.vm.network :forwarded_port, guest: 8768,  host: 8768,  host_ip: "0.0.0.0", id: "nsdebug",                auto_correct: true
  config.vm.network :forwarded_port, guest: 5671,  host: 5671,  host_ip: "0.0.0.0", id: "amqp1",                  auto_correct: true
  config.vm.network :forwarded_port, guest: 5672,  host: 5672,  host_ip: "0.0.0.0", id: "amqp2",                  auto_correct: true
  config.vm.network :forwarded_port, guest: 15672, host: 15672, host_ip: "0.0.0.0", id: "rabbitmqmgmt",           auto_correct: true
  config.vm.network :forwarded_port, guest: 2375,  host: 2375,  host_ip: "0.0.0.0", id: "dockerd",                auto_correct: true
  config.vm.network :forwarded_port, guest: 5601,  host: 5601,  host_ip: "0.0.0.0", id: "kibana",                 auto_correct: true
  config.vm.network :forwarded_port, guest: 9200,  host: 9200,  host_ip: "0.0.0.0", id: "elastic",                auto_correct: true
  config.vm.network :forwarded_port, guest: 5044,  host: 5044,  host_ip: "0.0.0.0", id: "logstash",               auto_correct: true

  config.vm.provider :virtualbox do |vb|
    vb.memory = 14336
    vb.cpus = 2
    vb.linked_clone = true
    vb.customize ['modifyvm', :id, '--cableconnected1', 'on']
  end

  config.vm.provider :libvirt do |libvirt|
      libvirt.memory = 14336
      libvirt.cpus = 2
      libvirt.driver = "kvm"
      config.vm.synced_folder ".", "/vagrant/", type: "sshfs"
      config.vm.network :private_network, ip: "10.0.2.15"
  end
end
question

Most helpful comment

@Veske btw if you want to maintain VirtualBox and libvirt vagrant config in the same file you'll want to look at being able to override config for specific providers see https://www.vagrantup.com/docs/providers/configuration.html#overriding-configuration

example:

Vagrant.configure(2) do |config|
  config.vm.box = "centos/7"

  # Port configuration for Live2 environment
  ...

  config.vm.provider :virtualbox do |vb, override|
    vb.memory = 14336
    vb.cpus = 2
    vb.linked_clone = true
    vb.customize ['modifyvm', :id, '--cableconnected1', 'on']
    override.vm.synced_folder ".", "/vagrant/", type: "sshfs"
  end

  config.vm.provider :libvirt do |libvirt, override|
      libvirt.memory = 14336
      libvirt.cpus = 2
      libvirt.driver = "kvm"
      override.vm.synced_folder ".", "/vagrant/", type: "nfs"
  end
  config.vm.network :private_network, ip: "10.0.2.15"
end

Otherwise anything in the provider block that modifies config is still modifying the global config, because provider blocks are not an 'if this provider do this' type application, but rather more akin to a 'with block'.

All 5 comments

Please use the issue reporting template so that we can assist you quickly and effectively. Thank you.

Included

You have some errors in your Vagrantfile. Try this:

Vagrant.configure(2) do |config|
  config.vm.box = "centos/7"

  # Port configuration for Live2 environment
  config.vm.network :forwarded_port, guest: 8080,  host: 8080,  host_ip: "0.0.0.0", id: "tomcat",                 auto_correct: true
  config.vm.network :forwarded_port, guest: 10500, host: 10500, host_ip: "0.0.0.0", id: "cadvisor",               auto_correct: true
  config.vm.network :forwarded_port, guest: 8500,  host: 8500,  host_ip: "0.0.0.0", id: "consul",                 auto_correct: true
  config.vm.network :forwarded_port, guest: 5800,  host: 5800,  host_ip: "0.0.0.0", id: "frontend-int-json",      auto_correct: true
  config.vm.network :forwarded_port, guest: 5810,  host: 5810,  host_ip: "0.0.0.0", id: "frontend-int-socketio",  auto_correct: true
  config.vm.network :forwarded_port, guest: 5850,  host: 5850,  host_ip: "0.0.0.0", id: "frontend-int",           auto_correct: true
  config.vm.network :forwarded_port, guest: 4800,  host: 4800,  host_ip: "0.0.0.0", id: "frontend-ext-json",      auto_correct: true
  config.vm.network :forwarded_port, guest: 4810,  host: 4810,  host_ip: "0.0.0.0", id: "frontend-ext-socketio",  auto_correct: true
  config.vm.network :forwarded_port, guest: 4850,  host: 4850,  host_ip: "0.0.0.0", id: "frontend-ext",           auto_correct: true
  config.vm.network :forwarded_port, guest: 6969,  host: 6969,  host_ip: "0.0.0.0", id: "JMX1debug",              auto_correct: true
  config.vm.network :forwarded_port, guest: 6970,  host: 6970,  host_ip: "0.0.0.0", id: "JMX2debug",              auto_correct: true
  config.vm.network :forwarded_port, guest: 8079,  host: 8079,  host_ip: "0.0.0.0", id: "apex",                   auto_correct: true
  config.vm.network :forwarded_port, guest: 22,    host: 2232,  host_ip: "0.0.0.0", id: "ssh",                    auto_correct: true
  config.vm.network :forwarded_port, guest: 1521,  host: 1521,  host_ip: "0.0.0.0", id: "oracle",                 auto_correct: true
  config.vm.network :forwarded_port, guest: 8765,  host: 8765,  host_ip: "0.0.0.0", id: "game1debug",             auto_correct: true
  config.vm.network :forwarded_port, guest: 8766,  host: 8766,  host_ip: "0.0.0.0", id: "game2debug",             auto_correct: true
  config.vm.network :forwarded_port, guest: 8767,  host: 8767,  host_ip: "0.0.0.0", id: "tabledebug",             auto_correct: true
  config.vm.network :forwarded_port, guest: 8768,  host: 8768,  host_ip: "0.0.0.0", id: "nsdebug",                auto_correct: true
  config.vm.network :forwarded_port, guest: 5671,  host: 5671,  host_ip: "0.0.0.0", id: "amqp1",                  auto_correct: true
  config.vm.network :forwarded_port, guest: 5672,  host: 5672,  host_ip: "0.0.0.0", id: "amqp2",                  auto_correct: true
  config.vm.network :forwarded_port, guest: 15672, host: 15672, host_ip: "0.0.0.0", id: "rabbitmqmgmt",           auto_correct: true
  config.vm.network :forwarded_port, guest: 2375,  host: 2375,  host_ip: "0.0.0.0", id: "dockerd",                auto_correct: true
  config.vm.network :forwarded_port, guest: 5601,  host: 5601,  host_ip: "0.0.0.0", id: "kibana",                 auto_correct: true
  config.vm.network :forwarded_port, guest: 9200,  host: 9200,  host_ip: "0.0.0.0", id: "elastic",                auto_correct: true
  config.vm.network :forwarded_port, guest: 5044,  host: 5044,  host_ip: "0.0.0.0", id: "logstash",               auto_correct: true

  config.vm.provider :libvirt do |libvirt|
      libvirt.memory = 1336
      libvirt.cpus = 2
      libvirt.driver = "kvm"
  end

  config.vm.network :private_network, ip: "10.0.2.15"
  config.vm.synced_folder ".", "/vagrant", type: "nfs"
end

This results in eth0 being the internal vagrant interface (can't be avoided) and eth1 being 10.0.2.15 with the centos/7 box.

Yes seems it works that way. Thank you!

@Veske btw if you want to maintain VirtualBox and libvirt vagrant config in the same file you'll want to look at being able to override config for specific providers see https://www.vagrantup.com/docs/providers/configuration.html#overriding-configuration

example:

Vagrant.configure(2) do |config|
  config.vm.box = "centos/7"

  # Port configuration for Live2 environment
  ...

  config.vm.provider :virtualbox do |vb, override|
    vb.memory = 14336
    vb.cpus = 2
    vb.linked_clone = true
    vb.customize ['modifyvm', :id, '--cableconnected1', 'on']
    override.vm.synced_folder ".", "/vagrant/", type: "sshfs"
  end

  config.vm.provider :libvirt do |libvirt, override|
      libvirt.memory = 14336
      libvirt.cpus = 2
      libvirt.driver = "kvm"
      override.vm.synced_folder ".", "/vagrant/", type: "nfs"
  end
  config.vm.network :private_network, ip: "10.0.2.15"
end

Otherwise anything in the provider block that modifies config is still modifying the global config, because provider blocks are not an 'if this provider do this' type application, but rather more akin to a 'with block'.

Was this page helpful?
0 / 5 - 0 ratings