mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-25 16:18:03 -04:00
Add (unused) NS1 server configuration, since directory didn't seem to want to go away in CVS.
This commit is contained in:
parent
8f239354a0
commit
dec3e76636
2 changed files with 26 additions and 0 deletions
13
bin/tests/system/views/ns1/named.conf
Normal file
13
bin/tests/system/views/ns1/named.conf
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
options {
|
||||
port 5300;
|
||||
directory ".";
|
||||
pid-file "named.pid";
|
||||
listen-on { 10.53.0.1; };
|
||||
recursion no;
|
||||
notify yes;
|
||||
};
|
||||
|
||||
zone "." {
|
||||
type master;
|
||||
file "root.db";
|
||||
};
|
||||
13
bin/tests/system/views/ns1/root.db
Normal file
13
bin/tests/system/views/ns1/root.db
Normal 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 ns2.example.
|
||||
ns2.example. A 10.53.0.2
|
||||
Loading…
Reference in a new issue