<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.alpinelinux.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dwilliam</id>
	<title>Alpine Linux - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.alpinelinux.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dwilliam"/>
	<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/wiki/Special:Contributions/Dwilliam"/>
	<updated>2026-05-05T17:46:00Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.40.0</generator>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Setting_up_iSCSI&amp;diff=1726</id>
		<title>Setting up iSCSI</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Setting_up_iSCSI&amp;diff=1726"/>
		<updated>2007-11-07T14:03:27Z</updated>

		<summary type="html">&lt;p&gt;Dwilliam: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
iSCSI consists of two pieces:  A target and an initiator.  A target is a large pool of disk space that can be accessed over IP by the initiators. Initiators use the disk space, formatting it and mounting it the same as local disk.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== iSCSI Target ==&lt;br /&gt;
&lt;br /&gt;
The iscsitarget-X.X.apk package provides the target functionality.  It includes the iscsi_trgt module and the ietd service (ietd is the iSCSI Enterprise Target Daemon).&lt;br /&gt;
Once the package is installed, you can set up a target by editing two conf files.&lt;br /&gt;
&lt;br /&gt;
In /etc/ietd.conf, add the following information:&lt;br /&gt;
&lt;br /&gt;
        Target iqn.2006-01.com.openfiler:disk2.bpbx-vm-1&lt;br /&gt;
               Lun 0 Path=/dev/sda1, Type=fileio&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;Target&amp;quot; line above is an example.  This line really just needs to be unique.  /dev/sdx refers to the disk and partition that will be presented to the initiator.  &lt;br /&gt;
&lt;br /&gt;
In the /etc/initiators.allow file, add the following line:&lt;br /&gt;
&lt;br /&gt;
     iqn.2006-01.com.openfiler:disk2.bpbx-vm-1 10.1.194.111&lt;br /&gt;
&lt;br /&gt;
The IP address in the line above will be the initiator&#039;s ip address.  Now only this ip address is allowed to access this specific target.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== iSCSI Initiator ==&lt;br /&gt;
&lt;br /&gt;
To configure the iSCSI initiator, add the initiator name to the file /etc/iscsi/initiatorname.iscsi&lt;br /&gt;
&lt;br /&gt;
     InitiatorName=iqn.1993-08.org.debian:01:4efa151441&lt;br /&gt;
&lt;br /&gt;
Verify the file /etc/iscsi/iscsid.conf exists.  If not, it may need to be copied from /etc/iscsid.conf.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Connecting the Initiator to the Target ==&lt;br /&gt;
&lt;br /&gt;
From the iSCSI initiator, first run this command:&lt;br /&gt;
&lt;br /&gt;
     iscsiadm --mode discovery --type sendtargets --portal IP_OF_TARGET&lt;br /&gt;
&lt;br /&gt;
This command contacts the target to determine which disks are available.  If all is configured correctly, the target name iqn.2006-01.com.openfiler:disk2.bpbx-vm-1 (from the example above) will be returned.&lt;br /&gt;
&lt;br /&gt;
After the target is discovered, run this command to connect:&lt;br /&gt;
&lt;br /&gt;
     iscsiadm --mode node --targetname NAME_OF_TARGET --portal IP_OF_TARGET --login&lt;br /&gt;
&lt;br /&gt;
Replacing --login with --logout will end the connection.  &lt;br /&gt;
&lt;br /&gt;
To make this connection persistent (so that it will reconnect after reboot), run this command:&lt;br /&gt;
&lt;br /&gt;
     iscsiadm -m node -T NAME_OF_TARGET -p IP_OF_TARGET --op update -n node.conn[0].startup -v automatic&lt;/div&gt;</summary>
		<author><name>Dwilliam</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Setting_up_iSCSI&amp;diff=1725</id>
		<title>Setting up iSCSI</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Setting_up_iSCSI&amp;diff=1725"/>
		<updated>2007-11-06T22:07:15Z</updated>

		<summary type="html">&lt;p&gt;Dwilliam: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
iSCSI consists of two pieces:  A target and an initiator.  A target is a large pool of disk space that can be accessed over IP by the initiators. Initiators use the disk space, formatting it and mounting it the same as local disk.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== iSCSI Target ==&lt;br /&gt;
&lt;br /&gt;
The iscsitarget-X.X.apk package provides the target functionality.  It includes the iscsi_trgt module and the ietd service (ietd is the iSCSI Enterprise Target Daemon).&lt;br /&gt;
Once the package is installed, you can set up a target by editing two conf files.&lt;br /&gt;
&lt;br /&gt;
In /etc/ietd.conf, add the following information:&lt;br /&gt;
&lt;br /&gt;
        Target iqn.2006-01.com.openfiler:disk2.bpbx-vm-1&lt;br /&gt;
               Lun 0 Path=/dev/sda1, Type=fileio&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;Target&amp;quot; line above is an example.  This line really just needs to be unique.  /dev/sdx refers to the disk and partition that will be presented to the initiator.  &lt;br /&gt;
&lt;br /&gt;
In the /etc/initiators.allow file, add the following line:&lt;br /&gt;
&lt;br /&gt;
     iqn.2006-01.com.openfiler:disk2.bpbx-vm-1 10.1.194.111&lt;br /&gt;
&lt;br /&gt;
The IP address in the line above will be the initiator&#039;s ip address.  Now only this ip address is allowed to access this specific target.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== iSCSI Initiator ==&lt;/div&gt;</summary>
		<author><name>Dwilliam</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Setting_up_iSCSI&amp;diff=1724</id>
		<title>Setting up iSCSI</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Setting_up_iSCSI&amp;diff=1724"/>
		<updated>2007-11-06T21:57:27Z</updated>

		<summary type="html">&lt;p&gt;Dwilliam: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
iSCSI consists of two pieces:  A target and an initiator.  A target is a large pool of disk space that can be accessed over IP by the initiators. Initiators use the disk space, formatting it and mounting it the same as local disk.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== iSCSI Target ==&lt;br /&gt;
&lt;br /&gt;
The iscsitarget-X.X.apk package provides the target functionality.  It includes the iscsi_trgt module and the ietd service (ietd is the iSCSI Enterprise Target Daemon).&lt;/div&gt;</summary>
		<author><name>Dwilliam</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Setting_up_iSCSI&amp;diff=1723</id>
		<title>Setting up iSCSI</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Setting_up_iSCSI&amp;diff=1723"/>
		<updated>2007-11-06T21:52:47Z</updated>

		<summary type="html">&lt;p&gt;Dwilliam: initial submission&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;iSCSI consists of two pieces:  A target and an initiator.  A target is a large pool of disk space that can be accessed over IP by the initiators. Initiators use the disk space, formatting it and mounting it the same as local disk.&lt;/div&gt;</summary>
		<author><name>Dwilliam</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Alpine_Linux:Documentation&amp;diff=1722</id>
		<title>Alpine Linux:Documentation</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Alpine_Linux:Documentation&amp;diff=1722"/>
		<updated>2007-11-06T21:50:18Z</updated>

		<summary type="html">&lt;p&gt;Dwilliam: added iSCSI section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== User Documentation ==&lt;br /&gt;
Documentation how to install and use the Alpine distro.&lt;br /&gt;
&lt;br /&gt;
* [[Installing Alpine]]&lt;br /&gt;
* [[Upgrading Alpine]]&lt;br /&gt;
* [[Alpine package management]]&lt;br /&gt;
* [[Comparison with Gentoo and Debian]]&lt;br /&gt;
* Submitting [[Problem Reports]]&lt;br /&gt;
&lt;br /&gt;
=== HOWTOS ===&lt;br /&gt;
&lt;br /&gt;
==== Installation ====&lt;br /&gt;
* [[Bootstrapping Alpine on Soekris net4xxx]]&lt;br /&gt;
* [[Setting up a software raid1 array]]&lt;br /&gt;
* [[Setting up Logical Volumes with LVM]]&lt;br /&gt;
* [[Setting up a /var partition on software IDE raid1]]&lt;br /&gt;
* [[Native Harddisk Install]]&lt;br /&gt;
* [[Installing XUbuntu using Alpine boot floppy]]&lt;br /&gt;
&lt;br /&gt;
==== Networking ====&lt;br /&gt;
* [[Setting up a OpenVPN-server with Alpine]]&lt;br /&gt;
* [[Setting up traffic monitoring using rrdtool (and snmp)]]&lt;br /&gt;
* [[Setting up Zaptel/Asterisk on Alpine]]&lt;br /&gt;
&lt;br /&gt;
==== Misc ====&lt;br /&gt;
* [[Setting up lm_sensors]]&lt;br /&gt;
&lt;br /&gt;
==== iSCSI ====&lt;br /&gt;
* [[iSCSI Target and Initiator Configuration]]&lt;br /&gt;
&lt;br /&gt;
=== Vserver ===&lt;br /&gt;
* [[Setting up a basic vserver]]&lt;br /&gt;
&lt;br /&gt;
== Developer Documentation ==&lt;br /&gt;
Documentation how to build and modify the Alpine distro.&lt;br /&gt;
&lt;br /&gt;
* [[Setting up the build environment]]&lt;br /&gt;
* [[Creating patches]]&lt;br /&gt;
* [[Alpine Configuration Framework Design]] (Why ACF is the way it is)&lt;br /&gt;
&lt;br /&gt;
== Misc. References ==&lt;br /&gt;
Other useful references.&lt;br /&gt;
&lt;br /&gt;
* http://www.metoffice.gov.uk/research/nwp/external/fcm/doc/user_guide/working_practices.html - Some guidelines on use of Trac and SVN&lt;/div&gt;</summary>
		<author><name>Dwilliam</name></author>
	</entry>
</feed>