Vagrant 无效 IP 范围

Vagrant 无效 IP 范围
root  pop-os  /etc  mkdir vbox
root  pop-os  /etc  cd vbox/
root  pop-os  /etc/vbox  nano networks.conf

* 10.0.0.0/8 192.168.0.0/16
* 2001::/64

我使用这个解决方案来解决 Vagrant 的问题,然后再次运行它:

 root  pop-os  ../metasploitable3-workspace  curl -O https://raw.githubusercontent.com/rapid7/metasploitable3/master/Vagrantfile && vagrant up

错误:

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: 172.28.128.3
  Ranges: 10.0.0.0/8, 192.168.0.0/16, 2001::/64

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

我也尝试了以下方法,因为我在某处看到了相同的错误。

* 172.28.128.0/24

或者 * 0.0.0.0/0 ::/0

我正在关注回购协议:https://github.com/rapid7/metasploitable3 安装metasploitable 3 用于学习目的。 (我的意思是为什么这很困难)。 Packer - Vagrant - VirtualBox 已安装。

答案1

我找到了解决方案:

* 10.0.0.0/8 192.168.0.0/16 172.16.0.0/12

RFC1918 中定义并由 IANA 声明的三个保留专用网络空间的正确定义

相关内容