Windows 7 pingで簡単なtracerouteを行う方法 [複製]


0

この質問にはすでに答えがあります:

Macでは、これを行うことができます:

> ping -DRo computerhope.com

https://apple.stackexchange.com/questions/125068/is-there-an-equivalent-utility-to-linuxs-tracepath-for-os-x

そして、基本的に単純なトレースパスを実行します。Windows 7でも同じことができますか?cygwinではどうですか?


:私は、私は答えたと思うsuperuser.com/questions/915657/...
サシャTレッド

tracert /?Windowsコマンドプロンプトで
Moab

コマンドを表示するだけでなく、出力と関連する情報も表示する必要があります。WindowユーザーがOS-Xユーティリティの出力を認識していることを期待していますか?
matzeri

回答:


1

Windows 7でも同じことができますか?

pathpingを使用できます:

PathpingはTCP / IPベースのユーティリティ(コマンドラインツール)であり、送信元アドレスと宛先アドレス間の中間ホップでのネットワーク遅延とパケット損失に関する有用な情報を提供します。

ICMPを介して「エコー要求」パケットを送信し、結果を分析することでこれを行います。

そして

ルートをトレースし、パス内の各ルーターとリンクのネットワーク遅延とパケット損失を提供します。PINGとTRACERTの機能を組み合わせます。

ソースPathPing-IPトレース-Windows CMD-SS64.com

出力例:

Tracing route to eu.newerth.com [87.117.228.107]
over a maximum of 30 hops:

[snip]

  3  hlo-lc0001-cr102-ae10-218.core.as9143.net [213.51.166.82]
  4  asd-tr0610-cr101-ae6-0.core.as9143.net [213.51.158.82]
  5  ae5-125.ams29.ip4.gtt.net [77.67.64.65]
  6  xe-7-2-1.lon25.ip4.gtt.net [141.136.107.38]
  7  iomart-gw.ip4.gtt.net [46.33.94.2]
  8  610.net2.north.dc5.as20860.net [62.233.127.182]
  9  87.117.212.42
 10  eu.newerth.com [87.117.228.107]

Computing statistics for 250 seconds...
            Source to Here   This Node/Link
Hop  RTT    Lost/Sent = Pct  Lost/Sent = Pct  Address

[snip]

                                0/ 100 =  0%   |
  3   46ms     0/ 100 =  0%     0/ 100 =  0%  hlo-lc0001-cr102-ae10-218.core.as9143.net [213.51.166.82]
                                0/ 100 =  0%   |
  4   53ms     0/ 100 =  0%     0/ 100 =  0%  asd-tr0610-cr101-ae6-0.core.as9143.net [213.51.158.82]
                                0/ 100 =  0%   |
  5   39ms     0/ 100 =  0%     0/ 100 =  0%  ae5-125.ams29.ip4.gtt.net [77.67.64.65]
                                0/ 100 =  0%   |
  6   60ms     0/ 100 =  0%     0/ 100 =  0%  xe-7-2-1.lon25.ip4.gtt.net [141.136.107.38]
                                0/ 100 =  0%   |
  7   73ms     0/ 100 =  0%     0/ 100 =  0%  iomart-gw.ip4.gtt.net [46.33.94.2]
                                0/ 100 =  0%   |
  8   56ms     1/ 100 =  1%     1/ 100 =  1%  610.net2.north.dc5.as20860.net [62.233.127.182]
                                0/ 100 =  0%   |
  9   56ms     1/ 100 =  1%     1/ 100 =  1%  87.117.212.42
                                0/ 100 =  0%   |
 10   50ms     0/ 100 =  0%     0/ 100 =  0%  eu.newerth.com [87.117.228.107]

Trace complete.

詳細については、私の回答https://superuser.com/a/814919/337631を参照してください

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.