misc: Don't IPv[46] enable local0, it doesn't receive packets.

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
This commit is contained in:
Neale Ranns
2021-06-23 11:58:48 +00:00
committed by Beno�t Ganne
parent a57a7005d6
commit e40e7542a9

View 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;
}