Hi.
I'm trying to enable ldap auth for our server ipmi interface. I would like to allow access to members of ipmi_admin group only.

I constructed the following query and it works OK:
ldapsearch -W -b "cn=users,cn=accounts,dc=deleted,dc=loc" "(memberOf=cn=ipmi_admins,cn=groups,cn=accounts,dc= deleted,dc=loc)"

However, due to ipmi limitations, there is no way to specify search query, i can only customize searchbase.

Is there any way to create a DIT subtree that will only contain users of a ipmi_admin group?
I'm thinking maybe there is an analog of sql views where you can create a `view` that searches some other subtree with predefined search query?

Thanks.