Forum Discussion

Poseidon1974's avatar
Poseidon1974
Icon for Cirrostratus rankCirrostratus
Jul 20, 2023
Solved

expression in an APM policy

H,I am newbi to F5 APM, I would like to know how to add an expression (OR) on APM, to check in two variables see the example below :  (&(objectclass=person)(name=%{session.saml.last.nameIDValue}) (h...
  • whisperer's avatar
    Jul 20, 2023

    Two ways to accomplish this. Easiest, and you can add branch logic for additional logging or custom error messages to user, would be cascading expression checks. You want an OR? Have the first expression. Pass - point to macro that permits access. Fail - point to second expression. Second expression. Pass - point to macro that permits access. Fail - error message to user.

    Second way is your approach. This is more of an ldapsearch question. You are looking at standard ldapsearch syntax and not something that is F5 proprietary. Please take a look here:

    http://www.ldapexplorer.com/en/manual/109010000-ldap-filter-syntax.htm

    Test your lookup via ldapsearch, then implement on F5 using the same search filter.

     

  • Poseidon1974's avatar
    Poseidon1974
    Jul 20, 2023

    Thank you