cc79e57a5005cbc2c39e2275a82b0a0cafcd3b74
[project/luci.git] / modules / admin-full / luasrc / controller / admin / network.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 module("luci.controller.admin.network", package.seeall)
15
16 function index()
17         require("luci.i18n")
18         require("luci.model.uci")
19         local i18n = luci.i18n.translate
20
21         local page  = node("admin", "network")
22         page.target = template("admin_network/index")
23         page.title  = i18n("network", "Netzwerk")  
24         page.order  = 50
25         
26         local page  = node("admin", "network", "vlan")
27         page.target = cbi("admin_network/vlan")
28         page.title  = i18n("a_n_switch", "Switch")
29         page.order  = 20
30         
31         local page  = node("admin", "network", "network")
32         page.target = cbi("admin_network/network")
33         page.title  = i18n("interfaces", "Schnittstellen")
34         page.order  = 10
35         luci.model.uci.foreach("network", "interface",
36                 function (section)
37                         local ifc = section[".name"]
38                         if ifc ~= "loopback" then
39                                 entry({"admin", "network", "network", ifc},
40                                  alias("admin", "network", "ifaces", ifc),
41                                  ifc:upper())
42                         end
43                 end
44         )
45         
46         local page  = node("admin", "network", "ifaces")
47         page.target = cbi("admin_network/ifaces")
48         page.leaf   = true
49
50         local page  = node("admin", "network", "dhcp")
51         page.target = cbi("admin_network/dhcp")
52         page.title  = "DHCP"
53         page.order  = 30
54         
55         local page  = node("admin", "network", "routes")
56         page.target = cbi("admin_network/routes")
57         page.title  = i18n("a_n_routes", "Routen")
58         page.order  = 40
59 end