如何使用固定 DNS 服务器获取主机名的 IP?
有没有一种简单的方法,在 *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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用自己的解析器,直接发送 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.例如:
For example: