千家信息网

Juniper SRX(JunOS)通过RPM做备份路由,类似于Cisco IP SLA

发表于:2024-11-24 作者:千家信息网编辑
千家信息网最后更新 2024年11月24日,{primary:node0}[edit services]root@SRX# showrpm {probe Probe-2nd-Line {test 2nd-ISP {target address
千家信息网最后更新 2024年11月24日Juniper SRX(JunOS)通过RPM做备份路由,类似于Cisco IP SLA


{primary:node0}[edit services]

root@SRX# show

rpm {

probe Probe-2nd-Line {

test 2nd-ISP {

target address 11.22.33.44; //探测的目标地址,探测类型默认是 icmp-ping

probe-count 6; //一共探测多少次,6次

probe-interval 10; //每次的探测时间间隔是10秒

test-interval 15; //6次一个轮回,每个轮回间隔多少秒,15秒。 意味着没10秒发一次ping,发6次,6次之后,等15秒在发新的一轮探测。

history-size 1024; //探测历史数据保存多少条

thresholds {

successive-loss 6; //连续丢多少个包。

total-loss 6; //总计丢多少个包。 and的关系。

}

destination-interface reth3.0; //从哪个接口发出去探测报文

hardware-timestamp;

next-hop 124.193.66.129; //探测报文下一跳地址,结合出接口,就是指定从哪条物理线路进行探测

}

}

}

ip-monitoring {

policy Probe-2nd-Line-policy {

match {

rpm-probe Probe-2nd-Line;

}

then {

preferred-route {

route 0.0.0.0/0 {

next-hop 55.66.77.88; //修改default 路由的下一跳

}

}

}

}

}


0