diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | contrib/aix/pam.conf | 20 |
2 files changed, 23 insertions, 1 deletions
@@ -27,6 +27,8 @@ | |||
27 | - (tim) Fix typo. s/SETEIUD_BREAKS_SETUID/SETEUID_BREAKS_SETUID/ | 27 | - (tim) Fix typo. s/SETEIUD_BREAKS_SETUID/SETEUID_BREAKS_SETUID/ |
28 | - (tim) [configure.ac] Bug 665: move 3 new AC_DEFINES outside of AC_TRY_RUN. | 28 | - (tim) [configure.ac] Bug 665: move 3 new AC_DEFINES outside of AC_TRY_RUN. |
29 | Report by distler AT golem ph utexas edu. | 29 | Report by distler AT golem ph utexas edu. |
30 | - (dtucker) [contrib/aix/pam.conf] Include example pam.conf for AIX from | ||
31 | article by genty at austin.ibm.com, included with the author's permission. | ||
30 | 32 | ||
31 | 20030919 | 33 | 20030919 |
32 | - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL; | 34 | - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL; |
@@ -1163,4 +1165,4 @@ | |||
1163 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. | 1165 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. |
1164 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au | 1166 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au |
1165 | 1167 | ||
1166 | $Id: ChangeLog,v 1.3022 2003/09/22 04:38:11 tim Exp $ | 1168 | $Id: ChangeLog,v 1.3023 2003/09/22 10:41:40 dtucker Exp $ |
diff --git a/contrib/aix/pam.conf b/contrib/aix/pam.conf new file mode 100644 index 000000000..1495f43cb --- /dev/null +++ b/contrib/aix/pam.conf | |||
@@ -0,0 +1,20 @@ | |||
1 | # | ||
2 | # PAM configuration file /etc/pam.conf | ||
3 | # Example for OpenSSH on AIX 5.2 | ||
4 | # | ||
5 | |||
6 | # Authentication Management | ||
7 | sshd auth required /usr/lib/security/pam_aix | ||
8 | OTHER auth required /usr/lib/security/pam_aix | ||
9 | |||
10 | # Account Management | ||
11 | sshd account required /usr/lib/security/pam_aix | ||
12 | OTHER account required /usr/lib/security/pam_aix | ||
13 | |||
14 | # Session Management | ||
15 | sshd password required /usr/lib/security/pam_aix | ||
16 | OTHER password required /usr/lib/security/pam_aix | ||
17 | |||
18 | # Password Management | ||
19 | sshd session required /usr/lib/security/pam_aix | ||
20 | OTHER session required /usr/lib/security/pam_aix | ||