home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume43 / dnswalk / part01 / do-dnswalk < prev    next >
Text File  |  1994-06-27  |  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.