aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/tools/wg-quick/darwin.bash1
-rwxr-xr-xsrc/tools/wg-quick/freebsd.bash1
-rwxr-xr-xsrc/tools/wg-quick/openbsd.bash1
3 files changed, 0 insertions, 3 deletions
diff --git a/src/tools/wg-quick/darwin.bash b/src/tools/wg-quick/darwin.bash
index 8bcc404..ece16f2 100755
--- a/src/tools/wg-quick/darwin.bash
+++ b/src/tools/wg-quick/darwin.bash
@@ -187,7 +187,6 @@ collect_gateways() {
GATEWAY6=""
while read -r destination gateway _; do
[[ $destination == default ]] || continue
- [[ $gateway == fe80:* ]] && continue
GATEWAY6="$gateway"
break
done < <(netstat -nr -f inet6)
diff --git a/src/tools/wg-quick/freebsd.bash b/src/tools/wg-quick/freebsd.bash
index 40dc3f1..a2bdafb 100755
--- a/src/tools/wg-quick/freebsd.bash
+++ b/src/tools/wg-quick/freebsd.bash
@@ -188,7 +188,6 @@ collect_gateways() {
GATEWAY6=""
while read -r destination gateway _; do
[[ $destination == default ]] || continue
- [[ $gateway == fe80:* ]] && continue
GATEWAY6="$gateway"
break
done < <(netstat -nr -f inet6)
diff --git a/src/tools/wg-quick/openbsd.bash b/src/tools/wg-quick/openbsd.bash
index 786d145..e0c6d1a 100755
--- a/src/tools/wg-quick/openbsd.bash
+++ b/src/tools/wg-quick/openbsd.bash
@@ -185,7 +185,6 @@ collect_gateways() {
GATEWAY6=""
while read -r destination gateway _; do
[[ $destination == default ]] || continue
- [[ $gateway == fe80:* ]] && continue
GATEWAY6="$gateway"
break
done < <(netstat -nr -f inet6)