Merge pull request #1585 from user7887/luci-ru
[project/luci.git] / applications / luci-app-mwan3 / luasrc / model / cbi / mwan / ruleconfig.lua
1 dsp = require "luci.dispatcher"
2 arg[1] = arg[1] or ""
3
4
5 m5 = Map("mwan3", translatef("MWAN Rule Configuration - %s", arg[1]))
6 m5.redirect = dsp.build_url("admin", "network", "mwan", "rule")
7
8 mwan_rule = m5:section(NamedSection, arg[1], "rule", "")
9 mwan_rule.addremove = false
10 mwan_rule.dynamic = false
11
12 src_ip = mwan_rule:option(Value, "src_ip", translate("Source address"),
13         translate("Supports CIDR notation (eg \"192.168.100.0/24\") without quotes"))
14 src_ip.datatype = ipaddr
15
16 src_port = mwan_rule:option(Value, "src_port", translate("Source port"),
17         translate("May be entered as a single or multiple port(s) (eg \"22\" or \"80,443\") or as a portrange (eg \"1024:2048\") without quotes"))
18
19 dest_ip = mwan_rule:option(Value, "dest_ip", translate("Destination address"),
20         translate("Supports CIDR notation (eg \"192.168.100.0/24\") without quotes"))
21 dest_ip.datatype = ipaddr
22
23 dest_port = mwan_rule:option(Value, "dest_port", translate("Destination port"),
24         translate("May be entered as a single or multiple port(s) (eg \"22\" or \"80,443\") or as a portrange (eg \"1024:2048\") without quotes"))
25
26 proto = mwan_rule:option(Value, "proto", translate("Protocol"),
27         translate("View the content of /etc/protocols for protocol description"))
28 proto.default = "all"
29 proto.rmempty = false
30 proto:value("all")
31 proto:value("tcp")
32 proto:value("udp")
33 proto:value("icmp")
34 proto:value("esp")
35
36 sticky = mwan_rule:option(ListValue, "sticky", translate("Sticky"),
37         translate("Traffic from the same source IP address that previously matched this rule within the sticky timeout period will use the same WAN interface"))
38 sticky.default = "0"
39 sticky:value("1", translate("Yes"))
40 sticky:value("0", translate("No"))
41
42 timeout = mwan_rule:option(Value, "timeout", translate("Sticky timeout"),
43         translate("Seconds. Acceptable values: 1-1000000. Defaults to 600 if not set"))
44 timeout.datatype = "range(1, 1000000)"
45
46 ipset = mwan_rule:option(Value, "ipset", translate("IPset"),
47         translate("Name of IPset rule. Requires IPset rule in /etc/dnsmasq.conf (eg \"ipset=/youtube.com/youtube\")"))
48
49 policy = mwan_rule:option(Value, "use_policy", translate("Policy assigned"))
50 m5.uci:foreach("mwan3", "policy",
51         function(s)
52                 policy:value(s['.name'], s['.name'])
53         end
54 )
55 policy:value("unreachable", translate("unreachable (reject)"))
56 policy:value("blackhole", translate("blackhole (drop)"))
57 policy:value("default", translate("default (use main routing table)"))
58
59 return m5