Administrator
|
These are multipath devices.
Actually, they all are the same device.
Different devices files for the same multipath pseudo device...
They are there to support the multipathing.
As for checking the disk type to see whether it is a virtual or not, you can take a look at the /proc/scsi/scsi.
cat /proc/scsi/scsi
Check the output of the above command..
There will be Vendor and Model there..
For example;
in case the disk is a virtual one given by Vmware, you will see something like -> " Vendor: VMware, Model: VMware Virtual"
Ofcourse in order to understand the disks in questions by looking at the /proc/scsi/scs, you need to have "the device <-> Host, Channel, Id, Lun " mapping.
Luckily, it is already there in your multipath output..
You can take one of the disks..(as they are all the same in the backend)
for instance you can take sdo (/dev/sdo) , its Host, Channel, Id, Lun mapping is - 2 0 0 24 ..
So with this info , check the vendor and model in /proc/scsi/scsi now.
|