openstack环境将其他节点加入到对应机器port中的方式如下
1、登陆controller节点,查询到对应节点的port id
# source admin-openrc
# neutron port-list
2、查询对应节点port情况
# neutron port-show? {获取到的port id}
# neutron port-show 7c16b2a4-9de7-4589-9a79-c7d48ef568a4
3、执行命令更新port
#neutron port-update {获取的到id} --allowed_address_pairs list=true type=dict ip_address={要加入的节点ip}?
#neutron port-update 167e18e9-cf36-465f-9223-564645b68363 --allowed_address_pairs list=true type=dict ip_address=100.88.166.57 ip_address=100.88.166.58
4、再次执行查询命令查看port详情