source: genesis/dns/check.sh@ 2569

Last change on this file since 2569 was 2391, checked in by dirkx, 20 years ago

Checking tool

  • Property svn:executable set to *
File size: 455 bytes
Line 
1#!/bin/sh
2
3TLD=172.in-addr.arpa.
4
5for i in 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
6do
7 named-checkzone -q ${i}.${TLD} ${i}.zone ||\
8 named-checkzone ${i}.${TLD} ${i}.zone || exit 1
9done
10
11for i in wirelessleiden.nl wleiden.net
12do
13 named-checkzone -q $i\. $i ||\
14 named-checkzone $i\. $i || exit 1
15done
16
17echo No syntax errors in any of the files. You DID update
18echo the serial numbers and date-stamps in the SOA I hope \?\!
19echo
20echo OK
21exit 0
22
23
Note: See TracBrowser for help on using the repository browser.