
bug 985470 bug 985646 The fixes enable the OVS and linuxbridge agenets to "keep alive" when the host running the server/plugin is down. Fixes after comments. Better logging Fixes after comments - added reconnect interval + cleanup Fixes after comments - simplify code + ovs intervals moved to configuration file Fixes after comments - move int conversion to configuration Fixes after comments - if one of the polling interval or reconnect interval are not defined in the relevant ini files then a default value is used. Fixes after comments and merges with HACKING.rst fixes Fixes after port binding comments Fixes after comments from gongysh Fixes after comments - align comments in agent ini files Fixes - revert some code Change-Id: I9194f142478b130e8ef198b019539357a9916d7f
30 lines
898 B
INI
30 lines
898 B
INI
[VLANS]
|
|
vlan_start=1000
|
|
vlan_end=3000
|
|
|
|
[DATABASE]
|
|
# Use the following when running the tests for the in-memory DB
|
|
connection = sqlite
|
|
# Uncomment the following for using the MySQL DB when actually running the plugin,
|
|
# also remove the earlier sqlite connection configuration
|
|
#connection = mysql
|
|
name = quantum_linux_bridge
|
|
user = <mysql_user_name_here>
|
|
pass = <mysql_password_here>
|
|
host = <hostname_or_IP_address_of_Quantum_server>
|
|
# If you use a non-default port for the DB, change the following
|
|
port = 3306
|
|
|
|
[LINUX_BRIDGE]
|
|
# This is the interface connected to the switch on your Quantum network
|
|
physical_interface = eth1
|
|
|
|
[AGENT]
|
|
# Agent's polling interval in seconds
|
|
polling_interval = 2
|
|
# Agent's database reconnection interval in seconds - in event connectivity is lost
|
|
reconnect_interval = 2
|
|
# Change to "sudo quantum-rootwrap" to limit commands that can be run
|
|
# as root.
|
|
root_helper = sudo
|