When doing a vagrant up I get:
vagrant up
Got different reports about installed GuestAdditions version: Virtualbox on your host claims: 5.0.28 VBoxService in
I've found a working solution. Add the following code to your Vagrantfile somewhere in the Vagrant.configure("2") do |config| section.
if Vagrant.has_plugin? "vagrant-vbguest" config.vbguest.no_install = true config.vbguest.auto_update = false config.vbguest.no_remote = true end