Wiki Page Content

Maintaining DNS

To see how outofdate your named.conf / domainDb relation is:

cat named.conf |grep ^zone\  |grep -v //  > chkex

clean up chkex

then

for a in `cat chkex `; do 
 if [ -e domainDb/${a} ]; then 
  echo -n
 else 
  echo "${a} not ins use"
 fi
done

DNSMaintenance (last edited 2011-01-05 17:25:02 by SteveClement)