【发布时间】:2014-10-14 13:05:28
【问题描述】:
是否可以让多台计算机同时使用同一个发起方 IQN 连接到同一个目标?
谢谢。
【问题讨论】:
是否可以让多台计算机同时使用同一个发起方 IQN 连接到同一个目标?
谢谢。
【问题讨论】:
这不是一个好主意。来自 RFC 3720 (http://www.ietf.org/rfc/rfc3720.txt):
a) iSCSI names are globally unique. No two initiators or targets can have the same name.
您可能会发现重复的 IQN 可能适用于给定目标。但即便如此,您也必须确保 iSCSI 会话 ID 不能重叠,否则目标可能会非常混乱。 IQN、iSCSI 会话 ID 和目标的组合形成了目标将用来跟踪事物的 I_T 关系。同样,来自 RFC 3720:
c) I_T nexus - a relationship between a SCSI Initiator Port and a SCSI Target Port, according to [SAM2]. For iSCSI, this relationship is a session, defined as a relationship between an iSCSI Initiator's end of the session (SCSI Initiator Port) and the iSCSI Target's Portal Group. The I_T nexus can be identified by the conjunction of the SCSI port names or by the iSCSI session identifier SSID. iSCSI defines the I_T nexus identifier to be the tuple (iSCSI Initiator Name + 'i' + ISID, iSCSI Target Name + 't' + Portal Group Tag).
这个关系对象必须是唯一的。
【讨论】:
可能 - 是的。好主意 - 不。要使其正常工作,您需要一个集群文件系统;否则你会得到损坏的数据。
【讨论】: