c8fe03edd0c04c50dbec43163bf8ce193565a966
[project/luci.git] / applications / luci-olsr / luasrc / model / cbi / olsr / olsrd.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 require("luci.fs")
15
16 m = Map("olsr", "OLSR")
17
18 s = m:section(NamedSection, "general", "olsr")
19
20 debug = s:option(ListValue, "DebugLevel")
21 for i=0, 9 do
22 debug:value(i)
23 end
24
25 ipv = s:option(ListValue, "IpVersion")
26 ipv:value("4", "IPv4")
27 ipv:value("6", "IPv6")
28
29 noint = s:option(Flag, "AllowNoInt")
30 noint.enabled = "yes"
31 noint.disabled = "no"
32
33 s:option(Value, "Pollrate")
34
35 tcr = s:option(ListValue, "TcRedundancy")
36 tcr:value("0", translate("olsr_general_TcRedundancy_0", "MPR-Selektoren"))
37 tcr:value("1", translate("olsr_general_TcRedundancy_1", "MPR-Selektoren und MPR"))
38 tcr:value("2", translate("olsr_general_TcRedundancy_2", "Alle Nachbarn"))
39
40 s:option(Value, "MprCoverage")
41
42 lql = s:option(ListValue, "LinkQualityLevel")
43 lql:value("0", translate("disable", "deaktivieren"))
44 lql:value("1", translate("olsr_general_LinkQualityLevel_1", "MPR-Auswahl"))
45 lql:value("2", translate("olsr_general_LinkQualityLevel_2", "MPR-Auswahl und Routing"))
46
47 lqfish = s:option(Flag, "LinkQualityFishEye")
48
49 s:option(Value, "LinkQualityWinSize")
50
51 s:option(Value, "LinkQualityDijkstraLimit")
52
53 hyst = s:option(Flag, "UseHysteresis")
54 hyst.enabled = "yes"
55 hyst.disabled = "no"
56
57
58 i = m:section(TypedSection, "Interface", translate("interfaces", "Schnittstellen"))
59 i.anonymous = true
60 i.addremove = true
61 i.dynamic = true
62
63 network = i:option(ListValue, "Interface", translate("network", "Netzwerk"))
64 network:value("")
65 luci.model.uci.foreach("network", "interface",
66 function (section)
67 if section[".name"] ~= "loopback" then
68 network:value(section[".name"])
69 end
70 end)
71
72 i:option(Value, "HelloInterval")
73 i:option(Value, "HelloValidityTime")
74 i:option(Value, "TcInterval")
75 i:option(Value, "TcValidityTime")
76 i:option(Value, "MidInterval")
77 i:option(Value, "MidValidityTime")
78 i:option(Value, "HnaInterval")
79 i:option(Value, "HnaValidityTime")
80
81
82 p = m:section(TypedSection, "LoadPlugin")
83 p.addremove = true
84 p.dynamic = true
85
86 lib = p:option(ListValue, "Library", translate("library", "Bibliothek"))
87 lib:value("")
88 for k, v in pairs(luci.fs.dir("/usr/lib")) do
89 if v:sub(1, 6) == "olsrd_" then
90 lib:value(v)
91 end
92 end
93
94 return m