From 2c453a2ac93e6498324dd9d157b93e1918b77549 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Thu, 27 Mar 2014 15:59:48 -0400 Subject: [PATCH] bridge should be default route otherwise the guests don't do what you think they will --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 1ed216d..65e2628 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -87,7 +87,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # Create a public network, which generally matched to bridged network. # Bridged networks make the machine appear as another physical device on # your network. - config.vm.network :public_network, :bridge => conf['bridge_int'] + config.vm.network :public_network, :bridge => conf['bridge_int'], :use_dhcp_assigned_default_route => true config.vm.provider :virtualbox do |vb| vb.customize ["modifyvm", :id, "--nicpromisc2", "allow-all"] end