Temporarily revert setting net.add_addr_allfibs to 0.

It accidentally sweeped in r367486.
Revert to allow for proper commit message & warning.
This commit is contained in:
Alexander V. Chernikov 2020-11-08 18:11:12 +00:00
parent a1bd83fede
commit 76e6b37f6b

View File

@ -61,7 +61,7 @@
* By default, interface address routes are added to the fib of the interface.
* Once set to non-zero, adds interface address route to all fibs.
*/
VNET_DEFINE(u_int, rt_add_addr_allfibs) = 0;
VNET_DEFINE(u_int, rt_add_addr_allfibs) = 1;
SYSCTL_UINT(_net, OID_AUTO, add_addr_allfibs, CTLFLAG_RWTUN | CTLFLAG_VNET,
&VNET_NAME(rt_add_addr_allfibs), 0, "");