From: James White Date: Fri, 11 Sep 2020 07:24:19 +0000 (+0100) Subject: luci-app-mwan3: Update down and up defaults to match mwan3track X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=4a9062c7b6734125f3c2326b2c36db4dc90e0b62;p=project%2Fluci.git luci-app-mwan3: Update down and up defaults to match mwan3track Signed-off-by: James White --- diff --git a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua index c30bce5b7e..e669a3c7e4 100644 --- a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua +++ b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua @@ -213,7 +213,7 @@ recovery:value("3600", translatef("%d hour", 1)) down = mwan_interface:option(ListValue, "down", translate("Interface down"), translate("Interface will be deemed down after this many failed ping tests")) -down.default = "3" +down.default = "5" down:value("1") down:value("2") down:value("3") @@ -227,7 +227,7 @@ down:value("10") up = mwan_interface:option(ListValue, "up", translate("Interface up"), translate("Downed interface will be deemed up after this many successful ping tests")) -up.default = "3" +up.default = "5" up:value("1") up:value("2") up:value("3")