ノードAからノードBへの接続の遅延をテストする必要があります..しかし、ノードAにアクセスできないため..ノードCを使用してノードBをトレースする必要があります.したがって、trace routeコマンドを強制する必要がありますBに到達する前にAを通過する..これはどのように行うことができますか? 同じ目的が達成できる場合、tracert 以外の他のコマンドが受け入れられます。
7574 次
1 に答える
1
フラグ -j を次のように使用できます。
tracert -j node_A node_B node_C
C:\Users\User>tracert /?
使用法: tracert [-d] [-h maximum_hops] [-j host-list] [-w timeout] [-R] [-S srcaddr] [-4] [-6] target_name
オプション:
-d Do not resolve addresses to hostnames.
-h maximum_hops Maximum number of hops to search for target.
**-j host-list Loose source route along host-list (IPv4-only).**
-w timeout Wait timeout milliseconds for each reply.
-R Trace round-trip path (IPv6-only).
-S srcaddr Source address to use (IPv6-only).
-4 Force using IPv4.
-6 Force using IPv6.
于 2014-03-02T15:46:59.933 に答える