You must have minimum 2 interfaces for each bond creation. Here you have 2 bonds. So you need 2 interfaces (NIC cards) ,with both connected to the same subnet ,for each bond each one acting as slave for the bond. Then configuration of 1 bond (where eth0 and eth1 are 2 ethernet cards connected to the same n/w) will be like below:
[r...@m1-linux-a etc]# cat /etc/sysconfig/network-scripts/ifcfg-bond0 DEVICE=bond0 ONBOOT=yes NETMASK=255.255.255.0 IPADDR=10.0.0.245 [r...@m1-linux-a etc]# cat /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE=eth0 MASTER=bond0 SLAVE=yes [r...@m1-linux-a etc]# cat /etc/sysconfig/network-scripts/ifcfg-eth1 DEVICE=eth1 MASTER=bond0 SLAVE=yes [r...@m1-linux-a etc]# cat modules.conf alias bond0 bonding alias bond1 bonding # in case you use a second bond also After that restart the network interfaces -- This message posted from opensolaris.org _______________________________________________ networking-discuss mailing list networking-discuss@opensolaris.org