Monday, May 6, 2024
 Popular · Latest · Hot · Upcoming
1
rated 0 times [  1] [ 0]  / answers: 1 / hits: 46417  / 1 Year ago, tue, december 27, 2022, 4:56:34

(ANSWER BELOW)



I have problem with implementing Host-Only network in Virtualbox. my host machine is running under Windows 7 Ultimate, and guest OS is Ubuntu Server 12.04.2 64bit.



I configure virtual box host-only adapter.



Virtual box host-only adapter configuration



VirtualBox Host-only adapter - DHCP Server disabled



As you can see DHCP Server is disabled and i try both enabled and disabled but problem still there.



Below is result of



ipconfig /all


from Windows CMD



Windows ipconfig /all Results



Now My Virtual Machine Network Settings



Virtual Machine Network Settings



When i run VM the ubuntu force some problem with network configuration as image below



Ubutnu Booting Network configuration problem



My /etc/network/interfaces file as below:



/etc/network/interfaces content



When i restart networking service, show "Cannot find device eth1, Failed to bring up eth1 as below:



restart networking error



if i go with "ifdown" options, response as bleow:



enter image description here



any help will be appreciated



Thanks in advance






ANSWER



VirtualBox network adapter name on guest machine is not fixed all the time, each time you have disable and enable host adapter from VB prefrences, the network device name post-appended number will increase .
For example, if you disable and enable network host-only adapter five times, the new network name should be eth4, and if it was eight times , network name will should be eth7 and so on.



if you don't know what is your current network device name, use:



ifconfig -a 


it will print all available network adapters ( devices ), find your new name and reconfigure /etc/network/interfaces file with new name.



for DHCP configuration use code below with changing eth5 with your current device name



auto eth5
iface eth5 inet dhcp


And for static ip you can code below: ( you still need to change eth5 with your device name, and also the static ip, no need to change netmask in most situations):



auto eth5
iface eth5 inet static
address 192.168.56.101
netmask 255.255.255.0


I hope this will help somebody else.


More From » networking

 Answers
0

It does not need to be eth1. On my virtual machine, it's eth2.



What does ls /dev/eth* print, in your case?


[#31373] Wednesday, December 28, 2022, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
urvedcaly

Total Points: 171
Total Questions: 118
Total Answers: 124

Location: Cape Verde
Member since Fri, Nov 27, 2020
4 Years ago
urvedcaly questions
Tue, Nov 8, 22, 19:40, 2 Years ago
Fri, May 26, 23, 15:27, 1 Year ago
Wed, Jan 19, 22, 08:09, 2 Years ago
Thu, May 13, 21, 03:34, 3 Years ago
;