2 LuCI - Lua Configuration Interface
4 Copyright 2010 Jo-Philipp Wich <xm@subsignal.org>
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
10 http://www.apache.org/licenses/LICENSE-2.0
16 local util = require "luci.util"
17 local ip = require "luci.ip"
19 function write_float(self, section, value)
20 local n = tonumber(value)
22 return Value.write(self, section, "%.1f" % n)
26 m = Map("olsrd6", translate("OLSR Daemon - Interface"),
27 translate("The OLSR daemon is an implementation of the Optimized Link State Routing protocol. "..
28 "As such it allows mesh routing for any network equipment. "..
29 "It runs on any wifi card that supports ad-hoc mode and of course on any ethernet device. "..
30 "Visit <a href='http://www.olsr.org'>olsrd.org</a> for help and documentation."))
32 m.redirect = luci.dispatcher.build_url("admin/services/olsrd6")
34 if not arg[1] or m.uci:get("olsrd6", arg[1]) ~= "Interface" then
35 luci.http.redirect(m.redirect)
39 i = m:section(NamedSection, arg[1], "Interface", translate("Interface"))
43 i:tab("general", translate("General Settings"))
44 i:tab("addrs", translate("IP Addresses"))
45 i:tab("timing", translate("Timing and Validity"))
47 ign = i:taboption("general", Flag, "ignore", translate("Enable"),
48 translate("Enable this interface."))
52 function ign.cfgvalue(self, section)
53 return Flag.cfgvalue(self, section) or "0"
56 network = i:taboption("general", Value, "interface", translate("Network"),
57 translate("The interface OLSRd should serve."))
59 network.template = "cbi/network_netlist"
60 network.widget = "radio"
61 network.nocreate = true
63 mode = i:taboption("general", ListValue, "Mode", translate("Mode"),
64 translate("Interface Mode is used to prevent unnecessary packet forwarding on switched ethernet interfaces. "..
65 "valid Modes are \"mesh\" and \"ether\". Default is \"mesh\"."))
72 weight = i:taboption("general", Value, "Weight", translate("Weight"),
73 translate("When multiple links exist between hosts the weight of interface is used to determine the link to use. "..
74 "Normally the weight is automatically calculated by olsrd based on the characteristics of the interface, "..
75 "but here you can specify a fixed value. Olsrd will choose links with the lowest value.<br />"..
76 "<b>Note:</b> Interface weight is used only when LinkQualityLevel is set to 0. "..
77 "For any other value of LinkQualityLevel, the interface ETX value is used instead."))
78 weight.optional = true
79 weight.datatype = "uinteger"
80 weight.placeholder = "0"
82 lqmult = i:taboption("general", DynamicList, "LinkQualityMult", translate("LinkQuality Multiplicator"),
83 translate("Multiply routes with the factor given here. Allowed values are between 0.01 and 1.0. "..
84 "It is only used when LQ-Level is greater than 0. Examples:<br />"..
85 "reduce LQ to fd91:662e:3c58::1 by half: fd91:662e:3c58::1 0.5<br />"..
86 "reduce LQ to all nodes on this interface by 20%: default 0.8"))
87 lqmult.optional = true
90 lqmult.placeholder = "default 1.0"
92 function lqmult.validate(self, value)
93 for _, v in pairs(value) do
95 local val = util.split(v, " ")
98 if not host or not mult then
99 return nil, translate("LQMult requires two values (IP address or 'default' and multiplicator) seperated by space.")
101 if not (host == "default" or ip.IPv6(host)) then
102 return nil, translate("Can only be a valid IPv6 address or 'default'")
104 if not tonumber(mult) or tonumber(mult) > 1 or tonumber(mult) < 0.01 then
105 return nil, translate("Invalid Value for LQMult-Value. Must be between 0.01 and 1.0.")
107 if not mult:match("[0-1]%.[0-9]+") then
108 return nil, translate("Invalid Value for LQMult-Value. You must use a decimal number between 0.01 and 1.0 here.")
115 ip6m = i:taboption("addrs", Value, "IPv6Multicast", translate("IPv6 multicast"),
116 translate("IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal multicast."))
118 ip6m.datatype = "ip6addr"
119 ip6m.placeholder = "FF02::6D"
121 ip6s = i:taboption("addrs", Value, "IPv6Src", translate("IPv6 source"),
122 translate("IPv6 src prefix. OLSRd will choose one of the interface IPs which matches the prefix of this parameter. "..
123 "Default is \"0::/0\", which triggers the usage of a not-linklocal interface IP."))
125 ip6s.datatype = "ip6addr"
126 ip6s.placeholder = "0::/0"
128 hi = i:taboption("timing", Value, "HelloInterval", translate("Hello interval"))
130 hi.datatype = "ufloat"
131 hi.placeholder = "5.0"
132 hi.write = write_float
134 hv = i:taboption("timing", Value, "HelloValidityTime", translate("Hello validity time"))
136 hv.datatype = "ufloat"
137 hv.placeholder = "40.0"
138 hv.write = write_float
140 ti = i:taboption("timing", Value, "TcInterval", translate("TC interval"))
142 ti.datatype = "ufloat"
143 ti.placeholder = "2.0"
144 ti.write = write_float
146 tv = i:taboption("timing", Value, "TcValidityTime", translate("TC validity time"))
148 tv.datatype = "ufloat"
149 tv.placeholder = "256.0"
150 tv.write = write_float
152 mi = i:taboption("timing", Value, "MidInterval", translate("MID interval"))
154 mi.datatype = "ufloat"
155 mi.placeholder = "18.0"
156 mi.write = write_float
158 mv = i:taboption("timing", Value, "MidValidityTime", translate("MID validity time"))
160 mv.datatype = "ufloat"
161 mv.placeholder = "324.0"
162 mv.write = write_float
164 ai = i:taboption("timing", Value, "HnaInterval", translate("HNA interval"))
166 ai.datatype = "ufloat"
167 ai.placeholder = "18.0"
168 ai.write = write_float
170 av = i:taboption("timing", Value, "HnaValidityTime", translate("HNA validity time"))
172 av.datatype = "ufloat"
173 av.placeholder = "108.0"
174 av.write = write_float