From dc860af85c61a77d880bc90a1e372852c30b033c Mon Sep 17 00:00:00 2001 From: david Date: Mon, 27 Feb 2017 11:58:26 +0100 Subject: [PATCH] added check_glue_records --- check_glue_records.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 check_glue_records.sh diff --git a/check_glue_records.sh b/check_glue_records.sh new file mode 100755 index 0000000..387793a --- /dev/null +++ b/check_glue_records.sh @@ -0,0 +1,14 @@ +#!/bin/sh +S=${IFS} +IFS=. +for P in $1; do + TLD=${P} +done +IFS=${S} + +echo "TLD: ${TLD}" +DNSLIST=$(dig +short ${TLD}. NS) +for DNS in ${DNSLIST}; do + echo "Checking ${DNS}" + dig +norec +nocomments +noquestion +nostats +nocmd @${DNS} $1 NS +done