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"