NIU:
[project/luci.git] / modules / niu / luasrc / controller / niu / network.lua
1 --[[
2 LuCI - Lua Development Framework
3
4 Copyright 2009 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
15 local require = require
16 module "luci.controller.niu.network"
17
18 function index()
19 local toniu = {on_success_to={"niu"}}
20
21 local e = entry({"niu", "network"}, alias("niu"), "Network", 10)
22 e.niu_dbtemplate = "niu/network"
23 e.niu_dbtasks = true
24 e.niu_dbicon = "icons32/network-workgroup.png"
25
26 entry({"niu", "network", "wan"},
27 cbi("niu/network/wan", toniu), "Configure Internet Connection", 1)
28
29 entry({"niu", "network", "lan"},
30 cbi("niu/network/lan", toniu), "Configure Local Network", 2)
31
32 uci.inst_state:foreach("dhcp", "dhcp", function(s)
33 if s.interface == "lan" and s.ignore ~= "1" then
34 entry({"niu", "network", "assign"}, cbi("niu/network/assign",
35 toniu), "Manage Address Assignment", 30)
36 end
37 end)
38
39 if fs.access("/etc/config/ddns") then
40 entry({"niu", "network", "ddns"}, cbi("niu/network/ddns", toniu),
41 "Configure Dynamic-DNS names", 60)
42 end
43 end