To configure Splunk to ignore inactive account, simply add the userAccountControl as follow in the "User base filter" field:
(&(objectCategory=Person)(sAMAccountName=*)(!(userAccountControl:1.2.840.113556.1.4.803:=2)))
... View more
The only way I can think of is to use scripted authentication.
You can find more info at http://docs.splunk.com/Documentation/Splunk/latest/Security/ConfigureSplunkToUsePAMOrRADIUSAuthentication.
-Ming
... View more
We are using LDAP group and then map Splunk role with each LDAP group. Role is assigned to LDAP users by adding them to the appropriate LDAP group.
In your case without using LDAP groups, if admin role users can log in then by the same token, you can assign users to Splunk role 'user' as follow under 'roleMap_SHC' stanza:
[roleMap_SHC]
admin = lbirnba;pbussie;rsen0;vjaiswa
user = ; ;
Ming
... View more