iSCSI Terminology Server (target) side Install iSCSI software $ sudo dnf -y install targetcli Create IQN with iscsi-iname (see the example above) Create backstore data areas Quite simple example for most of systems: $ sudo targetcli /backstores/block create disk0 /dev/sdb $ sudo targetcli /backstores/block create disk1 /dev/sdc $ sudo targetcli /backstores/block create disk2 /dev/sdd Note: For entire physical disks I recommend using the WWN instead of disk device or partition id. This ensures that the disk reference will not change during system restarts (quite common when using USB disks). Another option is to use the disk UUID. However, a new partition map is created (using fdisk), the UUID will change. Also, if you are using more tan one iSCSI target, the block name (disk0, disk1 etc) is used as the disk type ...