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
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
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
--
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