3

We were experimenting MPIO with our Storage array. We saw the Get-Iscsisession and Get-Iscsiconnection cmdlet to find the paths created. But during IO ,i would like to know which path has been used. Is it possible? Which tool can be used to check that? I am using Windows 2016 as Operating system. We connect to our storage via Iscsi initiator.

Samselvaprabu
  • 1,311
  • 5
  • 13
  • 26

1 Answers1

2

The pathes can be checked in iSCSI GUI (even in the gui-less version of Windows) by using iscsicpl command and then by choosing needed target click "Devices" and "MPIO".

To check the path utilization use Performance Monitor (Listset: ISCSI connection / iSCSI Session) or in powershell smth like:

(get-counter -listset "iSCSI Connections")
Get-Counter -Counter "\iSCSI Connections(*)\Bytes Received"
batistuta09
  • 8,723
  • 9
  • 21