diff --git a/src/wg-quick/darwin.bash b/src/wg-quick/darwin.bash index 8bcc404..ece16f2 100755 --- a/src/wg-quick/darwin.bash +++ b/src/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/wg-quick/freebsd.bash b/src/wg-quick/freebsd.bash index 40dc3f1..a2bdafb 100755 --- a/src/wg-quick/freebsd.bash +++ b/src/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/wg-quick/openbsd.bash b/src/wg-quick/openbsd.bash index 786d145..e0c6d1a 100755 --- a/src/wg-quick/openbsd.bash +++ b/src/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)