Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您如何获得与我连接到同一网络的主机名。示例我在 192.168.1.16 其他在 192.168.1.15
我如何使用 python 或任何有用的命令知道他的主机名?
您可以尝试:
nslookup IP_ADDRESS
它应该向您显示一个name包含主机名的字段。
name
还有一个特定的命令,但我不知道它是否包含在每个发行版中:
resolveip IP_ADDRESS
试试看。它还有一个-s选项,只为您提供主机名,仅在您需要检索它并将其存储在变量中时非常有用。
-s
resolveip -s IP_ADDRESS