summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/services_unbound_domainoverride_edit.php
diff options
context:
space:
mode:
authorstilez <stilez@users.noreply.github.com>2017-03-05 10:42:18 +0000
committerGitHub <noreply@github.com>2017-03-05 10:42:18 +0000
commit638a79478ea54a2ffb4554368b3b9ac994985ed7 (patch)
tree402654ab03b7c36409f9a5221d1961acd4615334 /src/usr/local/www/services_unbound_domainoverride_edit.php
parentfc970ca2967ef4250925cd44a8dd0acee18078c0 (diff)
downloadpfsense-638a79478ea54a2ffb4554368b3b9ac994985ed7.zip
pfsense-638a79478ea54a2ffb4554368b3b9ac994985ed7.tar.gz
Clearer narrative for domain override edit page
Diffstat (limited to 'src/usr/local/www/services_unbound_domainoverride_edit.php')
-rw-r--r--src/usr/local/www/services_unbound_domainoverride_edit.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/usr/local/www/services_unbound_domainoverride_edit.php b/src/usr/local/www/services_unbound_domainoverride_edit.php
index e87122b..586131b 100644
--- a/src/usr/local/www/services_unbound_domainoverride_edit.php
+++ b/src/usr/local/www/services_unbound_domainoverride_edit.php
@@ -114,14 +114,14 @@ if ($input_errors) {
$form = new Form();
-$section = new Form_Section('Domain Override');
+$section = new Form_Section('Domains to Override with Custom Lookup Servers');
$section->addInput(new Form_Input(
'domain',
'*Domain',
'text',
$pconfig['domain']
-))->setHelp('Domain to override (NOTE: this does not have to be a valid TLD!) e.g.: test or mycompany.localdomain or 1.168.192.in-addr.arpa');
+))->setHelp('Domain whose lookups will be directed to a user-specified DNS lookup server.');
$section->addInput(new Form_IpAddress(
'ip',
@@ -146,6 +146,12 @@ if (isset($id) && $a_domainOverrides[$id]) {
));
}
+$section->setHelp("This page is used to specify domains for which the resolver's standard DNS lookup process will be overridden, " .
+"and the resolver will query a different (non-standard) lookup server instead. It is possible to enter \'non-standard\', 'invalid' " .
+"and 'local' domains such as 'test', 'mycompany.localdomain', or '1.168.192.in-addr.arpa', as well as usual publicly resolvable " .
+"domains such as 'org', 'info', or 'google.co.uk'. The IP entered will be treated as the IP of an authoritative lookup server for " .
+"the domain (including all of its subdomains), and other lookup servers will not be queried.");
+
$form->add($section);
print $form;
OpenPOWER on IntegriCloud