Hi There -
I don't know if you saw the output from Vagrant, but when I assign a private ip with the last octet being `1` I get this warning:
brian@localghost:vagrant-sandbox % be vagrant up
Bringing machine 'bork' up with 'virtualbox' provider...
==> bork: You assigned a static IP ending in ".1" to this machine.
==> bork: This is very often used by the router and can cause the
==> bork: network to not work properly. If the network doesn't work
==> bork: properly, try changing this IP.
...
...
It's possible, as the warning mentioned, that assigning one of those IPs has caused something to go wrong with your
network on the guest. There is nothing in Vagrant actually shutting down your network or anything. Vagrant simply creates
the network interface with the static IP defined in your Vagrantfile, so it's likely an issue with your VirtualBox network handling
that IP (or even an issue with the box you are using). For example, I was able to get this to work just fine with the bento/ubuntu-16.04 box:
brian@localghost:vagrant-sandbox % be vagrant ssh bork -c "ping www.google.com" ±[●][master] ^C
3 packets transmitted, 3 received, 0% packet loss, time 2005ms
rtt min/avg/max/mdev = 9.180/11.018/12.327/1.343 ms
Connection to 127.0.0.1 closed.
Hope that helps, thanks!