[applications] luci-olsr: Fix enable option for interfaces
[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
15 require("luci.tools.webadmin")
16
17 m = Map("olsrd", translate("olsrd", "OLSR Daemon"))
18
19 s = m:section(TypedSection, "olsrd", translate("olsrd_general"))
20 s.dynamic = true
21 s.anonymous = true
22
23 debug = s:option(ListValue, "DebugLevel")
24 for i=0, 9 do
25         debug:value(i)
26 end
27 debug.optional = true
28
29 ipv = s:option(ListValue, "IpVersion")
30 ipv:value("4", "IPv4")
31 ipv:value("6", "IPv6")
32
33 noint = s:option(Flag, "AllowNoInt")
34 noint.enabled = "yes"
35 noint.disabled = "no"
36 noint.optional = true
37
38 s:option(Value, "Pollrate").optional = true
39
40 tcr = s:option(ListValue, "TcRedundancy")
41 tcr:value("0", translate("olsrd_olsrd_tcredundancy_0"))
42 tcr:value("1", translate("olsrd_olsrd_tcredundancy_1"))
43 tcr:value("2", translate("olsrd_olsrd_tcredundancy_2"))
44 tcr.optional = true
45
46 s:option(Value, "MprCoverage").optional = true
47
48 lql = s:option(ListValue, "LinkQualityLevel")
49 lql:value("0", translate("disable"))
50 lql:value("1", translate("olsrd_olsrd_linkqualitylevel_1"))
51 lql:value("2", translate("olsrd_olsrd_linkqualitylevel_2"))
52 lql.optional = true
53
54 s:option(Value, "LinkQualityAging").optional = true
55
56 lqa = s:option(ListValue, "LinkQualityAlgorithm")
57 lqa.optional = true
58 lqa:value("etx_fpm", translate("olsrd_etx_fpm"))
59 lqa:value("etx_float", translate("olsrd_etx_float"))
60 lqa:value("etx_ff", translate("olsrd_etx_ff"))
61 lqa.optional = true
62
63 lqfish = s:option(Flag, "LinkQualityFishEye")
64 lqfish.optional = true
65
66 s:option(Value, "LinkQualityWinSize").optional = true
67
68 s:option(Value, "LinkQualityDijkstraLimit").optional = true
69
70 hyst = s:option(Flag, "UseHysteresis")
71 hyst.enabled = "yes"
72 hyst.disabled = "no"
73 hyst.optional = true
74
75 fib = s:option(ListValue, "FIBMetric")
76 fib.optional = true
77 fib:value("flat")
78 fib:value("correct")
79 fib:value("approx")
80 fib.optional = true
81
82 clrscr = s:option(Flag, "ClearScreen")
83 clrscr.enabled = "yes"
84 clrscr.disabled = "no"
85 clrscr.optional = true
86
87 willingness = s:option(ListValue, "Willingness")
88 for i=0,7 do
89         willingness:value(i)
90 end
91 willingness.optional = true
92
93
94
95 i = m:section(TypedSection, "Interface", translate("interfaces"))
96 i.anonymous = true
97 i.addremove = true
98 i.dynamic = true
99
100 ign = i:option(Flag, "ignore", "Enable")
101 ign.enabled  = "0"
102 ign.disabled = "1"
103 ign.rmempty = false
104 function ign.cfgvalue(self, section)
105         return Flag.cfgvalue(self, section) or "0"
106 end
107
108 network = i:option(ListValue, "interface", translate("network"))
109 luci.tools.webadmin.cbi_add_networks(network)
110
111 i:option(Value, "Ip4Broadcast").optional = true
112
113 ip6t = i:option(ListValue, "Ip6AddrType")
114 ip6t:value("", translate("cbi_select"))
115 ip6t:value("auto")
116 ip6t:value("site-local")
117 ip6t:value("unique-local")
118 ip6t:value("global")
119 ip6t.optional = true
120
121 i:option(Value, "HelloInterval").optional = true
122 i:option(Value, "HelloValidityTime").optional = true
123 i:option(Value, "TcInterval").optional = true
124 i:option(Value, "TcValidityTime").optional = true
125 i:option(Value, "MidInterval").optional = true
126 i:option(Value, "MidValidityTime").optional = true
127 i:option(Value, "HnaInterval").optional = true
128 i:option(Value, "HnaValidityTime").optional = true
129
130 adc = i:option(Flag, "AutoDetectChanges")
131 adc.enabled  = "yes"
132 adc.disabled = "no"
133 adc.optional = true
134
135 --[[
136 ipc = m:section(TypedSection, "IpcConnect")
137 ipc.anonymous = true
138
139 conns = ipc:option(Value, "MaxConnections")
140 conns.isInteger = true
141
142 nets  = ipc:option(Value, "Net")
143 nets.optional = true
144
145 hosts = ipc:option(Value, "Host")
146 hosts.optional = true
147 ]]
148
149 return m