netstat -nr命令会显示路由表的内容。网关为0.0.0.0的网络通常是直连到网络设备上的。因为到自己的直连设备上是不需要网关的,所以0.0.0.0的网关地址是正常的。目的地址是0.0.0.0的路由是你的缺省网关。
在这个例子里,有两个网关,缺省的并且是到255.255.255.255通常是
DHCP服务器添加的。在这个例子里bigbogy服务器也是一个DHCP服
务器。
[root@bigboy tmp]# netstat -nrKernel IP routing tableDestination
Gateway Genmask Flags MSS Window irtt Iface255.255.255.255 0.0.0.0 255.255.255.255 UH 40 0 0 wlan0192.168.1.0 0.0.0.0 255.255.255.0 U 40 0 0 wlan0127.0.0.0 0.0.0.0 255.0.0.0 U 40 0 0 lo0.0.0.0
192.168.1.1 0.0.0.0 UG 40 0 0 wlan0[root@bigboy tmp]# 在这个例子里,有多个网关负责把数据从不同网络设备上传输到不同的目的地。[root@bigboy tmp]# netstat -nrKernel IP routing table Destination Gateway Genmask Flags MSS Window irtt Iface172.16.68.64 172.16.69.193 255.255.255.224 UG 40 0 0 eth1172.16.11.96 172.16.69.193 255.255.255.224 UG 40 0 0 eth1172.16.68.32 172.16.69.193 255.255.255.224 UG 40 0 0 eth1172.16.67.0 172.16.67.135 255.255.255.224 UG 40 0 0 eth0172.16.69.192 0.0.0.0 255.255.255.192 U 40 0 0 eth1172.16.67.128 0.0.0.0 255.255.255.128 U 40 0 0 eth0172.160.0 172.16.67.135 255.255.0.0 UG 40 0 0 eth0172.16.0.0 172.16.67.131 255.240.0.0 UG 40 0 0 eth0127.0.0.0 0.0.0.0 255.0.0.0 U 40 0 0 lo0.0.0.0 172.16.69.193 0.0.0.0 UG 40 0 0 eth1[root@bigboy tmp]#