Commit 05528a54 authored by Ad Schellevis's avatar Ad Schellevis

(legacy) refactor services_dnsmasq.php

parent 654e3d4d
<?php <?php
/* /*
Copyright (C) 2014-2015 Deciso B.V. Copyright (C) 2014-2016 Deciso B.V.
Copyright (C) 2003-2004 Bob Zoller <bob@kludgebox.com> and Manuel Kasper <mk@neon1.net>. Copyright (C) 2003-2004 Bob Zoller <bob@kludgebox.com> and Manuel Kasper <mk@neon1.net>.
All rights reserved. All rights reserved.
Redistribution and use in source and binary forms, with or without Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met: modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, 1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer. this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright 2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution. documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 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 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE. POSSIBILITY OF SUCH DAMAGE.
*/ */
require_once("guiconfig.inc"); require_once("guiconfig.inc");
...@@ -35,456 +35,476 @@ require_once("system.inc"); ...@@ -35,456 +35,476 @@ require_once("system.inc");
require_once("pfsense-utils.inc"); require_once("pfsense-utils.inc");
require_once("unbound.inc"); require_once("unbound.inc");
$pconfig['enable'] = isset($config['dnsmasq']['enable']); if (empty($config['dnsmasq']['hosts']) || !is_array($config['dnsmasq']['hosts'])) {
$pconfig['regdhcp'] = isset($config['dnsmasq']['regdhcp']); $config['dnsmasq']['hosts'] = array();
$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'];
$a_domainOverrides = &$config['dnsmasq']['domainoverrides'];
if ($_POST && isset($_POST['submit'])) {
$pconfig = $_POST;
unset($input_errors);
$config['dnsmasq']['enable'] = ($_POST['enable']) ? true : false;
$config['dnsmasq']['regdhcp'] = ($_POST['regdhcp']) ? true : false;
$config['dnsmasq']['regdhcpstatic'] = ($_POST['regdhcpstatic']) ? true : false;
$config['dnsmasq']['dhcpfirst'] = ($_POST['dhcpfirst']) ? true : false;
$config['dnsmasq']['strict_order'] = ($_POST['strict_order']) ? true : false;
$config['dnsmasq']['domain_needed'] = ($_POST['domain_needed']) ? true : false;
$config['dnsmasq']['no_private_reverse'] = ($_POST['no_private_reverse']) ? true : false;
$config['dnsmasq']['custom_options'] = str_replace("\r\n", "\n", $_POST['custom_options']);
$config['dnsmasq']['strictbind'] = ($_POST['strictbind']) ? true : false;
if ($_POST['port'])
if(is_port($_POST['port']))
$config['dnsmasq']['port'] = $_POST['port'];
else
$input_errors[] = gettext("You must specify a valid port number");
else if (isset($config['dnsmasq']['port']))
unset($config['dnsmasq']['port']);
if (is_array($_POST['interface']))
$config['dnsmasq']['interface'] = implode(",", $_POST['interface']);
elseif (isset($config['dnsmasq']['interface']))
unset($config['dnsmasq']['interface']);
if ($config['dnsmasq']['custom_options']) {
$args = '';
foreach (preg_split('/\s+/', $config['dnsmasq']['custom_options']) as $c)
$args .= escapeshellarg("--{$c}") . " ";
exec("/usr/local/sbin/dnsmasq --test $args", $output, $rc);
if ($rc != 0)
$input_errors[] = gettext("Invalid custom options");
}
if (!$input_errors) {
write_config();
$retval = services_dnsmasq_configure();
$savemsg = get_std_save_message();
}
} elseif ($_POST && isset($_POST['apply']) ) {
// Reload filter (we might need to sync to CARP hosts)
filter_configure();
/* Update resolv.conf in case the interface bindings exclude localhost. */
system_resolvconf_generate();
system_hosts_generate();
$retval = services_dnsmasq_configure();
$savemsg = get_std_save_message();
if ($retval == 0)
clear_subsystem_dirty('hosts');
if (empty($config['dnsmasq']['domainoverrides']) || !is_array($config['dnsmasq']['domainoverrides'])) {
$config['dnsmasq']['domainoverrides'] = array();
} }
if ($_GET['act'] == "del") { if ($_SERVER['REQUEST_METHOD'] === 'GET') {
if ($_GET['type'] == 'host') { $pconfig = array();
if ($a_hosts[$_GET['id']]) { // booleans
unset($a_hosts[$_GET['id']]); $pconfig['enable'] = isset($config['dnsmasq']['enable']);
write_config(); $pconfig['regdhcp'] = isset($config['dnsmasq']['regdhcp']);
mark_subsystem_dirty('hosts'); $pconfig['regdhcpstatic'] = isset($config['dnsmasq']['regdhcpstatic']);
header("Location: services_dnsmasq.php"); $pconfig['dhcpfirst'] = isset($config['dnsmasq']['dhcpfirst']);
exit; $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']);
elseif ($_GET['type'] == 'doverride') { $pconfig['strictbind'] = isset($config['dnsmasq']['strictbind']);
if ($a_domainOverrides[$_GET['id']]) { // simple text types
unset($a_domainOverrides[$_GET['id']]); $pconfig['port'] = !empty($config['dnsmasq']['port']) ? $config['dnsmasq']['port'] : "";
write_config(); $pconfig['custom_options'] = !empty($config['dnsmasq']['custom_options']) ? $config['dnsmasq']['custom_options'] : "";
mark_subsystem_dirty('hosts'); // arrays
header("Location: services_dnsmasq.php"); $pconfig['interface'] = !empty($config['dnsmasq']['interface']) ? explode(",", $config['dnsmasq']['interface']) : array();
exit;
} } elseif ($_SERVER['REQUEST_METHOD'] === 'POST') {
} $pconfig = $_POST;
$input_errors = array();
if (isset($pconfig['submit'])) {
// validate
if (!empty($pconfig['port']) && !is_port($pconfig['port'])) {
$input_errors[] = gettext("You must specify a valid port number");
}
if (!empty($pconfig['enable']) && isset($config['unbound']['enable'])) {
$input_errors[] = gettext("The DNS Resolver is still active. Disable it before enabling the DNS Forwarder.");
}
if (!empty($pconfig['custom_options'])) {
$args = '';
foreach (preg_split('/\s+/', str_replace("\r\n", "\n", $pconfig['custom_options'])) as $c) {
$args .= escapeshellarg("--{$c}") . " ";
}
exec("/usr/local/sbin/dnsmasq --test $args", $output, $rc);
if ($rc != 0) {
$input_errors[] = gettext("Invalid custom options");
}
}
if (count($input_errors) == 0) {
// save form
$config['dnsmasq']['enable'] = !empty($pconfig['enable']);
$config['dnsmasq']['regdhcp'] = !empty($pconfig['regdhcp']);
$config['dnsmasq']['regdhcpstatic'] = !empty($pconfig['regdhcpstatic']);
$config['dnsmasq']['dhcpfirst'] = !empty($pconfig['dhcpfirst']);
$config['dnsmasq']['strict_order'] = !empty($pconfig['strict_order']);
$config['dnsmasq']['domain_needed'] = !empty($pconfig['domain_needed']);
$config['dnsmasq']['no_private_reverse'] = !empty($pconfig['no_private_reverse']);
$config['dnsmasq']['strictbind'] = !empty($pconfig['strictbind']);
if (!empty($pconfig['interface'])) {
$config['dnsmasq']['interface'] = implode(",", $pconfig['interface']);
} elseif (isset($config['dnsmasq']['interface'])) {
unset($config['dnsmasq']['interface']);
}
if (!empty($pconfig['port'])) {
$config['dnsmasq']['port'] = $pconfig['port'];
} elseif (isset($config['dnsmasq']['port'])) {
unset($config['dnsmasq']['port']);
}
if (!empty($pconfig['custom_options'])) {
$config['dnsmasq']['custom_options'] = str_replace("\r\n", "\n", $pconfig['custom_options']);
} elseif (isset($pconfig['custom_options'])) {
unset($pconfig['custom_options']);
}
write_config();
services_dnsmasq_configure();
header("Location: services_dnsmasq.php");
exit;
}
} elseif (isset($pconfig['apply'])) {
// Reload filter (we might need to sync to CARP hosts)
filter_configure();
/* Update resolv.conf in case the interface bindings exclude localhost. */
system_resolvconf_generate();
system_hosts_generate();
services_dnsmasq_configure();
clear_subsystem_dirty('hosts');
header("Location: services_dnsmasq.php");
exit;
} elseif (!empty($pconfig['act']) && $pconfig['act'] == 'del') {
$a_hosts = &$config['dnsmasq']['hosts'];
if (isset($pconfig['id']) && !empty($a_hosts[$pconfig['id']])) {
unset($a_hosts[$pconfig['id']]);
write_config();
mark_subsystem_dirty('hosts');
exit;
}
} elseif (!empty($pconfig['act']) && $pconfig['act'] == 'doverride') {
$a_domainOverrides = &$config['dnsmasq']['domainoverrides'];
if (isset($pconfig['id']) && !empty($a_domainOverrides[$pconfig['id']])) {
unset($a_domainOverrides[$pconfig['id']]);
write_config();
mark_subsystem_dirty('hosts');
exit;
}
}
} }
legacy_html_escape_form_data($pconfig);
$service_hook = 'dnsmasq'; $service_hook = 'dnsmasq';
include("head.inc"); include("head.inc");
?> ?>
<body> <body>
<script type="text/javascript"> <script type="text/javascript">
//<![CDATA[ //<![CDATA[
function enable_change(enable_over) {
var endis;
endis = !(document.iform.enable.checked || enable_over);
document.iform.regdhcp.disabled = endis;
document.iform.regdhcpstatic.disabled = endis;
document.iform.dhcpfirst.disabled = endis;
}
function show_advanced_dns() { function show_advanced_dns() {
document.getElementById("showadvbox").innerHTML=''; document.getElementById("showadvbox").innerHTML='';
aodiv = document.getElementById('showadv'); aodiv = document.getElementById('showadv');
aodiv.style.display = "block"; aodiv.style.display = "block";
} }
$( document ).ready(function() {
// delete host action
$(".act_delete_host").click(function(event){
event.preventDefault();
var id = $(this).data("id");
// delete single
BootstrapDialog.show({
type:BootstrapDialog.TYPE_DANGER,
title: "<?= gettext("DNS Forwarder");?>",
message: "<?=gettext("Do you really want to delete this host?");?>",
buttons: [{
label: "<?= gettext("No");?>",
action: function(dialogRef) {
dialogRef.close();
}}, {
label: "<?= gettext("Yes");?>",
action: function(dialogRef) {
$.post(window.location, {act: 'del', id:id}, function(data) {
location.reload();
});
}
}]
});
});
$(".act_delete_override").click(function(event){
event.preventDefault();
var id = $(this).data("id");
// delete single
BootstrapDialog.show({
type:BootstrapDialog.TYPE_DANGER,
title: "<?= gettext("DNS Forwarder");?>",
message: "<?=gettext("Do you really want to delete this domain override?");?>",
buttons: [{
label: "<?= gettext("No");?>",
action: function(dialogRef) {
dialogRef.close();
}}, {
label: "<?= gettext("Yes");?>",
action: function(dialogRef) {
$.post(window.location, {act: 'doverride', id:id}, function(data) {
location.reload();
});
}
}]
});
});
});
//]]> //]]>
</script> </script>
<?php include("fbegin.inc"); ?> <?php include("fbegin.inc"); ?>
<section class="page-content-main"> <section class="page-content-main">
<div class="container-fluid">
<div class="container-fluid"> <div class="row">
<?php if (isset($input_errors) && count($input_errors) > 0) print_input_errors($input_errors); ?>
<div class="row"> <?php if (isset($savemsg)) print_info_box($savemsg); ?>
<?php if (is_subsystem_dirty('hosts')): ?><br/>
<?php if (isset($input_errors) && count($input_errors) > 0) print_input_errors($input_errors); ?> <?php print_info_box_apply(gettext("The DNS forwarder configuration has been changed.") . "<br />" . gettext("You must apply the changes in order for them to take effect."));?><br />
<?php if (isset($savemsg)) print_info_box($savemsg); ?> <?php endif; ?>
<?php if (is_subsystem_dirty('hosts')): ?><br/> <section class="col-xs-12">
<?php print_info_box_apply(gettext("The DNS forwarder configuration has been changed.") . "<br />" . gettext("You must apply the changes in order for them to take effect."));?><br /> <div class="content-box">
<?php endif; ?> <form method="post" name="iform" id="iform">
<div class="table-responsive">
<section class="col-xs-12"> <table class="table table-striped">
<tr>
<div class="content-box"> <td valign="top"><strong><?=gettext("General DNS Forwarder Options");?></strong></td>
<td align="right">
<form action="services_dnsmasq.php" method="post" name="iform" id="iform"> <small><?=gettext("full help");?> </small>
<i class="fa fa-toggle-off text-danger" style="cursor: pointer;" id="show_all_help_page" type="button"></i>
<header class="content-box-head container-fluid"> </td>
<h3><?=gettext("General DNS Forwarder Options");?></h3> </tr>
</header> <tr>
<td width="22%"><i class="fa fa-info-circle text-muted"></i> <?=gettext("Enable");?></td>
<div class="content-box-main"> <td width="78%">
<div class="table-responsive"> <input name="enable" type="checkbox" id="enable" value="yes" <?=!empty($pconfig['enable']) ? "checked=\"checked\"" : "";?> />
<table class="table table-striped table-sort"> </td>
<tr> </tr>
<td width="22%" valign="top" class="vncellreq"><?=gettext("Enable");?></td> <tr>
<td width="78%" class="vtable"><p> <td><a id="help_for_regdhcp" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("DHCP Registration");?></td>
<input name="enable" type="checkbox" id="enable" value="yes" <?php if ($pconfig['enable'] == "yes") echo "checked=\"checked\"";?> onclick="enable_change(false)" /> <td>
<strong><?=gettext("Enable DNS forwarder");?><br /> <input name="regdhcp" type="checkbox" id="regdhcp" value="yes" <?=!empty($pconfig['regdhcp']) ? "checked=\"checked\"" : "";?> />
</strong></p></td> <div class="hidden" for="help_for_regdhcp">
</tr> <strong><?=gettext("Register DHCP leases in DNS forwarder");?></strong><br/>
<tr> <?php printf(gettext("If this option is set, then machines that specify".
<td width="22%" valign="top" class="vncellreq"><?=gettext("DHCP Registration");?></td> " their hostname when requesting a DHCP lease will be registered".
<td width="78%" class="vtable"><p> " in the DNS forwarder, so that their name can be resolved.".
<input name="regdhcp" type="checkbox" id="regdhcp" value="yes" <?php if ($pconfig['regdhcp'] == "yes") echo "checked=\"checked\"";?> /> " You should also set the domain in %sSystem:".
<strong><?=gettext("Register DHCP leases in DNS forwarder");?><br /> " General setup%s to the proper value."),'<a href="system_general.php">','</a>')?>
</strong><?php printf(gettext("If this option is set, then machines that specify". </div>
" their hostname when requesting a DHCP lease will be registered". </td>
" in the DNS forwarder, so that their name can be resolved.". </tr>
" You should also set the domain in %sSystem:". <tr>
" General setup%s to the proper value."),'<a href="system_general.php">','</a>')?></p> <td><a id="help_for_regdhcpstatic" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Static DHCP");?></td>
</td> <td>
</tr> <input name="regdhcpstatic" type="checkbox" id="regdhcpstatic" value="yes" <?=!empty($pconfig['regdhcpstatic']) ? "checked=\"checked\"" : "";?> />
<tr> <div class="hidden" for="help_for_regdhcpstatic">
<td width="22%" valign="top" class="vncellreq"><?=gettext("Static DHCP");?></td> <strong><?=gettext("Register DHCP static mappings in DNS forwarder");?><br /></strong>
<td width="78%" class="vtable"><p> <?php printf(gettext("If this option is set, then DHCP static mappings will ".
<input name="regdhcpstatic" type="checkbox" id="regdhcpstatic" value="yes" <?php if ($pconfig['regdhcpstatic'] == "yes") echo "checked=\"checked\"";?> /> "be registered in the DNS forwarder, so that their name can be ".
<strong><?=gettext("Register DHCP static mappings in DNS forwarder");?><br /> "resolved. You should also set the domain in %s".
</strong><?php printf(gettext("If this option is set, then DHCP static mappings will ". "System: General setup%s to the proper value."),'<a href="system_general.php">','</a>');?>
"be registered in the DNS forwarder, so that their name can be ". </div>
"resolved. You should also set the domain in %s". </td>
"System: General setup%s to the proper value."),'<a href="system_general.php">','</a>');?></p> </tr>
</td> <tr>
</tr> <td><a id="help_for_dhcpfirst" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Prefer DHCP");?></td>
<tr> <td>
<td width="22%" valign="top" class="vncellreq"><?=gettext("Prefer DHCP");?></td> <input name="dhcpfirst" type="checkbox" id="dhcpfirst" value="yes" <?=!empty($pconfig['dhcpfirst']) ? "checked=\"checked\"" : "";?> />
<td width="78%" class="vtable"><p> <div class="hidden" for="help_for_dhcpfirst">
<input name="dhcpfirst" type="checkbox" id="dhcpfirst" value="yes" <?php if ($pconfig['dhcpfirst'] == "yes") echo "checked=\"checked\"";?> /> <strong><?=gettext("Resolve DHCP mappings first");?><br /></strong>
<strong><?=gettext("Resolve DHCP mappings first");?><br /> <?php printf(gettext("If this option is set, then DHCP mappings will ".
</strong><?php printf(gettext("If this option is set, then DHCP mappings will ". "be resolved before the manual list of names below. This only ".
"be resolved before the manual list of names below. This only ". "affects the name given for a reverse lookup (PTR)."));?>
"affects the name given for a reverse lookup (PTR)."));?></p> </div>
</td> </td>
</tr> </tr>
<tr> <tr>
<td rowspan="3" width="22%" valign="top" class="vncellreq"><?=gettext("DNS Query Forwarding");?></td> <td rowspan="3"><a id="help_for_strict_order" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("DNS Query Forwarding");?></td>
<td width="78%" class="vtable"><p> <td>
<input name="strict_order" type="checkbox" id="strict_order" value="yes" <?php if ($pconfig['strict_order'] == "yes") echo "checked=\"checked\"";?> /> <input name="strict_order" type="checkbox" id="strict_order" value="yes" <?=!empty($pconfig['strict_order']) ? "checked=\"checked\"" : "";?> />
<strong><?=gettext("Query DNS servers sequentially");?><br /> <strong><?=gettext("Query DNS servers sequentially");?></strong>
</strong><?php printf(gettext("If this option is set, %s DNS Forwarder (dnsmasq) will ". <div class="hidden" for="help_for_strict_order">
"query the DNS servers sequentially in the order specified (<i>System - General Setup - DNS Servers</i>), ". <?php printf(gettext("If this option is set, %s DNS Forwarder (dnsmasq) will ".
"rather than all at once in parallel. ". "query the DNS servers sequentially in the order specified (<i>System - General Setup - DNS Servers</i>), ".
""), $g['product_name']); ?></p> "rather than all at once in parallel. ".
</td> ""), $g['product_name']); ?>
</tr> </div>
<tr> </td>
<td width="78%" class="vtable"><p> </tr>
<input name="domain_needed" type="checkbox" id="domain_needed" value="yes" <?php if ($pconfig['domain_needed'] == "yes") echo "checked=\"checked\"";?> /> <tr>
<strong><?=gettext("Require domain");?><br /> <td>
</strong><?php printf(gettext("If this option is set, %s DNS Forwarder (dnsmasq) will ". <input name="domain_needed" type="checkbox" id="domain_needed" value="yes" <?=!empty($pconfig['domain_needed']) ? "checked=\"checked\"" : "";?> />
"not forward A or AAAA queries for plain names, without dots or domain parts, to upstream name servers. ". <strong><?=gettext("Require domain");?></strong>
"If the name is not known from /etc/hosts or DHCP then a \"not found\" answer is returned. ". <div class="hidden" for="help_for_strict_order">
""), $g['product_name']); ?></p> <?php printf(gettext("If this option is set, %s DNS Forwarder (dnsmasq) will ".
</td> "not forward A or AAAA queries for plain names, without dots or domain parts, to upstream name servers. ".
</tr> "If the name is not known from /etc/hosts or DHCP then a \"not found\" answer is returned. ".
<tr> ""), $g['product_name']); ?>
<td width="78%" class="vtable"><p> </div>
<input name="no_private_reverse" type="checkbox" id="no_private_reverse" value="yes" <?php if ($pconfig['no_private_reverse'] == "yes") echo "checked=\"checked\"";?> /> </td>
<strong><?=gettext("Do not forward private reverse lookups");?><br /> </tr>
</strong><?php printf(gettext("If this option is set, %s DNS Forwarder (dnsmasq) will ". <tr>
"not forward reverse DNS lookups (PTR) for private addresses (RFC 1918) to upstream name servers. ". <td>
"Any entries in the Domain Overrides section forwarding private \"n.n.n.in-addr.arpa\" names to a specific server are still forwarded. ". <input name="no_private_reverse" type="checkbox" id="no_private_reverse" value="yes" <?=!empty($pconfig['no_private_reverse']) ? "checked=\"checked\"" : "";?> />
"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. ". <strong><?=gettext("Do not forward private reverse lookups");?></strong>
""), $g['product_name']); ?></p> <div class="hidden" for="help_for_strict_order">
</td> <?php printf(gettext("If this option is set, %s DNS Forwarder (dnsmasq) will ".
</tr> "not forward reverse DNS lookups (PTR) for private addresses (RFC 1918) to upstream name servers. ".
<tr> "Any entries in the Domain Overrides section forwarding private \"n.n.n.in-addr.arpa\" names to a specific server are still forwarded. ".
<td width="22%" valign="top" class="vncellreq"><?=gettext("Listen Port");?></td> "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. ".
<td width="78%" class="vtable"><p> ""), $g['product_name']); ?>
<input name="port" type="text" id="port" size="6" <?php if ($pconfig['port']) echo "value=\"{$pconfig['port']}\"";?> /> </div>
<br /><br /> </td>
<?=gettext("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.");?></p> </tr>
</td> <tr>
</tr> <td><a id="help_for_port" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Listen Port");?></td>
<tr> <td>
<td width="22%" valign="top" rowspan="2" class="vncellreq"><?=gettext("Interfaces"); ?></td> <input name="port" type="text" id="port" size="6" <?=!empty($pconfig['port']) ? "value=\"{$pconfig['port']}\"" : "";?> />
<td width="78%" class="vtable"> <div class="hidden" for="help_for_port">
<?php <?=gettext("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.");?>
$interface_addresses = get_possible_listen_ips(true); </div>
$size=count($interface_addresses)+1; </td>
?> </tr>
<?=gettext("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.");?> <tr>
<br /><br /> <td rowspan="2"><a id="help_for_interfaces" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Interfaces"); ?></td>
<select id="interface" name="interface[]" multiple="multiple" class="formselect" size="<?php echo $size; ?>"> <td>
<option value="" <?php if (empty($pconfig['interface']) || empty($pconfig['interface'][0])) echo 'selected="selected"'; ?>>All</option> <select id="interface" name="interface[]" multiple="multiple" class="selectpicker">
<?php foreach ($interface_addresses as $laddr): <option value="" <?=empty($pconfig['interface'][0]) ? 'selected="selected"' : ""; ?>>
$selected = ""; <?=gettext("All");?>
if (in_array($laddr['value'], $pconfig['interface'])) </option>
$selected = 'selected="selected"'; <?php
?> foreach (get_possible_listen_ips(true) as $laddr):?>
<option value="<?=$laddr['value'];?>" <?=$selected;?>> <option value="<?=$laddr['value'];?>" <?=in_array($laddr['value'], $pconfig['interface']) ? 'selected="selected"' : "";?>>
<?=htmlspecialchars($laddr['name']);?> <?=htmlspecialchars($laddr['name']);?>
</option> </option>
<?php endforeach; ?> <?php
</select> endforeach; ?>
<br /><br /> </select>
</td> <div class="hidden" for="help_for_interfaces">
</tr> <?=gettext("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.");?>
<tr> </div>
<td width="78%" class="vtable"><p> </td>
<input name="strictbind" type="checkbox" id="strictbind" value="yes" <?php if ($pconfig['strictbind'] == "yes") echo "checked=\"checked\"";?> /> </tr>
<strong><?=gettext("Strict Interface Binding");?></strong> <tr>
<br /> <td>
<?= gettext("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."); ?> <input name="strictbind" type="checkbox" id="strictbind" value="yes" <?= !empty($pconfig['strictbind']) ? "checked=\"checked\"" : "";?> />
<br /><br /> <strong><?=gettext("Strict Interface Binding");?></strong>
<?= gettext("NOTE: This option does NOT work with IPv6. If set, dnsmasq will not bind to IPv6 addresses."); ?> <div class="hidden" for="help_for_interfaces">
</p> <?= gettext("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."); ?>
</td> <br /><br />
</tr> <?= gettext("NOTE: This option does NOT work with IPv6. If set, dnsmasq will not bind to IPv6 addresses."); ?>
<tr> </div>
<td width="22%" valign="top" class="vncellreq"><?=gettext("Advanced");?></td> </td>
<td width="78%" class="vtable"> </tr>
<div id="showadvbox" <?php if ($pconfig['custom_options']) echo "style='display:none'"; ?>> <tr>
<input type="button" class="btn btn-default btn-xs" onclick="show_advanced_dns()" value="<?=gettext("Advanced"); ?>" /> - <?=gettext("Show advanced option");?> <td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Advanced");?></td>
</div> <td>
<div id="showadv" <?php if (empty($pconfig['custom_options'])) echo "style='display:none'"; ?>> <div id="showadvbox" <?=!empty($pconfig['custom_options']) ? "style='display:none'" : ""; ?>>
<strong><?=gettext("Advanced");?><br /></strong> <input type="button" class="btn btn-default btn-xs" onclick="show_advanced_dns()" value="<?=gettext("Advanced"); ?>" /> - <?=gettext("Show advanced option");?>
<textarea rows="6" cols="78" name="custom_options" id="custom_options"><?=htmlspecialchars($pconfig['custom_options']);?></textarea><br /> </div>
<?=gettext("Enter any additional options you would like to add to the dnsmasq configuration here, separated by a space or newline"); ?><br /> <div id="showadv" <?=empty($pconfig['custom_options']) ? "style='display:none'" : ""; ?>>
</div> <strong><?=gettext("Advanced");?><br /></strong>
</td> <textarea rows="6" cols="78" name="custom_options" id="custom_options"><?=$pconfig['custom_options'];?></textarea><br />
</tr> <?=gettext("Enter any additional options you would like to add to the dnsmasq configuration here, separated by a space or newline"); ?><br />
<tr> </div>
<td colspan="2"> </td>
<input name="submit" type="submit" class="btn btn-primary" value="<?=gettext("Save"); ?>" onclick="enable_change(true)" /> </tr>
</td> <tr>
</tr> <td colspan="2">
</table> <input name="submit" type="submit" class="btn btn-primary" value="<?=gettext("Save"); ?>" />
</div> </td>
</tr>
<div class="container-fluid"> </table>
<p><span class="vexpl"><span class="text-danger"><strong><?=gettext("Note:");?><br /> </div>
</strong></span><?php printf(gettext("If the DNS forwarder is enabled, the DHCP". <div class="container-fluid">
" service (if enabled) will automatically serve the LAN IP". <p><span class="vexpl"><span class="text-danger"><strong><?=gettext("Note:");?><br />
" address as a DNS server to DHCP clients so they will use". </strong></span><?php printf(gettext("If the DNS forwarder is enabled, the DHCP".
" the forwarder. The DNS forwarder will use the DNS servers". " service (if enabled) will automatically serve the LAN IP".
" entered in %sSystem: General setup%s". " address as a DNS server to DHCP clients so they will use".
" or those obtained via DHCP or PPP on WAN if the &quot;Allow". " the forwarder. The DNS forwarder will use the DNS servers".
" DNS server list to be overridden by DHCP/PPP on WAN&quot;". " entered in %sSystem: General setup%s".
" is checked. If you don't use that option (or if you use". " or those obtained via DHCP or PPP on WAN if the &quot;Allow".
" a static IP address on WAN), you must manually specify at". " DNS server list to be overridden by DHCP/PPP on WAN&quot;".
" least one DNS server on the %sSystem: General setup%s page."), " is checked. If you don't use that option (or if you use".
'<a href="system_general.php">','</a>','<a href="system_general.php">','</a>');?><br /> " a static IP address on WAN), you must manually specify at".
</span></p> " least one DNS server on the %sSystem: General setup%s page."),
</div> '<a href="system_general.php">','</a>','<a href="system_general.php">','</a>');?><br />
</span></p>
</div>
<div class="table-responsive"> </form>
<table class="table table-striped table-sort"> </div>
<tr> </section>
<td><?=gettext("Host Overrides");?></td> <section class="col-xs-12">
</tr> <div class="content-box content-box-main">
<tr> <div class="table-responsive">
<td><br /> <table class="table table-striped">
<?=gettext("Entries in this section override individual results from the forwarders.");?> <thead>
<?=gettext("Use these for changing DNS results or for adding custom DNS records.");?> <tr>
</td> <th colspan="5"><?=gettext("Host Overrides");?></th>
</tr> </tr>
</table> <tr>
</div> <th><?=gettext("Host");?></th>
<th><?=gettext("Domain");?></th>
<div class="table-responsive"> <th><?=gettext("IP");?></th>
<table class="table table-striped table-sort"> <th><?=gettext("Description");?></th>
<thead> <th>
<tr> <a href="services_dnsmasq_edit.php" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-plus"></span></a>
<td width="20%" class="listhdrr"><?=gettext("Host");?></td> </th>
<td width="25%" class="listhdrr"><?=gettext("Domain");?></td> </tr>
<td width="20%" class="listhdrr"><?=gettext("IP");?></td> </thead>
<td width="25%" class="listhdr"><?=gettext("Description");?></td> <tbody>
<td width="10%" class="list"> <?php
<table border="0" cellspacing="0" cellpadding="1" summary="icons"> $i = 0;
<tr> foreach ($config['dnsmasq']['hosts'] as $hostent): ?>
<td width="17"></td> <tr>
<td valign="middle"><a href="services_dnsmasq_edit.php" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-plus"></span></a></td> <td><?=htmlspecialchars(strtolower($hostent['host']));?></td>
</tr> <td><?=htmlspecialchars(strtolower($hostent['domain']));?></td>
</table> <td><?=htmlspecialchars($hostent['ip']);?></td>
</td> <td><?=htmlspecialchars($hostent['descr']);?></td>
</tr> <td>
</thead> <a href="services_dnsmasq_edit.php?id=<?=$i;?>" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-pencil"></span></a>
<tbody> <a href="#" data-id="<?=$i;?>" class="act_delete_host"><button type="button" class="btn btn-xs btn-default"><span class="fa fa-trash text-muted"></span></button></a>
<?php $i = 0; foreach ($a_hosts as $hostent): ?> </td>
<tr> </tr>
<td class="listlr" ondblclick="document.location='services_dnsmasq_edit.php?id=<?=$i;?>';"> <?php
<?=strtolower($hostent['host']);?>&nbsp; if (isset($hostent['aliases']['item'])):
</td> foreach ($hostent['aliases']['item'] as $alias): ?>
<td class="listr" ondblclick="document.location='services_dnsmasq_edit.php?id=<?=$i;?>';"> <tr>
<?=strtolower($hostent['domain']);?>&nbsp; <td><?=htmlspecialchars(strtolower($alias['host']));?></td>
</td> <td><?=htmlspecialchars(strtolower($alias['domain']));?></td>
<td class="listr" ondblclick="document.location='services_dnsmasq_edit.php?id=<?=$i;?>';"> <td><?=gettext("Alias for");?> <?=$hostent['host'] ? htmlspecialchars($hostent['host'] . '.' . $hostent['domain']) : htmlspecialchars($hostent['domain']);?></td>
<?=$hostent['ip'];?>&nbsp; <td><?=htmlspecialchars($alias['description']);?></td>
</td> <td>
<td class="listbg" ondblclick="document.location='services_dnsmasq_edit.php?id=<?=$i;?>';"> <a href="services_dnsmasq_edit.php?id=<?=$i;?>" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-pencil"></span></a>
<?=htmlspecialchars($hostent['descr']);?>&nbsp; </td>
</td> </tr>
<td valign="middle" class="list nowrap"> <?php
<table border="0" cellspacing="0" cellpadding="1" summary="icons"> endforeach;
<tr> endif; ?>
<td valign="middle"><a href="services_dnsmasq_edit.php?id=<?=$i;?>" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-pencil"></span></a></td>
<td><a href="services_dnsmasq.php?type=host&amp;act=del&amp;id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this host?");?>')" class="btn btn-default btn-xs"><span class="fa fa-trash text-muted"></span></a></td>
</tr>
</table>
</tr>
<?php if (isset($hostent['aliases']['item'])): ?>
<?php foreach ($hostent['aliases']['item'] as $alias): ?>
<tr>
<td class="listlr" ondblclick="document.location='services_dnsmasq_edit.php?id=<?=$i;?>';">
<?=strtolower($alias['host']);?>&nbsp;
</td>
<td class="listr" ondblclick="document.location='services_dnsmasq_edit.php?id=<?=$i;?>';">
<?=strtolower($alias['domain']);?>&nbsp;
</td>
<td class="listr" ondblclick="document.location='services_dnsmasq_edit.php?id=<?=$i;?>';">
Alias for <?=$hostent['host'] ? $hostent['host'] . '.' . $hostent['domain'] : $hostent['domain'];?>&nbsp;
</td>
<td class="listbg" ondblclick="document.location='services_dnsmasq_edit.php?id=<?=$i;?>';">
<?=htmlspecialchars($alias['description']);?>&nbsp;
</td>
<td valign="middle" class="list nowrap">
<a href="services_dnsmasq_edit.php?id=<?=$i;?>" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-pencil"></span></a>
</td>
</tr>
<?php endforeach; ?>
<?php endif; ?>
<?php $i++; endforeach; ?>
<tr style="display:none"><td></td></tr>
</tbody>
</table>
</div>
<div class="table-responsive">
<table class="table table-striped table-sort">
<tr>
<td colspan="5" valign="top" class="listtopic"><?=gettext("Domain Overrides");?></td>
</tr>
<tr>
<td><p><?=gettext("Entries in this area override an entire domain, and subdomains, by specifying an".
" authoritative DNS server to be queried for that domain.");?></p></td>
</tr>
</table>
<table class="table table-striped table-sort">
<thead>
<tr>
<td width="35%" class="listhdrr"><?=gettext("Domain");?></td>
<td width="20%" class="listhdrr"><?=gettext("IP");?></td>
<td width="35%" class="listhdr"><?=gettext("Description");?></td>
<td width="10%" class="list">
<table border="0" cellspacing="0" cellpadding="1" summary="add">
<tr>
<td width="17" height="17"></td>
<td><a href="services_dnsmasq_domainoverride_edit.php" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-plus"></span></a></td>
</tr>
</table>
</td>
</tr>
</thead>
<tbody> <?php
<?php $i = 0; foreach ($a_domainOverrides as $doment): ?> ++$i;
<tr> endforeach;?>
<td class="listlr"> </tbody>
<?=strtolower($doment['domain']);?>&nbsp; <tfoot>
</td> <tr>
<td class="listr"> <td colspan="5">
<?=$doment['ip'];?>&nbsp; <?=gettext("Entries in this section override individual results from the forwarders.");?>
</td> <?=gettext("Use these for changing DNS results or for adding custom DNS records.");?>
<td class="listbg"> </td>
<?=htmlspecialchars($doment['descr']);?>&nbsp; </tr>
</td> </tfoot>
<td valign="middle" class="list nowrap"> <a href="services_dnsmasq_domainoverride_edit.php?id=<?=$i;?>" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-pencil"></span></a> </table>
&nbsp;<a href="services_dnsmasq.php?act=del&amp;type=doverride&amp;id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this domain override?");?>')" class="btn btn-default btn-xs"><span class="fa fa-trash text-muted"></span></a></td> </div>
</tr> </div>
<?php $i++; endforeach; ?> </section>
<tr style="display:none"><td></td></tr> <section class="col-xs-12">
</tbody> <div class="content-box content-box-main">
</table> <div class="table-responsive">
</div> <table class="table table-striped">
</div> <thead>
</form> <tr>
</section> <th colspan="4"><?=gettext("Domain Overrides");?></th>
</div> </tr>
</div> <tr>
</section> <th><?=gettext("Domain");?></th>
<th><?=gettext("IP");?></th>
<th><?=gettext("Description");?></th>
<th>
<a href="services_dnsmasq_domainoverride_edit.php" class="btn btn-default btn-xs">
<span class="glyphicon glyphicon-plus"></span>
</a>
</th>
</tr>
</thead>
<tbody>
<?php
$i = 0;
foreach ($config['dnsmasq']['domainoverrides'] as $doment): ?>
<tr>
<td><?=htmlspecialchars(strtolower($doment['domain']));?></td>
<td><?=htmlspecialchars($doment['ip']);?></td>
<td><?=htmlspecialchars($doment['descr']);?></td>
<td>
<a href="services_dnsmasq_domainoverride_edit.php?id=<?=$i;?>" class="btn btn-default btn-xs">
<span class="glyphicon glyphicon-pencil"></span>
</a>
<a href="#" data-id="<?=$i;?>" class="act_delete_override"><button type="button" class="btn btn-xs btn-default"><span class="fa fa-trash text-muted"></span></button></a>
</td>
</tr>
<?php
$i++;
endforeach; ?>
</tbody>
<tfoot>
<tr>
<td colspan="4">
<?=gettext("Entries in this area override an entire domain, and subdomains, by specifying an"." authoritative DNS server to be queried for that domain.");?>
</td>
</tr>
</tfoot>
</table>
</div>
</div>
</section>
</div>
</div>
</section>
<script type="text/javascript">
//<![CDATA[
enable_change(false);
//]]>
</script>
<?php include("foot.inc"); ?> <?php include("foot.inc"); ?>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment