Skip to content
View in the app

A better way to browse. Learn more.

Gear Crushers

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Check Name Servers for External Domains

Featured Replies

So I have a need that I must validate the name servers for my external domains.  I have been trying to come up with a bash script that would read an export of my external view from Infoblox and perform a dig against a public internet DNS server like google or openDNS and provide results in a CSV format.

Ugly way is to first export External View DNS Domains to a txt file (for example ext_domains.txt)

Next create digscript.sh and paste the following

#!/bin/sh
CMD=/usr/bin/dig
CMDOPT=ns
SRV=@8.8.8.8
OPTION1=+noall
OPTION2=+answer
for domain in `cat ${1}`;
        do
        echo $domain
        $CMD $CMDOPT $SRV $domain $OPTION1 $OPTION2
done 

You have to make the file executable.

chmod 755 digscript.sh

Now you can run:

digscript.sh ext_domains.txt > digresults.txt

Clean it up some by running

sed '/^;/ d' < digresults.txt > digresultsout.txt

Now you can open it via Excel with space delimiter

Create an account or sign in to comment

Important Information

By using this site, you agree to our Terms of Use.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.