Setting VMware ESXi iscsi path and iops via command line

This set's iops to 1 and changes path selection policy to RoundRobin
# Fixing iSCSI MPIO throughtput limited to 1G.
esxcli nmp device list | grep ^eui |
while read device ; do
    esxcli nmp device setpolicy --device ${device} --psp VMW_PSP_RR
    esxcli nmp roundrobin setconfig --type "iops" --iops 1 --device ${device}
done

Please Register.


If you wish to add comments.
Cheers
Adam