Link to home
Start Free TrialLog in
Avatar of amigan_99
amigan_99Flag for United States of America

asked on

Cisco IP SLA - dialing in failure criteria

In the code section below you can see I have ip sla and tracking setup.  It works pretty well except it is a little too sensitive.  I only want ip sla 3 to fail if it can not reach the web site twice in a row.  How can I make ip sla only fail in the event of two http get fails in a row?  Thank-you.


track 113 rtr 3
 
ip sla 3
 http get http://www.routeviews.org
ip sla schedule 3 life forever start-time now
 
ip route 0.0.0.0 0.0.0.0 10.5.4.1 track 113
ip route 0.0.0.0 0.0.0.0 192.168.11.4 150

Open in new window

Avatar of donmanrobb
donmanrobb
Flag of Canada image

Try adjusting the frequency under
ip sla 3
http get http://www.routeviews.org
frequency (seconds)
Avatar of amigan_99

ASKER

Frequency I believe just says how often to run the test - not how many times it takes to be considered failed.  But thank-you.
ASKER CERTIFIED SOLUTION
Avatar of harbor235
harbor235
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Harbor - that's definitely on the right track.  I think the detail is in using "xofy" parameter.  But there are no examples of using xofy with http get ip sla or icmp echo ip sla.  Will need to do some experimenting unless you're got a thought of how to mix them?  Thanks in any case!
Thanks