[Pam-ssh-users] Debian package's readme
Brought to you by:
rosenauer
From:
<ala...@rd...> - 2004-10-27 08:12:31
|
I there, I wrote a little readme for the Debian distribution, shipped with my libpam-ssh package. Please correct me if i'm wrong. <<<<< Readme.Debian You have to manually add include directive into your pam script, for each service you want to use it. As sample, here is my /etc/pam.d/gdm script: auth requisite pam_nologin.so auth required pam_env.so @include common-auth @include pam-ssh-auth @include common-account session required pam_limits.so @include common-session @include pam-ssh-session @include common-password pam-ssh-auth must be included after @include common-auth. If you have more than one ssh key (with the same or empty passphrase), you have to link them to ~/.ssh/is_dsa{1,2,3} in order to make pam-ssh try to use them. Basically you could have four keys : ~/.ssh/is_dsa, ~/.ssh/is_dsa1 and so on. <<<<< Readme.Debian the two pam-ssh-* files : auth: auth optional pam_ssh.so try_first_pass keyfiles=id_dsa,id_dsa1,id_dsa2,id_dsa3 session: session optional pam_ssh.so cheers, Aurelien |