neutron/neutron/plugins/ml2/drivers
Jenkins e9f662ef1b Merge "validate flat networks physical name" 2014-07-01 19:27:30 +00:00
..
brocade Merge "Brocade mechanism driver depends on the brocade plugin templates" 2014-06-22 14:14:10 +00:00
cisco Merge "Remove redundant default=None for config options" 2014-05-28 22:21:23 +00:00
l2pop Moved rpc_compat.py code back into rpc.py 2014-06-24 10:35:39 +02:00
mech_arista Typographical correction of Arista ML2 help 2014-04-07 21:45:49 -04:00
mech_bigswitch Remove the useless vim modelines 2014-06-21 15:07:31 +08:00
mlnx Add physical_network to binding:vif_details dictionary 2014-04-28 10:55:29 +03:00
README.fslsdn Freescale SDN Mechanism Driver for ML2 Plugin 2014-06-07 08:06:29 +05:30
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 Enable hacking H301 check 2014-04-01 13:10:14 -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 Adds OVS_HYBRID_PLUG flag to portbindings 2014-03-26 23:41:19 -07:00
mech_openvswitch.py Adds OVS_HYBRID_PLUG flag to portbindings 2014-03-26 23:41:19 -07:00
mechanism_fslsdn.py Freescale SDN Mechanism Driver for ML2 Plugin 2014-06-07 08:06:29 +05:30
mechanism_ncs.py Fix URL used in NCS mechanism driver sync_full() operation 2013-09-18 07:00:24 +00:00
mechanism_odl.py Allow vlan type usage for OpenDaylight ml2 2014-05-19 18:38:15 +00:00
type_flat.py validate flat networks physical name 2014-06-25 11:51:05 -07:00
type_gre.py Fix H302 violations in plugins package 2014-05-04 12:40:05 +02:00
type_local.py Update common network type consts to same origin 2013-12-10 19:29:12 +00:00
type_tunnel.py Remove __init__ method from TunnelCallback mixin 2014-06-25 08:16:37 -07:00
type_vlan.py Fix H302 violations in plugins package 2014-05-04 12:40:05 +02:00
type_vxlan.py Improve vxlan type driver initialization performance 2014-06-11 12:10:35 +04: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.