From 638a79478ea54a2ffb4554368b3b9ac994985ed7 Mon Sep 17 00:00:00 2001 From: stilez Date: Sun, 5 Mar 2017 10:42:18 +0000 Subject: Clearer narrative for domain override edit page --- src/usr/local/www/services_unbound_domainoverride_edit.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/usr/local') 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; -- cgit v1.1 From 1eb759abbf2fa3a24981e986bfe12c454963ee35 Mon Sep 17 00:00:00 2001 From: stilez Date: Sun, 5 Mar 2017 10:50:16 +0000 Subject: Clearer narrative for domain override on main resolver config page --- src/usr/local/www/services_unbound.php | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/usr/local') diff --git a/src/usr/local/www/services_unbound.php b/src/usr/local/www/services_unbound.php index e000057..471bc7a 100644 --- a/src/usr/local/www/services_unbound.php +++ b/src/usr/local/www/services_unbound.php @@ -553,6 +553,13 @@ endforeach; + + Enter any domains for which the resolver's standard DNS lookup process should be overridden and a different (non-standard) + lookup server should be queried instead. Non-standard, 'invalid' and local domains, and subdomains, can also be entered, + such as 'test', 'mycompany.localdomain', '1.168.192.in-addr.arpa', or 'somesite.com'. The IP address is treated as the + authoritative lookup server for the domain (including all of its subdomains), and other lookup servers will not be queried. + +