放浪する誤ったIP範囲

放浪する誤った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で宣言された3つの予約済みプライベートネットワークスペースの正しい定義

おすすめ記事