84996a6039
This patch adds Ryu support to dhcp-agent. fixes bug 1030830 Ryu devstack support is available at https://review.openstack.org/#/c/10117/ Change-Id: I3f5fbe8600b4b674834e317e158bac1856b0349c Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
44 lines
1.4 KiB
INI
44 lines
1.4 KiB
INI
[DEFAULT]
|
|
# Show debugging output in log (sets DEBUG log level output)
|
|
# debug = true
|
|
|
|
# Where to store dnsmasq state files. This directory must be writable by the
|
|
# user executing the agent. The value below is compatible with a default
|
|
# devstack installation.
|
|
state_path = /opt/stack/data
|
|
|
|
|
|
# The DHCP requires that an inteface driver be set. Choose the one that best
|
|
# matches you plugin.
|
|
|
|
# OVS
|
|
interface_driver = quantum.agent.linux.interface.OVSInterfaceDriver
|
|
# LinuxBridge
|
|
#interface_driver = quantum.agent.linux.interface.BridgeInterfaceDriver
|
|
# Ryu
|
|
#interface_driver = quantum.agent.linux.interface.RyuInterfaceDriver
|
|
|
|
# The agent can use other DHCP drivers. Dnsmasq is the simplest and requires
|
|
# no additional setup of the DHCP server.
|
|
dhcp_driver = quantum.agent.linux.dhcp.Dnsmasq
|
|
|
|
#
|
|
# Temporary F2 variables until the Agent <> Quantum Server is reworked in F3
|
|
#
|
|
# The database used by the OVS Quantum plugin
|
|
db_connection = mysql://root:password@localhost/ovs_quantum?charset=utf8
|
|
|
|
# The database used by the LinuxBridge Quantum plugin
|
|
#db_connection = mysql://root:password@localhost/quantum_linux_bridge
|
|
|
|
# The database used by the Ryu Quantum plugin
|
|
#db_connection = mysql://root:password@localhost/ryu_quantum
|
|
|
|
# The Quantum user information for accessing the Quantum API.
|
|
auth_url = http://localhost:35357/v2.0
|
|
auth_region = RegionOne
|
|
admin_tenant_name = service
|
|
admin_user = quantum
|
|
admin_password = password
|
|
|