栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Go语言

golang测试是否能ping通

Go语言 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

golang测试是否能ping通

在项目中,我们需要知道哪些IP是可用IP,这时候想到了用ICMP(Internet控制报文协议)。可以使用开源库–github.com/sparrc/go-ping来判断是否能ping通。

使用–github.com/sparrc/go-ping开源库判断是否能ping通的代码:

func ServerPing(target string) bool  {pinger, err := ping.NewPinger(target)if err != nil {panic(err)}pinger.Count = ICMPCOUNTpinger.Timeout = time.Duration(PINGTIME*time.Millisecond)pinger.SetPrivileged(true)pinger.Run()// blocks until finishedstats := pinger.Statistics()fmt.Println(stats)// 有回包,就是说明IP是可用的if stats.PacketsRecv >= 1 {return true}return false}

这里是通过回包数量来判断的,也可以通过掉包率来判断。同时,该库提供了Statistics结构体,包含了详细的ICMP信息,如下

type Statistics struct {// PacketsRecv is the number of packets received.PacketsRecv int// PacketsSent is the number of packets sent.PacketsSent int// PacketLoss is the percentage of packets lost.PacketLoss float64// IPAddr is the address of the host being pinged.IPAddr *net.IPAddr// Addr is the string address of the host being pinged.Addr string// Rtts is all of the round-trip times sent via this pinger.Rtts []time.Duration// MinRtt is the minimum round-trip time sent via this pinger.MinRtt time.Duration// MaxRtt is the maximum round-trip time sent via this pinger.MaxRtt time.Duration// AvgRtt is the average round-trip time sent via this pinger.AvgRtt time.Duration// StdDevRtt is the standard deviation of the round-trip times sent via// this pinger.StdDevRtt time.Duration}

更多golang知识请关注PHP中文网golang教程栏目。

以上就是golang测试是否能ping通的详细内容,更多请关注考高分网其它相关文章!

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/794092.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号