allow to configure broadcast_dhcp in neutron DHCP server

Allow Neutron DHCP agent to use broadcast in DHCP replies by
enabling this parameter NeutronDhcpServerBroadcastReply

Change-Id: I09859ea39e7fc348b7ff6626d24eb9d058d642d2
Closes-Bug: 1818035
This commit is contained in:
Moshe Levi 2017-11-30 08:11:29 +02:00 committed by waleed mousa
parent 613a1b552b
commit 65c62f47f1
2 changed files with 9 additions and 0 deletions

View File

@ -121,6 +121,10 @@ parameters:
default: ''
type: string
description: Name of Open vSwitch bridge to use
NeutronDhcpServerBroadcastReply:
default: false
description: Neutron DHCP agent to use broadcast in DHCP replies
type: boolean
conditions:
@ -180,6 +184,7 @@ outputs:
neutron::agents::dhcp::dnsmasq_local_resolv: {get_param: NeutronEnableInternalDNS}
neutron::agents::dhcp::dnsmasq_dns_servers: {get_param: NeutronDhcpAgentDnsmasqDnsServers}
neutron::agents::dhcp::interface_driver: {get_param: NeutronInterfaceDriver}
neutron::agents::dhcp::dhcp_broadcast_reply: {get_param: NeutronDhcpServerBroadcastReply}
neutron::agents::dhcp::debug:
if:
- service_debug_unset

View File

@ -0,0 +1,4 @@
---
features:
- |
Allow Neutron DHCP agent to use broadcast in DHCP replies