<div dir="ltr">Could this be caused by a case mismatch between the MAC address as it exists in the database and the MAC that comes from the agent?<div><br></div><div>When the interfaces are updated with data from the agent we attempt to match the MAC to an existing interface (<a href="https://github.com/stackforge/fuel-web/blob/master/nailgun/nailgun/network/manager.py#L682-L690" target="_blank">https://github.com/stackforge/fuel-web/blob/master/nailgun/nailgun/network/manager.py#L682-L690</a>). If that doesn't work we attempt to match by name. Looking at the data that comes from the agent the MAC is always capitalized while in the database it's lower-case. It seems like checking the MAC will fail and we'll fall through to matching by name.</div><div><br></div><div>If the interfaces haven't been reordered then it doesn't matter whether or not we match on name or MAC. However, if the order has changed we'll have an issue. When the interfaces are matched by name they'll be updated with the agent info. Because we matched by name that will stay the same and we'll update the MAC instead, which isn't what we want.</div><div><br></div><div>e.g.</div><div>First boot:</div><div>1 | eth0 | 00:aa</div><div>2 | eth1  |00:bb</div><div><br></div><div>If the interface order is changed we'll have (as sent by the agent):</div><div>eth0 (00:BB)<br></div><div>eth1 (00:AA)</div><div><br></div><div>Because the MAC case doesn't match we'll end up matching by name. This means we update the wrong database record. We have:</div><div><br></div><div>1 | eth0 | 00:bb</div><div>2 | eth1 | 00:aa<br></div><div><br></div><div>Instead of</div><div><br></div><div>1 | eth1 | 00:aa</div><div>2 | eth0 | 00:bb</div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Nov 20, 2014 at 4:29 PM, Andrew Woodward <span dir="ltr"><<a href="mailto:xarses@gmail.com" target="_blank">xarses@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">In order for this to occur, this means that the node has to be<br>
bootstrapped and discover to nailgun, added to a cluster, and then<br>
bootstrap again (reboot) and have the agent update with a different<br>
nic order?<br>
<br>
i think the issue will only occur when networks are mapped to the<br>
interfaces, in this case the root cause is that the ethX name is used<br>
as the key attribute for updates, but really the mac should be the<br>
real key. If we change this behavior, then we should be able to have<br>
it update properly regardless of the current interface name.<br>
<div><div class="h5"><br>
On Thu, Nov 20, 2014 at 12:01 PM, Dmitriy Shulyak <<a href="mailto:dshulyak@mirantis.com">dshulyak@mirantis.com</a>> wrote:<br>
> Hi folks,<br>
><br>
> There was interesting research today on random nics ordering for nodes in<br>
> bootstrap stage. And in my opinion it requires separate thread...<br>
> I will try to describe what the problem is and several ways to solve it.<br>
> Maybe i am missing the simple way, if you see it - please participate.<br>
> Link to LP bug: <a href="https://bugs.launchpad.net/fuel/+bug/1394466" target="_blank">https://bugs.launchpad.net/fuel/+bug/1394466</a><br>
><br>
> When a node is booted first time it registers its interfaces in nailgun, see<br>
> sample of data (only related to discussion parts):<br>
> - name: eth0<br>
>   ip: <a href="http://10.0.0.3/24" target="_blank">10.0.0.3/24</a><br>
>   mac: 00:00:03<br>
> - name: eth1<br>
>   ip: None<br>
>   mac: 00:00:04<br>
> * eth0 is admin network interface which was used for initial pxe boot<br>
><br>
> We have networks, for simplicity lets assume there is 2:<br>
>  - admin<br>
>  - public<br>
> When the node is added to cluster, in general you will see next schema:<br>
> - name: eth0<br>
>   ip: <a href="http://10.0.0.3/24" target="_blank">10.0.0.3/24</a><br>
>   mac: 00:00:03<br>
>   networks:<br>
>     - admin<br>
>     - public<br>
> - name: eth1<br>
>   ip: None<br>
>   mac: 00:00:04<br>
><br>
> At this stage node is still using default system with bootstrap profile, so<br>
> there is no custom system with udev rules. And on next reboot there is no<br>
> way to guarantee that network cards will be discovered by kernel in same<br>
> order. If network cards is discovered in order that is diffrent from<br>
> original and nics configuration is updated, it is possible to end up with:<br>
> - name: eth0<br>
>   ip: None<br>
>   mac: 00:00:04<br>
>   networks:<br>
>     - admin<br>
>     - public<br>
> - name: eth1<br>
>   mac: 00:00:03<br>
>   ip: <a href="http://10.0.0.3/24" target="_blank">10.0.0.3/24</a><br>
> Here you can see that networks is left connected to eth0 (in db). And<br>
> ofcourse this schema doesnt reflect physical infrastructure. I hope it is<br>
> clear now what is the problem.<br>
> If you want to investigate it yourself, please find db dump in snapshot<br>
> attached to the bug, you will be able to find described here case.<br>
> What happens next:<br>
> 1. netcfg/choose_interface for kernel is misconfigured, and in my example it<br>
> will be 00:00:04, but should be 00:00:03<br>
> 2. network configuration for l23network will be simply corrupted<br>
><br>
> So - possible solutions:<br>
> 1. Reflect node interfaces ordering, with networks reassignment - Hard and<br>
> hackish<br>
> 2. Do not update any interfaces info if networks assigned to them, then udev<br>
> rules will be applied and nics will be reordered into original state - i<br>
> would say easy and reliable solution<br>
> 3. Create cobbler system when node is booted first time, and add udev rules<br>
> - it looks to me like proper solution, but requires design<br>
><br>
> Please share your thoughts/ideas, afaik this issue is not rare on scale<br>
> deployments.<br>
> Thank you<br>
><br>
</div></div>> _______________________________________________<br>
> OpenStack-dev mailing list<br>
> <a href="mailto:OpenStack-dev@lists.openstack.org">OpenStack-dev@lists.openstack.org</a><br>
> <a href="http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev" target="_blank">http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev</a><br>
><br>
<span class="HOEnZb"><font color="#888888"><br>
<br>
<br>
--<br>
Andrew<br>
Mirantis<br>
Ceph community<br>
<br>
_______________________________________________<br>
OpenStack-dev mailing list<br>
<a href="mailto:OpenStack-dev@lists.openstack.org">OpenStack-dev@lists.openstack.org</a><br>
<a href="http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev" target="_blank">http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev</a><br>
</font></span></blockquote></div><br></div>