中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

ubuntu中怎么設置域名解析

九三
555
2021-01-30 17:07:32
欄目: 云計算

ubuntu中怎么設置域名解析

在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 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;

}

2.main.cpp文件新建好后,對main.cpp文件進行編譯;

gcc main.cpp

3.最后,編譯main.cpp文件后,使用dp命令即可對域名進行解析;

例:對www.baidu.com進行解析

dp www.baidu.com

0
金塔县| 平度市| 舟山市| 宾川县| 濉溪县| 中宁县| 巴塘县| 双辽市| 施甸县| 永定县| 和田市| 滕州市| 镇雄县| 绥芬河市| 周至县| 五原县| 威远县| 尚义县| 万宁市| 汶川县| 化州市| 斗六市| 乌拉特前旗| 孟村| 秦皇岛市| 新余市| 新平| 红桥区| 河西区| 兰州市| 加查县| 巧家县| 乳山市| 景谷| 邻水| 砀山县| 白朗县| 涿鹿县| 东阳市| 赤峰市| 福泉市|