summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-noddos/luasrc/model/cbi/noddos.lua
diff options
context:
space:
mode:
Diffstat (limited to 'applications/luci-app-noddos/luasrc/model/cbi/noddos.lua')
-rw-r--r--applications/luci-app-noddos/luasrc/model/cbi/noddos.lua46
1 files changed, 0 insertions, 46 deletions
diff --git a/applications/luci-app-noddos/luasrc/model/cbi/noddos.lua b/applications/luci-app-noddos/luasrc/model/cbi/noddos.lua
deleted file mode 100644
index 3abb73bc66..0000000000
--- a/applications/luci-app-noddos/luasrc/model/cbi/noddos.lua
+++ /dev/null
@@ -1,46 +0,0 @@
--- 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
-