linux 添加路由
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 添加路由相关的知识,希望对你有一定的参考价值。
查看路由 route -n
2.添加路由
route add -net 192.168.30.0/24 dev eth0 基于网卡添加
route add -net 192.168.40.0/24 gw 192.168.50.1 基于网关添加
route add -host 192.168.40.2 gw 192.168.50.1 基于主机添加
3.删除路由
route del -net 192.168.30.0/24 dev eth0
route del 192.168.40.2 gw 192.168.50.1
本文出自 “jurchens” 博客,请务必保留此出处http://6656395.blog.51cto.com/6646395/1871444
以上是关于linux 添加路由的主要内容,如果未能解决你的问题,请参考以下文章