pepoとネットワークを語ろう

40年前からこれまでとこれからのネットワークを語る

tcptracerouteを使う

2008-10-04 13:36:05 | Linux
近頃UDPのICMPを使うtracerouteが使えない内部ネットワークが増えている。そこでTCPでトレースルートが出来る、tcptracerouteを使ってみる
[root@~]# traceroute -n yahoo.co.jp
traceroute to yahoo.co.jp (124.83.139.192), 30 hops max, 40 byte packets
1 192.168.0.1 2.646 ms 3.034 ms 4.938 ms

・中略 OK

12 124.83.128.50 26.201 ms 29.107 ms 33.459 ms
13 * * * 途中で到達不能となる
14 * * *

tcptracerouteを使えば最終までOK
[root@~]# tcptraceroute -n yahoo.co.jp
Selected device eth0, address 192.168.2.15, port 56945 for outgoing packets
Tracing the path to yahoo.co.jp (124.83.139.192) on TCP port 80 (http), 30 hops max
1 192.168.0.1 1.902 ms 1.482 ms 1.429 ms

・中略 OK

12 124.83.139.192 [open] 11.333 ms 14.869 ms 14.808 ms
[root@~]#