<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="https://wiki.ipbrick.com/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.ipbrick.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Daraujo</id>
		<title>wiki.IPBRICK.COM - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.ipbrick.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Daraujo"/>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Special:Contributions/Daraujo"/>
		<updated>2026-05-13T12:25:24Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.23.2</generator>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/ISCSI</id>
		<title>ISCSI</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/ISCSI"/>
				<updated>2015-02-11T14:38:44Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
iSCSI, is an abbreviation of Internet Small Computer System Interface, an Internet Protocol (IP)-based storage networking standard for linking data storage facilities.&lt;br /&gt;
&lt;br /&gt;
iSCSI is used to facilitate data transfers over intranets and to manage storage over long distances. iSCSI can be used to transmit data over local area networks (LANs), wide area networks (WANs), or the Internet and can enable location-independent data storage and retrieval. The protocol allows clients (called initiators) to send SCSI commands (CDBs) to SCSI storage devices (targets) on remote servers.&lt;br /&gt;
&lt;br /&gt;
It is a popular Storage Area Network  (SAN) protocol, allowing organizations to consolidate storage into data center storage arrays while providing hosts (such as database and web servers) with the illusion of locally-attached disks. Unlike traditional Fibre Channel, which requires special-purpose cabling, iSCSI can be run over long distances using existing network infrastructure.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
IPBrick v6.0&lt;br /&gt;
&lt;br /&gt;
Connection to the Internet&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
The installation process is done via sources list update.&lt;br /&gt;
&lt;br /&gt;
Access the console:&lt;br /&gt;
&lt;br /&gt;
NOTE: This procedure is done directly at the server's console as a root user.&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# vi /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
 #deb http://repository.ipbrick.com/wheezy wheezy main contrib non-free ipbrick60&lt;br /&gt;
 deb http://ftp.pt.debian.org/debian stable main contrib non-free&lt;br /&gt;
 deb http://ftp.debian.org/debian/ wheezy-updates main contrib non-free&lt;br /&gt;
 deb http://security.debian.org/ wheezy/updates main contrib non-free&lt;br /&gt;
&lt;br /&gt;
Still at the console, run these commands:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# apt-get update&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# apt-get install open-iscsi&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In order to configure an iSCSI interface please follow these steps:&lt;br /&gt;
&lt;br /&gt;
NOTE: The service configuration is done directly at the server's console as a root user.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The /etc/iscsi/initiatorname.iscsi file will identify ONLY the IPBRICK server.&lt;br /&gt;
&lt;br /&gt;
Usually its name is composed by these elements:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 iqn + . + year-month + . + server_name + : + custom_string&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
E.g:&lt;br /&gt;
&lt;br /&gt;
 iqn.2012-08.com.domain.ipbrick:fileserver&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The configuration file /etc/iscsi/iscsid.conf can be edited to set the service's autostart parameter:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 node.startup = automatic&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
And also the authentication parameters:&lt;br /&gt;
&lt;br /&gt;
- '''NO AUTHENTICATION''': If access to the storage is to be done without authentication, no changes to the configuration file are necessary, the following lines should remain as comments:&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 #node.session.auth *&lt;br /&gt;
 #discovery.sendtargets.auth *&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- '''WITH AUTHENTICATION - CHAP''': &lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 node.session.auth.authmethod = CHAP&lt;br /&gt;
 ...&lt;br /&gt;
 node.session.auth.username = username&lt;br /&gt;
 node.session.auth.password = password&lt;br /&gt;
 ...&lt;br /&gt;
 discovery.sendtargets.auth.authmethod = CHAP&lt;br /&gt;
 ...&lt;br /&gt;
 discovery.sendtargets.auth.username = username&lt;br /&gt;
 discovery.sendtargets.auth.password = password&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NOTE: Please replace username and password by the username and password of your iSCSI Target.&lt;br /&gt;
&lt;br /&gt;
Proceed by stopping and then restarting the iSCSI service - execute:&lt;br /&gt;
&lt;br /&gt;
 /etc/init.d/open-iscsi stop&lt;br /&gt;
 /etc/init.d/open-iscsi start&lt;br /&gt;
&lt;br /&gt;
Run iscsiadm to discover the iSCSI devices on the iSCSI Server with the IP 192.168.69.15&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# iscsiadm  -m discovery -t st -p 192.168.69.15&lt;br /&gt;
 192.168.69.15:3260,1 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick.be0e78&lt;br /&gt;
 192.168.69.15:3260,1 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick1.be0e78&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Map the Target&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# iscsiadm  -m node -l -T &amp;quot;iqn.2004-04.com.qnap:ts-439u:&lt;br /&gt;
 iscsi.ipbrick.be0e78&amp;quot;&lt;br /&gt;
 Logging in to [iface: default, target:&lt;br /&gt;
 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick.be0e78, &lt;br /&gt;
 portal: 192.168.69.15,3260]&lt;br /&gt;
 Login to [iface: default, target: iqn.2004-04.com.qnap:ts-439u:&lt;br /&gt;
 iscsi.ipbrick.be0e78, portal: 192.168.69.15,3260]: successful&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With a dmesg command it's now possible to see the new disc as a device sdb:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 Loading iSCSI transport class v2.0-871.&lt;br /&gt;
 iscsi: registered transport (tcp)&lt;br /&gt;
 scsi1 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi2 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi3 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi4 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi5 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi6 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi 5:0:0:0: Direct-Access     QNAP     &lt;br /&gt;
 iSCSI Storage    3.1  PQ: 0 ANSI: 5&lt;br /&gt;
 sd 5:0:0:0: [sdb] 104857600 512-byte hardware sectors:&lt;br /&gt;
 (53.6 GB/50.0 GiB)&lt;br /&gt;
 sd 5:0:0:0: [sdb] Write Protect is off&lt;br /&gt;
 sd 5:0:0:0: [sdb] Mode Sense: 2f 00 00 00&lt;br /&gt;
 sd 5:0:0:0: [sdb] Write cache:&lt;br /&gt;
 disabled, read cache: enabled, doesn't support DPO or FUA&lt;br /&gt;
 sdb: sdb1&lt;br /&gt;
 sd 5:0:0:0: [sdb] Attached SCSI disk&lt;br /&gt;
&lt;br /&gt;
If necessary, format the disc and use this procedure as an example that creates a new partition /dev/sdb:&lt;br /&gt;
&lt;br /&gt;
 mkfs.ext4 /dev/sdb&lt;br /&gt;
&lt;br /&gt;
fstab mapping is done by device and it can be captured via /dev/sdb&lt;br /&gt;
&lt;br /&gt;
It will be necessary to inscribe it at /etc/fstab&lt;br /&gt;
&lt;br /&gt;
Assuming that this new volume will be used as home3, create its mount point:&lt;br /&gt;
&lt;br /&gt;
 mkdir /home3&lt;br /&gt;
&lt;br /&gt;
Map /etc/fstab by executing the nano editor:&lt;br /&gt;
&lt;br /&gt;
 nano /etc/fstab&lt;br /&gt;
&lt;br /&gt;
Inscribe the following:&lt;br /&gt;
&lt;br /&gt;
 /dev/sdb /home3  ext4  defaults,usrquota,grpquota,user_xattr,acl   0   2&lt;br /&gt;
&lt;br /&gt;
Now, you need to run this script so as home3 can be added to the IPBRICK web interface.&lt;br /&gt;
&lt;br /&gt;
 /opt/system/scripts/system_add_new_workareas.php 1&lt;br /&gt;
&lt;br /&gt;
You will get the following notification:&lt;br /&gt;
&lt;br /&gt;
 Work Area 3 was successfully inserted!&lt;br /&gt;
 Don't forget to Apply Configurations to commit the changes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Firewall ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usually, the firewall service is disabled at an intranet server. However, by default, IPBRICK has it active. So, in order create a rule to allow the communication between the IPBRICK and the SAN, please access the following menu:&lt;br /&gt;
&lt;br /&gt;
 Advanced Configurations -&amp;gt; Network -&amp;gt; Firewall&lt;br /&gt;
&lt;br /&gt;
Click on Insert and create a rule of this type:&lt;br /&gt;
&lt;br /&gt;
 Type of configuration to insert: General Settings&lt;br /&gt;
 Rule: INPUT&lt;br /&gt;
 Interface: ETHx (The NIC used in the iSCSI connection)&lt;br /&gt;
 Protocol ALL&lt;br /&gt;
 Origin IP: [Storage IPs]&lt;br /&gt;
 Policy: ACCEPT&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Click on the Insert button to create the rule&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Manage iSCSI ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Some useful commands to manage iSCSI on IPBrick:&lt;br /&gt;
&lt;br /&gt;
 Restart the openiscsi: /etc/init.d/open-iscsi restart&lt;br /&gt;
 Check the session status: /etc/init.d/open-iscsi status&lt;br /&gt;
 Use the dmesg command to find the disc's device;&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/ISCSI</id>
		<title>ISCSI</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/ISCSI"/>
				<updated>2015-02-11T14:33:10Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
iSCSI, is an abbreviation of Internet Small Computer System Interface, an Internet Protocol (IP)-based storage networking standard for linking data storage facilities.&lt;br /&gt;
&lt;br /&gt;
iSCSI is used to facilitate data transfers over intranets and to manage storage over long distances. iSCSI can be used to transmit data over local area networks (LANs), wide area networks (WANs), or the Internet and can enable location-independent data storage and retrieval. The protocol allows clients (called initiators) to send SCSI commands (CDBs) to SCSI storage devices (targets) on remote servers.&lt;br /&gt;
&lt;br /&gt;
It is a popular Storage Area Network  (SAN) protocol, allowing organizations to consolidate storage into data center storage arrays while providing hosts (such as database and web servers) with the illusion of locally-attached disks. Unlike traditional Fibre Channel, which requires special-purpose cabling, iSCSI can be run over long distances using existing network infrastructure.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
IPBrick v6.0&lt;br /&gt;
&lt;br /&gt;
Connection to the Internet&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
The installation process is done via sources list update.&lt;br /&gt;
&lt;br /&gt;
Access the console:&lt;br /&gt;
&lt;br /&gt;
NOTE: This procedure is done directly at the server's console as a root user.&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# vi /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
 #deb http://repository.ipbrick.com/wheezy wheezy main contrib non-free ipbrick60&lt;br /&gt;
 deb http://ftp.pt.debian.org/debian stable main contrib non-free&lt;br /&gt;
 deb http://ftp.debian.org/debian/ wheezy-updates main contrib non-free&lt;br /&gt;
 deb http://security.debian.org/ wheezy/updates main contrib non-free&lt;br /&gt;
&lt;br /&gt;
Still at the console, run these commands:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# apt-get update&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# apt-get install open-iscsi&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In order to configure an iSCSI interface please follow these steps:&lt;br /&gt;
&lt;br /&gt;
NOTE: The service configuration is done directly at the server's console as a root user.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The /etc/iscsi/initiatorname.iscsi file will identify ONLY the IPBRICK server.&lt;br /&gt;
&lt;br /&gt;
Usually its name is composed by these elements:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 iqn + . + year-month + . + server_name + : + custom_string&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
E.g:&lt;br /&gt;
&lt;br /&gt;
 iqn.2012-08.com.domain.ipbrick:fileserver&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The configuration file /etc/iscsi/iscsid.conf can be edited to set the service's autostart parameter:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 node.startup = automatic&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
And also the authentication parameters:&lt;br /&gt;
&lt;br /&gt;
- '''NO AUTHENTICATION''': If access to the storage is to be done without authentication, no changes to the configuration file are necessary, the following lines should remain as comments:&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 #node.session.auth *&lt;br /&gt;
 #discovery.sendtargets.auth *&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- '''WITH AUTHENTICATION - CHAP''': &lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 node.session.auth.authmethod = CHAP&lt;br /&gt;
 ...&lt;br /&gt;
 node.session.auth.username = username&lt;br /&gt;
 node.session.auth.password = password&lt;br /&gt;
 ...&lt;br /&gt;
 discovery.sendtargets.auth.authmethod = CHAP&lt;br /&gt;
 ...&lt;br /&gt;
 discovery.sendtargets.auth.username = username&lt;br /&gt;
 discovery.sendtargets.auth.password = password&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NOTE: Please replace username and password by the username and password of your iSCSI Target.&lt;br /&gt;
&lt;br /&gt;
Proceed by stopping and then restarting the iSCSI service - execute:&lt;br /&gt;
&lt;br /&gt;
 /etc/init.d/open-iscsi stop&lt;br /&gt;
 /etc/init.d/open-iscsi start&lt;br /&gt;
&lt;br /&gt;
Run iscsiadm to discover the iSCSI devices on the iSCSI Server with the IP 192.168.69.15&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# iscsiadm  -m discovery -t st -p 192.168.69.15&lt;br /&gt;
 192.168.69.15:3260,1 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick.be0e78&lt;br /&gt;
 192.168.69.15:3260,1 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick1.be0e78&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Map the Target&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# iscsiadm  -m node -l -T &amp;quot;iqn.2004-04.com.qnap:ts-439u:&lt;br /&gt;
 iscsi.ipbrick.be0e78&amp;quot;&lt;br /&gt;
 Logging in to [iface: default, target:&lt;br /&gt;
 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick.be0e78, &lt;br /&gt;
 portal: 192.168.69.15,3260]&lt;br /&gt;
 Login to [iface: default, target: iqn.2004-04.com.qnap:ts-439u:&lt;br /&gt;
 iscsi.ipbrick.be0e78, portal: 192.168.69.15,3260]: successful&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With a dmesg command it's now possible to see the new disc as a device sdb:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 Loading iSCSI transport class v2.0-871.&lt;br /&gt;
 iscsi: registered transport (tcp)&lt;br /&gt;
 scsi1 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi2 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi3 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi4 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi5 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi6 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi 5:0:0:0: Direct-Access     QNAP     &lt;br /&gt;
 iSCSI Storage    3.1  PQ: 0 ANSI: 5&lt;br /&gt;
 sd 5:0:0:0: [sdb] 104857600 512-byte hardware sectors:&lt;br /&gt;
 (53.6 GB/50.0 GiB)&lt;br /&gt;
 sd 5:0:0:0: [sdb] Write Protect is off&lt;br /&gt;
 sd 5:0:0:0: [sdb] Mode Sense: 2f 00 00 00&lt;br /&gt;
 sd 5:0:0:0: [sdb] Write cache:&lt;br /&gt;
 disabled, read cache: enabled, doesn't support DPO or FUA&lt;br /&gt;
 sdb: sdb1&lt;br /&gt;
 sd 5:0:0:0: [sdb] Attached SCSI disk&lt;br /&gt;
&lt;br /&gt;
If necessary, format the disc and use this procedure as an example that creates a new partition /dev/sdb:&lt;br /&gt;
&lt;br /&gt;
 mkfs.ext4 /dev/sdb&lt;br /&gt;
&lt;br /&gt;
fstab mapping is done by device and it can be captured via /dev/sdb&lt;br /&gt;
&lt;br /&gt;
It will be necessary to inscribe it at /etc/fstab&lt;br /&gt;
&lt;br /&gt;
Assuming that this new volume will be used as home3, create its mount point:&lt;br /&gt;
&lt;br /&gt;
 mkdir /home3&lt;br /&gt;
&lt;br /&gt;
Map /etc/fstab by executing the nano editor:&lt;br /&gt;
&lt;br /&gt;
 nano /etc/fstab&lt;br /&gt;
&lt;br /&gt;
Inscribe the following:&lt;br /&gt;
&lt;br /&gt;
 /dev/sdb /home3  ext4&lt;br /&gt;
&lt;br /&gt;
Now, you need to run this script so as home3 can be added to the IPBRICK web interface.&lt;br /&gt;
&lt;br /&gt;
 /opt/system/scripts/system_add_new_workareas.php 1&lt;br /&gt;
&lt;br /&gt;
You will get the following notification:&lt;br /&gt;
&lt;br /&gt;
 Work Area 3 was successfully inserted!&lt;br /&gt;
 Don't forget to Apply Configurations to commit the changes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Firewall ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usually, the firewall service is disabled at an intranet server. However, by default, IPBRICK has it active. So, in order create a rule to allow the communication between the IPBRICK and the SAN, please access the following menu:&lt;br /&gt;
&lt;br /&gt;
 Advanced Configurations -&amp;gt; Network -&amp;gt; Firewall&lt;br /&gt;
&lt;br /&gt;
Click on Insert and create a rule of this type:&lt;br /&gt;
&lt;br /&gt;
 Type of configuration to insert: General Settings&lt;br /&gt;
 Rule: INPUT&lt;br /&gt;
 Interface: ETHx (The NIC used in the iSCSI connection)&lt;br /&gt;
 Protocol ALL&lt;br /&gt;
 Origin IP: [Storage IPs]&lt;br /&gt;
 Policy: ACCEPT&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Click on the Insert button to create the rule&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Manage iSCSI ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Some useful commands to manage iSCSI on IPBrick:&lt;br /&gt;
&lt;br /&gt;
 Restart the openiscsi: /etc/init.d/open-iscsi restart&lt;br /&gt;
 Check the session status: /etc/init.d/open-iscsi status&lt;br /&gt;
 Use the dmesg command to find the disc's device;&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/ISCSI</id>
		<title>ISCSI</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/ISCSI"/>
				<updated>2015-02-11T13:52:27Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
iSCSI, is an abbreviation of Internet Small Computer System Interface, an Internet Protocol (IP)-based storage networking standard for linking data storage facilities.&lt;br /&gt;
&lt;br /&gt;
iSCSI is used to facilitate data transfers over intranets and to manage storage over long distances. iSCSI can be used to transmit data over local area networks (LANs), wide area networks (WANs), or the Internet and can enable location-independent data storage and retrieval. The protocol allows clients (called initiators) to send SCSI commands (CDBs) to SCSI storage devices (targets) on remote servers.&lt;br /&gt;
&lt;br /&gt;
It is a popular Storage Area Network  (SAN) protocol, allowing organizations to consolidate storage into data center storage arrays while providing hosts (such as database and web servers) with the illusion of locally-attached disks. Unlike traditional Fibre Channel, which requires special-purpose cabling, iSCSI can be run over long distances using existing network infrastructure.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
IPBrick v6.0&lt;br /&gt;
&lt;br /&gt;
Connection to the Internet&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
The installation process is done via sources list update.&lt;br /&gt;
&lt;br /&gt;
Access the console:&lt;br /&gt;
&lt;br /&gt;
NOTE: This procedure is done directly at the server's console as a root user.&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# vi /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
 #deb http://repository.ipbrick.com/wheezy wheezy main contrib non-free ipbrick60&lt;br /&gt;
 deb http://ftp.pt.debian.org/debian stable main contrib non-free&lt;br /&gt;
 deb http://ftp.debian.org/debian/ wheezy-updates main contrib non-free&lt;br /&gt;
 deb http://security.debian.org/ wheezy/updates main contrib non-free&lt;br /&gt;
&lt;br /&gt;
Still at the console, run these commands:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# apt-get update&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# apt-get install open-iscsi&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In order to configure an iSCSI interface please follow these steps:&lt;br /&gt;
&lt;br /&gt;
NOTE: The service configuration is done directly at the server's console as a root user.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The /etc/iscsi/initiatorname.iscsi file will identify ONLY the IPBRICK server.&lt;br /&gt;
&lt;br /&gt;
Usually its name is composed by these elements:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 iqn + . + year-month + . + server_name + : + custom_string&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
E.g:&lt;br /&gt;
&lt;br /&gt;
 iqn.2012-08.com.domain.ipbrick:fileserver&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The configuration file /etc/iscsi/iscsid.conf can be edited to set the service's autostart parameter:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 node.startup = automatic&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
And also the authentication parameters:&lt;br /&gt;
&lt;br /&gt;
- '''NO AUTHENTICATION''': If access to the storage is to be done without authentication, no changes to the configuration file are necessary, the following lines should remain as comments:&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 #node.session.auth *&lt;br /&gt;
 #discovery.sendtargets.auth *&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- '''WITH AUTHENTICATION - CHAP''': &lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 node.session.auth.authmethod = CHAP&lt;br /&gt;
 ...&lt;br /&gt;
 node.session.auth.username = username&lt;br /&gt;
 node.session.auth.password = password&lt;br /&gt;
 ...&lt;br /&gt;
 discovery.sendtargets.auth.authmethod = CHAP&lt;br /&gt;
 ...&lt;br /&gt;
 discovery.sendtargets.auth.username = username&lt;br /&gt;
 discovery.sendtargets.auth.password = password&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NOTE: Please replace username and password by the username and password of your iSCSI Target.&lt;br /&gt;
&lt;br /&gt;
Proceed by stopping and then restarting the iSCSI service - execute:&lt;br /&gt;
&lt;br /&gt;
 /etc/init.d/open-iscsi stop&lt;br /&gt;
 /etc/init.d/open-iscsi start&lt;br /&gt;
&lt;br /&gt;
Run iscsiadm to discover the iSCSI devices on the iSCSI Server with the IP 192.168.69.15&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# iscsiadm  -m discovery -t st -p 192.168.69.15&lt;br /&gt;
 192.168.69.15:3260,1 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick.be0e78&lt;br /&gt;
 192.168.69.15:3260,1 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick1.be0e78&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Map the Target&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# iscsiadm  -m node -l -T &amp;quot;iqn.2004-04.com.qnap:ts-439u:&lt;br /&gt;
 iscsi.ipbrick.be0e78&amp;quot;&lt;br /&gt;
 Logging in to [iface: default, target:&lt;br /&gt;
 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick.be0e78, &lt;br /&gt;
 portal: 192.168.69.15,3260]&lt;br /&gt;
 Login to [iface: default, target: iqn.2004-04.com.qnap:ts-439u:&lt;br /&gt;
 iscsi.ipbrick.be0e78, portal: 192.168.69.15,3260]: successful&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With a dmesg command it's now possible to see the new disc as a device sdb:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 Loading iSCSI transport class v2.0-871.&lt;br /&gt;
 iscsi: registered transport (tcp)&lt;br /&gt;
 scsi1 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi2 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi3 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi4 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi5 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi6 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi 5:0:0:0: Direct-Access     QNAP     &lt;br /&gt;
 iSCSI Storage    3.1  PQ: 0 ANSI: 5&lt;br /&gt;
 sd 5:0:0:0: [sdb] 104857600 512-byte hardware sectors:&lt;br /&gt;
 (53.6 GB/50.0 GiB)&lt;br /&gt;
 sd 5:0:0:0: [sdb] Write Protect is off&lt;br /&gt;
 sd 5:0:0:0: [sdb] Mode Sense: 2f 00 00 00&lt;br /&gt;
 sd 5:0:0:0: [sdb] Write cache:&lt;br /&gt;
 disabled, read cache: enabled, doesn't support DPO or FUA&lt;br /&gt;
 sdb: sdb1&lt;br /&gt;
 sd 5:0:0:0: [sdb] Attached SCSI disk&lt;br /&gt;
&lt;br /&gt;
If necessary, format the disc and use this procedure as an example that creates a new partition /dev/sdb:&lt;br /&gt;
&lt;br /&gt;
 mkfs.ext4 /dev/sdb&lt;br /&gt;
&lt;br /&gt;
fstab mapping is done by device and it can be captured via /dev/sdb&lt;br /&gt;
&lt;br /&gt;
It will be necessary to inscribe it at /etc/fstab&lt;br /&gt;
&lt;br /&gt;
Assuming that this new volume will be used as home3, create its mount point:&lt;br /&gt;
&lt;br /&gt;
 mkdir /home3&lt;br /&gt;
&lt;br /&gt;
Map /etc/fstab by executing the nano editor:&lt;br /&gt;
&lt;br /&gt;
 nano /etc/fstab&lt;br /&gt;
&lt;br /&gt;
Inscribe the following:&lt;br /&gt;
&lt;br /&gt;
 /dev/sdb   home3	ext4&lt;br /&gt;
&lt;br /&gt;
Now, you need to run this script so as home3 can be added to the IPBRICK web interface.&lt;br /&gt;
&lt;br /&gt;
 /opt/system/scripts/system_add_new_workareas.php 1&lt;br /&gt;
&lt;br /&gt;
You will get the following notification:&lt;br /&gt;
&lt;br /&gt;
 Work Area 3 was successfully inserted!&lt;br /&gt;
 Don't forget to Apply Configurations to commit the changes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Firewall ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usually, the firewall service is disabled at an intranet server. However, by default, IPBRICK has it active. So, in order create a rule to allow the communication between the IPBRICK and the SAN, please access the following menu:&lt;br /&gt;
&lt;br /&gt;
 Advanced Configurations -&amp;gt; Network -&amp;gt; Firewall&lt;br /&gt;
&lt;br /&gt;
Click on Insert and create a rule of this type:&lt;br /&gt;
&lt;br /&gt;
 Type of configuration to insert: General Settings&lt;br /&gt;
 Rule: INPUT&lt;br /&gt;
 Interface: ETHx (The NIC used in the iSCSI connection)&lt;br /&gt;
 Protocol ALL&lt;br /&gt;
 Origin IP: [Storage IPs]&lt;br /&gt;
 Policy: ACCEPT&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Click on the Insert button to create the rule&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Manage iSCSI ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Some useful commands to manage iSCSI on IPBrick:&lt;br /&gt;
&lt;br /&gt;
 Restart the openiscsi: /etc/init.d/open-iscsi restart&lt;br /&gt;
 Check the session status: /etc/init.d/open-iscsi status&lt;br /&gt;
 Use the dmesg command to find the disc's device;&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/ISCSI</id>
		<title>ISCSI</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/ISCSI"/>
				<updated>2015-02-11T13:44:20Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
iSCSI, is an abbreviation of Internet Small Computer System Interface, an Internet Protocol (IP)-based storage networking standard for linking data storage facilities.&lt;br /&gt;
&lt;br /&gt;
iSCSI is used to facilitate data transfers over intranets and to manage storage over long distances. iSCSI can be used to transmit data over local area networks (LANs), wide area networks (WANs), or the Internet and can enable location-independent data storage and retrieval. The protocol allows clients (called initiators) to send SCSI commands (CDBs) to SCSI storage devices (targets) on remote servers.&lt;br /&gt;
&lt;br /&gt;
It is a popular Storage Area Network  (SAN) protocol, allowing organizations to consolidate storage into data center storage arrays while providing hosts (such as database and web servers) with the illusion of locally-attached disks. Unlike traditional Fibre Channel, which requires special-purpose cabling, iSCSI can be run over long distances using existing network infrastructure.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
IPBrick v6.0&lt;br /&gt;
&lt;br /&gt;
Connection to the Internet&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
The installation process is done via sources list update.&lt;br /&gt;
&lt;br /&gt;
Access the console:&lt;br /&gt;
&lt;br /&gt;
NOTE: This procedure is done directly at the server's console as a root user.&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# vi /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
 #deb http://repository.ipbrick.com/wheezy wheezy main contrib non-free ipbrick60&lt;br /&gt;
 deb http://ftp.pt.debian.org/debian stable main contrib non-free&lt;br /&gt;
 deb http://ftp.debian.org/debian/ wheezy-updates main contrib non-free&lt;br /&gt;
 deb http://security.debian.org/ wheezy/updates main contrib non-free&lt;br /&gt;
&lt;br /&gt;
Still at the console, run these commands:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# apt-get update&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# apt-get install open-iscsi&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In order to configure an iSCSI interface please follow these steps:&lt;br /&gt;
&lt;br /&gt;
NOTE: The service configuration is done directly at the server's console as a root user.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The /etc/iscsi/initiatorname.iscsi file will identify ONLY the IPBRICK server.&lt;br /&gt;
&lt;br /&gt;
Usually its name is composed by these elements:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 iqn + . + year-month + . + server_name + : + custom_string&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
E.g:&lt;br /&gt;
&lt;br /&gt;
 iqn.2012-08.com.domain.ipbrick:fileserver&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The configuration file /etc/iscsi/iscsid.conf can be edited to set the service's autostart parameter:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 node.startup = automatic&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
And also the authentication parameters:&lt;br /&gt;
&lt;br /&gt;
- '''NO AUTHENTICATION''': If access to the storage is to be done without authentication, no changes to the configuration file are necessary, the following lines should remain as comments:&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 #node.session.auth *&lt;br /&gt;
 #discovery.sendtargets.auth *&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- '''WITH AUTHENTICATION - CHAP''': &lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 node.session.auth.authmethod = CHAP&lt;br /&gt;
 ...&lt;br /&gt;
 node.session.auth.username = username&lt;br /&gt;
 node.session.auth.password = password&lt;br /&gt;
 ...&lt;br /&gt;
 discovery.sendtargets.auth.authmethod = CHAP&lt;br /&gt;
 ...&lt;br /&gt;
 discovery.sendtargets.auth.username = username&lt;br /&gt;
 discovery.sendtargets.auth.password = password&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NOTE: Please replace username and password by the username and password of your iSCSI Target.&lt;br /&gt;
&lt;br /&gt;
Proceed by stopping and then restarting the iSCSI service - execute:&lt;br /&gt;
&lt;br /&gt;
 /etc/init.d/open-iscsi stop&lt;br /&gt;
 /etc/init.d/open-iscsi start&lt;br /&gt;
&lt;br /&gt;
Run iscsiadm to discover the iSCSI devices on the iSCSI Server with the IP 192.168.69.15&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# iscsiadm  -m discovery -t st -p 192.168.69.15&lt;br /&gt;
 192.168.69.15:3260,1 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick.be0e78&lt;br /&gt;
 192.168.69.15:3260,1 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick1.be0e78&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Map the Target&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# iscsiadm  -m node -l -T &amp;quot;iqn.2004-04.com.qnap:ts-439u:&lt;br /&gt;
 iscsi.ipbrick.be0e78&amp;quot;&lt;br /&gt;
 Logging in to [iface: default, target:&lt;br /&gt;
 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick.be0e78, &lt;br /&gt;
 portal: 192.168.69.15,3260]&lt;br /&gt;
 Login to [iface: default, target: iqn.2004-04.com.qnap:ts-439u:&lt;br /&gt;
 iscsi.ipbrick.be0e78, portal: 192.168.69.15,3260]: successful&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With a dmesg command it's now possible to see the new disc as a device sdb:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 Loading iSCSI transport class v2.0-871.&lt;br /&gt;
 iscsi: registered transport (tcp)&lt;br /&gt;
 scsi1 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi2 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi3 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi4 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi5 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi6 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi 5:0:0:0: Direct-Access     QNAP     &lt;br /&gt;
 iSCSI Storage    3.1  PQ: 0 ANSI: 5&lt;br /&gt;
 sd 5:0:0:0: [sdb] 104857600 512-byte hardware sectors:&lt;br /&gt;
 (53.6 GB/50.0 GiB)&lt;br /&gt;
 sd 5:0:0:0: [sdb] Write Protect is off&lt;br /&gt;
 sd 5:0:0:0: [sdb] Mode Sense: 2f 00 00 00&lt;br /&gt;
 sd 5:0:0:0: [sdb] Write cache:&lt;br /&gt;
 disabled, read cache: enabled, doesn't support DPO or FUA&lt;br /&gt;
 sdb: sdb1&lt;br /&gt;
 sd 5:0:0:0: [sdb] Attached SCSI disk&lt;br /&gt;
&lt;br /&gt;
If necessary, format the disc and use this procedure as an example that creates a new partition /dev/sdb:&lt;br /&gt;
&lt;br /&gt;
 mkfs.ext4 /dev/sdb&lt;br /&gt;
&lt;br /&gt;
fstab mapping is done by device and it can be captured via /dev/sdb&lt;br /&gt;
&lt;br /&gt;
It will be necessary to inscribe it at /etc/fstab&lt;br /&gt;
&lt;br /&gt;
Assuming that this new volume will be used as home3, create its mount point:&lt;br /&gt;
&lt;br /&gt;
 mkdir /home3&lt;br /&gt;
&lt;br /&gt;
Map /etc/fstab by executing the nano editor:&lt;br /&gt;
&lt;br /&gt;
 nano /etc/fstab&lt;br /&gt;
&lt;br /&gt;
Inscribe the following:&lt;br /&gt;
&lt;br /&gt;
 /dev/sdb   home3	ext4&lt;br /&gt;
 noauto,defaults,usrquota,grpquota   0   2&lt;br /&gt;
&lt;br /&gt;
Now, you need to run this script so as home3 can be added to the IPBRICK web interface.&lt;br /&gt;
&lt;br /&gt;
 /opt/system/scripts/system_add_new_workareas.php 1&lt;br /&gt;
&lt;br /&gt;
You will get the following notification:&lt;br /&gt;
&lt;br /&gt;
 Work Area 3 was successfully inserted!&lt;br /&gt;
 Don't forget to Apply Configurations to commit the changes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Firewall ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usually, the firewall service is disabled at an intranet server. However, by default, IPBRICK has it active. So, in order create a rule to allow the communication between the IPBRICK and the SAN, please access the following menu:&lt;br /&gt;
&lt;br /&gt;
 Advanced Configurations -&amp;gt; Network -&amp;gt; Firewall&lt;br /&gt;
&lt;br /&gt;
Click on Insert and create a rule of this type:&lt;br /&gt;
&lt;br /&gt;
NOTE: When you explicit a firewall rule, you must include the storage IPs!&lt;br /&gt;
&lt;br /&gt;
 Type of configuration to insert: General Settings&lt;br /&gt;
 Rule: INPUT&lt;br /&gt;
 Interface: ETHx (The NIC used in the iSCSI connection)&lt;br /&gt;
 Protocol ALL&lt;br /&gt;
 Policy: ACCEPT&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Click on the Insert button to create the rule&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Manage iSCSI ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Some useful commands to manage iSCSI on IPBrick:&lt;br /&gt;
&lt;br /&gt;
 Restart the openiscsi: /etc/init.d/open-iscsi restart&lt;br /&gt;
 Check the session status: /etc/init.d/open-iscsi status&lt;br /&gt;
 Use the dmesg command to find the disc's device;&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/ISCSI</id>
		<title>ISCSI</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/ISCSI"/>
				<updated>2015-02-11T13:23:01Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
iSCSI, is an abbreviation of Internet Small Computer System Interface, an Internet Protocol (IP)-based storage networking standard for linking data storage facilities.&lt;br /&gt;
&lt;br /&gt;
iSCSI is used to facilitate data transfers over intranets and to manage storage over long distances. iSCSI can be used to transmit data over local area networks (LANs), wide area networks (WANs), or the Internet and can enable location-independent data storage and retrieval. The protocol allows clients (called initiators) to send SCSI commands (CDBs) to SCSI storage devices (targets) on remote servers.&lt;br /&gt;
&lt;br /&gt;
It is a popular Storage Area Network  (SAN) protocol, allowing organizations to consolidate storage into data center storage arrays while providing hosts (such as database and web servers) with the illusion of locally-attached disks. Unlike traditional Fibre Channel, which requires special-purpose cabling, iSCSI can be run over long distances using existing network infrastructure.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
IPBrick v6.0&lt;br /&gt;
&lt;br /&gt;
Connection to the Internet&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
The installation process is done via sources list update.&lt;br /&gt;
&lt;br /&gt;
Access the console:&lt;br /&gt;
&lt;br /&gt;
NOTE: This procedure is done directly at the server's console as a root user.&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# vi /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
 #deb http://repository.ipbrick.com/wheezy wheezy main contrib non-free ipbrick60&lt;br /&gt;
 deb http://ftp.pt.debian.org/debian stable main contrib non-free&lt;br /&gt;
 deb http://ftp.debian.org/debian/ wheezy-updates main contrib non-free&lt;br /&gt;
 deb http://security.debian.org/ wheezy/updates main contrib non-free&lt;br /&gt;
&lt;br /&gt;
Still at the console, run these commands:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# apt-get update&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# apt-get install open-iscsi&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In order to configure an iSCSI interface please follow these steps:&lt;br /&gt;
&lt;br /&gt;
NOTE: The service configuration is done directly at the server's console as a root user.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The /etc/iscsi/initiatorname.iscsi file will identify ONLY the IPBRICK server.&lt;br /&gt;
&lt;br /&gt;
Usually its name is composed by these elements:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 iqn + . + year-month + . + server_name + : + custom_string&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
E.g:&lt;br /&gt;
&lt;br /&gt;
 iqn.2012-08.com.domain.ipbrick:fileserver&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The configuration file /etc/iscsi/iscsid.conf can be edited to set the service's autostart parameter:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 node.startup = automatic&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
And also the authentication parameters:&lt;br /&gt;
&lt;br /&gt;
- '''NO AUTHENTICATION''': If access to the storage is to be done without authentication, no changes to the configuration file are necessary, the following lines should remain as comments:&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 #node.session.auth *&lt;br /&gt;
 #discovery.sendtargets.auth *&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- '''WITH AUTHENTICATION - CHAP''': &lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 node.session.auth.authmethod = CHAP&lt;br /&gt;
 ...&lt;br /&gt;
 node.session.auth.username = username&lt;br /&gt;
 node.session.auth.password = password&lt;br /&gt;
 ...&lt;br /&gt;
 discovery.sendtargets.auth.authmethod = CHAP&lt;br /&gt;
 ...&lt;br /&gt;
 discovery.sendtargets.auth.username = username&lt;br /&gt;
 discovery.sendtargets.auth.password = password&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NOTE: Please replace username and password by the username and password of your iSCSI Target.&lt;br /&gt;
&lt;br /&gt;
Proceed by stopping and then restarting the iSCSI service - execute:&lt;br /&gt;
&lt;br /&gt;
 /etc/init.d/open-iscsi stop&lt;br /&gt;
 /etc/init.d/open-iscsi start&lt;br /&gt;
&lt;br /&gt;
Run iscsiadm to discover the iSCSI devices on the iSCSI Server with the IP 192.168.69.15&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# iscsiadm  -m discovery -t st -p 192.168.69.15&lt;br /&gt;
 192.168.69.15:3260,1 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick.be0e78&lt;br /&gt;
 192.168.69.15:3260,1 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick1.be0e78&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Map the Target&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# iscsiadm  -m node -l -T &amp;quot;iqn.2004-04.com.qnap:ts-439u:&lt;br /&gt;
 iscsi.ipbrick.be0e78&amp;quot;&lt;br /&gt;
 Logging in to [iface: default, target:&lt;br /&gt;
 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick.be0e78, &lt;br /&gt;
 portal: 192.168.69.15,3260]&lt;br /&gt;
 Login to [iface: default, target: iqn.2004-04.com.qnap:ts-439u:&lt;br /&gt;
 iscsi.ipbrick.be0e78, portal: 192.168.69.15,3260]: successful&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With a dmesg command it's now possible to see the new disc as a device sdb:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 Loading iSCSI transport class v2.0-871.&lt;br /&gt;
 iscsi: registered transport (tcp)&lt;br /&gt;
 scsi1 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi2 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi3 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi4 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi5 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi6 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi 5:0:0:0: Direct-Access     QNAP     &lt;br /&gt;
 iSCSI Storage    3.1  PQ: 0 ANSI: 5&lt;br /&gt;
 sd 5:0:0:0: [sdb] 104857600 512-byte hardware sectors:&lt;br /&gt;
 (53.6 GB/50.0 GiB)&lt;br /&gt;
 sd 5:0:0:0: [sdb] Write Protect is off&lt;br /&gt;
 sd 5:0:0:0: [sdb] Mode Sense: 2f 00 00 00&lt;br /&gt;
 sd 5:0:0:0: [sdb] Write cache:&lt;br /&gt;
 disabled, read cache: enabled, doesn't support DPO or FUA&lt;br /&gt;
 sdb: sdb1&lt;br /&gt;
 sd 5:0:0:0: [sdb] Attached SCSI disk&lt;br /&gt;
&lt;br /&gt;
If necessary, format the disc and use this procedure as an example that creates a new partition /dev/sdb:&lt;br /&gt;
&lt;br /&gt;
 mkfs.ext4 /dev/sdb&lt;br /&gt;
&lt;br /&gt;
fstab mapping is done by device and it can be captured via /dev/sdb&lt;br /&gt;
&lt;br /&gt;
It will be necessary to inscribe it at /etc/fstab&lt;br /&gt;
&lt;br /&gt;
Assuming that this new volume will be used as home3, create its mount point:&lt;br /&gt;
&lt;br /&gt;
 mkdir /home3&lt;br /&gt;
&lt;br /&gt;
Map /etc/fstab by executing the nano editor:&lt;br /&gt;
&lt;br /&gt;
 nano /etc/fstab&lt;br /&gt;
&lt;br /&gt;
Inscribe the following:&lt;br /&gt;
&lt;br /&gt;
 /dev/sdb   home3	ext4&lt;br /&gt;
 noauto,defaults,usrquota,grpquota   0   2&lt;br /&gt;
&lt;br /&gt;
Now, you need to run this script so as home3 can be added to the IPBRICK web interface.&lt;br /&gt;
&lt;br /&gt;
 /opt/system/scripts/system_add_new_workareas.php 1&lt;br /&gt;
&lt;br /&gt;
You will get the following notification:&lt;br /&gt;
&lt;br /&gt;
 Work Area 3 was successfully inserted!&lt;br /&gt;
 Don't forget to Apply Configurations to commit the changes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Firewall ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usually, the firewall service is disabled at an intranet server. However, by default, IPBRICK has it active. So, in order create a rule to allow the communication between the IPBRICK and the SAN, please access the following menu:&lt;br /&gt;
&lt;br /&gt;
 Advanced Configurations -&amp;gt; Network -&amp;gt; Firewall&lt;br /&gt;
&lt;br /&gt;
Click on Insert and create a rule of this type:&lt;br /&gt;
&lt;br /&gt;
 Type of configuration to insert: General Settings&lt;br /&gt;
 Rule: INPUT&lt;br /&gt;
 Interface: ETHx (The NIC used in the iSCSI connection)&lt;br /&gt;
 Protocol ALL&lt;br /&gt;
 Policy: ACCEPT&lt;br /&gt;
&lt;br /&gt;
NOTE: When you explicit a firewall rule, you must include the storage IPs!&lt;br /&gt;
&lt;br /&gt;
Click on the Insert button to create the rule&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Manage iSCSI ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Some useful commands to manage iSCSI on IPBrick:&lt;br /&gt;
&lt;br /&gt;
 Restart the openiscsi: /etc/init.d/open-iscsi restart&lt;br /&gt;
 Check the session status: /etc/init.d/open-iscsi status&lt;br /&gt;
 Use the dmesg command to find the disc's device;&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/ISCSI</id>
		<title>ISCSI</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/ISCSI"/>
				<updated>2015-02-11T13:19:57Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
iSCSI, is an abbreviation of Internet Small Computer System Interface, an Internet Protocol (IP)-based storage networking standard for linking data storage facilities.&lt;br /&gt;
&lt;br /&gt;
iSCSI is used to facilitate data transfers over intranets and to manage storage over long distances. iSCSI can be used to transmit data over local area networks (LANs), wide area networks (WANs), or the Internet and can enable location-independent data storage and retrieval. The protocol allows clients (called initiators) to send SCSI commands (CDBs) to SCSI storage devices (targets) on remote servers.&lt;br /&gt;
&lt;br /&gt;
It is a popular Storage Area Network  (SAN) protocol, allowing organizations to consolidate storage into data center storage arrays while providing hosts (such as database and web servers) with the illusion of locally-attached disks. Unlike traditional Fibre Channel, which requires special-purpose cabling, iSCSI can be run over long distances using existing network infrastructure.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
IPBrick v6.0&lt;br /&gt;
&lt;br /&gt;
Connection to the Internet&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
The installation process is done via sources list update.&lt;br /&gt;
&lt;br /&gt;
Access the console:&lt;br /&gt;
&lt;br /&gt;
NOTE: This procedure is done directly at the server's console as a root user.&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# vi /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
 #deb http://repository.ipbrick.com/wheezy wheezy main contrib non-free ipbrick60&lt;br /&gt;
 deb http://ftp.pt.debian.org/debian stable main contrib non-free&lt;br /&gt;
 deb http://ftp.debian.org/debian/ wheezy-updates main contrib non-free&lt;br /&gt;
 deb http://security.debian.org/ wheezy/updates main contrib non-free&lt;br /&gt;
&lt;br /&gt;
Still at the console, run these commands:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# apt-get update&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# apt-get install open-iscsi&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In order to configure an iSCSI interface please follow these steps:&lt;br /&gt;
&lt;br /&gt;
NOTE: The service configuration is done directly at the server's console as a root user.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The /etc/iscsi/initiatorname.iscsi file will identify ONLY the IPBRICK server.&lt;br /&gt;
&lt;br /&gt;
Usually its name is composed by these elements:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 iqn + . + year-month + . + server_name + : + custom_string&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
E.g:&lt;br /&gt;
&lt;br /&gt;
 iqn.2012-08.com.domain.ipbrick:fileserver&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The configuration file /etc/iscsi/iscsid.conf can be edited to set the service's autostart parameter:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 node.startup = automatic&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
And also the authentication parameters:&lt;br /&gt;
&lt;br /&gt;
- '''NO AUTHENTICATION''': If access to the storage is to be done without authentication, no changes to the configuration file are necessary, the following lines should remain as comments:&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 #node.session.auth *&lt;br /&gt;
 #discovery.sendtargets.auth *&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- '''WITH AUTHENTICATION - CHAP''': &lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 node.session.auth.authmethod = CHAP&lt;br /&gt;
 ...&lt;br /&gt;
 node.session.auth.username = username&lt;br /&gt;
 node.session.auth.password = password&lt;br /&gt;
 ...&lt;br /&gt;
 discovery.sendtargets.auth.authmethod = CHAP&lt;br /&gt;
 ...&lt;br /&gt;
 discovery.sendtargets.auth.username = username&lt;br /&gt;
 discovery.sendtargets.auth.password = password&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NOTE: Please replace username and password by the username and password of your iSCSI Target.&lt;br /&gt;
&lt;br /&gt;
Proceed by stopping and then restarting the iSCSI service - execute:&lt;br /&gt;
&lt;br /&gt;
 /etc/init.d/open-iscsi stop&lt;br /&gt;
 /etc/init.d/open-iscsi start&lt;br /&gt;
&lt;br /&gt;
Run iscsiadm to discover the iSCSI devices on the iSCSI Server with the IP 192.168.69.15&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# iscsiadm  -m discovery -t st -p 192.168.69.15&lt;br /&gt;
 192.168.69.15:3260,1 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick.be0e78&lt;br /&gt;
 192.168.69.15:3260,1 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick1.be0e78&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Map the Target&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# iscsiadm  -m node -l -T &amp;quot;iqn.2004-04.com.qnap:ts-439u:&lt;br /&gt;
 iscsi.ipbrick.be0e78&amp;quot;&lt;br /&gt;
 Logging in to [iface: default, target:&lt;br /&gt;
 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick.be0e78, &lt;br /&gt;
 portal: 192.168.69.15,3260]&lt;br /&gt;
 Login to [iface: default, target: iqn.2004-04.com.qnap:ts-439u:&lt;br /&gt;
 iscsi.ipbrick.be0e78, portal: 192.168.69.15,3260]: successful&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With a dmesg command it's now possible to see the new disc as a device sdb:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 Loading iSCSI transport class v2.0-871.&lt;br /&gt;
 iscsi: registered transport (tcp)&lt;br /&gt;
 scsi1 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi2 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi3 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi4 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi5 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi6 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi 5:0:0:0: Direct-Access     QNAP     &lt;br /&gt;
 iSCSI Storage    3.1  PQ: 0 ANSI: 5&lt;br /&gt;
 sd 5:0:0:0: [sdb] 104857600 512-byte hardware sectors:&lt;br /&gt;
 (53.6 GB/50.0 GiB)&lt;br /&gt;
 sd 5:0:0:0: [sdb] Write Protect is off&lt;br /&gt;
 sd 5:0:0:0: [sdb] Mode Sense: 2f 00 00 00&lt;br /&gt;
 sd 5:0:0:0: [sdb] Write cache:&lt;br /&gt;
 disabled, read cache: enabled, doesn't support DPO or FUA&lt;br /&gt;
 sdb: sdb1&lt;br /&gt;
 sd 5:0:0:0: [sdb] Attached SCSI disk&lt;br /&gt;
&lt;br /&gt;
If necessary, format the disc and use this procedure as an example that creates a new partition /dev/sdb:&lt;br /&gt;
&lt;br /&gt;
 mkfs.ext4 /dev/sdb&lt;br /&gt;
&lt;br /&gt;
fstab mapping is done by device and it can be captured via /dev/sdb&lt;br /&gt;
&lt;br /&gt;
It will be necessary to inscribe it at /etc/fstab&lt;br /&gt;
&lt;br /&gt;
Assuming that this new volume will be used as home3, create its mount point:&lt;br /&gt;
&lt;br /&gt;
 mkdir /home3&lt;br /&gt;
&lt;br /&gt;
Map /etc/fstab by executing the nano editor:&lt;br /&gt;
&lt;br /&gt;
 nano /etc/fstab&lt;br /&gt;
&lt;br /&gt;
Inscribe the following:&lt;br /&gt;
&lt;br /&gt;
 /dev/sdb   home3	ext4&lt;br /&gt;
 noauto,defaults,usrquota,grpquota   0   2&lt;br /&gt;
&lt;br /&gt;
Now, you need to run this script so as IPBRICK can detect the new home3&lt;br /&gt;
&lt;br /&gt;
 /opt/system/scripts/system_add_new_workareas.php 1&lt;br /&gt;
&lt;br /&gt;
You will get the following notification:&lt;br /&gt;
&lt;br /&gt;
 Work Area 3 was successfully inserted!&lt;br /&gt;
 Don't forget to Apply Configurations to commit the changes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Firewall ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usually, the firewall service is disabled at an intranet server. However, by default, IPBRICK has it active. So, in order create a rule to allow the communication between the IPBRICK and the SAN, please access the following menu:&lt;br /&gt;
&lt;br /&gt;
 Advanced Configurations -&amp;gt; Network -&amp;gt; Firewall&lt;br /&gt;
&lt;br /&gt;
Click on Insert and create a rule of this type:&lt;br /&gt;
&lt;br /&gt;
 Type of configuration to insert: General Settings&lt;br /&gt;
 Rule: INPUT&lt;br /&gt;
 Interface: ETHx (The NIC used in the iSCSI connection)&lt;br /&gt;
 Protocol ALL&lt;br /&gt;
 Policy: ACCEPT&lt;br /&gt;
&lt;br /&gt;
NOTE: When you explicit a firewall rule, you must include the storage IPs!&lt;br /&gt;
&lt;br /&gt;
Click on the Insert button to create the rule&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Manage iSCSI ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Some useful commands to manage iSCSI on IPBrick:&lt;br /&gt;
&lt;br /&gt;
 Restart the openiscsi: /etc/init.d/open-iscsi restart&lt;br /&gt;
 Check the session status: /etc/init.d/open-iscsi status&lt;br /&gt;
 Use the dmesg command to find the disc's device;&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/ISCSI</id>
		<title>ISCSI</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/ISCSI"/>
				<updated>2015-02-11T12:53:20Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
iSCSI, is an abbreviation of Internet Small Computer System Interface, an Internet Protocol (IP)-based storage networking standard for linking data storage facilities.&lt;br /&gt;
&lt;br /&gt;
iSCSI is used to facilitate data transfers over intranets and to manage storage over long distances. iSCSI can be used to transmit data over local area networks (LANs), wide area networks (WANs), or the Internet and can enable location-independent data storage and retrieval. The protocol allows clients (called initiators) to send SCSI commands (CDBs) to SCSI storage devices (targets) on remote servers.&lt;br /&gt;
&lt;br /&gt;
It is a popular Storage Area Network  (SAN) protocol, allowing organizations to consolidate storage into data center storage arrays while providing hosts (such as database and web servers) with the illusion of locally-attached disks. Unlike traditional Fibre Channel, which requires special-purpose cabling, iSCSI can be run over long distances using existing network infrastructure.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
IPBrick v6.0&lt;br /&gt;
&lt;br /&gt;
Connection to the Internet&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
The installation process is done via sources list update.&lt;br /&gt;
&lt;br /&gt;
Access the console:&lt;br /&gt;
&lt;br /&gt;
NOTE: This procedure is done directly at the server's console as a root user.&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# vi /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
 #deb http://repository.ipbrick.com/wheezy wheezy main contrib non-free ipbrick60&lt;br /&gt;
 deb http://ftp.pt.debian.org/debian stable main contrib non-free&lt;br /&gt;
 deb http://ftp.debian.org/debian/ wheezy-updates main contrib non-free&lt;br /&gt;
 deb http://security.debian.org/ wheezy/updates main contrib non-free&lt;br /&gt;
&lt;br /&gt;
Still at the console, run these commands:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# apt-get update&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# apt-get install open-iscsi&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In order to configure an iSCSI interface please follow these steps:&lt;br /&gt;
&lt;br /&gt;
NOTE: The service configuration is done directly at the server's console as a root user.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The /etc/iscsi/initiatorname.iscsi file will identify ONLY the IPBRICK server.&lt;br /&gt;
&lt;br /&gt;
Usually its name is composed by these elements:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 iqn + . + year-month + . + server_name + : + custom_string&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
E.g:&lt;br /&gt;
&lt;br /&gt;
 iqn.2012-08.com.domain.ipbrick:fileserver&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The configuration file /etc/iscsi/iscsid.conf can be edited to set the service's autostart parameter:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 node.startup = automatic&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
And also the authentication parameters:&lt;br /&gt;
&lt;br /&gt;
- '''NO AUTHENTICATION''': If access to the storage is to be done without authentication, no changes to the configuration file are necessary, the following lines should remain as comments:&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 #node.session.auth *&lt;br /&gt;
 #discovery.sendtargets.auth *&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- '''WITH AUTHENTICATION - CHAP''': &lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 node.session.auth.authmethod = CHAP&lt;br /&gt;
 ...&lt;br /&gt;
 node.session.auth.username = username&lt;br /&gt;
 node.session.auth.password = password&lt;br /&gt;
 ...&lt;br /&gt;
 discovery.sendtargets.auth.authmethod = CHAP&lt;br /&gt;
 ...&lt;br /&gt;
 discovery.sendtargets.auth.username = username&lt;br /&gt;
 discovery.sendtargets.auth.password = password&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NOTE: Please replace username and password by the username and password of your iSCSI Target.&lt;br /&gt;
&lt;br /&gt;
Proceed by stopping and then restarting the iSCSI service - execute:&lt;br /&gt;
&lt;br /&gt;
 /etc/init.d/open-iscsi stop&lt;br /&gt;
 /etc/init.d/open-iscsi start&lt;br /&gt;
&lt;br /&gt;
Run iscsiadm to discover the iSCSI devices on the iSCSI Server with the IP 192.168.69.15&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# iscsiadm  -m discovery -t st -p 192.168.69.15&lt;br /&gt;
 192.168.69.15:3260,1 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick.be0e78&lt;br /&gt;
 192.168.69.15:3260,1 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick1.be0e78&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Map the Target&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# iscsiadm  -m node -l -T &amp;quot;iqn.2004-04.com.qnap:ts-439u:&lt;br /&gt;
 iscsi.ipbrick.be0e78&amp;quot;&lt;br /&gt;
 Logging in to [iface: default, target:&lt;br /&gt;
 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick.be0e78, &lt;br /&gt;
 portal: 192.168.69.15,3260]&lt;br /&gt;
 Login to [iface: default, target: iqn.2004-04.com.qnap:ts-439u:&lt;br /&gt;
 iscsi.ipbrick.be0e78, portal: 192.168.69.15,3260]: successful&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With a dmesg command it's now possible to see the new disc as a device sdb:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 Loading iSCSI transport class v2.0-871.&lt;br /&gt;
 iscsi: registered transport (tcp)&lt;br /&gt;
 scsi1 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi2 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi3 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi4 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi5 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi6 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi 5:0:0:0: Direct-Access     QNAP     &lt;br /&gt;
 iSCSI Storage    3.1  PQ: 0 ANSI: 5&lt;br /&gt;
 sd 5:0:0:0: [sdb] 104857600 512-byte hardware sectors:&lt;br /&gt;
 (53.6 GB/50.0 GiB)&lt;br /&gt;
 sd 5:0:0:0: [sdb] Write Protect is off&lt;br /&gt;
 sd 5:0:0:0: [sdb] Mode Sense: 2f 00 00 00&lt;br /&gt;
 sd 5:0:0:0: [sdb] Write cache:&lt;br /&gt;
 disabled, read cache: enabled, doesn't support DPO or FUA&lt;br /&gt;
 sdb: sdb1&lt;br /&gt;
 sd 5:0:0:0: [sdb] Attached SCSI disk&lt;br /&gt;
&lt;br /&gt;
If necessary, format the disc and use this procedure as an example that creates a new partition /dev/sdb:&lt;br /&gt;
&lt;br /&gt;
 mkfs.ext4 /dev/sdb&lt;br /&gt;
&lt;br /&gt;
fstab mapping is done by device and it can be captured via /dev/sdb&lt;br /&gt;
&lt;br /&gt;
It will be necessary to inscribe it at /etc/fstab&lt;br /&gt;
&lt;br /&gt;
Assuming that this new volume will be used as home3, create its mount point:&lt;br /&gt;
&lt;br /&gt;
 mkdir /home3&lt;br /&gt;
&lt;br /&gt;
Map /etc/fstab by executing the nano editor:&lt;br /&gt;
&lt;br /&gt;
 nano /etc/fstab&lt;br /&gt;
&lt;br /&gt;
Inscribe the following:&lt;br /&gt;
&lt;br /&gt;
 /dev/sdb   home3	ext4&lt;br /&gt;
 noauto,defaults,usrquota,grpquota   0   2&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Firewall ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usually, the firewall service is disabled at an intranet server. However, by default, IPBRICK has it active. So, in order create a rule to allow the communication between the IPBRICK and the SAN, please access the following menu:&lt;br /&gt;
&lt;br /&gt;
 Advanced Configurations -&amp;gt; Network -&amp;gt; Firewall&lt;br /&gt;
&lt;br /&gt;
Click on Insert and create a rule of this type:&lt;br /&gt;
&lt;br /&gt;
 Type of configuration to insert: General Settings&lt;br /&gt;
 Rule: INPUT&lt;br /&gt;
 Interface: ETHx (The NIC used in the iSCSI connection)&lt;br /&gt;
 Protocol ALL&lt;br /&gt;
 Policy: ACCEPT&lt;br /&gt;
&lt;br /&gt;
NOTE: When you explicit a firewall rule, you must include the storage IPs!&lt;br /&gt;
&lt;br /&gt;
Click on the Insert button to create the rule&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Manage iSCSI ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Some useful commands to manage iSCSI on IPBrick:&lt;br /&gt;
&lt;br /&gt;
 Restart the openiscsi: /etc/init.d/open-iscsi restart&lt;br /&gt;
 Check the session status: /etc/init.d/open-iscsi status&lt;br /&gt;
 Use the dmesg command to find the disc's device;&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/ISCSI</id>
		<title>ISCSI</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/ISCSI"/>
				<updated>2015-02-11T12:24:15Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: Daraujo moved page Isci to ISCSI&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
iSCSI, is an abbreviation of Internet Small Computer System Interface, an Internet Protocol (IP)-based storage networking standard for linking data storage facilities.&lt;br /&gt;
&lt;br /&gt;
iSCSI is used to facilitate data transfers over intranets and to manage storage over long distances. iSCSI can be used to transmit data over local area networks (LANs), wide area networks (WANs), or the Internet and can enable location-independent data storage and retrieval. The protocol allows clients (called initiators) to send SCSI commands (CDBs) to SCSI storage devices (targets) on remote servers.&lt;br /&gt;
&lt;br /&gt;
It is a popular Storage Area Network  (SAN) protocol, allowing organizations to consolidate storage into data center storage arrays while providing hosts (such as database and web servers) with the illusion of locally-attached disks. Unlike traditional Fibre Channel, which requires special-purpose cabling, iSCSI can be run over long distances using existing network infrastructure.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
IPBrick v6.0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
The installation process is done via sources list update.&lt;br /&gt;
&lt;br /&gt;
Access the console:&lt;br /&gt;
&lt;br /&gt;
NOTE: This procedure is done directly at the server's console as a root user.&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# vi /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
 #deb http://repository.ipbrick.com/wheezy wheezy main contrib non-free ipbrick60&lt;br /&gt;
 deb http://ftp.pt.debian.org/debian stable main contrib non-free&lt;br /&gt;
 deb http://ftp.debian.org/debian/ wheezy-updates main contrib non-free&lt;br /&gt;
 deb http://security.debian.org/ wheezy/updates main contrib non-free&lt;br /&gt;
&lt;br /&gt;
Still at the console, run these commands:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# apt-get update&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# apt-get install open-iscsi&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In order to configure an iSCSI interface please follow these steps:&lt;br /&gt;
&lt;br /&gt;
NOTE: The service configuration is done directly at the server's console as a root user.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The \verb|/etc/iscsi/initiatorname.iscsi| file will identify ONLY the IPBRICK server.&lt;br /&gt;
&lt;br /&gt;
Usually its name is composed by these elements:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 iqn + . + year-month + . + server_name + : + custom_string&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
E.g:&lt;br /&gt;
&lt;br /&gt;
 iqn.2012-08.com.domain.ipbrick:fileserver&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The configuration file /etc/iscsi/iscsid.conf can be edited to set the service's autostart parameter:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 node.startup = automatic&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
And also the authentication parameters:&lt;br /&gt;
&lt;br /&gt;
- '''NO AUTHENTICATION''': If access to the storage is to be done without authentication, no changes to the configuration file are necessary, the following lines should remain as comments:&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 #node.session.auth *&lt;br /&gt;
 #discovery.sendtargets.auth *&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- '''WITH AUTHENTICATION - CHAP''': &lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 node.session.auth.authmethod = CHAP&lt;br /&gt;
 ...&lt;br /&gt;
 node.session.auth.username = username&lt;br /&gt;
 node.session.auth.password = password&lt;br /&gt;
 ...&lt;br /&gt;
 discovery.sendtargets.auth.authmethod = CHAP&lt;br /&gt;
 ...&lt;br /&gt;
 discovery.sendtargets.auth.username = username&lt;br /&gt;
 discovery.sendtargets.auth.password = password&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NOTE: Please replace username and password by the username and password of your iSCSI Target.&lt;br /&gt;
&lt;br /&gt;
Proceed by stopping and then restarting the iSCSI service - execute:&lt;br /&gt;
&lt;br /&gt;
 /etc/init.d/open-iscsi stop&lt;br /&gt;
 /etc/init.d/open-iscsi start&lt;br /&gt;
&lt;br /&gt;
Run iscsiadm to discover the iSCSI devices on the iSCSI Server with the IP 192.168.69.15&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# iscsiadm  -m discovery -t st -p 192.168.69.15&lt;br /&gt;
 192.168.69.15:3260,1 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick.be0e78&lt;br /&gt;
 192.168.69.15:3260,1 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick1.be0e78&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Map the Target&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# iscsiadm  -m node -l -T &amp;quot;iqn.2004-04.com.qnap:ts-439u:&lt;br /&gt;
 iscsi.ipbrick.be0e78&amp;quot;&lt;br /&gt;
 Logging in to [iface: default, target:&lt;br /&gt;
 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick.be0e78, &lt;br /&gt;
 portal: 192.168.69.15,3260]&lt;br /&gt;
 Login to [iface: default, target: iqn.2004-04.com.qnap:ts-439u:&lt;br /&gt;
 iscsi.ipbrick.be0e78, portal: 192.168.69.15,3260]: successful&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With a dmesg command it's now possible to see the new disc as a device sdb:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 Loading iSCSI transport class v2.0-871.&lt;br /&gt;
 iscsi: registered transport (tcp)&lt;br /&gt;
 scsi1 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi2 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi3 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi4 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi5 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi6 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi 5:0:0:0: Direct-Access     QNAP     &lt;br /&gt;
 iSCSI Storage    3.1  PQ: 0 ANSI: 5&lt;br /&gt;
 sd 5:0:0:0: [sdb] 104857600 512-byte hardware sectors:&lt;br /&gt;
 (53.6 GB/50.0 GiB)&lt;br /&gt;
 sd 5:0:0:0: [sdb] Write Protect is off&lt;br /&gt;
 sd 5:0:0:0: [sdb] Mode Sense: 2f 00 00 00&lt;br /&gt;
 sd 5:0:0:0: [sdb] Write cache:&lt;br /&gt;
 disabled, read cache: enabled, doesn't support DPO or FUA&lt;br /&gt;
 sdb: sdb1&lt;br /&gt;
 sd 5:0:0:0: [sdb] Attached SCSI disk&lt;br /&gt;
&lt;br /&gt;
If necessary, format the disc and use this procedure as an example that creates a new partition /dev/sdb:&lt;br /&gt;
&lt;br /&gt;
 mkfs.ext4 /dev/sdb&lt;br /&gt;
&lt;br /&gt;
fstab mapping is done by device and it can be captured via /dev/mapper&lt;br /&gt;
&lt;br /&gt;
It will be necessary to inscribe it at /etc/fstab&lt;br /&gt;
&lt;br /&gt;
Assuming that this new volume will be used as home3, create its mount point:&lt;br /&gt;
&lt;br /&gt;
 mkdir /home3&lt;br /&gt;
&lt;br /&gt;
Map /etc/fstab by executing the nano editor:&lt;br /&gt;
&lt;br /&gt;
 nano /etc/fstab&lt;br /&gt;
&lt;br /&gt;
Inscribe the following:&lt;br /&gt;
&lt;br /&gt;
 /dev/mapper   home3	ext4&lt;br /&gt;
 noauto,defaults,usrquota,grpquota   0   2&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Firewall ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usually, the firewall service is disabled at an intranet server. However, by default, IPBRICK has it active. So, in order create a rule to allow the communication between the IPBRICK and the SAN, please access the following menu:&lt;br /&gt;
&lt;br /&gt;
 Advanced Configurations -&amp;gt; Network -&amp;gt; Firewall&lt;br /&gt;
&lt;br /&gt;
Click on Insert and create a rule of this type:&lt;br /&gt;
&lt;br /&gt;
 Type of configuration to insert: General Settings&lt;br /&gt;
 Rule: INPUT&lt;br /&gt;
 Interface: ETHx (The NIC used in the iSCSI connection)&lt;br /&gt;
 Protocol ALL&lt;br /&gt;
 Policy: ACCEPT&lt;br /&gt;
&lt;br /&gt;
NOTE: When you explicit a firewall rule, you must include the storage IPs!&lt;br /&gt;
&lt;br /&gt;
Click on the Insert button to create the rule&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Manage iSCSI ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Some useful commands to manage iSCSI on IPBrick:&lt;br /&gt;
&lt;br /&gt;
 Restart the openiscsi: /etc/init.d/open-iscsi restart&lt;br /&gt;
 Check the session status: /etc/init.d/open-iscsi status&lt;br /&gt;
 Use the dmesg command to find the disc's device;&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Isci</id>
		<title>Isci</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Isci"/>
				<updated>2015-02-11T12:24:15Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: Daraujo moved page Isci to ISCSI&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[ISCSI]]&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/ISCSI</id>
		<title>ISCSI</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/ISCSI"/>
				<updated>2015-02-11T12:21:23Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
iSCSI, is an abbreviation of Internet Small Computer System Interface, an Internet Protocol (IP)-based storage networking standard for linking data storage facilities.&lt;br /&gt;
&lt;br /&gt;
iSCSI is used to facilitate data transfers over intranets and to manage storage over long distances. iSCSI can be used to transmit data over local area networks (LANs), wide area networks (WANs), or the Internet and can enable location-independent data storage and retrieval. The protocol allows clients (called initiators) to send SCSI commands (CDBs) to SCSI storage devices (targets) on remote servers.&lt;br /&gt;
&lt;br /&gt;
It is a popular Storage Area Network  (SAN) protocol, allowing organizations to consolidate storage into data center storage arrays while providing hosts (such as database and web servers) with the illusion of locally-attached disks. Unlike traditional Fibre Channel, which requires special-purpose cabling, iSCSI can be run over long distances using existing network infrastructure.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
IPBrick v6.0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
The installation process is done via sources list update.&lt;br /&gt;
&lt;br /&gt;
Access the console:&lt;br /&gt;
&lt;br /&gt;
NOTE: This procedure is done directly at the server's console as a root user.&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# vi /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
 #deb http://repository.ipbrick.com/wheezy wheezy main contrib non-free ipbrick60&lt;br /&gt;
 deb http://ftp.pt.debian.org/debian stable main contrib non-free&lt;br /&gt;
 deb http://ftp.debian.org/debian/ wheezy-updates main contrib non-free&lt;br /&gt;
 deb http://security.debian.org/ wheezy/updates main contrib non-free&lt;br /&gt;
&lt;br /&gt;
Still at the console, run these commands:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# apt-get update&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# apt-get install open-iscsi&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In order to configure an iSCSI interface please follow these steps:&lt;br /&gt;
&lt;br /&gt;
NOTE: The service configuration is done directly at the server's console as a root user.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The \verb|/etc/iscsi/initiatorname.iscsi| file will identify ONLY the IPBRICK server.&lt;br /&gt;
&lt;br /&gt;
Usually its name is composed by these elements:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 iqn + . + year-month + . + server_name + : + custom_string&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
E.g:&lt;br /&gt;
&lt;br /&gt;
 iqn.2012-08.com.domain.ipbrick:fileserver&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The configuration file /etc/iscsi/iscsid.conf can be edited to set the service's autostart parameter:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 node.startup = automatic&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
And also the authentication parameters:&lt;br /&gt;
&lt;br /&gt;
- '''NO AUTHENTICATION''': If access to the storage is to be done without authentication, no changes to the configuration file are necessary, the following lines should remain as comments:&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 #node.session.auth *&lt;br /&gt;
 #discovery.sendtargets.auth *&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- '''WITH AUTHENTICATION - CHAP''': &lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 node.session.auth.authmethod = CHAP&lt;br /&gt;
 ...&lt;br /&gt;
 node.session.auth.username = username&lt;br /&gt;
 node.session.auth.password = password&lt;br /&gt;
 ...&lt;br /&gt;
 discovery.sendtargets.auth.authmethod = CHAP&lt;br /&gt;
 ...&lt;br /&gt;
 discovery.sendtargets.auth.username = username&lt;br /&gt;
 discovery.sendtargets.auth.password = password&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NOTE: Please replace username and password by the username and password of your iSCSI Target.&lt;br /&gt;
&lt;br /&gt;
Proceed by stopping and then restarting the iSCSI service - execute:&lt;br /&gt;
&lt;br /&gt;
 /etc/init.d/open-iscsi stop&lt;br /&gt;
 /etc/init.d/open-iscsi start&lt;br /&gt;
&lt;br /&gt;
Run iscsiadm to discover the iSCSI devices on the iSCSI Server with the IP 192.168.69.15&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# iscsiadm  -m discovery -t st -p 192.168.69.15&lt;br /&gt;
 192.168.69.15:3260,1 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick.be0e78&lt;br /&gt;
 192.168.69.15:3260,1 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick1.be0e78&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Map the Target&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# iscsiadm  -m node -l -T &amp;quot;iqn.2004-04.com.qnap:ts-439u:&lt;br /&gt;
 iscsi.ipbrick.be0e78&amp;quot;&lt;br /&gt;
 Logging in to [iface: default, target:&lt;br /&gt;
 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick.be0e78, &lt;br /&gt;
 portal: 192.168.69.15,3260]&lt;br /&gt;
 Login to [iface: default, target: iqn.2004-04.com.qnap:ts-439u:&lt;br /&gt;
 iscsi.ipbrick.be0e78, portal: 192.168.69.15,3260]: successful&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With a dmesg command it's now possible to see the new disc as a device sdb:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 Loading iSCSI transport class v2.0-871.&lt;br /&gt;
 iscsi: registered transport (tcp)&lt;br /&gt;
 scsi1 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi2 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi3 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi4 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi5 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi6 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi 5:0:0:0: Direct-Access     QNAP     &lt;br /&gt;
 iSCSI Storage    3.1  PQ: 0 ANSI: 5&lt;br /&gt;
 sd 5:0:0:0: [sdb] 104857600 512-byte hardware sectors:&lt;br /&gt;
 (53.6 GB/50.0 GiB)&lt;br /&gt;
 sd 5:0:0:0: [sdb] Write Protect is off&lt;br /&gt;
 sd 5:0:0:0: [sdb] Mode Sense: 2f 00 00 00&lt;br /&gt;
 sd 5:0:0:0: [sdb] Write cache:&lt;br /&gt;
 disabled, read cache: enabled, doesn't support DPO or FUA&lt;br /&gt;
 sdb: sdb1&lt;br /&gt;
 sd 5:0:0:0: [sdb] Attached SCSI disk&lt;br /&gt;
&lt;br /&gt;
If necessary, format the disc and use this procedure as an example that creates a new partition /dev/sdb:&lt;br /&gt;
&lt;br /&gt;
 mkfs.ext4 /dev/sdb&lt;br /&gt;
&lt;br /&gt;
fstab mapping is done by device and it can be captured via /dev/mapper&lt;br /&gt;
&lt;br /&gt;
It will be necessary to inscribe it at /etc/fstab&lt;br /&gt;
&lt;br /&gt;
Assuming that this new volume will be used as home3, create its mount point:&lt;br /&gt;
&lt;br /&gt;
 mkdir /home3&lt;br /&gt;
&lt;br /&gt;
Map /etc/fstab by executing the nano editor:&lt;br /&gt;
&lt;br /&gt;
 nano /etc/fstab&lt;br /&gt;
&lt;br /&gt;
Inscribe the following:&lt;br /&gt;
&lt;br /&gt;
 /dev/mapper   home3	ext4&lt;br /&gt;
 noauto,defaults,usrquota,grpquota   0   2&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Firewall ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usually, the firewall service is disabled at an intranet server. However, by default, IPBRICK has it active. So, in order create a rule to allow the communication between the IPBRICK and the SAN, please access the following menu:&lt;br /&gt;
&lt;br /&gt;
 Advanced Configurations -&amp;gt; Network -&amp;gt; Firewall&lt;br /&gt;
&lt;br /&gt;
Click on Insert and create a rule of this type:&lt;br /&gt;
&lt;br /&gt;
 Type of configuration to insert: General Settings&lt;br /&gt;
 Rule: INPUT&lt;br /&gt;
 Interface: ETHx (The NIC used in the iSCSI connection)&lt;br /&gt;
 Protocol ALL&lt;br /&gt;
 Policy: ACCEPT&lt;br /&gt;
&lt;br /&gt;
NOTE: When you explicit a firewall rule, you must include the storage IPs!&lt;br /&gt;
&lt;br /&gt;
Click on the Insert button to create the rule&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Manage iSCSI ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Some useful commands to manage iSCSI on IPBrick:&lt;br /&gt;
&lt;br /&gt;
 Restart the openiscsi: /etc/init.d/open-iscsi restart&lt;br /&gt;
 Check the session status: /etc/init.d/open-iscsi status&lt;br /&gt;
 Use the dmesg command to find the disc's device;&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/ISCSI</id>
		<title>ISCSI</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/ISCSI"/>
				<updated>2015-02-11T11:04:59Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
iSCSI, is an abbreviation of Internet Small Computer System Interface, an Internet Protocol (IP)-based storage networking standard for linking data storage facilities.&lt;br /&gt;
&lt;br /&gt;
iSCSI is used to facilitate data transfers over intranets and to manage storage over long distances. iSCSI can be used to transmit data over local area networks (LANs), wide area networks (WANs), or the Internet and can enable location-independent data storage and retrieval. The protocol allows clients (called initiators) to send SCSI commands (CDBs) to SCSI storage devices (targets) on remote servers.&lt;br /&gt;
&lt;br /&gt;
It is a popular Storage Area Network  (SAN) protocol, allowing organizations to consolidate storage into data center storage arrays while providing hosts (such as database and web servers) with the illusion of locally-attached disks. Unlike traditional Fibre Channel, which requires special-purpose cabling, iSCSI can be run over long distances using existing network infrastructure.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
IPBrick v5.3 or later versions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Access the console:&lt;br /&gt;
&lt;br /&gt;
NOTE: This procedure is done directly at the server's console as a root user.&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# vi /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
 #deb http://repository.ipbrick.com/wheezy wheezy main contrib non-free ipbrick60&lt;br /&gt;
 deb http://ftp.pt.debian.org/debian stable main contrib non-free&lt;br /&gt;
 deb http://ftp.debian.org/debian/ wheezy-updates main contrib non-free&lt;br /&gt;
 deb http://security.debian.org/ wheezy/updates main contrib non-free&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Still at the console, run these commands:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# apt-get update&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# apt-get install open-iscsi&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In order to configure an iSCSI interface please follow these steps:&lt;br /&gt;
&lt;br /&gt;
NOTE: The service configuration is done directly at the server's console as a root user.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The \verb|/etc/iscsi/initiatorname.iscsi| file will identify ONLY the IPBRICK server.&lt;br /&gt;
&lt;br /&gt;
Usually its name is composed by these elements:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 iqn + . + year-month + . + server_name + : + custom_string&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
E.g:&lt;br /&gt;
&lt;br /&gt;
 iqn.2012-08.com.domain.ipbrick:fileserver&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The configuration file /etc/iscsi/iscsid.conf can be edited to set the service's autostart parameter:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 node.startup = automatic&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
And also the authentication parameters:&lt;br /&gt;
&lt;br /&gt;
- '''NO AUTHENTICATION''': If access to the storage is to be done without authentication, no changes to the configuration file are necessary, the following lines should remain as comments:&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 #node.session.auth *&lt;br /&gt;
 #discovery.sendtargets.auth *&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- '''WITH AUTHENTICATION - CHAP''': &lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 node.session.auth.authmethod = CHAP&lt;br /&gt;
 ...&lt;br /&gt;
 node.session.auth.username = username&lt;br /&gt;
 node.session.auth.password = password&lt;br /&gt;
 ...&lt;br /&gt;
 discovery.sendtargets.auth.authmethod = CHAP&lt;br /&gt;
 ...&lt;br /&gt;
 discovery.sendtargets.auth.username = username&lt;br /&gt;
 discovery.sendtargets.auth.password = password&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NOTE: Please replace username and password by the username and password of your iSCSI Target.&lt;br /&gt;
&lt;br /&gt;
Proceed by stopping and then restarting the iSCSI service - execute:&lt;br /&gt;
&lt;br /&gt;
 /etc/init.d/open-iscsi stop&lt;br /&gt;
 /etc/init.d/open-iscsi start&lt;br /&gt;
&lt;br /&gt;
Run iscsiadm to discover the iSCSI devices on the iSCSI Server with the IP 192.168.69.15&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# iscsiadm  -m discovery -t st -p 192.168.69.15&lt;br /&gt;
 192.168.69.15:3260,1 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick.be0e78&lt;br /&gt;
 192.168.69.15:3260,1 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick1.be0e78&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Map the Target&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# iscsiadm  -m node -l -T &amp;quot;iqn.2004-04.com.qnap:ts-439u:&lt;br /&gt;
 iscsi.ipbrick.be0e78&amp;quot;&lt;br /&gt;
 Logging in to [iface: default, target:&lt;br /&gt;
 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick.be0e78, &lt;br /&gt;
 portal: 192.168.69.15,3260]&lt;br /&gt;
 Login to [iface: default, target: iqn.2004-04.com.qnap:ts-439u:&lt;br /&gt;
 iscsi.ipbrick.be0e78, portal: 192.168.69.15,3260]: successful&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With a dmesg command it's now possible to see the new disc as a device sdb:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 Loading iSCSI transport class v2.0-871.&lt;br /&gt;
 iscsi: registered transport (tcp)&lt;br /&gt;
 scsi1 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi2 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi3 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi4 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi5 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi6 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi 5:0:0:0: Direct-Access     QNAP     &lt;br /&gt;
 iSCSI Storage    3.1  PQ: 0 ANSI: 5&lt;br /&gt;
 sd 5:0:0:0: [sdb] 104857600 512-byte hardware sectors:&lt;br /&gt;
 (53.6 GB/50.0 GiB)&lt;br /&gt;
 sd 5:0:0:0: [sdb] Write Protect is off&lt;br /&gt;
 sd 5:0:0:0: [sdb] Mode Sense: 2f 00 00 00&lt;br /&gt;
 sd 5:0:0:0: [sdb] Write cache:&lt;br /&gt;
 disabled, read cache: enabled, doesn't support DPO or FUA&lt;br /&gt;
 sdb: sdb1&lt;br /&gt;
 sd 5:0:0:0: [sdb] Attached SCSI disk&lt;br /&gt;
&lt;br /&gt;
If necessary, format the disc and use this procedure as an example that creates a new partition /dev/sdb:&lt;br /&gt;
&lt;br /&gt;
 mkfs.xfs /dev/sdb&lt;br /&gt;
&lt;br /&gt;
To create a label follow this example:&lt;br /&gt;
&lt;br /&gt;
 mkfs.xfs -L SANSERVER /dev/sdb&lt;br /&gt;
&lt;br /&gt;
NOTE: XFS filesystem labels can be at most 12 characters long; if label is longer than 12 characters, mkfs.xfs will not proceed with creating the filesystem.&lt;br /&gt;
&lt;br /&gt;
Execute these commands to access the new disc and check if all is OK:&lt;br /&gt;
&lt;br /&gt;
 mount LABEL=SANSERVER /mnt&lt;br /&gt;
 df -h&lt;br /&gt;
 umount /mnt&lt;br /&gt;
&lt;br /&gt;
It will be necessary to inscribe it at /etc/fstab&lt;br /&gt;
&lt;br /&gt;
Assuming that this new volume will be used as home3, create its mount point:&lt;br /&gt;
&lt;br /&gt;
 mkdir /home3&lt;br /&gt;
&lt;br /&gt;
Map /etc/fstab by executing the nano editor:&lt;br /&gt;
&lt;br /&gt;
 nano /etc/fstab&lt;br /&gt;
&lt;br /&gt;
Inscribe the following:&lt;br /&gt;
&lt;br /&gt;
 LABEL=SANSERVER   home3	xfs&lt;br /&gt;
 noauto,defaults,usrquota,grpquota   0   2&lt;br /&gt;
&lt;br /&gt;
The following scripts will enable automount.&lt;br /&gt;
&lt;br /&gt;
Execute the transcribed script (iscsi-aux.sh) at the server (the transfer can be made by scp):&lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 &lt;br /&gt;
 TMPFILE=/tmp/iscsi_aux.txt&lt;br /&gt;
 TMPFILE2=/tmp/iscsi_aux.tgz&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 echo &amp;quot;begin-base64 644 ola&lt;br /&gt;
 H4sIAGVBGVAAA+3UX0+CUBgGcK7Pp3ib3XShHA5/TpvrwgzrLAInVtdIZ5Mt&lt;br /&gt;
 wQlubc3v3gFqmTNdm5qt93cDcl7EnccHWcR6kiZF60kX/cvmJJunRTPJ4zxp&lt;br /&gt;
 5WNtN6jCbbs6KqtHanKqGYxSh5nccdR1w+Im14Du6PkbzfMimgFosywrNs1t&lt;br /&gt;
 W/+jGif6KEn1UZSPCSGNgdv3RLczdKEXeF7wKPxr8ITvhurzANxO9wZE2A0F&lt;br /&gt;
 XLkPouvCXXDvD6EfCH9IqgXjQh9nE2kSEke5hNNXYwFJSgDKbS7O1Empemb1&lt;br /&gt;
 X1MT9X2L96V2uxrOpl9m5+uHl9eaz+u+S+ZRTEqNnvA7HpEvSQGUkN/e92Mh&lt;br /&gt;
 Vf9nMVP1Dw1nT2+Aqv+cf9v/8vyj/5btaJQxRh0NmC73/3b65/2v86dqg2/P&lt;br /&gt;
 jV/P36JmeZ0xw7Yw/0Oo83eOJn/GrSp/jvkfxHL/WTaVab29O33Gj/rP1JzB&lt;br /&gt;
 bcZW8t/Tb8P8P/t/HPmbdf6r/cf8EUIIIYQQQgghhBBCCCGEENrqDaroa64A&lt;br /&gt;
 KAAA&lt;br /&gt;
 ====&amp;quot; &amp;gt; ${TMPFILE}&lt;br /&gt;
 uudecode -o ${TMPFILE2} ${TMPFILE}&lt;br /&gt;
 tar -zxv -C / -f ${TMPFILE2}&lt;br /&gt;
 rm /etc/rc0.d/K30open-iscsi&lt;br /&gt;
 rm /etc/rc6.d/K30open-iscsi&lt;br /&gt;
 rm ${TMPFILE}&lt;br /&gt;
 rm ${TMPFILE2}&lt;br /&gt;
&lt;br /&gt;
 exit 0&lt;br /&gt;
&lt;br /&gt;
NOTE: You can download this script at our eshop: [http://eshop.ipbrick.com/ eshop.ipbrick.com]&lt;br /&gt;
&lt;br /&gt;
at:&lt;br /&gt;
 Downloads » Documentation » Other documentation&lt;br /&gt;
&lt;br /&gt;
Don't forget to:&lt;br /&gt;
&lt;br /&gt;
Change its permissions (make it executable):&lt;br /&gt;
&lt;br /&gt;
 chmod 755 iscsi-aux.sh&lt;br /&gt;
&lt;br /&gt;
Execute the script:&lt;br /&gt;
 ./iscsi-aux.sh&lt;br /&gt;
&lt;br /&gt;
Edit the /etc/init.d/IPB-mount-iscsi.sh script with the following mount point:&lt;br /&gt;
&lt;br /&gt;
 (...)&lt;br /&gt;
 ISCSI1=/home3&lt;br /&gt;
 (...)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Firewall ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usually, the firewall service is disabled at an intranet server. However, by default, IPBRICK has it active. So, in order create a rule to allow the communication between the IPBRICK and the SAN, please access the following menu:&lt;br /&gt;
&lt;br /&gt;
 Advanced Configurations -&amp;gt; Network -&amp;gt; Firewall&lt;br /&gt;
&lt;br /&gt;
Click on Insert and create a rule of this type:&lt;br /&gt;
&lt;br /&gt;
 Type of configuration to insert: General Settings&lt;br /&gt;
 Rule: INPUT&lt;br /&gt;
 Interface: ETHx (The NIC used in the iSCSI connection)&lt;br /&gt;
 Protocol ALL&lt;br /&gt;
 Policy: ACCEPT&lt;br /&gt;
&lt;br /&gt;
Click on the Insert button to create the rule&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Manage iSCSI ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Some useful commands to manage iSCSI on IPBrick:&lt;br /&gt;
&lt;br /&gt;
 Restart the openiscsi: /etc/init.d/open-iscsi restart&lt;br /&gt;
 Check the session status: /etc/init.d/open-iscsi status&lt;br /&gt;
 Use the dmesg command to find the disc's device;&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/ISCSI</id>
		<title>ISCSI</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/ISCSI"/>
				<updated>2015-02-11T10:59:43Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: Created page with &amp;quot;Introduction  iSCSI, is an abbreviation of Internet Small Computer System Interface, an Internet Protocol (IP)-based storage networking standard for linking data storage facil...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Introduction&lt;br /&gt;
&lt;br /&gt;
iSCSI, is an abbreviation of Internet Small Computer System Interface, an Internet Protocol (IP)-based storage networking standard for linking data storage facilities.&lt;br /&gt;
&lt;br /&gt;
iSCSI is used to facilitate data transfers over intranets and to manage storage over long distances. iSCSI can be used to transmit data over local area networks (LANs), wide area networks (WANs), or the Internet and can enable location-independent data storage and retrieval. The protocol allows clients (called initiators) to send SCSI commands (CDBs) to SCSI storage devices (targets) on remote servers.&lt;br /&gt;
&lt;br /&gt;
It is a popular Storage Area Network  (SAN) protocol, allowing organizations to consolidate storage into data center storage arrays while providing hosts (such as database and web servers) with the illusion of locally-attached disks. Unlike traditional Fibre Channel, which requires special-purpose cabling, iSCSI can be run over long distances using existing network infrastructure.&lt;br /&gt;
&lt;br /&gt;
Requirements&lt;br /&gt;
&lt;br /&gt;
IPBrick v5.3 or later versions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Software&lt;br /&gt;
&lt;br /&gt;
Access the console:&lt;br /&gt;
&lt;br /&gt;
NOTE: This procedure is done directly at the server's console as a root user.&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# vi /etc/apt/sources.list|&lt;br /&gt;
&lt;br /&gt;
 #deb http://repository.ipbrick.com/wheezy wheezy main contrib non-free ipbrick60&lt;br /&gt;
&lt;br /&gt;
 deb http://ftp.pt.debian.org/debian stable main contrib non-free&lt;br /&gt;
&lt;br /&gt;
 deb http://ftp.debian.org/debian/ wheezy-updates main contrib non-free&lt;br /&gt;
&lt;br /&gt;
 deb http://security.debian.org/ wheezy/updates main contrib non-free&lt;br /&gt;
&lt;br /&gt;
Installation&lt;br /&gt;
&lt;br /&gt;
Still at the console, run these commands:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# apt-get update&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# apt-get install open-iscsi&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Configuration&lt;br /&gt;
&lt;br /&gt;
In order to configure an iSCSI interface please follow these steps:&lt;br /&gt;
&lt;br /&gt;
NOTE: The service configuration is done directly at the server's console as a root user.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The \verb|/etc/iscsi/initiatorname.iscsi| file will identify ONLY the IPBRICK server.&lt;br /&gt;
&lt;br /&gt;
Usually its name is composed by these elements:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 iqn + . + year-month + . + server_name + : + custom_string&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
E.g:&lt;br /&gt;
&lt;br /&gt;
 iqn.2012-08.com.domain.ipbrick:fileserver&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The configuration file /etc/iscsi/iscsid.conf can be edited to set the service's autostart parameter:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 node.startup = automatic&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
And also the authentication parameters:&lt;br /&gt;
&lt;br /&gt;
- NO AUTHENTICATION: If access to the storage is to be done without authentication, no changes to the configuration file are necessary, the following lines should remain as comments:&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 #node.session.auth *&lt;br /&gt;
 #discovery.sendtargets.auth *&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- WITH AUTHENTICATION - CHAP: &lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 node.session.auth.authmethod = CHAP&lt;br /&gt;
 ...&lt;br /&gt;
 node.session.auth.username = username&lt;br /&gt;
 node.session.auth.password = password&lt;br /&gt;
 ...&lt;br /&gt;
 discovery.sendtargets.auth.authmethod = CHAP&lt;br /&gt;
 ...&lt;br /&gt;
 discovery.sendtargets.auth.username = username&lt;br /&gt;
 discovery.sendtargets.auth.password = password&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NOTE: Please replace username and password by the username and password of your iSCSI Target.&lt;br /&gt;
&lt;br /&gt;
Proceed by stopping and then restarting the iSCSI service - execute:&lt;br /&gt;
&lt;br /&gt;
 /etc/init.d/open-iscsi stop&lt;br /&gt;
 /etc/init.d/open-iscsi start&lt;br /&gt;
&lt;br /&gt;
Run iscsiadm to discover the iSCSI devices on the iSCSI Server with the IP 192.168.69.15&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# iscsiadm  -m discovery -t st -p 192.168.69.15&lt;br /&gt;
 192.168.69.15:3260,1 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick.be0e78&lt;br /&gt;
 192.168.69.15:3260,1 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick1.be0e78&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Map the Target&lt;br /&gt;
&lt;br /&gt;
 ipbrick:~# iscsiadm  -m node -l -T &amp;quot;iqn.2004-04.com.qnap:ts-439u:&lt;br /&gt;
 iscsi.ipbrick.be0e78&amp;quot;&lt;br /&gt;
 Logging in to [iface: default, target:&lt;br /&gt;
 iqn.2004-04.com.qnap:ts-439u:iscsi.ipbrick.be0e78, &lt;br /&gt;
 portal: 192.168.69.15,3260]&lt;br /&gt;
 Login to [iface: default, target: iqn.2004-04.com.qnap:ts-439u:&lt;br /&gt;
 iscsi.ipbrick.be0e78, portal: 192.168.69.15,3260]: successful&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With a dmesg command it's now possible to see the new disc as a device sdb:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 Loading iSCSI transport class v2.0-871.&lt;br /&gt;
 iscsi: registered transport (tcp)&lt;br /&gt;
 scsi1 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi2 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi3 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi4 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi5 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi6 : iSCSI Initiator over TCP/IP&lt;br /&gt;
 scsi 5:0:0:0: Direct-Access     QNAP     &lt;br /&gt;
 iSCSI Storage    3.1  PQ: 0 ANSI: 5&lt;br /&gt;
 sd 5:0:0:0: [sdb] 104857600 512-byte hardware sectors:&lt;br /&gt;
 (53.6 GB/50.0 GiB)&lt;br /&gt;
 sd 5:0:0:0: [sdb] Write Protect is off&lt;br /&gt;
 sd 5:0:0:0: [sdb] Mode Sense: 2f 00 00 00&lt;br /&gt;
 sd 5:0:0:0: [sdb] Write cache:&lt;br /&gt;
 disabled, read cache: enabled, doesn't support DPO or FUA&lt;br /&gt;
 sdb: sdb1&lt;br /&gt;
 sd 5:0:0:0: [sdb] Attached SCSI disk&lt;br /&gt;
&lt;br /&gt;
If necessary, format the disc and use this procedure as an example that creates a new partition /dev/sdb:&lt;br /&gt;
&lt;br /&gt;
 mkfs.xfs /dev/sdb&lt;br /&gt;
&lt;br /&gt;
To create a label follow this example:&lt;br /&gt;
&lt;br /&gt;
 mkfs.xfs -L SANSERVER /dev/sdb&lt;br /&gt;
&lt;br /&gt;
NOTE: XFS filesystem labels can be at most 12 characters long; if label is longer than 12 characters, mkfs.xfs will not proceed with creating the filesystem.&lt;br /&gt;
&lt;br /&gt;
Execute these commands to access the new disc and check if all is OK:&lt;br /&gt;
&lt;br /&gt;
 mount LABEL=SANSERVER /mnt&lt;br /&gt;
 df -h&lt;br /&gt;
 umount /mnt&lt;br /&gt;
&lt;br /&gt;
It will be necessary to inscribe it at /etc/fstab&lt;br /&gt;
&lt;br /&gt;
Assuming that this new volume will be used as home3, create its mount point:&lt;br /&gt;
&lt;br /&gt;
 mkdir /home3&lt;br /&gt;
&lt;br /&gt;
Map /etc/fstab by executing the nano editor:&lt;br /&gt;
&lt;br /&gt;
 nano /etc/fstab&lt;br /&gt;
&lt;br /&gt;
Inscribe the following:&lt;br /&gt;
&lt;br /&gt;
 LABEL=SANSERVER   home3	xfs&lt;br /&gt;
 noauto,defaults,usrquota,grpquota   0   2&lt;br /&gt;
&lt;br /&gt;
The following scripts will enable automount.&lt;br /&gt;
&lt;br /&gt;
Execute the transcribed script (iscsi-aux.sh) at the server (the transfer can be made by scp):&lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 &lt;br /&gt;
 TMPFILE=/tmp/iscsi_aux.txt&lt;br /&gt;
 TMPFILE2=/tmp/iscsi_aux.tgz&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 echo &amp;quot;begin-base64 644 ola&lt;br /&gt;
 H4sIAGVBGVAAA+3UX0+CUBgGcK7Pp3ib3XShHA5/TpvrwgzrLAInVtdIZ5Mt&lt;br /&gt;
 wQlubc3v3gFqmTNdm5qt93cDcl7EnccHWcR6kiZF60kX/cvmJJunRTPJ4zxp&lt;br /&gt;
 5WNtN6jCbbs6KqtHanKqGYxSh5nccdR1w+Im14Du6PkbzfMimgFosywrNs1t&lt;br /&gt;
 W/+jGif6KEn1UZSPCSGNgdv3RLczdKEXeF7wKPxr8ITvhurzANxO9wZE2A0F&lt;br /&gt;
 XLkPouvCXXDvD6EfCH9IqgXjQh9nE2kSEke5hNNXYwFJSgDKbS7O1Empemb1&lt;br /&gt;
 X1MT9X2L96V2uxrOpl9m5+uHl9eaz+u+S+ZRTEqNnvA7HpEvSQGUkN/e92Mh&lt;br /&gt;
 Vf9nMVP1Dw1nT2+Aqv+cf9v/8vyj/5btaJQxRh0NmC73/3b65/2v86dqg2/P&lt;br /&gt;
 jV/P36JmeZ0xw7Yw/0Oo83eOJn/GrSp/jvkfxHL/WTaVab29O33Gj/rP1JzB&lt;br /&gt;
 bcZW8t/Tb8P8P/t/HPmbdf6r/cf8EUIIIYQQQgghhBBCCCGEENrqDaroa64A&lt;br /&gt;
 KAAA&lt;br /&gt;
 ====&amp;quot; &amp;gt; ${TMPFILE}&lt;br /&gt;
 uudecode -o ${TMPFILE2} ${TMPFILE}&lt;br /&gt;
 tar -zxv -C / -f ${TMPFILE2}&lt;br /&gt;
 rm /etc/rc0.d/K30open-iscsi&lt;br /&gt;
 rm /etc/rc6.d/K30open-iscsi&lt;br /&gt;
 rm ${TMPFILE}&lt;br /&gt;
 rm ${TMPFILE2}&lt;br /&gt;
&lt;br /&gt;
 exit 0&lt;br /&gt;
&lt;br /&gt;
NOTE: You can download this script at our eshop: [http://eshop.ipbrick.com/ eshop.ipbrick.com]&lt;br /&gt;
&lt;br /&gt;
at:&lt;br /&gt;
Downloads » Documentation » Other documentation&lt;br /&gt;
&lt;br /&gt;
Don't forget to:&lt;br /&gt;
&lt;br /&gt;
Change its permissions (make it executable):&lt;br /&gt;
&lt;br /&gt;
 chmod 755 iscsi-aux.sh&lt;br /&gt;
&lt;br /&gt;
Execute the script:&lt;br /&gt;
 ./iscsi-aux.sh&lt;br /&gt;
&lt;br /&gt;
Edit the /etc/init.d/IPB-mount-iscsi.sh script with the following mount point:&lt;br /&gt;
&lt;br /&gt;
 (...)&lt;br /&gt;
 ISCSI1=/home3&lt;br /&gt;
 (...)&lt;br /&gt;
&lt;br /&gt;
Firewall&lt;br /&gt;
&lt;br /&gt;
Usually, the firewall service is disabled at an intranet server. However, by default, IPBRICK has it active. So, in order create a rule to allow the communication between the IPBRICK and the SAN, please access the following menu:&lt;br /&gt;
&lt;br /&gt;
 Advanced Configurations -&amp;gt; Network -&amp;gt; Firewall&lt;br /&gt;
&lt;br /&gt;
Click on Insert and create a rule of this type:&lt;br /&gt;
&lt;br /&gt;
 Type of configuration to insert: General Settings&lt;br /&gt;
 Rule: INPUT&lt;br /&gt;
 Interface: ETHx (The NIC used in the iSCSI connection)&lt;br /&gt;
 Protocol ALL&lt;br /&gt;
 Policy: ACCEPT&lt;br /&gt;
&lt;br /&gt;
Click on the Insert button to create the rule&lt;br /&gt;
&lt;br /&gt;
Manage iSCSI&lt;br /&gt;
&lt;br /&gt;
Some useful commands to manage iSCSI on IPBrick:&lt;br /&gt;
&lt;br /&gt;
 Restart the openiscsi: /etc/init.d/open-iscsi restart&lt;br /&gt;
 Check the session status: /etc/init.d/open-iscsi status&lt;br /&gt;
 Use the dmesg command to find the disc's device;&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6</id>
		<title>Migrating an iPortalDoc from IPBRICK 5.x to 6</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6"/>
				<updated>2014-12-02T18:37:30Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Before Migrating: ==&lt;br /&gt;
&lt;br /&gt;
- Update iPortalDoc to iPortalDoc v4.2, if the installed version is older than 4.2&lt;br /&gt;
&lt;br /&gt;
- Update IPBRICK Contacts untill version 4.3, if the installed version is older than 4.3&lt;br /&gt;
&lt;br /&gt;
- Backup the DB (command [http://downloads3.ipbrick.com/tmp/ipbrickdb_ipb5])&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
- If there's an IPortalDoc Light, update until version 3.2, please follow this by backing up the data&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc_leve --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== After the CD installation: ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- If the IPBRICK contacts version at IPBRICK &amp;lt;6 is &amp;gt;v4.3, update the IPBRICK Contacts until the existing version before the CD application&lt;br /&gt;
&lt;br /&gt;
- Install the same iPortalDoc version before the CD application (version + updates, if applicable)&lt;br /&gt;
&lt;br /&gt;
- Replace the IPBrick configuration migrated to IPBrick 6.&lt;br /&gt;
&lt;br /&gt;
- Restore the dbdoc DB [http://downloads3.ipbrick.com/tmp/ipbrickdb_ipb6]&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --dbname dbdoc          --file /home1/_work/dump_dbdoc.sql&lt;br /&gt;
&lt;br /&gt;
- If there is an iPortalDoc Light, restore the DB&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --ipdoclight --dbname dbdoc_leve --file file_com_dump&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- Rebuild iPortalDoc workflow accounts:&lt;br /&gt;
    a) Definitions Menu -&amp;gt; Configuration Interface&lt;br /&gt;
    b) Poplist on the right (Menu) -&amp;gt; Workflows&lt;br /&gt;
    c) Click on the Rebuild button&lt;br /&gt;
&lt;br /&gt;
- Rebuild share &amp;quot;Access&amp;quot; and the account of Associated Emails to Documents, of iPortalDoc:&lt;br /&gt;
    a) Access Share: Definitions -&amp;gt; Configuration Interface-&amp;gt; Build Global FS&lt;br /&gt;
    b) Emails associated to documents: Definitions -&amp;gt; Configuration Interface -&amp;gt; Build Global mailFS&lt;br /&gt;
       (This task is scheduled to be executed at midnight);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Useful links: ==&lt;br /&gt;
&lt;br /&gt;
IPContacts v4.3 update to install in an IPBrick v5 [http://downloads3.ipbrick.com/ipbrick-contacts_4.3_all_IPBrick-v5.deb]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Script ipbrickdb_ipb5: [http://downloads3.ipbrick.com/ipbrickdb_ipb5]&lt;br /&gt;
&lt;br /&gt;
md5sum: 5821d88812515bd3735ef646139e7bd0&lt;br /&gt;
&lt;br /&gt;
Script ipbrickdb_ipb6: [http://downloads3.ipbrick.com/ipbrickdb_ipb6]&lt;br /&gt;
&lt;br /&gt;
md5sum: e33663806d2d0503181f12374209de8b&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6</id>
		<title>Migrating an iPortalDoc from IPBRICK 5.x to 6</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6"/>
				<updated>2014-11-26T16:50:30Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Before Migrating: ==&lt;br /&gt;
&lt;br /&gt;
- Update iPortalDoc to iPortalDoc v4.2, if the installed version is older than 4.2&lt;br /&gt;
&lt;br /&gt;
- Update IPBRICK Contacts untill version 4.3, if the installed version is older than 4.3&lt;br /&gt;
&lt;br /&gt;
- Backup the DB (command [http://downloads3.ipbrick.com/tmp/ipbrickdb_ipb5])&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
- If there's an IPortalDoc Light, update until version 3.2, please follow this by backing up the data&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc_light --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== After the CD installation: ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- If the IPBRICK contacts version at IPBRICK &amp;lt;6 is &amp;gt;v4.3, update the IPBRICK Contacts until the existing version before the CD application&lt;br /&gt;
&lt;br /&gt;
- Install the same iPortalDoc version before the CD application (version + updates, if applicable)&lt;br /&gt;
&lt;br /&gt;
- Replace the IPBrick configuration migrated to IPBrick 6.&lt;br /&gt;
&lt;br /&gt;
- Restore the dbdoc DB [http://downloads3.ipbrick.com/tmp/ipbrickdb_ipb6]&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --dbname dbdoc          --file /home1/_work/dump_dbdoc.sql&lt;br /&gt;
&lt;br /&gt;
- If there is an iPortalDoc Light, restore the DB&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --ipdoclight --dbname dbdoc_light --file file_com_dump&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- Rebuild iPortalDoc workflow accounts:&lt;br /&gt;
    a) Definitions Menu -&amp;gt; Configuration Interface&lt;br /&gt;
    b) Poplist on the right (Menu) -&amp;gt; Workflows&lt;br /&gt;
    c) Click on the Rebuild button&lt;br /&gt;
&lt;br /&gt;
- Rebuild share &amp;quot;Access&amp;quot; and the account of Associated Emails to Documents, of iPortalDoc:&lt;br /&gt;
    a) Access Share: Definitions -&amp;gt; Configuration Interface-&amp;gt; Build Global FS&lt;br /&gt;
    b) Emails associated to documents: Definitions -&amp;gt; Configuration Interface -&amp;gt; Build Global mailFS&lt;br /&gt;
       (This task is scheduled to be executed at midnight);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Useful links: ==&lt;br /&gt;
&lt;br /&gt;
IPContacts v4.3 update to install in an IPBrick v5 [http://downloads3.ipbrick.com/ipbrick-contacts_4.3_all_IPBrick-v5.deb]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Script ipbrickdb_ipb5: [http://downloads3.ipbrick.com/ipbrickdb_ipb5]&lt;br /&gt;
&lt;br /&gt;
md5sum: 5821d88812515bd3735ef646139e7bd0&lt;br /&gt;
&lt;br /&gt;
Script ipbrickdb_ipb6: [http://downloads3.ipbrick.com/ipbrickdb_ipb6]&lt;br /&gt;
&lt;br /&gt;
md5sum: e33663806d2d0503181f12374209de8b&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6</id>
		<title>Migrating an iPortalDoc from IPBRICK 5.x to 6</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6"/>
				<updated>2014-11-26T16:24:27Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Before Migrating: ==&lt;br /&gt;
&lt;br /&gt;
- Update iPortalDoc to iPortalDoc v4.2, if the installed version is older than 4.2&lt;br /&gt;
&lt;br /&gt;
- Update IPBRICK Contacts untill version 4.3, if the installed version is older than 4.3&lt;br /&gt;
&lt;br /&gt;
- Backup the DB (command [http://downloads3.ipbrick.com/tmp/ipbrickdb_ipb5])&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
- If there's an IPortalDoc Light, update until version 3.2, please follow this by backing up the data&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc_light --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== After the CD installation: ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- If the IPBRICK contacts version at IPBRICK &amp;lt;6 is &amp;gt;v4.3, update the IPBRICK Contacts until the existing version before the CD application&lt;br /&gt;
&lt;br /&gt;
- Install the same iPortalDoc version before the CD application (version + updates, if applicable)&lt;br /&gt;
&lt;br /&gt;
- Replace the IPBrick configuration migrated to IPBrick 6.&lt;br /&gt;
&lt;br /&gt;
- Restore the dbdoc DB [http://downloads3.ipbrick.com/tmp/ipbrickdb_ipb6]&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --dbname dbdoc          --file /home1/_work/dump_dbdoc.sql&lt;br /&gt;
&lt;br /&gt;
- If there is an iPortalDoc Light, restore the DB&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --ipdoclight --dbname dbdoc_light --file file_com_dump&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- Rebuild iPortalDoc workflow accounts:&lt;br /&gt;
    a) Definitions Menu -&amp;gt; Configuration Interface&lt;br /&gt;
    b) Poplist on the right (Menu) -&amp;gt; Workflows&lt;br /&gt;
    c) Click on the Rebuild button&lt;br /&gt;
&lt;br /&gt;
- Rebuild share &amp;quot;Access&amp;quot; and the account of Associated Emails to Documents, of iPortalDoc:&lt;br /&gt;
    a) Access Share: Definitions -&amp;gt; Configuration Interface-&amp;gt; Build Global FS&lt;br /&gt;
    b) Emails associated to documents: Definitions -&amp;gt; Configuration Interface -&amp;gt; Build Global mailFS&lt;br /&gt;
       (This task is scheduled to be executed at midnight);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Useful links: ==&lt;br /&gt;
&lt;br /&gt;
IPContacts v4.3 update to install in an IPBrick v5 [http://downloads3.ipbrick.com/ipbrick-contacts_4.3_all_IPBrick-v5.deb]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scripts ipbrickdb_ipb5: [http://downloads3.ipbrick.com/ipbrickdb_ipb5]&lt;br /&gt;
&lt;br /&gt;
md5sum: 5821d88812515bd3735ef646139e7bd0&lt;br /&gt;
&lt;br /&gt;
Script ipbrickdb_ipb6: [http://downloads3.ipbrick.com/ipbrickdb_ipb6]&lt;br /&gt;
&lt;br /&gt;
md5sum: e33663806d2d0503181f12374209de8b&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6</id>
		<title>Migrating an iPortalDoc from IPBRICK 5.x to 6</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6"/>
				<updated>2014-11-26T14:47:20Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Before Migrating: ==&lt;br /&gt;
&lt;br /&gt;
- Update iPortalDoc to iPortalDoc v4.2, if the installed version is older than 4.2&lt;br /&gt;
&lt;br /&gt;
- Update IPBRICK Contacts untill version 4.3, if the installed version is older than 4.3&lt;br /&gt;
&lt;br /&gt;
- Backup the DB (command [http://downloads3.ipbrick.com/tmp/ipbrickdb_ipb5])&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
- If there's an IPortalDoc Light, update until version 3.2, please follow this by backing up the data&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc_light --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== After the CD installation: ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- If the IPBRICK contacts version at IPBRICK &amp;lt;6 is &amp;gt;v4.3, update the IPBRICK Contacts until the existing version before the CD application&lt;br /&gt;
&lt;br /&gt;
- Install the same iPortalDoc version before the CD application (version + updates, if applicable)&lt;br /&gt;
&lt;br /&gt;
- Replace the IPBrick configuration migrated to IPBrick 6.&lt;br /&gt;
&lt;br /&gt;
- Restore the dbdoc DB [http://downloads3.ipbrick.com/tmp/ipbrickdb_ipb6]&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --dbname dbdoc          --file /home1/_work/dump_dbdoc.sql&lt;br /&gt;
&lt;br /&gt;
- If there is an iPortalDoc Light, restore the DB&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --ipdoclight --dbname dbdoc_light --file file_com_dump&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- Rebuild iPortalDoc workflow accounts:&lt;br /&gt;
    a) Definitions Menu -&amp;gt; Configuration Interface&lt;br /&gt;
    b) Poplist on the right (Menu) -&amp;gt; Workflows&lt;br /&gt;
    c) Click on the Rebuild button&lt;br /&gt;
&lt;br /&gt;
- Rebuild Accesses share and Associated Emails to Documents account at iPortalDoc:&lt;br /&gt;
    a) Access Share: Definitions -&amp;gt; Configuration Interface-&amp;gt; Build Global FS&lt;br /&gt;
    b) Emails associated to documents: Definitions -&amp;gt; Configuration Interface -&amp;gt; Build Global mailFS&lt;br /&gt;
       (This task is scheduled to be executed at midnight);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Useful links: ==&lt;br /&gt;
&lt;br /&gt;
IPContacts v4.3 update to install in an IPBrick v5 [http://downloads3.ipbrick.com/ipbrick-contacts_4.3_all_IPBrick-v5.deb]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scripts ipbrickdb_ipb5: [http://downloads3.ipbrick.com/ipbrickdb_ipb5]&lt;br /&gt;
&lt;br /&gt;
md5sum: 5821d88812515bd3735ef646139e7bd0&lt;br /&gt;
&lt;br /&gt;
Script ipbrickdb_ipb6: [http://downloads3.ipbrick.com/ipbrickdb_ipb6]&lt;br /&gt;
&lt;br /&gt;
md5sum: e33663806d2d0503181f12374209de8b&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6</id>
		<title>Migrating an iPortalDoc from IPBRICK 5.x to 6</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6"/>
				<updated>2014-11-26T14:45:59Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Before Migrating: ==&lt;br /&gt;
&lt;br /&gt;
- Update iPortalDoc to iPortalDoc v4.2, if the installed version is older than 4.2&lt;br /&gt;
&lt;br /&gt;
- Update IPBRICK Contacts untill version 4.3, if the installed version is older than 4.3&lt;br /&gt;
&lt;br /&gt;
- Backup the DB (command [http://downloads3.ipbrick.com/tmp/ipbrickdb_ipb5])&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
- If there's an IPortalDoc Light, update until version 3.2, please follow this by backing up the data&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc_light --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== After the CD installation: ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- If the IPBRICK contacts version at IPBRICK &amp;lt;6 is &amp;gt;v4.3, update the IPBRICK Contacts until the existing version before the CD application&lt;br /&gt;
&lt;br /&gt;
- Install the same iPortalDoc version before the CD application (version + updates, if applicable)&lt;br /&gt;
&lt;br /&gt;
- Replace the IPBrick configuration migrated to IPBrick 6.&lt;br /&gt;
&lt;br /&gt;
- Restore the dbdoc DB [http://downloads3.ipbrick.com/tmp/ipbrickdb_ipb6]&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --dbname dbdoc          --file /home1/_work/dump_dbdoc.sql&lt;br /&gt;
&lt;br /&gt;
- If there is an iPortalDoc Light, restore the DB&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --ipdoclight --dbname dbdoc_light --file file_com_dump&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- Rebuild iPortalDoc workflow accounts:&lt;br /&gt;
    a) Definitions Menu -&amp;gt; Configuration Interface&lt;br /&gt;
    b) Poplist on the right (Menu) -&amp;gt; Workflows&lt;br /&gt;
    c) Click on the Rebuild button&lt;br /&gt;
&lt;br /&gt;
- Rebuild Accesses share and Associated Emails to Documents account at iPortalDoc:&lt;br /&gt;
    a) Access Share: Definitions -&amp;gt; Configuration Interface-&amp;gt; Build Global FS&lt;br /&gt;
    b) Emails associated to documents: Definitions -&amp;gt; Configuration Interface -&amp;gt; Build Global mailFS&lt;br /&gt;
       (This task is scheduled to be executed at midnight);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Useful links: ==&lt;br /&gt;
&lt;br /&gt;
IPContacts v4.3 update to install in an IPBrick v5&lt;br /&gt;
[http://downloads3.ipbrick.com/ipbrick-contacts_4.3_all_IPBrick-v5.deb]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scripts ipbrickdb_ipb5:&lt;br /&gt;
&lt;br /&gt;
[http://downloads3.ipbrick.com/ipbrickdb_ipb5]&lt;br /&gt;
md5sum: 5821d88812515bd3735ef646139e7bd0&lt;br /&gt;
&lt;br /&gt;
Script ipbrickdb_ipb6:&lt;br /&gt;
&lt;br /&gt;
[http://downloads3.ipbrick.com/ipbrickdb_ipb6]&lt;br /&gt;
md5sum: e33663806d2d0503181f12374209de8b&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6</id>
		<title>Migrating an iPortalDoc from IPBRICK 5.x to 6</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6"/>
				<updated>2014-11-26T14:44:34Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Before Migrating: ==&lt;br /&gt;
&lt;br /&gt;
- Update iPortalDoc to iPortalDoc v4.2, if the installed version is older than 4.2&lt;br /&gt;
&lt;br /&gt;
- Update IPBRICK Contacts untill version 4.3, if the installed version is older than 4.3&lt;br /&gt;
&lt;br /&gt;
- Backup the DB (command [http://downloads3.ipbrick.com/tmp/ipbrickdb_ipb5])&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
- If there's an IPortalDoc Light, update until version 3.2, please follow this by backing up the data&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc_light --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== After the CD installation: ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- If the IPBRICK contacts version at IPBRICK &amp;lt;6 is &amp;gt;v4.3, update the IPBRICK Contacts until the existing version before the CD application&lt;br /&gt;
&lt;br /&gt;
- Install the same iPortalDoc version before the CD application (version + updates, if applicable)&lt;br /&gt;
&lt;br /&gt;
- Replace the IPBrick configuration migrated to IPBrick 6.&lt;br /&gt;
&lt;br /&gt;
- Restore the dbdoc DB [http://downloads3.ipbrick.com/tmp/ipbrickdb_ipb6]&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --dbname dbdoc          --file /home1/_work/dump_dbdoc.sql&lt;br /&gt;
&lt;br /&gt;
- If there is an iPortalDoc Light, restore the DB&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --ipdoclight --dbname dbdoc_light --file file_com_dump&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- Rebuild iPortalDoc workflow accounts:&lt;br /&gt;
    a) Definitions Menu -&amp;gt; Configuration Interface&lt;br /&gt;
    b) Poplist on the right (Menu) -&amp;gt; Workflows&lt;br /&gt;
    c) Click on the Rebuild button&lt;br /&gt;
&lt;br /&gt;
- Rebuild Accesses share and Associated Emails to Documents account at iPortalDoc:&lt;br /&gt;
    a) Access Share: Definitions -&amp;gt; Configuration Interface-&amp;gt; Build Global FS&lt;br /&gt;
    b) Emails associated to documents: Definitions -&amp;gt; Configuration Interface -&amp;gt; Build Global mailFS&lt;br /&gt;
       (This task is scheduled to be executed at midnight);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Useful links: ==&lt;br /&gt;
&lt;br /&gt;
IPContacts v4.3 update to install in an IPBrick v5&lt;br /&gt;
[http://downloads3.ipbrick.com/ipbrick-contacts_4.3_all_IPBrick-v5.deb]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scripts ipbrickdb_ipb5 and ipbrickdb_ipb6:&lt;br /&gt;
[http://downloads3.ipbrick.com/ipbrickdb_ipb5]&lt;br /&gt;
md5sum: 5821d88812515bd3735ef646139e7bd0&lt;br /&gt;
&lt;br /&gt;
[http://downloads3.ipbrick.com/ipbrickdb_ipb6]&lt;br /&gt;
md5sum: e33663806d2d0503181f12374209de8b&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6</id>
		<title>Migrating an iPortalDoc from IPBRICK 5.x to 6</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6"/>
				<updated>2014-10-13T15:53:55Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Before Migrating: ==&lt;br /&gt;
&lt;br /&gt;
- Update iPortalDoc to iPortalDoc v4.2, if the installed version is older than 4.2&lt;br /&gt;
&lt;br /&gt;
- Update the iPortalDoc 4.2 still at an IPBRICK 5 with the enhancement update 4.2.0E94&lt;br /&gt;
&lt;br /&gt;
- Update IPBRICK Contacts untill version 4.3, if the installed version is older than 4.3&lt;br /&gt;
&lt;br /&gt;
- Backup the DB (command [http://downloads.ipbrick.com/Pack/ipbrickdb_ipb5])&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
- If there's an IPortalDoc Light, update until version 3.2, please follow this by backing up the data&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc_light --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
== After the CD installation: ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- If the IPBRICK contacts version at IPBRICK &amp;lt;6 is &amp;gt;v4.3, update the IPBRICK Contacts until the existing version before the CD application&lt;br /&gt;
&lt;br /&gt;
- Install the same iPortalDoc version before the CD application (version + updates, if applicable)&lt;br /&gt;
&lt;br /&gt;
- Restore the dbdoc DB [http://downloads.ipbrick.com/Pack/ipbrickdb_ipb6]&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --dbname dbdoc          --file /home1/_work/dump_dbdoc.sql&lt;br /&gt;
&lt;br /&gt;
- If there is an iPortalDoc Light, restore the DB&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --ipdoclight --dbname dbdoc_light --file file_com_dump&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6</id>
		<title>Migrating an iPortalDoc from IPBRICK 5.x to 6</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6"/>
				<updated>2014-10-13T15:51:48Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Before Migrating: ==&lt;br /&gt;
&lt;br /&gt;
- Update iPortalDoc to iPortalDoc v4.2, if the installed version is older than 4.2&lt;br /&gt;
&lt;br /&gt;
- Update iPortalDoc still at an IPBRICK 5 with the enhancement update 4.2.0E94&lt;br /&gt;
&lt;br /&gt;
- Update IPBRICK Contacts untill version 4.3, if the installed version is older than 4.3&lt;br /&gt;
&lt;br /&gt;
- Backup the DB (command [http://downloads.ipbrick.com/Pack/ipbrickdb_ipb5])&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
- If there's an IPortalDoc Light, update until version 3.2, please follow this by backing up the data&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc_light --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
== After the CD installation: ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- If the IPBRICK contacts version at IPBRICK &amp;lt;6 is &amp;gt;v4.3, update the IPBRICK Contacts until the existing version before the CD application&lt;br /&gt;
&lt;br /&gt;
- Install the same iPortalDoc version before the CD application (version + updates, if applicable)&lt;br /&gt;
&lt;br /&gt;
- Restore the dbdoc DB [http://downloads.ipbrick.com/Pack/ipbrickdb_ipb6]&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --dbname dbdoc          --file /home1/_work/dump_dbdoc.sql&lt;br /&gt;
&lt;br /&gt;
- If there is an iPortalDoc Light, restore the DB&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --ipdoclight --dbname dbdoc_light --file file_com_dump&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6</id>
		<title>Migrating an iPortalDoc from IPBRICK 5.x to 6</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6"/>
				<updated>2014-10-03T17:50:01Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: /* After the CD installation: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Before Migrating: ==&lt;br /&gt;
&lt;br /&gt;
- Update iPortalDoc to iPortalDoc v4.2, if the installed version is older than 4.2&lt;br /&gt;
&lt;br /&gt;
- Update IPBRICK Contacts untill version 4.3, if the installed version is older than 4.3&lt;br /&gt;
&lt;br /&gt;
- Backup the DB (command [http://downloads.ipbrick.com/Pack/ipbrickdb_ipb5])&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
- If there's an IPortalDoc Light, update until version 3.2, please follow this by backing up the data&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc_light --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
== After the CD installation: ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- If the IPBRICK contacts version at IPBRICK &amp;lt;6 is &amp;gt;v4.3, update the IPBRICK Contacts until the existing version before the CD application&lt;br /&gt;
&lt;br /&gt;
- Install the same iPortalDoc version before the CD application (version + updates, if applicable)&lt;br /&gt;
&lt;br /&gt;
- Restore the dbdoc DB [[http://downloads.ipbrick.com/Pack/ipbrickdb_ipb6]&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --dbname dbdoc          --file /home1/_work/dump_dbdoc.sql&lt;br /&gt;
&lt;br /&gt;
- If there is an iPortalDoc Light, restore the DB&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --ipdoclight --dbname dbdoc_light --file file_com_dump&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6</id>
		<title>Migrating an iPortalDoc from IPBRICK 5.x to 6</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6"/>
				<updated>2014-10-03T17:49:14Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: /* Before Migrating: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Before Migrating: ==&lt;br /&gt;
&lt;br /&gt;
- Update iPortalDoc to iPortalDoc v4.2, if the installed version is older than 4.2&lt;br /&gt;
&lt;br /&gt;
- Update IPBRICK Contacts untill version 4.3, if the installed version is older than 4.3&lt;br /&gt;
&lt;br /&gt;
- Backup the DB (command [http://downloads.ipbrick.com/Pack/ipbrickdb_ipb5])&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
- If there's an IPortalDoc Light, update until version 3.2, please follow this by backing up the data&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc_light --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
== After the CD installation: ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- If the IPBRICK contacts version at IPBRICK &amp;lt;6 is &amp;gt;v4.3, update the IPBRICK Contacts until the existing version before the CD application&lt;br /&gt;
&lt;br /&gt;
- Install the same iPortalDoc version before the CD application (version + updates, if applicable)&lt;br /&gt;
&lt;br /&gt;
- Restore the dbdoc DB&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --dbname dbdoc          --file /home1/_work/dump_dbdoc.sql&lt;br /&gt;
&lt;br /&gt;
- If there is an iPortalDoc Light, restore the DB&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --ipdoclight --dbname dbdoc_light --file file_com_dump&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6</id>
		<title>Migrating an iPortalDoc from IPBRICK 5.x to 6</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6"/>
				<updated>2014-10-03T17:24:28Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: /* After the CD installation: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Before Migrating: ==&lt;br /&gt;
&lt;br /&gt;
- Update iPortalDoc to iPortalDoc v4.2, if the installed version is older than 4.2&lt;br /&gt;
&lt;br /&gt;
- Update IPBRICK Contacts untill version 4.3, if the installed version is older than 4.3&lt;br /&gt;
&lt;br /&gt;
- Backup the DB (command ipbrickdb_ipb5)&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
- If there's an IPortalDoc Light, update until version 3.2, please follow this by backing up the data&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc_light --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
== After the CD installation: ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- If the IPBRICK contacts version at IPBRICK &amp;lt;6 is &amp;gt;v4.3, update the IPBRICK Contacts until the existing version before the CD application&lt;br /&gt;
&lt;br /&gt;
- Install the same iPortalDoc version before the CD application (version + updates, if applicable)&lt;br /&gt;
&lt;br /&gt;
- Restore the dbdoc DB&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --dbname dbdoc          --file /home1/_work/dump_dbdoc.sql&lt;br /&gt;
&lt;br /&gt;
- If there is an iPortalDoc Light, restore the DB&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --ipdoclight --dbname dbdoc_light --file file_com_dump&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6</id>
		<title>Migrating an iPortalDoc from IPBRICK 5.x to 6</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6"/>
				<updated>2014-10-03T16:22:17Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: /* Before Migrating: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Before Migrating: ==&lt;br /&gt;
&lt;br /&gt;
- Update iPortalDoc to iPortalDoc v4.2, if the installed version is older than 4.2&lt;br /&gt;
&lt;br /&gt;
- Update IPBRICK Contacts untill version 4.3, if the installed version is older than 4.3&lt;br /&gt;
&lt;br /&gt;
- Backup the DB (command ipbrickdb_ipb5)&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
- If there's an IPortalDoc Light, update until version 3.2, please follow this by backing up the data&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc_light --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
== After the CD installation: ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- If the IPBRICK contacts version at IPBRICK &amp;lt;6 is &amp;gt;v4.3, update the IPBRICK Contacts until the existing version before the CD application&lt;br /&gt;
&lt;br /&gt;
- Install the same iPortalDoc version before the CD application (version + updates, if applicable)&lt;br /&gt;
&lt;br /&gt;
- Restore the dbdoc DB&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --dbname dbdoc          --file /home1/_work/dump_dbdoc.sql&lt;br /&gt;
&lt;br /&gt;
- If there is an iPortalDoc Light, restore the DB&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --ipdoclight --dbname dbdoc_leve --file file_com_dump&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6</id>
		<title>Migrating an iPortalDoc from IPBRICK 5.x to 6</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6"/>
				<updated>2014-10-03T16:22:00Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: /* After the CD installation: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Before Migrating: ==&lt;br /&gt;
&lt;br /&gt;
- Update iPortalDoc to iPortalDoc v4.2, if the installed version is older than 4.2&lt;br /&gt;
&lt;br /&gt;
- Update IPBRICK Contacts untill version 4.3, if the installed version is older than 4.3&lt;br /&gt;
&lt;br /&gt;
- Backup the DB (command ipbrickdb_ipb5)&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
- If there's an IPortalDoc Light, update until version 3.2, please follow this by backing up the data&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc_light --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
== After the CD installation: ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- If the IPBRICK contacts version at IPBRICK &amp;lt;6 is &amp;gt;v4.3, update the IPBRICK Contacts until the existing version before the CD application&lt;br /&gt;
&lt;br /&gt;
- Install the same iPortalDoc version before the CD application (version + updates, if applicable)&lt;br /&gt;
&lt;br /&gt;
- Restore the dbdoc DB&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --dbname dbdoc          --file /home1/_work/dump_dbdoc.sql&lt;br /&gt;
&lt;br /&gt;
- If there is an iPortalDoc Light, restore the DB&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --ipdoclight --dbname dbdoc_leve --file file_com_dump&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6</id>
		<title>Migrating an iPortalDoc from IPBRICK 5.x to 6</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6"/>
				<updated>2014-10-03T16:15:11Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: /* Before Migrating: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Before Migrating: ==&lt;br /&gt;
&lt;br /&gt;
- Update iPortalDoc to iPortalDoc v4.2, if the installed version is older than 4.2&lt;br /&gt;
&lt;br /&gt;
- Update IPBRICK Contacts untill version 4.3, if the installed version is older than 4.3&lt;br /&gt;
&lt;br /&gt;
- Backup the DB (command ipbrickdb_ipb5)&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
- If there's an IPortalDoc Light, update until version 3.2, please follow this by backing up the data&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc_light --file dump_file_path&lt;br /&gt;
&lt;br /&gt;
== After the CD installation: ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- If the IPBRICK contacts version at IPBRICK &amp;lt;6 is &amp;gt;v4.3, update the IPBRICK Contacts until the existing version before the CD application&lt;br /&gt;
&lt;br /&gt;
- Install the same iPortalDoc version before the CD application (version + updates if applicable)&lt;br /&gt;
&lt;br /&gt;
- Restore the dbdoc DB&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --dbname dbdoc          --file /home1/_work/dump_dbdoc.sql&lt;br /&gt;
&lt;br /&gt;
- If there is an iPortalDoc Light, restore the DB&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --ipdoclight --dbname dbdoc_leve --file file_com_dump&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6</id>
		<title>Migrating an iPortalDoc from IPBRICK 5.x to 6</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6"/>
				<updated>2014-10-03T16:11:30Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: /* Before Migrating: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Before Migrating: ==&lt;br /&gt;
&lt;br /&gt;
- Update iPortalDoc to iPortalDoc v4.2, if the installed version is older than 4.2&lt;br /&gt;
&lt;br /&gt;
- Update IPBRICK Contacts untill version 4.3, if the installed version is older than 4.3&lt;br /&gt;
&lt;br /&gt;
- Backup the DB (command ipbrickdb_ipb5)&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc --file ficheiro_para_onde_vai_dump&lt;br /&gt;
&lt;br /&gt;
- If there's an IPortalDoc Light, update until version 3.2, please follow this by backing up the data&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc_leve --file ficheiro_para_onde_vai_dump&lt;br /&gt;
&lt;br /&gt;
== After the CD installation: ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- If the IPBRICK contacts version at IPBRICK &amp;lt;6 is &amp;gt;v4.3, update the IPBRICK Contacts until the existing version before the CD application&lt;br /&gt;
&lt;br /&gt;
- Install the same iPortalDoc version before the CD application (version + updates if applicable)&lt;br /&gt;
&lt;br /&gt;
- Restore the dbdoc DB&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --dbname dbdoc          --file /home1/_work/dump_dbdoc.sql&lt;br /&gt;
&lt;br /&gt;
- If there is an iPortalDoc Light, restore the DB&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --ipdoclight --dbname dbdoc_leve --file file_com_dump&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6</id>
		<title>Migrating an iPortalDoc from IPBRICK 5.x to 6</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Migrating_an_iPortalDoc_from_IPBRICK_5.x_to_6"/>
				<updated>2014-10-03T16:09:37Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: Created page with &amp;quot; == Before Migrating: ==  - Update iPortalDoc to iPortalDoc v4.2, if the installed version is older than 4.2  - Update IPBRICK Contacts untill version 4.3, if the installed ve...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Before Migrating: ==&lt;br /&gt;
&lt;br /&gt;
- Update iPortalDoc to iPortalDoc v4.2, if the installed version is older than 4.2&lt;br /&gt;
&lt;br /&gt;
- Update IPBRICK Contacts untill version 4.3, if the installed version is older than 4.3&lt;br /&gt;
&lt;br /&gt;
- Backup the DB (command ipbrickdb_ipb5)&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc --file ficheiro_para_onde_vai_dump&lt;br /&gt;
&lt;br /&gt;
- IPortalDoc Light se existir, atualizar até versão v3.2, seguido de backup&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb5 --dump --dbname dbdoc_leve --file ficheiro_para_onde_vai_dump&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== After the CD installation: ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- If the IPBRICK contacts version at IPBRICK &amp;lt;6 is &amp;gt;v4.3, update the IPBRICK Contacts until the existing version before the CD application&lt;br /&gt;
&lt;br /&gt;
- Install the same iPortalDoc version before the CD application (version + updates if applicable)&lt;br /&gt;
&lt;br /&gt;
- Restore the dbdoc DB&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --dbname dbdoc          --file /home1/_work/dump_dbdoc.sql&lt;br /&gt;
&lt;br /&gt;
- If there is an iPortalDoc Light, restore the DB&lt;br /&gt;
&lt;br /&gt;
Eg:&lt;br /&gt;
 ./ipbrickdb_ipb6  --restore --ipdoclight --dbname dbdoc_leve --file file_com_dump&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/CAFE</id>
		<title>CAFE</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/CAFE"/>
				<updated>2014-10-02T08:28:42Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''IPBRICK.CAFE is the IPBRICK’s Enterprise Social Network that provides a common virtual space for co-workers to exchange useful information and enhance relationships for increased productivity.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
== '''F.A.Q.''' ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= The user accounts created in IPBRICK.I -&amp;gt; Users Management do not appear in the CAFE online/offline list =&lt;br /&gt;
&lt;br /&gt;
Users status are only displayed in CAFE &amp;quot;users list&amp;quot; after their first login into the CAFE.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= How does one configure CAFE's administration rights, so as to add polls, news items etc.? =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In IPBrick.GT &amp;gt;&amp;gt; Ucoip Page, you can configure &amp;quot;Users with administrative privileges&amp;quot; .&lt;br /&gt;
&lt;br /&gt;
The default user to have privileges is &amp;quot;Administrator&amp;quot;, but dont login as Administrator (LDAP), this is wrong, you have to login as admin, not administrator. Despite Administrator being listed.&lt;br /&gt;
&lt;br /&gt;
Any users you add as &amp;quot;Users with administrative privileges&amp;quot; do not automatically get Administrative rights if they have not logged in. You have to login at Cafe and promote them from user to Administrator.&lt;br /&gt;
&lt;br /&gt;
Then the user then has to logout, &amp;quot;*Clear the browser cache*&amp;quot;, then log back in and he will have administrative privileges&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Vmware_tools_for_ipbrick_5.5_or_later_versions</id>
		<title>Vmware tools for ipbrick 5.5 or later versions</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Vmware_tools_for_ipbrick_5.5_or_later_versions"/>
				<updated>2014-10-01T13:25:53Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: /* Procedure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Procedure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT NOTE''': This procedure is '''only''' for IPBrick version 5.5 or later versions!&lt;br /&gt;
&lt;br /&gt;
1 - Activate the VMWare installation via VSphere&lt;br /&gt;
&lt;br /&gt;
 &amp;quot;Guest -&amp;gt; Install/Upgrade VMware tools&amp;quot;&lt;br /&gt;
 (this will create a virtual cd with vmware-tools)&lt;br /&gt;
 mount /dev/cdrom1 /cdrom (note: it can be cdrom1,2,3...)&lt;br /&gt;
 cp /cdrom/VMwareTools-8.3.7-341836.tar.gz /root&lt;br /&gt;
&lt;br /&gt;
2 - Prepare and decompress the content for installation.&lt;br /&gt;
&lt;br /&gt;
'''NOTE''': As an example we use the VMwareTools-8.3.7 version, but this procedure applies to other versions as well.&lt;br /&gt;
&lt;br /&gt;
 cd /root &lt;br /&gt;
 tar xvzf VMwareTools-8.3.7-341836.tar.gz&lt;br /&gt;
&lt;br /&gt;
3 - Execute the installation script&lt;br /&gt;
&lt;br /&gt;
 cd vmware-tools-distrib/&lt;br /&gt;
 ./vmware-install.pl&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Vmware_tools_for_ipbrick_5.5_or_later_versions</id>
		<title>Vmware tools for ipbrick 5.5 or later versions</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Vmware_tools_for_ipbrick_5.5_or_later_versions"/>
				<updated>2014-10-01T13:22:47Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: Created page with &amp;quot; == Procedure ==   '''IMPORTANT NOTE''': This procedure is '''only''' for IPBrick version 5.5 or later versions!  1 - Activate the VMWare installation via VSphere   &amp;quot;Guest -&amp;gt;...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Procedure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT NOTE''': This procedure is '''only''' for IPBrick version 5.5 or later versions!&lt;br /&gt;
&lt;br /&gt;
1 - Activate the VMWare installation via VSphere&lt;br /&gt;
&lt;br /&gt;
 &amp;quot;Guest -&amp;gt; Install/Upgrade VMware tools&amp;quot;&lt;br /&gt;
 (this will create a virtual cd with vmware-tools)&lt;br /&gt;
 mount /dev/cdrom1 /cdrom (note: it can be cdrom1,2,3...)&lt;br /&gt;
 cp /cdrom/VMwareTools-8.3.7-341836.tar.gz /root&lt;br /&gt;
&lt;br /&gt;
2 - Prepare and decompress the content for installation.&lt;br /&gt;
&lt;br /&gt;
'''NOTE''': As an example we use the VMwareTools-8.3.7 version, but this procedure applies to other versions as well.&lt;br /&gt;
&lt;br /&gt;
 cd /root &lt;br /&gt;
 tar xvzf VMwareTools-8.3.7-341836.tar.gz&lt;br /&gt;
&lt;br /&gt;
4 - Execute the installation script&lt;br /&gt;
&lt;br /&gt;
 cd vmware-tools-distrib/&lt;br /&gt;
 ./vmware-install.pl&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Registering_Phones_with_Open-VPN</id>
		<title>Registering Phones with Open-VPN</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Registering_Phones_with_Open-VPN"/>
				<updated>2014-09-11T10:03:38Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''1 - Introduction'''&lt;br /&gt;
&lt;br /&gt;
This document aims to guide through the process of registering phones, in IP-&lt;br /&gt;
Brick, via OpenVPN (VPN-SSL).&lt;br /&gt;
NOTE: IPBRICK v6.0 enables you to use VOIP TLS certificates, no longer&lt;br /&gt;
making it necessary to use SSL-VPN to register phones - it’s simpler to use TLS&lt;br /&gt;
certificates, equally safe, lighter in terms of traffic and simpler to set up.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''2 - Registering Phones'''&lt;br /&gt;
&lt;br /&gt;
Please follow this procedure:&lt;br /&gt;
&lt;br /&gt;
1. VPN SSL Service:&lt;br /&gt;
&lt;br /&gt;
(a) Activate the VPN-SSL: Advanced Configurations &amp;gt; System &amp;gt; Services&lt;br /&gt;
&lt;br /&gt;
(b) Configure the VPN-SSL: IPBrick .C &amp;gt; VPN &amp;gt; SSL&lt;br /&gt;
&lt;br /&gt;
(c) Use UDP (manufacturer’s confirmation is required)&lt;br /&gt;
&lt;br /&gt;
(d) Create a phone certificate (eg. PhoneCert001) and download the file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Create the phone’s account in IPBrick:&lt;br /&gt;
&lt;br /&gt;
IPBrick.I &amp;gt; Machines Management (Insert)&lt;br /&gt;
&lt;br /&gt;
*use a strong password&lt;br /&gt;
&lt;br /&gt;
3. Supress the .key file password&lt;br /&gt;
&lt;br /&gt;
Linux (recommended!):&lt;br /&gt;
&lt;br /&gt;
 #openssl rsa -in phoneCert001.key -out /NEW/client.key&lt;br /&gt;
 Windows - you may use the Cygwin app:&lt;br /&gt;
 $openssl rsa -in phoneCert001.key -out ../NEW/client.key&lt;br /&gt;
&lt;br /&gt;
IPBrick Console:&lt;br /&gt;
&lt;br /&gt;
 openssl rsa -in /etc/openvpn/1/keys/phoneCert001.key -out /tmp/client.key&lt;br /&gt;
 **download the certificate file \\ipbrick_IP\tmp\client.key**&lt;br /&gt;
&lt;br /&gt;
4. Upgrade the phone’s firmware;&lt;br /&gt;
&lt;br /&gt;
5. Alter VPN SSL file certificates;&lt;br /&gt;
&lt;br /&gt;
Model for the IPBrick certificate:&lt;br /&gt;
&lt;br /&gt;
 /phoneCert001.ovpn&lt;br /&gt;
 /ca-server-mail.crt&lt;br /&gt;
 /phoneCert001.crt&lt;br /&gt;
 /phoneCert001.key&lt;br /&gt;
&lt;br /&gt;
Model for the imported certificate:&lt;br /&gt;
&lt;br /&gt;
 /vpn.cnf (rename and adjust the phoneCert001.ovpn file)&lt;br /&gt;
 /Keys/ (create directory)&lt;br /&gt;
 /keys/ca.crt (rename and move the ca-server-mail.crt file)&lt;br /&gt;
 /keys/client.crt (rename and move the phoneCert001.crt file)&lt;br /&gt;
 /keys/client.key (copy the client.key file to his directory)&lt;br /&gt;
&lt;br /&gt;
6. Validate the vpn.cnf contents according to your phone’s model - you may&lt;br /&gt;
find additional info at the manufacturer’s website (examples in the appendixes&lt;br /&gt;
of this document);&lt;br /&gt;
&lt;br /&gt;
7. Alter the vpn.cnf file content:&lt;br /&gt;
&lt;br /&gt;
 ..&lt;br /&gt;
 ca /yealink/config/openvpn/keys/ca.crt&lt;br /&gt;
 cert /yealink/config/openvpn/keys/client.crt&lt;br /&gt;
 key /yealink/config/openvpn/keys/client.key&lt;br /&gt;
 ..&lt;br /&gt;
&lt;br /&gt;
8. Compact the certificate and name it: openvpn.tar&lt;br /&gt;
openvpn.tar {vpn.cnf + Keys}&lt;br /&gt;
&lt;br /&gt;
9. Access the phone’s web interface&lt;br /&gt;
&lt;br /&gt;
- Upload the openvpn.tar file&lt;br /&gt;
&lt;br /&gt;
- Enable the VPN functionality&lt;br /&gt;
&lt;br /&gt;
- Apply configurations&lt;br /&gt;
&lt;br /&gt;
10. Other phone configurations:&lt;br /&gt;
&lt;br /&gt;
- Ensure that you have access to the destination public IP set to&lt;br /&gt;
the openvpn connection&lt;br /&gt;
&lt;br /&gt;
- Configure a SIP phone account and direct the registry to the&lt;br /&gt;
IPBrick internal IP (eth0)&lt;br /&gt;
&lt;br /&gt;
- Validate the operation of the VPN - when connected, the phone’s&lt;br /&gt;
screen displays a ’VPN’ TAG&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Appendix 1'''&lt;br /&gt;
&lt;br /&gt;
Yealink specifications for the vpn.cnf file:&lt;br /&gt;
&lt;br /&gt;
 -----------(T21P vpn.cnf) -----------&lt;br /&gt;
 client&lt;br /&gt;
 setenv SERVER_POLL_TIMEOUT 4&lt;br /&gt;
 nobind&lt;br /&gt;
 remote 41.63.164.103 1194 udp&lt;br /&gt;
 dev tun&lt;br /&gt;
 dev-type tun&lt;br /&gt;
 ns-cert-type server&lt;br /&gt;
 reneg-sec 604800&lt;br /&gt;
 sndbuf 100000&lt;br /&gt;
 rcvbuf 100000&lt;br /&gt;
 auth-retry nointeract&lt;br /&gt;
 comp-lzo no&lt;br /&gt;
 verb 3&lt;br /&gt;
 ca /yealink/config/openvpn/keys/ca.crt&lt;br /&gt;
 cert /yealink/config/openvpn/keys/client.crt&lt;br /&gt;
 key /yealink/config/openvpn/keys/client.key&lt;br /&gt;
 ----------------------------------------&lt;br /&gt;
&lt;br /&gt;
 http://www.yealink.com/Upload/T2X/20131125/OpenVPN_Feature_on_Yealink_IP_Phones.pdf&lt;br /&gt;
&lt;br /&gt;
 http://phone_IP/openvpn.tar&lt;br /&gt;
&lt;br /&gt;
Edit the vpn.cnf file:&lt;br /&gt;
&lt;br /&gt;
The directories vary between different IP phone models:&lt;br /&gt;
&lt;br /&gt;
 /yealink/config/ for SIP-T2xP IP phones&lt;br /&gt;
 /phone/config/ for SIP-T3xG IP phones&lt;br /&gt;
 /config/ for SIP-T21P, SIP-T4x and VP530 IP phones&lt;br /&gt;
&lt;br /&gt;
We present path examples to the certificate files for SIP-T2xP phones:&lt;br /&gt;
 ca /yealink/config/openvpn/keys/ca.crt&lt;br /&gt;
 cert /yealink/config/openvpn/keys/client.crt&lt;br /&gt;
 key /yealink/config/openvpn/keys/client.key&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Appendix 2'''&lt;br /&gt;
&lt;br /&gt;
At this link you will find a video example of a VPN-SSl configuration.&lt;br /&gt;
&lt;br /&gt;
 https://www.youtube.com/watch?v=fCOScMG0utM&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Registering_Phones_with_Open-VPN</id>
		<title>Registering Phones with Open-VPN</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Registering_Phones_with_Open-VPN"/>
				<updated>2014-09-11T09:59:30Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''1 - Introduction'''&lt;br /&gt;
&lt;br /&gt;
This document aims to guide through the process of registering phones, in IP-&lt;br /&gt;
Brick, via OpenVPN (VPN-SSL).&lt;br /&gt;
NOTE: IPBRICK v6.0 enables you to use VOIP TLS certificates, no longer&lt;br /&gt;
making it necessary to use SSL-VPN to register phones - it’s simpler to use TLS&lt;br /&gt;
certificates, equally safe, lighter in terms of traffic and simpler to set up.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''2 - Registering Phones'''&lt;br /&gt;
&lt;br /&gt;
Please follow this procedure:&lt;br /&gt;
&lt;br /&gt;
1. VPN SSL Service:&lt;br /&gt;
&lt;br /&gt;
(a) Activate the VPN-SSL: Advanced Configurations &amp;gt; System &amp;gt; Services&lt;br /&gt;
&lt;br /&gt;
(b) Configure the VPN-SSL: IPBrick .C &amp;gt; VPN &amp;gt; SSL&lt;br /&gt;
&lt;br /&gt;
(c) Use UDP (manufacturer’s confirmation is required)&lt;br /&gt;
&lt;br /&gt;
(d) Create a phone certificate (eg. PhoneCert001) and download the file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Create the phone’s account in IPBrick:&lt;br /&gt;
&lt;br /&gt;
IPBrick.I &amp;gt; Machines Management (Insert)&lt;br /&gt;
&lt;br /&gt;
*use a strong password&lt;br /&gt;
&lt;br /&gt;
3. Supress the .key file password&lt;br /&gt;
&lt;br /&gt;
Linux (recommended!):&lt;br /&gt;
&lt;br /&gt;
 #openssl rsa -in phoneCert001.key -out /NEW/client.key&lt;br /&gt;
 Windows - you may use the Cygwin app:&lt;br /&gt;
 $openssl rsa -in phoneCert001.key -out ../NEW/client.key&lt;br /&gt;
&lt;br /&gt;
IPBrick Console:&lt;br /&gt;
&lt;br /&gt;
 openssl rsa -in /etc/openvpn/1/keys/phoneCert001.key -out /tmp/client.key&lt;br /&gt;
 **download the certificate file \\ipbrick_IP\tmp\client.key**&lt;br /&gt;
&lt;br /&gt;
4. Upgrade the phone’s firmware;&lt;br /&gt;
&lt;br /&gt;
5. Alter VPN SSL file certificates;&lt;br /&gt;
&lt;br /&gt;
Model for the IPBrick certificate:&lt;br /&gt;
&lt;br /&gt;
 /phoneCert001.ovpn&lt;br /&gt;
 /ca-server-mail.crt&lt;br /&gt;
 /phoneCert001.crt&lt;br /&gt;
 /phoneCert001.key&lt;br /&gt;
&lt;br /&gt;
Model for the imported certificate:&lt;br /&gt;
&lt;br /&gt;
 /vpn.cnf (rename and adjust the phoneCert001.ovpn file)&lt;br /&gt;
 /Keys/ (create directory)&lt;br /&gt;
 /keys/ca.crt (rename and move the ca-server-mail.crt file)&lt;br /&gt;
 /keys/client.crt (rename and move the phoneCert001.crt file)&lt;br /&gt;
 /keys/client.key (copy the client.key file to his directory)&lt;br /&gt;
&lt;br /&gt;
6. Validate the vpn.cnf contents according to your phone’s model - you may&lt;br /&gt;
find additional info at the manufacturer’s website (examples in the appendixes&lt;br /&gt;
of this document);&lt;br /&gt;
&lt;br /&gt;
7. Alter the vpn.cnf file content:&lt;br /&gt;
&lt;br /&gt;
 ..&lt;br /&gt;
 ca /yealink/config/openvpn/keys/ca.crt&lt;br /&gt;
 cert /yealink/config/openvpn/keys/client.crt&lt;br /&gt;
 key /yealink/config/openvpn/keys/client.key&lt;br /&gt;
 ..&lt;br /&gt;
&lt;br /&gt;
8. Compact the certificate and name it: openvpn.tar&lt;br /&gt;
openvpn.tar {vpn.cnf + Keys}&lt;br /&gt;
&lt;br /&gt;
9. Access the phone’s web interface&lt;br /&gt;
&lt;br /&gt;
- Upload the openvpn.tar file&lt;br /&gt;
&lt;br /&gt;
- Enable the VPN functionality&lt;br /&gt;
&lt;br /&gt;
- Apply configurations&lt;br /&gt;
&lt;br /&gt;
10. Other phone configurations:&lt;br /&gt;
&lt;br /&gt;
- Ensure that you have access to the destination public IP set to&lt;br /&gt;
the openvpn connection&lt;br /&gt;
&lt;br /&gt;
- Configure a SIP phone account and direct the registry to the&lt;br /&gt;
IPBrick internal IP (eth0)&lt;br /&gt;
&lt;br /&gt;
- Validate the operation of the VPN - when connected, the phone’s&lt;br /&gt;
screen displays a ’VPN’ TAG&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Appendix 1'''&lt;br /&gt;
&lt;br /&gt;
Yealink specifications for the vpn.cnf file:&lt;br /&gt;
&lt;br /&gt;
 -----------(T21P vpn.cnf) -----------&lt;br /&gt;
 client&lt;br /&gt;
 setenv SERVER_POLL_TIMEOUT 4&lt;br /&gt;
 nobind&lt;br /&gt;
 remote 41.63.164.103 1194 udp&lt;br /&gt;
 dev tun&lt;br /&gt;
 dev-type tun&lt;br /&gt;
 ns-cert-type server&lt;br /&gt;
 reneg-sec 604800&lt;br /&gt;
 sndbuf 100000&lt;br /&gt;
 rcvbuf 100000&lt;br /&gt;
 auth-retry nointeract&lt;br /&gt;
 comp-lzo no&lt;br /&gt;
 verb 3&lt;br /&gt;
 ca /yealink/config/openvpn/keys/ca.crt&lt;br /&gt;
 cert /yealink/config/openvpn/keys/client.crt&lt;br /&gt;
 key /yealink/config/openvpn/keys/client.key&lt;br /&gt;
 ----------------------------------------&lt;br /&gt;
&lt;br /&gt;
 http://www.yealink.com/Upload/T2X/20131125/OpenVPN_Feature_on_Yealink_IP_Phones.pdf&lt;br /&gt;
&lt;br /&gt;
 http://phone_IP/openvpn.tar&lt;br /&gt;
&lt;br /&gt;
Edit the vpn.cnf file:&lt;br /&gt;
&lt;br /&gt;
The directories vary between different IP phone models:&lt;br /&gt;
&lt;br /&gt;
 /yealink/config/ for SIP-T2xP IP phones&lt;br /&gt;
 /phone/config/ for SIP-T3xG IP phones&lt;br /&gt;
 /config/ for SIP-T21P, SIP-T4x and VP530 IP phones&lt;br /&gt;
&lt;br /&gt;
We present path examples to the certificate files for SIP-T2xP phones:&lt;br /&gt;
 ca /yealink/config/openvpn/keys/ca.crt&lt;br /&gt;
 cert /yealink/config/openvpn/keys/client.crt&lt;br /&gt;
 key /yealink/config/openvpn/keys/client.key&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Appendix 2'''&lt;br /&gt;
&lt;br /&gt;
At this link you will find a video example of a VPN-SS&lt;br /&gt;
&lt;br /&gt;
 https://www.youtube.com/watch?v=fCOScMG0utM&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Registering_Phones_with_Open-VPN</id>
		<title>Registering Phones with Open-VPN</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Registering_Phones_with_Open-VPN"/>
				<updated>2014-09-11T09:36:04Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: Created page with &amp;quot;'''1 - Introduction'''  This document aims to guide through the process of registering phones, in IP- Brick, via OpenVPN (VPN-SSL). NOTE: IPBRICK v6.0 enables you to use VOIP...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''1 - Introduction'''&lt;br /&gt;
&lt;br /&gt;
This document aims to guide through the process of registering phones, in IP-&lt;br /&gt;
Brick, via OpenVPN (VPN-SSL).&lt;br /&gt;
NOTE: IPBRICK v6.0 enables you to use VOIP TLS certificates, no longer&lt;br /&gt;
making it necessary to use SSL-VPN to register phones - it’s simpler to use TLS&lt;br /&gt;
certificates, equally safe, lighter in terms of traffic and simpler to set up.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''2 - Registering Phones'''&lt;br /&gt;
&lt;br /&gt;
Please follow this procedure:&lt;br /&gt;
&lt;br /&gt;
1. VPN SSL Service:&lt;br /&gt;
&lt;br /&gt;
(a) Activate the VPN-SSL: Advanced Configurations &amp;gt; System &amp;gt; Services&lt;br /&gt;
&lt;br /&gt;
(b) Configure the VPN-SSL: IPBrick .C &amp;gt; VPN &amp;gt; SSL&lt;br /&gt;
&lt;br /&gt;
(c) Use UDP (manufacturer’s confirmation is required)&lt;br /&gt;
&lt;br /&gt;
(d) Create a phone certificate (eg. PhoneCert001) and download the file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Create the phone’s account in IPBrick:&lt;br /&gt;
&lt;br /&gt;
IPBrick.I &amp;gt; Machines Management (Insert)&lt;br /&gt;
&lt;br /&gt;
*use a strong password&lt;br /&gt;
&lt;br /&gt;
3. Supress the .key file password&lt;br /&gt;
&lt;br /&gt;
Linux (recommended!):&lt;br /&gt;
&lt;br /&gt;
 #openssl rsa -in phoneCert001.key -out /NEW/client.key&lt;br /&gt;
 Windows - you may use the Cygwin app:&lt;br /&gt;
 $openssl rsa -in phoneCert001.key -out ../NEW/client.key&lt;br /&gt;
&lt;br /&gt;
IPBrick Console:&lt;br /&gt;
&lt;br /&gt;
 openssl rsa -in /etc/openvpn/1/keys/phoneCert001.key -out /tmp/client.key&lt;br /&gt;
 **download the certificate file \\ipbrick_IP\tmp\client.key**&lt;br /&gt;
&lt;br /&gt;
4. Upgrade the phone’s firmware;&lt;br /&gt;
&lt;br /&gt;
5. Alter VPN SSL file certificates;&lt;br /&gt;
&lt;br /&gt;
Model for the IPBrick certificate:&lt;br /&gt;
&lt;br /&gt;
 /phoneCert001.ovpn&lt;br /&gt;
 /ca-server-mail.crt&lt;br /&gt;
 /phoneCert001.crt&lt;br /&gt;
 /phoneCert001.key&lt;br /&gt;
&lt;br /&gt;
Model for the imported certificate:&lt;br /&gt;
&lt;br /&gt;
 /vpn.cnf (rename and adjust the phoneCert001.ovpn file)&lt;br /&gt;
 /Keys/ (create directory)&lt;br /&gt;
 /keys/ca.crt (rename and move the ca-server-mail.crt file)&lt;br /&gt;
 /keys/client.crt (rename and move the phoneCert001.crt file)&lt;br /&gt;
 /keys/client.key (copy the client.key file to his directory)&lt;br /&gt;
&lt;br /&gt;
6. Validate the vpn.cnf contents according to your phone’s model - you may&lt;br /&gt;
find additional info at the manufacturer’s website (examples in the appendixes&lt;br /&gt;
of this document);&lt;br /&gt;
&lt;br /&gt;
7. Alter the vpn.cnf file content:&lt;br /&gt;
&lt;br /&gt;
 ..&lt;br /&gt;
 ca /yealink/config/openvpn/keys/ca.crt&lt;br /&gt;
 cert /yealink/config/openvpn/keys/client.crt&lt;br /&gt;
 key /yealink/config/openvpn/keys/client.key&lt;br /&gt;
 ..&lt;br /&gt;
&lt;br /&gt;
8. Compact the certificate and name it: openvpn.tar&lt;br /&gt;
openvpn.tar {vpn.cnf + Keys}&lt;br /&gt;
&lt;br /&gt;
9. Access the phone’s web interface&lt;br /&gt;
&lt;br /&gt;
- Upload the openvpn.tar file&lt;br /&gt;
&lt;br /&gt;
- Enable the VPN functionality&lt;br /&gt;
&lt;br /&gt;
- Apply configurations&lt;br /&gt;
&lt;br /&gt;
10. Other phone configurations:&lt;br /&gt;
&lt;br /&gt;
- Ensure that you have access to the destination public IP set to&lt;br /&gt;
the openvpn connection&lt;br /&gt;
&lt;br /&gt;
- Configure a SIP phone account and direct the registry to the&lt;br /&gt;
IPBrick internal IP (eth0)&lt;br /&gt;
&lt;br /&gt;
- Validate the operation of the VPN - when connected, the phone’s&lt;br /&gt;
screen displays a ’VPN’ TAG&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Appendix 1'''&lt;br /&gt;
&lt;br /&gt;
Yealink specifications for the vpn.cnf file:&lt;br /&gt;
&lt;br /&gt;
 -----------(T21P vpn.cnf) -----------&lt;br /&gt;
 client&lt;br /&gt;
 setenv SERVER_POLL_TIMEOUT 4&lt;br /&gt;
 nobind&lt;br /&gt;
 remote 41.63.164.103 1194 udp&lt;br /&gt;
 dev tun&lt;br /&gt;
 dev-type tun&lt;br /&gt;
 ns-cert-type server&lt;br /&gt;
 reneg-sec 604800&lt;br /&gt;
 sndbuf 100000&lt;br /&gt;
 rcvbuf 100000&lt;br /&gt;
 auth-retry nointeract&lt;br /&gt;
 comp-lzo no&lt;br /&gt;
 verb 3&lt;br /&gt;
 ca /yealink/config/openvpn/keys/ca.crt&lt;br /&gt;
 cert /yealink/config/openvpn/keys/client.crt&lt;br /&gt;
 key /yealink/config/openvpn/keys/client.key&lt;br /&gt;
 ----------------------------------------&lt;br /&gt;
&lt;br /&gt;
 http://www.yealink.com/Upload/T2X/20131125/OpenVPN_Feature_on_Yealink_IP_Phones.pdf&lt;br /&gt;
&lt;br /&gt;
 http://phone_IP/openvpn.tar&lt;br /&gt;
&lt;br /&gt;
Edit the vpn.cnf file:&lt;br /&gt;
&lt;br /&gt;
The directories vary between different IP phone models:&lt;br /&gt;
&lt;br /&gt;
 /yealink/config/ for SIP-T2xP IP phones&lt;br /&gt;
 /phone/config/ for SIP-T3xG IP phones&lt;br /&gt;
 /config/ for SIP-T21P, SIP-T4x and VP530 IP phones&lt;br /&gt;
&lt;br /&gt;
We present path examples to the certificate files for SIP-T2xP phones:&lt;br /&gt;
 ca /yealink/config/openvpn/keys/ca.crt&lt;br /&gt;
 cert /yealink/config/openvpn/keys/client.crt&lt;br /&gt;
 key /yealink/config/openvpn/keys/client.key&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Appendix 2'''&lt;br /&gt;
&lt;br /&gt;
At this link you will find a video example of a VPN-SS&lt;br /&gt;
&lt;br /&gt;
[https://www.youtube.com/watch?v=fCOScMG0utM]&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Main_Page</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Main_Page"/>
				<updated>2014-09-02T10:20:31Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to wiki.IPBRICK.com&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[https://wiki.ipbrick.com/index.php?title=Special:UserLogin Log In] to access our knowledge base.&lt;br /&gt;
&lt;br /&gt;
If you are not yet registered, please send request by e-mail to «wiki at ipbrick dot com».&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
'''IPBRICK v6.0 F.A.Q.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''Is it possible to update my IPBRICK v5.x to a 6.0 using updates?''&lt;br /&gt;
&lt;br /&gt;
 It isn't possible to upgrade an IPBRICK 4.x or v5.x to an IPBrick 6.0 using updates.&lt;br /&gt;
 You can only upgrade your system via an Upgrade/Reinstall with our new ISO via DVD or image installation.&lt;br /&gt;
&lt;br /&gt;
''But since the migration procedure is now an installation of a new image, how can I safeguard my server's data?''&lt;br /&gt;
&lt;br /&gt;
 The IPBRICK installation DVD detects a previous installation and ensures the backup of all data.&lt;br /&gt;
 However, and regardless of this, it is advisable to have a full backup of your server!&lt;br /&gt;
&lt;br /&gt;
''How may I backup my server's configurations?''&lt;br /&gt;
&lt;br /&gt;
 Backup the last IPBRICK configuration at: '''Advanced Configurations &amp;gt; Disaster Recovery &amp;gt; Configurations &amp;gt; Download'''&lt;br /&gt;
&lt;br /&gt;
''And may I use the configuration file straight away?''&lt;br /&gt;
&lt;br /&gt;
 No. Send the last IPBRICK configuration to support.install@ipbrick.com and request migration to IPBrick v6.0;&lt;br /&gt;
&lt;br /&gt;
''Is this a direct conversion procedure?''&lt;br /&gt;
&lt;br /&gt;
 No. This isn't an automatic procedure. You will receive, as soon as possible, the respective configuration file.&lt;br /&gt;
&lt;br /&gt;
''What about migrating really old versions of IPBRICK?''&lt;br /&gt;
&lt;br /&gt;
 It’s possible that, for older IPBRICK versions, the migration may not be possible to be executed directly.&lt;br /&gt;
 You may need to update first to an intermediate version and only then to IPBRICK 6.0.&lt;br /&gt;
 In these situations, we will inform you about any restrictions and how to proceed.&lt;br /&gt;
&lt;br /&gt;
''And what about the applications installed in the server?''&lt;br /&gt;
&lt;br /&gt;
 If in doubt, please contact support.install@ipbrick.com we will make sure to check if your installed applications,&lt;br /&gt;
 such as Hotspot, LIVE, etc. are compatible with IPBrick v6.0.&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Main_Page</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Main_Page"/>
				<updated>2014-09-02T10:19:59Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to wiki.IPBRICK.com&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[https://wiki.ipbrick.com/index.php?title=Special:UserLogin Log In] to access our knowledge base.&lt;br /&gt;
&lt;br /&gt;
If you are not yet registered, please send request by e-mail to «wiki at ipbrick dot com».&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
'''IPBRICK v6.0 F.A.Q.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''Is it possible to update my IPBRICK v5.x to a 6.0 using updates?''&lt;br /&gt;
&lt;br /&gt;
 It isn't possible to upgrade an IPBRICK 4.x or v5.x to an IPBrick 6.0 using updates.&lt;br /&gt;
 You can only upgrade your system via an Upgrade/Reinstall with our new ISO via DVD or image installation.&lt;br /&gt;
&lt;br /&gt;
''But since the migration procedure is now an installation of a new image, how can I safeguard my server's data?''&lt;br /&gt;
&lt;br /&gt;
 The IPBRICK installation DVD detects a previous installation and ensures the backup of all data.&lt;br /&gt;
 However, and regardless of this, it is advisable to have a full backup of your server!&lt;br /&gt;
&lt;br /&gt;
''How may I backup my server's configurations?''&lt;br /&gt;
&lt;br /&gt;
 Backup the last IPBRICK configuration at: '''Advanced Configurations &amp;gt; Disaster Recovery &amp;gt; Configurations &amp;gt; Download'''&lt;br /&gt;
&lt;br /&gt;
''And may I use the configuration file straight away?''&lt;br /&gt;
&lt;br /&gt;
 No. Send the last IPBRICK configuration to support.install@ipbrick.com and request migration to IPBrick v6.0;&lt;br /&gt;
&lt;br /&gt;
''Is this a direct conversion procedure?''&lt;br /&gt;
&lt;br /&gt;
 No. This isn't an automatic procedure. You will receive, as soon as possible, the respective configuration file.&lt;br /&gt;
&lt;br /&gt;
''What about migrating really old versions of IPBRICK?''&lt;br /&gt;
&lt;br /&gt;
 It’s possible that, for older IPBRICK versions, the migration may not be possible to be executed directly.&lt;br /&gt;
 You may need to update first to an intermediate version and only then to IPBRICK 6.0.&lt;br /&gt;
 In these situations, we will inform you about any restrictions and how to proceed.&lt;br /&gt;
&lt;br /&gt;
''And what about the applications installed in the server?''&lt;br /&gt;
&lt;br /&gt;
 If in doubt, please contact support.install@ipbrick.com we will make sure to check if your installed applications, such as Hotspot, LIVE, etc. are compatible with IPBrick v6.0.&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Main_Page</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Main_Page"/>
				<updated>2014-09-02T10:19:24Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to wiki.IPBRICK.com&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[https://wiki.ipbrick.com/index.php?title=Special:UserLogin Log In] to access our knowledge base.&lt;br /&gt;
&lt;br /&gt;
If you are not yet registered, please send request by e-mail to «wiki at ipbrick dot com».&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
'''IPBRICK v6.0 F.A.Q.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''Is it possible to update my IPBRICK v5.x to a 6.0 using updates?''&lt;br /&gt;
&lt;br /&gt;
 It isn't possible to upgrade an IPBRICK 4.x or v5.x to an IPBrick 6.0 using updates.&lt;br /&gt;
 You can only upgrade your system via an Upgrade/Reinstall with our new ISO via DVD or image installation.&lt;br /&gt;
&lt;br /&gt;
''But since the migration procedure is now an installation of a new image, how can I safeguard my server's data?''&lt;br /&gt;
&lt;br /&gt;
 The IPBRICK installation DVD detects a previous installation and ensures the backup of all data.&lt;br /&gt;
 However, and regardless of this, it is advisable to have a full backup of your server!&lt;br /&gt;
&lt;br /&gt;
''How may I backup my server's configurations?''&lt;br /&gt;
&lt;br /&gt;
 Backup the last IPBRICK configuration at: '''Advanced Configurations &amp;gt; Disaster Recovery &amp;gt; Configurations &amp;gt; Download'''&lt;br /&gt;
&lt;br /&gt;
''And may I use the configuration file straight away?''&lt;br /&gt;
&lt;br /&gt;
 No. Send the last IPBRICK configuration to support.install@ipbrick.com and request migration to IPBrick v6.0;&lt;br /&gt;
&lt;br /&gt;
''Is this a direct conversion procedure?''&lt;br /&gt;
&lt;br /&gt;
 No. This isn't an automatic procedure. You will receive, as soon as possible, the respective configuration file.&lt;br /&gt;
&lt;br /&gt;
''What about migrating really old versions of IPBRICK?''&lt;br /&gt;
&lt;br /&gt;
 It’s possible that, for older IPBRICK versions, the migration may not be possible to be executed directly. You may need to update first to an intermediate version and only then to IPBRICK 6.0.&lt;br /&gt;
 In these situations, we will inform you about any restrictions and how to proceed.&lt;br /&gt;
&lt;br /&gt;
''And what about the applications installed in the server?''&lt;br /&gt;
&lt;br /&gt;
 If in doubt, please contact support.install@ipbrick.com we will make sure to check if your installed applications, such as Hotspot, LIVE, etc. are compatible with IPBrick v6.0.&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Main_Page</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Main_Page"/>
				<updated>2014-09-02T10:19:00Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to wiki.IPBRICK.com&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[https://wiki.ipbrick.com/index.php?title=Special:UserLogin Log In] to access our knowledge base.&lt;br /&gt;
&lt;br /&gt;
If you are not yet registered, please send request by e-mail to «wiki at ipbrick dot com».&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
'''IPBRICK v6.0 F.A.Q.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''Is it possible to update my IPBRICK v5.x to a 6.0 using updates?''&lt;br /&gt;
&lt;br /&gt;
 It isn't possible to upgrade an IPBRICK 4.x or v5.x to an IPBrick 6.0 using updates.&lt;br /&gt;
 You can only upgrade your system via an Upgrade/Reinstall with our new ISO via DVD or image installation.&lt;br /&gt;
&lt;br /&gt;
''But since the migration procedure is now an installation of a new image, how can I safeguard my server's data?''&lt;br /&gt;
&lt;br /&gt;
 The IPBRICK installation DVD detects a previous installation and ensures the backup of all data.&lt;br /&gt;
 However, and regardless of this, it is advisable to have a full backup of your server!&lt;br /&gt;
 &lt;br /&gt;
''How may I backup my server's configurations?''&lt;br /&gt;
&lt;br /&gt;
 Backup the last IPBRICK configuration at: '''Advanced Configurations &amp;gt; Disaster Recovery &amp;gt; Configurations &amp;gt; Download'''&lt;br /&gt;
&lt;br /&gt;
''And may I use the configuration file straight away?''&lt;br /&gt;
&lt;br /&gt;
 No. Send the last IPBRICK configuration to support.install@ipbrick.com and request migration to IPBrick v6.0;&lt;br /&gt;
&lt;br /&gt;
''Is this a direct conversion procedure?''&lt;br /&gt;
&lt;br /&gt;
 No. This isn't an automatic procedure. You will receive, as soon as possible, the respective configuration file.&lt;br /&gt;
&lt;br /&gt;
''What about migrating really old versions of IPBRICK?''&lt;br /&gt;
&lt;br /&gt;
 It’s possible that, for older IPBRICK versions, the migration may not be possible to be executed directly. You may need to update first to an intermediate version and only then to IPBRICK 6.0.&lt;br /&gt;
 In these situations, we will inform you about any restrictions and how to proceed.&lt;br /&gt;
&lt;br /&gt;
''And what about the applications installed in the server?''&lt;br /&gt;
&lt;br /&gt;
 If in doubt, please contact support.install@ipbrick.com we will make sure to check if your installed applications, such as Hotspot, LIVE, etc. are compatible with IPBrick v6.0.&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Main_Page</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Main_Page"/>
				<updated>2014-09-02T10:17:51Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to wiki.IPBRICK.com&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[https://wiki.ipbrick.com/index.php?title=Special:UserLogin Log In] to access our knowledge base.&lt;br /&gt;
&lt;br /&gt;
If you are not yet registered, please send request by e-mail to «wiki at ipbrick dot com».&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
'''IPBRICK v6.0 F.A.Q.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''Is it possible to update my IPBRICK v5.x to a 6.0 using updates?''&lt;br /&gt;
&lt;br /&gt;
 It isn't possible to upgrade an IPBRICK 4.x or v5.x to an IPBrick 6.0 using updates. You can only upgrade your system via an Upgrade/Reinstall with our new ISO via DVD or image installation.&lt;br /&gt;
&lt;br /&gt;
''But since the migration procedure is now an installation of a new image, how can I safeguard my server's data?''&lt;br /&gt;
&lt;br /&gt;
 The IPBRICK installation DVD detects a previous installation and ensures the backup of all data. However, and regardless of this, it is advisable to have a full backup of your server!&lt;br /&gt;
 &lt;br /&gt;
''How may I backup my server's configurations?''&lt;br /&gt;
&lt;br /&gt;
 Backup the last IPBRICK configuration at: '''Advanced Configurations &amp;gt; Disaster Recovery &amp;gt; Configurations &amp;gt; Download'''&lt;br /&gt;
&lt;br /&gt;
''And may I use the configuration file straight away?''&lt;br /&gt;
&lt;br /&gt;
 No. Send the last IPBRICK configuration to support.install@ipbrick.com and request migration to IPBrick v6.0;&lt;br /&gt;
&lt;br /&gt;
''Is this a direct conversion procedure?''&lt;br /&gt;
&lt;br /&gt;
 No. This isn't an automatic procedure. You will receive, as soon as possible, the respective configuration file.&lt;br /&gt;
&lt;br /&gt;
''What about migrating really old versions of IPBRICK?''&lt;br /&gt;
&lt;br /&gt;
 It’s possible that, for older IPBRICK versions, the migration may not be possible to be executed directly. You may need to update first to an intermediate version and only then to IPBRICK 6.0.&lt;br /&gt;
 In these situations, we will inform you about any restrictions and how to proceed.&lt;br /&gt;
&lt;br /&gt;
''And what about the applications installed in the server?''&lt;br /&gt;
&lt;br /&gt;
 If in doubt, please contact support.install@ipbrick.com we will make sure to check if your installed applications, such as Hotspot, LIVE, etc. are compatible with IPBrick v6.0.&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Main_Page</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Main_Page"/>
				<updated>2014-09-02T10:08:00Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to wiki.IPBRICK.com&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[https://wiki.ipbrick.com/index.php?title=Special:UserLogin Log In] to access our knowledge base.&lt;br /&gt;
&lt;br /&gt;
If you are not yet registered, please send request by e-mail to «wiki at ipbrick dot com».&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
'''IPBRICK v6.0 F.A.Q.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''Is it possible to update my IPBRICK v5.x to a 6.0 using updates?''&lt;br /&gt;
&lt;br /&gt;
 It isn't possible to upgrade an IPBRICK 4.x or v5.x to an IPBrick 6.0 using updates. You can only upgrade your system via an Upgrade/Reinstall with our new ISO via DVD or image installation.&lt;br /&gt;
&lt;br /&gt;
''But since the migration procedure is now an installation of a new image, how can I safeguard my server's data?''&lt;br /&gt;
&lt;br /&gt;
 The IPBRICK installation DVD detects a previous installation and ensures the backup of all data. However, and regardless of this, it is advisable to have a full backup of your server!&lt;br /&gt;
 &lt;br /&gt;
''How may I backup my server's configurations?''&lt;br /&gt;
&lt;br /&gt;
 Backup the last IPBRICK configuration at: '''Advanced Configurations &amp;gt; Disaster Recovery &amp;gt; Configurations &amp;gt; Download'''&lt;br /&gt;
&lt;br /&gt;
''And may I use the configuration file straight away?''&lt;br /&gt;
&lt;br /&gt;
 No. Send the last IPBRICK configuration to support.install@ipbrick.com and request migration to IPBrick v6.0;&lt;br /&gt;
&lt;br /&gt;
''Is this a direct conversion procedure?''&lt;br /&gt;
&lt;br /&gt;
 No. This isn't an automatic procedure. You will receive, as soon as possible, the respective configuration file.&lt;br /&gt;
&lt;br /&gt;
''What about migrating really old versions of IPBRICK?''&lt;br /&gt;
&lt;br /&gt;
 It’s possible that, for older IPBRICK versions, the migration may not be possible to be executed directly. You may need to update first to an intermediate version and only then to IPBRICK 6.0.&lt;br /&gt;
&lt;br /&gt;
''And what about the applications installed in the server?''&lt;br /&gt;
&lt;br /&gt;
 If in doubt, please contact support.install@ipbrick.com we will make sure to check if your installed applications, such as Hotspot, LIVE, etc. are compatible with IPBrick v6.0.&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Main_Page</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Main_Page"/>
				<updated>2014-09-02T10:05:53Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to wiki.IPBRICK.com&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[https://wiki.ipbrick.com/index.php?title=Special:UserLogin Log In] to access our knowledge base.&lt;br /&gt;
&lt;br /&gt;
If you are not yet registered, please send request by e-mail to «wiki at ipbrick dot com».&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
'''IPBRICK v6.0 F.A.Q.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''Is it possible to update my IPBRICK v5.x to a 6.0 using updates?''&lt;br /&gt;
&lt;br /&gt;
 It isn't possible to upgrade an IPBRICK 4.x or v5.x to an IPBrick 6.0 using updates. You can only upgrade your system via an Upgrade/Reinstall with our new ISO via DVD or image installation.&lt;br /&gt;
&lt;br /&gt;
''But since the migration procedure is now an installation of a new image, how can I safeguard my server's data?''&lt;br /&gt;
&lt;br /&gt;
 The IPBRICK installation DVD detects a previous installation and ensures the backup of all data. However, and regardless of this, it is advisable to have a full backup of your server!&lt;br /&gt;
 &lt;br /&gt;
''How may I backup my server's data?''&lt;br /&gt;
&lt;br /&gt;
 Backup the last IPBRICK configuration at: '''Advanced Configurations &amp;gt; Disaster Recovery &amp;gt; Configurations &amp;gt; Download'''&lt;br /&gt;
&lt;br /&gt;
''And may I use the configuration file straight away?''&lt;br /&gt;
&lt;br /&gt;
 No. Send the last IPBRICK configuration to support.install@ipbrick.com and request migration to IPBrick v6.0;&lt;br /&gt;
&lt;br /&gt;
''Is this a direct conversion procedure?''&lt;br /&gt;
&lt;br /&gt;
 No. This isn't an automatic procedure. You will receive, as soon as possible, the respective configuration file.&lt;br /&gt;
&lt;br /&gt;
''What about migrating really old versions of IPBRICK?''&lt;br /&gt;
&lt;br /&gt;
 It’s possible that, for older IPBRICK versions, the migration may not be possible to be executed directly. You may need to update first to an intermediate version and only then to IPBRICK 6.0.&lt;br /&gt;
&lt;br /&gt;
''And what about the applications installed in the server?''&lt;br /&gt;
&lt;br /&gt;
 If in doubt, please contact support.install@ipbrick.com we will make sure to check if your installed applications, such as Hotspot, LIVE, etc. are compatible with IPBrick v6.0.&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Main_Page</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Main_Page"/>
				<updated>2014-09-02T10:04:47Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to wiki.IPBRICK.com&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[https://wiki.ipbrick.com/index.php?title=Special:UserLogin Log In] to access our knowledge base.&lt;br /&gt;
&lt;br /&gt;
If you are not yet registered, please send request by e-mail to «wiki at ipbrick dot com».&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
'''IPBRICK v6.0 F.A.Q.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Is it possible to update my IPBRICK v5.x to a 6.0 using updates?&lt;br /&gt;
&lt;br /&gt;
 It isn't possible to upgrade an IPBRICK 4.x or v5.x to an IPBrick 6.0 using updates. You can only upgrade your system via an Upgrade/Reinstall with our new ISO via DVD or image installation.&lt;br /&gt;
&lt;br /&gt;
But since the migration procedure is now an installation of a new image, how can I safeguard my server's data?&lt;br /&gt;
&lt;br /&gt;
 The IPBRICK installation DVD detects a previous installation and ensures the backup of all data. However, and regardless of this, it is advisable to have a full backup of your server!&lt;br /&gt;
 &lt;br /&gt;
How may I backup my server's data?&lt;br /&gt;
&lt;br /&gt;
 Backup the last IPBRICK configuration at: '''Advanced Configurations &amp;gt; Disaster Recovery &amp;gt; Configurations &amp;gt; Download'''&lt;br /&gt;
&lt;br /&gt;
And may I use the configuration file straight away?&lt;br /&gt;
&lt;br /&gt;
 No. Send the last IPBRICK configuration to support.install@ipbrick.com and request migration to IPBrick v6.0;&lt;br /&gt;
&lt;br /&gt;
Is this a direct conversion procedure?&lt;br /&gt;
&lt;br /&gt;
 No. This isn't an automatic procedure. You will receive, as soon as possible, the respective configuration file.&lt;br /&gt;
&lt;br /&gt;
What about migrating really old versions of IPBRICK?&lt;br /&gt;
&lt;br /&gt;
 It’s possible that, for older IPBRICK versions, the migration may not be possible to be executed directly. You may need to update first to an intermediate version and only then to IPBRICK 6.0.&lt;br /&gt;
&lt;br /&gt;
And what about the applications installed in the server?&lt;br /&gt;
&lt;br /&gt;
 If in doubt, please contact support.install@ipbrick.com we will make sure to check if your installed applications, such as Hotspot, LIVE, etc. are compatible with IPBrick v6.0.&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Main_Page</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Main_Page"/>
				<updated>2014-09-02T10:04:17Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to wiki.IPBRICK.com&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[https://wiki.ipbrick.com/index.php?title=Special:UserLogin Log In] to access our knowledge base.&lt;br /&gt;
&lt;br /&gt;
If you are not yet registered, please send request by e-mail to «wiki at ipbrick dot com».&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
'''IPBRICK v6.0 F.A.Q.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Is it possible to update my IPBRICK v5.x to a 6.0 using updates?&lt;br /&gt;
&lt;br /&gt;
 It isn't possible to upgrade an IPBRICK 4.x or v5.x to an IPBrick 6.0 using updates. You can only upgrade your system via an Upgrade/Reinstall with our new ISO via DVD or image installation.&lt;br /&gt;
&lt;br /&gt;
But since the migration procedure is now an installation of a new image, how can I safeguard my server's data?&lt;br /&gt;
&lt;br /&gt;
 The IPBRICK installation DVD detects a previous installation and ensures the backup of all data. However, and regardless of this, it is advisable to have a full backup of your server!&lt;br /&gt;
 &lt;br /&gt;
How may I backup my server's data?&lt;br /&gt;
&lt;br /&gt;
 Backup the last IPBRICK configuration at: '''Advanced Configurations &amp;gt; Disaster Recovery &amp;gt; Configurations &amp;gt; Download'''&lt;br /&gt;
&lt;br /&gt;
And may I use the configuration file straight away?&lt;br /&gt;
&lt;br /&gt;
 No. Send the last IPBRICK configuration to support.install@ipbrick.com and request migration to IPBrick v6.0;&lt;br /&gt;
&lt;br /&gt;
Is this a direct conversion procedure?&lt;br /&gt;
&lt;br /&gt;
 No. This isn't an automatic procedure. You will receive, as soon as possible, the respective configuration file.&lt;br /&gt;
&lt;br /&gt;
What about migrating really old versions of IPBRICK?&lt;br /&gt;
&lt;br /&gt;
 It’s possible that, for older IPBRICK versions, the migration may not be possible to be executed directly. You may need to update first to an intermediate version and only then to IPBRICK 6.0. In these situations, we will inform you about any restrictions and how to proceed.&lt;br /&gt;
&lt;br /&gt;
And what about the applications installed in the server?&lt;br /&gt;
&lt;br /&gt;
 If in doubt, please contact support.install@ipbrick.com we will make sure to check if your installed applications, such as Hotspot, LIVE, etc. are compatible with IPBrick v6.0.&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Main_Page</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Main_Page"/>
				<updated>2014-09-02T09:59:42Z</updated>
		
		<summary type="html">&lt;p&gt;Daraujo: IPBRICK v6.0 F.A.Q.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to wiki.IPBRICK.com&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[https://wiki.ipbrick.com/index.php?title=Special:UserLogin Log In] to access our knowledge base.&lt;br /&gt;
&lt;br /&gt;
If you are not yet registered, please send request by e-mail to «wiki at ipbrick dot com».&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
'''IPBRICK v6.0 F.A.Q.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Is it possible to update my IPBRICK v5.x to a 6.0 using updates?&lt;br /&gt;
&lt;br /&gt;
 It isn't possible to upgrade an IPBRICK 4.x or v5.x to an IPBrick 6.0 using updates. You can only upgrade your system via an Upgrade/Reinstall with our new ISO via DVD or image installation.&lt;br /&gt;
&lt;br /&gt;
But since the migration procedure is now an installation of a new image, how can I safeguard my server's data?&lt;br /&gt;
&lt;br /&gt;
 The IPBRICK installation DVD detects a previous installation and ensures the backup of all data. However, and regardless of this, it is advisable to have a full backup of your server!&lt;br /&gt;
 &lt;br /&gt;
How may I backup my server's data?&lt;br /&gt;
&lt;br /&gt;
 Backup the last IPBRICK configuration at: '''Advanced Configurations &amp;gt; Disaster Recovery &amp;gt; Configurations &amp;gt; Download'''&lt;br /&gt;
&lt;br /&gt;
And may I use the configuration file straight away?&lt;br /&gt;
&lt;br /&gt;
 No. Send the last IPBRICK configuration to support.install@ipbrick.com and request migration to IPBrick v6.0;&lt;br /&gt;
&lt;br /&gt;
Is this a direct conversion procedure?&lt;br /&gt;
&lt;br /&gt;
 No. This isn't an automatic procedure. You will receive, as soon as possible, the respective configuration file. It’s possible that, for older IPBRICK versions, the migration may not be possible to be executed directly. You may need to update first to an intermediate version and only then to IPBRICK 6.0. In these situations, we will inform you about any restrictions and how to proceed.&lt;br /&gt;
&lt;br /&gt;
And what about the applications installed in the server?&lt;br /&gt;
&lt;br /&gt;
 If in doubt, please contact support.install@ipbrick.com we will make sure to check if your installed applications, such as Hotspot, LIVE, etc. are compatible with IPBrick v6.0.&lt;/div&gt;</summary>
		<author><name>Daraujo</name></author>	</entry>

	</feed>