]> git.pld-linux.org Git - packages/bind.git/commitdiff
- new (from conf-pld.tar.gz)
authorAdam Gołębiowski <adamg@pld-linux.org>
Fri, 20 Jun 2008 08:50:29 +0000 (08:50 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    bind-127.0.0.zone -> 1.1
    bind-localhost.zone -> 1.1
    bind-named.conf -> 1.1

bind-127.0.0.zone [new file with mode: 0644]
bind-localhost.zone [new file with mode: 0644]
bind-named.conf [new file with mode: 0644]

diff --git a/bind-127.0.0.zone b/bind-127.0.0.zone
new file mode 100644 (file)
index 0000000..b9b7bf5
--- /dev/null
@@ -0,0 +1,11 @@
+$ORIGIN 0.0.127.in-addr.arpa.
+
+@                      1D IN SOA       localhost. root.localhost. (
+                                       42              ; serial (d. adams)
+                                       3H              ; refresh
+                                       15M             ; retry
+                                       1W              ; expiry
+                                       1D )            ; minimum
+
+                       1D IN NS        localhost.
+1                      1D IN PTR       localhost.
diff --git a/bind-localhost.zone b/bind-localhost.zone
new file mode 100644 (file)
index 0000000..ad5e68e
--- /dev/null
@@ -0,0 +1,10 @@
+$ORIGIN localhost.
+@                      1D IN SOA       @ root (
+                                       42              ; serial (d. adams)
+                                       3H              ; refresh
+                                       15M             ; retry
+                                       1W              ; expiry
+                                       1D )            ; minimum
+
+                       1D IN NS        @
+                       1D IN A         127.0.0.1
diff --git a/bind-named.conf b/bind-named.conf
new file mode 100644 (file)
index 0000000..c4d65b7
--- /dev/null
@@ -0,0 +1,56 @@
+// This is an exaple configuration file for named ( /etc/named.conf ) 
+// Przyk³adowy plik konfiguracyjny /etc/named.conf dla serwera nazw `named'
+
+options {
+       directory "/";
+       pid-file "named.pid";
+       auth-nxdomain yes;
+       datasize default;
+// Uncoment these to enable IPv6 connections support
+// IPv4 will still work
+//     listen-on { none; };
+//     listen-on-v6 { any; };
+};
+
+zone "localhost" IN {
+       type master;
+       file "M/localhost.zone";
+       allow-update { none; };
+       allow-transfer { any; };
+};
+
+zone "0.0.127.in-addr.arpa" IN {
+       type master;
+       file "M/127.0.0.zone";
+       allow-update { none; };
+       allow-transfer { any; };
+};
+
+zone "." IN {
+       type hint;
+       file "root.hint";
+};
+
+//zone "pld-linux.org" IN {
+//     type slave;
+//     file "S/pld-linux.org.zone";
+//     masters {
+//                 195.116.211.3; 
+//     };
+//     allow-query { any; };
+//     allow-transfer { any; };
+//};
+
+logging {
+        channel xfer-log {
+                file "named.log";
+                print-category yes;
+                print-severity yes;
+                print-time yes;
+                severity info;
+        };
+        category xfer-in { xfer-log; };
+        category xfer-out { xfer-log; };
+        category notify { xfer-log; };
+};
+
This page took 0.047479 seconds and 4 git commands to generate.