Openstack - 将多个IP添加到一个端口

Openstack - Add multiple IPs to one port

目前我已经设置了一个带有一个接口的实例和一个带有keepalived的vip。与主界面的通信正常,但与 vip 的通信无效。我试过用 ip 地址添加一个额外的端口,但没有成功。以下是我尝试过的方法和错误。 (192.168.1.50 - 是vip)

openstack port create --network l_network --fixed-ip subnet=10990c09-5893-4r68-ecre-307ed7740ey6,ip-address=192.168.1.50 --mac-address=fb:17:3d:a6:08:37 port1

Unable to complete operation for network f6601b8f-dhb2-4567-t399-124fb5hd8895. The mac address fb:17:3d:a6:08:37 is in use.

我通过创建一个额外的端口然后link将它连接到 Openstack 实例

设法让它工作

为 VIP 创建端口

neutron port-create --fixed-ip subnet_id=<subnet_id>,ip_address=192.168.1.50 --no-security-groups --name "vip" <id_of_net>

查找子网 ID 和网络 ID:

neutron net-list

link 实例的端口:

neutron port-update <port_id_of_current_instance> --allowed-address-pairs type=dict list=true ip_address=192.168.1.50

找到 port_ids:

neutron port-list