這篇文章將為大家詳細講解有關golang中怎么測試是否能ping通,文章內(nèi)容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
創(chuàng)新互聯(lián)專注于金安網(wǎng)站建設服務及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供金安營銷型網(wǎng)站建設,金安網(wǎng)站制作、金安網(wǎng)頁設計、金安網(wǎng)站官網(wǎng)定制、微信小程序開發(fā)服務,打造金安網(wǎng)絡公司原創(chuàng)品牌,更為您提供金安網(wǎng)站排名全網(wǎng)營銷落地服務。在項目中,我們需要知道哪些IP是可用IP,這時候想到了用ICMP(Internet控制報文協(xié)議)??梢允褂瞄_源庫–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 = ICMPCOUNT pinger.Timeout = time.Duration(PINGTIME*time.Millisecond) pinger.SetPrivileged(true) pinger.Run()// blocks until finished stats := pinger.Statistics() fmt.Println(stats) // 有回包,就是說明IP是可用的 if stats.PacketsRecv >= 1 { return true } return false }
這里是通過回包數(shù)量來判斷的,也可以通過掉包率來判斷。同時,該庫提供了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中怎么測試是否能ping通就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。