From 0757a32baaa1eb4b3e763b7e69a4af889815808d Mon Sep 17 00:00:00 2001 From: Michael Borokhovich Date: Wed, 18 Oct 2017 20:29:30 +0000 Subject: Fix multicast packet reception. This commit adds the 224.0.0.0/24 entry to the mfib, making it possible to receive multicast packets. Previously, multicast packets would not be received because the entry was added to the unicast fib and not mfib. Change-Id: Id324805da3f214b3b68e9dba8b3967c615135765 Signed-off-by: Michael Borokhovich --- router/router/tap_inject_node.c | 1 + 1 file changed, 1 insertion(+) (limited to 'router/router/tap_inject_node.c') diff --git a/router/router/tap_inject_node.c b/router/router/tap_inject_node.c index 32c1ab1..8282c4c 100644 --- a/router/router/tap_inject_node.c +++ b/router/router/tap_inject_node.c @@ -348,6 +348,7 @@ const static char *const tap_inject_tx_nodes[] = { }; const static char *const *const tap_inject_nodes[DPO_PROTO_NUM] = { + [DPO_PROTO_IP4] = tap_inject_tx_nodes, [DPO_PROTO_IP6] = tap_inject_tx_nodes, }; -- cgit 1.2.3-korg