tcping 不起作用,但 DNS:找不到主机错误

tcping 不起作用,但 DNS:找不到主机错误

我需要测量各种情况下的 Windows 远程桌面延迟,例如通过 VPN、通过 SSH 隧道、直接连接等;为此,我发现一个名为 的工具tcping非常适合。

所以我下载了它https://elifulkerson.com/projects/tcping.php并测试它是否有效:

ssh -p 50022 -L 13389:localhost:3389 [email protected]
# so now I can RDP to the machine specifying `localhost:13389` on mstsc.exe
$ tcping.exe localhost:13389

DNS: Could not find host - localhost:13389, aborting

但如您所见,它会出现错误。我该如何解决这个问题?

答案1

我怎么解决这个问题?

tcping.exe localhost:13389

你的语法是错误的:

tcping [-tdsvf46] [-i interval] [-n times] [-w interval] [-b n] [-r times][-j depth] [--tee filename] [-f] destination [port]

来源:tcping/usage.txt at master · jtilander/tcping · GitHub

尝试:

tcping localhost 13389

相关内容