bridge should be default route

otherwise the guests don't do what you think they will
This commit is contained in:
Sean Dague
2014-03-27 15:59:48 -04:00
parent 20ed03aeb2
commit 2c453a2ac9

2
Vagrantfile vendored
View File

@@ -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