Entering the settings into ESXi start script:
~ # vi/etc/rc.local
# Fixing iSCSI MPIO throughtput limited to 1G.
esxcli storage nmp device list | grep ^eui |
while read device ; do
esxcli storage nmp device set --psp VMW_PSP_RR --device ${device}
esxcli storage nmp psp roundrobin deviceconfig set --type "bytes" --bytes 65536 --device ${device}
esxcli storage nmp psp roundrobin deviceconfig set --type "iops" --iops 1 --device ${device}
done
<Esc> :wq