cisco环境下配置
ip sla 1
icmp-echo 202.101.1.1 source-ip 202.101.1.2 #设置监测ICMP echo 监测路由条目的下一跳IP 数据包离开路由器的出接口IP地址
frequency 5 #设置频率为5(5s一个包)
timeout 100 #设置超时时间为100ms
ip sla schedule 1 life forever start-time now #设置SLA的启动时间为马上,有效期为永久
查看ip sla状态
**show ip sla summary**
IPSLAs Latest Operation Summary
Codes: * active, ^ inactive, ~ pending
ID Type Destination Stats Return Last
(ms) Code Run
-----------------------------------------------------------------------
*1 icmp-echo 202.101.1.2 RTT=1 OK 0 seconds ago
-----------------------------------------------------------------------
**show ip sla statistics **
IPSLAs Latest Operation Statistics
IPSLA operation id: 1
Latest RTT: 103 milliseconds
Latest operation start time: 12:24:32 UTC Mon Jun 24 2019
Latest operation return code: OK
Number of successes: 176
Number of failures: 0
Operation time to live: Forever
配合静态路由启用IP SLA
(config)#track 10 rtr 10 reachability #和track条目和相应条目关联,track关心可达性
(config)#ip route 192.168.2.0 255.255.255.0 192.168.1.1 20 #设置[静态路由]AD值为20
(config)#ip route 192.168.2.0 255.255.255.0 192.168.1.5 track 10 #设置静态路由并使用条目10监测
应用于触发式更新动态路由协议
可以在BGP两点之间配置ip sla,监测间隔最快为1秒,如果觉得慢可以使用BFD来实现秒切功能
网友评论