SYA810 iSCSI Lab

From CDOT Wiki
Jump to: navigation, search

SYA810 iSCSI Lab

Purpose

  • To configure an iSCSI Target and iSCSI Initiator on two separate systems.

iSCSI Target

  1. Install the netbsd-iscsi package
  2. Create an LV (or a zeroed, empty file) to be shared. Edit /etc/iscsi/targets to use that as an iSCSI target. (Tip: for the sake of time, don't create a huge file -- <100 MB is reasonable).
  3. Reload the netbsd-iscsi service configuration.
  4. Verify that the iSCSI port (3260) is in use by the portal daemon.

iSCSI Initiator

  1. Install the iscsi-initiator-utils package.
  2. Create an IQN and place it in /etc/iscsi/initiatorname.iscsi
  3. Start the iscsi and iscsid services.
  4. Create an SSH tunnel to the remote host (running the target/portal software): ssh user@host -L 3260:localhost:3260
  5. Discover the remote targets: iscsiadm -m discovery -t sendtargets -p localhost:3260
  6. List the targets: iscsiadm -m node -- the remote target(s) should be shown.
  7. Login to the targets: iscsiadm -m node -l
  8. You will now have an additional scsi disk device. Use this as one element of a RAID-1 array, using local storage (an LV or a looped-back file) as the other element.
  9. Mount the new RAID-1 array and create a filesystem on it. Place some files there.
  10. Unmount the filesystem, stop the array, log out of the iSCSI disk (iscsiadm -m node -u).
  11. Verify that the filesystem can be locally read on the machine hosting the target.

To Do

  1. Create a script (or pair of scripts) to set up and take down access to the remote target. To set up, the script should login to the remote target, start the RAID array, and mount the array; to take down, those steps should be reversed.
  2. Test it.
  3. Blog about your experience with this lab, and include a link to your script(s).