diff options
author | Colin Watson <cjwatson@debian.org> | 2005-05-30 23:12:57 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2005-05-30 23:12:57 +0000 |
commit | 6b4b058a9f7d48a5d0e89c178a706bc266d3eeb5 (patch) | |
tree | 72cf9bbcfa9900649caa72b127a4677edb8183f5 /debian | |
parent | 6103443e4a6e83a929fcd35d110caa0f54bc4329 (diff) |
Disable ChallengeResponseAuthentication in new installations, returning to
PasswordAuthentication by default, since it now supports PAM and apparently
works better with a non-threaded sshd.
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 3 | ||||
-rw-r--r-- | debian/openssh-server.postinst | 9 |
2 files changed, 8 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog index 427728b50..4e27729d9 100644 --- a/debian/changelog +++ b/debian/changelog | |||
@@ -8,6 +8,9 @@ openssh (1:4.1p1-1) UNRELEASED; urgency=low | |||
8 | Use PAM password authentication to avoid #278394. In future I may | 8 | Use PAM password authentication to avoid #278394. In future I may |
9 | provide two sets of binaries built with and without this option, since | 9 | provide two sets of binaries built with and without this option, since |
10 | it seems I can't win. | 10 | it seems I can't win. |
11 | * Disable ChallengeResponseAuthentication in new installations, returning | ||
12 | to PasswordAuthentication by default, since it now supports PAM and | ||
13 | apparently works better with a non-threaded sshd. | ||
11 | * openssh-server Suggests: rssh (closes: #233012). | 14 | * openssh-server Suggests: rssh (closes: #233012). |
12 | 15 | ||
13 | -- Colin Watson <cjwatson@debian.org> Thu, 26 May 2005 13:51:50 +0100 | 16 | -- Colin Watson <cjwatson@debian.org> Thu, 26 May 2005 13:51:50 +0100 |
diff --git a/debian/openssh-server.postinst b/debian/openssh-server.postinst index 3fce8af1c..46813605f 100644 --- a/debian/openssh-server.postinst +++ b/debian/openssh-server.postinst | |||
@@ -230,11 +230,12 @@ HostbasedAuthentication no | |||
230 | # To enable empty passwords, change to yes (NOT RECOMMENDED) | 230 | # To enable empty passwords, change to yes (NOT RECOMMENDED) |
231 | PermitEmptyPasswords no | 231 | PermitEmptyPasswords no |
232 | 232 | ||
233 | # Change to no to disable s/key passwords | 233 | # Change to yes to enable challenge-response passwords (beware issues with |
234 | #ChallengeResponseAuthentication yes | 234 | # some PAM modules and threads) |
235 | ChallengeResponseAuthentication no | ||
235 | 236 | ||
236 | # Change to yes to enable tunnelled clear text passwords | 237 | # Change to no to disable tunnelled clear text passwords |
237 | PasswordAuthentication no | 238 | #PasswordAuthentication yes |
238 | 239 | ||
239 | 240 | ||
240 | # To change Kerberos options | 241 | # To change Kerberos options |