aboutsummaryrefslogtreecommitdiff
path: root/middleware
diff options
context:
space:
mode:
Diffstat (limited to 'middleware')
-rw-r--r--middleware/secondary/README.md21
1 files changed, 18 insertions, 3 deletions
diff --git a/middleware/secondary/README.md b/middleware/secondary/README.md
index 7d5338c95..d6cbe465a 100644
--- a/middleware/secondary/README.md
+++ b/middleware/secondary/README.md
@@ -31,9 +31,24 @@ secondary [zones...] {
## Examples
+Transfer `example.org` from 10.0.1.1, and if that fails try 10.1.2.1.
+
+~~~ corefile
+example.org {
+ secondary {
+ transfer from 10.0.1.1
+ transfer from 10.1.2.1
+ }
+}
~~~
-secondary example.org {
- transfer from 10.0.1.1
- transfer from 10.1.2.1
+
+Or re-export the retrieved zone to other secondaries.
+
+~~~ corefile
+. {
+ secondary example.net {
+ transfer from 10.1.2.1
+ transfer to *
+ }
}
~~~