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