* Fixed DHCP configuration for devices without WAN interface
[project/luci.git] / module / admin-core / src / 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
10 iface = s:option(ListValue, "interface", "Schnittstelle")
11 for k, v in pairs(ffluci.model.uci.show("network").network) do
12         if v[".type"] == "interface" and k ~= "loopback" then
13                 iface:value(k)
14         end
15 end
16
17 s:option(Value, "target", "Ziel", "Host-IP oder Netzwerk")
18
19 s:option(Value, "netmask", "Netzmaske", "falls Ziel ein Netzwerk ist").rmemepty = true
20
21 s:option(Value, "gateway", "Gateway")
22
23 return m