From patchwork Sat Nov 10 22:17:02 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: fastd: Allow IPv6 remotes for peers From: Fabian Blaese X-Patchwork-Id: 947 Message-Id: <20181110221702.19549-1-fabian@blaese.de> To: franken-dev@freifunk.net Date: Sat, 10 Nov 2018 23:17:02 +0100 The "ipv4" option is used to enforce using ipv4 when using dns for fastd remotes. However this option was incorrectly always set which makes ipv6 connections impossible. Because enforcing ipv4 is not necessary, this option is removed. Signed-off-by: Fabian Bläse Reviewed-by: Christian Dresel Reviewed-by: Tim Niemeyer Reviewed-by: Christian Dresel > Tested-by: Fabian Bläse Tested-by: Fabian Bläse > --- src/packages/fff/fff-vpn-select/files/usr/sbin/vpn-select | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/packages/fff/fff-vpn-select/files/usr/sbin/vpn-select b/src/packages/fff/fff-vpn-select/files/usr/sbin/vpn-select index ddd21a1..58e48c4 100755 --- a/src/packages/fff/fff-vpn-select/files/usr/sbin/vpn-select +++ b/src/packages/fff/fff-vpn-select/files/usr/sbin/vpn-select @@ -26,7 +26,7 @@ do echo "key \"${key}\";" >> "$filename" json_get_var address address json_get_var port port - echo "remote ipv4 \"${address}\" port ${port};" >> "$filename" + echo "remote \"${address}\" port ${port};" >> "$filename" echo "" >> "$filename" echo "float yes;" >> "$filename"