Linux下路由信息探测traceroute
Debian/Ubuntu:
sudo apt update
sudo apt install traceroute
CentOS/RHEL:
sudo yum install traceroute
使用 traceroute
traceroute google.com
指定端口: 默认使用 UDP 数据包,可以使用 -p 选项指定端口:
traceroute -p 80 google.com
使用 ICMP: 使用 -I 选项发送 ICMP 回显请求(类似于 ping):
traceroute -I google.com
限制跳数: 使用 -m 选项限制最大跳数:
traceroute -m 20 google.com