Dns

解析域名的命令只給出 IP 地址/in-addr.arpa

  • February 13, 2019

我目前這是返回主機的 IP 地址或返回 in-addr.arpa 記錄:

host $1 |
 perl -pe 's/.* mail is .*//; s/\n//;s/.* has address //;s/.* domain name pointer //;s/.* not found: .*/'$1'/g';

是否有更授權的工具僅提供 IP 地址/in-addr.arpa 而沒有其他輸出?

從IP獲取域名

dig -x IP

只得到簡短的答案

dig -x IP +short

二進制包可能因您的發行版/作業系統而異

  • ubuntu,debian 上的dnsutils
  • centos,fedora等上的bind-utils

引用自:https://unix.stackexchange.com/questions/500502