diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | sshd.8 | 10 | ||||
-rw-r--r-- | sshd_config | 5 |
3 files changed, 14 insertions, 5 deletions
@@ -1,5 +1,7 @@ | |||
1 | 20010303 | 1 | 20010303 |
2 | - Remove make-ssh-known-hosts.pl, ssh-keyscan is better. | 2 | - Remove make-ssh-known-hosts.pl, ssh-keyscan is better. |
3 | - Document PAM ChallengeResponseAuthentication in sshd.8 | ||
4 | - Disable and comment ChallengeResponseAuthentication in sshd_config | ||
3 | 5 | ||
4 | 20010301 | 6 | 20010301 |
5 | - (djm) Properly add -lcrypt if needed. | 7 | - (djm) Properly add -lcrypt if needed. |
@@ -4178,4 +4180,4 @@ | |||
4178 | - Wrote replacements for strlcpy and mkdtemp | 4180 | - Wrote replacements for strlcpy and mkdtemp |
4179 | - Released 1.0pre1 | 4181 | - Released 1.0pre1 |
4180 | 4182 | ||
4181 | $Id: ChangeLog,v 1.846 2001/03/03 09:00:36 djm Exp $ | 4183 | $Id: ChangeLog,v 1.847 2001/03/03 13:16:20 djm Exp $ |
@@ -644,11 +644,17 @@ The minimum value is 512, and the default is 768. | |||
644 | Specifies whether | 644 | Specifies whether |
645 | challenge reponse | 645 | challenge reponse |
646 | authentication is allowed. | 646 | authentication is allowed. |
647 | Currently there is only support for | 647 | Currently there is support for |
648 | .Xr skey 1 | 648 | .Xr skey 1 |
649 | authentication. | 649 | and PAM authentication. |
650 | The default is | 650 | The default is |
651 | .Dq yes . | 651 | .Dq yes . |
652 | Note that enabling ChallengeResponseAuthentication for PAM bypasses | ||
653 | OpenSSH's password checking code, thus rendering options such as | ||
654 | .Cm PasswordAuthentication | ||
655 | and | ||
656 | .Cm PermitEmptyPasswords | ||
657 | ineffective. | ||
652 | .It Cm StrictModes | 658 | .It Cm StrictModes |
653 | Specifies whether | 659 | Specifies whether |
654 | .Nm | 660 | .Nm |
diff --git a/sshd_config b/sshd_config index 8d0af1060..2a9b86be2 100644 --- a/sshd_config +++ b/sshd_config | |||
@@ -41,8 +41,9 @@ RSAAuthentication yes | |||
41 | PasswordAuthentication yes | 41 | PasswordAuthentication yes |
42 | PermitEmptyPasswords no | 42 | PermitEmptyPasswords no |
43 | 43 | ||
44 | # Uncomment to disable s/key passwords | 44 | # Comment to enable s/key passwords or PAM interactive authentication |
45 | #ChallengeResponseAuthentication no | 45 | # NB. Neither of these are compiled in by default. |
46 | ChallengeResponseAuthentication no | ||
46 | 47 | ||
47 | # To change Kerberos options | 48 | # To change Kerberos options |
48 | #KerberosAuthentication no | 49 | #KerberosAuthentication no |