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.25 5 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.6 9.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 eth0 172.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]#