summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www
diff options
context:
space:
mode:
authorRobbert Rijkse <robbert@rijkse.me>2017-05-06 15:23:34 -0400
committerRobbert Rijkse <robbert@rijkse.me>2017-05-06 15:23:34 -0400
commit409165fde88e11eb057173c5d223eedc79d8d13c (patch)
treeb7d324c9f2f6618fc77f8be5d069f624974aee53 /src/usr/local/www
parent1ba646755d1d62ad7ca1aa75b9c7e5adee7d1260 (diff)
downloadpfsense-409165fde88e11eb057173c5d223eedc79d8d13c.zip
pfsense-409165fde88e11eb057173c5d223eedc79d8d13c.tar.gz
Unbound: Added ability to disable automatically added host entries
Diffstat (limited to 'src/usr/local/www')
-rw-r--r--src/usr/local/www/services_unbound_advanced.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/usr/local/www/services_unbound_advanced.php b/src/usr/local/www/services_unbound_advanced.php
index c50d043..efe7269 100644
--- a/src/usr/local/www/services_unbound_advanced.php
+++ b/src/usr/local/www/services_unbound_advanced.php
@@ -71,6 +71,10 @@ if (isset($config['unbound']['disable_auto_added_access_control'])) {
$pconfig['disable_auto_added_access_control'] = true;
}
+if (isset($config['unbound']['disable_auto_host_entries'])) {
+ $pconfig['disable_auto_added_host_entries'] = true;
+}
+
if (isset($config['unbound']['use_caps'])) {
$pconfig['use_caps'] = true;
}
@@ -171,6 +175,12 @@ if ($_POST) {
unset($config['unbound']['disable_auto_added_access_control']);
}
+ if (isset($_POST['disable_auto_added_host_entries'])) {
+ $config['unbound']['disable_auto_added_host_entries'] = true;
+ } else {
+ unset($config['unbound']['disable_auto_added_host_entries']);
+ }
+
if (isset($_POST['use_caps'])) {
$config['unbound']['use_caps'] = true;
} else {
@@ -350,6 +360,14 @@ $section->addInput(new Form_Checkbox(
'Allowed networks must be manually configured on the Access Lists tab if the auto-added entries are disabled.');
$section->addInput(new Form_Checkbox(
+ 'disable_auto_added_host_entries',
+ 'Disable Auto-added Host Entries',
+ 'Disable the automatically-added host entries',
+ $pconfig['disable_auto_added_host_entries']
+))->setHelp('By default, the primary IPv4 and IPv6 addresses of the pfsense machine are added as records for the pfSense system domain (System | General Setup | Domain). ' .
+ 'This disables the auto generation of these entries.');
+
+$section->addInput(new Form_Checkbox(
'use_caps',
'Experimental Bit 0x20 Support',
'Use 0x-20 encoded random bits in the DNS query to foil spoofing attempts.',
OpenPOWER on IntegriCloud