Made distinction between INPUT and FORWARD rules less ambiguous
This commit is contained in:
parent
3a450ce9bc
commit
f64a0200f6
2 changed files with 5 additions and 5 deletions
|
@ -67,7 +67,7 @@ end
|
|||
dest = s:option(DummyValue, "dest", translate("fw_dest"))
|
||||
function dest.cfgvalue(self, s)
|
||||
return "%s:%s:%s" % {
|
||||
self.map:get(s, "dest") or "*",
|
||||
self.map:get(s, "dest") or translate("device", "device"),
|
||||
self.map:get(s, "dest_ip") or "0.0.0.0/0",
|
||||
self.map:get(s, "dest_port") or "*"
|
||||
}
|
||||
|
|
|
@ -25,12 +25,12 @@ back.titleref = luci.dispatcher.build_url("admin", "network", "firewall", "traff
|
|||
name = s:option(Value, "_name", translate("name")..translate("cbi_optional"))
|
||||
name.rmempty = true
|
||||
|
||||
iface = s:option(ListValue, "src", translate("firewall_rule_src"))
|
||||
iface = s:option(ListValue, "src", translate("fw_src"))
|
||||
iface.rmempty = true
|
||||
|
||||
oface = s:option(ListValue, "dest", translate("firewall_rule_dest"))
|
||||
oface:value("")
|
||||
oface.optional = true
|
||||
oface = s:option(ListValue, "dest", translate("fw_dest"))
|
||||
oface:value("", translate("device", "device"))
|
||||
oface.rmempty = true
|
||||
|
||||
luci.model.uci.cursor():foreach("firewall", "zone",
|
||||
function (section)
|
||||
|
|
Loading…
Reference in a new issue