Fedora 19
Sponsored Link

iSCSIイニシエータの設定2013/07/04

 
iSCSIイニシエータの設定です。ここの例で前提としている環境は以下の通りです。
 
dlp.srv.world
[10.0.0.30] - iSCSIターゲット

 
www.srv.world
[10.0.0.31] - iSCSIイニシエータ
[1] iSCSIイニシエータの設定
[root@www ~]#
yum -y install iscsi-initiator-utils
[root@www ~]#
vi /etc/iscsi/iscsid.conf
# 53行目:コメント解除

node.session.auth.authmethod = CHAP
# 57,58行目:コメント解除してiSCSIターゲットで設定したユーザー名とパスワードを設定

node.session.auth.username =
username

node.session.auth.password =
password
[root@www ~]#
systemctl start iscsid.service

[root@www ~]#
systemctl enable iscsid.service
# ターゲットを discovery する

[root@www ~]#
iscsiadm -m discovery -t sendtargets -p 10.0.0.30

10.0.0.30:3260,1 iqn.2013-07.world.srv:target00

# discovery した後の状態確認

[root@www ~]#
iscsiadm -m node -o show

# BEGIN RECORD 6.2.0.873-1
node.name = iqn.2013-07.world.srv:target00
node.tpgt = 1
node.startup = automatic
node.leading_login = No
iface.hwaddress = <empty>
iface.ipaddress = <empty>
iface.iscsi_ifacename = default
iface.net_ifacename = <empty>
iface.transport_name = tcp
...
...
# END RECORD

# discovery したターゲットにログインする

[root@www ~]#
iscsiadm -m node --login

Logging in to [iface: default, target: iqn.2013-07.world.srv:target00, portal: 10.0.0.30,3260] (multiple)
[ 1179.512093] scsi2 : iSCSI Initiator over TCP/IP
[ 1180.521816] scsi 2:0:0:0: RAID              IET      Controller       0001 PQ: 0 ANSI: 5
[ 1180.523072] scsi 2:0:0:0: Attached scsi generic sg0 type 12
[ 1180.527143] scsi 2:0:0:1: Direct-Access     IET      VIRTUAL-DISK     0001 PQ: 0 ANSI: 5
[ 1180.529998] sd 2:0:0:1: Attached scsi generic sg1 type 0
[ 1180.531146] sd 2:0:0:1: [sda] 16777216 512-byte logical blocks: (8.58 GB/8.00 GiB)
Login to [iface: default, target: iqn.2013-07.world.srv:target00, portal: 10.0.0.30,3260] successful.

# 確立しているセッションを確認

[root@www ~]#
iscsiadm -m session -o show

tcp: [1] 10.0.0.30:3260,1 iqn.2013-07.world.srv:target00
# パーティションを確認してみる

[root@www ~]#
cat /proc/partitions

major minor  #blocks  name

 252        0   20971520 vda
 252        1     512000 vda1
 252        2   20458496 vda2
 253        0    4128768 dm-0
 253        1   16326656 dm-1
   8        0    8388608 sda
   8        1    8387584 sda1
# ターゲット提供のデバイスが「sda*」として新たに認識されている
[2]
以上でiSCSIイニシエータの設定は終了です。 後はマウントしたデバイスをネットワークストレージをローカルストレージのように扱うことができます。

関連コンテンツ