Hi,
I googled a while to reach here because similar issue hit me.
- My vbox VM was behind corporate firewall with ntlm authentication.
- I installed
vagrant-proxyconf- Add proxy setting Vagrantfile as following:
if Vagrant.has_plugin?("vagrant-proxyconf")
config.proxy.http = "
http://domain\user:passwd@ip_addr:port/"
config.proxy.https = "
http://domain\user:passwd@ip_addr:port/"
config.proxy.no_proxy = "localhost,127.0.0.1,.
example.com"
end
Still it didn't work fine after `sudo apt-get update`.
what's best solution for me?
thanks.