IP SLA “AND OR” Boolean Options

If you’re trying to monitor multiple IP’s and you want the IP SLA to trigger when ALL IP’s are down, you need to do an “OR”. You might think the “AND” is the way to go if you’re just going over it in your head. I did the same thing but realized the correct way is to do an “OR”.

Below is the boolean truth table:
AND:
1 and 1 = 1
1 and 0 = 0
0 and 1 = 0
0 and 0 = 0

OR:
1 or 1 = 1
1 or 0 = 1
0 or 1 = 1
0 or 0 = 0