12.2. 配置存储提供商网络
在 neutron 提供商网络上创建对应的 StorageSubnet
。确保子网与 undercloud 中的 storage_subnet
相同,并且存储子网的分配范围不会重叠。
要求
- 分配池的开头和结束 IP 范围
- 子网 IP 范围
流程
在 undercloud 节点上输入以下命令:
[stack@undercloud ~]$ source ~/overcloudrc
使用示例命令置备网络。更新这些值以适合您的环境。
(overcloud) [stack@undercloud-0 ~]$ openstack subnet create \ --allocation-pool start=172.17.3.10,end=172.17.3.149 \ --dhcp \ --network Storage \ --subnet-range 172.17.3.0/24 \ --gateway none StorageSubnet
-
对于
--allocation-pool
选项,将start=172.17.3.10,end=172.17.3.149
IP 值替换为您的网络的 IP 值。 -
对于
--subnet-range
选项,请将172.17.3.0/24
子网范围替换为您的网络的子网范围。
-
对于