如何获取引用 FQDN 的 IP 列表

发布于 2024-10-13 21:28:59 字数 76 浏览 1 评论 0原文

在我的 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 技术交流群。

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

发布评论

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

评论(2

千寻… 2024-10-20 21:28:59

检索本地域名和完全限定域名的映射之间没有主要区别。因此,您可以像调用任何其他域名一样调用 getaddrinfo。请注意,无法获取与域名关联的所有 IP 地址的列表,因为 DNS 服务器可以自由地仅通告某些地址或从较大的列表中选择一些地址。例如,google.com 通常会映射到您所在大陆的服务器。

这是如何使用它的示例:

#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <string.h>
#include <arpa/inet.h>
int main(int argc, char** argv) {
 const char* domain = argc>1 ? argv[1] : "example.com";
 struct addrinfo *result, *rp, hints;

 memset(&hints, 0, sizeof(hints));
 hints.ai_socktype = SOCK_STREAM; // TCP

 int tmp = getaddrinfo(domain, NULL, &hints, &result);
 if (tmp != 0) {
  fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(tmp));
  return 1;
 }

 for (rp = result;rp != NULL;rp = rp->ai_next) {
  char buf[INET6_ADDRSTRLEN];
  switch (rp->ai_family) {
  case AF_INET:{
   struct in_addr* a4 = & ((struct sockaddr_in*) rp->ai_addr)->sin_addr;
   inet_ntop(rp->ai_family, a4, buf, sizeof(buf));
   printf("IPv4: %s\n", buf);
   break;}
  case AF_INET6:{
   struct in6_addr* a6 = & ((struct sockaddr_in6*) rp->ai_addr)->sin6_addr;
   inet_ntop(rp->ai_family, a6, buf, sizeof(buf));
   printf("IPv6: %s\n", buf);
   break;
  }}
 }

 freeaddrinfo(result);
 return 0;
}

这将输出:

IPv6: 2620:0:2d0:200::10
IPv4: 192.0.32.10

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:

#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <string.h>
#include <arpa/inet.h>
int main(int argc, char** argv) {
 const char* domain = argc>1 ? argv[1] : "example.com";
 struct addrinfo *result, *rp, hints;

 memset(&hints, 0, sizeof(hints));
 hints.ai_socktype = SOCK_STREAM; // TCP

 int tmp = getaddrinfo(domain, NULL, &hints, &result);
 if (tmp != 0) {
  fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(tmp));
  return 1;
 }

 for (rp = result;rp != NULL;rp = rp->ai_next) {
  char buf[INET6_ADDRSTRLEN];
  switch (rp->ai_family) {
  case AF_INET:{
   struct in_addr* a4 = & ((struct sockaddr_in*) rp->ai_addr)->sin_addr;
   inet_ntop(rp->ai_family, a4, buf, sizeof(buf));
   printf("IPv4: %s\n", buf);
   break;}
  case AF_INET6:{
   struct in6_addr* a6 = & ((struct sockaddr_in6*) rp->ai_addr)->sin6_addr;
   inet_ntop(rp->ai_family, a6, buf, sizeof(buf));
   printf("IPv6: %s\n", buf);
   break;
  }}
 }

 freeaddrinfo(result);
 return 0;
}

This will output:

IPv6: 2620:0:2d0:200::10
IPv4: 192.0.32.10
终弃我 2024-10-20 21:28:59

您需要使用 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.

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