19.配置 iSCSI 服务端

19.配置  iSCSI  服务端 

试题概述: 

      配置  server0  提供  iSCSI  服务,磁盘名为  iqn.2016-02.com.example:server0, 

      并符合下列要求: 

      服务端口为  3260 

      使用  iscsi_store  作其后端卷,其大小为  3GiB 

      此服务只能被  desktop0.example.com  访问 

解题参考:

1)准备磁盘空间

[root@server0 ~]# fdisk /dev/vdb

Command (m for help): n

Select (default p): p

Partition number (1-4, default 1):   回车默认

First sector (2048-20971519, default 2048):   回车默认

Using default value 2048

Last sector, +sectors or +size{K,M,G} (2048-20971519, default 20971519): +3G   # 划分3G

Partition 1 of type Linux and of size 3 GiB is set

Command (m for help): w  #保存分区表并退出

或者使用

[root@server0 ~]# parted  /dev/vdb        #//使用parted建立分区表

(parted) mktable gpt                                #//建立分区表

(parted) mkpart primary   ext4  0  3GiB      #//添加指定大小的分区

2)安装、配置 iSCSI 磁盘

[root@serverX ~]# yum -y install targetcli

[root@serverX ~]# targetcli

/> ls

image.png

/> /backstores/block create  iscsi_store /dev/vdb1                        #定义后端存储

/> /iscsi create  iqn.2016-02.com.example:server0                         #创建 iqn 对象

/> ls

image.png

[建议根据ls显示结果来创建比较好记!]

/> /iscsi/iqn.2016-02.com.example:serverX/tpg1/acls create iqn.2016-02.com.example:desktop0    #授权客户机(的 IQN)

/> /iscsi/iqn.2016-02.com.example:serverX/tpg1/luns create /backstores/block/iscsi_store              #绑定存储

/> /iscsi/iqn.2016-02.com.example:serverX/tpg1/portals create 172.25.0.11 3260                             #指定监听地址(本机 IP 及端口)

/> ls

image.png

/> saveconfig             #保存配置结果(缺省)

/> exit

[root@serverX ~]# systemctl restart target

[root@serverX ~]# systemctl enable target

版权声明:
作者:WaterBear
链接:https://l-t.top/165.html
来源:雷霆运维
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>