How to configure iSCSI MPIO on Windows 2008?

14,694

When you say you can't "get the traffic to utilize more than 1 network connection", there's two parts to it:

First, how many luns are you using Load balancing a single lun (one drive letter, so to speak) is much, much harder than load balancing multiple luns. You can get a huge head start by breaking the iSCSI share into two separate luns, then configuring iSCSI on the Windows box so that:

  • Windows network card #1 is the primary path for lun #1, and it points to Linux network card A
  • Windows network card #2 is the primary path for lun #2, and it points to Linux network card B (with a separate IP address)

This lets you bypass the one-connection limit in a duct-tape way, but you won't be able to get more than 1 network connection of throughput to a single lun at a given time.

Next, are you measuring send speeds or receive speeds?

To be able to send more than one network connection of traffic to an iSCSI device on the other end, you need to use MPIO on the Windows box and that's pretty much it. Configure MPIO with both IP addresses of the Linux host and you should be able to saturate two or more network cards of outgoing traffic.

However, to be able to receive more than one network connection of traffic on the Windows box, you're going to be pretty much out of luck unless you do something like channel bonding with your network cards. The Linux machine will only send traffic to one MAC address for one lun at a time. You can get around this by doing channel bonding so that the switch routes traffic for one MAC address through multiple network cards.

Here's a couple of my blog posts talking about the myth of active-active multipathing:

Share:
14,694

Related videos on Youtube

Spence
Author by

Spence

Updated on September 17, 2022

Comments

  • Spence
    Spence almost 2 years

    We are using a Linux server running iscsitarget that we'd like to connect to a Windows 2008 server using multipathing.

    Anyone have a link to good documentation on the steps necessary to configure the Windows side? So far, we've been unable to get the traffic to utilize more than 1 network connection.

  • user2409402
    user2409402 about 15 years
    That white paper has about the same qualities as most of Microsoft's white papers -- it's a nice document to answer a checklist sales question, but nearly useless for doing an implementation. There's absolutely NO coverage of how to setup source / target adapters, etc.