Re: [Netstack] Attaching VM to a single network

2012-05-30 Thread Rami Cohen
Thanks. On Thu, May 31, 2012 at 12:18 AM, Rami Cohen wrote: > Hi, > > Working with nova and quantum, I have realized that if a single project > contains more than one network, then a VM created within this project is > attached to all this networks. > Is it correct? > Is it possible to attach t

Re: [Netstack] Attaching VM to a single network

2012-05-30 Thread Piotr Siwczak
Try to use "--nic net-id=" parameter to nova boot. -Piotr On Wed, May 30, 2012 at 11:18 PM, Rami Cohen wrote: > Hi, > > Working with nova and quantum, I have realized that if a single project > contains more than one network, then a VM created within this project is > attached to all this netw

Re: [Netstack] Attaching VM to a single network

2012-05-30 Thread Emilien Macchi
Hi, To create a VM and attach it to a specific network, you should use : nova boot --image X --flavor X --nic net-id=X --nic net-id=X vm1 You can read more here . I have on