[Devel] [PATCH] vzmigrate: don't use blowfish by default anymore

Igor Podlesny openvz at poige.ru
Fri Jan 24 10:30:12 PST 2014


While blowfish is indeed faster than 3des, ssh "-c" option is related to
outdated SSH proto 1. Nowadays proto 2 is in broad use and "-c blowfish"
effctively overrides proto 2 defaults which are usually faster (than blowfish).
---
 bin/vzmigrate.in | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/bin/vzmigrate.in b/bin/vzmigrate.in
index 6bef4c7..3b0acfc 100755
--- a/bin/vzmigrate.in
+++ b/bin/vzmigrate.in
@@ -20,8 +20,7 @@
 
 
 ACT_SCRIPTS_SFX="start stop mount umount premount postumount"
-# blowfish is a fast block cipher, much faster then 3des
-SSH_OPTIONS="-c blowfish -o BatchMode=yes"
+SSH_OPTIONS="-o BatchMode=yes"
 SCP_OPTIONS=$SSH_OPTIONS
 RSYNC_OPTIONS="-aHAX --delete --numeric-ids"
 VZCTL=vzctl
-- 
1.8.3.2




More information about the Devel mailing list