ubuntu如何使用域名解析 ubuntu不能解析域名

主机教程 建站分享 2年前 (2022-11-27) 350次浏览

文章摘要:ubuntu如何使用域名解析 ubuntu不能解析域名

ubuntu使用域名解析的示例: 1.获取域名解析的程序,将以下代码保存为“main.cpp”。 #inclu […]

ubuntu使用域名解析的示例:

1.获取域名解析的程序,将以下代码保存为“main.cpp”。

#include

#include

#include

#include

extern int h_errno;

int main(int argc, char **argv)

{

if (argc != 2) {

printf("Use example: %s http://www.google.com
", *argv);

return -1;

}

char *name = argv[1];

struct hostent *hptr;

hptr = gethostbyname(name);

if (hptr == NULL) {

printf("gethostbyname error for host: %s: %s
", name, hstrerror(h_errno));

return -1;

}

//输出主机的规范名

printf(" official: %s
", hptr->h_name);

//输出主机的别名

char **pptr;

char str[INET_ADDRSTRLEN];

for (pptr=hptr->h_aliases; *pptr!=NULL; pptr++) {

printf(" talias: %s
", *pptr);

}

//输出ip地址

switch (hptr->h_addrtype) {

case AF_INET:

pptr = hptr->h_addr_list;

for (; *pptr!=NULL; pptr++) {

printf(" address: %s
",

inet_ntop(hptr->h_addrtype, hptr->h_addr, str, sizeof(str)));

}

break;

default:

printf("unknown address type
");

break;

}

return 0;

}

2.编译程序,命令:

gcc main.cpp //会生成a.out文件

3.重命名&&拷贝&&权限修改,命令:

sudo cp a.out /usr/bin/dp

sudo chmod a+x /usr/bin/dp

4..执行域名解析,例如:

dp http://www.baidu.com

5.返回结果如下:

official: http://www.a.shifen.com

talias: http://www.baidu.com

address: 180.97.33.108

address: 180.97.33.108


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:ubuntu如何使用域名解析 ubuntu不能解析域名
文章链接:http://www.7966.org/post/15783.html
转载请注明出处

喜欢 (0)