l3_agent.ini revision 2892
2521N/A[DEFAULT]
2521N/A# Show debugging output in log (sets DEBUG log level output)
2892N/A# debug = False
2521N/A
2892N/A# L3 requires that an interface driver be set. Choose the one that best
2521N/A# matches your plugin.
2521N/A# Solaris Elastic Virtual Switch (EVS)
2892N/Ainterface_driver = neutron.agent.solaris.interface.SolarisVNICDriver
2521N/A
2521N/A# Allow overlapping IP (Must have kernel build with CONFIG_NET_NS=y and
2521N/A# iproute2 package that supports namespaces).
2892N/Ause_namespaces = False
2521N/A
2521N/A# If use_namespaces is set as False then the agent can only configure one
2892N/A# router.
2892N/A
2892N/A# This is done by setting the specific router_id.
2521N/A# router_id =
2521N/A
2521N/A# Each L3 agent can be associated with at most one external network. This
2521N/A# value should be set to the UUID of that external network. If empty,
2521N/A# the agent will enforce that only a single external networks exists and
2521N/A# use that external network id
2521N/A# gateway_external_network_id =
2521N/A
2521N/A# Indicates that this L3 agent should also handle routers that do not have
2521N/A# an external network gateway configured. This option should be True only
2892N/A# for a single agent in a Neutron deployment, and may be False for all agents
2521N/A# if all routers must have an external network gateway
2521N/A# handle_internal_only_routers = True
2521N/A
2521N/A# Name of bridge used for external network traffic. This should be set to
2521N/A# empty value for the linux bridge
2892N/Aexternal_network_bridge =
2521N/A
2521N/A# seconds between re-sync routers' data if needed
2521N/A# periodic_interval = 40
2521N/A
2521N/A# seconds to start to sync routers' data after
2521N/A# starting agent
2521N/A# periodic_fuzzy_delay = 5
2521N/A
2892N/A# enable_metadata_proxy, which is true by default, can be set to False
2892N/A# if the Nova metadata server is not available
2892N/Aenable_metadata_proxy = False
2892N/A
2521N/A# Name of the datalink that connects to an external network. By default it's
2521N/A# set to net0.
2521N/A# external_network_datalink = net0
2521N/A
2521N/A# Allow forwarding of packets between tenant's networks
2521N/A# allow_forwarding_between_networks = False
2521N/A
2521N/A# An URI that specifies an EVS controller. It is of the form
2521N/A# ssh://user@hostname, where user is the username to use to connect
2521N/A# to EVS controller specified by hostname. By default it's set to
2521N/A# ssh://evsuser@localhost.
2521N/A# evs_controller = ssh://evsuser@localhost