parent
8b1c22b775
commit
256fdcbec5
|
@ -26,6 +26,24 @@ gnome-ssh-askpass:
|
||||||
A GNOME passphrase requester of my own creation. Compilation instructions
|
A GNOME passphrase requester of my own creation. Compilation instructions
|
||||||
are in the top of the file.
|
are in the top of the file.
|
||||||
|
|
||||||
|
sshd.pam.generic:
|
||||||
|
|
||||||
|
A generic PAM config file which may be useful on your system. YMMV
|
||||||
|
|
||||||
|
sshd.pam.freebsd
|
||||||
|
|
||||||
|
A PAM config file which works with FreeBSD's PAM port. Contributed by
|
||||||
|
Dominik Brettnacher <domi@saargate.de>
|
||||||
|
|
||||||
|
redhat:
|
||||||
|
|
||||||
|
RPM spec file an scripts for building Redhat packages
|
||||||
|
|
||||||
|
suse:
|
||||||
|
|
||||||
|
RPM spec file an scripts for building SuSE packages
|
||||||
|
|
||||||
|
|
||||||
Externally maintained
|
Externally maintained
|
||||||
---------------------
|
---------------------
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
sshd auth required pam_unix.so try_first_pass
|
||||||
|
sshd account required pam_unix.so
|
||||||
|
sshd password required pam_permit.so
|
||||||
|
sshd session required pam_permit.so
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
#%PAM-1.0
|
||||||
|
auth required /lib/security/pam_unix.so shadow nodelay
|
||||||
|
auth required /lib/security/pam_nologin.so
|
||||||
|
account required /lib/security/pam_unix.so
|
||||||
|
password required /lib/security/pam_cracklib.so
|
||||||
|
password required /lib/security/pam_unix.so shadow nullok use_authtok
|
||||||
|
session required /lib/security/pam_unix.so
|
||||||
|
session required /lib/security/pam_limits.so
|
Loading…
Reference in New Issue