Not sure if I'm the Bob you were asking, but I'll answer. This is working as designed. It's defined as a boolean AND operation. That means for Track 3 to be up, Track 1 AND Track 2 must be up.
Consider UP to be True (1) and DOWN to be False (0). 0 && 0 = 0 0 && 1 = 0 1 && 0 = 0 1 && 1 = 1 The only way a boolean AND object will be up will be if all elements of the track list below it are also up. This is shown in the help for the command: R4(config)#track 1 list bool ? and Boolean AND operation on list or Boolean OR operation on list Try an "or" list if you want the boolean object to be up if ANY of the listed objects are up. On Sat, Feb 18, 2012 at 7:53 AM, Elie Raad <[email protected]> wrote: > > Hello Bob, > > Track 1 > IP route 100.100.100.0 255.255.255.0 reachability > Reachability is Down (no route) > 6 changes, last change 00:04:53 > First-hop interface is unknown > Tracked by: > Track-list 3 > Track 2 > IP route 100.100.200.0 255.255.255.0 reachability > Reachability is Up (connected) > 1 change, last change 01:05:14 > First-hop interface is FastEthernet0/0 > Tracked by: > Track-list 3 > Track 3 > List boolean and > Boolean AND is Down > 7 changes, last change 00:04:53 > object 1 Down > object 2 Up > Tracked by: > STATIC-IP-ROUTING 0 > > the issue is that when one of tracked object is down the boolean object > goes down . any hints! > _______________________________________________ > For more information regarding industry leading CCIE Lab training, please > visit www.ipexpert.com > > Are you a CCNP or CCIE and looking for a job? Check out > www.PlatinumPlacement.com > > http://onlinestudylist.com/mailman/listinfo/ccie_rs > _______________________________________________ For more information regarding industry leading CCIE Lab training, please visit www.ipexpert.com Are you a CCNP or CCIE and looking for a job? Check out www.PlatinumPlacement.com http://onlinestudylist.com/mailman/listinfo/ccie_rs
