<div dir="ltr">Hi Jorge,<div><br></div><div>You can use heat template to launch these type of VM's, The user data to edit interface file can be:</div><div><br></div><div>user_data:</div><div>    #!/bin/bash</div><div>    sudo echo >> /etc/network/interfaces</div><div>    sudo echo <span style="font-size:12.8px">auto ens3</span> >> /etc/network/interfaces</div><div>    sudo echo <span style="font-size:12.8px">iface ens3 inet dhcp</span> >> /etc/network/interfaces</div><div>    sudo echo <span style="font-size:12.8px">iface ens3 inet6 auto </span>>> /etc/network/interfaces</div><div>    sudo echo <span style="font-size:12.8px">pre-up sleep 5</span><span style="font-size:12.8px"> </span>>> /etc/network/interfaces<br style="font-size:12.8px">    sudo echo<span style="font-size:12.8px"> dhcp 1</span><span style="font-size:12.8px"> </span>>> /etc/network/interfaces<br></div><div><br></div><div><br></div><div><br></div><div>Regards</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Jun 6, 2017 at 1:05 AM, Jorge Luiz Correa <span dir="ltr"><<a href="mailto:correajl@gmail.com" target="_blank">correajl@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">I need to customize/configure the file /etc/network/interfaces (or 50-cloud-init.cfg) from Ubuntu and Debian cloud images. My environment uses IPv6 with stateless configuration so I have replace this:<br><br>--- generated by cloud-init ---<br>auto lo<br>iface lo inet loopback<br><br>auto ens3<br>iface ens3 inet dhcp<br>---<br><br>with this:<br><br>---<br>auto lo<br>iface lo inet loopback<br><br>auto ens3<br>iface ens3 inet dhcp<br>iface ens3 inet6 auto<br>  pre-up sleep 5<br>  dhcp 1<br>---<br><br>This configuration makes the instance generate theis IPv6s and get others configurations from DHCPv6. The 'sleep' is due a Ubuntu bug. <br><br>How can I do that? <br><br>I need to customize the image before upload to OpenStack? Is there any way to pass this configuration at boot time? Is there any way to force all instances to have this configuration?<br><br>I appreciate any help!<br><br>Thanks. <br><span class="HOEnZb"><font color="#888888"><br clear="all"><div><div class="m_-2380665256764281943gmail_signature"><div dir="ltr">- JLC</div></div></div>
</font></span></div>
<br>______________________________<wbr>_________________<br>
Mailing list: <a href="http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack" rel="noreferrer" target="_blank">http://lists.openstack.org/<wbr>cgi-bin/mailman/listinfo/<wbr>openstack</a><br>
Post to     : <a href="mailto:openstack@lists.openstack.org">openstack@lists.openstack.org</a><br>
Unsubscribe : <a href="http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack" rel="noreferrer" target="_blank">http://lists.openstack.org/<wbr>cgi-bin/mailman/listinfo/<wbr>openstack</a><br>
<br></blockquote></div><br></div>