Gibt es einen Linux-Befehl zum Übersetzen des Domainnamens in IP?
linux
ip
domain-name
Frank
quelle
quelle
Antworten:
oder
quelle
bind-tools
Paket.basename $(dig +short stackoverflow.com A | tr '\n' '/')
instead. This is useful when you want to get-IP-by-domain in shell scripts.You can use:
quelle
nslookup
is less ideal for scripting.dig +short
is probably the most correct answer here, as already suggested by @unutbu.dig
andhost
are installed by default on all distros, meanwhilenslookup
is part of busybox, the base of lightweight distos like Alpine.www.
www.example.com
undexample.com
kann auf verschiedene IP-Adressen verweisen.nslookup
ist veraltet ist, aber ich ziehe immer noch seine Ausgabeformat überdig +short
undhost
für die menschliche Lesbarkeit.