我有使用 LVMVolumeDriver 运行的 OpenStack 块存储。
我想使用专用网络(10Ge)进行存储,但 iSCSI 连接始终通过管理地址建立。
我发现了针对同一问题的一个老问题(https://ask.openstack.org/en/question/90405/separate-cinder-storage-traffic-from-management/),但链接的答案已经不存在了。
在存储节点上我在 /etc/cinder/cinder.conf 中配置:
[DEFAULT]
...
my_ip = 10.48.21.93 ## address in management network
target_ip_address=192.168.100.1 ## address in storage network
...
[lvm]
..
iscsi_ip_address=192.168.100.1
当我检查 iSCSI 连接时,我看到:
# tgtadm --mode target --op show
Target 1: iqn.2010-10.org.openstack:volume-b432ec39-ebd0-44fd-a9e7-aa5abf66ae69
System information:
Driver: iscsi
State: ready
I_T nexus information:
I_T nexus: 2
Initiator: (hidden)
Connection: 0
IP Address: 10.48.22.48
...
我错过了什么?