I'm noticing some errors using Vagrant when firing up and shutting down my vm.
$ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
....
==> default: Waiting for machine to boot. This may take a few minutes...
default: SSH username: vagrant
default: SSH auth method: private key
default: Warning: Connection timeout. Retrying...
default: Warning: Remote connection disconnect. Retrying...
==> default: Machine booted and ready!
GuestAdditions 4.3.10 running --- OK.
==> default: Checking for guest additions in VM...
==> default: Setting hostname...
....
==> default: VM already provisioned. Run `vagrant provision` or use `--provision` to force it
Everything seems to work OK, but then when i try to shut it down it goes from graceful to force..
$ vagrant halt
==> default: Attempting graceful shutdown of VM...
default: Guest communication could not be established! This is usually because
default: SSH is not running, the authentication information was changed,
default: or some other networking issue. Vagrant will force halt, if
default: capable.
==> default: Forcing shutdown of VM...
Any ideas with this, would be nice to get it functioning without errors and warnings.