summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/services_dnsmasq.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr/local/www/services_dnsmasq.php')
-rw-r--r--src/usr/local/www/services_dnsmasq.php636
1 files changed, 253 insertions, 383 deletions
diff --git a/src/usr/local/www/services_dnsmasq.php b/src/usr/local/www/services_dnsmasq.php
index 4abf4d7..ac6b44c 100644
--- a/src/usr/local/www/services_dnsmasq.php
+++ b/src/usr/local/www/services_dnsmasq.php
@@ -30,7 +30,7 @@
POSSIBILITY OF SUCH DAMAGE.
*/
/*
- pfSense_MODULE: dnsforwarder
+ pfSense_MODULE: dnsforwarder
*/
##|+PRIV
@@ -75,7 +75,6 @@ $a_hosts = &$config['dnsmasq']['hosts'];
$a_domainOverrides = &$config['dnsmasq']['domainoverrides'];
if ($_POST) {
-
$pconfig = $_POST;
unset($input_errors);
@@ -163,420 +162,291 @@ if ($_GET['act'] == "del") {
}
}
+function build_if_list() {
+ $interface_addresses = get_possible_listen_ips(true);
+ $iflist = array('options' => 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);
+}
+
$closehead = false;
$pgtitle = array(gettext("Services"), gettext("DNS forwarder"));
$shortcut_section = "forwarder";
include("head.inc");
-?>
+if ($input_errors)
+ print_input_errors($input_errors);
-<script type="text/javascript">
-//<![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() {
- document.getElementById("showadvbox").innerHTML='';
- aodiv = document.getElementById('showadv');
- aodiv.style.display = "block";
-}
-//]]>
-</script>
-</head>
-<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')): ?><br/>
-<?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" summary="dns forwarder">
- <tr>
- <td colspan="2" valign="top" class="listtopic"><?=gettext("General DNS Forwarder Options");?></td>
- </tr>
- <tr>
- <td width="22%" valign="top" class="vncellreq"><?=gettext("Enable");?></td>
- <td width="78%" class="vtable">
- <p>
- <input name="enable" type="checkbox" id="enable" value="yes" <?php if ($pconfig['enable'] == "yes") echo "checked=\"checked\"";?> onclick="enable_change(false)" />
- <strong>
- <?=gettext("Enable DNS forwarder");?><br />
- </strong>
- </p>
- </td>
- </tr>
- <tr>
- <td width="22%" valign="top" class="vncellreq"><?=gettext("DHCP Registration");?></td>
- <td width="78%" class="vtable">
- <p>
- <input name="regdhcp" type="checkbox" id="regdhcp" value="yes" <?php if ($pconfig['regdhcp'] == "yes") echo "checked=\"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 width="22%" valign="top" class="vncellreq"><?=gettext("Static DHCP");?></td>
- <td width="78%" class="vtable">
- <p>
- <input name="regdhcpstatic" type="checkbox" id="regdhcpstatic" value="yes" <?php if ($pconfig['regdhcpstatic'] == "yes") echo "checked=\"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 ".
+if ($savemsg)
+ print_info_box($savemsg, 'success');
+
+if (is_subsystem_dirty('hosts'))
+ 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."));
+
+require('classes/Form.class.php');
+
+$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.".
+ " You should also set the domain in %sSystem:".
+ " General setup%s to the proper value.",'<a href="system.php">','</a>'))
+ ->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. 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 width="22%" valign="top" class="vncellreq"><?=gettext("Prefer DHCP");?></td>
- <td width="78%" class="vtable">
- <p>
- <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>
- <?php printf(gettext("If this option is set, then DHCP mappings will ".
+ "System: General setup%s to the proper value.",'<a href="system.php">','</a>'))
+ ->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)."));?>
- </p>
- </td>
- </tr>
- <tr>
- <td rowspan="3" width="22%" valign="top" class="vncellreq"><?=gettext("DNS Query Forwarding");?></td>
- <td width="78%" class="vtable">
- <p>
- <input name="strict_order" type="checkbox" id="strict_order" value="yes" <?php if ($pconfig['strict_order'] == "yes") echo "checked=\"checked\"";?> />
- <strong>
- <?=gettext("Query DNS servers sequentially");?><br />
- </strong>
- <?php printf(gettext("If this option is set, %s DNS Forwarder (dnsmasq) will ".
+ "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 (<i>System - General Setup - DNS Servers</i>), ".
- "rather than all at once in parallel. "), $g['product_name']); ?>
- </p>
- </td>
- </tr>
- <tr>
- <td width="78%" class="vtable">
- <p>
- <input name="domain_needed" type="checkbox" id="domain_needed" value="yes" <?php if ($pconfig['domain_needed'] == "yes") echo "checked=\"checked\"";?> />
- <strong>
- <?=gettext("Require domain");?><br />
- </strong>
- <?php printf(gettext("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']); ?>
- </p>
- </td>
- </tr>
- <tr>
- <td width="78%" class="vtable">
- <p>
- <input name="no_private_reverse" type="checkbox" id="no_private_reverse" value="yes" <?php if ($pconfig['no_private_reverse'] == "yes") echo "checked=\"checked\"";?> />
- <strong>
- <?=gettext("Do not forward private reverse lookups");?><br />
- </strong>
- <?php printf(gettext("If this option is set, %s DNS Forwarder (dnsmasq) will ".
+ "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']); ?>
- </p>
- </td>
- </tr>
- <tr>
- <td width="22%" valign="top" class="vncellreq"><?=gettext("Listen Port");?></td>
- <td width="78%" class="vtable">
- <p>
- <input name="port" type="text" id="port" size="6" <?php if ($pconfig['port']) echo "value=\"" . htmlspecialchars($pconfig['port']) . "\"";?> />
- <br /><br />
- <?=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>
- </td>
- </tr>
- <tr>
- <td width="22%" valign="top" rowspan="2" class="vncellreq"><?=gettext("Interfaces"); ?></td>
- <td width="78%" class="vtable">
- <?php
- $interface_addresses = get_possible_listen_ips(true);
- ?>
- <?=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.");?>
- <br /><br />
- <select id="interface" name="interface[]" multiple="multiple" class="formselect" size="5">
- <option value="" <?php if (empty($pconfig['interface']) || empty($pconfig['interface'][0])) echo 'selected="selected"'; ?>>All</option>
- <?php
- foreach ($interface_addresses as $laddr => $ldescr):
- $selected = "";
- if (in_array($laddr, $pconfig['interface'])) {
- $selected = 'selected="selected"';
- }
- ?>
- <option value="<?=$laddr;?>" <?=$selected;?>>
- <?=htmlspecialchars($ldescr);?>
- </option>
- <?php
- endforeach;
- unset($interface_addresses);
- ?>
- </select>
- <br /><br />
- </td>
- </tr>
- <tr>
- <td width="78%" class="vtable">
- <p>
- <input name="strictbind" type="checkbox" id="strictbind" value="yes" <?php if ($pconfig['strictbind'] == "yes") echo "checked=\"checked\"";?> />
- <strong><?=gettext("Strict Interface Binding");?></strong>
- <br />
- <?= 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."); ?>
- <br /><br />
- <?= gettext("NOTE: This option does NOT work with IPv6. If set, dnsmasq will not bind to IPv6 addresses."); ?>
- </p>
- </td>
- </tr>
- <tr>
- <td width="22%" valign="top" class="vncellreq"><?=gettext("Advanced");?></td>
- <td width="78%" class="vtable">
- <div id="showadvbox" <?php if ($pconfig['custom_options']) echo "style='display:none'"; ?>>
- <input type="button" onclick="show_advanced_dns()" value="<?=gettext("Advanced"); ?>" /> - <?=gettext("Show advanced option");?>
- </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>
- </td>
- </tr>
- <tr>
- <td colspan="2">
- <input name="submit" type="submit" class="formbtn" value="<?=gettext("Save"); ?>" onclick="enable_change(true)" />
- </td>
- </tr>
-</table>
-
-<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 &quot;Allow".
- " DNS server list to be overridden by DHCP/PPP on WAN&quot;".
- " 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 />
- </span>
-</p>
-
-&nbsp;<br />
-<table width="100%" border="0" cellpadding="0" cellspacing="0" class="tabcont" summary="host overrides">
- <tr>
- <td colspan="5" valign="top" class="listtopic"><?=gettext("Host Overrides");?></td>
- </tr>
- <tr>
- <td>
- <br />
- <?=gettext("Entries in this section override individual results from the forwarders.");?>
- <?=gettext("Use these for changing DNS results or for adding custom DNS records.");?>
- </td>
- </tr>
-</table>
-<table width="100%" border="0" cellpadding="0" cellspacing="0" class="tabcont sortable" summary="results">
- <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" summary="icons">
+ "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.' . '<br /><br />' .
+ '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 you would like to add to the dnsmasq configuration here, separated by a space or newline')
+ ->addClass('advanced');
+
+$form->add($section);
+print($form);
+
+print_info_box(sprintf("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 &quot;Allow".
+ " DNS server list to be overridden by DHCP/PPP on WAN&quot;".
+ " 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>'));
+?>
+
+<div class="panel panel-default">
+ <div class="panel-heading"><h2><?=gettext("Host Overrides")?></h2></div>
+ <div class="panel-body table-responsive">
+ <table class="table table-striped table-hover table-condensed">
+ <thead>
<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" alt="add" /></a>
- </td>
+ <th><?=gettext("Host")?></th>
+ <th><?=gettext("Domain")?></th>
+ <th><?=gettext("IP")?></th>
+ <th><?=gettext("Description")?></th>
+ <th></th>
</tr>
- </table>
- </td>
- </tr>
- </thead>
- <tfoot>
- <tr>
- <td class="list" colspan="4"></td>
- <td class="list">
- <table border="0" cellspacing="0" cellpadding="1" summary="add">
+ </thead>
+ <tbody>
+<?php
+foreach ($a_hosts as $i => $hostent):
+?>
<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" alt="add" /></a>
+ <td>
+ <?=strtolower($hostent['host'])?>
+ </td>
+ <td>
+ <?=strtolower($hostent['domain'])?>
+ </td>
+ <td>
+ <?=$hostent['ip']?>
+ </td>
+ <td>
+ <?=htmlspecialchars($hostent['descr'])?>
+ </td>
+ <td>
+ <a href="services_dnsmasq_edit.php?id=<?=$i?>" class="btn btn-xs btn-info"><?=gettext('Edit')?></a>
+ <a href="services_dnsmasq.php?type=host&amp;act=del&amp;id=<?=$i?>" class="btn btn-xs btn-danger"><?=gettext('Delete')?></a>
</td>
</tr>
- </table>
- </td>
- </tr>
- </tfoot>
- <tbody>
+
<?php
- $i = 0;
- foreach ($a_hosts as $hostent):
+ if ($hostent['aliases']['item'] && is_array($hostent['aliases']['item'])):
+ foreach ($hostent['aliases']['item'] as $i => $alias):
?>
- <tr>
- <td class="listlr" ondblclick="document.location='services_dnsmasq_edit.php?id=<?=$i;?>';">
- <?=strtolower($hostent['host']);?>&nbsp;
- </td>
- <td class="listr" ondblclick="document.location='services_dnsmasq_edit.php?id=<?=$i;?>';">
- <?=strtolower($hostent['domain']);?>&nbsp;
- </td>
- <td class="listr" ondblclick="document.location='services_dnsmasq_edit.php?id=<?=$i;?>';">
- <?=$hostent['ip'];?>&nbsp;
- </td>
- <td class="listbg" ondblclick="document.location='services_dnsmasq_edit.php?id=<?=$i;?>';">
- <?=htmlspecialchars($hostent['descr']);?>&nbsp;
- </td>
- <td valign="middle" class="list nowrap">
- <table border="0" cellspacing="0" cellpadding="1" summary="icons">
<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" alt="edit" /></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?");?>')"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0" alt="delete" /></a>
+ <?=strtolower($alias['host'])?>
+ </td>
+ <td>
+ <?=strtolower($alias['domain'])?>
+ </td>
+ <td>
+ Alias for <?=$hostent['host'] ? $hostent['host'] . '.' . $hostent['domain'] : $hostent['domain']?>
+ </td>
+ <td>
+ <?=htmlspecialchars($alias['description'])?>
+ </td>
+ <td>
+ <a href="services_dnsmasq_edit.php?id=<?=$i?>" class="btn btn-xs btn-info"><?=gettext('Edit')?></a>
</td>
</tr>
- </table>
- </td>
- </tr>
<?php
- if ($hostent['aliases']['item'] && is_array($hostent['aliases']['item'])):
- foreach ($hostent['aliases']['item'] as $alias):
+ endforeach;
+ endif;
+endforeach;
?>
- <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;?>"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_e.gif" width="17" height="17" border="0" alt="edit" /></a>
- </td>
- </tr>
+ </tbody>
+ </table>
+ </div>
+</div>
+
+<nav class="action-buttons">
+ <a href="services_dnsmasq_edit.php" class="btn btn-sm btn-success"><?=gettext('Add')?></a>
+</nav>
+
<?php
- endforeach;
- endif;
- $i++;
- endforeach;
+print_info_box(gettext("Entries in this section override individual results from the forwarders.") .
+ gettext("Use these for changing DNS results or for adding custom DNS records."));
?>
- <tr style="display:none">
- <td></td>
- </tr>
- </tbody>
-</table>
-<br />
-<table width="100%" border="0" cellpadding="0" cellspacing="0" class="tabcont" summary="domain overrides">
- <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 width="100%" border="0" cellpadding="0" cellspacing="0" class="tabcont sortable" summary="results">
- <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">
+
+<div class="panel panel-default">
+ <div class="panel-heading"><h2><?=gettext("Domain Overrides")?></h2></div>
+ <div class="panel-body table-responsive">
+ <table class="table table-striped table-hover table-condensed">
+ <thead>
<tr>
- <td width="17" height="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" alt="add" /></a>
- </td>
+ <th><?=gettext("Domain")?></th>
+ <th><?=gettext("IP")?></th>
+ <th><?=gettext("Description")?></th>
+ <th></th>
</tr>
- </table>
- </td>
- </tr>
- </thead>
- <tfoot>
- <tr>
- <td class="list" colspan="3"></td>
- <td class="list">
- <table border="0" cellspacing="0" cellpadding="1" summary="add">
+ </thead>
+
+ <tbody>
+<?php
+foreach ($a_domainOverrides as $i => $doment):
+?>
<tr>
- <td width="17" height="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" alt="add" /></a>
+ <?=strtolower($doment['domain'])?>
+ </td>
+ <td>
+ <?=$doment['ip']?>
+ </td>
+ <td>
+ <?=htmlspecialchars($doment['descr'])?>
+ </td>
+ <td>
+ <a href="services_dnsmasq_domainoverride_edit.php?id=<?=$i?>" class="btn btn-xs btn-info"><?=gettext('Edit')?></a>
+ <a href="services_dnsmasq.php?act=del&amp;type=doverride&amp;id=<?=$i?>" class="btn btn-xs btn-danger"><?=gettext('Delete')?></a>
</td>
</tr>
- </table>
- </td>
- </tr>
- </tfoot>
- <tbody>
<?php
- $i = 0;
- foreach ($a_domainOverrides as $doment):
+endforeach;
?>
- <tr>
- <td class="listlr">
- <?=strtolower($doment['domain']);?>&nbsp;
- </td>
- <td class="listr">
- <?=$doment['ip'];?>&nbsp;
- </td>
- <td class="listbg">
- <?=htmlspecialchars($doment['descr']);?>&nbsp;
- </td>
- <td valign="middle" class="list nowrap">
- <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" alt="edit" /></a>
- &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?");?>')"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0" alt="delete" /></a>
- </td>
- </tr>
+ </tbody>
+ </table>
+ </div>
+</div>
+
+<nav class="action-buttons">
+ <a href="services_dnsmasq_domainoverride_edit.php" class="btn btn-sm btn-success"><?=gettext('Add')?></a>
+</nav>
+
<?php
- $i++;
- endforeach;
-?>
- <tr style="display:none">
- <td></td>
- </tr>
- </tbody>
-</table>
-</form>
-<script type="text/javascript">
-//<![CDATA[
-enable_change(false);
-//]]>
-</script>
-<?php include("fend.inc"); ?>
-</body>
-</html>
+print_info_box(gettext("Entries in this area override an entire domain, and subdomains, by specifying an".
+ " authoritative DNS server to be queried for that domain."));
+
+include("foot.inc"); \ No newline at end of file
OpenPOWER on IntegriCloud