详解CentOS中的route命令
介绍
Linux系统中的route命令能够⽤于IP路由表的显⽰和操作。它的主要作⽤是创建⼀个静态路由让指定⼀个主机或者⼀个⽹络通过⼀个⽹络接⼝,如eth0。当使⽤”add”或者”del”参数时,路由表被修改,如果没有参数,则显⽰路由表当前的内容。在⼀个⽹络中,需要⼀个路由器来转发不同⼴播域之间的数据,或是转发lan和internet之间的数据。有时我们需要设定这个路由器作为linux系统的默认路由,那么就可以通过route命令来操作。甚⾄我们也可以⽤我们的linux系统来充当路由器。
要注意的是:直接在命令⾏下执⾏route命令来添加路由,不会永久保存,当⽹卡重启或者机器重启之后,该路由就失效了;可以在/etc/rc.local中添加route命令来保证该路由设置永久有效。当然如果加上了-p参数的话那就会永久的⽣效了。
命令格式
route [-f] [-p] [Command [Destination] [mask Netmask] [Gateway][metric Metric]] [if Interface]]
命令参数
-c 显⽰更多信息
-n 不解析名字
-v 显⽰详细的处理信息
-F 显⽰发送信息
-C 显⽰路由缓存
-f 清除所有⽹关⼊⼝的路由表。
-p 与add 命令⼀起使⽤时使路由具有永久性。
add:添加⼀条新路由。
del:删除⼀条路由。
-net:⽬标地址是⼀个⽹络。
-host:⽬标地址是⼀个主机。
netmask:当添加⼀个⽹络路由时,需要使⽤⽹络掩码。
gw:路由数据包通过⽹关。注意,你指定的⽹关必须能够达到。
metric:设置路由跳数。
1、Command 指定您想运⾏的命令 (Add/Change/Delete/Print)。
2、Destination 指定该路由的⽹络⽬标。
3、mask Netmask 指定与⽹络⽬标相关的⽹络掩码(也被称作⼦⽹掩码)。
4、Gateway 指定⽹络⽬标定义的地址集和⼦⽹掩码可以到达的前进或下⼀跃点 IP 地址。
5、metric Metric 为路由指定⼀个整数成本值标(从 1 ⾄ 9999),当在路由表(与转发的数据包⽬标地址最匹配)的多个路由中进⾏选择时可以使⽤。
6、if Interface为可以访问⽬标的接⼝指定接⼝索引。若要获得⼀个接⼝列表和它们相应的接⼝索引,使⽤ route print 命令的显⽰功能。可以使⽤⼗进制或⼗六进
实例
1 显⽰路由信息
[root@localhost~]# route
Kernel IP routing table
Destination Gateway  Genmask  Flags Metric Ref Use Iface
169.254.0.0 *  255.255.0.0 U 0 0 0 eth0
default 192.168.40.1 0.0.0.0  UG 0 0 0 eth0
Flags标志说明
1. U Up表⽰此路由当前为启动状态
2. H Host,表⽰此⽹关为⼀主机
3. G Gateway,表⽰此⽹关为⼀路由器
4. R Reinstate Route,使⽤动态路由重新初始化的路由
5. D Dynamically,此路由是动态性地写⼊–》什么时候才会有动态的路由信息呢?
6. M Modified,此路由是由路由守护程序或导向器动态修改
2 添加⼀条指向某个⽹络的路由
[root@localhost~]# route add -net 10.0.0.0 netmask 255.255.255.0 dev eth0
这⾥是指定这条路由的出⼝在哪⾥。-net 10.0.0.0 netmask 255.255.255.0 为指定⽬标⽹络的参数,需要ip地址或地址范围、⼦⽹掩码⽤于确定⽹络范围。
[root@localhost~]# route
Kernel IP routing table
Destination Gateway  Genmask  Flags Metric Ref Use Iface
10.0.0.0 *  255.255.255.0 U 0 0 0 eth0
192.168.40.0 *  255.255.252.0 U 0 0 0 eth0
169.254.0.0 *  255.255.0.0 U 0 0 0 eth0
default 192.168.40.1 0.0.0.0  UG 0 0 0 eth0
route添加路由都是需要指定⽬标⽹络,及路由出⼝这两个参数。记住加上-p选项能永久添加。
3 添加到某⼀个ip的路由
[root@localhost~]# route add -host 192.168.40.1dev eth0
[root@localhost ~]# route
可以发现添加的是主机的话,默认是会帮我们添加⼀个全255的⼦⽹掩码,表⽰⼦⽹范围就只有⼀个⽽已,那就是这台主机啦。
Kernel IP routing table
Destination Gateway  Genmask  Flags Metric Ref Use Iface
192.168.40.1 *  255.255.255.255 UH 0 0 0 eth0
4 屏蔽某⼀路由
当我们不让系统到达某个⼦⽹范围或者某个主机是就可以⼿动的来进⾏屏蔽。
[root@localhost~]# route add -net 10.10.10.128 netmask 255.255.255.128 reject
前⾯部分是⼀样的,因为我们都是⼿动来添加⼀个路由嘛。只是在命令的最后不⼀样,我们指定的出⼝去⽽是reject(拒绝),也就是拒绝出⼝。达到屏蔽的效果。还有看下flags会显⽰⼀个!
[root@localhost~]# route
Kernel IP routing table
Destination Gateway  Genmask  Flags Metric Ref Use Iface
192.168.40.1 *  255.255.255.255 UH 0 0 0 eth0
10.10.10.128 -  255.255.255.128 ! 0 - 0 -
10.0.0.0 *  255.255.255.0 U 0 0 0 eth0
192.168.40.0 *  255.255.252.0 U 0 0 0 eth0
169.254.0.0 *  255.255.0.0 U 0 0 0 eth0
default 192.168.40.1 0.0.0.0  UG 0 0 0 eth0
5 删除路由
[root@localhost~]# route
Kernel IP routing table
Destination Gateway  Genmask  Flags Metric Ref Use Iface
192.168.40.1 *  255.255.255.255UH 0 0 0 eth0
10.10.10.128 -  255.255.255.128 ! 0 - 0 -
10.0.0.0 *  255.255.255.0 U 0 0 0 eth0
192.168.40.0 *  255.255.252.0 U 0 0 0 eth0
169.254.0.0 *  255.255.0.0 U 0 0 0 eth0
[root@localhost~]# route del -net 10.10.10.128netmask 255.255.255.128 reject
[root@localhost~]# route
Kernel IP routing table
Destination Gateway  Genmask  Flags Metric Ref Use Iface
192.168.40.1 *  255.255.255.255UH 0 0 0 eth0
10.0.0.0 *  255.255.255.0 U 0 0 0 eth0
192.168.40.0 *  255.255.252.0 U 0 0 0 eth0
169.254.0.0 *  255.255.0.0 U 0 0 0 eth0
default 192.168.40.1 0.0.0.0  UG 0 0 0 eth0
说明:删除路由时,最好是看着路由表上的照样打进去,这样⽐较不会删错的。
添加删除默认⽹关
[root@localhost ~]# route add default gw 192.168.40.2
[root@localhost~]# routeroute add命令实例
Kernel IP routing table
Destination Gateway  Genmask  Flags Metric Ref Use Iface
192.168.40.1 *  255.255.255.255UH 0 0 0 eth0
10.0.0.0 *  255.255.255.0 U 0 0 0 eth0
192.168.40.0 *  255.255.252.0 U 0 0 0 eth0
169.254.0.0 *  255.255.0.0 U 0 0 0 eth0
default  192.168.40.2 0.0.0.0  UG 0 0 0 eth0
default  192.168.40.1 0.0.0.0  UG 0 0 0 eth0
可以看到此处有两个默认⽹关,那到底路由会⾛哪个呢?
[root@localhost~]# route del default gw192.168.40.2
[root@localhost~]# route
Kernel IP routing table
Destination Gateway  Genmask  Flags Metric Ref Use Iface
192.168.40.1 *  255.255.255.255UH 0 0 0 eth0
10.0.0.0 *  255.255.255.0 U 0 0 0 eth0
192.168.40.0 *  255.255.252.0 U 0 0 0 eth0
169.254.0.0 *  255.255.0.0 U 0 0 0 eth0
default 192.168.40.1 0.0.0.0  UG 0 0 0 eth0
总结
以上就是这篇⽂章的全部内容了,希望本⽂的内容对⼤家的学习或者⼯作能有所帮助,如果有疑问⼤家可以留⾔交流。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。