[Openstack] Help about Quantum Conf

2012-10-09 Thread Bilel Msekni

Hi,

I have finished installing OpenStack Folsom but i am encountring a small 
issue about configuring Quantum.
I would like to start the simplest scenario Flat Network 
http://docs.openstack.org/trunk/openstack-network/admin/content/use_cases_single_flat.html 
but i dont know how to configure my bridges (br-int, br-ex and br-tun)


i have two NICs on each node ( primary eth0 and secondary eth1)

If someone can show me the way, i will be very grateful since i will be 
writing a guide about it for future users.


Thanks.
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] Help about Quantum Conf

2012-10-09 Thread Emilien Macchi
Hi,I suggest you to read the official documentation [1] which helps to install and configure Quantum + OVS for many use cases.I think you should use 3 NICs for your controller node : eth0 for management network, eth1 for VMs traffic (used by OVS), and eth2 for public network (i.e. Internet). For compute nodes, I suggest using 2 NIC : eth0 for management network and eth1 for VMs traffic.[1] http://docs.openstack.org/trunk/openstack-network/admin/content/demo_installions.htmlRegards--Emilien MacchiOpenStack EngineerEMAIL : emilien.mac...@enovance.com –SKYPE :enovance-emilien.macchiWEB :www.enovance.comDe: "Bilel Msekni" ski...@hotmail.frÀ: openstack@lists.launchpad.net, "emilien openstack" emilien.openst...@gmail.comEnvoyé: Mardi 9 Octobre 2012 09:29:30Objet: [Openstack] Help about Quantum Conf





Hi,

I have finished installing OpenStack Folsom but i am encountring a
small issue about configuring Quantum.
I would like to start the simplest scenario Flat
  Network but i dont know how to configure my bridges (br-int,
br-ex and br-tun)

i have two NICs on each node ( primary eth0 and secondary eth1)

If someone can show me the way, i will be very grateful since i will
be writing a guide about it for future users.

Thanks.


___Mailing list: https://launchpad.net/~openstackPost to   : openstack@lists.launchpad.netUnsubscribe : https://launchpad.net/~openstackMore help  : https://help.launchpad.net/ListHelp___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] Help about Quantum Conf

2012-10-09 Thread gong yong sheng

Hi,
quantum.conf:
core_plugin = 
quantum.plugins.openvswitch.ovs_quantum_plugin.OVSQuantumPluginV2

ovs_quantum_plugin.ini:
network_vlan_ranges = physnet1
enable_tunneling = False
bridge_mappings = physnet1:br-eth0
To create a shared provider network:
quantum net-create sharednet1 --shared --provider:network_type flat 
--provider:physical_network physnet1


Before we can run, create br-eth0:
sudo ovs-vsctl add-br br-eth0
sudo ovs-vsctl add-port br-eth0 eth0

we don't need br-ex since we don't use router and floatingip
 and br-tun since we don't use GRE.

Regards,
Yong Sheng Gong
On 10/09/2012 03:29 PM, Bilel Msekni wrote:

Hi,

I have finished installing OpenStack Folsom but i am encountring a 
small issue about configuring Quantum.
I would like to start the simplest scenario Flat Network 
http://docs.openstack.org/trunk/openstack-network/admin/content/use_cases_single_flat.html 
but i dont know how to configure my bridges (br-int, br-ex and br-tun)


i have two NICs on each node ( primary eth0 and secondary eth1)

If someone can show me the way, i will be very grateful since i will 
be writing a guide about it for future users.


Thanks.


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] Help about Quantum Conf

2012-10-09 Thread Bilel Msekni

Thanks sheng ! you are a life saver ;)
Le 09/10/2012 10:29, gong yong sheng a écrit :

Hi,
quantum.conf:
core_plugin = 
quantum.plugins.openvswitch.ovs_quantum_plugin.OVSQuantumPluginV2

ovs_quantum_plugin.ini:
network_vlan_ranges = physnet1
enable_tunneling = False
bridge_mappings = physnet1:br-eth0
To create a shared provider network:
quantum net-create sharednet1 --shared --provider:network_type flat 
--provider:physical_network physnet1


Before we can run, create br-eth0:
sudo ovs-vsctl add-br br-eth0
sudo ovs-vsctl add-port br-eth0 eth0

we don't need br-ex since we don't use router and floatingip
 and br-tun since we don't use GRE.

Regards,
Yong Sheng Gong
On 10/09/2012 03:29 PM, Bilel Msekni wrote:

Hi,

I have finished installing OpenStack Folsom but i am encountring a 
small issue about configuring Quantum.
I would like to start the simplest scenario Flat Network 
http://docs.openstack.org/trunk/openstack-network/admin/content/use_cases_single_flat.html 
but i dont know how to configure my bridges (br-int, br-ex and br-tun)


i have two NICs on each node ( primary eth0 and secondary eth1)

If someone can show me the way, i will be very grateful since i will 
be writing a guide about it for future users.


Thanks.


___
Mailing list:https://launchpad.net/~openstack
Post to :openstack@lists.launchpad.net
Unsubscribe :https://launchpad.net/~openstack
More help   :https://help.launchpad.net/ListHelp




___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] Help about Quantum Conf

2012-10-09 Thread Anne Gentle
On Tue, Oct 9, 2012 at 3:11 AM, Bilel Msekni ski...@hotmail.fr wrote:

  Hi,

 thanks for replying Emilien, I will surely do my best in there but you
 know, OpenStack documentation is still really not updated especially for
 the Folsom release.


Hi Bilel -

The documentation for Folsom is updated and available as trunk - can you
specify the gaps you still see via logging doc bugs at
http://bugs.launchpad.net/openstack-manuals? We are 8 doc bugs away from
releasing for Folsom, so I'd like to find out more about this perception.

Thanks,
Anne



 Le 09/10/2012 09:55, Emilien Macchi a écrit :

 Hi,

 I suggest you to read the official documentation [1] which helps to
 install and configure Quantum + OVS for many use cases.

 I think you should use 3 NICs for your controller node : eth0 for
 management network, eth1 for VMs traffic (used by OVS), and eth2 for public
 network (i.e. Internet). For compute nodes, I suggest using 2 NIC : eth0
 for management network and eth1 for VMs traffic.


 [1]
 http://docs.openstack.org/trunk/openstack-network/admin/content/demo_installions.html

 Regards

  *--
 Emilien Macchi**
 *OpenStack Engineer



  http://www.enovance.com
 *EMAIL : *emilien.mac...@enovance.com – *SKYPE : *enovance-emilien.macchi
 *WEB : *www.enovance.com

  http://www.enocloud.com



 --
 *De: *Bilel Msekni ski...@hotmail.fr ski...@hotmail.fr
 *À: *openstack@lists.launchpad.net, emilien openstack
 emilien.openst...@gmail.com emilien.openst...@gmail.com
 *Envoyé: *Mardi 9 Octobre 2012 09:29:30
 *Objet: *[Openstack] Help about Quantum Conf

 Hi,

 I have finished installing OpenStack Folsom but i am encountring a small
 issue about configuring Quantum.
 I would like to start the simplest scenario Flat 
 Networkhttp://docs.openstack.org/trunk/openstack-network/admin/content/use_cases_single_flat.htmlbut
  i dont know how to configure my bridges (br-int, br-ex and br-tun)

 i have two NICs on each node ( primary eth0 and secondary eth1)

 If someone can show me the way, i will be very grateful since i will be
 writing a guide about it for future users.

 Thanks.

 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp



 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp


image/pngimage/png___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp