* SOFTWARE.
*/
-/* $Id: named.conf,v 1.2 2000/07/24 22:53:38 mws Exp $ */
+/* $Id: named.conf,v 1.3 2000/07/24 23:54:59 mws Exp $ */
options {
query-source address 10.53.0.1;
file "update.db";
allow-update { any; };
allow-transfer { any; };
+ also-notify { 10.53.0.2; };
};
# ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
# SOFTWARE.
-# $Id: tests.sh,v 1.5 2000/07/24 22:53:35 mws Exp $
+# $Id: tests.sh,v 1.6 2000/07/24 23:54:57 mws Exp $
#
# Perform tests
echo "I:The second part of this test requires the Net::DNS library." >&2
fi
+echo "I:fetching first copy of test zone"
+$DIG +tcp +noadd +nosea +nostat +noquest +nocomm +nocmd example.nil.\
+ @10.53.0.1 axfr -p 5300 > dig.out.ns1 || status=1
+
+echo "I:fetching second copy of test zone"
+$DIG +tcp +noadd +nosea +nostat +noquest +nocomm +nocmd example.nil.\
+ @10.53.0.1 axfr -p 5300 > dig.out.ns2 || status=1
+
+echo "I:comparing zones"
+$PERL ../digcomp.pl dig.out.ns1 dig.out.ns2 || status=1
+
echo "I:exit status: $status"
exit $status