gre: Remove ttl default value assignment (FS#312)
Don't assign a default ttl of 64 for gre tunnels as netifd takes care of the default ttl assignment Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
This commit is contained in:
parent
4af4f21492
commit
4c9d2c04ba
2 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=gre
|
PKG_NAME:=gre
|
||||||
PKG_VERSION:=1
|
PKG_VERSION:=1
|
||||||
PKG_RELEASE:=4
|
PKG_RELEASE:=5
|
||||||
PKG_LICENSE:=GPL-2.0
|
PKG_LICENSE:=GPL-2.0
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
|
@ -25,7 +25,7 @@ gre_generic_setup() {
|
||||||
json_add_string mode "$mode"
|
json_add_string mode "$mode"
|
||||||
json_add_int mtu "${mtu:-1280}"
|
json_add_int mtu "${mtu:-1280}"
|
||||||
[ -n "$df" ] && json_add_boolean df "$df"
|
[ -n "$df" ] && json_add_boolean df "$df"
|
||||||
json_add_int ttl "${ttl:-64}"
|
[ -n "ttl" ] && json_add_int ttl "$ttl"
|
||||||
[ -n "$tos" ] && json_add_string tos "$tos"
|
[ -n "$tos" ] && json_add_string tos "$tos"
|
||||||
json_add_boolean multicast "$multicast"
|
json_add_boolean multicast "$multicast"
|
||||||
json_add_string local "$local"
|
json_add_string local "$local"
|
||||||
|
|
Loading…
Reference in a new issue