From e453b41a859b3df058dc2cde001ca846512d2918 Mon Sep 17 00:00:00 2001 From: Nicolas stig124 FORMICHELLA Date: Wed, 9 Feb 2022 11:37:00 +0100 Subject: [PATCH] [README.md] Update Known Issues Virtualbox doesn't allow, by default on *nix-systems, host-only network connection on the env. range (192.168.55.0/24), update the doc to propose the fix --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index ccec2a3..be47403 100644 --- a/README.md +++ b/README.md @@ -131,3 +131,24 @@ Error is usually "VT-x is not available. (VERR_VMX_NO_VMX)" or similar, when the Resolution seems to be either remove HyperV, or preventing its hypervisor from starting with the command: bcdedit /set hypervisorlaunchtype off, followed by a reboot. + +If you encounter the following issue, that is preventing you from deploying the machines : + +> The IP address configured for the host-only network is not within the +allowed ranges. Please update the address used to be within the allowed +ranges and run the command again. + + Address: 192.168.55.151 + Ranges: 192.168.56.0/21 + +Valid ranges can be modified in the /etc/vbox/networks.conf file. For +more information including valid format see: + + https://www.virtualbox.org/manual/ch06.html#network_hostonly + +- On Linux and MacOS, you need to modify, as root, the `/etc/vbox/networks.conf` file (you can find more explaination in the above link) by adding : + +``` +* 192.168.55.0/24 +``` +