Opened 2 years ago
Closed 21 months ago
#21588 closed defect (invalid)
macOS M1 chip :: Vagrant up failing for VirtualBox provider with E_ACCESSDENIED on host-only network
Reported by: | Gibran Castillo | Owned by: | |
---|---|---|---|
Component: | other | Version: | VirtualBox-7.0.6 |
Keywords: | host-only network | Cc: | |
Guest type: | other | Host type: | other |
Description
I am using macOS Ventura version 13.3.1 with the Apple M1 Max chip, VirtualBox Version 7.0.6_BETA4 r155176 (Qt6.3.0), and Vagrant 2.3.4
Whenever I run "vagrant up" to execute the declarative instructions in my Vagrantfile
# Set up the default terminal ENVTERM="linux"
# set minimum version for Vagrant #Vagrant.require_version ">= 2.2.10" Vagrant.configure("2") do |config|
# Box Settings # Set the image for the vagrant box config.vm.box = "opensuse/Leap-15.3.x86_64" ## Set the image version config.vm.box_version = "15.3.9.88"
# Set the static IP for the vagrant box (IPv4 range 192.168.56.1 to 192.168.56.254) config.vm.network "private_network", ip: "192.168.56.2"
# Provider Settings # Configure the parameters for VirtualBox provider config.vm.provider "virtualbox" do |vb|
vb.memory = "4096" vb.cpus = 4 vb.customize ["modifyvm", :id, "--ioapic", "on"]
end
end
I get default: Warning: Connection reset. Retrying... or E_ACCESSDENIED on host-only network
I am not able to create my opensuse/Leap-15.3.x86_64 VM
VirtualBox on Apple Silicon is a developer preview and not officially supported yet, please refrain from opening bug reports in this bugtracker.