91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
仙桃市| 景泰县| 六安市| 开封县| 承德市| 扎赉特旗| 汝州市| 定陶县| 拜城县| 循化| 广昌县| 汉川市| 大英县| 全椒县| 郧西县| 德兴市| 北京市| 白朗县| 淮滨县| 如皋市| 稷山县| 深州市| 广安市| 东宁县| 华池县| 浦江县| 平定县| 竹山县| 嘉义市| 泗水县| 灵武市| 九台市| 监利县| 麻栗坡县| 平乡县| 东乌珠穆沁旗| 将乐县| 普格县| 阿克苏市| 保定市| 娱乐|