neutron/neutron/plugins/ml2/drivers
Jenkins a02e23e6e2 Merge "Add pylint tox environment and disable all existing warnings" 2014-10-18 08:57:58 +00:00
..
arista Merge "Add pylint tox environment and disable all existing warnings" 2014-10-18 08:57:58 +00:00
brocade Remove @author(s) from copyright statements 2014-09-15 21:40:09 +09:00
cisco Remove @author(s) from copyright statements 2014-09-15 21:40:09 +09:00
freescale Separate Configuration from Freescale SDN ML2 mechanism Driver 2014-09-17 12:56:21 +05:30
l2pop Race for l2pop when ports go up/down on same host 2014-10-14 09:43:53 -07:00
mech_bigswitch Remove @author(s) from copyright statements 2014-09-15 21:40:09 +09:00
mech_nuage Remove @author(s) from copyright statements 2014-09-15 21:40:09 +09:00
mech_sriov ML2 mechanism driver for SR-IOV capable NIC based switching, Part 1 2014-07-22 18:42:39 +03:00
mlnx Remove binding:profile update from Mellanox ML2 MD 2014-08-28 21:53:08 +03: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
helpers.py Throw exception instances instead of classes 2014-09-07 12:56:30 +04: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 ofagent: Remove @author tags and update copyright notices 2014-09-04 12:38:11 +09:00
mech_openvswitch.py Adds OVS_HYBRID_PLUG flag to portbindings 2014-03-26 23:41:19 -07: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 Merge "Add unit tests covering single operations to ODL" 2014-09-27 15:20:17 +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 Tunnel ID range validation for VXLAN/GRE networks 2014-09-15 08:41:09 -07:00
type_local.py Prefer "val !=/== ref" over "val (not) in [ref]" in conditions 2014-08-26 19:58:58 +02:00
type_tunnel.py Tunnel ID range validation for VXLAN/GRE networks 2014-09-15 08:41:09 -07:00
type_vlan.py Throw exception instances instead of classes 2014-09-07 12:56:30 +04:00
type_vxlan.py Merge "Remove @author(s) from copyright statements" 2014-09-16 13:30:38 +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.