VVV: Network connection not detected when provisioning

Expected Behavior

Provisioning

Current Behavior

I get the following output in my terminal: https://gist.github.com/salvatoredibenedetto/8fc3b3dc1139d30d2d72748d1d8e6233

Possible Solution

It looks like that the Vagrant Virtual Machine is not able to connect to my wifi network.

Steps to Reproduce (for bugs)

  1. Run from terminal vagrant up --provision
  2. After getting the error described in the output pasted up, i run from the terminal network_detection function who is declared in the provision/provision.sh and i get: Network connection detected...
  3. Then run vagrant ssh and from the vagrant shell run again the function network_detection and this time i get Network connection not detected. Unable to reach google.com...

Context

Just trying to do the first provisioning

Your Environment

  • VVV version: 2.0.0
  • Vagrant version: 1.9.5
  • VM Provider name: VirtualBox
  • VM Provider version: 5.1.22 r115126 (Qt5.6.2)
  • Operating System and version: HOST: Mac OS Sierra 10.12.5 - GUEST: Ubuntu 14.04.5 LTS (GNU/Linux 3.13.0-119-generic x86_64)

About this issue

  • Original URL
  • State: closed
  • Created 7 years ago
  • Comments: 16 (5 by maintainers)

Most upvoted comments

@salvatoredibenedetto has this VM ever worked or is it a fresh first time run? Have you tried destroying the box and recreating it from scratch?

# make sure this is the latest VVV
git pull
# Turn off the machine
vagrant halt
# Destroy the machine
vagrant destroy
# Make sure we use the latest version of the base box§
vagrant box update
# Make sure the recommended vagrant plugins are installed
vagrant plugin install vagrant-triggers vagrant-vbguest vagrant-hostsupdater
# And that they're all up to date
vagrant plugin update
# Start VVV and create the VM from scratch
vagrant up --provision

I’m assuming you’re running on the master branch?