vSphere 設定MPIO
esxcli nmp device list
awk '/^naa.60a/{print "esxcli nmp device setpolicy --device "$0" --psp VMW_PSP_RR" };'
esxcli --server esx2td nmp roundrobin getconfig -d naa.60a98000486e2f2d576f4d777946454b
for i in `ls /vmfs/devices/disks/
grep naa.60a` ; do esxcli --server esx2dt nmp roundrobin setconfig --type "iops" --iops=1 --device $i; done
awk '/^naa.60a/{print "esxcli nmp device setpolicy --device "$0" --psp VMW_PSP_RR" };'
esxcli --server esx2td nmp roundrobin getconfig -d naa.60a98000486e2f2d576f4d777946454b
for i in `ls /vmfs/devices/disks/
grep naa.60a` ; do esxcli --server esx2dt nmp roundrobin setconfig --type "iops" --iops=1 --device $i; done
留言