这篇文章主要介绍“ubuntu如何设置域名解析”,在日常操作中,相信很多人在ubuntu如何设置域名解析问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”ubuntu如何设置域名解析”的疑惑有所帮助!接下来,请跟
这篇文章主要介绍“ubuntu如何设置域名解析”,在日常操作中,相信很多人在ubuntu如何设置域名解析问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”ubuntu如何设置域名解析”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
首先,在ubuntu中新建一个main.cpp文件,并在文件中添加一下配置;
#include
#include
#include
#include
extern int h_errno;
int main(int arGC, char **argv)
{
if (argc != 2) {
printf("Use example: %s www.Google.com\n", *argv);
return -1;
}
char *name = argv[1];
struct hostent *hptr;
hptr = gethostbyname(name);
if (hptr == NULL) {
printf("gethostbyname error for host: %s: %s\n", name, hstrerror(h_errno));
return -1;
}
//输出主机的规范名
printf("\tofficial: %s\n", hptr->h_name);
//输出主机的别名
char **pptr;
char str[INET_ADDRSTRLEN];
for (pptr=hptr->h_aliases; *pptr!=NULL; pptr++) {
printf("\ttalias: %s\n", *pptr);
}
//输出ip地址
switch (hptr->h_addrtype) {
case AF_INET:
pptr = hptr->h_addr_list;
for (; *pptr!=NULL; pptr++) {
printf("\taddress: %s\n",
inet_ntop(hptr->h_addrtype, hptr->h_addr, str, sizeof(str)));
}
break;
default:
printf("unknown address type\n");
break;
}
return 0;
}
main.cpp文件新建好后,对main.cpp文件进行编译;
gcc main.cpp
最后,编译main.cpp文件后,使用dp命令即可对域名进行解析;
例:对www.baidu.com进行解析
dp www.baidu.com
到此,关于“ubuntu如何设置域名解析”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!
--结束END--
本文标题: ubuntu如何设置域名解析
本文链接: https://lsjlt.com/news/346244.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0