分类:
2010-01-27 13:26:15
使用命令
route 命令 获取路由表
如下
>route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
10.70.0.0 * 255.255.0.0 U 0 0 0 eth0
169.254.0.0 * 255.255.0.0 U 0 0 0 eth0
default 10.70.10.252 0.0.0.0 UG 0 0 0 eth0
>route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
10.70.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth0
169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth0
0.0.0.0 10.70.10.252 0.0.0.0 UG 0 0 0 eth0
其中使用-n参数,返回ip地址
Destination 和Genmask都为0.0.0.0的一项是默认网关
另外,使用tracert -r命令也可得到相同的结果