mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
346 lines
13 KiB
PHP
Executable File
346 lines
13 KiB
PHP
Executable File
<?php
|
|
/* $Id$ */
|
|
/*
|
|
services_dnsmasq.php
|
|
part of m0n0wall (http://m0n0.ch/wall)
|
|
|
|
Copyright (C) 2003-2004 Bob Zoller <bob@kludgebox.com> and Manuel Kasper <mk@neon1.net>.
|
|
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.
|
|
|
|
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS 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
|
|
AUTHOR 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.
|
|
*/
|
|
/*
|
|
pfSense_MODULE: dnsforwarder
|
|
*/
|
|
|
|
##|+PRIV
|
|
##|*IDENT=page-services-dnsforwarder
|
|
##|*NAME=Services: DNS Forwarder page
|
|
##|*DESCR=Allow access to the 'Services: DNS Forwarder' page.
|
|
##|*MATCH=services_dnsmasq.php*
|
|
##|-PRIV
|
|
|
|
require("guiconfig.inc");
|
|
require_once("functions.inc");
|
|
require_once("filter.inc");
|
|
require_once("shaper.inc");
|
|
|
|
$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['custom_options'] = $config['dnsmasq']['custom_options'];
|
|
|
|
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) {
|
|
|
|
$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']['custom_options'] = str_replace("\r\n", "\n", $_POST['custom_options']);
|
|
|
|
if ($config['dnsmasq']['custom_options']) {
|
|
$args = '';
|
|
foreach (preg_split('/\s+/', $config['dnsmasq']['custom_options']) as $c)
|
|
$args .= "--$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 = 0;
|
|
$retval = services_dnsmasq_configure();
|
|
$savemsg = get_std_save_message($retval);
|
|
|
|
// Relaod filter (we might need to sync to CARP hosts)
|
|
filter_configure();
|
|
|
|
if ($retval == 0)
|
|
clear_subsystem_dirty('hosts');
|
|
}
|
|
}
|
|
|
|
if ($_GET['act'] == "del") {
|
|
if ($_GET['type'] == 'host') {
|
|
if ($a_hosts[$_GET['id']]) {
|
|
unset($a_hosts[$_GET['id']]);
|
|
write_config();
|
|
mark_subsystem_dirty('hosts');
|
|
header("Location: services_dnsmasq.php");
|
|
exit;
|
|
}
|
|
}
|
|
elseif ($_GET['type'] == 'doverride') {
|
|
if ($a_domainOverrides[$_GET['id']]) {
|
|
unset($a_domainOverrides[$_GET['id']]);
|
|
write_config();
|
|
mark_subsystem_dirty('hosts');
|
|
header("Location: services_dnsmasq.php");
|
|
exit;
|
|
}
|
|
}
|
|
}
|
|
|
|
$pgtitle = array(gettext("Services"),gettext("DNS forwarder"));
|
|
include("head.inc");
|
|
|
|
?>
|
|
|
|
<script language="JavaScript">
|
|
<!--
|
|
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() {
|
|
document.getElementById("showadvbox").innerHTML='';
|
|
aodiv = document.getElementById('showadv');
|
|
aodiv.style.display = "block";
|
|
}
|
|
//-->
|
|
</script>
|
|
|
|
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
|
|
<?php include("fbegin.inc"); ?>
|
|
<form action="services_dnsmasq.php" method="post" name="iform" id="iform">
|
|
<?php if ($input_errors) print_input_errors($input_errors); ?>
|
|
<?php if ($savemsg) print_info_box($savemsg); ?>
|
|
<?php if (is_subsystem_dirty('hosts')): ?><p>
|
|
<?php print_info_box_np(gettext("The DNS forwarder configuration has been changed") . ".<br>" . gettext("You must apply the changes in order for them to take effect."));?><br>
|
|
<?php endif; ?>
|
|
<table width="100%" border="0" cellpadding="6" cellspacing="0">
|
|
<tr>
|
|
<td class="vtable"><p>
|
|
<input name="enable" type="checkbox" id="enable" value="yes" <?php if ($pconfig['enable'] == "yes") echo "checked";?> onClick="enable_change(false)">
|
|
<strong><?=gettext("Enable DNS forwarder");?><br>
|
|
</strong></p></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="vtable"><p>
|
|
<input name="regdhcp" type="checkbox" id="regdhcp" value="yes" <?php if ($pconfig['regdhcp'] == "yes") echo "checked";?>>
|
|
<strong><?=gettext("Register DHCP leases in DNS forwarder");?><br>
|
|
</strong><?php printf(gettext("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.".
|
|
" You should also set the domain in %sSystem:".
|
|
" General setup%s to the proper value."),'<a href="system.php">','</a>')?></p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="vtable"><p>
|
|
<input name="regdhcpstatic" type="checkbox" id="regdhcpstatic" value="yes" <?php if ($pconfig['regdhcpstatic'] == "yes") echo "checked";?>>
|
|
<strong><?=gettext("Register DHCP static mappings in DNS forwarder");?><br>
|
|
</strong><?php printf(gettext("If this option is set, then DHCP static mappings will ".
|
|
"be registered in the DNS forwarder, so that their name can be ".
|
|
"resolved. You should also set the domain in %s".
|
|
"System: General setup%s to the proper value."),'<a href="system.php">','</a>');?></p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="vtable"><p>
|
|
<input name="dhcpfirst" type="checkbox" id="dhcpfirst" value="yes" <?php if ($pconfig['dhcpfirst'] == "yes") echo "checked";?>>
|
|
<strong><?=gettext("Resolve DHCP mappings first");?><br>
|
|
</strong><?php printf(gettext("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)."));?></p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="vtable"><p>
|
|
<div id="showadvbox" <?php if ($pconfig['custom_options']) echo "style='display:none'"; ?>>
|
|
<input type="button" onClick="show_advanced_dns()" value="<?=gettext("Advanced"); ?>"></input> - <?=gettext("Show advanced option");?></a>
|
|
</div>
|
|
<div id="showadv" <?php if (empty($pconfig['custom_options'])) echo "style='display:none'"; ?>>
|
|
<strong><?=gettext("Advanced");?><br></strong>
|
|
<textarea rows="6" cols="78" name="custom_options" id="custom_options"><?=htmlspecialchars($pconfig['custom_options']);?></textarea><br/>
|
|
<?=gettext("Enter any additional options you would like to add to the dnsmasq configuration here, separated by a space or newline"); ?><br/>
|
|
</div>
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<input name="submit" type="submit" class="formbtn" value="<?=gettext("Save"); ?>" onclick="enable_change(true)">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<p><span class="vexpl"><span class="red"><strong><?=gettext("Note:");?><br>
|
|
</strong></span><?php printf(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. The DNS forwarder will use the DNS servers".
|
|
" entered in %sSystem: General setup%s".
|
|
" or those obtained via DHCP or PPP on WAN if the "Allow".
|
|
" DNS server list to be overridden by DHCP/PPP on WAN"".
|
|
" is checked. If you don't use that option (or if you use".
|
|
" a static IP address on WAN), you must manually specify at".
|
|
" least one DNS server on the %sSystem:".
|
|
"General setup%s page."),'<a href="system.php">','</a>','<a href="system.php">','</a>');?><br>
|
|
<br>
|
|
<?=gettext("You may enter records that override the results from the".
|
|
" forwarders below.");?></span></p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="sortable">
|
|
<thead>
|
|
<tr>
|
|
<td width="20%" class="listhdrr"><?=gettext("Host");?></td>
|
|
<td width="25%" class="listhdrr"><?=gettext("Domain");?></td>
|
|
<td width="20%" class="listhdrr"><?=gettext("IP");?></td>
|
|
<td width="25%" class="listhdr"><?=gettext("Description");?></td>
|
|
<td width="10%" class="list">
|
|
<table border="0" cellspacing="0" cellpadding="1">
|
|
<tr>
|
|
<td width="17"></td>
|
|
<td valign="middle"><a href="services_dnsmasq_edit.php"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" width="17" height="17" border="0"></a></td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php $i = 0; foreach ($a_hosts as $hostent): ?>
|
|
<tr>
|
|
<td class="listlr" ondblclick="document.location='services_dnsmasq_edit.php?id=<?=$i;?>';">
|
|
<?=strtolower($hostent['host']);?>
|
|
</td>
|
|
<td class="listr" ondblclick="document.location='services_dnsmasq_edit.php?id=<?=$i;?>';">
|
|
<?=strtolower($hostent['domain']);?>
|
|
</td>
|
|
<td class="listr" ondblclick="document.location='services_dnsmasq_edit.php?id=<?=$i;?>';">
|
|
<?=$hostent['ip'];?>
|
|
</td>
|
|
<td class="listbg" ondblclick="document.location='services_dnsmasq_edit.php?id=<?=$i;?>';">
|
|
<?=htmlspecialchars($hostent['descr']);?>
|
|
</td>
|
|
<td valign="middle" nowrap class="list">
|
|
<table border="0" cellspacing="0" cellpadding="1">
|
|
<tr>
|
|
<td valign="middle"><a href="services_dnsmasq_edit.php?id=<?=$i;?>"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_e.gif" width="17" height="17" border="0"></a></td>
|
|
<td><a href="services_dnsmasq.php?type=host&act=del&id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this host?");?>')"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0"></a></td>
|
|
</tr>
|
|
</table>
|
|
</tr>
|
|
<?php $i++; endforeach; ?>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td class="list" colspan="4"></td>
|
|
<td class="list">
|
|
<table border="0" cellspacing="0" cellpadding="1">
|
|
<tr>
|
|
<td width="17"></td>
|
|
<td valign="middle"><a href="services_dnsmasq_edit.php"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" width="17" height="17" border="0"></a></td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
<!-- update to enable domain overrides -->
|
|
<table width="100%" border="0" cellpadding="6" cellspacing="0">
|
|
<tr><td> </td></tr>
|
|
<tr>
|
|
<td><p><?=gettext("Below you can override an entire domain by specifying an".
|
|
" authoritative DNS server to be queried for that domain.");?></p></td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="sortable">
|
|
<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">
|
|
<tr>
|
|
<td width="17" heigth="17"></td>
|
|
<td><a href="services_dnsmasq_domainoverride_edit.php"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" width="17" height="17" border="0"></a></td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php $i = 0; foreach ($a_domainOverrides as $doment): ?>
|
|
<tr>
|
|
<td class="listlr">
|
|
<?=strtolower($doment['domain']);?>
|
|
</td>
|
|
<td class="listr">
|
|
<?=$doment['ip'];?>
|
|
</td>
|
|
<td class="listbg">
|
|
<?=htmlspecialchars($doment['descr']);?>
|
|
</td>
|
|
<td valign="middle" nowrap class="list"> <a href="services_dnsmasq_domainoverride_edit.php?id=<?=$i;?>"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_e.gif" width="17" height="17" border="0"></a>
|
|
<a href="services_dnsmasq.php?act=del&type=doverride&id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this domain override?");?>')"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0"></a></td>
|
|
</tr>
|
|
<?php $i++; endforeach; ?>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td class="list" colspan="3"></td>
|
|
<td class="list">
|
|
<table border="0" cellspacing="0" cellpadding="1">
|
|
<tr>
|
|
<td width="17" heigth="17"></td>
|
|
<td><a href="services_dnsmasq_domainoverride_edit.php"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" width="17" height="17" border="0"></a></td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</form>
|
|
<script language="JavaScript">
|
|
<!--
|
|
enable_change(false);
|
|
//-->
|
|
</script>
|
|
<?php include("fend.inc"); ?>
|
|
</body>
|
|
</html>
|