[PATCH v2] wg-quick: openbsd: fix alternate routing table syntax
Ankur Kothari
ankur at lipidity.com
Tue Aug 6 00:57:28 CEST 2019
route(8) has always used the `-T` option to specify the
routing table; there is no `rdomain` option.
Signed-off-by: Ankur Kothari <ankur at lipidity.com>
---
src/tools/wg-quick/openbsd.bash | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/tools/wg-quick/openbsd.bash b/src/tools/wg-quick/openbsd.bash
index b234609..2cadeec 100755
--- a/src/tools/wg-quick/openbsd.bash
+++ b/src/tools/wg-quick/openbsd.bash
@@ -293,7 +293,7 @@ add_route() {
fi
if [[ -n $TABLE && $TABLE != auto ]]; then
- cmd route -q -n add "-$family" -rdomain "$TABLE" "$1" -iface "$ifaceroute"
+ cmd route -q -n -T "$TABLE" add "-$family" "$1" -iface "$ifaceroute"
elif [[ $1 == */0 ]]; then
if [[ $1 == *:* ]]; then
AUTO_ROUTE6=1
--
2.22.0
Sent via Migadu.com, world's easiest email hosting
More information about the WireGuard
mailing list