在windows 下面是tracert
在linux 下面是traceroute
用来跟踪一个分组从源点到终点的路径
命令形式
traceroute
tracert
原理
使用UDP(unix和cisco router)
使用ICMP(Microsoft )
在ubuntu 下面直接跟IP地址,都只会显示*。要加上 -I 选项用ICMP。
hua@hua-desktop:~$ sudo traceroute hao123.com
traceroute to hao123.com (220.181.107.31), 30 hops max, 60 byte packets
1 * * *
2 * * *
3 * * *
4 * * *
5 * * *
6 *^C
hua@hua-desktop:~$ sudo traceroute -I hao123.com
traceroute to hao123.com (61.135.163.90), 30 hops max, 60 byte packets
1 61.135.163.90 (61.135.163.90) 31.233 ms 32.635 ms *
hua@hua-desktop:~$ sudo traceroute -I linux.ubuntu.com.cn
traceroute to linux.ubuntu.com.cn (173.212.231.48), 30 hops max, 60 byte packets
1 173-212-231-48.hostnoc.net (173.212.231.48) 332.634 ms 332.732 ms 333.449 ms
hua@hua-desktop:~$
阅读(1006) | 评论(0) | 转发(0) |