627a03766d
Fixes bug 1019728 also add unit tests for linux bridge plugin config Change-Id: Ibfea9bac87ba36f301671a35de81577debcd460e
75 lines
2.4 KiB
INI
75 lines
2.4 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]
|
|
# This enables the new OVSQuantumTunnelAgent which enables tunneling
|
|
# between hybervisors. Leave it set to False or omit for legacy behavior.
|
|
enable_tunneling = False
|
|
|
|
# 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 enable-tunneling (above) is True.
|
|
# In most cases, the default value should be fine.
|
|
tunnel_bridge = br-tun
|
|
|
|
# Uncomment this line if enable-tunneling is True above.
|
|
# Set local-ip to be the local IP address of this hypervisor.
|
|
# local_ip = 10.0.0.3
|
|
|
|
# Uncomment if you want to use custom VLAN range.
|
|
# vlan_min = 1
|
|
# vlan_max = 4094
|
|
|
|
[AGENT]
|
|
# Agent's polling interval in seconds
|
|
polling_interval = 2
|
|
# Change to "sudo quantum-rootwrap" to limit commands that can be run
|
|
# as root.
|
|
root_helper = sudo
|
|
# Use Quantumv2 API
|
|
target_v2_api = False
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# Sample Configurations.
|
|
#-----------------------------------------------------------------------------
|
|
#
|
|
# 1. Without tunneling.
|
|
# [DATABASE]
|
|
# sql_connection = mysql://root:nova@127.0.0.1:3306/ovs_quantum
|
|
# [OVS]
|
|
# enable_tunneling = False
|
|
# integration_bridge = br-int
|
|
# [AGENT]
|
|
# root_helper = sudo
|
|
# Add the following setting, if you want to log to a file
|
|
# log_file = /var/log/quantum/ovs_quantum_agent.log
|
|
# Use Quantumv2 API
|
|
# target_v2_api = False
|
|
#
|
|
# 2. With tunneling.
|
|
# [DATABASE]
|
|
# sql_connection = mysql://root:nova@127.0.0.1:3306/ovs_quantum
|
|
# [OVS]
|
|
# enable_tunneling = True
|
|
# integration_bridge = br-int
|
|
# tunnel_bridge = br-tun
|
|
# remote-ip-file = /opt/stack/remote-ips.txt
|
|
# local_ip = 10.0.0.3
|
|
# [AGENT]
|
|
# root_helper = sudo
|