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
localhost wiki