域名,ip相互转换(Linux,getaddrinfo, getnameinfo)

/* ip_to_hostname ip */
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main(int argc, char *argv[])
{
        if (argc != 2)
        {
                fprintf(stderr, "Usage: %s hostname\n", argv[0]);
                exit(EXIT_FAILURE);
        }
        struct addrinfo hints;
        struct addrinfo *result, *result_pointer;
        int ret;
        /* obtaining address matching host */
        memset(&hints, 0, sizeof(struct addrinfo));
        hints.ai_family = AF_UNSPEC;
        hints.ai_socktype = SOCK_STREAM;
        hints.ai_flags = AI_CANONNAME | AI_NUMERICHOST;
        hints.ai_protocol = 0;  /* any protocol */

//      ret = getaddrinfo(argv[1], NULL, &hints, &result);                                                                                                             
        ret = getaddrinfo(argv[1], NULL, &hints, &result);
        if (ret != 0)
        {
                fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(ret));
                exit(EXIT_FAILURE);
        }
        /* traverse the returned list and output the ip addresses */
        for (result_pointer = result; result_pointer != NULL; result_pointer = result_pointer->ai_next)
        {
                char hostname[1025] = "";
                ret = getnameinfo(result_pointer->ai_addr, result_pointer->ai_addrlen, hostname, sizeof(hostname), NULL, 0, NI_NAMEREQD);
                if (ret != 0)
                {
                        fprintf(stderr, "error in getnameinfo: %s \n", gai_strerror(ret));
                }
                else
                {
                        printf("hostname: %s \n", hostname);
                }
//              printf("hostname: %s \n", result_pointer->ai_canonname);                                                                                               
        }
        freeaddrinfo(result);
        exit(EXIT_SUCCESS);
}




/* hostname_to_ip hostname */
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main(int argc, char *argv[])
{
        if (argc != 2)
        {
                fprintf(stderr, "Usage: %s hostname\n", argv[0]);
                exit(EXIT_FAILURE);
        }
        struct addrinfo hints;
        struct addrinfo *result, *result_pointer;
        int ret;
        /* obtaining address matching host */
        memset(&hints, 0, sizeof(struct addrinfo));
        hints.ai_family = AF_UNSPEC;
        hints.ai_socktype = SOCK_STREAM;
        hints.ai_flags = AI_CANONNAME;
        hints.ai_protocol = 0;  /* any protocol */

//      ret = getaddrinfo(argv[1], NULL, &hints, &result);                                                                                                             
        ret = getaddrinfo(argv[1], NULL, &hints, &result);
        if (ret != 0)
        {
                fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(ret));
                exit(EXIT_FAILURE);
        }
        /* traverse the returned list and output the ip addresses */
        for (result_pointer = result; result_pointer != NULL; result_pointer = result_pointer->ai_next)
        {
                char hostname[1025] = "";
                ret = getnameinfo(result_pointer->ai_addr, result_pointer->ai_addrlen, hostname, sizeof(hostname), NULL, 0, NI_NUMERICHOST);
                if (ret != 0)
                {
                        fprintf(stderr, "error in getnameinfo: %s \n", gai_strerror(ret));
                        continue;
                }
                else
                {
                        printf("IP: %s \n", hostname);
                }
        }
        freeaddrinfo(result);
        exit(EXIT_SUCCESS);
}

结果:

root@localhost :/home/James/mypro/Linux-Pro/Network# ./hostname_to_ip baidu.com
IP: 123.125.114.144
IP: 220.181.111.85
IP: 220.181.111.86
root@localhost :/home/James/mypro/Linux-Pro/Network# ./ip_to_hostname 220.181.111.86
error in getnameinfo: Name or service not known
root@localhost :/home/James/mypro/Linux-Pro/Network# ./ip_to_hostname 10.0.0.78
hostname: localhost

root@localhost:/home/James/mypro/Linux-Pro/Network# ./ip_to_hostname 59.66.137.62
hostname: th137062.ip.tsinghua.edu.cn
root@localhost:/home/James/mypro/Linux-Pro/Network# ./ip_to_hostname 202.106.182.229
hostname: mail182-229.sinamail.sina.com.cn
root@localhost:/home/James/mypro/Linux-Pro/Network# ./ip_to_hostname 211.147.4.7
hostname: mail3.douban.com

【轴承故障诊断】加权多尺度字典学习模型(WMSDL)及其在轴承故障诊断上的应用(Matlab代码实现)内容概要:本文介绍了加权多尺度字典学习模型(WMSDL)在轴承故障诊断中的应用,并提供了基于Matlab的代码实现。该模型结合多尺度分析与字典学习技术,能够有效提取轴承振动信号中的故障特征,提升故障识别精度。文档重点阐述了WMSDL模型的理论基础、算法流程及其在实际故障诊断中的实施步骤,展示了其相较于传统方法在特征表达能力和诊断准确性方面的优势。同时,文中还提及该资源属于一个涵盖多个科研方向的技术合集,包括智能优化算法、机器学习、信号处理、电力系统等多个领域的Matlab仿真案例。; 适合人群:具备一定信号处理和机器学习基础,从事机械故障诊断、工业自动化、智能制造等相关领域的研究生、科研人员及工程技术人员。; 使用场景及目标:①学习并掌握加权多尺度字典学习模型的基本原理与实现方法;②将其应用于旋转机械的轴承故障特征提取与智能诊断;③结合实际工程数据复现算法,提升故障诊断系统的准确性和鲁棒性。; 阅读建议:建议读者结合提供的Matlab代码进行实践操作,重点关注字典学习的训练过程与多尺度分解的实现细节,同时可参考文中提到的其他相关技术(如VMD、CNN、BILSTM等)进行对比实验与算法优化。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值