Ubuntu 16.04
Sponsored Link

iSCSI ターゲットの設定 (targetcli)2016/04/23

 
iSCSI によるストレージサーバーの構築です。
ネットワーク上のストレージを iSCSI ターゲット、iSCSI ターゲットに接続するクライアントを iSCSI イニシエータと呼びます。
ここでは以下のような環境を例に iSCSI ストレージサーバーを構築します。
+----------------------+          |          +----------------------+
| [   iSCSI Target   ] |10.0.0.30 | 10.0.0.31| [ iSCSI Initiator  ] |
|     dlp.srv.world    +----------+----------+     www.srv.world    |
|                      |                     |                      |
+----------------------+                     +----------------------+

[1] 管理ツールをインストールします。
root@dlp:~#
apt-get -y install targetcli
[2] iSCSI ターゲットの設定です。
例として /var/iscsi_disks ディレクトリ内にディスクイメージを作成し、SCSI デバイスとして共有できるよう設定します。 なお、例でのディスクイメージの他にも、ブロックデバイスや RAM ディスク等も SCSI デバイスとして設定可能です。
# ディスクイメージ格納ディレクトリ作成

root@dlp:~#
mkdir /var/iscsi_disks

# 管理ツール起動

root@dlp:~#
targetcli

targetcli 3.0.pre4.1~ga55d018 (rtslib 3.0.pre4.1~g1b33ceb)
Copyright (c) 2011-2014 by Datera, Inc.
All rights reserved.

/>
cd backstores/fileio
# 「disk01」という名前で /var/iscsi_disks/disk01.img を 10G で作成

/backstores/fileio>
create disk01 /var/iscsi_disks/disk01.img 10G

Using buffered mode.
Created fileio disk01.
/backstores/fileio>
cd /iscsi
# ターゲットを作成

/iscsi>
create iqn.2016-04.world.srv:storage.target00

Created target iqn.2016-04.world.srv:storage.target00.
Selected TPG Tag 1.
Created TPG 1.
# ポータルを作成 (リスンする IPアドレスを設定)

/iscsi>
cd iqn.2016-04.world.srv:storage.target00/tpg1/portals

/iscsi/iqn.20.../tpg1/portals>
create 0.0.0.0

Using default IP port 3260
Created network portal 0.0.0.0:3260.
/iscsi/iqn.20.../tpg1/portals>
cd ../luns
# LUN を設定

/iscsi/iqn.20...t00/tpg1/luns>
create /backstores/fileio/disk01

Selected LUN 0.
Created LUN 0.
/iscsi/iqn.20...t00/tpg1/luns>
cd ../acls
# ACLを設定 (接続を許可するイニシエーターのIQN)

/iscsi/iqn.20...t00/tpg1/acls>
create iqn.2016-04.world.srv:www.srv.world

Created Node ACL for iqn.2016-04.world.srv:www.srv.world:www.srv.world
Created mapped LUN 0.
/iscsi/iqn.20...t00/tpg1/acls>
cd iqn.2016-04.world.srv:www.srv.world
# 認証用ユーザーID を設定

/iscsi/iqn.20....srv.world>
set auth userid=username

Parameter userid is now 'username'.
/iscsi/iqn.20....srv.world>
set auth password=password

Parameter password is now 'password'.
/iscsi/iqn.20....srv.world>
exit

Comparing startup and running configs...
Some changes need saving.
Save configuration? [Y/n]:
y

Saving new startup configuration
# 上記設定後、以下のようにターゲットがリスン状態になる

root@dlp:~#
ss -napt | grep 3260

LISTEN     0      256          *:3260                     *:*

# 自動起動の設定

root@dlp:~#
/lib/systemd/systemd-sysv-install enable target
関連コンテンツ