Project

General

Profile

« Previous | Next » 

Revision 8cd558b6

Added by ayvis over 11 years ago

xhtml Compliance
replaced <br>, <br/> and </br> with <br />

View differences:

usr/local/www/services_unbound_advanced.php
114 114
<?php if ($input_errors) print_input_errors($input_errors); ?>
115 115
<?php if ($savemsg) print_info_box($savemsg); ?>
116 116
<?php if (is_subsystem_dirty('hosts')): ?><p>
117
<?php print_info_box_np(gettext("The configuration of the DNS Resolver, has been changed") . ".<br>" . gettext("You must apply the changes in order for them to take effect."));?><br>
117
<?php print_info_box_np(gettext("The configuration of the DNS Resolver, has been changed") . ".<br />" . gettext("You must apply the changes in order for them to take effect."));?><br />
118 118
<?php endif; ?>
119 119
<table width="100%" border="0" cellpadding="0" cellspacing="0" summary="services unbound advanced">
120 120
	<tbody>
......
140 140
							<tr>
141 141
								<td width="22%" valign="top" class="vncell"><?=gettext("Hide Identity");?></td>
142 142
								<td width="78%" class="vtable">
143
									<p><input name="hideidentity" type="checkbox" id="hideidentity" value="yes" <?php if ($pconfig['hideidentity'] === true) echo "checked";?> onClick="enable_change(false)"><br/>
143
									<p><input name="hideidentity" type="checkbox" id="hideidentity" value="yes" <?php if ($pconfig['hideidentity'] === true) echo "checked";?> onClick="enable_change(false)"><br />
144 144
									<?=gettext("If enabled, id.server and hostname.bind queries are refused.");?></p>
145 145
								</td>
146 146
							</tr>
147 147
							<tr>
148 148
								<td width="22%" valign="top" class="vncell"><?=gettext("Hide Version");?></td>
149 149
								<td width="78%" class="vtable">
150
									<p><input name="enable" type="checkbox" id="hideversion" value="yes" <?php if ($pconfig['hideversion'] == "yes") echo "checked";?> onClick="enable_change(false)"><br/>
150
									<p><input name="enable" type="checkbox" id="hideversion" value="yes" <?php if ($pconfig['hideversion'] == "yes") echo "checked";?> onClick="enable_change(false)"><br />
151 151
									<?=gettext("If enabled, version.server and version.bind queries are refused.");?></p>
152 152
								</td>
153 153
							</tr>
154 154
							<tr>
155 155
								<td width="22%" valign="top" class="vncell"><?=gettext("Prefetch Support");?></td>
156 156
								<td width="78%" class="vtable">
157
									<p><input name="enable" type="checkbox" id="prefetch" value="yes" <?php if ($pconfig['prefetch'] == "yes") echo "checked";?> onClick="enable_change(false)"><br/>
157
									<p><input name="enable" type="checkbox" id="prefetch" value="yes" <?php if ($pconfig['prefetch'] == "yes") echo "checked";?> onClick="enable_change(false)"><br />
158 158
									<?=gettext("Message cache elements are prefetched before they expire to help keep the cache up to date. When enabled, this option can cause an increase of around 10% more DNS traffic and load on the server, but frequently requested items will not expire from the cache.");?></p>
159 159
								</td>
160 160
							</tr>
161 161
							<tr>
162 162
								<td width="22%" valign="top" class="vncell"><?=gettext("Prefetch DNS Key Support");?></td>
163 163
								<td width="78%" class="vtable">
164
									<p><input name="enable" type="checkbox" id="prefetchkey" value="yes" <?php if ($pconfig['prefetchkey'] == "yes") echo "checked";?> onClick="enable_change(false)"><br/>
164
									<p><input name="enable" type="checkbox" id="prefetchkey" value="yes" <?php if ($pconfig['prefetchkey'] == "yes") echo "checked";?> onClick="enable_change(false)"><br />
165 165
									<?=sprintf(gettext("DNSKEY's are fetched earlier in the validation process when a %sDelegation signer%s is encountered. This helps lower the latency of requests but does utilize a little more CPU."), "<a href='http://en.wikipedia.org/wiki/List_of_DNS_record_types'>", "</a>");?></p>
166 166
								</td>
167 167
							</tr>
168 168
							<tr>
169 169
								<td width="22%" valign="top" class="vncell"><?=gettext("Harden Glue");?></td>
170 170
								<td width="78%" class="vtable">
171
									<p><input name="enable" type="checkbox" id="hardenglue" value="yes" <?php if ($pconfig['hardenglue'] == "yes") echo "checked";?> onClick="enable_change(false)"><br/>
171
									<p><input name="enable" type="checkbox" id="hardenglue" value="yes" <?php if ($pconfig['hardenglue'] == "yes") echo "checked";?> onClick="enable_change(false)"><br />
172 172
									<?=gettext("Only trust glue if it is within the servers authority.");?></p>
173 173
								</td>
174 174
							</tr>
175 175
							<tr>
176 176
								<td width="22%" valign="top" class="vncell"><?=gettext("Harden DNSSEC data");?></td>
177 177
								<td width="78%" class="vtable">
178
									<p><input name="enable" type="checkbox" id="dnssecstripped" value="yes" <?php if ($pconfig['dnssecstripped'] == "yes") echo "checked";?> onClick="enable_change(false)"><br/>
178
									<p><input name="enable" type="checkbox" id="dnssecstripped" value="yes" <?php if ($pconfig['dnssecstripped'] == "yes") echo "checked";?> onClick="enable_change(false)"><br />
179 179
									<?=gettext("DNSSEC data is required for trust-anchored zones. If such data is absent, the zone becomes bogus. If this is disabled and no DNSSEC data is received, then the zone is made insecure.");?></p>
180 180
								</td>
181 181
							</tr>
......
191 191
											<option value="100">100MB</option>
192 192
											<option value="250">250MB</option>
193 193
											<option value="512">512MB</option>
194
										</select><br/>
194
										</select><br />
195 195
										<?=gettext("Size of the message cache. The message cache stores DNS rcodes and validation statuses. The RRSet cache will automatically be set to twice this amount. The RRSet cache contains the actual RR data. The default is 4 megabytes.");?>
196 196
									</p>
197 197
								</td>
......
207 207
											<option value="30">30</option>
208 208
											<option value="40">40</option>
209 209
											<option value="50">50</option>
210
										</select><br/>
210
										</select><br />
211 211
										<?=gettext("The number of outgoing TCP buffers to allocate per thread. The default value is 10. If 0 is selected then no TCP queries, to authoritative servers, are done.");?>
212 212
									</p>
213 213
								</td>
......
223 223
											<option value="30">30</option>
224 224
											<option value="40">40</option>
225 225
											<option value="50">50</option>
226
										</select><br/>
226
										</select><br />
227 227
										<?=gettext("The number of incoming TCP buffers to allocate per thread. The default value is 10. If 0 is selected then no TCP queries, from clients, are accepted.");?>
228 228
									</p>
229 229
								</td>
......
236 236
											<option value="512">512</option>
237 237
											<option value="1480">1480</option>
238 238
											<option value="4096">4096</option>
239
										</select><br/>
239
										</select><br />
240 240
										<?=gettext("Number of bytes size to advertise as the EDNS reassembly buffer size. This is the value that is used in UDP datagrams sent to peers. RFC recommendation is 4096 (which is the default). If you have fragmentation reassemble problems, usually seen as timeouts, then a value of 1480 should help. The 512 value bypasses most MTU path problems, but it can generate an excessive amount of TCP fallback.");?>
241 241
									</p>
242 242
								</td>
......
249 249
											<option value="512">512</option>
250 250
											<option value="1024">1024</option>
251 251
											<option value="2048">2048</option>
252
										</select><br/>
252
										</select><br />
253 253
										<?=gettext("The number of queries that every thread will service simultaneously. If more queries arrive that need to be serviced, and no queries can be jostled, then these queries are dropped.");?>
254 254
									</p>
255 255
								</td>
......
263 263
											<option value="200">200</option>
264 264
											<option value="500">500</option>
265 265
											<option value="1000">1000</option>
266
										</select><br/>
266
										</select><br />
267 267
										<?=gettext("This timeout is used for when the server is very busy. This protects against denial of service by slow queries or high query rates. The default value is 200 milliseconds.");?>
268 268
									</p>
269 269
								</td>
......
272 272
								<td width="22%" valign="top" class="vncell"><?=gettext("Maximum TTL for RRsets and messages");?></td>
273 273
								<td width="78%" class="vtable">
274 274
									<p>
275
										<input type="text" id="cache_max_ttl" name="cache_max_ttl" size=5><br/>
275
										<input type="text" id="cache_max_ttl" name="cache_max_ttl" size=5><br />
276 276
										<?=gettext("Configure a maximum Time to live for RRsets and messages in the cache. The default is 86400 seconds (1 day). When the internal TTL expires the cache item is expired. This can be configured to force the resolver to query for data more often and not trust (very large) TTL values.");?>
277 277
									</p>
278 278
								</td>
......
281 281
								<td width="22%" valign="top" class="vncell"><?=gettext("Minimum TTL for RRsets and messages");?></td>
282 282
								<td width="78%" class="vtable">
283 283
									<p>
284
										<input type="text" id="cache_min_ttl" name="cache_min_ttl" size=5><br/>
284
										<input type="text" id="cache_min_ttl" name="cache_min_ttl" size=5><br />
285 285
										<?=gettext("Configure a minimum Time to live for RRsets and messages in the cache. The default is 0 seconds. If the minimum value kicks in, the data is cached for longer than the domain owner intended, and thus less queries are made to look up the data. The 0 value ensures the data in the cache is as the domain owner intended. High values can lead to trouble as the data in the cache might not match up with the actual data anymore.");?>
286 286
									</p>
287 287
								</td>
......
296 296
											<option value="300">5 minutes</option>
297 297
											<option value="600">10 minutes</option>
298 298
											<option value="900">15 minutes</option>
299
										</select><br/>
299
										</select><br />
300 300
										<?=gettext("Time to live for entries in the host cache. The host cache contains roundtrip timing and EDNS support information. The default is 15 minutes.");?>
301 301
									</p>
302 302
								</td>
......
311 311
											<option value="300">5 minutes</option>
312 312
											<option value="600">10 minutes</option>
313 313
											<option value="900">15 minutes</option>
314
										</select><br/>
314
										</select><br />
315 315
										<?=gettext("Time to live for when a delegation is considered to be lame. The default is 15 minutes.");?>
316 316
									</p>
317 317
								</td>
......
326 326
											<option value="10000">10 000</option>
327 327
											<option value="20000">20 000</option>
328 328
											<option value="50000">50 000</option>
329
										</select><br/>
329
										</select><br />
330 330
										<?=gettext("Number of hosts for which information is cached. The default is 10,000.");?>
331 331
									</p>
332 332
								</td>
......
342 342
											<option value="20000000">20 million</option>
343 343
											<option value="40000000">40 million</option>
344 344
											<option value="50000000">50 million</option>
345
										</select><br/>
345
										</select><br />
346 346
										<?=gettext("If enabled, a total number of unwanted replies is kept track of in every thread. When it reaches the threshold, a defensive action is taken and a warning is printed to the log file. This defensive action is to clear the RRSet and message caches, hopefully flushing away any poison. The default is disabled, but if enabled a value of 10 million is suggested.");?>
347 347
									</p>
348 348
								</td>
......
358 358
											<option value="3">Level 3</option>
359 359
											<option value="4">Level 4</option>
360 360
											<option value="5">Level 5</option>
361
										</select><br/>
361
										</select><br />
362 362
										<?=gettext("Select the log verbosity.");?>
363 363
									</p>
364 364
								</td>

Also available in: Unified diff