2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

Add nameserver limit checks.

This commit is contained in:
Mark Andrews
2000-06-22 00:07:41 +00:00
parent b35a009df8
commit c04f6cf67d
3 changed files with 15043 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,20 @@
options {
query-source address 10.53.0.1;
port 5300;
directory ".";
pid-file "named.pid";
listen-on { 10.53.0.1; };
listen-on-v6 {none;};
recursion no;
notify yes;
};
zone "." {
type master;
file "root.db";
};
zone "example" {
type master;
file "example.db";
};

View File

@@ -0,0 +1,13 @@
$TTL 300
. IN SOA gson.nominum.com. a.root.servers.nil. (
2000042100 ; serial
600 ; refresh
600 ; retry
1200 ; expire
600 ; minimum
)
. NS a.root-servers.nil.
a.root-servers.nil. A 10.53.0.1
example. NS ns1.example.
ns1.example. A 10.53.0.1