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
2011/02/05
7:27 UTC
Read the original article
Hit count: 606
load-balancing
|juniper
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