I've been using VMware player for about 2 years now, but installed Virtualbox 1.6.2 today because it has amd-v support and now I don't need to edit config files for changing iso mounts etc. I immediately noticed Virtualbox is immensely faster, thanks to amd-v. (I have an Athlon 64 2X 6000+.)
I have set up my kubuntu 7.10 with a static ip address in our home network (192.168.2.xxx), and always give the guest static addresses as wel. I then share my kubuntu root ( / ) with samba, and do the same with the C drive in the XP image.
The problem here is that (because of the bridging) going from the host to the guest is ok but trying to connect from the guest to the host fails. Please note that NAT is (I think) not a solution for me, because I need to access the guest directly (for the file sharing).
Not even ping works. I did a manual setup of my network interfaces for this virtualbox install.
This is very inconvenient, it seemed to work fine with vmware.
Code: Select all
cat /etc/network/interfaces
auto lo
iface lo inet loopback
address 127.0.0.1
netmask 255.0.0.0
iface eth0 inet static
address 192.168.2.100
netmask 255.255.255.0
gateway 192.168.2.1
auto eth0
#virtualbox bridged network interface
iface tap1 inet manual
tunctl_user muts
iface br0 inet dhcp
bridge_ports eth0 tap1
pre-up ip link set eth0 promisc on
auto tap1 br0