Update my email addresses in the license headers
[project/luci.git] / applications / luci-app-olsr / luasrc / model / cbi / olsr / olsrdiface6.lua
1 -- Copyright 2010 Jo-Philipp Wich <jow@openwrt.org>
2 -- Licensed to the public under the Apache License 2.0.
3
4 local util = require "luci.util"
5 local ip = require "luci.ip"
6
7 function write_float(self, section, value)
8     local n = tonumber(value)
9     if n ~= nil then
10         return Value.write(self, section, "%.1f" % n)
11     end
12 end
13
14 m = Map("olsrd6", translate("OLSR Daemon - Interface"),
15         translate("The OLSR daemon is an implementation of the Optimized Link State Routing protocol. "..
16         "As such it allows mesh routing for any network equipment. "..
17         "It runs on any wifi card that supports ad-hoc mode and of course on any ethernet device. "..
18         "Visit <a href='http://www.olsr.org'>olsrd.org</a> for help and documentation."))
19
20 m.redirect = luci.dispatcher.build_url("admin/services/olsrd6")
21
22 if not arg[1] or m.uci:get("olsrd6", arg[1]) ~= "Interface" then
23         luci.http.redirect(m.redirect)
24         return
25 end
26
27 i = m:section(NamedSection, arg[1], "Interface", translate("Interface"))
28 i.anonymous = true
29 i.addremove = false
30
31 i:tab("general", translate("General Settings"))
32 i:tab("addrs",   translate("IP Addresses"))
33 i:tab("timing",  translate("Timing and Validity"))
34
35 ign = i:taboption("general", Flag, "ignore", translate("Enable"),
36         translate("Enable this interface."))
37 ign.enabled  = "0"
38 ign.disabled = "1"
39 ign.rmempty = false
40 function ign.cfgvalue(self, section)
41         return Flag.cfgvalue(self, section) or "0"
42 end
43
44 network = i:taboption("general", Value, "interface", translate("Network"),
45         translate("The interface OLSRd should serve."))
46
47 network.template = "cbi/network_netlist"
48 network.widget   = "radio"
49 network.nocreate = true
50
51 mode = i:taboption("general", ListValue, "Mode", translate("Mode"),
52         translate("Interface Mode is used to prevent unnecessary packet forwarding on switched ethernet interfaces. "..
53         "valid Modes are \"mesh\" and \"ether\". Default is \"mesh\"."))
54 mode:value("mesh")
55 mode:value("ether")
56 mode.optional = true
57 mode.rmempty = true
58
59
60 weight = i:taboption("general", Value, "Weight", translate("Weight"),
61         translate("When multiple links exist between hosts the weight of interface is used to determine the link to use. "..
62         "Normally the weight is automatically calculated by olsrd based on the characteristics of the interface, "..
63         "but here you can specify a fixed value. Olsrd will choose links with the lowest value.<br />"..
64         "<b>Note:</b> Interface weight is used only when LinkQualityLevel is set to 0. "..
65         "For any other value of LinkQualityLevel, the interface ETX value is used instead."))
66 weight.optional = true
67 weight.datatype = "uinteger"
68 weight.placeholder = "0"
69
70 lqmult = i:taboption("general", DynamicList, "LinkQualityMult", translate("LinkQuality Multiplicator"),
71         translate("Multiply routes with the factor given here. Allowed values are between 0.01 and 1.0. "..
72         "It is only used when LQ-Level is greater than 0. Examples:<br />"..
73         "reduce LQ to fd91:662e:3c58::1 by half: fd91:662e:3c58::1 0.5<br />"..
74         "reduce LQ to all nodes on this interface by 20%: default 0.8"))
75 lqmult.optional = true
76 lqmult.rmempty = true
77 lqmult.cast = "table"
78 lqmult.placeholder = "default 1.0"
79
80 function lqmult.validate(self, value)
81         for _, v in pairs(value) do
82                 if v ~= "" then
83                         local val = util.split(v, " ")
84                         local host = val[1]
85                         local mult = val[2]
86                         if not host or not mult then
87                                 return nil, translate("LQMult requires two values (IP address or 'default' and multiplicator) seperated by space.")
88                         end
89                         if not (host == "default" or ip.IPv6(host)) then
90                                 return nil, translate("Can only be a valid IPv6 address or 'default'")
91                         end
92                         if not tonumber(mult) or tonumber(mult) > 1 or tonumber(mult) < 0.01 then
93                                 return nil, translate("Invalid Value for LQMult-Value. Must be between 0.01 and 1.0.")
94                         end
95                         if not mult:match("[0-1]%.[0-9]+") then
96                                 return nil, translate("Invalid Value for LQMult-Value. You must use a decimal number between 0.01 and 1.0 here.")
97                         end
98                 end
99         end
100         return value
101 end
102
103 ip6m = i:taboption("addrs", Value, "IPv6Multicast", translate("IPv6 multicast"),
104         translate("IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal multicast."))
105 ip6m.optional = true
106 ip6m.datatype = "ip6addr"
107 ip6m.placeholder = "FF02::6D"
108
109 ip6s = i:taboption("addrs", Value, "IPv6Src", translate("IPv6 source"),
110         translate("IPv6 src prefix. OLSRd will choose one of the interface IPs which matches the prefix of this parameter. "..
111         "Default is \"0::/0\", which triggers the usage of a not-linklocal interface IP."))
112 ip6s.optional = true
113 ip6s.datatype = "ip6addr"
114 ip6s.placeholder = "0::/0"
115
116 hi = i:taboption("timing", Value, "HelloInterval", translate("Hello interval"))
117 hi.optional = true
118 hi.datatype = "ufloat"
119 hi.placeholder = "5.0"
120 hi.write = write_float
121
122 hv = i:taboption("timing", Value, "HelloValidityTime", translate("Hello validity time"))
123 hv.optional = true
124 hv.datatype = "ufloat"
125 hv.placeholder = "40.0"
126 hv.write = write_float
127
128 ti = i:taboption("timing", Value, "TcInterval", translate("TC interval"))
129 ti.optional = true
130 ti.datatype = "ufloat"
131 ti.placeholder = "2.0"
132 ti.write = write_float
133
134 tv = i:taboption("timing", Value, "TcValidityTime", translate("TC validity time"))
135 tv.optional = true
136 tv.datatype = "ufloat"
137 tv.placeholder = "256.0"
138 tv.write = write_float
139
140 mi = i:taboption("timing", Value, "MidInterval", translate("MID interval"))
141 mi.optional = true
142 mi.datatype = "ufloat"
143 mi.placeholder = "18.0"
144 mi.write = write_float
145
146 mv = i:taboption("timing", Value, "MidValidityTime", translate("MID validity time"))
147 mv.optional = true
148 mv.datatype = "ufloat"
149 mv.placeholder = "324.0"
150 mv.write = write_float
151
152 ai = i:taboption("timing", Value, "HnaInterval", translate("HNA interval"))
153 ai.optional = true
154 ai.datatype = "ufloat"
155 ai.placeholder = "18.0"
156 ai.write = write_float
157
158 av = i:taboption("timing", Value, "HnaValidityTime", translate("HNA validity time"))
159 av.optional = true
160 av.datatype = "ufloat"
161 av.placeholder = "108.0"
162 av.write = write_float
163
164 return m