From: Florian Eckert Date: Tue, 8 Jan 2019 14:45:44 +0000 (+0100) Subject: luci-app-mwan3: add syslog rule debug option X-Git-Url: http://git.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=a429bb47e7cee60f77d8d512c5b6e6cef2882769 luci-app-mwan3: add syslog rule debug option Signed-off-by: Florian Eckert --- diff --git a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua index f54b6e76c3..b71c2886a1 100644 --- a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua +++ b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua @@ -3,7 +3,7 @@ local net = require "luci.model.network".init() -local s, m, mask, rtmon, rtlookup +local s, m, mask, rtmon, rtlookup, logging, loglevel m = Map("mwan3", translate("MWAN - Globals")) @@ -17,6 +17,27 @@ mask = s:option( mask.datatype = "hex(4)" mask.default = "0xff00" +logging = s:option(Flag, + "logging", + translate("Logging"), + translate("Enables global firewall logging")) + +loglevel = s:option( + ListValue, + "loglevel", + translate("Loglevel"), + translate("Firewall loglevel")) +loglevel.default = "notice" +loglevel:value("emerg", translate("Emergency")) +loglevel:value("alert", translate("Alert")) +loglevel:value("crit", translate("Critical")) +loglevel:value("error", translate("Error")) +loglevel:value("warning", translate("Warning")) +loglevel:value("notice", translate("Notice")) +loglevel:value("info", translate("Info")) +loglevel:value("debug", translate("Debug")) +loglevel:depends("logging", "1") + rtmon = s:option( Value, "rtmon_interval", diff --git a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua index 51592f8137..14f4503658 100644 --- a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua +++ b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua @@ -5,7 +5,7 @@ local dsp = require "luci.dispatcher" local m, mwan_rule, src_ip, src_port, dest_ip, dest_port, proto, sticky -local timeout, ipset, policy +local timeout, ipset, logging, policy arg[1] = arg[1] or "" @@ -53,6 +53,9 @@ timeout.datatype = "range(1, 1000000)" ipset = mwan_rule:option(Value, "ipset", translate("IPset"), translate("Name of IPset rule. Requires IPset rule in /etc/dnsmasq.conf (eg \"ipset=/youtube.com/youtube\")")) +logging = mwan_rule:option(Flag, "logging", translate("Logging"), + translate("Enables firewall rule logging (global mwan3 logging must also be enabled)")) + policy = mwan_rule:option(Value, "use_policy", translate("Policy assigned")) m.uci:foreach("mwan3", "policy", function(s)