iSCSI : iSCSI ターゲットの設定 (targetcli)2023/06/16 |
iSCSI によるストレージサーバーの構築です。
ネットワーク上のストレージを iSCSI ターゲット、iSCSI ターゲットに接続するクライアントを iSCSI イニシエーターと呼びます。 +----------------------+ | +----------------------+ | [ iSCSI Target ] |10.0.0.30 | 10.0.0.51| [ iSCSI Initiator ] | | dlp.srv.world +----------+----------+ node01.srv.world | | | | | +----------------------+ +----------------------+ |
[1] | 管理ツールをインストールします。 |
root@dlp:~# apt -y install targetcli-fb
|
[2] | iSCSI ターゲットの設定です。 例として [/var/lib/iscsi_disks] ディレクトリ内にディスクイメージを作成し、SCSI デバイスとして設定します。 なお、例でのディスクイメージの他にも、ブロックデバイスや RAM ディスク等も SCSI デバイスとして設定可能です。 |
# 管理ツール起動 root@dlp:~# targetcli Warning: Could not load preferences file /root/.targetcli/prefs.bin. targetcli shell version 2.1.53 Copyright 2011-2013 by Datera, Inc and others. For help on commands, type 'help'. /> cd /backstores/fileio # [disk01] という名前で [/var/lib/iscsi_disks/disk01.img] を 10G で作成 /backstores/fileio> create disk01 /var/lib/iscsi_disks/disk01.img 10G Created fileio disk01 with size 10737418240 /backstores/fileio> cd /iscsi # ターゲットを作成 # 命名規則:[ iqn.年-月.ドメイン名の逆:任意の名前 ] /iscsi> create iqn.2023-06.world.srv:dlp.target01 Created target iqn.2023-06.world.srv:dlp.target01. Created TPG 1. Global pref auto_add_default_portal=true Created default portal listening on all IPs (0.0.0.0), port 3260. /iscsi> cd iqn.2023-06.world.srv:dlp.target01/tpg1 # 認証を有効にする /iscsi/iqn.20...target01/tpg1> set attribute authentication=1 Parameter authentication is now '1'. /iscsi/iqn.20...target01/tpg1> cd luns # LUN を設定 /iscsi/iqn.20...t01/tpg1/luns> create /backstores/fileio/disk01 Created LUN 0. /iscsi/iqn.20...t01/tpg1/luns> cd ../acls # ACL を設定 (接続を許可するイニシエーターの IQN) /iscsi/iqn.20...t01/tpg1/acls> create iqn.2023-06.world.srv:node01.initiator Created Node ACL for iqn.2023-06.world.srv:node01.initiator Created mapped LUN 0. /iscsi/iqn.20...t01/tpg1/acls> cd iqn.2023-06.world.srv:node01.initiator # 認証用ユーザー ID を設定 /iscsi/iqn.20...w.initiator> set auth userid=username Parameter userid is now 'username'. /iscsi/iqn.20...w.initiator> set auth password=password Parameter password is now 'password'. /iscsi/iqn.20...w.initiator> exit Global pref auto_save_on_exit=true Configuration saved to /etc/rtslib-fb-target/saveconfig.json # 設定後 以下のようにターゲットがリスン状態になる root@dlp:~# ss -napt | grep 3260 LISTEN 0 256 0.0.0.0:3260 0.0.0.0:*root@dlp:~# systemctl enable rtslib-fb-targetctl |
Sponsored Link |