aboutsummaryrefslogtreecommitdiff
path: root/tests/sshserver.pl
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-01-06 02:02:55 +0000
committerYang Tse <yangsita@gmail.com>2008-01-06 02:02:55 +0000
commit9c6533d28720b38e52827ccd6d2f831553e73442 (patch)
tree74c44decdaba9aa8fb928b2a20e658fe8b2e393e /tests/sshserver.pl
parentb4305764367f24f06ce7dedc557d90772a00eec1 (diff)
Increase MaxAuthTries from 0 to 10. Using a value of 0 is too restrictive
Diffstat (limited to 'tests/sshserver.pl')
-rw-r--r--tests/sshserver.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/sshserver.pl b/tests/sshserver.pl
index f651e0714..22b83c945 100644
--- a/tests/sshserver.pl
+++ b/tests/sshserver.pl
@@ -531,8 +531,8 @@ if(sshd_supports_opt('Compression','no')) {
if(sshd_supports_opt('KeepAlive','no')) {
push @cfgarr, 'KeepAlive no';
}
-if(sshd_supports_opt('MaxAuthTries','0')) {
- push @cfgarr, 'MaxAuthTries 0';
+if(sshd_supports_opt('MaxAuthTries','10')) {
+ push @cfgarr, 'MaxAuthTries 10';
}
if(sshd_supports_opt('PermitTunnel','no')) {
push @cfgarr, 'PermitTunnel no';