Index: head/net/wireguard/Makefile =================================================================== --- head/net/wireguard/Makefile (revision 494183) +++ head/net/wireguard/Makefile (revision 494184) @@ -1,33 +1,34 @@ # $FreeBSD$ PORTNAME= wireguard PORTVERSION= 0.0.20190227 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= https://git.zx2c4.com/WireGuard/snapshot/ DISTNAME= WireGuard-${PORTVERSION} MAINTAINER= decke@FreeBSD.org COMMENT= Fast, modern and secure VPN Tunnel LICENSE= GPLv2 LICENSE_FILE= ${WRKDIR}/${DISTNAME}/COPYING RUN_DEPENDS= bash:shells/bash \ wireguard-go:net/wireguard-go USES= gmake tar:xz USE_RC_SUBR= ${PORTNAME} WRKSRC= ${WRKDIR}/${DISTNAME}/src/tools ALL_TARGET= MAKE_ARGS= WITH_WGQUICK=yes WITH_BASHCOMPLETION=yes MAKE_ENV+= MANDIR="${MANPREFIX}/man" \ SYSCONFDIR="${PREFIX}/etc" post-patch: @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ ${WRKSRC}/completion/wg-quick.bash-completion \ ${WRKSRC}/wg-quick/freebsd.bash .include Index: head/net/wireguard/files/patch-wg-quick_freebsd.bash =================================================================== --- head/net/wireguard/files/patch-wg-quick_freebsd.bash (nonexistent) +++ head/net/wireguard/files/patch-wg-quick_freebsd.bash (revision 494184) @@ -0,0 +1,31 @@ +From cba99f16a4ec9a229358ce1ed96080bd5ae04a7e Mon Sep 17 00:00:00 2001 +From: "Jason A. Donenfeld" +Date: Thu, 28 Feb 2019 19:03:11 +0100 +Subject: wg-quick: freebsd: rebreak interface loopback, while fixing localhost + +The commit 7c833642 ("wg-quick: freebsd: allow loopback to work") was +supposed to make things better, but actually it just started sending +legitimate localhost traffic over the WireGuard interface, which is +really quite bad. + +This reverts commit 7c833642dfa342218602ab18e7091e86408d2982. +--- + src/tools/wg-quick/freebsd.bash | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/tools/wg-quick/freebsd.bash b/src/tools/wg-quick/freebsd.bash +index 93f1a3b7..e83dbef0 100755 +--- wg-quick/freebsd.bash ++++ wg-quick/freebsd.bash +@@ -158,7 +158,7 @@ add_addr() { + if [[ $1 == *:* ]]; then + cmd ifconfig "$INTERFACE" inet6 "$1" alias + else +- cmd ifconfig "$INTERFACE" inet "$1" 127.0.0.1 alias ++ cmd ifconfig "$INTERFACE" inet "$1" "${1%%/*}" alias + fi + } + +-- +cgit v1.2.1-20-gc37e + Property changes on: head/net/wireguard/files/patch-wg-quick_freebsd.bash ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property