Enabling Active Directory recursive search
By default, nested groups (groups that are members or other groups) are not searched in Windows Active Directory (AD) LDAP servers because this can slow down the group membership search. There is an option in FortiOS to enable the searching of nested groups for user group memberships on AD LDAP servers.
This option is not available for other LDAP servers, such as OpenLDAP-based servers. |
The default behavior does not include nested groups:
config user ldap edit "ldap-ad" set server "10.1.100.131" set cnid "cn" set dn "dc=fortinet-fsso,dc=com" set type regular set username "cn=Administrator,cn=users,dc=fortinet-fsso,dc=com" set password XXXXXXXXXXXXXXXXXXXXXXXX next end
The default search results only show groups that have the user as member, and no groups that have groups as members:
diagnose test authserver ldap ldap-ad nuser nuser authenticate 'nuser' against 'ldap-ad' succeeded! Group membership(s) - CN=nested3,OU=Testing,DC=Fortinet-FSSO,DC=COM CN=Domain Users,CN=Users,DC=Fortinet-FSSO,DC=COM
To enable recursive search to include nested groups in the results:
config user ldap edit "ldap-ad" set server "10.1.100.131" set cnid "cn" set dn "dc=fortinet-fsso,dc=com" set type regular set username "cn=Administrator,cn=users,dc=fortinet-fsso,dc=com" set password XXXXXXXXXXXXXXXXXXXXXXXX set search-type recursive next end
The search results now include groups that have other groups as members:
diagnose test authserver ldap ldap-ad nuser nuser authenticate 'nuser' against 'ldap-ad' succeeded! Group membership(s) - CN=nested3,OU=Testing,DC=Fortinet-FSSO,DC=COM CN=Domain Users,CN=Users,DC=Fortinet-FSSO,DC=COM CN=nested2,OU=Testing,DC=Fortinet-FSSO,DC=COM CN=nested1,OU=Testing,DC=Fortinet-FSSO,DC=COM
The group nested3 is a member of the group nested2, which is a member of the group nested1.