1.云平台搭建集群环境,需要使用VIP。为这个IP添加访问权限。(因为openstack都是IP、MAC绑定)
(1)首先创建空闲端口
neutron port-create --fixed-ip subnet-id=子网ID,ip_address=10.197.7.221 --name vip01 网络ID
(2)为云主机网口添加VIP
neutron port-update ecfdcade-c44c-42e4-b601-6a46df2a94cb(云主机port) --allowed-address-pairs type=dict list=true mac_address=fa:16:3e:23:94:68,ip_address=10.197.3.24/32(注意此处的MAC地址应该为云主机的MAC地址)
2.云主机指定IP地址操作
(1)创建port
neutron port-create --fixed-ip subnet-id=子网ID,ip_address=10.197.9.221 --name test199(随便起port名字) 网络ID
(2)绑定port
nova interface-attach VM-uuid --port-id portID
(3)解绑port
nova interface-detach VM-uuid portID
网友评论