1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
-- Copyright 2017 Steven Hessing (steven.hessing@gmail.com)
-- This is free software, licensed under the GNU General Public License v3.
-- /usr/lib/lua/luci/model/cbi/noddos.lua
m = Map("noddos", translate("Client Firewall"),
translate("Noddos controls traffic from the clients on your network to the Internet. " ..
"This helps protect your network, the bandwidth on your Internet connection and " ..
"the Internet"))
s = m:section(TypedSection, "noddos", translate("Server Settings"))
s.anonymous = true
s.addremove = false
s:option(Flag, "rfc1918",
translate("Private networks"),
translate("Report traffic to private networks (10/8, 172.16/12, 192.168/16, fd75:6b5d:352c:ed05::/64)")).default=false
s:option(Flag, "upload",
translate("Upload anonimized traffic stats"),
translate("Uploading your statistics helps improving device recognition " ..
"and discovering hacked devices & botnets"))
o = s:option(DynamicList, "whitelistipv4",
translate("Excluded IPv4 addresses"),
translate("Don't monitor these IPv4 addresses"))
o.optional = true
o.placeholder = "127.0.0.1 192.168.1.1"
o.delimiter = " "
o.datatype="list(ip4addr)"
o = s:option(DynamicList, "whitelistipv6",
translate("Excluded IPv6 addresses"),
translate("Don't monitor these IPv6 addresses"))
o.optional = true
o.delimiter = " "
o.datatype="list(ip6addr)"
o = s:option(DynamicList, "whitelistmac",
translate("Excluded MAC addresses"),
translate("Don't monitor these MAC addresses"))
o.optional = true
o.delimiter = " "
o.datatype="list(macaddr)"
return m
|