如何在linux中添加永久ecmp路由

如何在linux中添加永久ecmp路由

我正在 Linux 中创建以下 ECMP 路由 -

[root@compute2 ~]# ip route add 30.1.1.1/32 nexthop via 10.1.1.10 weight 1 nexthop via 20.1.1.10 weight 1
[root@compute2 vagrant]# ip route show 30.1.1.1
30.1.1.1 
        nexthop via 10.1.1.10 dev eth2 weight 1 
        nexthop via 20.1.1.10 dev eth3 weight 1 

如何使其持久化,以便在重新启动后进行配置?

相关内容