I am creating a bridge to be used as device for a XEN guest. My physical device is eth0 and the bridge is xenbr0. After I start xenbr0 I lose connectivity on eth0. Meanwhile, the guest can access the network.
Here is /etc/conf.d/net:
Code: Select all
config_eth0="192.168.1.61 netmask 255.255.255.0 brd 192.168.1.255"
routes_eth0="default via 192.168.1.1"
dns_servers_eth0="192.168.1.14"
bridge_xenbr0="eth0"
config_xenbr0="dhcp"
routes_xenbr0="default via 192.168.1.1"
brctl_xenbr0="setfd 0
sethello 10
stp off"
rc_net_xenbr0_need="net.eth0"

