From 7ec11936e881cd19779e88ff817091f0febac274 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Thu, 14 Oct 2010 14:01:26 +0200 Subject: testing: Reduce testing runtime by reusing SSH sessions. By using the ControlMaster and ControlPath options, existing SSH sessions are reused (a session to each host is opened at the beginning of a test run). Also, RC4 is used as encryption algorithm to further improve the performance. These changes reduce the runtime by over 20%. --- testing/ssh_config | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 testing/ssh_config (limited to 'testing/ssh_config') diff --git a/testing/ssh_config b/testing/ssh_config new file mode 100644 index 000000000..36569c07c --- /dev/null +++ b/testing/ssh_config @@ -0,0 +1,10 @@ +Host * + # debian default + SendEnv LANG LC_* + HashKnownHosts yes + GSSAPIAuthentication yes + # faster encryption + Ciphers arcfour + # share multiple sessions + ControlMaster auto + ControlPath /tmp/ssh-uml-%r@%h:%p -- cgit v1.2.3