如何获取引用 FQDN 的 IP 列表
在我的 C++ Linux 应用程序中,如何获取引用 FQDN 的 IP 列表? (静态 IP + 动态 IP)
10x
In my C++ linux application how can I get the IPs list reffering to an FQDN?
(static IPs + dynamic IPs)
10x
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检索本地域名和完全限定域名的映射之间没有主要区别。因此,您可以像调用任何其他域名一样调用 getaddrinfo。请注意,无法获取与域名关联的所有 IP 地址的列表,因为 DNS 服务器可以自由地仅通告某些地址或从较大的列表中选择一些地址。例如,
google.com
通常会映射到您所在大陆的服务器。这是如何使用它的示例:
这将输出:
There is no principal difference between retrieving the mapping for a local and a fully qualified domain name. Therefore, you can call the getaddrinfo as you would with any other domain name. Note that there is no way to get the list of all IP addresses associated to a domain name because DNS servers are free to advertise only certain addresses or pick a few from a larger list. For example,
google.com
will usually map to servers on your continent.Here's an example on how to use it:
This will output:
您需要使用 C++ 套接字库中的 getHostByName() 函数。 (这里是一个例子)
它会给你一个主机struct,从中可以获取IP等信息。
You need to use the getHostByName() function in the C++ sockets library. (here is an example)
It will give you back a hostent struct, from which you can get information like IP.