applications/luci-firewall: some fixes on redirection page
This commit is contained in:
parent
26d33454f0
commit
aa0f710867
1 changed files with 5 additions and 1 deletions
|
@ -66,7 +66,7 @@ src.nocreate = true
|
|||
src.default = "wan"
|
||||
src.template = "cbi/firewall_zonelist"
|
||||
|
||||
proto = s:taboption("general", ListValue, "proto", translate("Protocol"))
|
||||
proto = s:taboption("general", Value, "proto", translate("Protocol"))
|
||||
proto.optional = true
|
||||
proto:value("tcpudp", "TCP+UDP")
|
||||
proto:value("tcp", "TCP")
|
||||
|
@ -93,6 +93,10 @@ toport = s:taboption("general", Value, "dest_port", translate("Internal port (op
|
|||
"the internal host"))
|
||||
toport.optional = true
|
||||
toport.placeholder = "0-65535"
|
||||
toport.datatype = "portrange"
|
||||
toport:depends("proto", "tcp")
|
||||
toport:depends("proto", "udp")
|
||||
toport:depends("proto", "tcpudp")
|
||||
|
||||
target = s:taboption("advanced", ListValue, "target", translate("Redirection type"))
|
||||
target:value("DNAT")
|
||||
|
|
Loading…
Reference in a new issue