aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/unetd/files/unetd.sh
diff options
context:
space:
mode:
Diffstat (limited to 'package/network/services/unetd/files/unetd.sh')
-rw-r--r--package/network/services/unetd/files/unetd.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/package/network/services/unetd/files/unetd.sh b/package/network/services/unetd/files/unetd.sh
index 581eeb95fa..70a28f6482 100644
--- a/package/network/services/unetd/files/unetd.sh
+++ b/package/network/services/unetd/files/unetd.sh
@@ -18,6 +18,7 @@ proto_unet_init_config() {
proto_config_add_string domain
proto_config_add_array "tunnels:list(string)"
proto_config_add_array "connect:list(string)"
+ proto_config_add_array "peer_data:list(string)"
no_device=1
available=1
no_proto_task=1
@@ -30,6 +31,7 @@ proto_unet_setup() {
json_get_vars device type auth_key key file keepalive domain
json_get_values tunnels tunnels
json_get_values connect connect
+ json_get_values peer_data peer_data
device="${device:-$config}"
[ -n "$auth_key" ] && type="${type:-dynamic}"
@@ -60,6 +62,12 @@ proto_unet_setup() {
done
json_close_array
+ json_add_array peer_data
+ for c in $peer_data; do
+ json_add_string "" "$c"
+ done
+ json_close_array
+
ip link del dev "$device" >/dev/null 2>&1
ip link add dev "$device" type wireguard || {
echo "Could not create wireguard device $device"