summaryrefslogtreecommitdiffhomepage
path: root/modules/admin-mini/luasrc/model/cbi/mini/dhcp.lua
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-07-16 18:54:10 +0000
committerSteven Barth <steven@midlink.org>2008-07-16 18:54:10 +0000
commit8d1aff78b17d6f7437d776bdf53a6aa2112f31db (patch)
tree48784a8d48cc782ec63a5cc705f3779a7fae8a3d /modules/admin-mini/luasrc/model/cbi/mini/dhcp.lua
parentea69b8dccc80c0b6c16225f2328834a7fd3be062 (diff)
modules/admin-mini: Added Wifi configuration
several smaller bugfixes and enhancements
Diffstat (limited to 'modules/admin-mini/luasrc/model/cbi/mini/dhcp.lua')
-rw-r--r--modules/admin-mini/luasrc/model/cbi/mini/dhcp.lua65
1 files changed, 65 insertions, 0 deletions
diff --git a/modules/admin-mini/luasrc/model/cbi/mini/dhcp.lua b/modules/admin-mini/luasrc/model/cbi/mini/dhcp.lua
new file mode 100644
index 0000000000..5a27f1e68b
--- /dev/null
+++ b/modules/admin-mini/luasrc/model/cbi/mini/dhcp.lua
@@ -0,0 +1,65 @@
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2008 Steven Barth <steven@midlink.org>
+Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+$Id$
+]]--
+require("luci.model.uci")
+require("luci.sys")
+
+m = Map("dhcp", "DHCP")
+
+s = m:section(TypedSection, "dhcp", "DHCP-Server")
+s.anonymous = true
+s:depends("interface", "lan")
+
+enable = s:option(ListValue, "ignore", "", "")
+enable:value(0, "enabled")
+enable:value(1, "disabled")
+
+start = s:option(Value, "start", "First address")
+start.rmempty = true
+start:depends("ignore", "0")
+
+
+limit = s:option(Value, "limit", "Number of leases", "")
+limit:depends("ignore", "0")
+
+function limit.cfgvalue(self, section)
+ local value = Value.cfgvalue(self, section)
+
+ if value then
+ return tonumber(value) + 1
+ end
+end
+
+function limit.write(self, section, value)
+ value = tonumber(value) - 1
+ return Value.write(self, section, value)
+end
+
+limit.rmempty = true
+
+time = s:option(Value, "leasetime")
+time:depends("ignore", "0")
+time.rmempty = true
+
+m2 = Map("luci_ethers", translate("luci_ethers"))
+
+s = m2:section(TypedSection, "static_lease", "")
+s.addremove = true
+s.anonymous = true
+s.template = "cbi/tblsection"
+
+s:option(Value, "macaddr", translate("macaddress"))
+s:option(Value, "ipaddr", translate("ipaddress"))
+
+return m, m2 \ No newline at end of file