The cart is empty

digital world, it's crucial for data to be accessible from anywhere, necessitating flexible and efficient storage methods. One popular solution is to use iSCSI (Internet Small Computer System Interface), which enables storage attachment over a network. This article focuses on setting up and managing iSCSI target and initiator on the CentOS 7 operating system.

Installation and Configuration of iSCSI Target

Before you begin, ensure you have CentOS 7 installed and are logged in as a user with sudo privileges.

  1. Installation of Required Software: The first step is to install the necessary software for configuring the iSCSI target. You can achieve this by running the following command:

  2. Configuration of iSCSI Target: After installation, you can configure the iSCSI target using targetcli. Start targetcli:

    sudo targetcli
    

    Then, create an iSCSI target:

    /> /iscsi create iqn.2024-03.com.example:target1
    

    Next, add storage (LUN) to your target:

    /> /backstores/fileio create name=disk1 size=10G /var/lib/iscsi_disks/disk1.img
    /> /iscsi/iqn.2024-03.com.example:target1/tpg1/luns/ create /backstores/fileio/disk1
    

    Finally, set up an Access Control List (ACL) to allow only specific initiators to connect to the target:

    /> /iscsi/iqn.2024-03.com.example:target1/tpg1/acls/ create iqn.2024-03.client:client1
    

    Save and exit targetcli using Ctrl+D.

  3. Enabling the Service: To ensure the iSCSI target remains available after a reboot, enable the target service:

    sudo systemctl enable target
    sudo systemctl start target
    

 

Installation and Configuration of iSCSI Initiator

After setting up the target, it's time to configure the iSCSI initiator on the client that will connect to the storage.

  1. Installation of iSCSI Initiator: On the client system, install the iSCSI initiator utility:

    sudo yum install iscsi-initiator-utils -y
    
  2. Configuration of iSCSI Initiator: Set the initiator IQN name in the /etc/iscsi/initiatorname.iscsi file:

    InitiatorName=iqn.2024-03.client:client1
    

    Restart the iSCSI service after modifying the configuration:

    sudo systemctl restart iscsi
    
  3. Connecting to the iSCSI Target: Discover available iSCSI targets on the client using:

    iscsiadm -m discovery -t st -p <IP_address_of_iSCSI_target_server>
    

    Then, connect to the iSCSI target:

    iscsiadm -m node --targetname iqn.2024-03.com.example:target1 --portal <IP_address_of_iSCSI_target_server>:3260 --login
    

    The storage should now be accessible on the client, which you can verify using lsblk.

 

Configuring iSCSI targets and initiators on CentOS 7 is a crucial step towards establishing efficient network storage. After successful configuration and connection, the storage can be utilized similarly to local disks, enabling various use cases such as file sharing, backups, or even as space for virtual machines.

It's important to note that proper network and firewall configuration is essential for the smooth functioning of iSCSI. Opening port 3260 on the firewall on the iSCSI target server side and ensuring that network paths between the target and initiator are not blocked are critical for the success of the setup.

Security is another factor to consider. iSCSI itself does not provide data encryption, meaning data transmitted between the target and initiator could potentially be intercepted. In a secure environment, it may be advisable to set up a VPN or use a dedicated network for iSCSI traffic to minimize the risk of unauthorized access.

Performance is another critical area to consider when using iSCSI. Because iSCSI relies on network connectivity, latency and bandwidth can significantly impact overall storage performance. For critical applications, it's recommended to use gigabit or faster network connections and optimize network configuration to reduce latency.

In conclusion, iSCSI offers a flexible and powerful way to extend storage capabilities in a network. Its proper configuration on CentOS 7 requires careful planning and testing, but the result is a robust solution that can significantly improve data management within an organization. Like any technological solution, iSCSI continues to evolve, so it's important to stay up-to-date with the latest updates and best practices.