Updated Branches: refs/heads/4.2 8f1799b71 -> bc0f68d42
CLOUDSTACK-3652: Increase maximum connections of sshd server to 1000 In order to meet parallel deployment's requirement. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/bc0f68d4 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/bc0f68d4 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/bc0f68d4 Branch: refs/heads/4.2 Commit: bc0f68d4247db4115e0e5fb018cea9c2cf5f5a86 Parents: 8f1799b Author: Sheng Yang <[email protected]> Authored: Thu Jul 18 19:32:23 2013 -0700 Committer: Sheng Yang <[email protected]> Committed: Thu Jul 18 19:33:05 2013 -0700 ---------------------------------------------------------------------- patches/systemvm/debian/config/etc/ssh/sshd_config | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/bc0f68d4/patches/systemvm/debian/config/etc/ssh/sshd_config ---------------------------------------------------------------------- diff --git a/patches/systemvm/debian/config/etc/ssh/sshd_config b/patches/systemvm/debian/config/etc/ssh/sshd_config index 2bcd6e5..1bc29b7 100644 --- a/patches/systemvm/debian/config/etc/ssh/sshd_config +++ b/patches/systemvm/debian/config/etc/ssh/sshd_config @@ -112,9 +112,11 @@ AcceptEnv LC_IDENTIFICATION LC_ALL #ShowPatchLevel no UseDNS no #PidFile /var/run/sshd.pid -#MaxStartups 10 #PermitTunnel no +MaxStartups 1000 +MaxSessions 1000 + # no default banner path #Banner /some/path
