3ef3275cad2022ff59b82882302d0cdb7c9a28b1
[project/luci.git] / applications / luci-fw / luasrc / model / cbi / luci_fw / general.lua
1 --[[
2 LuCI - Lua Configuration Interface
3
4 Copyright 2008 Steven Barth <steven@midlink.org>
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10         http://www.apache.org/licenses/LICENSE-2.0
11
12 $Id$
13 ]]--
14 require("luci.tools.webadmin")
15 m = Map("firewall", translate("fw_fw"), translate("fw_fw1"))
16
17 s = m:section(TypedSection, "defaults")
18 s.anonymous = true
19
20 s:option(Flag, "syn_flood")
21
22 p = {}
23 p[1] = s:option(ListValue, "input")
24 p[2] = s:option(ListValue, "output")
25 p[3] = s:option(ListValue, "forward")
26
27 for i, v in ipairs(p) do
28         v:value("DROP", translate("fw_drop"))
29         v:value("ACCEPT", translate("fw_accept"))
30 end
31
32
33 s = m:section(TypedSection, "zone", translate("fw_zones"))
34 s.template = "cbi/tblsection"
35 s.anonymous = true
36 s.addremove = true
37
38 name = s:option(Value, "name", translate("name"))
39 name.size = 8
40
41 p = {}
42 p[1] = s:option(ListValue, "input")
43 p[2] = s:option(ListValue, "output")
44 p[3] = s:option(ListValue, "forward")
45
46 for i, v in ipairs(p) do
47         v:value("DROP", translate("fw_drop"))
48         v:value("ACCEPT", translate("fw_accept"))
49 end
50
51 s:option(Flag, "masq")
52
53 net = s:option(MultiValue, "network")
54 net.widget = "select"
55 net.rmempty = true
56 luci.tools.webadmin.cbi_add_networks(net)
57         
58 function net.cfgvalue(self, section)
59         local value = MultiValue.cfgvalue(self, section)
60         return value or name:cfgvalue(section)
61 end
62
63 return m