<div dir="ltr"><div>Hello Community,<br><br></div><div>I'm working to make Ironic be aware about  Neutron port state changes [0].<br></div><div></div><div>The issue consists of two parts:<br><ul><li>Neutron ports for baremetal instances remain in DOWN state [1]. The issue occurs because there is no mechanism driver that binds ports. To solve it we need to create port with  vnic_type='baremetal' in Nova [2], and bind in Neutron. New mechanism driver that supports baremetal vnic_type is needed [3].<br><br></li><li>Sync Neutron events with Ironic. According to Neutron architecture [4] mechanism drivers work synchronously. When the port is bound by ml2 mechanism driver it becomes ACTIVE. While updating dhcp information Neutron uses dhcp agent, which is asynchronous call. I'm confused here, since ACTIVE port status doesn't mean that it operates (dhcp agent may fail to setup port). The issue was solved by [5]. So starting from [5] when ML2 uses new port status update flow, port update is always asynchronous operation. And the most efficient way is to implement callback mechanism between Neutron and Ironic is like it's done for Neutron/Nova.<br><br></li></ul><p></p><p>Neutron/Nova/Ironic teams let me know your thoughts on this.<br></p></div><div><br></div><div>Reference:<br>[0] <a href="https://bugs.launchpad.net/ironic/+bug/1304673">https://bugs.launchpad.net/ironic/+bug/1304673</a><br>[1] <a href="https://bugs.launchpad.net/neutron/+bug/1599836">https://bugs.launchpad.net/neutron/+bug/1599836</a><br>[2] <a href="https://review.openstack.org/339143">https://review.openstack.org/339143</a><br>[3] <a href="https://review.openstack.org/#/c/339129/">https://review.openstack.org/#/c/339129/</a><br>[4] <a href="https://www.packtpub.com/sites/default/files/Article-Images/B04751_01.png">https://www.packtpub.com/sites/default/files/Article-Images/B04751_01.png</a><br>[5] <a href="https://github.com/openstack/neutron/commit/b672c26cb42ad3d9a17ed049b506b5622601e891">https://github.com/openstack/neutron/commit/b672c26cb42ad3d9a17ed049b506b5622601e891</a><br></div></div>