- VMs
VBoxManage list vms // List all the virtual machines
- Network
---# Port Forwarding
// if vm is powered
VBoxManage controlvm "MyVmName" natpf1 "guestSsh,tcp,,2222,,22"
// if vm is shutdown
VBoxManage modifyvm "MyVmName" --natpf1 "guestssh,tcp,,2222,,22"
- Nested Virtualization
If you can't change it from the interface, run the following cmd:
VBoxManage modifyvm <VMName> --nested-hw-virt on
Top comments (0)