ab44545a76
Define the Mechanism Driver interface for create/update/delete operations on networks and ports. For each of these event, the Mechanism Driver provides one method that is called within the database transaction of the ml2 plugin method, and one that is called after the transaction is completed. Support for mechanism drivers is still a work-in-progress, and the interface is subject to change in future versions before the release of Havana. However this initial version should be sufficient to enable others to start defining their own mechanism drivers. Change-Id: Ife30215589792ee27df9897d3b2bc04392638266 Implements: blueprint ml2-mechanism-drivers Fixes: bug #1199977 Fixes: bug #1199978 DocImpact
39 lines
1.3 KiB
INI
39 lines
1.3 KiB
INI
|
|
[ml2]
|
|
# (ListOpt) List of network type driver entrypoints to be loaded from
|
|
# the quantum.ml2.type_drivers namespace.
|
|
#
|
|
# type_drivers = local,flat,vlan
|
|
# Example: type_drivers = flat,vlan,gre
|
|
|
|
# (ListOpt) Ordered list of network_types to allocate as tenant
|
|
# networks. The default value 'local' is useful for single-box testing
|
|
# but provides no connectivity between hosts.
|
|
#
|
|
# tenant_network_types = local
|
|
# Example: tenant_network_types = vlan,gre
|
|
|
|
# (ListOpt) Ordered list of networking mechanism driver entrypoints
|
|
# to be loaded from the neutron.ml2.mechanism_drivers namespace.
|
|
# mechanism_drivers =
|
|
# Example: mechanism_drivers = arista
|
|
# Example: mechanism_drivers = cisco,logger
|
|
|
|
[ml2_type_flat]
|
|
# (ListOpt) List of physical_network names with which flat networks
|
|
# can be created. Use * to allow flat networks with arbitrary
|
|
# physical_network names.
|
|
#
|
|
# flat_networks =
|
|
# Example:flat_networks = physnet1,physnet2
|
|
# Example:flat_networks = *
|
|
|
|
[ml2_type_vlan]
|
|
# (ListOpt) List of <physical_network>[:<vlan_min>:<vlan_max>] tuples
|
|
# specifying physical_network names usable for VLAN provider and
|
|
# tenant networks, as well as ranges of VLAN tags on each
|
|
# physical_network available for allocation as tenant networks.
|
|
#
|
|
# network_vlan_ranges =
|
|
# Example: network_vlan_ranges = physnet1:1000:2999,physnet2
|