Vagrant.configure("2") do |config| config.vm.post_up_message = "VyOS box. See https://app.vagrantup.com/vyos for help and bug reports" config.vm.synced_folder './', '/vagrant', type: "rsync", owner: 'vyos', group: 'users', mount_options: ['dmode=775,fmode=775'] config.ssh.username = "vyos" config.ssh.password = "vyos" config.vm.provider :libvirt do |libvirt| libvirt.driver = "kvm" libvirt.connect_via_ssh = false libvirt.username = "root" libvirt.storage_pool_name = "default" end end