" . gettext("The changes must be applied for them to take effect.")); } $tab_array = array(); $tab_array[] = array(gettext("General Settings"), false, "services_unbound.php"); $tab_array[] = array(gettext("Advanced Settings"), true, "services_unbound_advanced.php"); $tab_array[] = array(gettext("Access Lists"), false, "/services_unbound_acls.php"); display_top_tabs($tab_array, true); $form = new Form(); $section = new Form_Section('Advanced Resolver Options'); $section->addInput(new Form_Checkbox( 'hideidentity', 'Hide Identity', 'id.server and hostname.bind queries are refused', $pconfig['hideidentity'] )); $section->addInput(new Form_Checkbox( 'hideversion', 'Hide Version', 'version.server and version.bind queries are refused', $pconfig['hideversion'] )); $section->addInput(new Form_Checkbox( 'prefetch', 'Prefetch Support', 'Message cache elements are prefetched before they expire to help keep the cache up to date', $pconfig['prefetch'] ))->setHelp('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.'); $section->addInput(new Form_Checkbox( 'prefetchkey', 'Prefetch DNS Key Support', 'DNSKEYs are fetched earlier in the validation process when a Delegation signer is encountered', $pconfig['prefetchkey'] ))->setHelp('This helps lower the latency of requests but does utilize a little more CPU. See: %1$sWikipedia%2$s', '', ''); $section->addInput(new Form_Checkbox( 'dnssecstripped', 'Harden DNSSEC Data', 'DNSSEC data is required for trust-anchored zones.', $pconfig['dnssecstripped'] ))->setHelp('If such data is absent, the zone becomes bogus. If Disabled and no DNSSEC data is received, then the zone is made insecure. '); $section->addInput(new Form_Select( 'msgcachesize', 'Message Cache Size', $pconfig['msgcachesize'], array_combine(array("4", "10", "20", "50", "100", "250", "512"), array("4 MB", "10 MB", "20 MB", "50 MB", "100 MB", "250 MB", "512 MB")) ))->setHelp('Size of the message cache. The message cache stores DNS response codes and validation statuses. The Resource Record Set (RRSet) cache will automatically be set to twice this amount. The RRSet cache contains the actual RR data. The default is 4 megabytes.'); $section->addInput(new Form_Select( 'outgoing_num_tcp', 'Outgoing TCP Buffers', $pconfig['outgoing_num_tcp'], array_combine(array("0", "10", "20", "30", "50", "50"), array("0", "10", "20", "30", "50", "50")) ))->setHelp('The number of outgoing TCP buffers to allocate per thread. The default value is 10. If 0 is selected then TCP queries are not sent to authoritative servers.'); $section->addInput(new Form_Select( 'incoming_num_tcp', 'Incoming TCP Buffers', $pconfig['incoming_num_tcp'], array_combine(array("0", "10", "20", "30", "50", "50"), array("0", "10", "20", "30", "50", "50")) ))->setHelp('The number of incoming TCP buffers to allocate per thread. The default value is 10. If 0 is selected then TCP queries are not accepted from clients.'); $section->addInput(new Form_Select( 'edns_buffer_size', 'EDNS Buffer Size', $pconfig['edns_buffer_size'], array_combine(array("512", "1480", "4096"), array("512", "1480", "4096")) ))->setHelp('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 fragmentation reassemble problems occur, 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.'); $section->addInput(new Form_Select( 'num_queries_per_thread', 'Number of Queries per Thread', $pconfig['num_queries_per_thread'], array_combine(array("512", "1024", "2048"), array("512", "1024", "2048")) ))->setHelp('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.'); $section->addInput(new Form_Select( 'jostle_timeout', 'Jostle Timeout', $pconfig['jostle_timeout'], array_combine(array("100", "200", "500", "1000"), array("100", "200", "500", "1000")) ))->setHelp('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. '); $section->addInput(new Form_Input( 'cache_max_ttl', 'Maximum TTL for RRsets and Messages', 'text', $pconfig['cache_max_ttl'] ))->setHelp('The 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.'); $section->addInput(new Form_Input( 'cache_min_ttl', 'Minimum TTL for RRsets and Messages', 'text', $pconfig['cache_min_ttl'] ))->setHelp('The 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.'); $mnt = gettext("minutes"); $section->addInput(new Form_Select( 'infra_host_ttl', 'TTL for Host Cache Entries', $pconfig['infra_host_ttl'], array_combine(array("60", "120", "300", "600", "900"), array("1 " . $mnt, "2 " . $mnt, "5 " . $mnt, "10 " . $mnt, "15 " . $mnt)) ))->setHelp('Time to Live, in seconds, for entries in the infrastructure host cache. The infrastructure host cache contains round trip timing, lameness, and EDNS support information for DNS servers. The default value is 15 minutes.'); $section->addInput(new Form_Select( 'infra_cache_numhosts', 'Number of Hosts to Cache', $pconfig['infra_cache_numhosts'], array_combine(array("1000", "5000", "10000", "20000", "50000", "100000", "200000"), array("1000", "5000", "10000", "20000", "50000", "100000", "200000")) ))->setHelp('Number of infrastructure hosts for which information is cached. The default is 10,000.'); $mln = gettext("million"); $section->addInput(new Form_Select( 'unwanted_reply_threshold', 'Unwanted Reply Threshold', $pconfig['unwanted_reply_threshold'], array_combine(array("disabled", "5000000", "10000000", "20000000", "40000000", "50000000"), array("Disabled", "5 " . $mln, "10 " . $mln, "20 " . $mln, "40 " . $mln, "50 " . $mln)) ))->setHelp('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.'); $lvl = gettext("level"); $section->addInput(new Form_Select( 'log_verbosity', 'Log Level', $pconfig['log_verbosity'], array_combine(array("0", "1", "2", "3", "4", "5"), array($lvl + " 0", $lvl + " 1", $lvl + " 2", $lvl + " 3", $lvl + " 4", $lvl + " 5")) ))->setHelp('Select the log verbosity.'); $section->addInput(new Form_Checkbox( 'disable_auto_added_access_control', 'Disable Auto-added Access Control', 'Disable the automatically-added access control entries', $pconfig['disable_auto_added_access_control'] ))->setHelp('By default, IPv4 and IPv6 networks residing on internal interfaces of this system are permitted. ' . 'Allowed networks must be manually configured on the Access Lists tab if the auto-added entries are disabled.'); $section->addInput(new Form_Checkbox( 'disable_auto_added_host_entries', 'Disable Auto-added Host Entries', 'Disable the automatically-added host entries', $pconfig['disable_auto_added_host_entries'] ))->setHelp('By default, the primary IPv4 and IPv6 addresses of this firewall are added as records for the system domain of this firewall as configured in %1$sSystem: General Setup%2$s. This disables the auto generation of these entries.', '', ''); $section->addInput(new Form_Checkbox( 'use_caps', 'Experimental Bit 0x20 Support', 'Use 0x-20 encoded random bits in the DNS query to foil spoofing attempts.', $pconfig['use_caps'] ))->setHelp('See the implementation %1$sdraft dns-0x20%2$s for more information.', '', ''); $form->add($section); print($form); include("foot.inc");