> I have 2 network adapters, connected to the same switch. The switch
 > does not support link-aggregation.
 > 
 > I would like to use both to maximize my bandwith/packet capacity.
 > 
 > Currently I am using only one for all network, I am trying to activate
 > the second one. I connected it, and issue:
 > 
 > ifconfig e1000g1 plumb
 > ifconfig e1000g1 dhcp
 > 
 > And I can clearly see from the DHCP server logs an address been
 > requested, and an address been sent back. However immediately after
 > that there's a DHCPRELEASE and the interface ends up without an
 > address.

That's strange.  However, to avoid problems with broadcast/multicast
packet duplication (and for other reasons), if you have multiple IP
interfaces on the same LAN, you need to put them together into an IPMP
group.  Thankfully, this is easy to do:

   ifconfig e1000g0 unplumb
   ifconfig e1000g1 unplumb
   ifconfig e1000g0 plumb group ipmp0 up
   ifconfig e1000g1 plumb group ipmp0 up
   ifconfig ipmp0 dhcp
   ifconfig ipmp0:1 plumb
   ifconfig ipmp0:1 dhcp

You should end up with two DHCP-assigned IP addresses on ipmp0 and
e1000g0 and e1000g1 will be used to send/receive packets.  You will also
be able to pull the cable from e1000g0 or e1000g1 without disrupting any
of your connections.  For more, see
http://hub.opensolaris.org/bin/download/Project+clearview/docs/ipmpov.pdf

--
meem
_______________________________________________
networking-discuss mailing list
networking-discuss@opensolaris.org

Reply via email to