Task 1: Configure the SSH Daemon to use PAM on AIX Platforms
- Edit the PAM configuration file (/etc/pam.conf) to add the SSH PAM authentication. For example, modify the entries as follows:sshd auth required pam_aix sshd account required pam_aix sshd password required pam_aix sshd session required pam_aix
- Edit the/lib/security/methods.cfgfile by adding the following lines:PAM: program = /usr/lib/security/PAM PAMfiles: options = auth=PAM,db=BUILTIN
- Edit the/etc/security/login.cfgfile to configure the authentication type to PAM.auth_type=PAM_AUTH
- Enable SSH PAM authentication by editing the following parameters in the/etc/ssh/sshd_confconfiguration file:UsePAM yes
- Restart the SSH service.