~ubuntu-cloud-archive/ubuntu/precise/quantum/folsom

« back to all changes in this revision

Viewing changes to etc/quantum/plugins/linuxbridge/linuxbridge_conf.ini

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Adam Gandelman, Chuck Short
  • Date: 2012-09-12 13:41:20 UTC
  • mfrom: (2.1.12)
  • Revision ID: package-import@ubuntu.com-20120912134120-sheqxy7c2q5x7m34
Tags: 2012.2~rc1-0ubuntu1
[ Adam Gandelman ]
* debain/*.postrm: Fix argument-less calls to update-rc.d, redirect
  to /dev/null.  (LP: #1047560)
* debian/quantum-server.upstart: Invoke start-stop-daemon properly.
  (LP: #1047404)
* debain/*.postrm, *.upstart: Ensure files are named for corresponding
  agent package, not plugin package.
* debian/control:
  - Group agents with plugins.
  - Fix some copy/paste mistakes.
  - Set dependencies between agents and corresponding plugins.
  - Recommend quantum-plugin-openvswitch for quantum-server.
  - Require the same version of quantum-common and python-quantum.
  - Add quantum-netns-cleanup utility to quantum-common.
* debian/patches/fix-quantum-configuration.patch: Use correct database
  for linuxbridge plugin, use OVS plugin by default, call quantum-rootwrap
  correctly. (LP: #1048668)
* Fix all use of /usr/sbin, things should go in /usr/bin.
* Remove dhcp and l3 plugins, they are not actually plugins.
* Rename packages quantum-plugin-{l3, dhcp}-agent to
  quantum-{l3, dhcp}-agent.
* debain/quantum-*-agent.upstart: Specify config files as a
  parameter to --config-file, specify log files for all.
* debian/*.logrotate: Add logrotate configs for server and agents.
* Install quantum_sudoers with quantum-common, not quantum-server.
* Install rootwrap filters only with the packages that require them.
* debian/*-agent.upstart: Specify --config-file=/etc/quantum/quantum.conf
  in addition to plugin-specific config.  Specify log files for all agents.
* Allow group 'adm' read access to /var/log/quantum.
* debian/quantum-server.postinst: Drop, all has been moved to quantum-common.
* Add packaging for quantum-plugin-nec.

[ Chuck Short ]
* New usptream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
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
 
2
12
# (ListOpt) Comma-separated list of
3
 
# <physical_network>:<vlan_min>:<vlan_max> tuples enumerating ranges
 
13
# <physical_network>[:<vlan_min>:<vlan_max>] tuples enumerating ranges
4
14
# of VLAN IDs on named physical networks that are available for
5
 
# allocation.
6
 
# network_vlan_ranges = default:1000:2999
 
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
7
22
 
8
23
[DATABASE]
9
24
# This line MUST be changed to actually run the plugin.
11
26
# sql_connection = mysql://root:nova@127.0.0.1:3306/quantum_linux_bridge
12
27
# Replace 127.0.0.1 above with the IP address of the database used by the
13
28
# main quantum server. (Leave it as is if the database runs on this host.)
14
 
sql_connection = sqlite:///var/lib/quantum/ovs.sqlite
 
29
sql_connection = sqlite:///var/lib/quantum/linuxbridge.sqlite
15
30
# Database reconnection retry times - in event connectivity is lost
16
31
# set to -1 implies an infinite retry count
17
32
# sql_max_retries = 10
21
36
[LINUX_BRIDGE]
22
37
# (ListOpt) Comma-separated list of
23
38
# <physical_network>:<physical_interface> tuples mapping physical
24
 
# network names to agent's node-specific physical network
25
 
# interfaces. Server uses physical network names for validation but
26
 
# ignores interfaces.
27
 
# physical_interface_mappings = default:eth1
 
39
# network names to the agent's node-specific physical network
 
40
# interfaces to be used for flat and VLAN networks. All physical
 
41
# networks listed in network_vlan_ranges on the server should have
 
42
# mappings to appropriate interfaces on each agent.
 
43
#
 
44
# Default: physical_interface_mappings =
 
45
# Example: physical_interface_mappings = physnet1:eth1
28
46
 
29
47
[AGENT]
30
48
# Agent's polling interval in seconds
32
50
# Use "sudo quantum-rootwrap /etc/quantum/rootwrap.conf" to use the real
33
51
# root filter facility.
34
52
# Change to "sudo" to skip the filtering and just run the comand directly
35
 
root_helper = "/usr/bin/quantum-rootwrap /etc/quantum/rootwrap.conf"
 
53
root_helper = "sudo /usr/bin/quantum-rootwrap /etc/quantum/rootwrap.conf"
36
54
# Use RPC messaging to interface between agent and plugin
37
55
# rpc = True