fc73097874
For a limitation of IP address range of hostonly network which was added in the recent update in VirtualBox [1], allowed only 192.168.56.0/21, the installer is terminated without you give appropriate IP addresses to your VMs. Forwarding port `10080` for HTTP is also invalid in security for some browsers. `20080` is valid for the restriction. This update is to update default values of IP address and port to be allowed. [1] https://www.virtualbox.org/manual/ch06.html#network_hostonly Closes-Bug: #1980312 Signed-off-by: Yasufumi Ogawa <yasufum.o@gmail.com> Change-Id: I7fbce874ce2445ea72e627e0ad6309062fac9292
30 lines
565 B
YAML
30 lines
565 B
YAML
global:
|
|
# (optional) Path of your SSH public key. Default is "~/.ssh/id_rsa.pub".
|
|
#ssh_pub_key: "~/.ssh/id_rsa.pub"
|
|
|
|
machines:
|
|
|
|
- hostname: controller
|
|
provider: virtualbox
|
|
box: ubuntu/focal64
|
|
nof_cpus: 4
|
|
mem_size: 12
|
|
disk_size: 50
|
|
private_ips:
|
|
- 192.168.56.11
|
|
public_ips:
|
|
fwd_port_list:
|
|
- guest: 80
|
|
host: 20080
|
|
|
|
- hostname: compute
|
|
provider: virtualbox
|
|
box: ubuntu/focal64
|
|
nof_cpus: 4
|
|
mem_size: 8
|
|
disk_size: 50
|
|
private_ips:
|
|
- 192.168.56.12
|
|
public_ips:
|
|
fwd_port_list:
|