![Bob Kukura](/assets/img/avatar_default.png)
Enhances openvswitch plugin to support flat networks and VLANs on multiple physical networks via the provider extension. Implements blueprint provider-networks. See http://wiki.openstack.org/ConfigureOpenvswitch for configuration and usage details. A devstack patch to support the updated openvswitch configuration variables is at https://review.openstack.org/#/c/11418/. Change-Id: Ic86b6f3b2e354c7d60bc2c330b334c23d349bc29
82 lines
2.8 KiB
INI
82 lines
2.8 KiB
INI
[DATABASE]
|
|
# This line MUST be changed to actually run the plugin.
|
|
# Example:
|
|
# sql_connection = mysql://root:nova@127.0.0.1:3306/ovs_quantum
|
|
# Replace 127.0.0.1 above with the IP address of the database used by the
|
|
# main quantum server. (Leave it as is if the database runs on this host.)
|
|
sql_connection = sqlite://
|
|
# Database reconnection retry times - in event connectivity is lost
|
|
# set to -1 implies an infinite retry count
|
|
# sql_max_retries = 10
|
|
# Database reconnection interval in seconds - in event connectivity is lost
|
|
reconnect_interval = 2
|
|
|
|
[OVS]
|
|
# (ListOpt) Comma-separated list of
|
|
# <physical_network>:<vlan_min>:<vlan_max> tuples enumerating ranges
|
|
# of VLAN IDs on named physical networks that are available for
|
|
# allocation.
|
|
# network_vlan_ranges = default:1000:2999
|
|
|
|
# (ListOpt) Comma-separated list of <tun_min>:<tun_max> tuples
|
|
# enumerating ranges of GRE tunnel IDs that are available for
|
|
# allocation.
|
|
# tunnel_id_ranges =
|
|
|
|
# Do not change this parameter unless you have a good reason to.
|
|
# This is the name of the OVS integration bridge. There is one per hypervisor.
|
|
# The integration bridge acts as a virtual "patch port". All VM VIFs are
|
|
# attached to this bridge and then "patched" according to their network
|
|
# connectivity.
|
|
# integration_bridge = br-int
|
|
|
|
# Only used if tunnel_id_ranges (above) is not empty.
|
|
# In most cases, the default value should be fine.
|
|
# tunnel_bridge = br-tun
|
|
|
|
# (ListOpt) Comma-separated list of <physical_network>:<bridge> tuples
|
|
# mapping physical network names to agent's node-specific OVS bridge
|
|
# names. Each bridge must exist, and should have physical network
|
|
# interface configured as a port.
|
|
# bridge_mappings = default:br-eth1
|
|
|
|
# Uncomment this line if tunnel_id_ranges (above) is not empty.
|
|
# Set local-ip to be the local IP address of this hypervisor.
|
|
# local_ip = 10.0.0.3
|
|
|
|
[AGENT]
|
|
# Agent's polling interval in seconds
|
|
polling_interval = 2
|
|
# Use "sudo quantum-rootwrap /etc/quantum/rootwrap.conf" to use the real
|
|
# root filter facility.
|
|
# Change to "sudo" to skip the filtering and just run the comand directly
|
|
root_helper = sudo
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# Sample Configurations.
|
|
#-----------------------------------------------------------------------------
|
|
#
|
|
# 1. With VLANs on eth1.
|
|
# [DATABASE]
|
|
# sql_connection = mysql://root:nova@127.0.0.1:3306/ovs_quantum
|
|
# [OVS]
|
|
# network_vlan_ranges = default:2000:3999
|
|
# tunnel_id_ranges =
|
|
# integration_bridge = br-int
|
|
# bridge_mappings = default:br-eth1
|
|
# [AGENT]
|
|
# root_helper = sudo
|
|
# Add the following setting, if you want to log to a file
|
|
#
|
|
# 2. With tunneling.
|
|
# [DATABASE]
|
|
# sql_connection = mysql://root:nova@127.0.0.1:3306/ovs_quantum
|
|
# [OVS]
|
|
# network_vlan_ranges =
|
|
# tunnel_id_ranges = 1:1000
|
|
# integration_bridge = br-int
|
|
# tunnel_bridge = br-tun
|
|
# local_ip = 10.0.0.3
|
|
# [AGENT]
|
|
# root_helper = sudo
|