route 路由含义
Posted Li-Yongjun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了route 路由含义相关的知识,希望对你有一定的参考价值。
Gateway 为 0.0.0.0
# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.31.0 0.0.0.0 255.255.255.0 U 0 0 0 wlan0
表示不需要路由,目标地址和自己同属一个二层网络,通过 ARP 获取目标的 MAC 地址后通信。不需要网关转发,不需要路由。
有此路由,可以 ping 同局域网主机,ping 不通外网
# ping 192.168.31.1
PING 192.168.31.1 (192.168.31.1): 56 data bytes
64 bytes from 192.168.31.1: seq=0 ttl=64 time=7.229 ms
64 bytes from 192.168.31.1: seq=1 ttl=64 time=2.026 ms
#
# ping www.baidu.com
PING www.baidu.com (180.101.49.12): 56 data bytes
ping: sendto: Network is unreachable
# ping www.baidu.com
PING www.baidu.com (180.101.49.11): 56 data bytes
ping: sendto: Network is unreachable
Destination 和 Genmask 均为 0.0.0.0
# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.31.1 0.0.0.0 UG 0 0 0 wlan0
192.168.31.0 0.0.0.0 255.255.255.0 U 0 0 0 wlan0
表示任意目标 IP 都走 192.168.31.1。
这种记录的网关为默认网关,默认网关只有一个,同一局域网之间数据通信不需要下一跳。
通用
# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.31.1 0.0.0.0 UG 0 0 0 wlan0
192.168.31.0 0.0.0.0 255.255.255.0 U 0 0 0 wlan0
目标 IP 地址与 Genmask 做与运算,结果和 Destination 比较,相等则表示匹配这条路由,得到下一条地址(Gateway),如果 Gateway 为 0.0.0.0,表示目标和当前网卡在同一局域网,不需要下一跳,不需要转发,直接通信。
以上是关于route 路由含义的主要内容,如果未能解决你的问题,请参考以下文章