diff --git a/puppet/services/neutron-ovs-agent.yaml b/puppet/services/neutron-ovs-agent.yaml index 2a12a1b8be..8685f3c13d 100644 --- a/puppet/services/neutron-ovs-agent.yaml +++ b/puppet/services/neutron-ovs-agent.yaml @@ -105,6 +105,10 @@ parameters: description: | Set additional ethertypes to to be configured on neutron firewalls. type: comma_delimited_list + NeutronEnableIgmpSnooping: + description: Enable IGMP Snooping. + type: boolean + default: false conditions: no_firewall_driver: {equals : [{get_param: NeutronOVSFirewallDriver}, '']} @@ -156,6 +160,7 @@ outputs: neutron::agents::ml2::ovs::tunnel_types: {get_param: NeutronTunnelTypes} neutron::agents::ml2::ovs::extensions: {get_param: NeutronAgentExtensions} neutron::agents::ml2::ovs::tunnel_csum: {get_param: NeutronOVSTunnelCsum} + neutron::agents::ml2::ovs::igmp_snooping_enable: {get_param: NeutronEnableIgmpSnooping} # NOTE: bind IP is found in hiera replacing the network name with the # local node IP for the given network; replacement examples # (eg. for internal_api): diff --git a/releasenotes/notes/IGMP-snooping-for-ml2ovs-d794ed4eab7c098c.yaml b/releasenotes/notes/IGMP-snooping-for-ml2ovs-d794ed4eab7c098c.yaml new file mode 100644 index 0000000000..501ef81687 --- /dev/null +++ b/releasenotes/notes/IGMP-snooping-for-ml2ovs-d794ed4eab7c098c.yaml @@ -0,0 +1,3 @@ +--- +features: + - Adds support for IGMP snooping (Multicast) in the Neutron ML2/OVS driver.