vmware-nsx/neutron/plugins/ml2/drivers
2014-03-20 15:44:57 +00:00
..
brocade Fixed Spelling error in Readme 2014-03-07 09:22:06 -08:00
cisco Prepare for multiple cisco ML2 mech drivers 2014-02-07 11:37:01 -05:00
l2pop Send fdb remove message when a port is migrated 2014-03-14 10:17:55 +01:00
mech_arista Improves Arista's ML2 driver's sync performance 2014-03-02 18:23:21 -08:00
mech_bigswitch ML2 BigSwitch: Don't modify parent context 2014-03-18 12:15:27 -07:00
mlnx Implement Mellanox ML2 MechanismDriver 2014-03-03 22:43:10 +02:00
__init__.py Rename Quantum to Neutron 2013-07-06 15:02:43 -04:00
mech_agent.py return false or true according to binding result 2014-03-19 14:38:35 +08:00
mech_hyperv.py Replace binding:capabilities with binding:vif_details 2014-02-23 22:56:45 -05:00
mech_linuxbridge.py Replace binding:capabilities with binding:vif_details 2014-02-23 22:56:45 -05:00
mech_ofagent.py Implement OpenFlow Agent mechanism driver 2014-03-02 13:40:10 +09:00
mech_openvswitch.py Replace binding:capabilities with binding:vif_details 2014-02-23 22:56:45 -05:00
mechanism_ncs.py Fix URL used in NCS mechanism driver sync_full() operation 2013-09-18 07:00:24 +00:00
mechanism_odl.py Add OpenDaylight ML2 MechanismDriver 2014-03-05 14:04:39 +00:00
README.odl Add OpenDaylight ML2 MechanismDriver 2014-03-05 14:04:39 +00:00
type_flat.py Update common network type consts to same origin 2013-12-10 19:29:12 +00:00
type_gre.py Merge "ml2: gre, vxlan type driver can leak segment_id" 2013-12-18 17:04:29 +00:00
type_local.py Update common network type consts to same origin 2013-12-10 19:29:12 +00:00
type_tunnel.py Apply six for metaclass 2013-11-18 17:58:58 +09:00
type_vlan.py Update common network type consts to same origin 2013-12-10 19:29:12 +00:00
type_vxlan.py Merge "ml2: gre, vxlan type driver can leak segment_id" 2013-12-18 17:04:29 +00:00

OpenDaylight ML2 MechanismDriver
================================
OpenDaylight is an Open Source SDN Controller developed by a plethora of
companies and hosted by the Linux Foundation. The OpenDaylight website
contains more information on the capabilities OpenDaylight provides:

    http://www.opendaylight.org

Theory of operation
===================
The OpenStack Neutron integration with OpenDaylight consists of the ML2
MechanismDriver which acts as a REST proxy and passess all Neutron API
calls into OpenDaylight. OpenDaylight contains a NB REST service (called
the NeutronAPIService) which caches data from these proxied API calls and
makes it available to other services inside of OpenDaylight. One current
user of the SB side of the NeutronAPIService is the OVSDB code in
OpenDaylight. OVSDB uses the neutron information to isolate tenant networks
using GRE or VXLAN tunnels.

How to use the OpenDaylight ML2 MechanismDriver
===============================================
To use the ML2 MechanismDriver, you need to ensure you have it configured
as one of the "mechanism_drivers" in ML2:

    mechanism_drivers=opendaylight

The next step is to setup the "[ml2_odl]" section in either the ml2_conf.ini
file or in a separate ml2_conf_odl.ini file. An example is shown below:

    [ml2_odl]
    password = admin
    username = admin
    url = http://192.168.100.1:8080/controller/nb/v2/neutron

When starting OpenDaylight, ensure you have the SimpleForwarding application
disabled or remove the .jar file from the plugins directory. Also ensure you
start OpenDaylight before you start OpenStack Neutron.

There is devstack support for this which will automatically pull down OpenDaylight
and start it as part of devstack as well. The patch for this will likely merge
around the same time as this patch merges.