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

溫馨提示×

ubuntu如何使用域名解析

小新
487
2021-01-16 16:15:33
欄目: 云計算

ubuntu如何使用域名解析

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 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.編譯程序,命令:

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

3.重命名&&拷貝&&權限修改,命令:

sudo cp a.out /usr/bin/dp

sudo chmod a+x /usr/bin/dp

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

dp www.baidu.com

5.返回結果如下:

official: www.a.shifen.com

talias: www.baidu.com

address: 180.97.33.108

address: 180.97.33.108

0
玛曲县| 得荣县| 化州市| 巴东县| 磴口县| 安徽省| 哈密市| 赤城县| 安泽县| 汨罗市| 丰镇市| 广德县| 临沂市| 原平市| 白河县| 大庆市| 上饶市| 纳雍县| 三河市| 漾濞| 凤山县| 八宿县| 中超| 兴国县| 连城县| 开平市| 怀集县| 甘谷县| 竹溪县| 静宁县| 来凤县| 太湖县| 奈曼旗| 郑州市| 正蓝旗| 苏尼特左旗| 巴东县| 泰州市| 易门县| 漳州市| 全州县|