From 964ffb40b4a1d93d88cfadaa53fc050ac67e443e Mon Sep 17 00:00:00 2001 From: Mauro Sardara Date: Tue, 22 Sep 2020 14:37:34 +0000 Subject: [HICN-640] Put all interfaces in VRF 10, not only MPLS interfaces. Signed-off-by: Mauro Sardara Change-Id: I2c7ff24ee4d31e4f5659ef88f8a6c4a9d9c630b1 --- hicn-plugin/src/route.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/hicn-plugin/src/route.c b/hicn-plugin/src/route.c index 3b774cd82..b569d431e 100644 --- a/hicn-plugin/src/route.c +++ b/hicn-plugin/src/route.c @@ -676,13 +676,6 @@ set_table_interface_add_del (vnet_main_t * vnm, u32 sw_if_index, u32 is_add) if (!is_add) return HICN_ERROR_NONE; - vnet_sw_interface_t * sw_int = vnet_get_sw_interface(vnm, sw_if_index); - vnet_hw_interface_t * hw_int = vnet_get_hw_interface(vnm, sw_int->hw_if_index); - - char * mpls = "mpls"; - if (strstr((char *)hw_int->name, mpls) == NULL) - return 0; - int rv = ip_table_bind (FIB_PROTOCOL_IP4, sw_if_index, HICN_FIB_TABLE, 1); if (!rv) -- cgit 1.2.3-korg