67b3169a0bd74e36323bedbb07f78903c37a5e61
[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"))
37 tcr:value("1", translate("olsr_general_tcredundancy_1"))
38 tcr:value("2", translate("olsr_general_tcredundancy_2"))
39
40 s:option(Value, "MprCoverage")
41
42 lql = s:option(ListValue, "LinkQualityLevel")
43 lql:value("0", translate("disable"))
44 lql:value("1", translate("olsr_general_linkqualitylevel_1"))
45 lql:value("2", translate("olsr_general_linkqualitylevel_2"))
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"))
59 i.anonymous = true
60 i.addremove = true
61 i.dynamic = true
62
63 network = i:option(ListValue, "Interface", translate("network"))
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"))
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
95 for i, sect in ipairs({ "Hna4", "Hna6" }) do
96         hna = m:section(TypedSection, sect)
97         hna.addremove = true
98         hna.anonymous = true
99
100         net = hna:option(Value, "NetAddr")
101         msk = hna:option(Value, "Prefix")
102 end
103
104
105 ipc = m:section(NamedSection, "IpcConnect")
106 conns = ipc:option(Value, "MaxConnections")
107 conns.isInteger = true
108
109 nets  = ipc:option(Value, "Net")
110 nets.optional = true
111
112 hosts = ipc:option(Value, "Host")
113 hosts.optional = true
114
115
116 return m