...
This page provides some information on how to use IET on Debian. ( iSCSI Enterprise Target is known as iscsitarget under Debian). reminder, the target is the name of the "server" under iSCSI terminology (i.e The one that actually have the disk).
Quickstart
...
...
1. Install IET's package and module
IET is made of two packages :
The program : iscsitarget
The module : iscsitarget-dkms
2. Configure
You need to configure /etc/ietd.conf (here's a simple test page).
...
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
# Example iscsi target configuration
|
...
...
# a first account |
...
IncomingUser jdoe YourSecurePwd1 |
...
# another one, for a windows user. |
...
IncomingUser iqn.1991-05.com.microsoft:JDOE-PC YourSecurePwd2 |
...
...
#If mutual CHAP shall be employed, you need |
...
OutgoingUser jack YourSecurePwd2 |
...
...
# The target name must be a globally unique name, the iSCSI |
...
# standard defines the "iSCSI Qualified Name" as follows: |
...
# |
...
# iqn.yyyy-mm.<reversed domain name>[:identifier] |
...
...
Target iqn.2007-01.org.debian.foobar:mydisk1 |
...
IncomingUser joe YourSecurePwd1 |
...
OutgoingUser jim YourSecurePwd2 |
...
#make sure the partition isn't mounted : |
...
#Lun 0 Path=/dev/sdh,Type=fileio |
...
...
...
Target iqn.2007-01.org.debian.foobar:CDs |
...
IncomingUser joe YourSecurePwd1 |
...
OutgoingUser jim YourSecurePwd2 |
...
#make sure the partition isn't mounted : |
...
Lun 0 Path=/dev/scd0,Type=fileio,IOMode=ro |
...
Lun 1 Path=/dev/scd1,Type=fileio,IOMode=ro |
...
#Lun 2 Path=/dev/hdX,Type=fileio,IOMode=ro |
...
Lun 3 Path=/srv/debian-20070313-kfreebsd-i386-install.iso,Type=fileio,IOMode=ro |
-
You should refer to the ietd(8) and ietd.conf(5) manpages for more information.
...