This happened with two VMs since yesterday. The VM was running fine and was able to connect to internet from the vagrant node as well.After I installed firefox and rebooted the host, things are going wrong. If I start vagrant host from Oracle VM start button, it comes up fine and I can work on the terminal. However, no connectivity to internet, cannot putty into it. Tring it bring it up from command line terminal gives me connection timed out and cannot ssh to it any longer. I configured another VM, with same results after I installed some apps and restarted. I tried removing the apps, but that did not help either. My vagrant file is as below
# -*- mode: ruby -*- # vi: set ft=ruby : # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! VAGRANTFILE_API_VERSION = "2" Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.hostname = "vagrantutil" # Every Vagrant virtual environment requires a box to build off of. config.vm.box = "opscode_centos-6.4_chef-11.4.4.box" # Create a forwarded port mapping which allows access to a specific port # within the machine from a port on the host machine. In the example below, # accessing "localhost:8080" will access port 80 on the guest machine. config.vm.network :forwarded_port, guest: 80, host: 9082 #auto_correct: true # Create a private network, which allows host-only access to the machine # using a specific IP. config.vm.network :private_network, ip: "172.168.33.10" # Share an additional folder to the guest VM. config.vm.synced_folder "../vagrant_data/", "/vagrant_data/" end Any ideas what could be going wrong? Am I missing something? Thanks for any suggestions -- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
