-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Open
Description
Debug output
https://gist.github.com/sgrewelancom/edca50f6e85b0ecaa4a488da304d890f
Expected behavior
Ubuntu VM should be up, and no further error message.
Actual behavior
VM in Parallels is created, can also be ssh'ed to using the obtained IP, but vagrant up still reports "host unreachable" and eventually times out with an error message.
Reproduction information
Vagrant version
Vagrant 2.4.6
Host operating system
mac OS Sequoia 15.5
Guest operating system
Ubuntu 22.04 (bento/ubuntu-22.04)
(Also tested with some other compatible boxes, same issue)
Steps to reproduce
- Create simple vagrantfile using bento/ubuntu-22.04 as box
- Run 'vagrant up' on it.
Vagrantfile
# Copy-paste your Vagrantfile here. Remove any sensitive information such as passwords, authentication tokens, or email addresses.
Vagrant.configure("2") do |config|
config.vm.box = "bento/ubuntu-22.04"
config.vm.provider "parallels" do |prl|
prl.memory = 2048
prl.cpus = 2
end
end