在这里解释TCP Traceroute结果?

我曾经可以通过SFTP连接到远程服务器来下载文件。 我们的本地服务器是Windows 2008 Enterprise ,远程服务器是Unix。 本地计算机和远程服务器在同一个networking/域下。 突然之间,我无法连接。

现在,请记住,这是一家跨国公司,在某个地方的某个人可能会添加一条规则,我们不知道这个规则。 我无法解决这个问题,但是当我创build票据时,我可以更具体地确定实际问题的位置。 我的目标是通过指定什么IP /服务器阻止我们访问sftp服务器来创build票据。

所以我在这里发布了这个问题,有人build议我使用tracetcp因为它可能会告诉我在tracert看到的实际块在12跳中的位置。 看到tracetcp的结果tracetcp ,我问他和telnet什么区别,因为除了用不同的措辞和tracetcp继续尝试之外,两者似乎都返回相同的结果。

所以这就是我所做的。

我ping服务器,没有丢包: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss)

我跑了一个tracert,这是结果:

 Tracing route to server-test.net.companyws.com [31.129.173.86] over a maximum of 30 hops: 1 <1 ms <1 ms <1 ms 205.166.78.128 2 <1 ms <1 ms <1 ms 157.88.229.249 3 28 ms 31 ms 28 ms 50.22.154.11 4 81 ms 79 ms 79 ms 63.5.170.209 5 * * * 55.122.96.123 6 * * * 156.213.48.174 7 * * * 197.98.12.60 8 * * * 82.64.244.32 9 98 ms 98 ms 98 ms 230.67.160.132 10 98 ms 100 ms 98 ms 154.134.127.203 11 102 ms 99 ms 102 ms 156.26.214.219 12 98 ms 98 ms 98 ms 31.129.173.86 Trace complete. 

我运行telnet,这是结果:

 telnet 31.129.173.86 22 Connecting To 31.129.173.86...Could not open connection to the host, on port 22: Connect failed 

最后,我运行了一个tracetcp,结果如下:

 tracetcp 31.129.173.86:22 Tracing route to 31.129.173.86 on port 22 Over a maximum of 30 hops. 1 * * * Request timed out. 2 * * * Request timed out. 3 * * * Request timed out. 4 * * * Request timed out. 5 * * * Request timed out. 6 * * * Request timed out. 

至less在我的未经训练的眼睛, tracetcptelnet返回相同的结果:我无法连接。

我错过了什么吗? tracetcp如何帮助我?