* All rights reserved. * * originally based on m0n0wall (http://m0n0.ch/wall) * Copyright (c) 2003-2004 Manuel Kasper . * All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ ##|+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("pfsense-utils.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 ($_POST['apply']) { print_apply_result_box($retval); } 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('If this option is set 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 %1$sSystem: General Setup%2$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('If this option is set, DHCP static mappings will '. 'be registered in the DNS forwarder, so that their name can be '. 'resolved. The domain in %1$sSystem: General Setup%2$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("If this option is set 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('If this option is set %1$s DNS Forwarder (dnsmasq) will '. 'query the DNS servers sequentially in the order specified (%2$sSystem - General Setup - DNS Servers%3$s), '. 'rather than all at once in parallel. ', $g['product_name'], '', ''); $group->add(new Form_Checkbox( 'domain_needed', null, 'Require domain', $pconfig['domain_needed'] ))->setHelp("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("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.%1$s' . '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 ); ?>