Hi,

i've run in this problem and fixed it with this:


esxcli storage nmp psp roundrobin deviceconfig set -d <DEVICEID> --iops 1 --type iops

How do i make it sicky for reboot?

This old code should'nt work:
Entering the settings into ESX start script:
[root@esx ~]# nano /etc/rc.local
# Fixing iSCSI MPIO throughtput limited to 1G.
esxcli nmp device list | grep ^eui |
while read device ; do
esxcli nmp roundrobin setconfig --type "iops" --iops 1 --device ${device}
done
<Ctrl-o>
<Ctrl-x>

Thanks!