From: Nick Hainke Date: Tue, 11 Jan 2022 11:18:49 +0000 (+0100) Subject: wg-installer: allow defining link costs for hotplugs X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=ee879d37479cf66f8caf8d4354a0aeae3764f0a8;p=feed%2Fpackages.git wg-installer: allow defining link costs for hotplugs Add options to set link costs in mesh routing daemons. 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 41cafa2881..d8955ae5cf 100644 --- a/net/wg-installer/wg-server/config/wgserver.conf +++ b/net/wg-installer/wg-server/config/wgserver.conf @@ -7,3 +7,9 @@ config server option wg_pub '/root/wg.pub' option wg_tmp_key '1' option timeout_handshake '600' + +config babeld_hotplug + option rxcost '1024' + +config olsrd_hotplug + option LinkQualityMult 'default 0.1' diff --git a/net/wg-installer/wg-server/hotplug.d/99-mesh-babeld b/net/wg-installer/wg-server/hotplug.d/99-mesh-babeld index 4da7caa914..1f8646e281 100644 --- a/net/wg-installer/wg-server/hotplug.d/99-mesh-babeld +++ b/net/wg-installer/wg-server/hotplug.d/99-mesh-babeld @@ -14,6 +14,11 @@ fi if [ "${ACTION}" == "add" ]; then uci add babeld interface uci set babeld.@interface[-1].ifname="${INTERFACE}" + uci get wgserver.@babeld_hotplug[0].rxcost + if [ $? ]; then + babeld_rxcost="$(uci get wgserver.@babeld_hotplug[0].rxcost)" + uci set babeld.@interface[-1].rxcost="$babeld_rxcost" + fi uci -c "$(dirname $(realpath /etc/config/babeld))" commit babeld /etc/init.d/babeld reload fi diff --git a/net/wg-installer/wg-server/hotplug.d/99-mesh-olsrd b/net/wg-installer/wg-server/hotplug.d/99-mesh-olsrd index 1e4be36972..b5a010b240 100644 --- a/net/wg-installer/wg-server/hotplug.d/99-mesh-olsrd +++ b/net/wg-installer/wg-server/hotplug.d/99-mesh-olsrd @@ -16,6 +16,11 @@ if [ "${ACTION}" == "add" ]; then uci set olsrd.@Interface[-1].ignore=0 uci set olsrd.@Interface[-1].interface="${INTERFACE}" uci set olsrd.@Interface[-1].Mode="ether" + uci get wgserver.@olsrd_hotplug[0].LinkQualityMult + if [ $? ]; then + olsrd_LinkQualityMult="$(uci get wgserver.@olsrd_hotplug[0].LinkQualityMult)" + uci set olsrd.@Interface[-1].LinkQualityMult="$olsrd_LinkQualityMult" + fi uci -c "$(dirname $(realpath /etc/config/olsrd))" commit olsrd /etc/init.d/olsrd reload fi