Updated Branches: refs/heads/master b43a2a5fa -> f50908341
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/f5090834 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/f5090834 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/f5090834 Branch: refs/heads/master Commit: f50908341bef937e0b8831b3580b3456c4175fd7 Parents: b43a2a5 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:35 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/f5090834/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
