* All rights reserved. * * originally based on m0n0wall (http://m0n0.ch/wall) * Copyright (c) 2003-2004 Manuel Kasper . * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgment: * "This product includes software developed by the pfSense Project * for use in the pfSense® software distribution. (http://www.pfsense.org/). * * 4. The names "pfSense" and "pfSense Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * coreteam@pfsense.org. * * 5. Products derived from this software may not be called "pfSense" * nor may "pfSense" appear in their names without prior written * permission of the Electric Sheep Fencing, LLC. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * * "This product includes software developed by the pfSense Project * for use in the pfSense software distribution (http://www.pfsense.org/). * * THIS SOFTWARE IS PROVIDED BY THE pfSense PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE pfSense PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. */ ##|+PRIV ##|*IDENT=page-services-dnsforwarder ##|*NAME=Services: DNS Forwarder ##|*DESCR=Allow access to the 'Services: DNS Forwarder' page. ##|*MATCH=services_dnsmasq.php* ##|-PRIV require_once("guiconfig.inc"); require_once("functions.inc"); require_once("filter.inc"); require_once("shaper.inc"); require_once("system.inc"); // Sort host entries for display in alphabetical order function hostcmp($a, $b) { return strcasecmp($a['host'], $b['host']); } function hosts_sort() { global $a_hosts; if (!is_array($a_hosts)) { return; } usort($a_hosts, "hostcmp"); } // Sort domain entries for display in alphabetical order function domaincmp($a, $b) { return strcasecmp($a['domain'], $b['domain']); } function domains_sort() { global $a_domainOverrides; if (!is_array($a_domainOverrides)) { return; } usort($a_domainOverrides, "domaincmp"); } $pconfig['enable'] = isset($config['dnsmasq']['enable']); $pconfig['regdhcp'] = isset($config['dnsmasq']['regdhcp']); $pconfig['regdhcpstatic'] = isset($config['dnsmasq']['regdhcpstatic']); $pconfig['dhcpfirst'] = isset($config['dnsmasq']['dhcpfirst']); $pconfig['strict_order'] = isset($config['dnsmasq']['strict_order']); $pconfig['domain_needed'] = isset($config['dnsmasq']['domain_needed']); $pconfig['no_private_reverse'] = isset($config['dnsmasq']['no_private_reverse']); $pconfig['port'] = $config['dnsmasq']['port']; $pconfig['custom_options'] = $config['dnsmasq']['custom_options']; $pconfig['strictbind'] = isset($config['dnsmasq']['strictbind']); if (!empty($config['dnsmasq']['interface'])) { $pconfig['interface'] = explode(",", $config['dnsmasq']['interface']); } else { $pconfig['interface'] = array(); } if (!is_array($config['dnsmasq']['hosts'])) { $config['dnsmasq']['hosts'] = array(); } if (!is_array($config['dnsmasq']['domainoverrides'])) { $config['dnsmasq']['domainoverrides'] = array(); } $a_hosts = &$config['dnsmasq']['hosts']; // Add a temporary index so we don't lose the order after sorting for ($idx=0; $idx array(), 'selected' => array()); $iflist['options'][""] = "All"; if (empty($pconfig['interface']) || empty($pconfig['interface'][0])) { array_push($iflist['selected'], ""); } foreach ($interface_addresses as $laddr => $ldescr) { $iflist['options'][$laddr] = htmlspecialchars($ldescr); if ($pconfig['interface'] && in_array($laddr, $pconfig['interface'])) { array_push($iflist['selected'], $laddr); } } unset($interface_addresses); return($iflist); } $pgtitle = array(gettext("Services"), gettext("DNS Forwarder")); $shortcut_section = "forwarder"; include("head.inc"); if ($input_errors) { print_input_errors($input_errors); } if ($savemsg) { print_info_box($savemsg, 'success'); } if (is_subsystem_dirty('hosts')) { print_apply_box(gettext("The DNS forwarder configuration has been changed.") . "
" . gettext("The changes must be applied for them to take effect.")); } $form = new Form(); $section = new Form_Section('General DNS Forwarder Options'); $section->addInput(new Form_Checkbox( 'enable', 'Enable', 'Enable DNS forwarder', $pconfig['enable'] ))->toggles('.toggle-dhcp', 'disable'); $section->addInput(new Form_Checkbox( 'regdhcp', 'DHCP Registration', 'Register DHCP leases in DNS forwarder', $pconfig['regdhcp'] ))->setHelp(sprintf("If this option is set, then machines that specify". " their hostname when requesting a DHCP lease will be registered". " in the DNS forwarder, so that their name can be resolved.". " The domain in %sSystem: General Setup%s should also". " be set to the proper value.",'','')) ->addClass('toggle-dhcp'); $section->addInput(new Form_Checkbox( 'regdhcpstatic', 'Static DHCP', 'Register DHCP static mappings in DNS forwarder', $pconfig['regdhcpstatic'] ))->setHelp(sprintf("If this option is set, then DHCP static mappings will ". "be registered in the DNS forwarder, so that their name can be ". "resolved. The domain in %sSystem: General Setup%s should also ". "be set to the proper value.",'','')) ->addClass('toggle-dhcp'); $section->addInput(new Form_Checkbox( 'dhcpfirst', 'Prefer DHCP', 'Resolve DHCP mappings first', $pconfig['dhcpfirst'] ))->setHelp(sprintf("If this option is set, then DHCP mappings will ". "be resolved before the manual list of names below. This only ". "affects the name given for a reverse lookup (PTR).")) ->addClass('toggle-dhcp'); $group = new Form_Group('DNS Query Forwarding'); $group->add(new Form_Checkbox( 'strict_order', 'DNS Query Forwarding', 'Query DNS servers sequentially', $pconfig['strict_order'] ))->setHelp(sprintf("If this option is set, %s DNS Forwarder (dnsmasq) will ". "query the DNS servers sequentially in the order specified (System - General Setup - DNS Servers), ". "rather than all at once in parallel. ", $g['product_name'])); $group->add(new Form_Checkbox( 'domain_needed', null, 'Require domain', $pconfig['domain_needed'] ))->setHelp(sprintf("If this option is set, %s DNS Forwarder (dnsmasq) will ". "not forward A or AAAA queries for plain names, without dots or domain parts, to upstream name servers. ". "If the name is not known from /etc/hosts or DHCP then a \"not found\" answer is returned. ", $g['product_name'])); $group->add(new Form_Checkbox( 'no_private_reverse', null, 'Do not forward private reverse lookups', $pconfig['no_private_reverse'] ))->setHelp(sprintf("If this option is set, %s DNS Forwarder (dnsmasq) will ". "not forward reverse DNS lookups (PTR) for private addresses (RFC 1918) to upstream name servers. ". "Any entries in the Domain Overrides section forwarding private \"n.n.n.in-addr.arpa\" names to a specific server are still forwarded. ". "If the IP to name is not known from /etc/hosts, DHCP or a specific domain override then a \"not found\" answer is immediately returned. ", $g['product_name'])); $section->add($group); $section->addInput(new Form_Input( 'port', 'Listen Port', 'number', $pconfig['port'], ['placeholder' => '53'] ))->setHelp('The port used for responding to DNS queries. It should normally be left blank unless another service needs to bind to TCP/UDP port 53.'); $iflist = build_if_list(); $section->addInput(new Form_Select( 'interface', '*Interfaces', $iflist['selected'], $iflist['options'], true ))->setHelp('Interface IPs used by the DNS Forwarder for responding to queries from clients. If an interface has both IPv4 and IPv6 IPs, both are used. Queries to other interface IPs not selected below are discarded. ' . 'The default behavior is to respond to queries on every available IPv4 and IPv6 address.'); $section->addInput(new Form_Checkbox( 'strictbind', 'Strict binding', 'Strict interface binding', $pconfig['strictbind'] ))->setHelp('If this option is set, the DNS forwarder will only bind to the interfaces containing the IP addresses selected above, ' . 'rather than binding to all interfaces and discarding queries to other addresses.' . '

' . 'This option does NOT work with IPv6. If set, dnsmasq will not bind to IPv6 addresses.'); $section->addInput(new Form_Textarea( 'custom_options', 'Custom options', $pconfig['custom_options'] ))->setHelp('Enter any additional options to add to the dnsmasq configuration here, separated by a space or newline.') ->addClass('advanced'); $form->add($section); print($form); ?>

$hostent): ?>

$doment): ?>
' . gettext('If the DNS forwarder is enabled, the DHCP service (if enabled) will automatically' . ' serve the LAN IP address as a DNS server to DHCP clients so they will use the forwarder.') . '

' . sprintf(gettext('The DNS forwarder will use the DNS servers entered in %1$sSystem > General Setup%2$s or' . ' those obtained via DHCP or PPP on WAN if "Allow DNS server list to be overridden by DHCP/PPP on WAN" is checked.' . ' If that option is not used (or if a static IP address is used on WAN),' . ' at least one DNS server must be manually specified on the %1$sSystem > General Setup%2$s page.'), '', '') . '

', 'info', false ); ?>