applications: add radvd frontend
[project/luci.git] / applications / luci-radvd / luasrc / model / cbi / radvd / prefix.lua
1 --[[
2 LuCI - Lua Configuration Interface
3
4 Copyright 2010 Jo-Philipp Wich <xm@subsignal.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 local sid = arg[1]
16
17 m = Map("radvd", translatef("Radvd - Prefix"),
18         translate("Radvd is a router advertisement daemon for IPv6. " ..
19                 "It listens to router solicitations and sends router advertisements " ..
20                 "as described in RFC 4861."))
21
22 m.redirect = luci.dispatcher.build_url("admin/network/radvd")
23
24 if m.uci:get("radvd", sid) ~= "prefix" then
25         luci.http.redirect(m.redirect)
26         return
27 end
28
29
30 s = m:section(NamedSection, sid, "interface", translate("Prefix Configuration"))
31 s.addremove = false
32
33 s:tab("general", translate("General"))
34 s:tab("advanced",  translate("Advanced"))
35
36
37 --
38 -- General
39 --
40
41 o = s:taboption("general", Value, "interface", translate("Interface"),
42         translate("Specifies the logical interface name this section belongs to"))
43
44 o.template = "cbi/network_netlist"
45 o.nocreate = true
46 o.optional = false
47
48 function o.formvalue(...)
49         return Value.formvalue(...) or "-"
50 end
51
52 function o.validate(self, value)
53         if value == "-" then
54                 return nil, translate("Interface required")
55         end
56         return value
57 end
58
59 function o.write(self, section, value)
60         m.uci:set("radvd", section, "ignore", 0)
61         m.uci:set("radvd", section, "interface", value)
62 end
63
64
65 o = s:taboption("general", Value, "prefix", translate("Prefix"),
66         translate("Advertised IPv6 prefix. If empty, the current interface prefix is used"))
67
68 o.optional = true
69 o.datatype = "ip6addr"
70
71
72 o = s:taboption("general", Flag, "AdvOnLink", translate("On-link determination"),
73         translate("Indicates that this prefix can be used for on-link determination (RFC4861)"))
74
75 o.rmempty = false
76 o.default = "1"
77
78
79 o = s:taboption("general", Flag, "AdvAutonomous", translate("Autonomous"),
80         translate("Indicates that this prefix can be used for autonomous address configuration (RFC4862)"))
81
82 o.rmempty = false
83 o.default = "1"
84
85
86 --
87 -- Advanced
88 --
89
90 o = s:taboption("advanced", Flag, "AdvRouterAddr", translate("Advertise router address"),
91         translate("Indicates that the address of interface is sent instead of network prefix, as is required by Mobile IPv6"))
92
93
94 o = s:taboption("advanced", Value, "AdvValidLifetime", translate("Valid lifetime"),
95         translate("Advertises the length of time in seconds that the prefix is valid for the purpose of on-link determination. Use 0 to specify an infinite lifetime"))
96
97 o.datatype = "uinteger"
98 o.placeholder = 86400
99
100 function o.cfgvalue(self, section)
101         local v = Value.cfgvalue(self, section)
102         if v == "infinity" then
103                 return 0
104         else
105                 return v
106         end
107 end
108
109 function o.write(self, section, value)
110         if value == "0" then
111                 Value.write(self, section, "infinity")
112         else
113                 Value.write(self, section, value)
114         end
115 end
116
117
118 o = s:taboption("advanced", Value, "AdvPreferredLifetime", translate("Preferred lifetime"),
119         translate("Advertises the length of time in seconds that addresses generated from the prefix via stateless address autoconfiguration remain preferred. Use 0 to specify an infinite lifetime"))
120
121 o.datatype = "uinteger"
122 o.placeholder = 14400
123
124 function o.cfgvalue(self, section)
125         local v = Value.cfgvalue(self, section)
126         if v == "infinity" then
127                 return 0
128         else
129                 return v
130         end
131 end
132
133 function o.write(self, section, value)
134         if value == "0" then
135                 Value.write(self, section, "infinity")
136         else
137                 Value.write(self, section, value)
138         end
139 end
140
141
142 o = s:taboption("advanced", Value, "Base6to4Interface", translate("6to4 interface"),
143         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"))
144
145 o.template = "cbi/network_netlist"
146 o.nocreate = true
147 o.unspecified = true
148
149
150 return m