Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame^] | 1 | |
| 2 | Linux Ethernet Bonding Driver HOWTO |
| 3 | |
| 4 | Initial release : Thomas Davis <tadavis at lbl.gov> |
| 5 | Corrections, HA extensions : 2000/10/03-15 : |
| 6 | - Willy Tarreau <willy at meta-x.org> |
| 7 | - Constantine Gavrilov <const-g at xpert.com> |
| 8 | - Chad N. Tindel <ctindel at ieee dot org> |
| 9 | - Janice Girouard <girouard at us dot ibm dot com> |
| 10 | - Jay Vosburgh <fubar at us dot ibm dot com> |
| 11 | |
| 12 | Reorganized and updated Feb 2005 by Jay Vosburgh |
| 13 | |
| 14 | Note : |
| 15 | ------ |
| 16 | |
| 17 | The bonding driver originally came from Donald Becker's beowulf patches for |
| 18 | kernel 2.0. It has changed quite a bit since, and the original tools from |
| 19 | extreme-linux and beowulf sites will not work with this version of the driver. |
| 20 | |
| 21 | For new versions of the driver, patches for older kernels and the updated |
| 22 | userspace tools, please follow the links at the end of this file. |
| 23 | |
| 24 | Table of Contents |
| 25 | ================= |
| 26 | |
| 27 | 1. Bonding Driver Installation |
| 28 | |
| 29 | 2. Bonding Driver Options |
| 30 | |
| 31 | 3. Configuring Bonding Devices |
| 32 | 3.1 Configuration with sysconfig support |
| 33 | 3.2 Configuration with initscripts support |
| 34 | 3.3 Configuring Bonding Manually |
| 35 | 3.4 Configuring Multiple Bonds |
| 36 | |
| 37 | 5. Querying Bonding Configuration |
| 38 | 5.1 Bonding Configuration |
| 39 | 5.2 Network Configuration |
| 40 | |
| 41 | 6. Switch Configuration |
| 42 | |
| 43 | 7. 802.1q VLAN Support |
| 44 | |
| 45 | 8. Link Monitoring |
| 46 | 8.1 ARP Monitor Operation |
| 47 | 8.2 Configuring Multiple ARP Targets |
| 48 | 8.3 MII Monitor Operation |
| 49 | |
| 50 | 9. Potential Trouble Sources |
| 51 | 9.1 Adventures in Routing |
| 52 | 9.2 Ethernet Device Renaming |
| 53 | 9.3 Painfully Slow Or No Failed Link Detection By Miimon |
| 54 | |
| 55 | 10. SNMP agents |
| 56 | |
| 57 | 11. Promiscuous mode |
| 58 | |
| 59 | 12. High Availability Information |
| 60 | 12.1 High Availability in a Single Switch Topology |
| 61 | 12.1.1 Bonding Mode Selection for Single Switch Topology |
| 62 | 12.1.2 Link Monitoring for Single Switch Topology |
| 63 | 12.2 High Availability in a Multiple Switch Topology |
| 64 | 12.2.1 Bonding Mode Selection for Multiple Switch Topology |
| 65 | 12.2.2 Link Monitoring for Multiple Switch Topology |
| 66 | 12.3 Switch Behavior Issues for High Availability |
| 67 | |
| 68 | 13. Hardware Specific Considerations |
| 69 | 13.1 IBM BladeCenter |
| 70 | |
| 71 | 14. Frequently Asked Questions |
| 72 | |
| 73 | 15. Resources and Links |
| 74 | |
| 75 | |
| 76 | 1. Bonding Driver Installation |
| 77 | ============================== |
| 78 | |
| 79 | Most popular distro kernels ship with the bonding driver |
| 80 | already available as a module and the ifenslave user level control |
| 81 | program installed and ready for use. If your distro does not, or you |
| 82 | have need to compile bonding from source (e.g., configuring and |
| 83 | installing a mainline kernel from kernel.org), you'll need to perform |
| 84 | the following steps: |
| 85 | |
| 86 | 1.1 Configure and build the kernel with bonding |
| 87 | ----------------------------------------------- |
| 88 | |
| 89 | The latest version of the bonding driver is available in the |
| 90 | drivers/net/bonding subdirectory of the most recent kernel source |
| 91 | (which is available on http://kernel.org). |
| 92 | |
| 93 | Prior to the 2.4.11 kernel, the bonding driver was maintained |
| 94 | largely outside the kernel tree; patches for some earlier kernels are |
| 95 | available on the bonding sourceforge site, although those patches are |
| 96 | still several years out of date. Most users will want to use either |
| 97 | the most recent kernel from kernel.org or whatever kernel came with |
| 98 | their distro. |
| 99 | |
| 100 | Configure kernel with "make menuconfig" (or "make xconfig" or |
| 101 | "make config"), then select "Bonding driver support" in the "Network |
| 102 | device support" section. It is recommended that you configure the |
| 103 | driver as module since it is currently the only way to pass parameters |
| 104 | to the driver or configure more than one bonding device. |
| 105 | |
| 106 | Build and install the new kernel and modules, then proceed to |
| 107 | step 2. |
| 108 | |
| 109 | 1.2 Install ifenslave Control Utility |
| 110 | ------------------------------------- |
| 111 | |
| 112 | The ifenslave user level control program is included in the |
| 113 | kernel source tree, in the file Documentation/networking/ifenslave.c. |
| 114 | It is generally recommended that you use the ifenslave that |
| 115 | corresponds to the kernel that you are using (either from the same |
| 116 | source tree or supplied with the distro), however, ifenslave |
| 117 | executables from older kernels should function (but features newer |
| 118 | than the ifenslave release are not supported). Running an ifenslave |
| 119 | that is newer than the kernel is not supported, and may or may not |
| 120 | work. |
| 121 | |
| 122 | To install ifenslave, do the following: |
| 123 | |
| 124 | # gcc -Wall -O -I/usr/src/linux/include ifenslave.c -o ifenslave |
| 125 | # cp ifenslave /sbin/ifenslave |
| 126 | |
| 127 | If your kernel source is not in "/usr/src/linux," then replace |
| 128 | "/usr/src/linux/include" in the above with the location of your kernel |
| 129 | source include directory. |
| 130 | |
| 131 | You may wish to back up any existing /sbin/ifenslave, or, for |
| 132 | testing or informal use, tag the ifenslave to the kernel version |
| 133 | (e.g., name the ifenslave executable /sbin/ifenslave-2.6.10). |
| 134 | |
| 135 | IMPORTANT NOTE: |
| 136 | |
| 137 | If you omit the "-I" or specify an incorrect directory, you |
| 138 | may end up with an ifenslave that is incompatible with the kernel |
| 139 | you're trying to build it for. Some distros (e.g., Red Hat from 7.1 |
| 140 | onwards) do not have /usr/include/linux symbolically linked to the |
| 141 | default kernel source include directory. |
| 142 | |
| 143 | |
| 144 | 2. Bonding Driver Options |
| 145 | ========================= |
| 146 | |
| 147 | Options for the bonding driver are supplied as parameters to |
| 148 | the bonding module at load time. They may be given as command line |
| 149 | arguments to the insmod or modprobe command, but are usually specified |
| 150 | in either the /etc/modprobe.conf configuration file, or in a |
| 151 | distro-specific configuration file (some of which are detailed in the |
| 152 | next section). |
| 153 | |
| 154 | The available bonding driver parameters are listed below. If a |
| 155 | parameter is not specified the default value is used. When initially |
| 156 | configuring a bond, it is recommended "tail -f /var/log/messages" be |
| 157 | run in a separate window to watch for bonding driver error messages. |
| 158 | |
| 159 | It is critical that either the miimon or arp_interval and |
| 160 | arp_ip_target parameters be specified, otherwise serious network |
| 161 | degradation will occur during link failures. Very few devices do not |
| 162 | support at least miimon, so there is really no reason not to use it. |
| 163 | |
| 164 | Options with textual values will accept either the text name |
| 165 | or, for backwards compatibility, the option value. E.g., |
| 166 | "mode=802.3ad" and "mode=4" set the same mode. |
| 167 | |
| 168 | The parameters are as follows: |
| 169 | |
| 170 | arp_interval |
| 171 | |
| 172 | Specifies the ARP monitoring frequency in milli-seconds. If |
| 173 | ARP monitoring is used in a load-balancing mode (mode 0 or 2), |
| 174 | the switch should be configured in a mode that evenly |
| 175 | distributes packets across all links - such as round-robin. If |
| 176 | the switch is configured to distribute the packets in an XOR |
| 177 | fashion, all replies from the ARP targets will be received on |
| 178 | the same link which could cause the other team members to |
| 179 | fail. ARP monitoring should not be used in conjunction with |
| 180 | miimon. A value of 0 disables ARP monitoring. The default |
| 181 | value is 0. |
| 182 | |
| 183 | arp_ip_target |
| 184 | |
| 185 | Specifies the ip addresses to use when arp_interval is > 0. |
| 186 | These are the targets of the ARP request sent to determine the |
| 187 | health of the link to the targets. Specify these values in |
| 188 | ddd.ddd.ddd.ddd format. Multiple ip adresses must be |
| 189 | seperated by a comma. At least one IP address must be given |
| 190 | for ARP monitoring to function. The maximum number of targets |
| 191 | that can be specified is 16. The default value is no IP |
| 192 | addresses. |
| 193 | |
| 194 | downdelay |
| 195 | |
| 196 | Specifies the time, in milliseconds, to wait before disabling |
| 197 | a slave after a link failure has been detected. This option |
| 198 | is only valid for the miimon link monitor. The downdelay |
| 199 | value should be a multiple of the miimon value; if not, it |
| 200 | will be rounded down to the nearest multiple. The default |
| 201 | value is 0. |
| 202 | |
| 203 | lacp_rate |
| 204 | |
| 205 | Option specifying the rate in which we'll ask our link partner |
| 206 | to transmit LACPDU packets in 802.3ad mode. Possible values |
| 207 | are: |
| 208 | |
| 209 | slow or 0 |
| 210 | Request partner to transmit LACPDUs every 30 seconds (default) |
| 211 | |
| 212 | fast or 1 |
| 213 | Request partner to transmit LACPDUs every 1 second |
| 214 | |
| 215 | max_bonds |
| 216 | |
| 217 | Specifies the number of bonding devices to create for this |
| 218 | instance of the bonding driver. E.g., if max_bonds is 3, and |
| 219 | the bonding driver is not already loaded, then bond0, bond1 |
| 220 | and bond2 will be created. The default value is 1. |
| 221 | |
| 222 | miimon |
| 223 | |
| 224 | Specifies the frequency in milli-seconds that MII link |
| 225 | monitoring will occur. A value of zero disables MII link |
| 226 | monitoring. A value of 100 is a good starting point. The |
| 227 | use_carrier option, below, affects how the link state is |
| 228 | determined. See the High Availability section for additional |
| 229 | information. The default value is 0. |
| 230 | |
| 231 | mode |
| 232 | |
| 233 | Specifies one of the bonding policies. The default is |
| 234 | balance-rr (round robin). Possible values are: |
| 235 | |
| 236 | balance-rr or 0 |
| 237 | |
| 238 | Round-robin policy: Transmit packets in sequential |
| 239 | order from the first available slave through the |
| 240 | last. This mode provides load balancing and fault |
| 241 | tolerance. |
| 242 | |
| 243 | active-backup or 1 |
| 244 | |
| 245 | Active-backup policy: Only one slave in the bond is |
| 246 | active. A different slave becomes active if, and only |
| 247 | if, the active slave fails. The bond's MAC address is |
| 248 | externally visible on only one port (network adapter) |
| 249 | to avoid confusing the switch. This mode provides |
| 250 | fault tolerance. The primary option affects the |
| 251 | behavior of this mode. |
| 252 | |
| 253 | balance-xor or 2 |
| 254 | |
| 255 | XOR policy: Transmit based on [(source MAC address |
| 256 | XOR'd with destination MAC address) modulo slave |
| 257 | count]. This selects the same slave for each |
| 258 | destination MAC address. This mode provides load |
| 259 | balancing and fault tolerance. |
| 260 | |
| 261 | broadcast or 3 |
| 262 | |
| 263 | Broadcast policy: transmits everything on all slave |
| 264 | interfaces. This mode provides fault tolerance. |
| 265 | |
| 266 | 802.3ad or 4 |
| 267 | |
| 268 | IEEE 802.3ad Dynamic link aggregation. Creates |
| 269 | aggregation groups that share the same speed and |
| 270 | duplex settings. Utilizes all slaves in the active |
| 271 | aggregator according to the 802.3ad specification. |
| 272 | |
| 273 | Pre-requisites: |
| 274 | |
| 275 | 1. Ethtool support in the base drivers for retrieving |
| 276 | the speed and duplex of each slave. |
| 277 | |
| 278 | 2. A switch that supports IEEE 802.3ad Dynamic link |
| 279 | aggregation. |
| 280 | |
| 281 | Most switches will require some type of configuration |
| 282 | to enable 802.3ad mode. |
| 283 | |
| 284 | balance-tlb or 5 |
| 285 | |
| 286 | Adaptive transmit load balancing: channel bonding that |
| 287 | does not require any special switch support. The |
| 288 | outgoing traffic is distributed according to the |
| 289 | current load (computed relative to the speed) on each |
| 290 | slave. Incoming traffic is received by the current |
| 291 | slave. If the receiving slave fails, another slave |
| 292 | takes over the MAC address of the failed receiving |
| 293 | slave. |
| 294 | |
| 295 | Prerequisite: |
| 296 | |
| 297 | Ethtool support in the base drivers for retrieving the |
| 298 | speed of each slave. |
| 299 | |
| 300 | balance-alb or 6 |
| 301 | |
| 302 | Adaptive load balancing: includes balance-tlb plus |
| 303 | receive load balancing (rlb) for IPV4 traffic, and |
| 304 | does not require any special switch support. The |
| 305 | receive load balancing is achieved by ARP negotiation. |
| 306 | The bonding driver intercepts the ARP Replies sent by |
| 307 | the local system on their way out and overwrites the |
| 308 | source hardware address with the unique hardware |
| 309 | address of one of the slaves in the bond such that |
| 310 | different peers use different hardware addresses for |
| 311 | the server. |
| 312 | |
| 313 | Receive traffic from connections created by the server |
| 314 | is also balanced. When the local system sends an ARP |
| 315 | Request the bonding driver copies and saves the peer's |
| 316 | IP information from the ARP packet. When the ARP |
| 317 | Reply arrives from the peer, its hardware address is |
| 318 | retrieved and the bonding driver initiates an ARP |
| 319 | reply to this peer assigning it to one of the slaves |
| 320 | in the bond. A problematic outcome of using ARP |
| 321 | negotiation for balancing is that each time that an |
| 322 | ARP request is broadcast it uses the hardware address |
| 323 | of the bond. Hence, peers learn the hardware address |
| 324 | of the bond and the balancing of receive traffic |
| 325 | collapses to the current slave. This is handled by |
| 326 | sending updates (ARP Replies) to all the peers with |
| 327 | their individually assigned hardware address such that |
| 328 | the traffic is redistributed. Receive traffic is also |
| 329 | redistributed when a new slave is added to the bond |
| 330 | and when an inactive slave is re-activated. The |
| 331 | receive load is distributed sequentially (round robin) |
| 332 | among the group of highest speed slaves in the bond. |
| 333 | |
| 334 | When a link is reconnected or a new slave joins the |
| 335 | bond the receive traffic is redistributed among all |
| 336 | active slaves in the bond by intiating ARP Replies |
| 337 | with the selected mac address to each of the |
| 338 | clients. The updelay parameter (detailed below) must |
| 339 | be set to a value equal or greater than the switch's |
| 340 | forwarding delay so that the ARP Replies sent to the |
| 341 | peers will not be blocked by the switch. |
| 342 | |
| 343 | Prerequisites: |
| 344 | |
| 345 | 1. Ethtool support in the base drivers for retrieving |
| 346 | the speed of each slave. |
| 347 | |
| 348 | 2. Base driver support for setting the hardware |
| 349 | address of a device while it is open. This is |
| 350 | required so that there will always be one slave in the |
| 351 | team using the bond hardware address (the |
| 352 | curr_active_slave) while having a unique hardware |
| 353 | address for each slave in the bond. If the |
| 354 | curr_active_slave fails its hardware address is |
| 355 | swapped with the new curr_active_slave that was |
| 356 | chosen. |
| 357 | |
| 358 | primary |
| 359 | |
| 360 | A string (eth0, eth2, etc) specifying which slave is the |
| 361 | primary device. The specified device will always be the |
| 362 | active slave while it is available. Only when the primary is |
| 363 | off-line will alternate devices be used. This is useful when |
| 364 | one slave is preferred over another, e.g., when one slave has |
| 365 | higher throughput than another. |
| 366 | |
| 367 | The primary option is only valid for active-backup mode. |
| 368 | |
| 369 | updelay |
| 370 | |
| 371 | Specifies the time, in milliseconds, to wait before enabling a |
| 372 | slave after a link recovery has been detected. This option is |
| 373 | only valid for the miimon link monitor. The updelay value |
| 374 | should be a multiple of the miimon value; if not, it will be |
| 375 | rounded down to the nearest multiple. The default value is 0. |
| 376 | |
| 377 | use_carrier |
| 378 | |
| 379 | Specifies whether or not miimon should use MII or ETHTOOL |
| 380 | ioctls vs. netif_carrier_ok() to determine the link |
| 381 | status. The MII or ETHTOOL ioctls are less efficient and |
| 382 | utilize a deprecated calling sequence within the kernel. The |
| 383 | netif_carrier_ok() relies on the device driver to maintain its |
| 384 | state with netif_carrier_on/off; at this writing, most, but |
| 385 | not all, device drivers support this facility. |
| 386 | |
| 387 | If bonding insists that the link is up when it should not be, |
| 388 | it may be that your network device driver does not support |
| 389 | netif_carrier_on/off. The default state for netif_carrier is |
| 390 | "carrier on," so if a driver does not support netif_carrier, |
| 391 | it will appear as if the link is always up. In this case, |
| 392 | setting use_carrier to 0 will cause bonding to revert to the |
| 393 | MII / ETHTOOL ioctl method to determine the link state. |
| 394 | |
| 395 | A value of 1 enables the use of netif_carrier_ok(), a value of |
| 396 | 0 will use the deprecated MII / ETHTOOL ioctls. The default |
| 397 | value is 1. |
| 398 | |
| 399 | |
| 400 | |
| 401 | 3. Configuring Bonding Devices |
| 402 | ============================== |
| 403 | |
| 404 | There are, essentially, two methods for configuring bonding: |
| 405 | with support from the distro's network initialization scripts, and |
| 406 | without. Distros generally use one of two packages for the network |
| 407 | initialization scripts: initscripts or sysconfig. Recent versions of |
| 408 | these packages have support for bonding, while older versions do not. |
| 409 | |
| 410 | We will first describe the options for configuring bonding for |
| 411 | distros using versions of initscripts and sysconfig with full or |
| 412 | partial support for bonding, then provide information on enabling |
| 413 | bonding without support from the network initialization scripts (i.e., |
| 414 | older versions of initscripts or sysconfig). |
| 415 | |
| 416 | If you're unsure whether your distro uses sysconfig or |
| 417 | initscripts, or don't know if it's new enough, have no fear. |
| 418 | Determining this is fairly straightforward. |
| 419 | |
| 420 | First, issue the command: |
| 421 | |
| 422 | $ rpm -qf /sbin/ifup |
| 423 | |
| 424 | It will respond with a line of text starting with either |
| 425 | "initscripts" or "sysconfig," followed by some numbers. This is the |
| 426 | package that provides your network initialization scripts. |
| 427 | |
| 428 | Next, to determine if your installation supports bonding, |
| 429 | issue the command: |
| 430 | |
| 431 | $ grep ifenslave /sbin/ifup |
| 432 | |
| 433 | If this returns any matches, then your initscripts or |
| 434 | sysconfig has support for bonding. |
| 435 | |
| 436 | 3.1 Configuration with sysconfig support |
| 437 | ---------------------------------------- |
| 438 | |
| 439 | This section applies to distros using a version of sysconfig |
| 440 | with bonding support, for example, SuSE Linux Enterprise Server 9. |
| 441 | |
| 442 | SuSE SLES 9's networking configuration system does support |
| 443 | bonding, however, at this writing, the YaST system configuration |
| 444 | frontend does not provide any means to work with bonding devices. |
| 445 | Bonding devices can be managed by hand, however, as follows. |
| 446 | |
| 447 | First, if they have not already been configured, configure the |
| 448 | slave devices. On SLES 9, this is most easily done by running the |
| 449 | yast2 sysconfig configuration utility. The goal is for to create an |
| 450 | ifcfg-id file for each slave device. The simplest way to accomplish |
| 451 | this is to configure the devices for DHCP. The name of the |
| 452 | configuration file for each device will be of the form: |
| 453 | |
| 454 | ifcfg-id-xx:xx:xx:xx:xx:xx |
| 455 | |
| 456 | Where the "xx" portion will be replaced with the digits from |
| 457 | the device's permanent MAC address. |
| 458 | |
| 459 | Once the set of ifcfg-id-xx:xx:xx:xx:xx:xx files has been |
| 460 | created, it is necessary to edit the configuration files for the slave |
| 461 | devices (the MAC addresses correspond to those of the slave devices). |
| 462 | Before editing, the file will contain muliple lines, and will look |
| 463 | something like this: |
| 464 | |
| 465 | BOOTPROTO='dhcp' |
| 466 | STARTMODE='on' |
| 467 | USERCTL='no' |
| 468 | UNIQUE='XNzu.WeZGOGF+4wE' |
| 469 | _nm_name='bus-pci-0001:61:01.0' |
| 470 | |
| 471 | Change the BOOTPROTO and STARTMODE lines to the following: |
| 472 | |
| 473 | BOOTPROTO='none' |
| 474 | STARTMODE='off' |
| 475 | |
| 476 | Do not alter the UNIQUE or _nm_name lines. Remove any other |
| 477 | lines (USERCTL, etc). |
| 478 | |
| 479 | Once the ifcfg-id-xx:xx:xx:xx:xx:xx files have been modified, |
| 480 | it's time to create the configuration file for the bonding device |
| 481 | itself. This file is named ifcfg-bondX, where X is the number of the |
| 482 | bonding device to create, starting at 0. The first such file is |
| 483 | ifcfg-bond0, the second is ifcfg-bond1, and so on. The sysconfig |
| 484 | network configuration system will correctly start multiple instances |
| 485 | of bonding. |
| 486 | |
| 487 | The contents of the ifcfg-bondX file is as follows: |
| 488 | |
| 489 | BOOTPROTO="static" |
| 490 | BROADCAST="10.0.2.255" |
| 491 | IPADDR="10.0.2.10" |
| 492 | NETMASK="255.255.0.0" |
| 493 | NETWORK="10.0.2.0" |
| 494 | REMOTE_IPADDR="" |
| 495 | STARTMODE="onboot" |
| 496 | BONDING_MASTER="yes" |
| 497 | BONDING_MODULE_OPTS="mode=active-backup miimon=100" |
| 498 | BONDING_SLAVE0="eth0" |
| 499 | BONDING_SLAVE1="eth1" |
| 500 | |
| 501 | Replace the sample BROADCAST, IPADDR, NETMASK and NETWORK |
| 502 | values with the appropriate values for your network. |
| 503 | |
| 504 | Note that configuring the bonding device with BOOTPROTO='dhcp' |
| 505 | does not work; the scripts attempt to obtain the device address from |
| 506 | DHCP prior to adding any of the slave devices. Without active slaves, |
| 507 | the DHCP requests are not sent to the network. |
| 508 | |
| 509 | The STARTMODE specifies when the device is brought online. |
| 510 | The possible values are: |
| 511 | |
| 512 | onboot: The device is started at boot time. If you're not |
| 513 | sure, this is probably what you want. |
| 514 | |
| 515 | manual: The device is started only when ifup is called |
| 516 | manually. Bonding devices may be configured this |
| 517 | way if you do not wish them to start automatically |
| 518 | at boot for some reason. |
| 519 | |
| 520 | hotplug: The device is started by a hotplug event. This is not |
| 521 | a valid choice for a bonding device. |
| 522 | |
| 523 | off or ignore: The device configuration is ignored. |
| 524 | |
| 525 | The line BONDING_MASTER='yes' indicates that the device is a |
| 526 | bonding master device. The only useful value is "yes." |
| 527 | |
| 528 | The contents of BONDING_MODULE_OPTS are supplied to the |
| 529 | instance of the bonding module for this device. Specify the options |
| 530 | for the bonding mode, link monitoring, and so on here. Do not include |
| 531 | the max_bonds bonding parameter; this will confuse the configuration |
| 532 | system if you have multiple bonding devices. |
| 533 | |
| 534 | Finally, supply one BONDING_SLAVEn="ethX" for each slave, |
| 535 | where "n" is an increasing value, one for each slave, and "ethX" is |
| 536 | the name of the slave device (eth0, eth1, etc). |
| 537 | |
| 538 | When all configuration files have been modified or created, |
| 539 | networking must be restarted for the configuration changes to take |
| 540 | effect. This can be accomplished via the following: |
| 541 | |
| 542 | # /etc/init.d/network restart |
| 543 | |
| 544 | Note that the network control script (/sbin/ifdown) will |
| 545 | remove the bonding module as part of the network shutdown processing, |
| 546 | so it is not necessary to remove the module by hand if, e.g., the |
| 547 | module paramters have changed. |
| 548 | |
| 549 | Also, at this writing, YaST/YaST2 will not manage bonding |
| 550 | devices (they do not show bonding interfaces on its list of network |
| 551 | devices). It is necessary to edit the configuration file by hand to |
| 552 | change the bonding configuration. |
| 553 | |
| 554 | Additional general options and details of the ifcfg file |
| 555 | format can be found in an example ifcfg template file: |
| 556 | |
| 557 | /etc/sysconfig/network/ifcfg.template |
| 558 | |
| 559 | Note that the template does not document the various BONDING_ |
| 560 | settings described above, but does describe many of the other options. |
| 561 | |
| 562 | 3.2 Configuration with initscripts support |
| 563 | ------------------------------------------ |
| 564 | |
| 565 | This section applies to distros using a version of initscripts |
| 566 | with bonding support, for example, Red Hat Linux 9 or Red Hat |
| 567 | Enterprise Linux version 3. On these systems, the network |
| 568 | initialization scripts have some knowledge of bonding, and can be |
| 569 | configured to control bonding devices. |
| 570 | |
| 571 | These distros will not automatically load the network adapter |
| 572 | driver unless the ethX device is configured with an IP address. |
| 573 | Because of this constraint, users must manually configure a |
| 574 | network-script file for all physical adapters that will be members of |
| 575 | a bondX link. Network script files are located in the directory: |
| 576 | |
| 577 | /etc/sysconfig/network-scripts |
| 578 | |
| 579 | The file name must be prefixed with "ifcfg-eth" and suffixed |
| 580 | with the adapter's physical adapter number. For example, the script |
| 581 | for eth0 would be named /etc/sysconfig/network-scripts/ifcfg-eth0. |
| 582 | Place the following text in the file: |
| 583 | |
| 584 | DEVICE=eth0 |
| 585 | USERCTL=no |
| 586 | ONBOOT=yes |
| 587 | MASTER=bond0 |
| 588 | SLAVE=yes |
| 589 | BOOTPROTO=none |
| 590 | |
| 591 | The DEVICE= line will be different for every ethX device and |
| 592 | must correspond with the name of the file, i.e., ifcfg-eth1 must have |
| 593 | a device line of DEVICE=eth1. The setting of the MASTER= line will |
| 594 | also depend on the final bonding interface name chosen for your bond. |
| 595 | As with other network devices, these typically start at 0, and go up |
| 596 | one for each device, i.e., the first bonding instance is bond0, the |
| 597 | second is bond1, and so on. |
| 598 | |
| 599 | Next, create a bond network script. The file name for this |
| 600 | script will be /etc/sysconfig/network-scripts/ifcfg-bondX where X is |
| 601 | the number of the bond. For bond0 the file is named "ifcfg-bond0", |
| 602 | for bond1 it is named "ifcfg-bond1", and so on. Within that file, |
| 603 | place the following text: |
| 604 | |
| 605 | DEVICE=bond0 |
| 606 | IPADDR=192.168.1.1 |
| 607 | NETMASK=255.255.255.0 |
| 608 | NETWORK=192.168.1.0 |
| 609 | BROADCAST=192.168.1.255 |
| 610 | ONBOOT=yes |
| 611 | BOOTPROTO=none |
| 612 | USERCTL=no |
| 613 | |
| 614 | Be sure to change the networking specific lines (IPADDR, |
| 615 | NETMASK, NETWORK and BROADCAST) to match your network configuration. |
| 616 | |
| 617 | Finally, it is necessary to edit /etc/modules.conf to load the |
| 618 | bonding module when the bond0 interface is brought up. The following |
| 619 | sample lines in /etc/modules.conf will load the bonding module, and |
| 620 | select its options: |
| 621 | |
| 622 | alias bond0 bonding |
| 623 | options bond0 mode=balance-alb miimon=100 |
| 624 | |
| 625 | Replace the sample parameters with the appropriate set of |
| 626 | options for your configuration. |
| 627 | |
| 628 | Finally run "/etc/rc.d/init.d/network restart" as root. This |
| 629 | will restart the networking subsystem and your bond link should be now |
| 630 | up and running. |
| 631 | |
| 632 | |
| 633 | 3.3 Configuring Bonding Manually |
| 634 | -------------------------------- |
| 635 | |
| 636 | This section applies to distros whose network initialization |
| 637 | scripts (the sysconfig or initscripts package) do not have specific |
| 638 | knowledge of bonding. One such distro is SuSE Linux Enterprise Server |
| 639 | version 8. |
| 640 | |
| 641 | The general methodology for these systems is to place the |
| 642 | bonding module parameters into /etc/modprobe.conf, then add modprobe |
| 643 | and/or ifenslave commands to the system's global init script. The |
| 644 | name of the global init script differs; for sysconfig, it is |
| 645 | /etc/init.d/boot.local and for initscripts it is /etc/rc.d/rc.local. |
| 646 | |
| 647 | For example, if you wanted to make a simple bond of two e100 |
| 648 | devices (presumed to be eth0 and eth1), and have it persist across |
| 649 | reboots, edit the appropriate file (/etc/init.d/boot.local or |
| 650 | /etc/rc.d/rc.local), and add the following: |
| 651 | |
| 652 | modprobe bonding -obond0 mode=balance-alb miimon=100 |
| 653 | modprobe e100 |
| 654 | ifconfig bond0 192.168.1.1 netmask 255.255.255.0 up |
| 655 | ifenslave bond0 eth0 |
| 656 | ifenslave bond0 eth1 |
| 657 | |
| 658 | Replace the example bonding module parameters and bond0 |
| 659 | network configuration (IP address, netmask, etc) with the appropriate |
| 660 | values for your configuration. The above example loads the bonding |
| 661 | module with the name "bond0," this simplifies the naming if multiple |
| 662 | bonding modules are loaded (each successive instance of the module is |
| 663 | given a different name, and the module instance names match the |
| 664 | bonding interface names). |
| 665 | |
| 666 | Unfortunately, this method will not provide support for the |
| 667 | ifup and ifdown scripts on the bond devices. To reload the bonding |
| 668 | configuration, it is necessary to run the initialization script, e.g., |
| 669 | |
| 670 | # /etc/init.d/boot.local |
| 671 | |
| 672 | or |
| 673 | |
| 674 | # /etc/rc.d/rc.local |
| 675 | |
| 676 | It may be desirable in such a case to create a separate script |
| 677 | which only initializes the bonding configuration, then call that |
| 678 | separate script from within boot.local. This allows for bonding to be |
| 679 | enabled without re-running the entire global init script. |
| 680 | |
| 681 | To shut down the bonding devices, it is necessary to first |
| 682 | mark the bonding device itself as being down, then remove the |
| 683 | appropriate device driver modules. For our example above, you can do |
| 684 | the following: |
| 685 | |
| 686 | # ifconfig bond0 down |
| 687 | # rmmod bond0 |
| 688 | # rmmod e100 |
| 689 | |
| 690 | Again, for convenience, it may be desirable to create a script |
| 691 | with these commands. |
| 692 | |
| 693 | |
| 694 | 3.4 Configuring Multiple Bonds |
| 695 | ------------------------------ |
| 696 | |
| 697 | This section contains information on configuring multiple |
| 698 | bonding devices with differing options. If you require multiple |
| 699 | bonding devices, but all with the same options, see the "max_bonds" |
| 700 | module paramter, documented above. |
| 701 | |
| 702 | To create multiple bonding devices with differing options, it |
| 703 | is necessary to load the bonding driver multiple times. Note that |
| 704 | current versions of the sysconfig network initialization scripts |
| 705 | handle this automatically; if your distro uses these scripts, no |
| 706 | special action is needed. See the section Configuring Bonding |
| 707 | Devices, above, if you're not sure about your network initialization |
| 708 | scripts. |
| 709 | |
| 710 | To load multiple instances of the module, it is necessary to |
| 711 | specify a different name for each instance (the module loading system |
| 712 | requires that every loaded module, even multiple instances of the same |
| 713 | module, have a unique name). This is accomplished by supplying |
| 714 | multiple sets of bonding options in /etc/modprobe.conf, for example: |
| 715 | |
| 716 | alias bond0 bonding |
| 717 | options bond0 -o bond0 mode=balance-rr miimon=100 |
| 718 | |
| 719 | alias bond1 bonding |
| 720 | options bond1 -o bond1 mode=balance-alb miimon=50 |
| 721 | |
| 722 | will load the bonding module two times. The first instance is |
| 723 | named "bond0" and creates the bond0 device in balance-rr mode with an |
| 724 | miimon of 100. The second instance is named "bond1" and creates the |
| 725 | bond1 device in balance-alb mode with an miimon of 50. |
| 726 | |
| 727 | This may be repeated any number of times, specifying a new and |
| 728 | unique name in place of bond0 or bond1 for each instance. |
| 729 | |
| 730 | When the appropriate module paramters are in place, then |
| 731 | configure bonding according to the instructions for your distro. |
| 732 | |
| 733 | 5. Querying Bonding Configuration |
| 734 | ================================= |
| 735 | |
| 736 | 5.1 Bonding Configuration |
| 737 | ------------------------- |
| 738 | |
| 739 | Each bonding device has a read-only file residing in the |
| 740 | /proc/net/bonding directory. The file contents include information |
| 741 | about the bonding configuration, options and state of each slave. |
| 742 | |
| 743 | For example, the contents of /proc/net/bonding/bond0 after the |
| 744 | driver is loaded with parameters of mode=0 and miimon=1000 is |
| 745 | generally as follows: |
| 746 | |
| 747 | Ethernet Channel Bonding Driver: 2.6.1 (October 29, 2004) |
| 748 | Bonding Mode: load balancing (round-robin) |
| 749 | Currently Active Slave: eth0 |
| 750 | MII Status: up |
| 751 | MII Polling Interval (ms): 1000 |
| 752 | Up Delay (ms): 0 |
| 753 | Down Delay (ms): 0 |
| 754 | |
| 755 | Slave Interface: eth1 |
| 756 | MII Status: up |
| 757 | Link Failure Count: 1 |
| 758 | |
| 759 | Slave Interface: eth0 |
| 760 | MII Status: up |
| 761 | Link Failure Count: 1 |
| 762 | |
| 763 | The precise format and contents will change depending upon the |
| 764 | bonding configuration, state, and version of the bonding driver. |
| 765 | |
| 766 | 5.2 Network configuration |
| 767 | ------------------------- |
| 768 | |
| 769 | The network configuration can be inspected using the ifconfig |
| 770 | command. Bonding devices will have the MASTER flag set; Bonding slave |
| 771 | devices will have the SLAVE flag set. The ifconfig output does not |
| 772 | contain information on which slaves are associated with which masters. |
| 773 | |
| 774 | In the example below, the bond0 interface is the master |
| 775 | (MASTER) while eth0 and eth1 are slaves (SLAVE). Notice all slaves of |
| 776 | bond0 have the same MAC address (HWaddr) as bond0 for all modes except |
| 777 | TLB and ALB that require a unique MAC address for each slave. |
| 778 | |
| 779 | # /sbin/ifconfig |
| 780 | bond0 Link encap:Ethernet HWaddr 00:C0:F0:1F:37:B4 |
| 781 | inet addr:XXX.XXX.XXX.YYY Bcast:XXX.XXX.XXX.255 Mask:255.255.252.0 |
| 782 | UP BROADCAST RUNNING MASTER MULTICAST MTU:1500 Metric:1 |
| 783 | RX packets:7224794 errors:0 dropped:0 overruns:0 frame:0 |
| 784 | TX packets:3286647 errors:1 dropped:0 overruns:1 carrier:0 |
| 785 | collisions:0 txqueuelen:0 |
| 786 | |
| 787 | eth0 Link encap:Ethernet HWaddr 00:C0:F0:1F:37:B4 |
| 788 | inet addr:XXX.XXX.XXX.YYY Bcast:XXX.XXX.XXX.255 Mask:255.255.252.0 |
| 789 | UP BROADCAST RUNNING SLAVE MULTICAST MTU:1500 Metric:1 |
| 790 | RX packets:3573025 errors:0 dropped:0 overruns:0 frame:0 |
| 791 | TX packets:1643167 errors:1 dropped:0 overruns:1 carrier:0 |
| 792 | collisions:0 txqueuelen:100 |
| 793 | Interrupt:10 Base address:0x1080 |
| 794 | |
| 795 | eth1 Link encap:Ethernet HWaddr 00:C0:F0:1F:37:B4 |
| 796 | inet addr:XXX.XXX.XXX.YYY Bcast:XXX.XXX.XXX.255 Mask:255.255.252.0 |
| 797 | UP BROADCAST RUNNING SLAVE MULTICAST MTU:1500 Metric:1 |
| 798 | RX packets:3651769 errors:0 dropped:0 overruns:0 frame:0 |
| 799 | TX packets:1643480 errors:0 dropped:0 overruns:0 carrier:0 |
| 800 | collisions:0 txqueuelen:100 |
| 801 | Interrupt:9 Base address:0x1400 |
| 802 | |
| 803 | 6. Switch Configuration |
| 804 | ======================= |
| 805 | |
| 806 | For this section, "switch" refers to whatever system the |
| 807 | bonded devices are directly connected to (i.e., where the other end of |
| 808 | the cable plugs into). This may be an actual dedicated switch device, |
| 809 | or it may be another regular system (e.g., another computer running |
| 810 | Linux), |
| 811 | |
| 812 | The active-backup, balance-tlb and balance-alb modes do not |
| 813 | require any specific configuration of the switch. |
| 814 | |
| 815 | The 802.3ad mode requires that the switch have the appropriate |
| 816 | ports configured as an 802.3ad aggregation. The precise method used |
| 817 | to configure this varies from switch to switch, but, for example, a |
| 818 | Cisco 3550 series switch requires that the appropriate ports first be |
| 819 | grouped together in a single etherchannel instance, then that |
| 820 | etherchannel is set to mode "lacp" to enable 802.3ad (instead of |
| 821 | standard EtherChannel). |
| 822 | |
| 823 | The balance-rr, balance-xor and broadcast modes generally |
| 824 | require that the switch have the appropriate ports grouped together. |
| 825 | The nomenclature for such a group differs between switches, it may be |
| 826 | called an "etherchannel" (as in the Cisco example, above), a "trunk |
| 827 | group" or some other similar variation. For these modes, each switch |
| 828 | will also have its own configuration options for the switch's transmit |
| 829 | policy to the bond. Typical choices include XOR of either the MAC or |
| 830 | IP addresses. The transmit policy of the two peers does not need to |
| 831 | match. For these three modes, the bonding mode really selects a |
| 832 | transmit policy for an EtherChannel group; all three will interoperate |
| 833 | with another EtherChannel group. |
| 834 | |
| 835 | |
| 836 | 7. 802.1q VLAN Support |
| 837 | ====================== |
| 838 | |
| 839 | It is possible to configure VLAN devices over a bond interface |
| 840 | using the 8021q driver. However, only packets coming from the 8021q |
| 841 | driver and passing through bonding will be tagged by default. Self |
| 842 | generated packets, for example, bonding's learning packets or ARP |
| 843 | packets generated by either ALB mode or the ARP monitor mechanism, are |
| 844 | tagged internally by bonding itself. As a result, bonding must |
| 845 | "learn" the VLAN IDs configured above it, and use those IDs to tag |
| 846 | self generated packets. |
| 847 | |
| 848 | For reasons of simplicity, and to support the use of adapters |
| 849 | that can do VLAN hardware acceleration offloding, the bonding |
| 850 | interface declares itself as fully hardware offloaing capable, it gets |
| 851 | the add_vid/kill_vid notifications to gather the necessary |
| 852 | information, and it propagates those actions to the slaves. In case |
| 853 | of mixed adapter types, hardware accelerated tagged packets that |
| 854 | should go through an adapter that is not offloading capable are |
| 855 | "un-accelerated" by the bonding driver so the VLAN tag sits in the |
| 856 | regular location. |
| 857 | |
| 858 | VLAN interfaces *must* be added on top of a bonding interface |
| 859 | only after enslaving at least one slave. The bonding interface has a |
| 860 | hardware address of 00:00:00:00:00:00 until the first slave is added. |
| 861 | If the VLAN interface is created prior to the first enslavement, it |
| 862 | would pick up the all-zeroes hardware address. Once the first slave |
| 863 | is attached to the bond, the bond device itself will pick up the |
| 864 | slave's hardware address, which is then available for the VLAN device. |
| 865 | |
| 866 | Also, be aware that a similar problem can occur if all slaves |
| 867 | are released from a bond that still has one or more VLAN interfaces on |
| 868 | top of it. When a new slave is added, the bonding interface will |
| 869 | obtain its hardware address from the first slave, which might not |
| 870 | match the hardware address of the VLAN interfaces (which was |
| 871 | ultimately copied from an earlier slave). |
| 872 | |
| 873 | There are two methods to insure that the VLAN device operates |
| 874 | with the correct hardware address if all slaves are removed from a |
| 875 | bond interface: |
| 876 | |
| 877 | 1. Remove all VLAN interfaces then recreate them |
| 878 | |
| 879 | 2. Set the bonding interface's hardware address so that it |
| 880 | matches the hardware address of the VLAN interfaces. |
| 881 | |
| 882 | Note that changing a VLAN interface's HW address would set the |
| 883 | underlying device -- i.e. the bonding interface -- to promiscouos |
| 884 | mode, which might not be what you want. |
| 885 | |
| 886 | |
| 887 | 8. Link Monitoring |
| 888 | ================== |
| 889 | |
| 890 | The bonding driver at present supports two schemes for |
| 891 | monitoring a slave device's link state: the ARP monitor and the MII |
| 892 | monitor. |
| 893 | |
| 894 | At the present time, due to implementation restrictions in the |
| 895 | bonding driver itself, it is not possible to enable both ARP and MII |
| 896 | monitoring simultaneously. |
| 897 | |
| 898 | 8.1 ARP Monitor Operation |
| 899 | ------------------------- |
| 900 | |
| 901 | The ARP monitor operates as its name suggests: it sends ARP |
| 902 | queries to one or more designated peer systems on the network, and |
| 903 | uses the response as an indication that the link is operating. This |
| 904 | gives some assurance that traffic is actually flowing to and from one |
| 905 | or more peers on the local network. |
| 906 | |
| 907 | The ARP monitor relies on the device driver itself to verify |
| 908 | that traffic is flowing. In particular, the driver must keep up to |
| 909 | date the last receive time, dev->last_rx, and transmit start time, |
| 910 | dev->trans_start. If these are not updated by the driver, then the |
| 911 | ARP monitor will immediately fail any slaves using that driver, and |
| 912 | those slaves will stay down. If networking monitoring (tcpdump, etc) |
| 913 | shows the ARP requests and replies on the network, then it may be that |
| 914 | your device driver is not updating last_rx and trans_start. |
| 915 | |
| 916 | 8.2 Configuring Multiple ARP Targets |
| 917 | ------------------------------------ |
| 918 | |
| 919 | While ARP monitoring can be done with just one target, it can |
| 920 | be useful in a High Availability setup to have several targets to |
| 921 | monitor. In the case of just one target, the target itself may go |
| 922 | down or have a problem making it unresponsive to ARP requests. Having |
| 923 | an additional target (or several) increases the reliability of the ARP |
| 924 | monitoring. |
| 925 | |
| 926 | Multiple ARP targets must be seperated by commas as follows: |
| 927 | |
| 928 | # example options for ARP monitoring with three targets |
| 929 | alias bond0 bonding |
| 930 | options bond0 arp_interval=60 arp_ip_target=192.168.0.1,192.168.0.3,192.168.0.9 |
| 931 | |
| 932 | For just a single target the options would resemble: |
| 933 | |
| 934 | # example options for ARP monitoring with one target |
| 935 | alias bond0 bonding |
| 936 | options bond0 arp_interval=60 arp_ip_target=192.168.0.100 |
| 937 | |
| 938 | |
| 939 | 8.3 MII Monitor Operation |
| 940 | ------------------------- |
| 941 | |
| 942 | The MII monitor monitors only the carrier state of the local |
| 943 | network interface. It accomplishes this in one of three ways: by |
| 944 | depending upon the device driver to maintain its carrier state, by |
| 945 | querying the device's MII registers, or by making an ethtool query to |
| 946 | the device. |
| 947 | |
| 948 | If the use_carrier module parameter is 1 (the default value), |
| 949 | then the MII monitor will rely on the driver for carrier state |
| 950 | information (via the netif_carrier subsystem). As explained in the |
| 951 | use_carrier parameter information, above, if the MII monitor fails to |
| 952 | detect carrier loss on the device (e.g., when the cable is physically |
| 953 | disconnected), it may be that the driver does not support |
| 954 | netif_carrier. |
| 955 | |
| 956 | If use_carrier is 0, then the MII monitor will first query the |
| 957 | device's (via ioctl) MII registers and check the link state. If that |
| 958 | request fails (not just that it returns carrier down), then the MII |
| 959 | monitor will make an ethtool ETHOOL_GLINK request to attempt to obtain |
| 960 | the same information. If both methods fail (i.e., the driver either |
| 961 | does not support or had some error in processing both the MII register |
| 962 | and ethtool requests), then the MII monitor will assume the link is |
| 963 | up. |
| 964 | |
| 965 | 9. Potential Sources of Trouble |
| 966 | =============================== |
| 967 | |
| 968 | 9.1 Adventures in Routing |
| 969 | ------------------------- |
| 970 | |
| 971 | When bonding is configured, it is important that the slave |
| 972 | devices not have routes that supercede routes of the master (or, |
| 973 | generally, not have routes at all). For example, suppose the bonding |
| 974 | device bond0 has two slaves, eth0 and eth1, and the routing table is |
| 975 | as follows: |
| 976 | |
| 977 | Kernel IP routing table |
| 978 | Destination Gateway Genmask Flags MSS Window irtt Iface |
| 979 | 10.0.0.0 0.0.0.0 255.255.0.0 U 40 0 0 eth0 |
| 980 | 10.0.0.0 0.0.0.0 255.255.0.0 U 40 0 0 eth1 |
| 981 | 10.0.0.0 0.0.0.0 255.255.0.0 U 40 0 0 bond0 |
| 982 | 127.0.0.0 0.0.0.0 255.0.0.0 U 40 0 0 lo |
| 983 | |
| 984 | This routing configuration will likely still update the |
| 985 | receive/transmit times in the driver (needed by the ARP monitor), but |
| 986 | may bypass the bonding driver (because outgoing traffic to, in this |
| 987 | case, another host on network 10 would use eth0 or eth1 before bond0). |
| 988 | |
| 989 | The ARP monitor (and ARP itself) may become confused by this |
| 990 | configuration, because ARP requests (generated by the ARP monitor) |
| 991 | will be sent on one interface (bond0), but the corresponding reply |
| 992 | will arrive on a different interface (eth0). This reply looks to ARP |
| 993 | as an unsolicited ARP reply (because ARP matches replies on an |
| 994 | interface basis), and is discarded. The MII monitor is not affected |
| 995 | by the state of the routing table. |
| 996 | |
| 997 | The solution here is simply to insure that slaves do not have |
| 998 | routes of their own, and if for some reason they must, those routes do |
| 999 | not supercede routes of their master. This should generally be the |
| 1000 | case, but unusual configurations or errant manual or automatic static |
| 1001 | route additions may cause trouble. |
| 1002 | |
| 1003 | 9.2 Ethernet Device Renaming |
| 1004 | ---------------------------- |
| 1005 | |
| 1006 | On systems with network configuration scripts that do not |
| 1007 | associate physical devices directly with network interface names (so |
| 1008 | that the same physical device always has the same "ethX" name), it may |
| 1009 | be necessary to add some special logic to either /etc/modules.conf or |
| 1010 | /etc/modprobe.conf (depending upon which is installed on the system). |
| 1011 | |
| 1012 | For example, given a modules.conf containing the following: |
| 1013 | |
| 1014 | alias bond0 bonding |
| 1015 | options bond0 mode=some-mode miimon=50 |
| 1016 | alias eth0 tg3 |
| 1017 | alias eth1 tg3 |
| 1018 | alias eth2 e1000 |
| 1019 | alias eth3 e1000 |
| 1020 | |
| 1021 | If neither eth0 and eth1 are slaves to bond0, then when the |
| 1022 | bond0 interface comes up, the devices may end up reordered. This |
| 1023 | happens because bonding is loaded first, then its slave device's |
| 1024 | drivers are loaded next. Since no other drivers have been loaded, |
| 1025 | when the e1000 driver loads, it will receive eth0 and eth1 for its |
| 1026 | devices, but the bonding configuration tries to enslave eth2 and eth3 |
| 1027 | (which may later be assigned to the tg3 devices). |
| 1028 | |
| 1029 | Adding the following: |
| 1030 | |
| 1031 | add above bonding e1000 tg3 |
| 1032 | |
| 1033 | causes modprobe to load e1000 then tg3, in that order, when |
| 1034 | bonding is loaded. This command is fully documented in the |
| 1035 | modules.conf manual page. |
| 1036 | |
| 1037 | On systems utilizing modprobe.conf (or modprobe.conf.local), |
| 1038 | an equivalent problem can occur. In this case, the following can be |
| 1039 | added to modprobe.conf (or modprobe.conf.local, as appropriate), as |
| 1040 | follows (all on one line; it has been split here for clarity): |
| 1041 | |
| 1042 | install bonding /sbin/modprobe tg3; /sbin/modprobe e1000; |
| 1043 | /sbin/modprobe --ignore-install bonding |
| 1044 | |
| 1045 | This will, when loading the bonding module, rather than |
| 1046 | performing the normal action, instead execute the provided command. |
| 1047 | This command loads the device drivers in the order needed, then calls |
| 1048 | modprobe with --ingore-install to cause the normal action to then take |
| 1049 | place. Full documentation on this can be found in the modprobe.conf |
| 1050 | and modprobe manual pages. |
| 1051 | |
| 1052 | 9.3. Painfully Slow Or No Failed Link Detection By Miimon |
| 1053 | --------------------------------------------------------- |
| 1054 | |
| 1055 | By default, bonding enables the use_carrier option, which |
| 1056 | instructs bonding to trust the driver to maintain carrier state. |
| 1057 | |
| 1058 | As discussed in the options section, above, some drivers do |
| 1059 | not support the netif_carrier_on/_off link state tracking system. |
| 1060 | With use_carrier enabled, bonding will always see these links as up, |
| 1061 | regardless of their actual state. |
| 1062 | |
| 1063 | Additionally, other drivers do support netif_carrier, but do |
| 1064 | not maintain it in real time, e.g., only polling the link state at |
| 1065 | some fixed interval. In this case, miimon will detect failures, but |
| 1066 | only after some long period of time has expired. If it appears that |
| 1067 | miimon is very slow in detecting link failures, try specifying |
| 1068 | use_carrier=0 to see if that improves the failure detection time. If |
| 1069 | it does, then it may be that the driver checks the carrier state at a |
| 1070 | fixed interval, but does not cache the MII register values (so the |
| 1071 | use_carrier=0 method of querying the registers directly works). If |
| 1072 | use_carrier=0 does not improve the failover, then the driver may cache |
| 1073 | the registers, or the problem may be elsewhere. |
| 1074 | |
| 1075 | Also, remember that miimon only checks for the device's |
| 1076 | carrier state. It has no way to determine the state of devices on or |
| 1077 | beyond other ports of a switch, or if a switch is refusing to pass |
| 1078 | traffic while still maintaining carrier on. |
| 1079 | |
| 1080 | 10. SNMP agents |
| 1081 | =============== |
| 1082 | |
| 1083 | If running SNMP agents, the bonding driver should be loaded |
| 1084 | before any network drivers participating in a bond. This requirement |
| 1085 | is due to the the interface index (ipAdEntIfIndex) being associated to |
| 1086 | the first interface found with a given IP address. That is, there is |
| 1087 | only one ipAdEntIfIndex for each IP address. For example, if eth0 and |
| 1088 | eth1 are slaves of bond0 and the driver for eth0 is loaded before the |
| 1089 | bonding driver, the interface for the IP address will be associated |
| 1090 | with the eth0 interface. This configuration is shown below, the IP |
| 1091 | address 192.168.1.1 has an interface index of 2 which indexes to eth0 |
| 1092 | in the ifDescr table (ifDescr.2). |
| 1093 | |
| 1094 | interfaces.ifTable.ifEntry.ifDescr.1 = lo |
| 1095 | interfaces.ifTable.ifEntry.ifDescr.2 = eth0 |
| 1096 | interfaces.ifTable.ifEntry.ifDescr.3 = eth1 |
| 1097 | interfaces.ifTable.ifEntry.ifDescr.4 = eth2 |
| 1098 | interfaces.ifTable.ifEntry.ifDescr.5 = eth3 |
| 1099 | interfaces.ifTable.ifEntry.ifDescr.6 = bond0 |
| 1100 | ip.ipAddrTable.ipAddrEntry.ipAdEntIfIndex.10.10.10.10 = 5 |
| 1101 | ip.ipAddrTable.ipAddrEntry.ipAdEntIfIndex.192.168.1.1 = 2 |
| 1102 | ip.ipAddrTable.ipAddrEntry.ipAdEntIfIndex.10.74.20.94 = 4 |
| 1103 | ip.ipAddrTable.ipAddrEntry.ipAdEntIfIndex.127.0.0.1 = 1 |
| 1104 | |
| 1105 | This problem is avoided by loading the bonding driver before |
| 1106 | any network drivers participating in a bond. Below is an example of |
| 1107 | loading the bonding driver first, the IP address 192.168.1.1 is |
| 1108 | correctly associated with ifDescr.2. |
| 1109 | |
| 1110 | interfaces.ifTable.ifEntry.ifDescr.1 = lo |
| 1111 | interfaces.ifTable.ifEntry.ifDescr.2 = bond0 |
| 1112 | interfaces.ifTable.ifEntry.ifDescr.3 = eth0 |
| 1113 | interfaces.ifTable.ifEntry.ifDescr.4 = eth1 |
| 1114 | interfaces.ifTable.ifEntry.ifDescr.5 = eth2 |
| 1115 | interfaces.ifTable.ifEntry.ifDescr.6 = eth3 |
| 1116 | ip.ipAddrTable.ipAddrEntry.ipAdEntIfIndex.10.10.10.10 = 6 |
| 1117 | ip.ipAddrTable.ipAddrEntry.ipAdEntIfIndex.192.168.1.1 = 2 |
| 1118 | ip.ipAddrTable.ipAddrEntry.ipAdEntIfIndex.10.74.20.94 = 5 |
| 1119 | ip.ipAddrTable.ipAddrEntry.ipAdEntIfIndex.127.0.0.1 = 1 |
| 1120 | |
| 1121 | While some distributions may not report the interface name in |
| 1122 | ifDescr, the association between the IP address and IfIndex remains |
| 1123 | and SNMP functions such as Interface_Scan_Next will report that |
| 1124 | association. |
| 1125 | |
| 1126 | 11. Promiscuous mode |
| 1127 | ==================== |
| 1128 | |
| 1129 | When running network monitoring tools, e.g., tcpdump, it is |
| 1130 | common to enable promiscuous mode on the device, so that all traffic |
| 1131 | is seen (instead of seeing only traffic destined for the local host). |
| 1132 | The bonding driver handles promiscuous mode changes to the bonding |
| 1133 | master device (e.g., bond0), and propogates the setting to the slave |
| 1134 | devices. |
| 1135 | |
| 1136 | For the balance-rr, balance-xor, broadcast, and 802.3ad modes, |
| 1137 | the promiscuous mode setting is propogated to all slaves. |
| 1138 | |
| 1139 | For the active-backup, balance-tlb and balance-alb modes, the |
| 1140 | promiscuous mode setting is propogated only to the active slave. |
| 1141 | |
| 1142 | For balance-tlb mode, the active slave is the slave currently |
| 1143 | receiving inbound traffic. |
| 1144 | |
| 1145 | For balance-alb mode, the active slave is the slave used as a |
| 1146 | "primary." This slave is used for mode-specific control traffic, for |
| 1147 | sending to peers that are unassigned or if the load is unbalanced. |
| 1148 | |
| 1149 | For the active-backup, balance-tlb and balance-alb modes, when |
| 1150 | the active slave changes (e.g., due to a link failure), the |
| 1151 | promiscuous setting will be propogated to the new active slave. |
| 1152 | |
| 1153 | 12. High Availability Information |
| 1154 | ================================= |
| 1155 | |
| 1156 | High Availability refers to configurations that provide |
| 1157 | maximum network availability by having redundant or backup devices, |
| 1158 | links and switches between the host and the rest of the world. |
| 1159 | |
| 1160 | There are currently two basic methods for configuring to |
| 1161 | maximize availability. They are dependent on the network topology and |
| 1162 | the primary goal of the configuration, but in general, a configuration |
| 1163 | can be optimized for maximum available bandwidth, or for maximum |
| 1164 | network availability. |
| 1165 | |
| 1166 | 12.1 High Availability in a Single Switch Topology |
| 1167 | -------------------------------------------------- |
| 1168 | |
| 1169 | If two hosts (or a host and a switch) are directly connected |
| 1170 | via multiple physical links, then there is no network availability |
| 1171 | penalty for optimizing for maximum bandwidth: there is only one switch |
| 1172 | (or peer), so if it fails, you have no alternative access to fail over |
| 1173 | to. |
| 1174 | |
| 1175 | Example 1 : host to switch (or other host) |
| 1176 | |
| 1177 | +----------+ +----------+ |
| 1178 | | |eth0 eth0| switch | |
| 1179 | | Host A +--------------------------+ or | |
| 1180 | | +--------------------------+ other | |
| 1181 | | |eth1 eth1| host | |
| 1182 | +----------+ +----------+ |
| 1183 | |
| 1184 | |
| 1185 | 12.1.1 Bonding Mode Selection for single switch topology |
| 1186 | -------------------------------------------------------- |
| 1187 | |
| 1188 | This configuration is the easiest to set up and to understand, |
| 1189 | although you will have to decide which bonding mode best suits your |
| 1190 | needs. The tradeoffs for each mode are detailed below: |
| 1191 | |
| 1192 | balance-rr: This mode is the only mode that will permit a single |
| 1193 | TCP/IP connection to stripe traffic across multiple |
| 1194 | interfaces. It is therefore the only mode that will allow a |
| 1195 | single TCP/IP stream to utilize more than one interface's |
| 1196 | worth of throughput. This comes at a cost, however: the |
| 1197 | striping often results in peer systems receiving packets out |
| 1198 | of order, causing TCP/IP's congestion control system to kick |
| 1199 | in, often by retransmitting segments. |
| 1200 | |
| 1201 | It is possible to adjust TCP/IP's congestion limits by |
| 1202 | altering the net.ipv4.tcp_reordering sysctl parameter. The |
| 1203 | usual default value is 3, and the maximum useful value is 127. |
| 1204 | For a four interface balance-rr bond, expect that a single |
| 1205 | TCP/IP stream will utilize no more than approximately 2.3 |
| 1206 | interface's worth of throughput, even after adjusting |
| 1207 | tcp_reordering. |
| 1208 | |
| 1209 | If you are utilizing protocols other than TCP/IP, UDP for |
| 1210 | example, and your application can tolerate out of order |
| 1211 | delivery, then this mode can allow for single stream datagram |
| 1212 | performance that scales near linearly as interfaces are added |
| 1213 | to the bond. |
| 1214 | |
| 1215 | This mode requires the switch to have the appropriate ports |
| 1216 | configured for "etherchannel" or "trunking." |
| 1217 | |
| 1218 | active-backup: There is not much advantage in this network topology to |
| 1219 | the active-backup mode, as the inactive backup devices are all |
| 1220 | connected to the same peer as the primary. In this case, a |
| 1221 | load balancing mode (with link monitoring) will provide the |
| 1222 | same level of network availability, but with increased |
| 1223 | available bandwidth. On the plus side, it does not require |
| 1224 | any configuration of the switch. |
| 1225 | |
| 1226 | balance-xor: This mode will limit traffic such that packets destined |
| 1227 | for specific peers will always be sent over the same |
| 1228 | interface. Since the destination is determined by the MAC |
| 1229 | addresses involved, this may be desirable if you have a large |
| 1230 | network with many hosts. It is likely to be suboptimal if all |
| 1231 | your traffic is passed through a single router, however. As |
| 1232 | with balance-rr, the switch ports need to be configured for |
| 1233 | "etherchannel" or "trunking." |
| 1234 | |
| 1235 | broadcast: Like active-backup, there is not much advantage to this |
| 1236 | mode in this type of network topology. |
| 1237 | |
| 1238 | 802.3ad: This mode can be a good choice for this type of network |
| 1239 | topology. The 802.3ad mode is an IEEE standard, so all peers |
| 1240 | that implement 802.3ad should interoperate well. The 802.3ad |
| 1241 | protocol includes automatic configuration of the aggregates, |
| 1242 | so minimal manual configuration of the switch is needed |
| 1243 | (typically only to designate that some set of devices is |
| 1244 | usable for 802.3ad). The 802.3ad standard also mandates that |
| 1245 | frames be delivered in order (within certain limits), so in |
| 1246 | general single connections will not see misordering of |
| 1247 | packets. The 802.3ad mode does have some drawbacks: the |
| 1248 | standard mandates that all devices in the aggregate operate at |
| 1249 | the same speed and duplex. Also, as with all bonding load |
| 1250 | balance modes other than balance-rr, no single connection will |
| 1251 | be able to utilize more than a single interface's worth of |
| 1252 | bandwidth. Additionally, the linux bonding 802.3ad |
| 1253 | implementation distributes traffic by peer (using an XOR of |
| 1254 | MAC addresses), so in general all traffic to a particular |
| 1255 | destination will use the same interface. Finally, the 802.3ad |
| 1256 | mode mandates the use of the MII monitor, therefore, the ARP |
| 1257 | monitor is not available in this mode. |
| 1258 | |
| 1259 | balance-tlb: This mode is also a good choice for this type of |
| 1260 | topology. It has no special switch configuration |
| 1261 | requirements, and balances outgoing traffic by peer, in a |
| 1262 | vaguely intelligent manner (not a simple XOR as in balance-xor |
| 1263 | or 802.3ad mode), so that unlucky MAC addresses will not all |
| 1264 | "bunch up" on a single interface. Interfaces may be of |
| 1265 | differing speeds. On the down side, in this mode all incoming |
| 1266 | traffic arrives over a single interface, this mode requires |
| 1267 | certain ethtool support in the network device driver of the |
| 1268 | slave interfaces, and the ARP monitor is not available. |
| 1269 | |
| 1270 | balance-alb: This mode is everything that balance-tlb is, and more. It |
| 1271 | has all of the features (and restrictions) of balance-tlb, and |
| 1272 | will also balance incoming traffic from peers (as described in |
| 1273 | the Bonding Module Options section, above). The only extra |
| 1274 | down side to this mode is that the network device driver must |
| 1275 | support changing the hardware address while the device is |
| 1276 | open. |
| 1277 | |
| 1278 | 12.1.2 Link Monitoring for Single Switch Topology |
| 1279 | ------------------------------------------------- |
| 1280 | |
| 1281 | The choice of link monitoring may largely depend upon which |
| 1282 | mode you choose to use. The more advanced load balancing modes do not |
| 1283 | support the use of the ARP monitor, and are thus restricted to using |
| 1284 | the MII monitor (which does not provide as high a level of assurance |
| 1285 | as the ARP monitor). |
| 1286 | |
| 1287 | |
| 1288 | 12.2 High Availability in a Multiple Switch Topology |
| 1289 | ---------------------------------------------------- |
| 1290 | |
| 1291 | With multiple switches, the configuration of bonding and the |
| 1292 | network changes dramatically. In multiple switch topologies, there is |
| 1293 | a tradeoff between network availability and usable bandwidth. |
| 1294 | |
| 1295 | Below is a sample network, configured to maximize the |
| 1296 | availability of the network: |
| 1297 | |
| 1298 | | | |
| 1299 | |port3 port3| |
| 1300 | +-----+----+ +-----+----+ |
| 1301 | | |port2 ISL port2| | |
| 1302 | | switch A +--------------------------+ switch B | |
| 1303 | | | | | |
| 1304 | +-----+----+ +-----++---+ |
| 1305 | |port1 port1| |
| 1306 | | +-------+ | |
| 1307 | +-------------+ host1 +---------------+ |
| 1308 | eth0 +-------+ eth1 |
| 1309 | |
| 1310 | In this configuration, there is a link between the two |
| 1311 | switches (ISL, or inter switch link), and multiple ports connecting to |
| 1312 | the outside world ("port3" on each switch). There is no technical |
| 1313 | reason that this could not be extended to a third switch. |
| 1314 | |
| 1315 | 12.2.1 Bonding Mode Selection for Multiple Switch Topology |
| 1316 | ---------------------------------------------------------- |
| 1317 | |
| 1318 | In a topology such as this, the active-backup and broadcast |
| 1319 | modes are the only useful bonding modes; the other modes require all |
| 1320 | links to terminate on the same peer for them to behave rationally. |
| 1321 | |
| 1322 | active-backup: This is generally the preferred mode, particularly if |
| 1323 | the switches have an ISL and play together well. If the |
| 1324 | network configuration is such that one switch is specifically |
| 1325 | a backup switch (e.g., has lower capacity, higher cost, etc), |
| 1326 | then the primary option can be used to insure that the |
| 1327 | preferred link is always used when it is available. |
| 1328 | |
| 1329 | broadcast: This mode is really a special purpose mode, and is suitable |
| 1330 | only for very specific needs. For example, if the two |
| 1331 | switches are not connected (no ISL), and the networks beyond |
| 1332 | them are totally independant. In this case, if it is |
| 1333 | necessary for some specific one-way traffic to reach both |
| 1334 | independent networks, then the broadcast mode may be suitable. |
| 1335 | |
| 1336 | 12.2.2 Link Monitoring Selection for Multiple Switch Topology |
| 1337 | ------------------------------------------------------------- |
| 1338 | |
| 1339 | The choice of link monitoring ultimately depends upon your |
| 1340 | switch. If the switch can reliably fail ports in response to other |
| 1341 | failures, then either the MII or ARP monitors should work. For |
| 1342 | example, in the above example, if the "port3" link fails at the remote |
| 1343 | end, the MII monitor has no direct means to detect this. The ARP |
| 1344 | monitor could be configured with a target at the remote end of port3, |
| 1345 | thus detecting that failure without switch support. |
| 1346 | |
| 1347 | In general, however, in a multiple switch topology, the ARP |
| 1348 | monitor can provide a higher level of reliability in detecting link |
| 1349 | failures. Additionally, it should be configured with multiple targets |
| 1350 | (at least one for each switch in the network). This will insure that, |
| 1351 | regardless of which switch is active, the ARP monitor has a suitable |
| 1352 | target to query. |
| 1353 | |
| 1354 | |
| 1355 | 12.3 Switch Behavior Issues for High Availability |
| 1356 | ------------------------------------------------- |
| 1357 | |
| 1358 | You may encounter issues with the timing of link up and down |
| 1359 | reporting by the switch. |
| 1360 | |
| 1361 | First, when a link comes up, some switches may indicate that |
| 1362 | the link is up (carrier available), but not pass traffic over the |
| 1363 | interface for some period of time. This delay is typically due to |
| 1364 | some type of autonegotiation or routing protocol, but may also occur |
| 1365 | during switch initialization (e.g., during recovery after a switch |
| 1366 | failure). If you find this to be a problem, specify an appropriate |
| 1367 | value to the updelay bonding module option to delay the use of the |
| 1368 | relevant interface(s). |
| 1369 | |
| 1370 | Second, some switches may "bounce" the link state one or more |
| 1371 | times while a link is changing state. This occurs most commonly while |
| 1372 | the switch is initializing. Again, an appropriate updelay value may |
| 1373 | help, but note that if all links are down, then updelay is ignored |
| 1374 | when any link becomes active (the slave closest to completing its |
| 1375 | updelay is chosen). |
| 1376 | |
| 1377 | Note that when a bonding interface has no active links, the |
| 1378 | driver will immediately reuse the first link that goes up, even if |
| 1379 | updelay parameter was specified. If there are slave interfaces |
| 1380 | waiting for the updelay timeout to expire, the interface that first |
| 1381 | went into that state will be immediately reused. This reduces down |
| 1382 | time of the network if the value of updelay has been overestimated. |
| 1383 | |
| 1384 | In addition to the concerns about switch timings, if your |
| 1385 | switches take a long time to go into backup mode, it may be desirable |
| 1386 | to not activate a backup interface immediately after a link goes down. |
| 1387 | Failover may be delayed via the downdelay bonding module option. |
| 1388 | |
| 1389 | 13. Hardware Specific Considerations |
| 1390 | ==================================== |
| 1391 | |
| 1392 | This section contains additional information for configuring |
| 1393 | bonding on specific hardware platforms, or for interfacing bonding |
| 1394 | with particular switches or other devices. |
| 1395 | |
| 1396 | 13.1 IBM BladeCenter |
| 1397 | -------------------- |
| 1398 | |
| 1399 | This applies to the JS20 and similar systems. |
| 1400 | |
| 1401 | On the JS20 blades, the bonding driver supports only |
| 1402 | balance-rr, active-backup, balance-tlb and balance-alb modes. This is |
| 1403 | largely due to the network topology inside the BladeCenter, detailed |
| 1404 | below. |
| 1405 | |
| 1406 | JS20 network adapter information |
| 1407 | -------------------------------- |
| 1408 | |
| 1409 | All JS20s come with two Broadcom Gigabit Ethernet ports |
| 1410 | integrated on the planar. In the BladeCenter chassis, the eth0 port |
| 1411 | of all JS20 blades is hard wired to I/O Module #1; similarly, all eth1 |
| 1412 | ports are wired to I/O Module #2. An add-on Broadcom daughter card |
| 1413 | can be installed on a JS20 to provide two more Gigabit Ethernet ports. |
| 1414 | These ports, eth2 and eth3, are wired to I/O Modules 3 and 4, |
| 1415 | respectively. |
| 1416 | |
| 1417 | Each I/O Module may contain either a switch or a passthrough |
| 1418 | module (which allows ports to be directly connected to an external |
| 1419 | switch). Some bonding modes require a specific BladeCenter internal |
| 1420 | network topology in order to function; these are detailed below. |
| 1421 | |
| 1422 | Additional BladeCenter-specific networking information can be |
| 1423 | found in two IBM Redbooks (www.ibm.com/redbooks): |
| 1424 | |
| 1425 | "IBM eServer BladeCenter Networking Options" |
| 1426 | "IBM eServer BladeCenter Layer 2-7 Network Switching" |
| 1427 | |
| 1428 | BladeCenter networking configuration |
| 1429 | ------------------------------------ |
| 1430 | |
| 1431 | Because a BladeCenter can be configured in a very large number |
| 1432 | of ways, this discussion will be confined to describing basic |
| 1433 | configurations. |
| 1434 | |
| 1435 | Normally, Ethernet Switch Modules (ESM) are used in I/O |
| 1436 | modules 1 and 2. In this configuration, the eth0 and eth1 ports of a |
| 1437 | JS20 will be connected to different internal switches (in the |
| 1438 | respective I/O modules). |
| 1439 | |
| 1440 | An optical passthru module (OPM) connects the I/O module |
| 1441 | directly to an external switch. By using OPMs in I/O module #1 and |
| 1442 | #2, the eth0 and eth1 interfaces of a JS20 can be redirected to the |
| 1443 | outside world and connected to a common external switch. |
| 1444 | |
| 1445 | Depending upon the mix of ESM and OPM modules, the network |
| 1446 | will appear to bonding as either a single switch topology (all OPM |
| 1447 | modules) or as a multiple switch topology (one or more ESM modules, |
| 1448 | zero or more OPM modules). It is also possible to connect ESM modules |
| 1449 | together, resulting in a configuration much like the example in "High |
| 1450 | Availability in a multiple switch topology." |
| 1451 | |
| 1452 | Requirements for specifc modes |
| 1453 | ------------------------------ |
| 1454 | |
| 1455 | The balance-rr mode requires the use of OPM modules for |
| 1456 | devices in the bond, all connected to an common external switch. That |
| 1457 | switch must be configured for "etherchannel" or "trunking" on the |
| 1458 | appropriate ports, as is usual for balance-rr. |
| 1459 | |
| 1460 | The balance-alb and balance-tlb modes will function with |
| 1461 | either switch modules or passthrough modules (or a mix). The only |
| 1462 | specific requirement for these modes is that all network interfaces |
| 1463 | must be able to reach all destinations for traffic sent over the |
| 1464 | bonding device (i.e., the network must converge at some point outside |
| 1465 | the BladeCenter). |
| 1466 | |
| 1467 | The active-backup mode has no additional requirements. |
| 1468 | |
| 1469 | Link monitoring issues |
| 1470 | ---------------------- |
| 1471 | |
| 1472 | When an Ethernet Switch Module is in place, only the ARP |
| 1473 | monitor will reliably detect link loss to an external switch. This is |
| 1474 | nothing unusual, but examination of the BladeCenter cabinet would |
| 1475 | suggest that the "external" network ports are the ethernet ports for |
| 1476 | the system, when it fact there is a switch between these "external" |
| 1477 | ports and the devices on the JS20 system itself. The MII monitor is |
| 1478 | only able to detect link failures between the ESM and the JS20 system. |
| 1479 | |
| 1480 | When a passthrough module is in place, the MII monitor does |
| 1481 | detect failures to the "external" port, which is then directly |
| 1482 | connected to the JS20 system. |
| 1483 | |
| 1484 | Other concerns |
| 1485 | -------------- |
| 1486 | |
| 1487 | The Serial Over LAN link is established over the primary |
| 1488 | ethernet (eth0) only, therefore, any loss of link to eth0 will result |
| 1489 | in losing your SoL connection. It will not fail over with other |
| 1490 | network traffic. |
| 1491 | |
| 1492 | It may be desirable to disable spanning tree on the switch |
| 1493 | (either the internal Ethernet Switch Module, or an external switch) to |
| 1494 | avoid fail-over delays issues when using bonding. |
| 1495 | |
| 1496 | |
| 1497 | 14. Frequently Asked Questions |
| 1498 | ============================== |
| 1499 | |
| 1500 | 1. Is it SMP safe? |
| 1501 | |
| 1502 | Yes. The old 2.0.xx channel bonding patch was not SMP safe. |
| 1503 | The new driver was designed to be SMP safe from the start. |
| 1504 | |
| 1505 | 2. What type of cards will work with it? |
| 1506 | |
| 1507 | Any Ethernet type cards (you can even mix cards - a Intel |
| 1508 | EtherExpress PRO/100 and a 3com 3c905b, for example). They need not |
| 1509 | be of the same speed. |
| 1510 | |
| 1511 | 3. How many bonding devices can I have? |
| 1512 | |
| 1513 | There is no limit. |
| 1514 | |
| 1515 | 4. How many slaves can a bonding device have? |
| 1516 | |
| 1517 | This is limited only by the number of network interfaces Linux |
| 1518 | supports and/or the number of network cards you can place in your |
| 1519 | system. |
| 1520 | |
| 1521 | 5. What happens when a slave link dies? |
| 1522 | |
| 1523 | If link monitoring is enabled, then the failing device will be |
| 1524 | disabled. The active-backup mode will fail over to a backup link, and |
| 1525 | other modes will ignore the failed link. The link will continue to be |
| 1526 | monitored, and should it recover, it will rejoin the bond (in whatever |
| 1527 | manner is appropriate for the mode). See the section on High |
| 1528 | Availability for additional information. |
| 1529 | |
| 1530 | Link monitoring can be enabled via either the miimon or |
| 1531 | arp_interval paramters (described in the module paramters section, |
| 1532 | above). In general, miimon monitors the carrier state as sensed by |
| 1533 | the underlying network device, and the arp monitor (arp_interval) |
| 1534 | monitors connectivity to another host on the local network. |
| 1535 | |
| 1536 | If no link monitoring is configured, the bonding driver will |
| 1537 | be unable to detect link failures, and will assume that all links are |
| 1538 | always available. This will likely result in lost packets, and a |
| 1539 | resulting degredation of performance. The precise performance loss |
| 1540 | depends upon the bonding mode and network configuration. |
| 1541 | |
| 1542 | 6. Can bonding be used for High Availability? |
| 1543 | |
| 1544 | Yes. See the section on High Availability for details. |
| 1545 | |
| 1546 | 7. Which switches/systems does it work with? |
| 1547 | |
| 1548 | The full answer to this depends upon the desired mode. |
| 1549 | |
| 1550 | In the basic balance modes (balance-rr and balance-xor), it |
| 1551 | works with any system that supports etherchannel (also called |
| 1552 | trunking). Most managed switches currently available have such |
| 1553 | support, and many unmananged switches as well. |
| 1554 | |
| 1555 | The advanced balance modes (balance-tlb and balance-alb) do |
| 1556 | not have special switch requirements, but do need device drivers that |
| 1557 | support specific features (described in the appropriate section under |
| 1558 | module paramters, above). |
| 1559 | |
| 1560 | In 802.3ad mode, it works with with systems that support IEEE |
| 1561 | 802.3ad Dynamic Link Aggregation. Most managed and many unmanaged |
| 1562 | switches currently available support 802.3ad. |
| 1563 | |
| 1564 | The active-backup mode should work with any Layer-II switch. |
| 1565 | |
| 1566 | 8. Where does a bonding device get its MAC address from? |
| 1567 | |
| 1568 | If not explicitly configured with ifconfig, the MAC address of |
| 1569 | the bonding device is taken from its first slave device. This MAC |
| 1570 | address is then passed to all following slaves and remains persistent |
| 1571 | (even if the the first slave is removed) until the bonding device is |
| 1572 | brought down or reconfigured. |
| 1573 | |
| 1574 | If you wish to change the MAC address, you can set it with |
| 1575 | ifconfig: |
| 1576 | |
| 1577 | # ifconfig bond0 hw ether 00:11:22:33:44:55 |
| 1578 | |
| 1579 | The MAC address can be also changed by bringing down/up the |
| 1580 | device and then changing its slaves (or their order): |
| 1581 | |
| 1582 | # ifconfig bond0 down ; modprobe -r bonding |
| 1583 | # ifconfig bond0 .... up |
| 1584 | # ifenslave bond0 eth... |
| 1585 | |
| 1586 | This method will automatically take the address from the next |
| 1587 | slave that is added. |
| 1588 | |
| 1589 | To restore your slaves' MAC addresses, you need to detach them |
| 1590 | from the bond (`ifenslave -d bond0 eth0'). The bonding driver will |
| 1591 | then restore the MAC addresses that the slaves had before they were |
| 1592 | enslaved. |
| 1593 | |
| 1594 | 15. Resources and Links |
| 1595 | ======================= |
| 1596 | |
| 1597 | The latest version of the bonding driver can be found in the latest |
| 1598 | version of the linux kernel, found on http://kernel.org |
| 1599 | |
| 1600 | Discussions regarding the bonding driver take place primarily on the |
| 1601 | bonding-devel mailing list, hosted at sourceforge.net. If you have |
| 1602 | questions or problems, post them to the list. |
| 1603 | |
| 1604 | bonding-devel@lists.sourceforge.net |
| 1605 | |
| 1606 | https://lists.sourceforge.net/lists/listinfo/bonding-devel |
| 1607 | |
| 1608 | There is also a project site on sourceforge. |
| 1609 | |
| 1610 | http://www.sourceforge.net/projects/bonding |
| 1611 | |
| 1612 | Donald Becker's Ethernet Drivers and diag programs may be found at : |
| 1613 | - http://www.scyld.com/network/ |
| 1614 | |
| 1615 | You will also find a lot of information regarding Ethernet, NWay, MII, |
| 1616 | etc. at www.scyld.com. |
| 1617 | |
| 1618 | -- END -- |