I'm using SuSE Enterprise 10 (SP1), and trying to get networking working on a Windows XP (SP2) client. I'm using the latest Virtualbox 1.6.0.
I'd much prefer to use the Host Interface methodolgy as opposed to NAT and this is what I'm trying to do...
I've tried following the manual, but no luck. Here are the steps I've performed thus far:
1) Installed the bridging utils:
Code: Select all
sudo /sbin/yast -i bridge-utils
Code: Select all
BOOTPROTO=’static’
IPADDR='10.0.0.220'
NETMASK=’255.255.255.0’
STARTMODE=’auto’
USERCONTROL=’no’
DHCLIENT_TIMEOUT=30
BRIDGE=’yes’
BRIDGE_PORTS=’eth0’
3) Changed the eth0 config to a static IP of 0.0.0.0.
4) Activiated the bridge:
Code: Select all
sudo /sbin/ifdown eth0
sudo /sbin/ifup br0
Code: Select all
sudo VBoxAddIF vbox0 root br0
7) Set my Windows client to an IP of 10.0.0.220
This doesn't work. Connection is seen in Windows but no net access (there doesn't seem to be any rx packets). There is net access on the client.
I looked at the ifconfig at vbox0 only had an ipv6 address, so I tried adding the ipv4 address I expected it to use:
Code: Select all
ifconfig vbox0 10.0.0.220
I also can now not VNC remotely into the machine, and have to go through another machine on the same network - but this can be resolved later.
What am I doing wrong? Thanks in advance.