我需要测试从节点 A 到节点 B 的连接延迟 .. 但是由于我无权访问节点 A .. 我将不得不使用节点 C 跟踪节点 B。所以我需要强制执行 trace route 命令在到达 B 之前经过 A .. 这怎么办?如果可以实现相同的目的,将接受除 tracert 之外的任何其他命令。
问问题
7574 次
1 回答
1
您可以使用标志 -j 如下:
tracert -j 节点_A 节点_B 节点_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 回答