summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-neutron/linuxbridge_conf.ini
diff options
context:
space:
mode:
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-neutron/linuxbridge_conf.ini')
-rw-r--r--meta-openstack/recipes-devtools/python/python-neutron/linuxbridge_conf.ini63
1 files changed, 63 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-neutron/linuxbridge_conf.ini b/meta-openstack/recipes-devtools/python/python-neutron/linuxbridge_conf.ini
new file mode 100644
index 0000000..d3646d5
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-neutron/linuxbridge_conf.ini
@@ -0,0 +1,63 @@
1[VLANS]
2# (StrOpt) Type of network to allocate for tenant networks. The
3# default value 'local' is useful only for single-box testing and
4# provides no connectivity between hosts. You MUST change this to
5# 'vlan' and configure network_vlan_ranges below in order for tenant
6# networks to provide connectivity between hosts. Set to 'none' to
7# disable creation of tenant networks.
8#
9# Default: tenant_network_type = local
10# Example: tenant_network_type = vlan
11
12# (ListOpt) Comma-separated list of
13# <physical_network>[:<vlan_min>:<vlan_max>] tuples enumerating ranges
14# of VLAN IDs on named physical networks that are available for
15# allocation. All physical networks listed are available for flat and
16# VLAN provider network creation. Specified ranges of VLAN IDs are
17# available for tenant network allocation if tenant_network_type is
18# 'vlan'. If empty, only local networks may be created.
19#
20# Default: network_vlan_ranges =
21# Example: network_vlan_ranges = physnet1:1000:2999
22
23[DATABASE]
24# This line MUST be changed to actually run the plugin.
25# Example:
26# sql_connection = mysql://root:nova@127.0.0.1:3306/neutron_linux_bridge
27# Replace 127.0.0.1 above with the IP address of the database used by the
28# main neutron server. (Leave it as is if the database runs on this host.)
29sql_connection = postgresql://%DB_USER%:%DB_PASSWORD%@localhost/neutron
30# Database reconnection retry times - in event connectivity is lost
31# set to -1 implies an infinite retry count
32# sql_max_retries = 10
33# Database reconnection interval in seconds - if the initial connection to the
34# database fails
35reconnect_interval = 2
36# Enable the use of eventlet's db_pool for MySQL. The flags sql_min_pool_size,
37# sql_max_pool_size and sql_idle_timeout are relevant only if this is enabled.
38# sql_dbpool_enable = False
39# Minimum number of SQL connections to keep open in a pool
40# sql_min_pool_size = 1
41# Maximum number of SQL connections to keep open in a pool
42# sql_max_pool_size = 5
43# Timeout in seconds before idle sql connections are reaped
44# sql_idle_timeout = 3600
45
46[LINUX_BRIDGE]
47# (ListOpt) Comma-separated list of
48# <physical_network>:<physical_interface> tuples mapping physical
49# network names to the agent's node-specific physical network
50# interfaces to be used for flat and VLAN networks. All physical
51# networks listed in network_vlan_ranges on the server should have
52# mappings to appropriate interfaces on each agent.
53#
54# Default: physical_interface_mappings =
55# Example: physical_interface_mappings = physnet1:eth1
56
57[AGENT]
58# Agent's polling interval in seconds
59polling_interval = 2
60
61[SECURITYGROUP]
62# Firewall driver for realizing neutron security group function
63firewall_driver = neutron.agent.linux.iptables_firewall.IptablesFirewallDriver