2cab49ec3a4a02fb5f22fa90f054a8ee17c4a9b7
[project/luci.git] / applications / luci-app-vpnbypass / luasrc / model / cbi / vpnbypass.lua
1 m = Map("vpnbypass", translate("VPN Bypass Settings"))
2 s = m:section(NamedSection, "config", "vpnbypass")
3
4 -- General options
5 o1 = s:option(Flag, "enabled", translate("Enable VPN Bypass"))
6 o1.rmempty = false
7 o1.default = 0
8
9 -- Local Ports
10 p1 = s:option(DynamicList, "localport", translate("Local Ports to Bypass"), translate("Local ports to trigger VPN Bypass"))
11 p1.datatype    = "portrange"
12 p1.placeholder = "0-65535"
13 p1.addremove = true
14 p1.optional = true
15
16 -- Remote Ports
17 p2 = s:option(DynamicList, "remoteport", translate("Remote Ports to Bypass"), translate("Remote ports to trigger VPN Bypass"))
18 p2.datatype    = "portrange"
19 p2.placeholder = "0-65535"
20 p2.addremove = true
21 p2.optional = true
22
23 -- Local Subnets
24 r1 = s:option(DynamicList, "localsubnet", translate("Local IP Addresses to Bypass"), translate("Local IP addresses or subnets with direct internet access (outside of the VPN tunnel)"))
25 r1.datatype    = "ip4addr"
26 r1.placeholder = luci.ip.new(uci.cursor():get("network", "lan", "ipaddr") .. "/" .. uci.cursor():get("network", "lan", "netmask"))
27 r1.addremove = true
28 r1.optional = true
29
30 -- Remote Subnets
31 r2 = s:option(DynamicList, "remotesubnet", translate("Remote IP Addresses to Bypass"), translate("Remote IP addresses or subnets which will be accessed directly (outside of the VPN tunnel)"))
32 r2.datatype    = "ip4addr"
33 r2.placeholder = "0.0.0.0/0"
34 r2.addremove = true
35 r2.optional = true
36
37 -- Domains
38 d = Map("dhcp")
39 s4 = d:section(TypedSection, "dnsmasq")
40 s4.anonymous = true
41 di = s4:option(DynamicList, "ipset", translate("Domains to Bypass"),
42     translate("Domains to be accessed directly (outside of the VPN tunnel), see ")
43     .. [[<a href="https://github.com/openwrt/packages/tree/master/net/vpnbypass/files#bypass-domains-formatsyntax" target="_blank">]]
44     .. translate("README") .. [[</a>]] .. translate(" for syntax"))
45
46 return m, d