diff --git a/README.md b/README.md index 7421b38..91f4059 100644 --- a/README.md +++ b/README.md @@ -154,6 +154,13 @@ You first have to setup the bindAPI. Bye. So now we can head back to our panel and set the Document root to /home/users/tfunix/ns1.24unix.net/bindAPI/public. +Additionally, we have to change the open_basedir directive: +##DOCROOT##/www:##DOCROOT##/files:##DOCROOT##/tmp:/etc/bind:/etc/bind/local.zones + +TODO: Screenshot + +and remove exec from disabled functions. + OK, we are finished with the installation and head over to the [4. Configuration](#4-configuration). ## 3.2. Installation on a plain debian Bullseye @@ -393,7 +400,6 @@ Domain: cdw.one ns1.24unix.net OK ns2.24unix.net OK Domain: aussempott.de ns1.24unix.net OK ns2.24unix.net OK Domain: fairdns.de ns1.24unix.net OK ns2.24unix.net OK Domain: tzazicke.de ns1.24unix.net OK ns2.24unix.net OK -Domain: casabuitoni.de ns1.24unix.net OK ns2.24unix.net OK Keyhelp-Panel: shadow.24unix.net No second level domains found. Keyhelp-Panel: tector.24unix.net @@ -519,8 +525,43 @@ also-notify { After the modification feel free to run named-checkconf to ensure there were no errors. ``` +When all steps are prepared a first test: -TODO +``` +$ ./bin/console check:panels 31 +Keyhelp-Panel: paz.24unix.net + Domain: crowddataworker.de ns1.24unix.net OK ns2.24unix.net OK ns3.24unix.net 404 + Domain: cdw.one ns1.24unix.net OK ns2.24unix.net OK ns3.24unix.net 404 + Domain: aussempott.de ns1.24unix.net OK ns2.24unix.net OK ns3.24unix.net 404 + Domain: fairdns.de ns1.24unix.net OK ns2.24unix.net OK ns3.24unix.net 404 + Domain: tzazicke.de ns1.24unix.net OK ns2.24unix.net OK ns3.24unix.net 404 +``` + +Like expected, our new ns3 doesn't know any of the domains. + +Now comes the fun part: + +``` +$ ./bin/console check:panels 31 fix=yes +Keyhelp-Panel: paz.24unix.net + Domain: crowddataworker.de ns1.24unix.net OK ns2.24unix.net OK ns3.24unix.net 404 trying to fix …OK + Domain: cdw.one ns1.24unix.net OK ns2.24unix.net OK ns3.24unix.net 404 trying to fix …OK + Domain: aussempott.de ns1.24unix.net OK ns2.24unix.net OK ns3.24unix.net 404 trying to fix …OK + Domain: fairdns.de ns1.24unix.net OK ns2.24unix.net OK ns3.24unix.net 404 trying to fix …OK + Domain: tzazicke.de ns1.24unix.net OK ns2.24unix.net OK ns3.24unix.net 404 trying to fix …OK + +tfunix@jarjar:/home/users/tfunix/www/ns3.24unix.net/bindAPI$ ./bin/console check:panels 31 +Keyhelp-Panel: paz.24unix.net + Domain: crowddataworker.de ns1.24unix.net OK ns2.24unix.net OK ns3.24unix.net OK + Domain: cdw.one ns1.24unix.net OK ns2.24unix.net OK ns3.24unix.net OK + Domain: aussempott.de ns1.24unix.net OK ns2.24unix.net OK ns3.24unix.net OK + Domain: fairdns.de ns1.24unix.net OK ns2.24unix.net OK ns3.24unix.net OK + Domain: tzazicke.de ns1.24unix.net OK ns2.24unix.net OK ns3.24unix.net OK +``` + +Yes, all our domains from the given panel have been added to out nameserver. + +Voila.