A D wrote: [...] > # The primary network interface > allow-hotplug eth1 > iface eth1 inet static > address 192.168.1.103 > netmask 255.255.255.0 > network 192.168.1.0 > broadcast 192.168.1.255 > gateway 192.168.1.1 > # dns-* options are implemented by the resolvconf package, if installed > dns-nameservers XXX.XXX.XXX.XXX XXX.XXX.XXX.XXX > > > auto tap0 > iface tap0 inet manual > up ifconfig $IFACE 0.0.0.0 up > down ifconfig $IFACE down > tunctl_user ad > > auto br0 > iface br0 inet static > address 192.168.1.103 > network 192.168.1.0 > netmask 255.255.255.0 > broadcast 192.168.1.255 > gateway 192.168.1.1 > bridge_ports eth1 tap0
This is a misconfiguration. DO NOT assign any configuration to eth1 if you want to use it in a bridge. Just configure the bridge. If fact you don't even need to mention the physical interface you want to use for bridging anywhere but in the bridge_ports line in the br0 config. I suspect (the ifconfig output you provide isn't helpful in that context, I'd need the routing table, route -n) that this prevents things from working. Like setting up routes incorrectly. -- Dr. Klaus Espenlaub innotek GmbH, http://www.innotek.de _______________________________________________ vbox-users mailing list [email protected] http://vbox.innotek.de/mailman/listinfo/vbox-users
