<div dir="ltr">if those files you cat in your post are from the system, it looks like you have an extra E in line one of the ifcfg-bond0 file:<div>DEVICEE=</div><div>instead of </div><div>DEVICE=<br><div class="gmail_extra">
<br></div><div class="gmail_extra">I always put my parameters in the device ifcfg files myself and that always works for me.</div><div class="gmail_extra"><br clear="all"><div>James <br></div>
<br><br><div class="gmail_quote">On Mon, Jul 15, 2013 at 3:15 PM,  <span dir="ltr">&lt;<a href="mailto:clue-request@cluedenver.org" target="_blank">clue-request@cluedenver.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Send clue mailing list submissions to<br>
        <a href="mailto:clue@cluedenver.org">clue@cluedenver.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="http://cluedenver.org/mailman/listinfo/clue" target="_blank">http://cluedenver.org/mailman/listinfo/clue</a><br>
or, via email, send a message with subject or body &#39;help&#39; to<br>
        <a href="mailto:clue-request@cluedenver.org">clue-request@cluedenver.org</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:clue-owner@cluedenver.org">clue-owner@cluedenver.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than &quot;Re: Contents of clue digest...&quot;<br>
<br>
<br>
Today&#39;s Topics:<br>
<br>
   1. EL-6 Ethernet port bonding (Christopher Cross)<br>
   2. Re: EL-6 Ethernet port bonding (adam bultman)<br>
   3. Re: EL-6 Ethernet port bonding (Christopher Cross)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Mon, 15 Jul 2013 14:35:30 -0600<br>
From: Christopher Cross &lt;<a href="mailto:g1ccross@gmail.com">g1ccross@gmail.com</a>&gt;<br>
Subject: [clue] EL-6 Ethernet port bonding<br>
To: &quot;CLUE&#39;s mailing list&quot; &lt;<a href="mailto:clue@cluedenver.org">clue@cluedenver.org</a>&gt;<br>
Message-ID:<br>
        &lt;CANMPyz-+=ziaLr9_p_SiQ=V7n=<a href="mailto:HeeUKSWE2woko3_FH-TKXAww@mail.gmail.com">HeeUKSWE2woko3_FH-TKXAww@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;windows-1252&quot;<br>
<br>
I cannot for the life of me get port bonding to work in EL-6. Here is what<br>
the ifcfg files and modprobe.d/bonding.conf look like<br>
<br>
# cat ifcfg-bond0<br>
&gt; DEVICEE=&quot;bond0&quot;<br>
&gt; ONBOOT=&quot;yes&quot;<br>
&gt; BOOTPROTO=&quot;none&quot;<br>
&gt; IPADDR=&quot;172.16.200.11&quot;<br>
&gt; IPV6INIT=&quot;no&quot;<br>
&gt; NETMASK=&quot;255.255.255.0&quot;<br>
&gt; USERCTL=no<br>
&gt; BONDING_OPTS=&quot;mode=4 miimon=100&quot;<br>
<br>
<br>
# cat ifcfg-p2p1<br>
&gt; DEVICE=p2p1<br>
&gt; BOOTPROTO=?none?<br>
&gt; HWADDR=xxxxxxxx<br>
&gt; NM_CONTROLLED=?no?<br>
&gt; ONBOOT=?yes?<br>
&gt; TYPE=?Ethernet?<br>
&gt; UUID=xxxxxxx<br>
&gt; MASTER=bond0<br>
&gt; SLAVE=yes<br>
&gt; USERCTL=no<br>
<br>
<br>
# cat ifcfg-p2p2<br>
&gt; DEVICE=p2p2<br>
&gt; BOOTPROTO=?none?<br>
&gt; HWADDR=xxxxxxxx<br>
&gt; NM_CONTROLLED=?no?<br>
&gt; ONBOOT=?yes?<br>
&gt; TYPE=?Ethernet?<br>
&gt; UUID=xxxxxxx<br>
&gt; MASTER=bond0<br>
&gt; SLAVE=yes<br>
&gt; USERCTL=no<br>
<br>
<br>
# cat /etc/modprobe.d/bond.conf<br>
&gt; alias bond0 bonding<br>
<br>
<br>
# lsmod | grep bonding<br>
&gt; bonding               127363  0<br>
&gt; 8021q                  25317  1 bonding<br>
&gt; ipv6                  321454  86<br>
&gt; bonding,ip6t_REJECT,nf_conntrack_ipv6,nf_defrag_ipv6<br>
<br>
<br>
I run service network restart and get. I should note that the bonding<br>
module is not loaded at boot.<br>
<br>
# service network restart<br>
<br>
Shutting down loopback interface:                          [  OK  ]<br>
&gt; Bringing up loopback interface:                            [  OK  ]<br>
&gt; Bringing up interface bond0:  Device does not seem to be present, delaying<br>
&gt; initialization.<br>
&gt;                                                            [FAILED]<br>
<br>
<br>
Now I can create the bond manually and it works.<br>
<br>
# modprobe bonding mode=4 miimon=100<br>
&gt; # ifconfig bond0 <a href="http://172.16.200.11/24" target="_blank">172.16.200.11/24</a><br>
&gt; # ifenslave bond0 p2p1<br>
&gt; # ifenslave bond0 p2p2<br>
&gt; # ping -c 3 172.16.200.13<br>
&gt; PING 172.16.200.13 (172.16.200.13) 56(84) bytes of data.<br>
&gt; 64 bytes from <a href="http://172.16.200.13" target="_blank">172.16.200.13</a>: icmp_seq=1 ttl=64 time=0.806 ms<br>
&gt; 64 bytes from <a href="http://172.16.200.13" target="_blank">172.16.200.13</a>: icmp_seq=2 ttl=64 time=0.213 ms<br>
&gt; 64 bytes from <a href="http://172.16.200.13" target="_blank">172.16.200.13</a>: icmp_seq=3 ttl=64 time=0.212 ms<br>
&gt; --- 172.16.200.13 ping statistics ---<br>
&gt; 3 packets transmitted, 3 received, 0% packet loss, time 2000ms<br>
&gt; rtt min/avg/max/mdev = 0.212/0.410/0.806/0.280 ms<br>
<br>
<br>
#cat /proc/net/bonding/bond0<br>
&gt; Ethernet Channel Bonding Driver: v3.6.0 (September 26, 2009)<br>
&gt; Bonding Mode: IEEE 802.3ad Dynamic link aggregation<br>
&gt; Transmit Hash Policy: layer2 (0)<br>
&gt; MII Status: up<br>
&gt; MII Polling Interval (ms): 100<br>
&gt; Up Delay (ms): 0<br>
&gt; Down Delay (ms): 0<br>
&gt; 802.3ad info<br>
&gt; LACP rate: slow<br>
&gt; Aggregator selection policy (ad_select): stable<br>
&gt; Active Aggregator Info:<br>
&gt; Aggregator ID: 1<br>
&gt; Number of ports: 2<br>
&gt; Actor Key: 17<br>
&gt; Partner Key: 682<br>
&gt; Partner Mac Address: xxxxxx<br>
&gt; Slave Interface: p2p1<br>
&gt; MII Status: up<br>
&gt; Speed: 1000 Mbps<br>
&gt; Duplex: full<br>
&gt; Link Failure Count: 0<br>
&gt; Permanent HW addr: xxxxxxx<br>
&gt; Aggregator ID: 1<br>
&gt; Slave queue ID: 0<br>
&gt; Slave Interface: p2p2<br>
&gt; MII Status: up<br>
&gt; Speed: 1000 Mbps<br>
&gt; Duplex: full<br>
&gt; Link Failure Count: 0<br>
&gt; Permanent HW addr: xxxxxxx<br>
&gt; Aggregator ID: 1<br>
&gt; Slave queue ID: 0<br>
<br>
<br>
Not sure what I am doing wrong but I need some help.<br>
<br>
<br>
Christopher Cross<br>
<a href="mailto:g1ccross@gmail.com">g1ccross@gmail.com</a><br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://cluedenver.org/pipermail/clue/attachments/20130715/de1fcfeb/attachment-0001.html" target="_blank">http://cluedenver.org/pipermail/clue/attachments/20130715/de1fcfeb/attachment-0001.html</a><br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Mon, 15 Jul 2013 13:09:52 -0800<br>
From: adam bultman &lt;<a href="mailto:adamb@glaven.org">adamb@glaven.org</a>&gt;<br>
Subject: Re: [clue] EL-6 Ethernet port bonding<br>
To: CLUE&#39;s mailing list &lt;<a href="mailto:clue@cluedenver.org">clue@cluedenver.org</a>&gt;<br>
Message-ID: &lt;<a href="mailto:51E46520.8060101@glaven.org">51E46520.8060101@glaven.org</a>&gt;<br>
Content-Type: text/plain; charset=UTF-8<br>
<br>
Your modprobe.conf, or modprobe.d stuff, is missing the bonding info.<br>
<br>
I&#39;m not sure how version 6 does it, but on Centos5.9, I have:<br>
<br>
alias bond0 bonding<br>
options bond0 mode=4 miimon=100 downdelay=200<br>
<br>
<br>
in my /etc/modprobe.conf file.  You might need to put it in<br>
/etc/modprobe.d/bonding or something, though.<br>
<br>
<br>
On 07/15/2013 12:35 PM, Christopher Cross wrote:<br>
&gt; I cannot for the life of me get port bonding to work in EL-6. Here is<br>
&gt; what the ifcfg files and modprobe.d/bonding.conf look like<br>
&gt;<br>
&gt;     # cat ifcfg-bond0?<br>
&gt;     DEVICEE=&quot;bond0&quot;<br>
&gt;     ONBOOT=&quot;yes&quot;<br>
&gt;     BOOTPROTO=&quot;none&quot;<br>
&gt;     IPADDR=&quot;172.16.200.11&quot;<br>
&gt;     IPV6INIT=&quot;no&quot;<br>
&gt;     NETMASK=&quot;255.255.255.0&quot;<br>
&gt;     USERCTL=no<br>
&gt;     BONDING_OPTS=&quot;mode=4 miimon=100&quot;<br>
&gt;<br>
&gt;<br>
&gt;     # cat ifcfg-p2p1<br>
&gt;     DEVICE=p2p1<br>
&gt;     BOOTPROTO=?none?<br>
&gt;     HWADDR=xxxxxxxx<br>
&gt;     NM_CONTROLLED=?no?<br>
&gt;     ONBOOT=?yes?<br>
&gt;     TYPE=?Ethernet?<br>
&gt;     UUID=xxxxxxx<br>
&gt;     MASTER=bond0<br>
&gt;     SLAVE=yes<br>
&gt;     USERCTL=no<br>
&gt;<br>
&gt;<br>
&gt;     # cat ifcfg-p2p2<br>
&gt;     DEVICE=p2p2<br>
&gt;     BOOTPROTO=?none?<br>
&gt;     HWADDR=xxxxxxxx<br>
&gt;     NM_CONTROLLED=?no?<br>
&gt;     ONBOOT=?yes?<br>
&gt;     TYPE=?Ethernet?<br>
&gt;     UUID=xxxxxxx<br>
&gt;     MASTER=bond0<br>
&gt;     SLAVE=yes<br>
&gt;     USERCTL=no<br>
&gt;<br>
&gt;<br>
&gt;     # cat /etc/modprobe.d/bond.conf?<br>
&gt;     alias bond0 bonding<br>
&gt;<br>
&gt;<br>
&gt;     # lsmod | grep bonding<br>
&gt;     bonding ? ? ? ? ? ? ? 127363 ?0?<br>
&gt;     8021q ? ? ? ? ? ? ? ? ?25317 ?1 bonding<br>
&gt;     ipv6 ? ? ? ? ? ? ? ? ?321454 ?86<br>
&gt;     bonding,ip6t_REJECT,nf_conntrack_ipv6,nf_defrag_ipv6<br>
&gt;<br>
&gt;<br>
&gt; I run service network restart and get. I should note that the bonding<br>
&gt; module is not loaded at boot.<br>
&gt;<br>
&gt;     # service network restart?<br>
&gt;<br>
&gt;     Shutting down loopback interface: ? ? ? ? ? ? ? ? ? ? ? ? ?[ ?OK ?]<br>
&gt;     Bringing up loopback interface: ? ? ? ? ? ? ? ? ? ? ? ? ? ?[ ?OK ?]<br>
&gt;     Bringing up interface bond0: ?Device does not seem to be present,<br>
&gt;     delaying initialization.<br>
&gt;     ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?[FAILED]<br>
&gt;<br>
&gt;<br>
&gt; Now I can create the bond manually and it works.<br>
&gt;<br>
&gt;     # modprobe bonding mode=4 miimon=100<br>
&gt;     # ifconfig bond0 <a href="http://172.16.200.11/24" target="_blank">172.16.200.11/24</a> &lt;<a href="http://172.16.200.11/24" target="_blank">http://172.16.200.11/24</a>&gt;<br>
&gt;     # ifenslave bond0 p2p1<br>
&gt;     # ifenslave bond0 p2p2<br>
&gt;     # ping -c 3 172.16.200.13<br>
&gt;     PING 172.16.200.13 (172.16.200.13) 56(84) bytes of data.<br>
&gt;     64 bytes from 172.16.200.13 &lt;<a href="http://172.16.200.13" target="_blank">http://172.16.200.13</a>&gt;: icmp_seq=1<br>
&gt;     ttl=64 time=0.806 ms<br>
&gt;     64 bytes from 172.16.200.13 &lt;<a href="http://172.16.200.13" target="_blank">http://172.16.200.13</a>&gt;: icmp_seq=2<br>
&gt;     ttl=64 time=0.213 ms<br>
&gt;     64 bytes from 172.16.200.13 &lt;<a href="http://172.16.200.13" target="_blank">http://172.16.200.13</a>&gt;: icmp_seq=3<br>
&gt;     ttl=64 time=0.212 ms<br>
&gt;     --- 172.16.200.13 ping statistics ---<br>
&gt;     3 packets transmitted, 3 received, 0% packet loss, time 2000ms<br>
&gt;     rtt min/avg/max/mdev = 0.212/0.410/0.806/0.280 ms<br>
&gt;<br>
&gt;<br>
&gt;     #cat /proc/net/bonding/bond0<br>
&gt;     Ethernet Channel Bonding Driver: v3.6.0 (September 26, 2009)<br>
&gt;     Bonding Mode: IEEE 802.3ad Dynamic link aggregation<br>
&gt;     Transmit Hash Policy: layer2 (0)<br>
&gt;     MII Status: up<br>
&gt;     MII Polling Interval (ms): 100<br>
&gt;     Up Delay (ms): 0<br>
&gt;     Down Delay (ms): 0<br>
&gt;     802.3ad info<br>
&gt;     LACP rate: slow<br>
&gt;     Aggregator selection policy (ad_select): stable<br>
&gt;     Active Aggregator Info:<br>
&gt;     Aggregator ID: 1<br>
&gt;     Number of ports: 2<br>
&gt;     Actor Key: 17<br>
&gt;     Partner Key: 682<br>
&gt;     Partner Mac Address: xxxxxx<br>
&gt;     Slave Interface: p2p1<br>
&gt;     MII Status: up<br>
&gt;     Speed: 1000 Mbps<br>
&gt;     Duplex: full<br>
&gt;     Link Failure Count: 0<br>
&gt;     Permanent HW addr: xxxxxxx<br>
&gt;     Aggregator ID: 1<br>
&gt;     Slave queue ID: 0<br>
&gt;     Slave Interface: p2p2<br>
&gt;     MII Status: up<br>
&gt;     Speed: 1000 Mbps<br>
&gt;     Duplex: full<br>
&gt;     Link Failure Count: 0<br>
&gt;     Permanent HW addr: xxxxxxx<br>
&gt;     Aggregator ID: 1<br>
&gt;     Slave queue ID: 0<br>
&gt;<br>
&gt;<br>
&gt; Not sure what I am doing wrong but I need some help.<br>
&gt;<br>
&gt;<br>
&gt; Christopher Cross<br>
&gt; <a href="mailto:g1ccross@gmail.com">g1ccross@gmail.com</a> &lt;mailto:<a href="mailto:g1ccross@gmail.com">g1ccross@gmail.com</a>&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; clue mailing list: <a href="mailto:clue@cluedenver.org">clue@cluedenver.org</a><br>
&gt; For information, account preferences, or to unsubscribe see:<br>
&gt; <a href="http://cluedenver.org/mailman/listinfo/clue" target="_blank">http://cluedenver.org/mailman/listinfo/clue</a><br>
<br>
--<br>
Adam<br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Mon, 15 Jul 2013 15:15:05 -0600<br>
From: Christopher Cross &lt;<a href="mailto:g1ccross@gmail.com">g1ccross@gmail.com</a>&gt;<br>
Subject: Re: [clue] EL-6 Ethernet port bonding<br>
To: &quot;CLUE&#39;s mailing list&quot; &lt;<a href="mailto:clue@cluedenver.org">clue@cluedenver.org</a>&gt;<br>
Message-ID:<br>
        &lt;CANMPyz-=B7Xov3f3eSNPAvV=g6udbXKj8LKCsa=<a href="mailto:aNF-G-qXZDQ@mail.gmail.com">aNF-G-qXZDQ@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;utf-8&quot;<br>
<br>
I attempted both adding the options to my modprobe.d/bonding.conf and<br>
moving everything to /etc/modprobe.conf but both failed the same<br>
way. /etc/modprobe.conf is deprecated and the Red Hat docs say to not put<br>
the options in the bonding.conf.<br>
<br>
From<br>
<a href="https://access.redhat.com/site/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Deployment_Guide/s2-networkscripts-interfaces-chan.html" target="_blank">https://access.redhat.com/site/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Deployment_Guide/s2-networkscripts-interfaces-chan.html</a><br>

<br>
&gt; Parameters for the bonding kernel module must be specified as a<br>
&gt; space-separated list in the BONDING_OPTS=&quot;*bonding parameters*&quot; directive<br>
&gt; in the ifcfg-bond*N* interface file. Do*not* specify options for the<br>
&gt; bonding device in /etc/modprobe.d/*bonding*.conf, or in the deprecated<br>
&gt; /etc/modprobe.conf file. For further instructions and advice on<br>
&gt; configuring the bonding module and to view the list of bonding parameters,<br>
&gt; refer to Section 25.7.2, ?Using Channel Bonding?&lt;<a href="https://access.redhat.com/site/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Deployment_Guide/sec-Using_Channel_Bonding.html" target="_blank">https://access.redhat.com/site/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Deployment_Guide/sec-Using_Channel_Bonding.html</a>&gt;<br>

&gt; .<br>
<br>
<br>
Christopher Cross<br>
<a href="mailto:g1ccross@gmail.com">g1ccross@gmail.com</a><br>
<br>
<br>
<br>
On Mon, Jul 15, 2013 at 3:09 PM, adam bultman &lt;<a href="mailto:adamb@glaven.org">adamb@glaven.org</a>&gt; wrote:<br>
<br>
&gt; Your modprobe.conf, or modprobe.d stuff, is missing the bonding info.<br>
&gt;<br>
&gt; I&#39;m not sure how version 6 does it, but on Centos5.9, I have:<br>
&gt;<br>
&gt; alias bond0 bonding<br>
&gt; options bond0 mode=4 miimon=100 downdelay=200<br>
&gt;<br>
&gt;<br>
&gt; in my /etc/modprobe.conf file.  You might need to put it in<br>
&gt; /etc/modprobe.d/bonding or something, though.<br>
&gt;<br>
&gt;<br>
&gt; On 07/15/2013 12:35 PM, Christopher Cross wrote:<br>
&gt; &gt; I cannot for the life of me get port bonding to work in EL-6. Here is<br>
&gt; &gt; what the ifcfg files and modprobe.d/bonding.conf look like<br>
&gt; &gt;<br>
&gt; &gt;     # cat ifcfg-bond0?<br>
&gt; &gt;     DEVICEE=&quot;bond0&quot;<br>
&gt; &gt;     ONBOOT=&quot;yes&quot;<br>
&gt; &gt;     BOOTPROTO=&quot;none&quot;<br>
&gt; &gt;     IPADDR=&quot;172.16.200.11&quot;<br>
&gt; &gt;     IPV6INIT=&quot;no&quot;<br>
&gt; &gt;     NETMASK=&quot;255.255.255.0&quot;<br>
&gt; &gt;     USERCTL=no<br>
&gt; &gt;     BONDING_OPTS=&quot;mode=4 miimon=100&quot;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;     # cat ifcfg-p2p1<br>
&gt; &gt;     DEVICE=p2p1<br>
&gt; &gt;     BOOTPROTO=?none?<br>
&gt; &gt;     HWADDR=xxxxxxxx<br>
&gt; &gt;     NM_CONTROLLED=?no?<br>
&gt; &gt;     ONBOOT=?yes?<br>
&gt; &gt;     TYPE=?Ethernet?<br>
&gt; &gt;     UUID=xxxxxxx<br>
&gt; &gt;     MASTER=bond0<br>
&gt; &gt;     SLAVE=yes<br>
&gt; &gt;     USERCTL=no<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;     # cat ifcfg-p2p2<br>
&gt; &gt;     DEVICE=p2p2<br>
&gt; &gt;     BOOTPROTO=?none?<br>
&gt; &gt;     HWADDR=xxxxxxxx<br>
&gt; &gt;     NM_CONTROLLED=?no?<br>
&gt; &gt;     ONBOOT=?yes?<br>
&gt; &gt;     TYPE=?Ethernet?<br>
&gt; &gt;     UUID=xxxxxxx<br>
&gt; &gt;     MASTER=bond0<br>
&gt; &gt;     SLAVE=yes<br>
&gt; &gt;     USERCTL=no<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;     # cat /etc/modprobe.d/bond.conf?<br>
&gt; &gt;     alias bond0 bonding<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;     # lsmod | grep bonding<br>
&gt; &gt;     bonding ? ? ? ? ? ? ? 127363 ?0?<br>
&gt; &gt;     8021q ? ? ? ? ? ? ? ? ?25317 ?1 bonding<br>
&gt; &gt;     ipv6 ? ? ? ? ? ? ? ? ?321454 ?86<br>
&gt; &gt;     bonding,ip6t_REJECT,nf_conntrack_ipv6,nf_defrag_ipv6<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; I run service network restart and get. I should note that the bonding<br>
&gt; &gt; module is not loaded at boot.<br>
&gt; &gt;<br>
&gt; &gt;     # service network restart?<br>
&gt; &gt;<br>
&gt; &gt;     Shutting down loopback interface: ? ? ? ? ? ? ? ? ? ? ? ? ?[ ?OK ?]<br>
&gt; &gt;     Bringing up loopback interface: ? ? ? ? ? ? ? ? ? ? ? ? ? ?[ ?OK ?]<br>
&gt; &gt;     Bringing up interface bond0: ?Device does not seem to be present,<br>
&gt; &gt;     delaying initialization.<br>
&gt; &gt;     ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?[FAILED]<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; Now I can create the bond manually and it works.<br>
&gt; &gt;<br>
&gt; &gt;     # modprobe bonding mode=4 miimon=100<br>
&gt; &gt;     # ifconfig bond0 <a href="http://172.16.200.11/24" target="_blank">172.16.200.11/24</a> &lt;<a href="http://172.16.200.11/24" target="_blank">http://172.16.200.11/24</a>&gt;<br>
&gt; &gt;     # ifenslave bond0 p2p1<br>
&gt; &gt;     # ifenslave bond0 p2p2<br>
&gt; &gt;     # ping -c 3 172.16.200.13<br>
&gt; &gt;     PING 172.16.200.13 (172.16.200.13) 56(84) bytes of data.<br>
&gt; &gt;     64 bytes from 172.16.200.13 &lt;<a href="http://172.16.200.13" target="_blank">http://172.16.200.13</a>&gt;: icmp_seq=1<br>
&gt; &gt;     ttl=64 time=0.806 ms<br>
&gt; &gt;     64 bytes from 172.16.200.13 &lt;<a href="http://172.16.200.13" target="_blank">http://172.16.200.13</a>&gt;: icmp_seq=2<br>
&gt; &gt;     ttl=64 time=0.213 ms<br>
&gt; &gt;     64 bytes from 172.16.200.13 &lt;<a href="http://172.16.200.13" target="_blank">http://172.16.200.13</a>&gt;: icmp_seq=3<br>
&gt; &gt;     ttl=64 time=0.212 ms<br>
&gt; &gt;     --- 172.16.200.13 ping statistics ---<br>
&gt; &gt;     3 packets transmitted, 3 received, 0% packet loss, time 2000ms<br>
&gt; &gt;     rtt min/avg/max/mdev = 0.212/0.410/0.806/0.280 ms<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;     #cat /proc/net/bonding/bond0<br>
&gt; &gt;     Ethernet Channel Bonding Driver: v3.6.0 (September 26, 2009)<br>
&gt; &gt;     Bonding Mode: IEEE 802.3ad Dynamic link aggregation<br>
&gt; &gt;     Transmit Hash Policy: layer2 (0)<br>
&gt; &gt;     MII Status: up<br>
&gt; &gt;     MII Polling Interval (ms): 100<br>
&gt; &gt;     Up Delay (ms): 0<br>
&gt; &gt;     Down Delay (ms): 0<br>
&gt; &gt;     802.3ad info<br>
&gt; &gt;     LACP rate: slow<br>
&gt; &gt;     Aggregator selection policy (ad_select): stable<br>
&gt; &gt;     Active Aggregator Info:<br>
&gt; &gt;     Aggregator ID: 1<br>
&gt; &gt;     Number of ports: 2<br>
&gt; &gt;     Actor Key: 17<br>
&gt; &gt;     Partner Key: 682<br>
&gt; &gt;     Partner Mac Address: xxxxxx<br>
&gt; &gt;     Slave Interface: p2p1<br>
&gt; &gt;     MII Status: up<br>
&gt; &gt;     Speed: 1000 Mbps<br>
&gt; &gt;     Duplex: full<br>
&gt; &gt;     Link Failure Count: 0<br>
&gt; &gt;     Permanent HW addr: xxxxxxx<br>
&gt; &gt;     Aggregator ID: 1<br>
&gt; &gt;     Slave queue ID: 0<br>
&gt; &gt;     Slave Interface: p2p2<br>
&gt; &gt;     MII Status: up<br>
&gt; &gt;     Speed: 1000 Mbps<br>
&gt; &gt;     Duplex: full<br>
&gt; &gt;     Link Failure Count: 0<br>
&gt; &gt;     Permanent HW addr: xxxxxxx<br>
&gt; &gt;     Aggregator ID: 1<br>
&gt; &gt;     Slave queue ID: 0<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; Not sure what I am doing wrong but I need some help.<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; Christopher Cross<br>
&gt; &gt; <a href="mailto:g1ccross@gmail.com">g1ccross@gmail.com</a> &lt;mailto:<a href="mailto:g1ccross@gmail.com">g1ccross@gmail.com</a>&gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; _______________________________________________<br>
&gt; &gt; clue mailing list: <a href="mailto:clue@cluedenver.org">clue@cluedenver.org</a><br>
&gt; &gt; For information, account preferences, or to unsubscribe see:<br>
&gt; &gt; <a href="http://cluedenver.org/mailman/listinfo/clue" target="_blank">http://cluedenver.org/mailman/listinfo/clue</a><br>
&gt;<br>
&gt; --<br>
&gt; Adam<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; clue mailing list: <a href="mailto:clue@cluedenver.org">clue@cluedenver.org</a><br>
&gt; For information, account preferences, or to unsubscribe see:<br>
&gt; <a href="http://cluedenver.org/mailman/listinfo/clue" target="_blank">http://cluedenver.org/mailman/listinfo/clue</a><br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://cluedenver.org/pipermail/clue/attachments/20130715/fb863884/attachment.html" target="_blank">http://cluedenver.org/pipermail/clue/attachments/20130715/fb863884/attachment.html</a><br>
<br>
------------------------------<br>
<br>
_______________________________________________<br>
clue mailing list<br>
<a href="mailto:clue@cluedenver.org">clue@cluedenver.org</a><br>
<a href="http://cluedenver.org/mailman/listinfo/clue" target="_blank">http://cluedenver.org/mailman/listinfo/clue</a><br>
<br>
End of clue Digest, Vol 30, Issue 17<br>
************************************<br>
</blockquote></div><br></div></div></div>