码迷,mamicode.com
首页 > 其他好文 > 详细

路由表构成简介(Destination/Gateway/Genmask/Iface)

时间:2018-12-29 15:15:06      阅读:412      评论:0      收藏:0      [点我收藏+]

标签:合并   http   路由表   text   The   接口   code   htm   flags   

路由表构成简介(Destination/Gateway/Genmask/Iface)


linux 路由表

路由表样例

[root@centos6 ~]#route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
192.168.27.0    0.0.0.0         255.255.255.0   U     0      0        0 eth0
169.254.0.0     0.0.0.0         255.255.0.0     U     1002   0        0 eth0
0.0.0.0         192.168.27.2    0.0.0.0         UG    0      0        0 eth0

路由表主要字段说明

Destination: 目的地址,可以是主机地址、网络地址,常用的是网络地址
Gateway: 网关地址,所有未知地址都会找网关,有网关统一转发,只有边缘网络才会配置网关,并且直连网络不需要配置网关
Genmask:目的地址的子网掩码
Iface: 接口,去往目的地址的网络路径的出口(也就是从那个出口可以去往目的地址)

路由器 R1 路由表

技术分享图片
网络ID 子网掩码 接口 网关
10.0.0.0 255.0.0.0 1 -
172.16.0.0 255.255.0.0 2 -
192.168.0.0 255.255.255.0 2 172.16.0.2
192.168.100.0 255.255.255.0 2 172.16.0.2
0.0.0.0 0.0.0.0 2 172.16.0.2

路由器 R2 路由表

技术分享图片

连接互联网的路由信息省略
只有边界路由才有 默认路由 0.0.0.0/0.0.0.0 gateway_ip
R2 不是边界路由,所以没有默认路由
只有 R1 R3 才有默认路由,可以进行路由合并

网络ID 子网掩码 接口 网关
10.0.0.0 255.0.0.0 3 172.16.0.1
172.16.0.0 255.255.0.0 3 -
192.168.0.0 255.255.255.0 4 -
192.168.100.0 255.255.255.0 4 192.168.0.2

路由器 R3 路由表

技术分享图片
网络ID 子网掩码 接口 网关
10.0.0.0 255.0.0.0 5 192.168.0.1
172.16.0.0 255.255.0.0 5 192.168.0.1
192.168.0.0 255.255.255.0 5 -
192.168.100.0 255.255.255.0 6 -
0.0.0.0 0.0.0.0 5 192.168.0.1

本文链接:https://www.cnblogs.com/shichangming/p/10195389.html

路由表构成简介(Destination/Gateway/Genmask/Iface)

标签:合并   http   路由表   text   The   接口   code   htm   flags   

原文地址:https://www.cnblogs.com/shichangming/p/10195389.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!