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 utl = require "luci.util"
18 m = Map("radvd", translatef("Radvd - Prefix"),
19 translate("Radvd is a router advertisement daemon for IPv6. " ..
20 "It listens to router solicitations and sends router advertisements " ..
21 "as described in RFC 4861."))
23 m.redirect = luci.dispatcher.build_url("admin/network/radvd")
25 if m.uci:get("radvd", sid) ~= "prefix" then
26 luci.http.redirect(m.redirect)
31 s = m:section(NamedSection, sid, "interface", translate("Prefix Configuration"))
34 s:tab("general", translate("General"))
35 s:tab("advanced", translate("Advanced"))
42 o = s:taboption("general", Flag, "ignore", translate("Enable"))
45 function o.cfgvalue(...)
46 local v = Flag.cfgvalue(...)
47 return v == "1" and "0" or "1"
50 function o.write(self, section, value)
51 Flag.write(self, section, value == "1" and "0" or "1")
55 o = s:taboption("general", Value, "interface", translate("Interface"),
56 translate("Specifies the logical interface name this section belongs to"))
58 o.template = "cbi/network_netlist"
62 function o.formvalue(...)
63 return Value.formvalue(...) or "-"
66 function o.validate(self, value)
68 return nil, translate("Interface required")
73 function o.write(self, section, value)
74 m.uci:set("radvd", section, "ignore", 0)
75 m.uci:set("radvd", section, "interface", value)
79 o = s:taboption("general", DynamicList, "prefix", translate("Prefixes"),
80 translate("Advertised IPv6 prefixes. If empty, the current interface prefix is used"))
83 o.datatype = "ip6addr"
84 o.placeholder = translate("default")
85 function o.cfgvalue(self, section)
87 local v = m.uci:get_list("radvd", section, "prefix")
88 for v in utl.imatch(v) do
95 o = s:taboption("general", Flag, "AdvOnLink", translate("On-link determination"),
96 translate("Indicates that this prefix can be used for on-link determination (RFC4861)"))
102 o = s:taboption("general", Flag, "AdvAutonomous", translate("Autonomous"),
103 translate("Indicates that this prefix can be used for autonomous address configuration (RFC4862)"))
113 o = s:taboption("advanced", Flag, "AdvRouterAddr", translate("Advertise router address"),
114 translate("Indicates that the address of interface is sent instead of network prefix, as is required by Mobile IPv6"))
117 o = s:taboption("advanced", Value, "AdvValidLifetime", translate("Valid lifetime"),
118 translate("Advertises the length of time in seconds that the prefix is valid for the purpose of on-link determination."))
120 o.datatype = 'or(uinteger,"infinity")'
121 o.placeholder = 86400
124 o = s:taboption("advanced", Value, "AdvPreferredLifetime", translate("Preferred lifetime"),
125 translate("Advertises the length of time in seconds that addresses generated from the prefix via stateless address autoconfiguration remain preferred."))
127 o.datatype = 'or(uinteger,"infinity")'
128 o.placeholder = 14400
131 o = s:taboption("advanced", Value, "Base6to4Interface", translate("6to4 interface"),
132 translate("Specifies a logical interface name to derive a 6to4 prefix from. The interfaces public IPv4 address is combined with 2002::/3 and the value of the prefix option"))
134 o.template = "cbi/network_netlist"