From 8801509656e955c27ebf4b9b3e39fbf717bb0367 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Tue, 23 Mar 2021 12:24:42 -0600 Subject: if_wg: drop pointtopoint flag We'll try to work around this in wg-quick(8) and see what happens. Signed-off-by: Jason A. Donenfeld --- src/if_wg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/if_wg.c b/src/if_wg.c index 9de10e8..35e59c2 100644 --- a/src/if_wg.c +++ b/src/if_wg.c @@ -3290,7 +3290,7 @@ wg_clone_create(struct if_clone *ifc, int unit, caddr_t params) wg_aip_init(&sc->sc_aips); if_setmtu(ifp, ETHERMTU - 80); - ifp->if_flags = IFF_POINTOPOINT | IFF_NOARP; + ifp->if_flags = IFF_NOARP; ifp->if_init = wg_init; ifp->if_reassign = wg_reassign; ifp->if_qflush = wg_qflush; -- cgit v1.2.3-59-g8ed1b