neutron/neutron/plugins/ml2/drivers
Jenkins ec30b11fe5 Merge "ML2 Cisco Nexus MD: VM migration support" 2014-03-24 07:36:58 +00:00
..
brocade Use save_and_reraise_exception when reraise exception 2014-03-21 21:31:55 +09:00
cisco Merge "ML2 Cisco Nexus MD: VM migration support" 2014-03-24 07:36:58 +00: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 Merge "BigSwitch ML2: Include bound_segment in port" 2014-03-21 05:54:39 +00:00
mlnx Add update binding:profile with physical_network 2014-03-19 10:08:09 +02:00
README.odl Add OpenDaylight ML2 MechanismDriver 2014-03-05 14:04:39 +00:00
__init__.py Rename Quantum to Neutron 2013-07-06 15:02:43 -04:00
mech_agent.py ML2: Remove validate_port_binding() and unbind_port() 2014-03-20 10:03:46 -04: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 ML2: Remove validate_port_binding() and unbind_port() 2014-03-20 10:03:46 -04:00
type_flat.py Update common network type consts to same origin 2013-12-10 19:29:12 +00:00
type_gre.py Fix bug:range() is not same in py3.x and py2.x 2014-03-11 16:44:47 +08: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 Fix bug:range() is not same in py3.x and py2.x 2014-03-11 16:44:47 +08:00
type_vxlan.py Merge "ml2: gre, vxlan type driver can leak segment_id" 2013-12-18 17:04:29 +00:00

README.odl

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.