Implemented LDAP PAM on Linux to use with XCOM and when performing an incoming transfer receive message:
"XCOMU0287E Error setting remote user id: Verify login failed"
This is a working sample version of the xcomauth file that solved the problem.
auth required /opt/CA/XCOM/redistrib/pam_userpass/pam_userpass.so
auth required pam_env.so
auth sufficient pam_sss.so use_first_pass
auth sufficient pam_unix.so nullok use_first_pass
auth required pam_deny.so
account required pam_access.so
account required pam_unix.so broken_shadow
account sufficient pam_localuser.so
account sufficient pam_succeed_if.so uid < 500 quiet
account [default=bad success=ok user_unknown=ignore] pam_sss.so
account required pam_permit.so
CA XCOM DATA TRANSPORT FOR UNIX/Linux 12.0 > Reference > Operating Environment > Pluggable Authentication Modules (PAM) Based Authentication
NOTE: The above sample xcomauth file may or may not work in a specific environment. It is the responsibility of the Security Administrator to review and modify the security for site specific implementation.
To debug PAM problems:
1. Check the syslog for any useful messages
2. Debug the system-auth file and xcomauth file.
PAM modules are expected to send messages to syslog(3) under facility type authpriv and the following logging levels:
The debugging information is enabled by passing string 'debug' as the very first argument (right after the module name) in the PAM config file. For example:
auth required /opt/CA/XCOM/redistrib/pam_userpass/pam_userpass.so debug
Expand the included entries from system-auth into xcomauth and plant the debug parameter into each line (and adjust syslogd.conf so that the messages are saved). This will hopefully explain why any authentication fails. Also check how these logging destinations are defined in syslogd.conf and see whether there are meaningful messages there.
For further details please see Red Hat Knowledgebase article 1314883: Debugging PAM configuration (requires Red Hat Customer Portal Login)