Skip to content

Instantly share code, notes, and snippets.

@stojg
Last active August 29, 2015 14:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save stojg/456d733015c6449b0dd1 to your computer and use it in GitHub Desktop.
Save stojg/456d733015c6449b0dd1 to your computer and use it in GitHub Desktop.
Speed up vagrant networking by a gazillion
Vagrant.configure(2) do |config|
config.vm.provider "virtualbox" do |vb|
vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
vb.customize ["modifyvm", :id, "--natdnsproxy1", "on"]
vb.customize ["modifyvm", :id, "--nictype1", "virtio"]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment