I'm trying to create a simple Compliance Policy that checks for the status (Enabled/Disabled) of Aggressive Failover on a WLC. The Policy is configured with the following options:
Condition Details
Condition Scope: Device Command Outputs
Show Commands: show radius summary
Operator: matches the expression
Value: Aggressive\sFailover\.+\s(Enabled)
Action Details
Select Does not Match Action > Raise a violation
I have tested the regular expression, and it successfully matches the output in the show radius summary command:
Aggressive Failover.............................. Disabled
The problem is that when I change my regular expression to Aggressive\sFailover\.+\s(Disabled), I continue to receive a Violation which tells me something isn't working correctly. Is there something I am obviously doing wrong?