|
|
|
|
|
|
(The routing table actually store IP network addresses.)
Explanation:
|
netstat -r (r = routing table) Destination Gateway Genmask Flags MSS Window irtt Iface 170.140.150.0 * 255.255.254.0 U 0 0 0 eth0 link-local * 255.255.0.0 U 0 0 0 eth0 default defaultrouter.m 0.0.0.0 UG 0 0 0 eth0 |
You can view the routing table in numerical format with:
netstat -r -n Destination Gateway Genmask Flags MSS Window irtt Iface 170.140.150.0 0.0.0.0 255.255.254.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 170.140.150.254 0.0.0.0 UG 0 0 0 eth0 |
Explanation:
|