10.0.x.x
DHCPを介して範囲内のIPが自動的に割り当てられるVirtualBox(v4.1.8)VMがあります。
192.168.x.x
代わりに範囲を使用するように変更できますか?
10.0.x.x
DHCPを介して範囲内のIPが自動的に割り当てられるVirtualBox(v4.1.8)VMがあります。
192.168.x.x
代わりに範囲を使用するように変更できますか?
回答:
私が質問を理解したならば、それが言うマニュアルの第6章をチェックすると:
In the VirtualBox graphical user interface, you can configure all these items in the global settings via "File" -> "Settings" -> "Network", which lists all host-only networks which are presently in use. Click on the network name and then on the "Edit" button to the right, and you can modify the adapter and DHCP settings.
File
-> Preferences
-> ...
はい、変更できます。ここにドキュメントがあります:
http://www.virtualbox.org/manual/ch08.html#vboxmanage-dhcpserver
VBoxManage dhcpserver
コマンドを介して処理されます。
通常、VirtualBox DHCPアドレス範囲を変更する必要はありません。このネットワークは内部であり、VMとVirtualBoxアプリケーションの間にのみ存在します。ルーティングは含まれませんが、NATだけが含まれます。
デフォルトのNATモードのままで、外部から仮想マシンへのアクセスを許可する場合、ポートを選択的に開くことができます(ポート転送)。
たとえば、2022ポートを介して内部sshサーバーへのアクセスを許可するには、次のコマンドを使用します。
VBoxManage modifyvm "NameOfVM" --natpf1 "guestssh,tcp,,2022,,22"