Difference between revisions of "ISCSI"

From Teknologisk videncenter
Jump to: navigation, search
m (New page: For an explanation of iSCSI see Wikipedias iSCSI)
 
m (iSCSI implementations)
 
(9 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
For an explanation of iSCSI see Wikipedias [[Wikipedia:iSCSI|iSCSI]]
 
For an explanation of iSCSI see Wikipedias [[Wikipedia:iSCSI|iSCSI]]
 +
== RedHat Centos as iSCSI initiator ==
 +
 +
 +
<pre>
 +
yum install iscsi-initiator-utils
 +
/etc/init.d/iscsi start
 +
iscsiadm -m discovery -t sendtargets -p 192.168.22.111
 +
/etc/init.d/iscsi restart
 +
fdisk -l
 +
</pre>
 +
 +
== iSCSI implementations ==
 +
*[http://www.open-iscsi.org/ open iscsi] to Linux
 +
*[http://sourceforge.net/project/showfiles.php?group_id=26396 Linux ISCSI] from sourceforge (Older implementation. Use open-iscsi above)
 +
*[http://www.microsoft.com/downloads/details.aspx?familyid=12CB3C1A-15D6-4585-B385-BEFD1319F825&displaylang=en Microsoft iSCSI  Software Initiator] for Windows 2003/8
 +
*[http://www.freenas.org/ FreeNAS] Project
 +
=== Hints ===
 +
To see the lines in /etc/iscsi/iscsid.conf which are not comments or empty lines
 +
<pre>
 +
grep -v -E  '^#|^$' /etc/iscsi/iscsid.conf
 +
</pre>
 +
[[Category:linux]][[category:cluster]]

Latest revision as of 18:32, 28 November 2009

For an explanation of iSCSI see Wikipedias iSCSI

RedHat Centos as iSCSI initiator

yum install iscsi-initiator-utils
/etc/init.d/iscsi start
iscsiadm -m discovery -t sendtargets -p 192.168.22.111
/etc/init.d/iscsi restart
fdisk -l

iSCSI implementations

Hints

To see the lines in /etc/iscsi/iscsid.conf which are not comments or empty lines

grep -v -E  '^#|^$' /etc/iscsi/iscsid.conf