Fix problem in notify test

This commit is contained in:
Michael Sawyer
2000-05-23 02:13:39 +00:00
parent ef9f3246f4
commit df22852dcd
7 changed files with 13 additions and 11 deletions

View File

@@ -2,8 +2,8 @@ $ORIGIN .
$TTL 300 ; 5 minutes
example IN SOA mname1. . (
1 ; serial
20 ; refresh (20 seconds)
20 ; retry (20 seconds)
300 ; refresh (300 seconds)
300 ; retry (300 seconds)
1814400 ; expire (3 weeks)
3600 ; minimum (1 hour)
)

View File

@@ -2,8 +2,8 @@ $ORIGIN .
$TTL 300 ; 5 minutes
example IN SOA mname1. . (
2 ; serial
20 ; refresh (20 seconds)
20 ; retry (20 seconds)
300 ; refresh (300 seconds)
300 ; retry (300 seconds)
1814400 ; expire (3 weeks)
3600 ; minimum (1 hour)
)

View File

@@ -2,8 +2,8 @@ $ORIGIN .
$TTL 300 ; 5 minutes
example IN SOA mname1. . (
3 ; serial
20 ; refresh (20 seconds)
20 ; retry (20 seconds)
300 ; refresh (300 seconds)
300 ; retry (300 seconds)
1814400 ; expire (3 weeks)
3600 ; minimum (1 hour)
)

View File

@@ -2,8 +2,8 @@ $ORIGIN .
$TTL 300 ; 5 minutes
example IN SOA mname1. . (
4 ; serial
20 ; refresh (20 seconds)
20 ; retry (20 seconds)
300 ; refresh (300 seconds)
300 ; retry (300 seconds)
1814400 ; expire (3 weeks)
3600 ; minimum (1 hour)
)

View File

@@ -3,6 +3,7 @@ options {
listen-on { 10.53.0.2; };
recursion no;
notify yes;
query-source address 10.53.0.2;
};
zone "." {

View File

@@ -4,6 +4,7 @@ options {
listen-on { 10.53.0.3; };
recursion yes;
notify yes;
query-source address 10.53.0.3;
};
zone "." {

View File

@@ -53,7 +53,7 @@ rm -f ns2/example.db
cp ns2/example2.db ns2/example.db
sleep 6
kill -HUP `cat ns2/named.pid`
sleep 30
sleep 6
../../../dig/dig +tcp +noadd +nosea +nostat +noquest +nocomm +nocmd a.example.\
@10.53.0.2 a > dig.out.ns2
@@ -74,7 +74,7 @@ cp ns2/example3.db ns2/example.db
sleep 6
kill -HUP `cat ns2/named.pid`
(cd ns3 ; $NAMED -c named.conf -d 99 -g >> named.run 2>&1 & )
sleep 30
sleep 6
../../../dig/dig +tcp +noadd +nosea +nostat +noquest +nocomm +nocmd a.example.\
@10.53.0.2 a > dig.out.ns2
@@ -94,7 +94,7 @@ kill `cat ns2/named.pid`
cp ns2/example4.db ns2/example.db
sleep 6
(cd ns2 ; $NAMED -c named.conf -d 99 -g >> named.run 2>&1 & )
sleep 30
sleep 6
../../../dig/dig +tcp +noadd +nosea +nostat +noquest +nocomm +nocmd a.example.\
@10.53.0.2 a > dig.out.ns2