misc: Don't IPv[46] enable local0, it doesn't receive packets. 73/32873/2
authorNeale Ranns <neale@graphiant.com>
Wed, 23 Jun 2021 11:58:48 +0000 (11:58 +0000)
committerBeno�t Ganne <bganne@cisco.com>
Fri, 2 Jul 2021 07:41:32 +0000 (07:41 +0000)
Type: improvement

local0 exists just to burn sw_if_index=0 so we catch common API errors.

Signed-off-by: Neale Ranns <neale@graphiant.com>
Change-Id: I2901bb7d36d4c512e6698134a807bf9516ee05db

src/vnet/misc.c

index cd8bd78..18d4651 100644 (file)
@@ -86,11 +86,6 @@ vnet_main_init (vlib_main_t * vm)
   vnm->local_interface_hw_if_index = hw_if_index;
   vnm->local_interface_sw_if_index = hw->sw_if_index;
 
-  /* the local interface is used as an input interface when decapping from
-   * an IPSEC tunnel. so it needs to be IP enabled */
-  ip4_sw_interface_enable_disable (hw->sw_if_index, 1);
-  ip6_sw_interface_enable_disable (hw->sw_if_index, 1);
-
   return 0;
 }