Host: Ubuntu Hardy Desktop
Guest: Ubuntu JeOS (Converted from VMWare using vditool)
I followed this guide to setup HIF: http://forums.virtualbox.org/viewtopic. ... st+network
Code: Select all
sudo apt-get install bridge-utilsCode: Select all
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet manual
up ifconfig $IFACE 0.0.0.0 up
down ifconfig $IFACE down
auto br0
iface br0 inet dhcp
bridge_ports eth0Code: Select all
sudo /etc/init.d/networking restartCode: Select all
sudo VBoxAddIF vbox0 <user> br0Code: Select all
VBoxManage modifyvm "My VM" -hostifdev1 vbox0The problem is that I am not sure how to configure /etc/network/interfaces on the guest as I have messed around with the settings alot already.
I can tell you what is not working, which is what I have right now:
Code: Select all
auto lo
iface lo inet loopback
autho eth0
iface eth0 inet dhcpCode: Select all
eth0: ERROR while getting interface flags: No such device
Bind socket to interface: No such device
Failed to bring up eth0Any help is very much appreciated!
Thanks.