ECMP Load Balancing in JUNOS
- by SpacemanSpiff
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