examples/ipv4_multicast: enable multicast promiscuous
authorWei Zhao <wei.zhao1@intel.com>
Wed, 17 Oct 2018 07:41:26 +0000 (15:41 +0800)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 29 Oct 2018 01:57:43 +0000 (02:57 +0100)
commit23021f1c6bb8a5e35cf92dfe91ca9ce171b06997
tree22698dde6624ddfba4f4829936cbeb377cf195b1
parent8298310ffaddd1e2e9941b955c168476adb54f21
examples/ipv4_multicast: enable multicast promiscuous

This example has not been enable for receiving multicast
packet, so it will drop multicast packet. Users must send packet
with ether MAC destination address the same as pf port MAC address,
in order to forward packet successfully, but this is an example
for forwarding ipv4 multicastpacket. So calling function
rte_eth_promiscuous_enable() or rte_eth_allmulticast_enable() can
enable promiscuous mode of all multicast packet. And also, DPDK has
rte API function of rte_eth_dev_set_mc_addr_list() for setting
specific multicast filter table for specific multicast IP address,
but this example do not support this configuration, so it need to
be enable multicast promiscuous mode instead.

Signed-off-by: Wei Zhao <wei.zhao1@intel.com>
Tested-by: Dong Wang <dong1.wang@intel.com>
examples/ipv4_multicast/main.c