What OS?
You may want to consider using udev rules to make the iscsi devices persistently named. Or you may be able to call them by a unique attribute in /dev/.
for example:
Code:
/dev/disk/by-uuid/...
-- or --
/dev/disk/by-id/...
instead of
the entries under /dev/disk/by-uuid/ and /dev/disk/by-id/ should be links to the correct device entry (/dev/sdb -- or whatever).
as for the fstab mount of md0, since it relies on networking (iscsi), you should ensure that the
_netdev is used and you may want to consider changing the fs_passno field (6th field).
example:
Code:
/dev/md0 /scratch ext3 _netdev 0 2
-- or --
/dev/md0 /scratch ext3 _netdev 0 0
Hope this helps.