neutron/neutron/plugins/ml2/drivers
sanuptpm 598accd415 Fix spelling mistakes
Change-Id: Idedb39b43bc71db0a7e331cc23535d162177c8b5
2014-08-01 16:10:23 +00:00
..
arista Fix spelling mistakes 2014-08-01 16:10:23 +00:00
brocade Added support for NOS version 4.1.0, 5.0.0 and greater 2014-07-09 13:25:01 -07:00
cisco Fix spelling mistakes 2014-08-01 16:10:23 +00:00
l2pop ML2 additions to support DVR 2014-07-27 09:40:28 -07:00
mech_bigswitch ML2: Bind ports outside transactions 2014-07-14 15:13:52 -04:00
mech_sriov ML2 mechanism driver for SR-IOV capable NIC based switching, Part 1 2014-07-22 18:42:39 +03: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
helpers.py Correct LOG.debug use 2014-07-21 17:26:32 +02:00
mech_agent.py ML2: Update a comment after the recent bind_port change 2014-07-18 23:19:19 +09: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 Add partial specs support in ML2 for multiprovider extension 2014-07-21 20:02:14 +00:00
type_gre.py Add partial specs support in ML2 for gre/vxlan provider networks 2014-07-21 20:00:59 +00:00
type_local.py Add partial specs support in ML2 for multiprovider extension 2014-07-21 20:02:14 +00:00
type_tunnel.py Add partial specs support in ML2 for gre/vxlan provider networks 2014-07-21 20:00:59 +00:00
type_vlan.py Add partial specs support in ML2 for vlan provider networks 2014-07-19 10:40:49 +02:00
type_vxlan.py Add partial specs support in ML2 for gre/vxlan provider networks 2014-07-21 20:00:59 +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.