b836e71eb1
On one hand, we sync router data (including routers, their gw ports, interfaces and floatingips) from l3_agent to quantum server periodically if needed. On the other hand, we notify l3 agent from quantum server when we delete or update a router's stuff, such as floating IP, interface and gwport and router itself. blueprint rpc-for-l3-agent bug #1080286 Change-Id: I60f3081975fc7164b22f9e9fa941e702a3f4c663
60 lines
2.0 KiB
INI
60 lines
2.0 KiB
INI
[DEFAULT]
|
|
# Show debugging output in log (sets DEBUG log level output)
|
|
# debug = True
|
|
|
|
# L3 requires that an interface driver be set. Choose the one that best
|
|
# matches your plugin.
|
|
|
|
# OVS
|
|
interface_driver = quantum.agent.linux.interface.OVSInterfaceDriver
|
|
# LinuxBridge
|
|
#interface_driver = quantum.agent.linux.interface.BridgeInterfaceDriver
|
|
|
|
# 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
|
|
|
|
# Allow overlapping IP (Must have kernel build with CONFIG_NET_NS=y and
|
|
# iproute2 package that supports namespaces).
|
|
# use_namespaces = True
|
|
|
|
# If use_namespaces is set as False then the agent can only configure one router.
|
|
|
|
# Where to store Quantum state files. This directory must be writable by the
|
|
# user executing the agent.
|
|
# state_path = /var/lib/quantum
|
|
|
|
# This is done by setting the specific router_id.
|
|
# router_id =
|
|
|
|
# Each L3 agent can be associated with at most one external network. This
|
|
# value should be set to the UUID of that external network. If empty,
|
|
# the agent will enforce that only a single external networks exists and
|
|
# use that external network id
|
|
# gateway_external_network_id =
|
|
|
|
# Indicates that this L3 agent should also handle routers that do not have
|
|
# an external network gateway configured. This option should be True only
|
|
# for a single agent in a Quantum deployment, and may be False for all agents
|
|
# if all routers must have an external network gateway
|
|
# handle_internal_only_routers = True
|
|
|
|
# Name of bridge used for external network traffic. This should be set to
|
|
# empty value for the linux bridge
|
|
# external_network_bridge = br-ex
|
|
|
|
# TCP Port used by Quantum metadata server
|
|
# metadata_port = 9697
|
|
|
|
# Send this many gratuitous ARPs for HA setup. Set it below or equal to 0
|
|
# to disable this feature.
|
|
# send_arp_for_ha = 3
|
|
|
|
# seconds between re-sync routers' data if needed
|
|
# periodic_interval = 40
|
|
|
|
# seconds to start to sync routers' data after
|
|
# starting agent
|
|
# periodic_fuzzy_delay = 5
|