5a5f780070e057873754198867de151a1146bc18
[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")
3
4 s = m:section(TypedSection, "route")
5 s.addremove = true
6 s.anonymous = true
7
8 s:option(Value, "interface", "Schnittstelle")
9
10 s:option(Value, "target", "Ziel", "Host-IP oder Netzwerk")
11
12 s:option(Value, "netmask", "Netzmaske", "falls Ziel ein Netzwerk ist").rmemepty = true
13
14 s:option(Value, "gateway", "Gateway")
15
16 return m