]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
dnsdist: Fix some typos in the AXFR/IXFR documentation 3992/head
authorRemi Gacogne <remi.gacogne@powerdns.com>
Tue, 14 Jun 2016 18:49:50 +0000 (20:49 +0200)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Tue, 14 Jun 2016 18:49:50 +0000 (20:49 +0200)
pdns/README-dnsdist.md

index f27bb5fe80ee9c2e56ef34cfc769f29f6910fcf6..c2b0fba029a42660ccd34507a53744da3bf7ee53 100644 (file)
@@ -994,8 +994,8 @@ receive AXFR or IXFR queries destined to this master. There are two issues
 that can arise in this kind of setup:
 
  * If the master is part of a pool of servers, the first SOA query can be directed
-   by `dnsdist` to a different server than the following AXFR/IXFR one. If all servers are not
-   perfectly synchronised at all times, it might to synchronisation issues.
+   by `dnsdist` to a different server than the following AXFR/IXFR one, which might
+   fail if the servers are not perfectly synchronised.
  * If the master only allows AXFR/IXFR based on the source address of the requestor,
    it might be confused by the fact that the source address will be the one from
    the `dnsdist` server.
@@ -1008,7 +1008,7 @@ to the master:
 > addAction(OrRule({QTypeRule(dnsdist.SOA), QTypeRule(dnsdist.AXFR), QTypeRule(dnsdist.IXFR)}), PoolAction("master"))
 ```
 
-The second one might requires allowing AXFR/IXFR from the `dnsdist` source address
+The second one might require allowing AXFR/IXFR from the `dnsdist` source address
 and moving the source address check on `dnsdist`'s side:
 
 ```