<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: NIC Bonding on Blade BL25 in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/nic-bonding-on-blade-bl25/m-p/3835233#M84296</link>
    <description>When your bond0 is up or at least configured, you might want to look at the information in the /proc/net area for details:&lt;BR /&gt;&lt;BR /&gt;cat /proc/net/bonding/bond0      &lt;BR /&gt;   or&lt;BR /&gt;cat /proc/net/bond0/info&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 02 Aug 2006 06:41:25 GMT</pubDate>
    <dc:creator>Al Licause</dc:creator>
    <dc:date>2006-08-02T06:41:25Z</dc:date>
    <item>
      <title>NIC Bonding on Blade BL25</title>
      <link>https://community.hpe.com/t5/operating-system-linux/nic-bonding-on-blade-bl25/m-p/3835229#M84292</link>
      <description>I have two BL25's in a blade enclosure.  Both are running RedHat ES v4 Update 1.  One of them will bond all 4 nics into link aggregate mode no problem.  The other won't.  All nics are plugged into the same Cisco switch.  I'm using the same script (chaged the ip address though) and it tells me the following:&lt;BR /&gt;&lt;BR /&gt;Bringing up interface bond0: /sbin/modprobe device bond0 does not seem to be present, delaying initialization.&lt;BR /&gt;&lt;BR /&gt;The PSP has been installed and the nics are running BCM5700 drivers.&lt;BR /&gt;&lt;BR /&gt;Here is the script I run to set up the bonding:&lt;BR /&gt;&lt;BR /&gt;#!/bin/bash&lt;BR /&gt;&lt;BR /&gt;cp /etc/modules.conf /etc/xx-modules.conf&lt;BR /&gt;echo "alias bond0 bonding" &amp;gt;&amp;gt; /etc/modules.conf&lt;BR /&gt;echo "options bond0 miimon=100 mode=4" &amp;gt;&amp;gt; /etc/modules.conf&lt;BR /&gt;cp /etc/modprobe.conf /etc/xx-modprobe.conf&lt;BR /&gt;echo "install bond0 /sbin/modprobe bonding -o bond0 miimon=100 mode=4" &amp;gt;&amp;gt; /etc/modprobe.conf&lt;BR /&gt;&lt;BR /&gt;cd /etc/sysconfig/network-scripts&lt;BR /&gt;cp ifcfg-eth0 xx-ifcfg-eth0&lt;BR /&gt;&lt;BR /&gt;echo "DEVICE=bond0" &amp;gt; ifcfg-bond0&lt;BR /&gt;echo "TYPE=ethernet" &amp;gt;&amp;gt; ifcfg-bond0&lt;BR /&gt;echo "BOOTPROTO=none" &amp;gt;&amp;gt; ifcfg-bond0&lt;BR /&gt;echo "ONBOOT=yes" &amp;gt;&amp;gt; ifcfg-bond0&lt;BR /&gt;echo "NETWORK=192.168.64.0" &amp;gt;&amp;gt; ifcfg-bond0&lt;BR /&gt;echo "IPADDR=192.168.64.230" &amp;gt;&amp;gt; ifcfg-bond0&lt;BR /&gt;echo "GATEWAY=192.168.64.1" &amp;gt;&amp;gt; ifcfg-bond0&lt;BR /&gt;echo "NETMASK=255.255.254.0" &amp;gt;&amp;gt; ifcfg-bond0&lt;BR /&gt;echo "USERCTL=no" &amp;gt;&amp;gt; ifcfg-bond0&lt;BR /&gt;&lt;BR /&gt;echo "DEVICE=eth0" &amp;gt; ifcfg-eth0&lt;BR /&gt;echo "USERCTL=no" &amp;gt;&amp;gt; ifcfg-eth0&lt;BR /&gt;echo "ONBOOT=yes" &amp;gt;&amp;gt; ifcfg-eth0&lt;BR /&gt;echo "MASTER=bond0" &amp;gt;&amp;gt; ifcfg-eth0&lt;BR /&gt;echo "SLAVE=yes" &amp;gt;&amp;gt; ifcfg-eth0&lt;BR /&gt;echo "BOOTPROTO=none" &amp;gt;&amp;gt; ifcfg-eth0&lt;BR /&gt;&lt;BR /&gt;echo "DEVICE=eth1" &amp;gt; ifcfg-eth1&lt;BR /&gt;echo "USERCTL=no" &amp;gt;&amp;gt; ifcfg-eth1&lt;BR /&gt;echo "ONBOOT=yes" &amp;gt;&amp;gt; ifcfg-eth1&lt;BR /&gt;echo "MASTER=bond0" &amp;gt;&amp;gt; ifcfg-eth1&lt;BR /&gt;echo "SLAVE=yes" &amp;gt;&amp;gt; ifcfg-eth1&lt;BR /&gt;echo "BOOTPROTO=none" &amp;gt;&amp;gt; ifcfg-eth1&lt;BR /&gt;&lt;BR /&gt;echo "DEVICE=eth2" &amp;gt; ifcfg-eth2&lt;BR /&gt;echo "USERCTL=no" &amp;gt;&amp;gt; ifcfg-eth2&lt;BR /&gt;echo "ONBOOT=yes" &amp;gt;&amp;gt; ifcfg-eth2&lt;BR /&gt;echo "MASTER=bond0" &amp;gt;&amp;gt; ifcfg-eth2&lt;BR /&gt;echo "SLAVE=yes" &amp;gt;&amp;gt; ifcfg-eth2&lt;BR /&gt;echo "BOOTPROTO=none" &amp;gt;&amp;gt; ifcfg-eth2&lt;BR /&gt;&lt;BR /&gt;echo "DEVICE=eth3" &amp;gt; ifcfg-eth3&lt;BR /&gt;echo "USERCTL=no" &amp;gt;&amp;gt; ifcfg-eth3&lt;BR /&gt;echo "ONBOOT=yes" &amp;gt;&amp;gt; ifcfg-eth3&lt;BR /&gt;echo "MASTER=bond0" &amp;gt;&amp;gt; ifcfg-eth3&lt;BR /&gt;echo "SLAVE=yes" &amp;gt;&amp;gt; ifcfg-eth3&lt;BR /&gt;echo "BOOTPROTO=none" &amp;gt;&amp;gt; ifcfg-eth3&lt;BR /&gt;&lt;BR /&gt;service network restart&lt;BR /&gt;&lt;BR /&gt;end&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;And here is an unbonding script I use when the bonding doesn't work...&lt;BR /&gt;&lt;BR /&gt;#!/bin/bash&lt;BR /&gt;&lt;BR /&gt;cd /etc/sysconfig/network-scripts&lt;BR /&gt;mv xx-ifcfg-eth0 ifcfg-eth0&lt;BR /&gt;rm -rf ifcfg-eth1&lt;BR /&gt;rm -rf ifcfg-eth2&lt;BR /&gt;rm -rf ifcfg-eth3&lt;BR /&gt;rm -rf ifcfg-bond0&lt;BR /&gt;&lt;BR /&gt;cd /etc&lt;BR /&gt;&lt;BR /&gt;mv xx-modules.conf modules.conf&lt;BR /&gt;mv xx-modprobe.conf modprobe.conf&lt;BR /&gt;&lt;BR /&gt;service network restart&lt;BR /&gt;&lt;BR /&gt;end&lt;BR /&gt;&lt;BR /&gt;Thanks in advance for any help.</description>
      <pubDate>Tue, 01 Aug 2006 11:10:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/nic-bonding-on-blade-bl25/m-p/3835229#M84292</guid>
      <dc:creator>Scott W Cook</dc:creator>
      <dc:date>2006-08-01T11:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: NIC Bonding on Blade BL25</title>
      <link>https://community.hpe.com/t5/operating-system-linux/nic-bonding-on-blade-bl25/m-p/3835230#M84293</link>
      <description>&lt;BR /&gt;Shalom,&lt;BR /&gt;&lt;BR /&gt;Try the first bond attempt with an active-passive configuration.&lt;BR /&gt;&lt;BR /&gt;Note the only NIC cards I've been able to bond active-active are Intel. Broadcom cards explode in such a configuration.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 01 Aug 2006 12:37:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/nic-bonding-on-blade-bl25/m-p/3835230#M84293</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2006-08-01T12:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: NIC Bonding on Blade BL25</title>
      <link>https://community.hpe.com/t5/operating-system-linux/nic-bonding-on-blade-bl25/m-p/3835231#M84294</link>
      <description>I will try that.&lt;BR /&gt;&lt;BR /&gt;I have 8 blades in the enclosure.  Two are BL25 and the rest are BL20.  All of them came right up using the scripts I provided.  The only one that is causing me grief is one of the two BL25's.  Weird.</description>
      <pubDate>Tue, 01 Aug 2006 13:23:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/nic-bonding-on-blade-bl25/m-p/3835231#M84294</guid>
      <dc:creator>Scott W Cook</dc:creator>
      <dc:date>2006-08-01T13:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: NIC Bonding on Blade BL25</title>
      <link>https://community.hpe.com/t5/operating-system-linux/nic-bonding-on-blade-bl25/m-p/3835232#M84295</link>
      <description>I just tried it.  Same result.  Tells me the same thing as before.  bond0 doesn't seem to be present on the system.&lt;BR /&gt;&lt;BR /&gt;I also tried it with just two nics in the bonding team.  Same result.&lt;BR /&gt;&lt;BR /&gt;It seems like it's a modprobe issue.  I'll have to do some more research.&lt;BR /&gt;&lt;BR /&gt;Thanks again.</description>
      <pubDate>Tue, 01 Aug 2006 14:08:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/nic-bonding-on-blade-bl25/m-p/3835232#M84295</guid>
      <dc:creator>Scott W Cook</dc:creator>
      <dc:date>2006-08-01T14:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: NIC Bonding on Blade BL25</title>
      <link>https://community.hpe.com/t5/operating-system-linux/nic-bonding-on-blade-bl25/m-p/3835233#M84296</link>
      <description>When your bond0 is up or at least configured, you might want to look at the information in the /proc/net area for details:&lt;BR /&gt;&lt;BR /&gt;cat /proc/net/bonding/bond0      &lt;BR /&gt;   or&lt;BR /&gt;cat /proc/net/bond0/info&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 02 Aug 2006 06:41:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/nic-bonding-on-blade-bl25/m-p/3835233#M84296</guid>
      <dc:creator>Al Licause</dc:creator>
      <dc:date>2006-08-02T06:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: NIC Bonding on Blade BL25</title>
      <link>https://community.hpe.com/t5/operating-system-linux/nic-bonding-on-blade-bl25/m-p/3835234#M84297</link>
      <description>What if any messages are there in messages.&lt;BR /&gt;&lt;BR /&gt;You can hand debug the steps.  do a modprobe -v  to test the bonding module insert and then a bash -x /sbin/ifup.&lt;BR /&gt;&lt;BR /&gt;I have found numeres typing errors this way</description>
      <pubDate>Sun, 13 Aug 2006 22:23:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/nic-bonding-on-blade-bl25/m-p/3835234#M84297</guid>
      <dc:creator>Alexander Samad</dc:creator>
      <dc:date>2006-08-13T22:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: NIC Bonding on Blade BL25</title>
      <link>https://community.hpe.com/t5/operating-system-linux/nic-bonding-on-blade-bl25/m-p/3835235#M84298</link>
      <description>think we had the same issue and got by changing the order of entries in modprobe.conf-&amp;gt;our modprobe &lt;BR /&gt; &lt;BR /&gt;alias eth0 bcm5700&lt;BR /&gt;alias eth1 bcm5700&lt;BR /&gt;alias eth2 bcm5700&lt;BR /&gt;alias eth3 bcm5700&lt;BR /&gt;alias scsi_hostadapter cciss&lt;BR /&gt;alias usb-controller ohci-hcd&lt;BR /&gt;alias net-pf-10 off&lt;BR /&gt;options bonding miimon=100 mode=1max_bonds=3&lt;BR /&gt;alias bond0 bonding&lt;BR /&gt;alias bond1 bonding</description>
      <pubDate>Thu, 28 Sep 2006 07:56:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/nic-bonding-on-blade-bl25/m-p/3835235#M84298</guid>
      <dc:creator>Aaron_125</dc:creator>
      <dc:date>2006-09-28T07:56:17Z</dc:date>
    </item>
  </channel>
</rss>

