* Merged Luci to use native UCI-library
[project/luci.git] / modules / admin-core / luasrc / model / cbi / admin_network / routes.lua
1 -- ToDo: Translate, Add descriptions and help texts
2 m = Map("network", "Statische Routen", [[Statische Routen geben an,
3 über welche Schnittstelle und welches Gateway ein bestimmter Host
4 oder ein bestimmtes Netzwerk erreicht werden kann.]])
5
6 s = m:section(TypedSection, "route")
7 s.addremove = true
8 s.anonymous = true
9 s.template = "cbi/tblsection"
10
11 iface = s:option(ListValue, "interface", "Schnittstelle")
12 luci.model.uci.foreach("network", "interface",
13 function (section)
14 if section[".name"] ~= "loopback" then
15 iface:value(section[".name"])
16 end
17 end)
18
19 s:option(Value, "target", "Ziel", "Host-IP oder Netzwerk")
20
21 s:option(Value, "netmask", "Netzmaske", "falls Ziel ein Netzwerk ist").rmemepty = true
22
23 s:option(Value, "gateway", "Gateway")
24
25 return m