On Wed, 16 Jun 2004 17:53:08 +0800 (CST) "vanyew" <[EMAIL PROTECTED]> wrote:
> Dear Stephen, > > I'm a Linux embedded developer. > We want to build the bridge function on our product. > > We use brctl to build the bridge device. > > [EMAIL PROTECTED] /]# brctl show > bridge name bridge id STP enabled interfaces > [EMAIL PROTECTED] /]# brctl addbr br0 > [EMAIL PROTECTED] /]# brctl show > bridge name bridge id STP enabled interfaces > br0 8000.000000000000 yes > [EMAIL PROTECTED] /]# brctl addif br0 eth1 > [EMAIL PROTECTED] /]# brctl addif br0 eth2 > [EMAIL PROTECTED] /]# brctl show > bridge name bridge id STP enabled interfaces > br0 8000.000c294b1073 yes eth1 > eth2 > [EMAIL PROTECTED] /]# > > By default,we hope our bridge device can get ip from both staic and dhcp. > > We can successfully set static ip to br0 by > ifconfig br0 192.168.1.99 netmask 255.255.255.0 up > > But when we try to get ip from dhcp server for br0, > we failed to do this. > [EMAIL PROTECTED] /]#dhcpcd br0 > > The bridge device get no ip from dhcpcd server, > and I also use ethereal to listen the traffic on eth1 and eth2, > we found no any dhcp discover packet was sent out. > Only 802.1d (Spanning Tree Protocol) packet was seen. > > I have read all articles on http://bridge.sourceforge.net/. > I found no any solution to this problem. > Do you have any idea to this problem? It is possible to use DHCP on the bridge device. The problem is that the bridge takes some time to go through initial learning states to acquire the addresses of other bridges. This delay is required by the 802 spec to keep bridges from disturbing networks. You can see the state by doing: brctl showstp br0 After the port is in the "Forwarding" state, it is fully operational. At that point, you can start dhcp. -- Stephen Hemminger mailto:[EMAIL PROTECTED] Open Source Development Lab http://developer.osdl.org/shemminger
_______________________________________________ Bridge mailing list [EMAIL PROTECTED] http://lists.osdl.org/mailman/listinfo/bridge
