From: Nick Hainke Date: Thu, 6 Jan 2022 23:22:00 +0000 (+0100) Subject: wg-installer: add ipv4 support X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=98d8680a8c26adfba431da008c9a76ff85786390;p=feed%2Fpackages.git wg-installer: add ipv4 support Add base_v4prefix to allow ipv4 mesh connections. Signed-off-by: Nick Hainke --- diff --git a/net/wg-installer/wg-server/config/wgserver.conf b/net/wg-installer/wg-server/config/wgserver.conf index c68f0d0c05..638ac19d89 100644 --- a/net/wg-installer/wg-server/config/wgserver.conf +++ b/net/wg-installer/wg-server/config/wgserver.conf @@ -2,6 +2,7 @@ config server option port_start '51820' option port_end '52820' option base_prefix '2002::/64' + option base_v4prefix '10.0.0.1/24' option wg_key '/root/wg.key' option wg_pub '/root/wg.pub' option timeout_handshake '600' diff --git a/net/wg-installer/wg-server/lib/wg_functions.sh b/net/wg-installer/wg-server/lib/wg_functions.sh index 2d38c60c9f..9a68fdce95 100644 --- a/net/wg-installer/wg-server/lib/wg_functions.sh +++ b/net/wg-installer/wg-server/lib/wg_functions.sh @@ -60,6 +60,14 @@ wg_register () { wg set $ifname listen-port $port private-key $gw_key peer $public_key allowed-ips ::0/0 ip -6 a a $gw_ip_assign dev $ifname ip -6 a a fe80::1/64 dev $ifname + + v4prefix=$(uci get wgserver.@server[0].base_v4prefix) + if [ $? -eq 0 ]; then + gw_ipv4=$(owipcalc $v4prefix add $offset next 32) # gateway ip + gw_ipv4_assign="${gw_ipv4}/32" + ip a a $gw_ipv4_assign dev $ifname + fi + ip link set up dev $ifname ip link set mtu $mtu dev $ifname @@ -67,6 +75,9 @@ wg_register () { json_init json_add_string "pubkey" $wg_server_pubkey json_add_string "gw_ip" $gw_ip_assign + if test -n "${gw_ipv4_assign-}"; then + json_add_string "gw_ipv4" $gw_ipv4_assign + fi json_add_int "port" $port echo $(json_dump)