每当重新启动主LAN网络接口/重新启动系统时,我都需要维护一些自定义路由命令。
我一直在阅读如何在CentOS 7中执行此操作,以及相应的文档,您需要使用route-[interface_name]
文件/etc/sysconfig/network-scripts
。但是,格式与使用原始路由命令略有不同:
ip -f inet rule add fwmark 1 lookup 100
ip -f inet route add local default dev eno1 table 100
ip -f inet6 rule add fwmark 1 lookup 100
ip -f inet6 route add local default dev eno1 table 100
在与CentOS 7一起使用的路由脚本中编写这些路由命令的正确方法是什么,因此路由信息保存在路由表中?