如何保存ip规则和ip路由配置

时间:2015-10-19 09:04:54

标签: linux linux-device-driver

问题是: 我配置了以下策略路由:

ip route通过10.0.2.15 dev eth0 table 10添加192.168.1.0/24

ip route add default from 10.0.2.15 dev eth0 table 10

ip rule add 10.0.2.15 table 10

这些配置是临时的,一旦网络重启或重启,我配置的策略路由就会丢失,有什么办法可以解决这个问题吗?

1 个答案:

答案 0 :(得分:1)

如果不存在则创建文件

的/ etc / SYSCONFIG /网络的脚本/路由的eth0

添加以下内容

192.168.1.0/24 via 10.0.2.15 dev eth0

默认通过10.0.2.15 dev eth0

默认路由可以添加到/ etc / sysconfig / network-scripts / ifcfg-eth0

GATEWAY = 10.0.2.15

我不清楚第三条规则