<?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: how to combine multiple nics in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/how-to-combine-multiple-nics/m-p/4178819#M83495</link>
    <description>Thanks once again Dear Svetoslav Gyurov</description>
    <pubDate>Wed, 16 Apr 2008 04:00:25 GMT</pubDate>
    <dc:creator>Maaz</dc:creator>
    <dc:date>2008-04-16T04:00:25Z</dc:date>
    <item>
      <title>how to combine multiple nics</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-combine-multiple-nics/m-p/4178814#M83490</link>
      <description>OS: SUSE Linux 10 SP1&lt;BR /&gt;&lt;BR /&gt;is it possible to combine 2 nics ? &lt;BR /&gt;if one nic goes down due to hardware error(malfunction) the other nic will continue to work, so that services remains available to the client, and machine remains available on the network.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Maa&lt;BR /&gt;</description>
      <pubDate>Sat, 12 Apr 2008 16:09:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-combine-multiple-nics/m-p/4178814#M83490</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2008-04-12T16:09:42Z</dc:date>
    </item>
    <item>
      <title>Re: how to combine multiple nics</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-combine-multiple-nics/m-p/4178815#M83491</link>
      <description>Linux provides ethernet bonding. The bonding kernel module allows the configuration of redundant NICs.</description>
      <pubDate>Sat, 12 Apr 2008 17:06:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-combine-multiple-nics/m-p/4178815#M83491</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2008-04-12T17:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: how to combine multiple nics</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-combine-multiple-nics/m-p/4178816#M83492</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Yes it is possible by using the linux ethernet bonding driver:&lt;BR /&gt;&lt;BR /&gt;1. configure the bond interface&lt;BR /&gt;vi /etc/sysconfig/network/ifcfg-bond0&lt;BR /&gt;BOOTPROTO="static"&lt;BR /&gt;BROADCAST="10.0.0.255"&lt;BR /&gt;IPADDR="10.0.0.10"&lt;BR /&gt;NETMASK="255.255.255.0"&lt;BR /&gt;NETWORK=""&lt;BR /&gt;REMOTE_IPADDR=""&lt;BR /&gt;STARTMODE="onboot"&lt;BR /&gt;BONDING_MASTER="yes"&lt;BR /&gt;BONDING_MODULE_OPTS="mode=balance-alb miimon=100"&lt;BR /&gt;BONDING_SLAVE0="eth0"&lt;BR /&gt;BONDING_SLAVE1="eth1"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;2. make alias and set options for bonding options&lt;BR /&gt;# load and configure module&lt;BR /&gt;alias bond0 bonding&lt;BR /&gt;options bond0 mode=balance-alb miimon=100&lt;BR /&gt;alias bond1 bonding&lt;BR /&gt;options bond1 mode=balance-alb miimon=100&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;3. remove old records&lt;BR /&gt;vi ifcfg-id-xx:xx:xx:xx:xx:xx&lt;BR /&gt;BOOTPROTO='none'&lt;BR /&gt;STARTMODE='off'&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;4. test&lt;BR /&gt;modprobe bonding&lt;BR /&gt;service network restart&lt;BR /&gt;cat /proc/net/bonding/bond0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Typical bonding configuration should look like this:&lt;BR /&gt;sve@angmar:~/project/mvn$ cat bond0 &lt;BR /&gt;Ethernet Channel Bonding Driver: v3.0.1 (January 9, 2006)&lt;BR /&gt;&lt;BR /&gt;Bonding Mode: adaptive load balancing&lt;BR /&gt;Primary Slave: None&lt;BR /&gt;Currently Active Slave: eth0&lt;BR /&gt;MII Status: up&lt;BR /&gt;MII Polling Interval (ms): 100&lt;BR /&gt;Up Delay (ms): 0&lt;BR /&gt;Down Delay (ms): 0&lt;BR /&gt;&lt;BR /&gt;Slave Interface: eth0&lt;BR /&gt;MII Status: up&lt;BR /&gt;Link Failure Count: 0&lt;BR /&gt;Permanent HW addr: 00:19:bb:30:21:d0&lt;BR /&gt;&lt;BR /&gt;Slave Interface: eth1&lt;BR /&gt;MII Status: up&lt;BR /&gt;Link Failure Count: 0&lt;BR /&gt;Permanent HW addr: 00:19:bb:30:21:cf&lt;BR /&gt;&lt;BR /&gt;For more information refer to the kernel documentaion:&lt;BR /&gt;/usr/src/linux/Documentation/networking/bonding.txt&lt;BR /&gt;&lt;BR /&gt;Good luck!&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;sve&lt;BR /&gt;</description>
      <pubDate>Sun, 13 Apr 2008 21:26:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-combine-multiple-nics/m-p/4178816#M83492</guid>
      <dc:creator>Svetoslav Gyurov</dc:creator>
      <dc:date>2008-04-13T21:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: how to combine multiple nics</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-combine-multiple-nics/m-p/4178817#M83493</link>
      <description>Thanks  Ivan Ferreira, and Svetoslav Gyurov&lt;BR /&gt;&lt;BR /&gt;does  "mode=balance-alb" provides High Availability and/or fault tolerance ?&lt;BR /&gt;&lt;BR /&gt;Svetoslav Gyurov, in SUSE options are provided in single quotes in the nic configuration file.&lt;BR /&gt;&lt;BR /&gt;there is no need to configure in  /etc/modprobe.conf&lt;BR /&gt;I also tried to configure the bonding using YaST, and using mouse clicks its done(nice tool). Yast also doesnt modify the /etc/modprobe.conf.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Apr 2008 14:43:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-combine-multiple-nics/m-p/4178817#M83493</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2008-04-15T14:43:56Z</dc:date>
    </item>
    <item>
      <title>Re: how to combine multiple nics</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-combine-multiple-nics/m-p/4178818#M83494</link>
      <description>Maaz,&lt;BR /&gt;&lt;BR /&gt;Yes it provides failover in case of a failure of one of the nics. I used this feature to provide HA to the network interfaces in regard to Oracle RAC. I used to have two servers each with four nics connected to two (stacked) switches. So I had two bonded interfaces, one for the public and one for the private network and I never used to have problems with this setup.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;sve&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Apr 2008 15:06:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-combine-multiple-nics/m-p/4178818#M83494</guid>
      <dc:creator>Svetoslav Gyurov</dc:creator>
      <dc:date>2008-04-15T15:06:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to combine multiple nics</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-combine-multiple-nics/m-p/4178819#M83495</link>
      <description>Thanks once again Dear Svetoslav Gyurov</description>
      <pubDate>Wed, 16 Apr 2008 04:00:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-combine-multiple-nics/m-p/4178819#M83495</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2008-04-16T04:00:25Z</dc:date>
    </item>
  </channel>
</rss>

