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版本更新功能,以及实现的具体代码演示。
咱们先看一下正常的ping的效果:
引用nuget包以后,只需要直接调用:
pinghelper.pinghost方法即可,第一个参数是ip地址或域名,第二个是超时时间,单位毫秒.
具体源码和实现说明:
/// <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)
如果ping一个不存在的ip,或者连不上的,例如192.168.0.1
显示超时,并且result状态为false,代表没连上。状态值为timeout,说明超时了。
应用场景:
该功能可以应用于需要不定时验证某个远程主机或设备或其他机器是否还在线的情况。并根据状态来展示具体主机是在线还是掉线。
到此这篇关于c# 实现ping远程主机功能的文章就介绍到这了,更多相关c# ping远程主机内容请搜索代码网以前的文章或继续浏览下面的相关文章希望大家以后多多支持代码网!
发表评论