summaryrefslogtreecommitdiffstats
path: root/usr
diff options
context:
space:
mode:
authorChris Buechler <cmb@pfsense.org>2015-03-05 19:35:12 -0600
committerChris Buechler <cmb@pfsense.org>2015-03-05 19:35:59 -0600
commit73cdd9f0caa9fb3caad6f4d83f4fb31dfc209d62 (patch)
tree64a3c5ba7b15f1859ec20bca476e7fbc59ef8698 /usr
parent5ec3f37fcfeb08b6c69ce1c37937de7be9260b25 (diff)
downloadpfsense-73cdd9f0caa9fb3caad6f4d83f4fb31dfc209d62.zip
pfsense-73cdd9f0caa9fb3caad6f4d83f4fb31dfc209d62.tar.gz
Remove the harden-glue option entirely and hard code it to yes. Ticket #4402
Diffstat (limited to 'usr')
-rw-r--r--usr/local/www/services_unbound_advanced.php15
1 files changed, 0 insertions, 15 deletions
diff --git a/usr/local/www/services_unbound_advanced.php b/usr/local/www/services_unbound_advanced.php
index 0bd7bfc..56c52b6 100644
--- a/usr/local/www/services_unbound_advanced.php
+++ b/usr/local/www/services_unbound_advanced.php
@@ -58,9 +58,6 @@ if (isset($config['unbound']['prefetch'])) {
if (isset($config['unbound']['prefetchkey'])) {
$pconfig['prefetchkey'] = true;
}
-if (isset($config['unbound']['hardenglue'])) {
- $pconfig['hardenglue'] = true;
-}
if (isset($config['unbound']['dnssecstripped'])) {
$pconfig['dnssecstripped'] = true;
}
@@ -153,11 +150,6 @@ if ($_POST) {
} else {
unset($config['unbound']['prefetchkey']);
}
- if (isset($_POST['hardenglue'])) {
- $config['unbound']['hardenglue'] = true;
- } else {
- unset($config['unbound']['hardenglue']);
- }
if (isset($_POST['dnssecstripped'])) {
$config['unbound']['dnssecstripped'] = true;
} else {
@@ -258,13 +250,6 @@ include_once("head.inc");
</td>
</tr>
<tr>
- <td width="22%" valign="top" class="vncell"><?=gettext("Harden Glue");?></td>
- <td width="78%" class="vtable">
- <input name="hardenglue" type="checkbox" id="hardenglue" value="yes" <?php if (isset($pconfig['hardenglue'])) echo "checked=\"checked\"";?> /><br />
- <?=gettext("Only trust glue if it is within the server's authority.");?>
- </td>
- </tr>
- <tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Harden DNSSEC data");?></td>
<td width="78%" class="vtable">
<input name="dnssecstripped" type="checkbox" id="dnssecstripped" value="yes" <?php if (isset($pconfig['dnssecstripped'])) echo "checked=\"checked\"";?> /><br />
OpenPOWER on IntegriCloud