Difference between revisions of "C pam module"

From John Freier
Jump to: navigation, search
(Created page with 'PAM - Pluggable Authentication Module PAM Modules are modules that can hook up to different applications that implement PAM patterns, such as SSH. == Setup == To begin develop…')
 
Line 5: Line 5:
  
 
== Setup ==
 
== Setup ==
To begin development
+
To begin development, some configuration may need to be done to some of the PAM configuration files.  For this example I will use SSH.
 +
 
 +
These files are located
 +
  /etc/pam.d/sshd
 +
 
 +
Tip*
 +
For SSH, if you need to conversate, turn on Challenge Response in the SSHD config file.
 +
  /etc/ssh/sshd_config
 +
  Line: ChallengeResponseAuthentication yes

Revision as of 11:37, 25 June 2014

PAM - Pluggable Authentication Module

PAM Modules are modules that can hook up to different applications that implement PAM patterns, such as SSH.


Setup

To begin development, some configuration may need to be done to some of the PAM configuration files. For this example I will use SSH.

These files are located

 /etc/pam.d/sshd

Tip* For SSH, if you need to conversate, turn on Challenge Response in the SSHD config file.

 /etc/ssh/sshd_config
 Line: ChallengeResponseAuthentication yes