Golang は ping が正常に実行できるかどうかをテストします

リリース: 2020-01-13 15:27:37
オリジナル
6472 人が閲覧しました

Golang は ping が正常に実行できるかどうかをテストします

このプロジェクトでは、どの IP が利用可能な IP であるかを知る必要があるため、ICMP (Internet Control Message Protocol) の使用を考えました。オープン ソース ライブラリ –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
}
ログイン後にコピー

これは、返されたパケットの数、またはパケットドロップ率を判断します。同時に、ライブラリは、次のような詳細な 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 中国語 Web サイトを参照してくださいgolang チュートリアルコラム。

以上がGolang は ping が正常に実行できるかどうかをテストしますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!