cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1360
Views
0
Helpful
2
Replies

IP SLA and multiple SVI tracking

Hi, 

I was wondering if you have an example of how can I implement just one IP SLA 

 

For instance, 

 

ip sla 15
icmp-echo 208.67.222.222 source-ip X.X.X.X. (ip address of one SVI)

icmp-echo 208.67.222.222 source-ip X.X.X.X. (ip address of one the second SVI)

 

how can I add more? is there any way?

 

the reason is that I dont want to create multiple IP SLA and tracking for the same purpose, 

 

I just want to use one IP SLA for the same condition

 

is it possible, can you provide me an example easy to follow up ?

 

thanks so much

1 Accepted Solution

Accepted Solutions

Joe Clarke
Cisco Employee
Cisco Employee

No, what you want to do is not possible.  You'll need to create one IP SLA collector for each different type configuration.  But you can combine them into a track "OR" boolean expression:

 

track 15 ip sla 15 reachability

track 16 ip sla 16 reachability

...

track 100 list boolean or

 object 15

 object 16

 ...

 

Then, you can look to track 100 for overall state.  With an "OR" boolean, as long as any one of the objects is up, then track 100 will be up.  If you use an "AND" boolean, then all of the objects need to be up for track 100 to be up.

View solution in original post

2 Replies 2

Joe Clarke
Cisco Employee
Cisco Employee

No, what you want to do is not possible.  You'll need to create one IP SLA collector for each different type configuration.  But you can combine them into a track "OR" boolean expression:

 

track 15 ip sla 15 reachability

track 16 ip sla 16 reachability

...

track 100 list boolean or

 object 15

 object 16

 ...

 

Then, you can look to track 100 for overall state.  With an "OR" boolean, as long as any one of the objects is up, then track 100 will be up.  If you use an "AND" boolean, then all of the objects need to be up for track 100 to be up.

Thanks so much, was quite hard for me since im not too much into IP SLA and thats why I was wondering, 

 

I have created another post maybe you can assist me please