X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fluci.git;a=blobdiff_plain;f=applications%2Fluci-app-radvd%2Fluasrc%2Fmodel%2Fcbi%2Fradvd%2Frdnss.lua;fp=applications%2Fluci-app-radvd%2Fluasrc%2Fmodel%2Fcbi%2Fradvd%2Frdnss.lua;h=ea65263996912415a111458537341eca0f822013;hp=0000000000000000000000000000000000000000;hb=1bb4822dca6113f73e3bc89e2acf15935e6f8e92;hpb=9edd0e46c3f880727738ce8ca6ff1c8b85f99ef4 diff --git a/applications/luci-app-radvd/luasrc/model/cbi/radvd/rdnss.lua b/applications/luci-app-radvd/luasrc/model/cbi/radvd/rdnss.lua new file mode 100644 index 000000000..ea6526399 --- /dev/null +++ b/applications/luci-app-radvd/luasrc/model/cbi/radvd/rdnss.lua @@ -0,0 +1,100 @@ +--[[ +LuCI - Lua Configuration Interface + +Copyright 2010 Jo-Philipp Wich + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +$Id$ +]]-- + +local sid = arg[1] +local utl = require "luci.util" + +m = Map("radvd", translatef("Radvd - RDNSS"), + translate("Radvd is a router advertisement daemon for IPv6. " .. + "It listens to router solicitations and sends router advertisements " .. + "as described in RFC 4861.")) + +m.redirect = luci.dispatcher.build_url("admin/network/radvd") + +if m.uci:get("radvd", sid) ~= "rdnss" then + luci.http.redirect(m.redirect) + return +end + + +s = m:section(NamedSection, sid, "interface", translate("RDNSS Configuration")) +s.addremove = false + + +-- +-- General +-- + +o = s:option(Flag, "ignore", translate("Enable")) +o.rmempty = false + +function o.cfgvalue(...) + local v = Flag.cfgvalue(...) + return v == "1" and "0" or "1" +end + +function o.write(self, section, value) + Flag.write(self, section, value == "1" and "0" or "1") +end + + +o = s:option(Value, "interface", translate("Interface"), + translate("Specifies the logical interface name this section belongs to")) + +o.template = "cbi/network_netlist" +o.nocreate = true +o.optional = false + +function o.formvalue(...) + return Value.formvalue(...) or "-" +end + +function o.validate(self, value) + if value == "-" then + return nil, translate("Interface required") + end + return value +end + +function o.write(self, section, value) + m.uci:set("radvd", section, "ignore", 0) + m.uci:set("radvd", section, "interface", value) +end + + +o = s:option(DynamicList, "addr", translate("Addresses"), + translate("Advertised IPv6 RDNSS. If empty, the current IPv6 address of the interface is used")) + +o.optional = false +o.rmempty = true +o.datatype = "ip6addr" +o.placeholder = translate("default") +function o.cfgvalue(self, section) + local l = { } + local v = m.uci:get_list("radvd", section, "addr") + for v in utl.imatch(v) do + l[#l+1] = v + end + return l +end + + +o = s:option(Value, "AdvRDNSSLifetime", translate("Lifetime"), + translate("Specifies the maximum duration how long the RDNSS entries are used for name resolution.")) + +o.datatype = 'or(uinteger,"infinity")' +o.placeholder = 1200 + + +return m