From f77ddfd37dda411658e65b1498e559a5f6203c03 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Mon, 5 Oct 2015 18:28:11 +0200 Subject: [PATCH] Making VM use the fixed IP address 10.0.0.100 --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 99f17c9..a24c53a 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -78,7 +78,7 @@ Vagrant.configure(2) do |config| config.vm.provider "virtualbox" do |vb| #config.vm.network "private_network", :type => 'dhcp', :name => 'vboxnet0', :adapter => 2 - config.vm.network "private_network", type: "dhcp" + config.vm.network "private_network", ip: "10.0.0.100" end end