Re: [Openstack] Failed to add_interface: Bad router request: Router already has a port on subnet

2017-06-05 Thread Kevin Benton
What plugin are you using? On Jun 3, 2017 6:21 AM, "Muhammad Asif" wrote: > Hi Geeks, > > I have deployed openstack OCATA. I have created a private network connect > it with provider network using router. Everything was working fine without > pinging instance from controller. But later all of su

Re: [Openstack] Neutron - communication between private networks

2017-06-05 Thread Amit Uniyal
Hi all, I am trying to attach more then one port to a vm, from horizon it shows it attached but internally when I checked the IP was not s added. console log was: if-info: eth1,down, Its because adaptor is not mentioned in interface file. so after adding it there it works fine. later I found o

[Openstack] How to configure the interfaces file using cloud-init (meta-data) or any other way?

2017-06-05 Thread Jorge Luiz Correa
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: --- generated by cloud-init --- auto lo iface lo inet loopback auto ens3 iface ens3 inet dhcp --

Re: [Openstack] How to configure the interfaces file using cloud-init (meta-data) or any other way?

2017-06-05 Thread Amit Uniyal
Hi Jorge, You can use heat template to launch these type of VM's, The user data to edit interface file can be: user_data: #!/bin/bash sudo echo >> /etc/network/interfaces sudo echo auto ens3 >> /etc/network/interfaces sudo echo iface ens3 inet dhcp >> /etc/network/interfaces s