-
-
Save indradhanush/ba89e403650f2b9147ba to your computer and use it in GitHub Desktop.
Revisions
-
indradhanush revised this gist
Aug 29, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ Vagrant::Config.run do |config| # ... vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] end -
mitchellh revised this gist
Feb 25, 2012 . 1 changed file with 2 additions and 10 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,13 +1,5 @@ Vagrant::Config.run do |config| # ... config.vm.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] end -
mitchellh renamed this gist
Oct 11, 2011 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
mitchellh created this gist
Oct 11, 2011 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ Vagrant::Config.run do |config| # ... config.vm.customize do |vm| # Use the host resolver for DNS so that VPN continues # to work within the VM vm.network_adapters.each do |na| if na.enabled? && na.nat_driver na.nat_driver.dns_use_host_resolver = true end end end end