Если я правильно понял вопрос, то можно сделать вот так:
routing-options {
static {
route 0.0.0.0/0 {
next-hop 5.5.5.5;
qualified-next-hop 22.22.22.22 {
preference 100;
}
}
А автоматическое переключение обеспечить RPM-ом:
services {
rpm {
probe test {
test int-ping {
target address 5.5.5.5;
probe-count 4;
probe-interval 10;
test-interval 10;
source-address 1.1.1.1;
thresholds {
successive-loss 4;
total-loss 4;
rtt 2000000;
}
}
}
}
ip-monitoring {
policy WAN {
match {
rpm-probe test;
}
then {
preferred-route {
route 0.0.0.0/0 {
next-hop 22.22.22.22;
}
}
}
}