net/wireguard: Revert wg-quick change which broke localhost
Reported by: Matt Smith <matt.xtaz@gmail.com> Obtained from: https://git.zx2c4.com/WireGuard/patch/?id=cba99f16a4ec9a229358ce1ed96080bd5ae04a7e
This commit is contained in:
parent
32e2b763b1
commit
040096a5e2
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=494184
@ -2,6 +2,7 @@
|
||||
|
||||
PORTNAME= wireguard
|
||||
PORTVERSION= 0.0.20190227
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= https://git.zx2c4.com/WireGuard/snapshot/
|
||||
DISTNAME= WireGuard-${PORTVERSION}
|
||||
|
31
net/wireguard/files/patch-wg-quick_freebsd.bash
Normal file
31
net/wireguard/files/patch-wg-quick_freebsd.bash
Normal file
@ -0,0 +1,31 @@
|
||||
From cba99f16a4ec9a229358ce1ed96080bd5ae04a7e Mon Sep 17 00:00:00 2001
|
||||
From: "Jason A. Donenfeld" <Jason@zx2c4.com>
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user