Merge pull request #304 from nmav/ocserv-crypt
[project/luci.git] / modules / luci-mod-admin-full / luasrc / model / cbi / admin_network / dhcp.lua
1 -- Copyright 2008 Steven Barth <steven@midlink.org>
2 -- Licensed to the public under the Apache License 2.0.
3
4 local ipc = require "luci.ip"
5
6 m = Map("dhcp", translate("DHCP and DNS"),
7         translate("Dnsmasq is a combined <abbr title=\"Dynamic Host Configuration Protocol" ..
8                 "\">DHCP</abbr>-Server and <abbr title=\"Domain Name System\">DNS</abbr>-" ..
9                 "Forwarder for <abbr title=\"Network Address Translation\">NAT</abbr> " ..
10                 "firewalls"))
11
12 s = m:section(TypedSection, "dnsmasq", translate("Server Settings"))
13 s.anonymous = true
14 s.addremove = false
15
16 s:tab("general", translate("General Settings"))
17 s:tab("files", translate("Resolv and Hosts Files"))
18 s:tab("tftp", translate("TFTP Settings"))
19 s:tab("advanced", translate("Advanced Settings"))
20
21 s:taboption("general", Flag, "domainneeded",
22         translate("Domain required"),
23         translate("Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " ..
24                 "<abbr title=\"Domain Name System\">DNS</abbr>-Name"))
25
26 s:taboption("general", Flag, "authoritative",
27         translate("Authoritative"),
28         translate("This is the only <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" ..
29                 "abbr> in the local network"))
30
31
32 s:taboption("files", Flag, "readethers",
33         translate("Use <code>/etc/ethers</code>"),
34         translate("Read <code>/etc/ethers</code> to configure the <abbr title=\"Dynamic Host " ..
35                 "Configuration Protocol\">DHCP</abbr>-Server"))
36
37 s:taboption("files", Value, "leasefile",
38         translate("Leasefile"),
39         translate("file where given <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" ..
40                 "abbr>-leases will be stored"))
41
42 s:taboption("files", Flag, "noresolv",
43         translate("Ignore resolve file")).optional = true
44
45 rf = s:taboption("files", Value, "resolvfile",
46         translate("Resolve file"),
47         translate("local <abbr title=\"Domain Name System\">DNS</abbr> file"))
48
49 rf:depends("noresolv", "")
50 rf.optional = true
51
52
53 s:taboption("files", Flag, "nohosts",
54         translate("Ignore Hosts files")).optional = true
55
56 hf = s:taboption("files", DynamicList, "addnhosts",
57         translate("Additional Hosts files"))
58
59 hf:depends("nohosts", "")
60 hf.optional = true
61
62
63 s:taboption("advanced", Flag, "boguspriv",
64         translate("Filter private"),
65         translate("Do not forward reverse lookups for local networks"))
66
67 s:taboption("advanced", Flag, "filterwin2k",
68         translate("Filter useless"),
69         translate("Do not forward requests that cannot be answered by public name servers"))
70
71
72 s:taboption("advanced", Flag, "localise_queries",
73         translate("Localise queries"),
74         translate("Localise hostname depending on the requesting subnet if multiple IPs are available"))
75
76 s:taboption("general", Value, "local",
77         translate("Local server"),
78         translate("Local domain specification. Names matching this domain are never forwarded and are resolved from DHCP or hosts files only"))
79
80 s:taboption("general", Value, "domain",
81         translate("Local domain"),
82         translate("Local domain suffix appended to DHCP names and hosts file entries"))
83
84 s:taboption("advanced", Flag, "expandhosts",
85         translate("Expand hosts"),
86         translate("Add local domain suffix to names served from hosts files"))
87
88 s:taboption("advanced", Flag, "nonegcache",
89         translate("No negative cache"),
90         translate("Do not cache negative replies, e.g. for not existing domains"))
91
92 s:taboption("advanced", Flag, "strictorder",
93         translate("Strict order"),
94         translate("<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the " ..
95                 "order of the resolvfile")).optional = true
96
97
98 bn = s:taboption("advanced", DynamicList, "bogusnxdomain", translate("Bogus NX Domain Override"),
99         translate("List of hosts that supply bogus NX domain results"))
100
101 bn.optional = true
102 bn.placeholder = "67.215.65.132"
103
104
105 s:taboption("general", Flag, "logqueries",
106         translate("Log queries"),
107         translate("Write received DNS requests to syslog")).optional = true
108
109 df = s:taboption("general", DynamicList, "server", translate("DNS forwardings"),
110         translate("List of <abbr title=\"Domain Name System\">DNS</abbr> " ..
111                         "servers to forward requests to"))
112
113 df.optional = true
114 df.placeholder = "/example.org/10.1.2.3"
115
116
117 rp = s:taboption("general", Flag, "rebind_protection",
118         translate("Rebind protection"),
119         translate("Discard upstream RFC1918 responses"))
120
121 rp.rmempty = false
122
123
124 rl = s:taboption("general", Flag, "rebind_localhost",
125         translate("Allow localhost"),
126         translate("Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services"))
127
128 rl:depends("rebind_protection", "1")
129
130
131 rd = s:taboption("general", DynamicList, "rebind_domain",
132         translate("Domain whitelist"),
133         translate("List of domains to allow RFC1918 responses for"))
134
135 rd:depends("rebind_protection", "1")
136 rd.datatype = "host"
137 rd.placeholder = "ihost.netflix.com"
138
139
140 pt = s:taboption("advanced", Value, "port",
141         translate("<abbr title=\"Domain Name System\">DNS</abbr> server port"),
142         translate("Listening port for inbound DNS queries"))
143
144 pt.optional = true
145 pt.datatype = "port"
146 pt.placeholder = 53
147
148
149 qp = s:taboption("advanced", Value, "queryport",
150         translate("<abbr title=\"Domain Name System\">DNS</abbr> query port"),
151         translate("Fixed source port for outbound DNS queries"))
152
153 qp.optional = true
154 qp.datatype = "port"
155 qp.placeholder = translate("any")
156
157
158 lm = s:taboption("advanced", Value, "dhcpleasemax",
159         translate("<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " ..
160                 "Protocol\">DHCP</abbr> leases"),
161         translate("Maximum allowed number of active DHCP leases"))
162
163 lm.optional = true
164 lm.datatype = "uinteger"
165 lm.placeholder = translate("unlimited")
166
167
168 em = s:taboption("advanced", Value, "ednspacket_max",
169         translate("<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " ..
170                 "Domain Name System\">EDNS0</abbr> packet size"),
171         translate("Maximum allowed size of EDNS.0 UDP packets"))
172
173 em.optional = true
174 em.datatype = "uinteger"
175 em.placeholder = 1280
176
177
178 cq = s:taboption("advanced", Value, "dnsforwardmax",
179         translate("<abbr title=\"maximal\">Max.</abbr> concurrent queries"),
180         translate("Maximum allowed number of concurrent DNS queries"))
181
182 cq.optional = true
183 cq.datatype = "uinteger"
184 cq.placeholder = 150
185
186
187 s:taboption("tftp", Flag, "enable_tftp",
188         translate("Enable TFTP server")).optional = true
189
190 tr = s:taboption("tftp", Value, "tftp_root",
191         translate("TFTP server root"),
192         translate("Root directory for files served via TFTP"))
193
194 tr.optional = true
195 tr:depends("enable_tftp", "1")
196 tr.placeholder = "/"
197
198
199 db = s:taboption("tftp", Value, "dhcp_boot",
200         translate("Network boot image"),
201         translate("Filename of the boot image advertised to clients"))
202
203 db.optional = true
204 db:depends("enable_tftp", "1")
205 db.placeholder = "pxelinux.0"
206
207
208 m:section(SimpleSection).template = "admin_network/lease_status"
209
210 s = m:section(TypedSection, "host", translate("Static Leases"),
211         translate("Static leases are used to assign fixed IP addresses and symbolic hostnames to " ..
212                 "DHCP clients. They are also required for non-dynamic interface configurations where " ..
213                 "only hosts with a corresponding lease are served.") .. "<br />" ..
214         translate("Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</em> " ..
215                 "indentifies the host, the <em>IPv4-Address</em> specifies to the fixed address to " ..
216                 "use and the <em>Hostname</em> is assigned as symbolic name to the requesting host."))
217
218 s.addremove = true
219 s.anonymous = true
220 s.template = "cbi/tblsection"
221
222 name = s:option(Value, "name", translate("Hostname"))
223 name.datatype = "hostname"
224 name.rmempty  = true
225
226 mac = s:option(Value, "mac", translate("<abbr title=\"Media Access Control\">MAC</abbr>-Address"))
227 mac.datatype = "list(macaddr)"
228 mac.rmempty  = true
229
230 ip = s:option(Value, "ip", translate("<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address"))
231 ip.datatype = "or(ip4addr,'ignore')"
232
233 hostid = s:option(Value, "hostid", translate("<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)"))
234
235 ipc.neighbors({ family = 4 }, function(n)
236         if n.mac and n.dest then
237                 ip:value(n.dest:string())
238                 mac:value(n.mac, "%s (%s)" %{ n.mac, n.dest:string() })
239         end
240 end)
241
242 function ip.validate(self, value, section)
243         local m = mac:formvalue(section) or ""
244         local n = name:formvalue(section) or ""
245         if value and #n == 0 and #m == 0 then
246                 return nil, translate("One of hostname or mac address must be specified!")
247         end
248         return Value.validate(self, value, section)
249 end
250
251
252 return m