如何使用固定 DNS 服务器获取主机名的 IP?

发布于 2024-10-14 08:48:58 字数 93 浏览 1 评论 0原文

有没有一种简单的方法,在 *nix 平台(特别是 Linux)上获取主机名的 IP 地址,同时提供自定义 DNS 服务器来代替系统配置的服务器?我想从 C 程序访问此信息。

Is there an easy way, on *nix platforms(Linux specifically) to get the IP address of a hostname, while supplying a custom DNS server to use in place of the system's configured one? I want to access this information from a C program.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

泛滥成性 2024-10-21 08:48:58

您需要使用自己的解析器,直接发送 DNS 数据包,而不是依赖系统的解析器和 gethostbyname。您可能想要使用一个库,例如 adns

You will need to use your own resolver, directly sending DNS packets, instead of relying on the system's resolver and gethostbyname. You would probably want to use a library, such as adns.

不甘平庸 2024-10-21 08:48:58
nslookup <hostname> <dns server>

例如:

nslookup www.example.com ns1.example.com
nslookup <hostname> <dns server>

For example:

nslookup www.example.com ns1.example.com
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文