From 1241707b4091aa9dd46ad75252689e83f6aac5b2 Mon Sep 17 00:00:00 2001
From: Hans Dedecker <dedeckeh@gmail.com>
Date: Mon, 17 Sep 2018 11:24:39 +0200
Subject: ds-lite: drop default encaplimit value

Setting encaplimit to a numerical value results into the value being
included as tunnel encapsulation limit in the destination option header
for tunneled packets.
Several users have reported interop issues as not all ISPs support the
destination option header containing the tunnel encapsulation limit
resulting into broken ds-lite connectivity.
Therefore drop the default encaplimit value for ds-lite tunnels so
no destination option header is included by default.

Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
---
 package/network/ipv6/ds-lite/files/dslite.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'package/network/ipv6/ds-lite/files')

diff --git a/package/network/ipv6/ds-lite/files/dslite.sh b/package/network/ipv6/ds-lite/files/dslite.sh
index 7bd3f2e70d..017963926d 100644
--- a/package/network/ipv6/ds-lite/files/dslite.sh
+++ b/package/network/ipv6/ds-lite/files/dslite.sh
@@ -69,7 +69,7 @@ proto_dslite_setup() {
 	json_add_string remote "$peeraddr"
 	[ -n "$tunlink" ] && json_add_string link "$tunlink"
 	json_add_object "data"
-	  json_add_string encaplimit "${encaplimit:-4}"
+	  [ -n "$encaplimit" ] && json_add_string encaplimit "$encaplimit"
 	json_close_object
 	proto_close_tunnel
 
-- 
cgit v1.2.3