1 dsp = require "luci.dispatcher"
5 m5 = Map("mwan3", translatef("MWAN Rule Configuration - %s", arg[1]))
6 m5.redirect = dsp.build_url("admin", "network", "mwan", "rule")
8 mwan_rule = m5:section(NamedSection, arg[1], "rule", "")
9 mwan_rule.addremove = false
10 mwan_rule.dynamic = false
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
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"))
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
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"))
26 proto = mwan_rule:option(Value, "proto", translate("Protocol"),
27 translate("View the content of /etc/protocols for protocol description"))
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"))
39 sticky:value("1", translate("Yes"))
40 sticky:value("0", translate("No"))
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)"
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\")"))
49 policy = mwan_rule:option(Value, "use_policy", translate("Policy assigned"))
50 m5.uci:foreach("mwan3", "policy",
52 policy:value(s['.name'], s['.name'])
55 policy:value("unreachable", translate("unreachable (reject)"))
56 policy:value("blackhole", translate("blackhole (drop)"))
57 policy:value("default", translate("default (use main routing table)"))