這篇文章將為大家詳細講解有關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 = 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 }
這里是通過回包數量來判斷的,也可以通過掉包率來判斷。同時,該庫提供了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通就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
文章名稱:golang中怎么測試是否能ping通-創新互聯
URL鏈接:http://vcdvsql.cn/article40/dsohho.html
成都網站建設公司_創新互聯,為您提供服務器托管、網站設計公司、搜索引擎優化、標簽優化、定制網站、面包屑導航
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯