1、引用nuget包 Wesky.Net.OpenTools

OpenTools是一个用于提高开发效率的开源工具库。该项目为个人开源项目,采用MIT开源协议,永不更改协议。开源项目地址:

Gitee:https://gitee.com/dreamer_j/open-tools.git
Github:https://github.com/LittleLittleRobot/OpenTools.git
工具更新说明:
1.0.1 提供AES加密解密功能
1.0.2 提供本地Ping远程主机功能,包括支持IP地址、域名

本教程将演示1.0.2版本更新功能,以及实现的具体代码演示。

C# 实现Ping远程主机功能及代码演示

咱们先看一下正常的Ping的效果:

C# 实现Ping远程主机功能及代码演示

引用nuget包以后,只需要直接调用:

PingHelper.PingHost方法即可,第一个参数是IP地址或域名,第二个是超时时间,单位毫秒.

C# 实现Ping远程主机功能及代码演示

具体源码和实现说明:

/// <summary>
 /// 对指定主机执行 ping 操作并返回结果
 /// Ping the specified host and return the result
 /// </summary>
 /// <param name="host">需要被 ping 的主机或 IP 地址 The hostname or IP address to ping</param>
 /// <param name="timeout">ping 超时时间,以毫秒为单位 Timeout duration in milliseconds for ping</param>
 /// <returns>包含 ping 操作结果的 PingResultInfo 对象 A PingResultInfo object containing the result of the ping operation</returns>
 public static PingResultInfo PingHost(string host, int timeout)
 {
     try
     {
         // 解析域名获取 IP 地址
         // Resolve the domain name to get IP address
         IPAddress[] addresses = Dns.GetHostAddresses(host);
         if (addresses.Length == 0)
         {
             return new PingResultInfo
             {
                 Host = null,
                 Result = false,
                 Message = "No IP addresses resolved"
             };
         }
         using (Ping pingSender = new Ping())
         {
             PingOptions options = new PingOptions
             {
                 // 设置防止数据包被分片
                 DontFragment = true // Prevent packet fragmentation
             };
             // 数据缓冲区,包含要发送的字符串数据
             // Data buffer containing the string data to send
             string data = "ABCDEFGHIJKLMNOPQRSTUVWXYZ012345";
             byte[] buffer = Encoding.ASCII.GetBytes(data);
             // 使用第一个解析的 IP 地址进行 ping 操作
             // Use the first resolved IP address to perform the ping
             IPAddress targetIP = addresses[0];
             // 发送 ping 请求并获取回复
             // Send the ping request and obtain the reply
             PingReply reply = pingSender.Send(targetIP, timeout, buffer, options);
             // 创建并返回包含 ping 操作结果的 PingResultInfo 对象
             // Create and return a PingResultInfo object containing the ping result
             return new PingResultInfo
             {
                 Host = targetIP,
                 Result = reply.Status == IPStatus.Success,
                 Message = reply.Status == IPStatus.Success
                     ? $"Success: RoundTrip time={reply.RoundtripTime}ms; TTL={reply.Options.Ttl}; Data size={buffer.Length} bytes"
                     : $"Failed: Status={reply.Status}",
                 RoundTripTime = reply.Status == IPStatus.Success ? reply.RoundtripTime : -1,
                 Ttl = reply.Status == IPStatus.Success ? reply.Options.Ttl : -1,
                 DataSize = buffer.Length
             };
         }
     }
     catch (Exception e)
     {
         // 捕获异常并返回错误信息
         // Catch any exceptions and return error information
         return new PingResultInfo
         {
             Host = null,
             Result = false,
             Message = $"错误: {e.Message} Error: {e.Message}"
         };
     }
 }

我们也可以直接PING域名,例如 www.baidu.com

并且可以自动解析出来该域名的IP地址(Host)

C# 实现Ping远程主机功能及代码演示

如果Ping一个不存在的IP,或者连不上的,例如192.168.0.1

显示超时,并且Result状态为false,代表没连上。状态值为TimeOut,说明超时了。

C# 实现Ping远程主机功能及代码演示

应用场景:

该功能可以应用于需要不定时验证某个远程主机或设备或其他机器是否还在线的情况。并根据状态来展示具体主机是在线还是掉线。

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。