linux - ip route和route操作路由
前言
在 Linux 中,我们经常会涉及到修改主机的路由列表,以前都是使用 route 这个命令,但是在 CentOS7 中默认已经不安装 net-tools 这个包,所以默认是没有 route 这个命令的,可以使用 ip route 代替。
ip route
ip 这个命令是在 iproute2 包里面,在 CentOS7 中默认就安装了。
列出路由
ip route list
ip route show
ip route
查看指定网段的路由
ip route list 192.168.2.0/24
添加路由
ip route add 192.168.2.0/24 via 192.168.1.1
追加路由
ip route append 192.168.2.0/24 via 192.168.1.12 #追加一个指定网络的路由,为了平滑切换网关使用
修改路由
ip route change 192.168.2.0/24 via 192.168.1.11
ip route replace 192.168.2.0/24 via 192.168.1.111
删除路由
ip route del 192.168.2.0/24 via 192.168.1.1
清空指定网络的路由
ip route flush 192.168.2.0/24 #这个是清理所有192.168.2.0/24相关的所有路由,有时候设置错网关存在多条记录,就需要一次性清空相关路由再进行添加
添加默认路由
ip route add default via 192.168.1.1
指定路由 metirc
ip route add 192.168.2.0/24 via 192.168.1.15 metric 10
route 命令
为了兼容 CentOS7 也提供了 net-tools 包,只是没有默认安装而已。可以直接使用 yum 进行安装。
yum -y install net-tools
查看路由
route -n
添加路由
route add -net 192.168.2.0/24 gw 192.168.1.1
route add -host 192.168.2.100/32 gw 192.168.1.1
删除路由
route del -net 192.168.2.0/24 gw 192.168.1.1
route del -host 192.168.2.100/32 gw 192.168.1.1
添加默认路由
route add default gw 192.168.1.1
- 原文作者:Linux运维菜
- 原文链接:https://www.opcai.top/post/2018/2018-12/ip_route/
- 版权声明:本作品采用进行许可,非商业转载请注明出处(作者,原文链接),商业转载请联系作者获得授权。