Long time no see friendly code cherry!

: Clippy, bash / zsh commands, CSS Color

dig – get host infos

dig is a tool for querying DNS nameservers for information about host addresses, mail exchanges, nameservers, and related information

mediatemple.com

Usage (terminal): dig any domain.com for any entry. Or query specific entry, e.g. MX record: dig MX domain.com

Full command syntax: dig [@Server] [Domain] [Typ] [-x IP-Adresse]

Name Servers, human readable: dig +nocmd +noall +answer domain.com NS

Explanation: +nocmd = hide comand output, +noall = hide all infos (aka display flags), +answer show answer section, NS = Name-Servers

Eintrags-Typen:

ANYalle Einträge
AIPv4 Record eines Hosts
AAAAIPv6 Record eines Hosts
CNAMEKanonischer Name, Zuordnung von Aliassen
MXMail Exchanger
NS Hostname eines autoritativen Nameservers
PTRDomain Name Pointer (um IP-Adressen Namen zuzuweisen)
SOAStart of Authority
SRVAngebotene Dienste
TXTBeliebiger Text

Source: wiki.ubuntuusers.de/dig/