3

I'm running Windows Server 2012 R2 and want to connect a Synology Rackstation via iSCSI to my server. The connection is done via four seperate LAN ports. The iSCSI part works fine, but if I copy stuff from the server to the NAS only one ethernet port (always the same) is active instead of four. Load balancing for MPIO is set to Round Robin.

The four ports have different subnets e.g. (Ping works)

Server: 172.16.1.1; 172.16.2.1; 172.16.3.1; 172.16.4.1

Synology: 172.16.1.10; 172.16.2.10; 172.16.3.10; 172.16.4.10

Subnet mask: 255.255.255.0

MPIO is enabled for every LUN and I verified this via mpclaim -s -d

I cannot find different paths, though.

What is the problem? Do you need more information to help me? If so, please ask.

Edit: Still looking for a solution :-(

Boernii
  • 31
  • 4

2 Answers2

3

With a subnet mask of 255.255.0.0, all of your interfaces are on the same subnet. Use 255.255.255.0 instead.

longneck
  • 22,793
  • 4
  • 50
  • 84
  • 1
    and while you're at it: maybe change 172.168.x.y to 172.16.x.y. The former is from a publicly assigned IP space, the latter is for private use. – Andreas Rogge May 12 '17 at 14:37
  • Thanks. There is still just 1 Ethernet port used though. What am I overseeing? – Boernii May 12 '17 at 15:02
1

In order to implement iSCSI connection using MPIO, you should check:

  • Netmask. It should be 255.255.0.0 for your particular case.
  • the Microsoft iSCSI Initiator, whether all 4 Synology IPs are added to Discovery
  • the iSCSI support enabled in MPIO feature.

It might be useful to review the tutorial from Synology web-site: https://www.synology.com/en-global/knowledgebase/DSM/tutorial/Virtualization/How_to_Use_iSCSI_Targets_on_Windows_Computers_with_Multipath_I_O

Mr. Raspberry
  • 3,878
  • 12
  • 32