我是网络白痴(三):添加永久路由
本人是网络白痴一个,写此文纯属个人备忘, 无任何指导意义。欢迎指正。
本文中所有的命令都是基于CentOS 7
环境测试。
上次 用route add
添加了路由,结果重启服务器后,路由没了。
然后google到了另一个命令:ip
。
ip
命令整合了ifconfig
和route
的功能,更牛批。
用ip route
查看路由。
1 | $ ip route |
用ip route add
添加静态路由。
1 | $ ip route add 10.28.0.0/16 via 10.28.88.254 |
那么如何永久生效呢?
可以通过编辑/etc/sysconfig/network-scripts/route-eno2文件,为eno2添加其他静态路由,如下所示
1 | $ cat /etc/sysconfig/network-scripts/route-eno2 |
Reference
- https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/5/html/deployment_guide/s1-networkscripts-static-routes
- https://linoxide.com/how-tos/howto-permanently-add-static-route-in-linux/
- http://linux.vbird.org/linux_server/0140networkcommand.php#ip_cmd
- https://www.cyberciti.biz/faq/linux-route-add/