ubuntu中怎么设置域名解析 ubuntu 域名解析

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

文章摘要:ubuntu中怎么设置域名解析 ubuntu 域名解析

在ubuntu中设置域名解析的方法 1.首先,在ubuntu中新建一个main.cpp文件,并在文件中添加一下 […]

在ubuntu中设置域名解析的方法

1.首先,在ubuntu中新建一个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.main.cpp文件新建好后,对main.cpp文件进行编译;

gcc main.cpp

3.最后,编译main.cpp文件后,使用dp命令即可对域名进行解析;

例:对www.baidu.com进行解析

dp http://www.baidu.com


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

喜欢 (0)