首页 > 代码库 > JUNOS下的浮动路由

JUNOS下的浮动路由

juniper下的JUNOS浮动路由写法

routing-options {
    static {

        route 172.26.11.0/24 {
            qualified-next-hop 192.168.18.34 {
                metric 5;
            }
            qualified-next-hop 192.168.18.30 {
                metric 10;
            }
        }

    }

}

本文出自 “天才没有那1%是万万不行的” 博客,请务必保留此出处http://xushen.blog.51cto.com/1673219/1543377