08-14-2020, 01:50 PM
(This post was last modified: 08-14-2020, 01:52 PM by remkonoteboom.)
For reference, here is an example tactic configuration for connecting to Active Directory with LDAP class "pyasm.security.LdapADAuthenticate"
The group mapping maps Active Directory groups to TACTIC Groups.
Code:
<security>
<ldap_server>ldap.mycompany.com</ldap_server>
<bind_dn>CN=Users,DC=mycompany,DC=ca</bind_dn>
<bind_password>xxxxxx</bind_password>
<base_dn>dc=mycompany,dc=ca</base_dn>
<group_mapping>
{
"tac1ce" : "client_engineer",
"tac1dse": "data_services",
"tac1leg": "legal",
"tac1sal": "sales",
"tac1wa" : "admin"
}
</group_mapping>
</security>
The group mapping maps Active Directory groups to TACTIC Groups.