<?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 configure bond interface in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/configure-bond-interface/m-p/4249596#M33427</link>
    <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;I want to increase speed, autoneg off, duplex full of bond interface. ethtool utility is not working for the same.&lt;BR /&gt;#ethtool bond0&lt;BR /&gt;bond0 does not appear to be an ethernet device&lt;BR /&gt;ethtool version 1.8&lt;BR /&gt;&lt;BR /&gt;How can i configure bond interface?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;MKS&lt;BR /&gt;</description>
    <pubDate>Mon, 11 Aug 2008 09:42:56 GMT</pubDate>
    <dc:creator>monu_1</dc:creator>
    <dc:date>2008-08-11T09:42:56Z</dc:date>
    <item>
      <title>configure bond interface</title>
      <link>https://community.hpe.com/t5/operating-system-linux/configure-bond-interface/m-p/4249596#M33427</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;I want to increase speed, autoneg off, duplex full of bond interface. ethtool utility is not working for the same.&lt;BR /&gt;#ethtool bond0&lt;BR /&gt;bond0 does not appear to be an ethernet device&lt;BR /&gt;ethtool version 1.8&lt;BR /&gt;&lt;BR /&gt;How can i configure bond interface?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;MKS&lt;BR /&gt;</description>
      <pubDate>Mon, 11 Aug 2008 09:42:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/configure-bond-interface/m-p/4249596#M33427</guid>
      <dc:creator>monu_1</dc:creator>
      <dc:date>2008-08-11T09:42:56Z</dc:date>
    </item>
    <item>
      <title>Re: configure bond interface</title>
      <link>https://community.hpe.com/t5/operating-system-linux/configure-bond-interface/m-p/4249597#M33428</link>
      <description>You might want to change the options on the actual interfaces that the bond is using, ie. eth0, eth1. Also, if you are running Gigabit ethernet you are going to want auto negotiation on.</description>
      <pubDate>Mon, 11 Aug 2008 11:49:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/configure-bond-interface/m-p/4249597#M33428</guid>
      <dc:creator>Court Campbell</dc:creator>
      <dc:date>2008-08-11T11:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: configure bond interface</title>
      <link>https://community.hpe.com/t5/operating-system-linux/configure-bond-interface/m-p/4249598#M33429</link>
      <description>Here you have a sample I use on my servers:&lt;BR /&gt;&lt;BR /&gt;# more ifcfg-eth0&lt;BR /&gt;DEVICE=eth0&lt;BR /&gt;BOOTPROTO=none&lt;BR /&gt;HWADDR=00:1A:4B:4E:11:7C&lt;BR /&gt;ONBOOT=yes&lt;BR /&gt;TYPE=Ethernet&lt;BR /&gt;ETHTOOL_OPTS="speed 100 duplex full autoneg off"&lt;BR /&gt;MASTER=bond0&lt;BR /&gt;SLAVE=yes&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# more ifcfg-eth1&lt;BR /&gt;DEVICE=eth1&lt;BR /&gt;BOOTPROTO=none&lt;BR /&gt;HWADDR=00:1A:4B:4E:11:7E&lt;BR /&gt;ONBOOT=yes&lt;BR /&gt;TYPE=Ethernet&lt;BR /&gt;ETHTOOL_OPTS="speed 100 duplex full autoneg off"&lt;BR /&gt;MASTER=bond0&lt;BR /&gt;SLAVE=yes&lt;BR /&gt;&lt;BR /&gt;# more ifcfg-bond0&lt;BR /&gt;DEVICE=bond0&lt;BR /&gt;USERCTL=no&lt;BR /&gt;ONBOOT=yes&lt;BR /&gt;IPADDR=&lt;IP&gt;&lt;BR /&gt;NETMASK=255.255.255.0&lt;BR /&gt;NETWORK=&lt;NETWORK&gt;&lt;BR /&gt;BROADCAST=&lt;BROADCAST&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BROADCAST&gt;&lt;/NETWORK&gt;&lt;/IP&gt;</description>
      <pubDate>Mon, 11 Aug 2008 13:45:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/configure-bond-interface/m-p/4249598#M33429</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2008-08-11T13:45:38Z</dc:date>
    </item>
    <item>
      <title>Re: configure bond interface</title>
      <link>https://community.hpe.com/t5/operating-system-linux/configure-bond-interface/m-p/4249599#M33430</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;Please post your modprobe.conf file.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 12 Aug 2008 08:44:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/configure-bond-interface/m-p/4249599#M33430</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2008-08-12T08:44:27Z</dc:date>
    </item>
    <item>
      <title>Re: configure bond interface</title>
      <link>https://community.hpe.com/t5/operating-system-linux/configure-bond-interface/m-p/4249600#M33431</link>
      <description>The ethtool command works with _physical_ network interfaces, i.e. eth0...ethN. You must use eth* names with the ethtool command, and configure the speed/duplex settings of each physical interface independently, even though they may be bonded together at the upper level.&lt;BR /&gt;&lt;BR /&gt;The "bond0" is an aggregation layer that might contain one or more physical interfaces. It intentionally does not replicate the physical layer configuration between the bonded NICs.&lt;BR /&gt;&lt;BR /&gt;For example, you might be in a situation where your primary network interface is connected to a new gigabit switch, and the backup interface is still connected to an old ratty 100Mbit switch that requires forcing full duplex to work reliably. In this situation, forcing both physical NICs to be configured exactly the same would be a misfeature.&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Tue, 12 Aug 2008 09:40:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/configure-bond-interface/m-p/4249600#M33431</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2008-08-12T09:40:06Z</dc:date>
    </item>
  </channel>
</rss>

