home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1996 May / PCOnline_05_1996.bin / linux / source / n / bind / bind-4.001 / bind-4~ / bind-4.9.3-BETA9 / contrib / dnswalk-1.8.1 / do-dnswalk < prev    next >
Text File  |  1993-07-16  |  415b  |  14 lines

  1. #!/bin/sh
  2. # Here's an example script for a hostmaster of a large site
  3. # to automate the process
  4. # try adding '-F' here once just to see what pops up
  5. flags='-r -d'
  6. logfile=podunk.errors
  7. trap "" 2 15;
  8. exec > ${logfile}
  9. ./dnswalk ${flags} $* podunk.edu.
  10. ./dnswalk ${flags} $* 1.1.in-addr.arpa.
  11. ./dnswalk ${flags} $* 2.1.in-addr.arpa.
  12. ./dnswalk ${flags} $* 1.2.1.in-addr.arpa.
  13. ./dnswalk ${flags} $* 2.2.1.in-addr.arpa.
  14.