ECMP Load Balancing in JUNOS

Posted by SpacemanSpiff on Server Fault See other posts from Server Fault or by SpacemanSpiff
Published on 2010-12-06T17:41:58Z Indexed on 2013/11/11 10:01 UTC
Read the original article Hit count: 398

Filed under:
|

I'm trying to figure out how to use ECMP load balancing in JUNOS. I know this isn't the best way to load balance, but its quick and dirty and gets done what I need to. In ScreenOS this was pretty easy.

Device: SRX220 JunOS: 10.3R2.11

Here's what I've got so far:

routing-options {
    static {
        route 0.0.0.0/0 {
            next-hop [ 1.1.1.1 1.1.1.2 ];
            metric 10;
        }
    }
    maximum-paths 2;

Will that do it?

Tom

© Server Fault or respective owner

Related posts about load-balancing

Related posts about juniper