summaryrefslogtreecommitdiff
path: root/src/tests/files/sample_conf
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/files/sample_conf')
-rw-r--r--src/tests/files/sample_conf59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/tests/files/sample_conf b/src/tests/files/sample_conf
new file mode 100644
index 0000000..6cd9e50
--- /dev/null
+++ b/src/tests/files/sample_conf
@@ -0,0 +1,59 @@
+# configuration file will follow bird (and juniper) type of configuration file
+# i.e. curly brackets will be used;
+
+# what to do with };
+# a) ignore ; if it follows }
+
+system {
+
+ identity "I have no mouth and must scream";
+ version "Infinitesimal";
+ storage "/var/run/knot/";
+}
+
+keys {
+ key0.example.net hmac-md5 "Wg=="; # key special for one remote
+ key1.example.net hmac-md5 "==gW"; # implicit key for whole zone
+}
+
+remotes {
+ remote0 { address 1.2.3.4; }
+}
+
+zones {
+ example.net {
+ file "/var/lib/knot/example.net";
+ xfr-out remote0;
+ }
+}
+
+interfaces {
+ interface0 {
+ address 10.10.1.1;
+ port 53531;
+ }
+
+ interface1 {
+ address ::0;
+ # port 53;
+ }
+}
+
+log {
+ syslog {
+ any notice, warning, error;
+ zone all;
+ }
+
+ file "/var/log/knot/server.err" {
+ server error;
+ }
+
+ stderr {
+ any warning, error;
+ }
+
+ stdout {
+ any info;
+ }
+}