We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem: DNS not properly working on vagrant boxes on some Windows installations using the standard setup.
How to reproduce: ping any host by it's hostname (eg ping google.com) it should not resolve.
ping google.com
How to fix:
config.vm.provider :virtualbox do |vb| vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] end
How to validate: Ping any host again - it should now resolve correctly
This was tested using a Win10 Pro (build 1703) - further investigation might be required.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem:
DNS not properly working on vagrant boxes on some Windows installations using the standard setup.
How to reproduce:
ping any host by it's hostname (eg
ping google.com
) it should not resolve.How to fix:
config.vm.provider :virtualbox do |vb| vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] end
How to validate:
Ping any host again - it should now resolve correctly
This was tested using a Win10 Pro (build 1703) - further investigation might be required.
The text was updated successfully, but these errors were encountered: