76df5b1dc1
bug #1042028 Allows user to invoke L3-agent in a way that limits the agent to implementing only routers associated with a particular external network. Thus, it is possible to have a deployment with multiple external networks, since you can run one agent per external network. Also makes l3-agent pay attention to router admin_state_up field. Change-Id: Ia79d29301530718bc381c8e5a9d197de9452bce2
44 lines
1.6 KiB
INI
44 lines
1.6 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
|
|
|
|
# The Quantum user information for accessing the Quantum API.
|
|
auth_url = http://localhost:35357/v2.0
|
|
auth_region = RegionOne
|
|
admin_tenant_name = %SERVICE_TENANT_NAME%
|
|
admin_user = %SERVICE_USER%
|
|
admin_password = %SERVICE_PASSWORD%
|
|
|
|
# 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.
|
|
# 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_net_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
|