c79441099916c9ca62ac1101fce8b6f09cc05334
[project/luci.git] / applications / luci-fw / luasrc / model / cbi / luci_fw / portfw.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.sys")
15 m = Map("firewall", translate("fw_portfw"), translate("fw_portfw1"))
16
17
18 s = m:section(TypedSection, "redirect", "")
19 s.template  = "cbi/tblsection"
20 s.addremove = true
21 s.anonymous = true
22
23 name = s:option(Value, "_name", translate("name"), translate("cbi_optional"))
24 name.size = 10
25
26 iface = s:option(ListValue, "src", translate("fw_zone"))
27 iface.default = "wan"
28 luci.model.uci.foreach("firewall", "zone",
29         function (section)
30                 iface:value(section.name)
31         end)
32
33 proto = s:option(ListValue, "proto", translate("protocol"))
34 proto:value("tcp", "TCP")
35 proto:value("udp", "UDP")
36
37 dport = s:option(Value, "src_dport")
38 dport.size = 5
39
40 to = s:option(Value, "dest_ip")
41 for i, dataset in ipairs(luci.sys.net.arptable()) do
42         to:value(dataset["IP address"])
43 end
44
45 toport = s:option(Value, "dest_port")
46 toport.size = 5
47
48 return m