linux把域名转换成ip,域名,ip相互转换(Linux,getaddrinfo, getnameinfo)

参考链接:

代码:

/* ip_to_hostname ip */

#include

#include

#include

#include

#include

#include

#include

int main(int argc, char *argv[])

{

if (argc != 2)

{

fprintf(stderr, "Usage: %s hostname\n", argv[0]);

exit(EXIT_FAILURE);

}

struct addrinfo hints;

struct addrinfo *result, *result_pointer;

int ret;

/* obtaining address matching host */

memset(&hints, 0, sizeof(struct addrinfo));

hints.ai_family = AF_UNSPEC;

hints.ai_socktype = SOCK_STREAM;

hints.ai_flags = AI_CANONNAME | AI_NUMERICHOST;

hints.ai_protocol = 0; /* any protocol */

// ret = getaddrinfo(argv[1], NULL, &hints, &result);

ret = getaddrinfo(argv[1], NULL, &hints, &result);

if (ret != 0)

{

fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(ret));

exit(EXIT_FAILURE);

}

/* traverse the returned list and output the ip addresses */

for (result_pointer = result; result_pointer != NULL; result_pointer = result_pointer->ai_next)

{

char hostname[1025] = "";

ret = getnameinfo(result_pointer->ai_addr, result_pointer->ai_addrlen, hostname, sizeof(hostname), NULL, 0, NI_NAMEREQD);

if (ret != 0)

{

fprintf(stderr, "error in getnameinfo: %s \n", gai_strerror(ret));

}

else

{

printf("hostname: %s \n", hostname);

}

// printf("hostname: %s \n", result_pointer->ai_canonname);

}

freeaddrinfo(result);

exit(EXIT_SUCCESS);

}

/* hostname_to_ip hostname */

#include

#include

#include

#include

#include

#include

#include

int main(int argc, char *argv[])

{

if (argc != 2)

{

fprintf(stderr, "Usage: %s hostname\n", argv[0]);

exit(EXIT_FAILURE);

}

struct addrinfo hints;

struct addrinfo *result, *result_pointer;

int ret;

/* obtaining address matching host */

memset(&hints, 0, sizeof(struct addrinfo));

hints.ai_family = AF_UNSPEC;

hints.ai_socktype = SOCK_STREAM;

hints.ai_flags = AI_CANONNAME;

hints.ai_protocol = 0; /* any protocol */

// ret = getaddrinfo(argv[1], NULL, &hints, &result);

ret = getaddrinfo(argv[1], NULL, &hints, &result);

if (ret != 0)

{

fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(ret));

exit(EXIT_FAILURE);

}

/* traverse the returned list and output the ip addresses */

for (result_pointer = result; result_pointer != NULL; result_pointer = result_pointer->ai_next)

{

char hostname[1025] = "";

ret = getnameinfo(result_pointer->ai_addr, result_pointer->ai_addrlen, hostname, sizeof(hostname), NULL, 0, NI_NUMERICHOST);

if (ret != 0)

{

fprintf(stderr, "error in getnameinfo: %s \n", gai_strerror(ret));

continue;

}

else

{

printf("IP: %s \n", hostname);

}

}

freeaddrinfo(result);

exit(EXIT_SUCCESS);

}

结果:

root@localhost :/home/James/mypro/Linux-Pro/Network# ./hostname_to_ip baidu.com

IP: 123.125.114.144

IP: 220.181.111.85

IP: 220.181.111.86

root@localhost :/home/James/mypro/Linux-Pro/Network# ./ip_to_hostname 220.181.111.86

error in getnameinfo: Name or service not known

root@localhost :/home/James/mypro/Linux-Pro/Network# ./ip_to_hostname 10.0.0.78

hostname: localhost

root@localhost:/home/James/mypro/Linux-Pro/Network# ./ip_to_hostname 59.66.137.62

hostname: th137062.ip.tsinghua.edu.cn

root@localhost:/home/James/mypro/Linux-Pro/Network# ./ip_to_hostname 202.106.182.229

hostname: mail182-229.sinamail.sina.com.cn

root@localhost:/home/James/mypro/Linux-Pro/Network# ./ip_to_hostname 211.147.4.7

hostname: mail3.douban.com

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Linux C 语言中,可以使用 getaddrinfo 函数将域名转换IP 地址。 具体实现步骤如下: 1. 引入头文件: ``` #include <sys/types.h> #include <sys/socket.h> #include <netdb.h> #include <arpa/inet.h> ``` 2. 定义 getaddrinfo() 函数所需的结构体: ``` struct addrinfo hints, *res; int status; char ipstr[INET6_ADDRSTRLEN]; ``` 3. 初始化 hints 结构体: ``` memset(&hints, 0, sizeof hints); hints.ai_family = AF_UNSPEC; // AF_INET 或 AF_INET6 均可 hints.ai_socktype = SOCK_STREAM; // TCP ``` 4. 调用 getaddrinfo() 函数: ``` status = getaddrinfo("www.example.com", NULL, &hints, &res); ``` 其中 "www.example.com" 是需要转换域名。 5. 遍历返回的地址列表,并将其转换IP 地址: ``` struct addrinfo *p; void *addr; for(p = res; p != NULL; p = p->ai_next) { if (p->ai_family == AF_INET) { // IPv4 struct sockaddr_in *ipv4 = (struct sockaddr_in *)p->ai_addr; addr = &(ipv4->sin_addr); } else { // IPv6 struct sockaddr_in6 *ipv6 = (struct sockaddr_in6 *)p->ai_addr; addr = &(ipv6->sin6_addr); } // 将 IP 地址转换为字符串 inet_ntop(p->ai_family, addr, ipstr, sizeof ipstr); } ``` 其中,inet_ntop() 函数将 IP 地址转换为字符串形式,ipstr 变量即为转换后的 IP 地址。 6. 释放内存: ``` freeaddrinfo(res); ``` 完整代码如下: ``` #include <sys/types.h> #include <sys/socket.h> #include <netdb.h> #include <arpa/inet.h> #include <stdio.h> #include <stdlib.h> #include <string.h> int main() { struct addrinfo hints, *res; int status; char ipstr[INET6_ADDRSTRLEN]; memset(&hints, 0, sizeof hints); hints.ai_family = AF_UNSPEC; hints.ai_socktype = SOCK_STREAM; status = getaddrinfo("www.example.com", NULL, &hints, &res); if (status != 0) { fprintf(stderr, "getaddrinfo error: %s\n", gai_strerror(status)); exit(1); } struct addrinfo *p; void *addr; for(p = res; p != NULL; p = p->ai_next) { if (p->ai_family == AF_INET) { // IPv4 struct sockaddr_in *ipv4 = (struct sockaddr_in *)p->ai_addr; addr = &(ipv4->sin_addr); } else { // IPv6 struct sockaddr_in6 *ipv6 = (struct sockaddr_in6 *)p->ai_addr; addr = &(ipv6->sin6_addr); } inet_ntop(p->ai_family, addr, ipstr, sizeof ipstr); printf("IP address: %s\n", ipstr); } freeaddrinfo(res); return 0; } ```

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值